:root {
    --primary: #04407a;
    --secondary: #247ffb;
    --primary-dark: #032d56;
    --secondary-light: #5fa0fc;
    --gradient: linear-gradient(135deg, #04407a 0%, #247ffb 100%);
    --gradient-reverse: linear-gradient(135deg, #247ffb 0%, #04407a 100%);
}

* { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    overflow-x: hidden;
}

/* ─── NAVBAR ────────────────────────── */
#mainNav {
    background: var(--gradient);
    padding: 0.6rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
#mainNav.scrolled {
    padding: 0.4rem 0;
    background: var(--primary);
    box-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.navbar-brand span {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
}
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.6rem 1rem !important;
    transition: color 0.2s;
}
.nav-link:hover, .nav-link.active {
    color: #fff !important;
    text-shadow: 0 0 8px rgba(255,255,255,0.3);
}
.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
    padding: 0.5rem;
}
.dropdown-item {
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.dropdown-item:hover {
    background: rgba(36,127,251,0.1);
    color: var(--primary);
}

/* ─── HERO ──────────────────────────── */
.hero-section {
    background: var(--gradient);
    color: #fff;
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}
.hero-section > .container { position: relative; z-index: 1; }
.hero-section h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.2rem;
}
.hero-section p.lead {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
}
.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* ─── INNER PAGE HERO ──────────────── */
.page-hero {
    background: var(--gradient);
    color: #fff;
    padding: 8rem 0 3rem;
    text-align: center;
}
.page-hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
}
.page-hero p {
    opacity: 0.85;
    max-width: 700px;
    margin: 0 auto;
}

/* ─── BREADCRUMB ───────────────────── */
.breadcrumb-wrapper {
    background: #f0f4f8;
    border-bottom: 1px solid #e2e8f0;
}
.breadcrumb-wrapper .breadcrumb {
    font-size: 0.85rem;
}
.breadcrumb-wrapper a {
    color: var(--primary);
    text-decoration: none;
}
.breadcrumb-wrapper a:hover {
    color: var(--secondary);
}

/* ─── BUTTONS ──────────────────────── */
.btn-primary {
    background: var(--secondary);
    border-color: var(--secondary);
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(4,64,122,0.3);
}
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.btn-cta {
    background: #25d366;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 0.7rem 2rem;
    border-radius: 8px;
    transition: all 0.3s;
}
.btn-cta:hover {
    background: #1ebe57;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,211,102,0.3);
}

/* ─── SERVICE CARDS ────────────────── */
.service-card {
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(4,64,122,0.12) !important;
}
.service-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    transition: color 0.3s;
}
.service-card:hover .service-icon {
    color: var(--primary);
}

/* ─── SECTIONS ─────────────────────── */
.section-title {
    font-weight: 800;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 0.5rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}
.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}
.section-subtitle {
    color: #6b7280;
    font-size: 1.05rem;
    max-width: 700px;
}
.bg-light-blue {
    background: #f0f7ff;
}

/* ─── WHY CHOOSE US ────────────────── */
.feature-box {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    border: 1px solid #f0f0f0;
}
.feature-box:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.feature-box .icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(36,127,251,0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

/* ─── DISTRICT BADGES ──────────────── */
.district-badge {
    display: inline-block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    padding: 0.4rem 1rem;
    margin: 0.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary);
    transition: all 0.2s;
}
.district-badge:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

/* ─── CTA SECTION ──────────────────── */
.cta-section {
    background: var(--gradient);
    color: #fff;
    padding: 4rem 0;
}
.cta-section h2 {
    font-weight: 800;
}

/* ─── FAQ ───────────────────────────── */
.faq-section .accordion-button {
    font-weight: 600;
    color: var(--primary);
    font-size: 1rem;
}
.faq-section .accordion-button:not(.collapsed) {
    background: rgba(36,127,251,0.08);
    color: var(--primary);
    box-shadow: none;
}
.faq-section .accordion-button::after {
    filter: hue-rotate(200deg);
}
.faq-section .accordion-item {
    border-radius: 12px !important;
    border: 1px solid #e2e8f0;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

/* ─── CONTENT AREA ─────────────────── */
.content-area h2 {
    color: var(--primary);
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.content-area h3 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.content-area p {
    line-height: 1.8;
    color: #444;
}
.content-area ul {
    padding-left: 1.2rem;
}
.content-area ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* ─── PROCESS STEPS ────────────────── */
.step-card {
    text-align: center;
    padding: 1.5rem;
}
.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* ─── TESTIMONIALS ─────────────────── */
.testimonial-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #f0f0f0;
    transition: all 0.3s;
}
.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.testimonial-stars {
    color: #fbbf24;
}

/* ─── STICKY CTA ───────────────────── */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sticky-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.sticky-btn:hover {
    transform: scale(1.05);
    color: #fff;
}
.sticky-btn i {
    font-size: 1.3rem;
}
.whatsapp-btn {
    background: #25d366;
}
.whatsapp-btn:hover {
    background: #1ebe57;
    box-shadow: 0 6px 25px rgba(37,211,102,0.4);
}
.call-btn {
    background: var(--primary);
}
.call-btn:hover {
    background: var(--secondary);
    box-shadow: 0 6px 25px rgba(36,127,251,0.4);
}

/* ─── FOOTER ───────────────────────── */
footer {
    background: #0a1628 !important;
}
.footer-links li {
    margin-bottom: 0.4rem;
}
.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 4px;
}

/* ─── CONTACT FORM ─────────────────── */
.contact-form .form-control {
    border-radius: 10px;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    transition: border-color 0.2s;
}
.contact-form .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(36,127,251,0.15);
}

/* ─── SCROLL TO TOP ────────────────── */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 42px;
    height: 42px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 9998;
    transition: all 0.3s;
    box-shadow: 0 3px 15px rgba(0,0,0,0.2);
    cursor: pointer;
}
.scroll-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}
.scroll-top.show {
    display: flex;
}

/* ─── ANIMATIONS ───────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── RESPONSIVE ───────────────────── */
@media (max-width: 991px) {
    .hero-section { padding: 7rem 0 3rem; }
    .hero-section h1 { font-size: 2rem; }
    .page-hero { padding: 6rem 0 2rem; }
    .page-hero h1 { font-size: 1.8rem; }
}
@media (max-width: 767px) {
    .hero-section h1 { font-size: 1.7rem; }
    .sticky-btn span { display: none; }
    .sticky-btn { padding: 12px; border-radius: 50%; }
    .sticky-cta { bottom: 15px; right: 15px; }
    .scroll-top { bottom: 85px; right: 20px; }
}
