:root {
	--primary: #1f3c88;
	--primary-dark: #152757;
	--secondary-start: #4facfe;
	--secondary-end: #00f2fe;
	--accent: #f9a825;
	--accent-soft: rgba(249, 168, 37, 0.1);
	--bg-light: #f7f9fc;
	--text-dark: #1b1f3b;
	--body-font: "system-ui", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Global */

body {
	font-family: var(--body-font);
	color: var(--text-dark);
	background-color: #ffffff;
}

a {
	text-decoration: none;
}

	a:hover {
		text-decoration: none;
	}

/* Navbar */

.navbar-custom {
	background: linear-gradient(120deg, var(--primary-dark), var(--primary));
	transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand .logo-accent {
	color: var(--accent);
}

.navbar .nav-link {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 500;
	margin-inline: 0.25rem;
}

	.navbar .nav-link:hover,
	.navbar .nav-link.active {
		color: #ffffff;
	}

.navbar.scrolled {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

/* Hero */

.hero-section {
	padding-top: 6rem;
	padding-bottom: 4rem;
	background: radial-gradient(circle at top left, rgba(79, 172, 254, 0.15), transparent 60%), radial-gradient(circle at bottom right, rgba(0, 242, 254, 0.2), transparent 55%), linear-gradient(135deg, var(--primary-dark), var(--primary));
	color: #ffffff;
}

.hero-image-wrapper {
	position: relative;
}

.hero-main-img {
	object-fit: cover;
	max-height: 420px;
	width: 100%;
}

.hero-stats-card {
	position: absolute;
	bottom: 1.25rem;
	left: 1.25rem;
	background: #ffffff;
	border-radius: 1rem;
	padding: 0.75rem 1rem;
	min-width: 170px;
}

.hero-badge {
	position: absolute;
	top: 1.25rem;
	right: 1.25rem;
	background: rgba(0, 0, 0, 0.7);
	color: #ffffff;
	padding: 0.5rem 0.9rem;
	border-radius: 999px;
	font-size: 0.85rem;
}

.text-gradient {
	background: linear-gradient(120deg, var(--secondary-start), var(--secondary-end));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* Buttons */

.btn-gradient {
	background: linear-gradient(135deg, var(--secondary-start), var(--secondary-end));
	border: none;
	color: #ffffff;
	box-shadow: 0 8px 20px rgba(79, 172, 254, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

	.btn-gradient:hover {
		color: #ffffff;
		transform: translateY(-1px);
		box-shadow: 0 12px 30px rgba(79, 172, 254, 0.55);
		filter: brightness(1.03);
	}

.btn-outline-light:hover {
	color: #1f3c88 !important;
}

/* Sections & Utilities */

.section-heading h2 {
	font-size: 2rem;
}

.bg-gradient-soft {
	background: linear-gradient(135deg, #f5fbff, #f7f9fc);
}

.speciality-section {
	background: radial-gradient(circle at top right, rgba(79, 172, 254, 0.12), transparent 55%), #ffffff;
}

/* Cards & Features */

.feature-card {
	border: none;
	border-radius: 1.2rem;
	box-shadow: 0 8px 22px rgba(18, 38, 63, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

	.feature-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 12px 36px rgba(18, 38, 63, 0.12);
	}

.icon-circle {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(79, 172, 254, 0.08);
	color: var(--primary);
	font-size: 1.3rem;
}

/* Specialities */

.speciality-item {
	background: #ffffff;
	border-radius: 1rem;
	padding: 1rem 1.1rem;
	box-shadow: 0 6px 18px rgba(18, 38, 63, 0.05);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

	.speciality-item i {
		color: var(--primary);
		font-size: 1.5rem;
		margin-bottom: 0.3rem;
	}

	.speciality-item h6 {
		font-weight: 600;
	}

	.speciality-item:hover {
		transform: translateY(-4px);
		box-shadow: 0 10px 26px rgba(18, 38, 63, 0.12);
	}

/* CTA */

.cta-section {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.cta-section {
	background: linear-gradient(135deg, var(--primary-dark), var(--primary));
	position: relative;
	overflow: hidden;
}

	.cta-section::before {
		content: "";
		position: absolute;
		inset: -40%;
		background: radial-gradient(circle at top left, rgba(79, 172, 254, 0.25), transparent 60%), radial-gradient(circle at bottom right, rgba(249, 168, 37, 0.18), transparent 60%);
		opacity: 0.9;
		pointer-events: none;
	}

.cta-card-modern {
	background: rgba(5, 8, 22, 0.75);
	border-radius: 1.2rem;
	padding: 1.25rem 1.4rem;
	box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(10px);
}

/* Footer */

.footer-section {
	background: radial-gradient(circle at top left, rgba(79, 172, 254, 0.12), transparent 55%), radial-gradient(circle at bottom right, rgba(249, 168, 37, 0.12), transparent 55%), #050816;
	color: #e5e7eb;
	margin-top: 0;
	position: relative;
	overflow: hidden;
}

	.footer-section::before {
		content: "";
		position: absolute;
		inset: 0;
		background: radial-gradient(circle at top, rgba(255, 255, 255, 0.04), transparent 60%);
		opacity: 0.7;
		pointer-events: none;
	}

.footer-top {
	position: relative;
	z-index: 1;
}

.footer-divider {
	border-color: rgba(148, 163, 184, 0.3);
}

.footer-logo-circle {
	width: 40px;
	height: 40px;
	border-radius: 999px;
	background: linear-gradient(135deg, var(--secondary-start), var(--secondary-end));
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 1.25rem;
	box-shadow: 0 10px 25px rgba(79, 172, 254, 0.55);
}

.footer-links li {
	margin-bottom: 0.45rem;
}

.footer-links a,
.footer-links span {
	color: #b0c4ff;
	transition: color 0.2s ease, transform 0.15s ease;
	display: inline-flex;
	align-items: center;
}

	.footer-links a::before,
	.footer-links span::before {
		content: "›";
		font-size: 0.8rem;
		margin-right: 0.4rem;
		opacity: 0.6;
	}

	.footer-links a:hover {
		color: #ffffff;
		transform: translateX(2px);
	}

.social-icon {
	width: 34px;
	height: 34px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 42, 0.9);
	color: #e5e7eb;
	font-size: 1.1rem;
	border: 1px solid rgba(148, 163, 184, 0.35);
	transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

	.social-icon:hover {
		background: linear-gradient(135deg, var(--secondary-start), var(--secondary-end));
		color: #ffffff;
		transform: translateY(-2px);
		box-shadow: 0 10px 24px rgba(79, 172, 254, 0.6);
	}

.footer-form .footer-input {
	max-width: 260px;
	background-color: rgba(15, 23, 42, 0.85);
	border: 1px solid rgba(148, 163, 184, 0.5);
	color: #e5e7eb;
}

	.footer-form .footer-input::placeholder {
		color: rgba(148, 163, 184, 0.85);
	}

	.footer-form .footer-input:focus {
		background-color: rgba(15, 23, 42, 0.95);
		border-color: var(--secondary-start);
		box-shadow: 0 0 0 0.125rem rgba(79, 172, 254, 0.45);
	}

@media (max-width: 575.98px) {
	.footer-form .footer-input {
		max-width: 100%;
	}
}

/* Page Header (Inner pages) */

.page-header {
	padding-top: 6rem;
	padding-bottom: 2.5rem;
	background: linear-gradient(135deg, rgba(31, 60, 136, 0.96), rgba(31, 60, 136, 0.9)), radial-gradient(circle at top right, rgba(0, 242, 254, 0.18), transparent 55%);
	color: #ffffff;
}

	.page-header h1 {
		color: #ffffff;
	}

	.page-header .breadcrumb {
		--bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.6);
	}

	.page-header .breadcrumb-item a {
		color: rgba(255, 255, 255, 0.8);
	}

/* About / Stats */

.stat-card {
	background: #ffffff;
	border-radius: 1rem;
	padding: 1rem 1.1rem;
	box-shadow: 0 8px 22px rgba(18, 38, 63, 0.06);
}

/* Mission cards */

.mission-card {
	border: none;
	border-radius: 1.2rem;
	box-shadow: 0 8px 24px rgba(18, 38, 63, 0.07);
}

/* Why choose us (about page) */

.why-card {
	background: #ffffff;
	border-radius: 1.1rem;
	padding: 1.5rem 1.4rem;
	box-shadow: 0 8px 20px rgba(18, 38, 63, 0.06);
	text-align: left;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

	.why-card i {
		font-size: 1.7rem;
		color: var(--primary);
		margin-bottom: 0.6rem;
	}

	.why-card h6 {
		font-weight: 600;
	}

	.why-card:hover {
		transform: translateY(-4px);
		box-shadow: 0 12px 34px rgba(18, 38, 63, 0.18);
	}

/* Experience cards */

.exp-card {
	background: #ffffff;
	border-radius: 1.1rem;
	padding: 1.1rem 1.2rem;
	box-shadow: 0 8px 20px rgba(18, 38, 63, 0.06);
}

/* Services */

.service-card {
	border: none;
	border-radius: 1.2rem;
	box-shadow: 0 8px 22px rgba(18, 38, 63, 0.06);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

	.service-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 14px 34px rgba(18, 38, 63, 0.18);
	}

.service-icon {
	width: 46px;
	height: 46px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(79, 172, 254, 0.08);
	color: var(--primary);
	font-size: 1.4rem;
}

.highlight-card {
	border: 1px solid rgba(249, 168, 37, 0.25);
}

/* Gallery */

.gallery-item {
	position: relative;
	overflow: hidden;
	border-radius: 1rem;
	cursor: pointer;
}

	.gallery-item img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		transition: transform 0.35s ease;
	}

.gallery-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
	opacity: 0;
	color: #ffffff;
	display: flex;
	align-items: flex-end;
	padding: 0.9rem;
	transition: opacity 0.25s ease;
}

.gallery-item:hover img {
	transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

/* Contact */

.contact-card {
	border-radius: 1.2rem;
}

.form-control {
	border-radius: 0.75rem;
}

	.form-control:focus {
		border-color: var(--secondary-start);
		box-shadow: 0 0 0 0.125rem rgba(79, 172, 254, 0.42);
	}

.contact-hero {
	background: linear-gradient(135deg, rgba(21, 39, 87, 0.98), rgba(31, 60, 136, 0.95)), radial-gradient(circle at top right, rgba(0, 242, 254, 0.25), transparent 55%);
}

.contact-card-modern {
	border-radius: 1.4rem;
}

.quick-card {
	background: #ffffff;
	border-radius: 1.1rem;
	padding: 0.9rem 1rem;
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.quick-icon {
	width: 42px;
	height: 42px;
	border-radius: 999px;
	background: rgba(79, 172, 254, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 1.3rem;
}

/* Floating Buttons */

.floating-btn {
	position: fixed;
	z-index: 999;
	width: 48px;
	height: 48px;
	border-radius: 999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn {
	right: 1.25rem;
	bottom: 1.25rem;
	background-color: #25d366;
}

.call-btn {
	left: 1.25rem;
	bottom: 1.25rem;
	background: linear-gradient(135deg, #ff9800, #ffb74d);
}

.floating-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 38px rgba(0, 0, 0, 0.55);
}

/* Accent helpers */

.text-accent {
	color: var(--accent);
}

.bg-accent-soft {
	background-color: var(--accent-soft);
}

.webcolor {
	color:white !important;
}
/* Responsive tweaks */

@media (max-width: 991.98px) {
	.hero-section {
		text-align: center;
	}

	.hero-image-wrapper {
		max-width: 480px;
		margin: 0 auto;
	}

	.hero-stats-card {
		left: 50%;
		transform: translateX(-50%);
	}

	.hero-badge {
		right: 50%;
		transform: translateX(50%);
	}
}

@media (max-width: 575.98px) {
	.hero-section {
		padding-top: 5.5rem;
	}

	.section-heading h2 {
		font-size: 1.7rem;
	}
}

.navbar-logo {
	height: 60px; /* good for desktop */
	width: auto;
}

@media (max-width: 575.98px) {
	.navbar-logo {
		height: 50px; /* slightly smaller on mobile */
	}
}



.testimonial-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #0f2a5c, #1f4d8f);
	color: #fff;
	text-align: center;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
}

.section-subtitle {
	margin-bottom: 50px;
	color: #ccc;
}

.testimonial-section {
	padding: 80px 0;
	background: linear-gradient(135deg, #0f2a5c, #1f4d8f);
	color: #fff;
	text-align: center;
}

.section-title {
	font-size: 36px;
	font-weight: 700;
}

.section-subtitle {
	margin-bottom: 50px;
	color: #ccc;
}

.testimonial-card {
	background: #fff;
	color: #333;
	padding: 30px;
	border-radius: 15px;
	max-width: 600px;
	margin: auto;
	box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

	.testimonial-card p {
		font-style: italic;
		margin-bottom: 20px;
	}

	.testimonial-card h4 {
		color: #0f2a5c;
		margin-bottom: 5px;
	}

.partner-section {
	padding: 180px 0;
	background: #f4f8ff;
	text-align: center;
}

.partner-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 25px;
	margin-top: 40px;
}

.partner-card {
	background: #fff;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transition: 0.3s;
	text-align: left;
}

	.partner-card:hover {
		transform: translateY(-8px);
	}

	.partner-card h4 {
		color: #0f2a5c;
		margin-bottom: 10px;
	}

	.partner-card p {
		font-size: 14px;
		margin-bottom: 10px;
		color: #555;
	}

	.partner-card span {
		display: block;
		font-size: 13px;
		color: #777;
	}