.nav-item.active,
.nav-item.active i,
.nav-item.active span {
	color: #f16727 !important;
}


.banner-section {
	position: relative;
	width: 100%;
	height: 250px;
	overflow: hidden;
}

.banner-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	
    background: linear-gradient(rgba(187, 200, 0, 0.6), rgba(0, 0, 0, 0.7)),
    url("<?php  base_url('')web_assets/banner/headbanner1.jpg ?>") no-repeat center/cover;
  z-index: 1;
	animation: fadeIn 1.2s ease-in-out;
}

.banner-content {
	position: relative;
	z-index: 2;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	color: #fff;
	text-align: center;
}

.banner-content h1 {
	font-size: 36px;
	font-weight: bold;
	margin: 0;
	color: white;
}

.breadcrumb-container {
	background-color: #e9e9ee;
	padding: 15px 20px;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
}

.breadcrumb-container a {
	text-decoration: none;
	color: #0071c5;
}

.breadcrumb-container strong {
	color: #555;
}

/* Animation */
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(1.02);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@media (max-width: 600px) {
	.banner-content h1 {
		font-size: 24px;
	}
}

.breadcrumb-container {
	background-color: #f9f9f9;
	padding: 15px 20px;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
}

.breadcrumb-container a {
	text-decoration: none;
	color: #0071c5;
}

.breadcrumb-container strong {
	color: #555;
}

.container-custom {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}

.contact-section {
	background-color: #ffffff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

h1 {
	color: #0071c5;
	font-weight: 700;
	text-align: center;
	margin-bottom: 40px;
}

.btn-yellow {
	background-color: #ffc400;
	color: white;
	font-weight: bold;
	border: none;
}

.btn-yellow:hover {
	background-color: #e6b200;
}

.form-control:focus {
	border-color: #0071c5;
	box-shadow: 0 0 0 0.2rem rgba(0, 113, 197, 0.25);
}

.map-responsive {
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
	height: 0;
	border-radius: 8px;
}

.map-responsive iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

@media (max-width: 768px) {
	.contact-info {
		margin-top: 30px;
	}
}

/* Section title container */
.section-title {
	padding: 24px 20px 10px;
	display: flex;
	align-items: center;
	gap: 10px;
	border-left: 4px solid #96a4b4;
	max-width: 900px;
	margin: 0 auto;
}

.section-title .hash {
	color: var(--primary);
	font-weight: 900;
	font-size: 1.8rem;
}

.section-title h2 {
	margin: 0;
	font-weight: 700;
	font-size: 1.8rem;
	color: #222;
}

#button {
	background: linear-gradient(135deg, hsl(23, 95%, 45%),#7928ca);
	color: white;
}
#button:hover {
	background: linear-gradient(135deg,#7928ca,hsl(23, 95%, 45%));
	color: white;
}

.section-title p {
	margin: 0 0 0 8px;
	font-weight: 500;
	font-size: 1rem;
	color: #444;
}

/* Main container for table + preview */
.main-container {
	max-width: 900px;
	margin: 20px auto;
	padding: 0 15px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	justify-content: center;
}

/* Pricing table container */
.pricing-table {
	flex: 1 1 500px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);
	overflow-x: auto;
}

/* Table styling */
table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.8rem;
	min-width: 720px;
}

thead tr {
	background: linear-gradient(to right, var(--accent), var(--dark));
	color: white;
}

thead th {
	padding: 8px 10px;
	font-weight: 700;
	text-align: center;
	border: 1px solid #d0d0d0;
	white-space: nowrap;
}

tbody td {
	padding: 6px 8px;
	text-align: center;
	border: 1px solid #ddd;
}

tbody tr:nth-child(even) {
	background: #f3f6fa;
}

/* Limit offer column */
.limit-offer {
	background: #b04210;
	color: #fff;
}

/* Preview container */
.preview-section {
	flex: 1 1 320px;
	background: white;
	border-radius: 8px;
	box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);
	padding: 15px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.preview-section img {
	max-width: 100%;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
}

/* Buttons container */
.buttons {
	margin-top: 20px;
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

/* Button styles */
button {
	cursor: pointer;
	border-radius: 25px;
	font-weight: 600;
	font-size: 1rem;
	min-width: 140px;
	padding: 12px 22px;
	border: none;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-primary {
	background-color: var(--primary);
	color: white;
}

.btn-primary:hover {
	background-color: #003b8f;
}

.btn-outline {
	background-color: white;
	color: var(--primary);
	border: 2px solid var(--primary);
}

.btn-outline:hover {
	background-color: var(--primary);
	color: white;
}

/* Responsive adjustments */
@media (max-width: 900px) {
	.main-container {
		flex-direction: column;
		align-items: center;
	}
	.pricing-table,
	.preview-section {
		max-width: 100%;
	}
	table {
		min-width: 600px;
		font-size: 0.75rem;
	}
}

@media (max-width: 480px) {
	.section-title h2 {
		font-size: 1.4rem;
	}
	.section-title p {
		font-size: 0.9rem;
	}
	table {
		min-width: 500px;
		font-size: 0.7rem;
	}
	button {
		min-width: 120px;
		font-size: 0.9rem;
		padding: 10px 18px;
	}
}
