/* =========================================
   Global Styles
========================================= */
body {
	font-size: 16px;
	color: #212529;
	font-weight: 400;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	color: #000;
	font-weight: 600;
}

p {
	color: #000;
}

a, a:hover, a:focus {
	color: #ffe600;
	text-decoration: none;
	transition: 0.3s;
}

/* Buttons */
.btn {
	border-radius: 50px;
	padding: 10px 30px;
	font-size: 16px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.btn-primary {
	color: #000;
	background: #ffe600;
	border: none;
	position: relative;
}

	.btn-primary:hover {
		transform: translateY(-2px);
	}

/* =========================================
   Navbar
========================================= */
.navbar-smak {
	background-color: #f9c300 !important;
	transition: all 0.5s;
	padding: 10px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

	.navbar-smak .navbar-brand > img {
		height: 60px;
	}

	.navbar-smak .btn-phone {
		display: flex;
		align-items: center;
		gap: 8px;
		justify-content: center;
		background: #003366;
		color: #f9c300;
		padding: 8px 20px;
		border-radius: 50px;
		font-weight: 700;
		font-size: 20px;
	}

		.navbar-smak .btn-phone i {
			font-size: 22px;
		}

/* =========================================
   Banner
========================================= */
.banner-wrapper {
	width: 100%;
	overflow: hidden;
}

.banner-img {
	width: 100%;
	height: auto;
	padding-top: 80px;
	object-fit: contain;
}

/* =========================================
   Apply Now Section
========================================= */
.apply-section.apply-tight {
	background: #fdf2b3;
	padding: 10px 0 5px 0;
	text-align: center;
}

.apply-section h4 {
	margin: 0;
	font-size: 24px;
	line-height: 1.3;
}

.apply-section .btn {
	margin-top: 5px;
	margin-bottom: 5px;
}

/* =========================================
   Modal Styling
========================================= */
.modal-styled {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 35px rgba(0,0,0,0.18);
}

.modal-phone-bar {
	background: #003366;
	padding: 15px 20px;
	text-align: center;
	border-bottom: 2px solid #f9c300;
	border-radius: 12px 12px 0 0;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

	.modal-phone-bar i {
		font-size: 26px;
		color: #f9c300;
	}

	.modal-phone-bar .phone-number-text {
		font-size: 22px;
		font-weight: 700;
		color: #f9c300;
	}

.modal-header {
	padding-bottom: 0;
	border-bottom: none;
}

.modal-body .form-label {
	font-weight: 600;
	margin-bottom: 5px;
}

.modal-body .form-control {
	border-radius: 10px;
	padding: 12px 15px;
	border: 1px solid #d0d0d0;
	box-shadow: none;
	transition: all 0.3s ease;
}

	.modal-body .form-control:focus {
		border-color: #ff4c4c;
		box-shadow: 0 0 5px rgba(255,76,76,0.25);
	}

.modal-body .btn-danger {
	border-radius: 50px;
	font-size: 16px;
	padding: 10px 35px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}

	.modal-body .btn-danger:hover {
		transform: translateY(-2px);
		box-shadow: 0 6px 16px rgba(0,0,0,0.15);
	}

/* =========================================
   Tables
========================================= */
.nirmaan-table {
	width: 100%;
	border-collapse: collapse;
	margin: 40px 0;
	font-size: 1.6rem;
	text-align: center;
	border: 1px solid #ddd;
	background: #fff;
	box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

	.nirmaan-table th, .nirmaan-table td {
		border: 2px solid #ddd;
		padding: 12px 16px;
		vertical-align: middle;
	}

	.nirmaan-table th {
		background-color: #f9c300;
		color: #222;
		font-weight: 600;
	}

/* =========================================
   About Sections
========================================= */
.about-header {
	background: #fdf2b3;
	padding: 30px 25px;
	border-radius: 12px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.08);
	text-align: center;
}

	.about-header h3 {
		font-size: 28px;
		color: #003366;
		font-weight: 700;
		margin-bottom: 15px;
	}

	.about-header p {
		font-size: 16px;
		line-height: 1.7;
		color: #000;
		margin-bottom: 0;
	}

	.about-header .divider {
		width: 60px;
		height: 3px;
		background: #003366;
		margin: 10px auto 20px auto;
		border-radius: 2px;
	}

.about-sections {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.about-box {
	background: #fdf2b3;
	border-radius: 12px;
	padding: 25px 20px;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	flex: 1 1 48%;
	box-sizing: border-box;
}

	.about-box h4 {
		font-size: 22px;
		font-weight: 700;
		color: #003366;
		margin-bottom: 15px;
	}

	.about-box p {
		font-size: 16px;
		line-height: 1.6;
		color: #000;
	}

	.about-box:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	}

/* =========================================
   Footer
========================================= */
footer {
	padding-top: 20px;
	background: #131217;
	text-align: center;
	color: #fff;
}

	footer .social-list {
		list-style: none;
		display: flex;
		gap: 15px;
		padding: 0;
		margin: 20px 0 0 0;
		justify-content: center;
	}

		footer .social-list li a {
			width: 32px;
			height: 32px;
			display: flex;
			align-items: center;
			justify-content: center;
			transition: background 0.5s;
			color: #003366;
			font-size: 1.5rem;
		}

		footer .social-list li.facebook a:hover {
			background: #3E5993;
		}

		footer .social-list li.twitter a:hover {
			background: #00C3F8;
		}

		footer .social-list li.youtube a:hover {
			background: #CC181E;
		}
/* Default: show full number */
.phone-number a .fa-phone {
	display: none;
}

.phone-number a .phone-text {
	display: inline-block;
}

/* MOBILE FIX — force hide text, force show icon */
@media (max-width: 576px) {

	/* Show phone icon */
	.phone-number a .fa-phone {
		display: inline-block !important;
		font-size: 20px;
	}

	/* Hide phone number text */
	.phone-number a .phone-text {
		display: none !important;
	}

	/* Make the button round on mobile */
	.phone-number a.btn {
		padding: 8px 10px !important;
		width: 45px !important;
		height: 45px !important;
		border-radius: 50% !important;
		display: flex !important;
		align-items: center !important;
		justify-content: center !important;
	}
}
/* Pricing Section */
.pricing-section h3 {
	font-size: 28px;
	color: #2b2b2b;
}

.pricing-table {
	background: #f2f2f2;
	border-radius: 12px;
	overflow: hidden;
}
	.pricing-table td {
		border-bottom: 1px solid #ddd !important;
	}

	.pricing-table tr:last-child td {
		border-bottom: none !important; /* remove border from GST note row */
	}

	.pricing-table thead tr {
		background: #1b1b1b;
		color: #f2f2f2;
		text-align: center;
	}

	.pricing-table th,
	.pricing-table td {
		padding: 18px 16px;
		vertical-align: middle;
		font-size: 17px;
	}

	.pricing-table tbody tr {
		transition: all 0.2s ease-in-out;
	}

		.pricing-table tbody tr:hover {
			background: #f8f9fa;
			transform: scale(1.01);
		}

	.pricing-table .offer-title {
		font-size: 20px;
		font-weight: 600;
		color: #222;
	}

	.pricing-table .govt-fee {
		font-size: 14px;
		color: #6c757d;
	}

	.pricing-table .regular {
		font-size: 20px;
		color: #a3a3a3;
	}

	.pricing-table .nirmaan {
		font-size: 22px;
		font-weight: bold;
		color: #d63333;
	}

	.pricing-table .save {
		font-size: 22px;
		font-weight: bold;
		color: #28a745;
	}

	.pricing-table .highlight {
		background: #fff4f4;
	}

	.pricing-table .note {
		font-size: 15px;
		background: #f0f0f0;
		text-align: left;
		color: #555;
		padding: 14px;
		font-style: italic;
	}
@media (max-width: 576px) {
	.pricing-table th,
	.pricing-table td {
		font-size: 15px;
		padding: 12px;
	}

	.pricing-table .offer-title {
		font-size: 18px;
	}

	.pricing-table .nirmaan,
	.pricing-table .save {
		font-size: 18px;
	}
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 768px) {
	.about-header h3 {
		font-size: 22px;
	}

	.about-header p {
		font-size: 15px;
		text-align: justify;
	}

	.about-header {
		padding: 20px 15px;
	}

	.about-box {
		flex: 1 1 100%;
		padding: 20px 15px;
	}

		.about-box h4 {
			font-size: 18px;
			text-align: center;
		}

		.about-box p {
			font-size: 15px;
			text-align: justify;
		}

	.banner-img {
		max-height: auto;
		padding-top: 80px;
	}

	.apply-section h4 {
		font-size: 16px;
		text-align: center;
	}

	.apply-section .btn {
		width: 100%;
	}

	.navbar-smak {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}
}
