 /* ========== CSS RESET & VARIABLES ========== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --navy: #1a2e4a;
            --gold: #c9ab63;
            --blue: #25597b;
            --dark-blue: #2c3e50;
            --text: #333;
            --text-light: #555;
            --bg-light: #f8f7f4;
            --white: #ffffff;
            --shadow: 0 4px 20px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
            --radius: 8px;
            /* --font-serif: 'Playfair Display', Georgia, serif; */
            /* --font-sans: 'Source Sans 3', sans-serif; */
        }

        html { scroll-behavior: smooth; }

        body {
            /* font-family: var(--font-sans); */
            font-family: 'Segoe UI', Arial, Helvetica, sans-serif;            line-height: 1.6;

            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a { text-decoration: none; color: inherit; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        /* ========== HEADER & NAVBAR ========== */
        header {
            background: var(--white);
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 200;
        }

        .navbar {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }

        .logo img {
            width: 180px;
            height: auto;
            display: block;
        }

        /* ========== HAMBURGER — hidden on desktop ========== */
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 26px;
            cursor: pointer;
            color: var(--navy);
            padding: 5px;
            line-height: 1;
            z-index: 10;
        }

        /* ========== DESKTOP: wrapper is just a normal container ========== */
        .nav-menu-wrapper {
            display: flex;
            align-items: center;
        }

        /* Drawer header — hidden on desktop */
        .nav-drawer-header { display: none; }

        /* ========== DESKTOP MENU ========== */
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 5px;
            padding: 24px 16px;
            color: var(--navy);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            white-space: nowrap;
        }

        .nav-link:hover { color: var(--gold); }

        .dropdown-icon {
            font-size: 11px;
            transition: transform 0.3s;
        }

        /* ========== MEGA DROPDOWN (desktop) ========== */
        .mega-dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            background: var(--white);
            box-shadow: var(--shadow-lg);
            border-top: 3px solid var(--gold);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            min-width: 860px;
            padding: 30px;
            z-index: 999;
        }

        .nav-item:hover .mega-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .nav-item:hover .dropdown-icon {
            transform: rotate(180deg);
        }

        .dropdown-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
        }

        .mega-heading {
            font-family: var(--font-serif);
            font-size: 1rem;
            color: var(--navy);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--gold);
        }

        .mega-list li { margin-bottom: 8px; }

        .mega-list a {
            color: #555;
            font-size: 0.88rem;
            display: flex;
            align-items: center;
            gap: 7px;
            padding: 3px 0;
            transition: all 0.2s;
        }

        .mega-list a:hover {
            color: var(--blue);
            padding-left: 4px;
        }

        .mega-list a i { width: 14px; color: var(--gold); }

        /* ========== OVERLAY — hidden on desktop ========== */
        .nav-overlay { display: none; }

        /* ==========================================
           MOBILE NAV  (≤ 1024px)
        ========================================== */
        @media (max-width: 1024px) {

            /* Show hamburger */
            .nav-toggle {
                display: flex;
                align-items: center;
                justify-content: center;
            }

            /* Dark backdrop — covers ONLY the area left of the drawer */
            .nav-overlay {
                display: block;
                position: fixed;
                top: 0;
                left: 0;
                bottom: 0;
                right: 100%;
                background: rgba(0,0,0,0.5);
                z-index: 400;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.3s ease;
            }

            /* .nav-overlay.show {
                right: min(320px, 88vw);
                opacity: 1;
                pointer-events: auto;
            } */

            /* Slide-in drawer — highest z-index */
            .nav-menu-wrapper {
                position: fixed;
                top: 0;
                right: -100%;
                width: min(320px, 88vw);
                height: 100vh;
                background: var(--white);
                box-shadow: -6px 0 30px rgba(0,0,0,0.18);
                z-index: 500;
                overflow-y: auto;
                overflow-x: hidden;
                transition: right 0.35s ease;
                display: flex;
                flex-direction: column;
                align-items: stretch;
            }

            .nav-menu-wrapper.open { right: 0; }

            /* Drawer header bar */
            .nav-drawer-header {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 20px;
                height: 64px;
                min-height: 64px;
                background: var(--navy);
                flex-shrink: 0;
                position: sticky;
                top: 0;
                z-index: 10;
            }

            .nav-drawer-title {
                font-family: var(--font-serif);
                font-size: 1.1rem;
                color: white;
                font-weight: 600;
                letter-spacing: 0.5px;
            }

            /* Close (×) button */
            .nav-close {
                background: rgba(255,255,255,0.15);
                border: 1px solid rgba(255,255,255,0.3);
                border-radius: 6px;
                width: 38px;
                height: 38px;
                display: flex;
                align-items: center;
                justify-content: center;
                cursor: pointer;
                transition: background 0.2s;
                flex-shrink: 0;
                -webkit-tap-highlight-color: transparent;
            }

            .nav-close:hover,
            .nav-close:active { background: rgba(255,255,255,0.3); }

            .nav-close i {
                font-size: 16px;
                color: white;
                pointer-events: none;
            }

            /* Menu list */
            .nav-menu {
                flex-direction: column;
                align-items: stretch;
                gap: 0;
                flex: 1;
                overflow-y: auto;
                padding-bottom: 24px;
            }

            .nav-link {
                padding: 15px 20px;
                border-bottom: 1px solid #f0f0f0;
                justify-content: space-between;
                font-size: 0.97rem;
            }

            /* Mobile mega dropdown — collapsible inline */
            .mega-dropdown {
                position: static !important;
                transform: none !important;
                opacity: 1 !important;
                visibility: visible !important;
                box-shadow: none !important;
                border-top: none !important;
                min-width: unset !important;
                padding: 0 !important;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                display: block !important;
                width: 100%;
                background: #f8fafc;
            }

            .mega-dropdown.mobile-open { max-height: 2000px; }

            .dropdown-grid {
                display: block;
                background: #f4f7fa;
                padding: 8px 0 12px 0;
                width: 100%;
            }

            .mega-col {
                padding: 10px 20px;
                border-bottom: 1px solid #e8e8e8;
            }

            .mega-col:last-child { border-bottom: none; }

            .mega-heading {
                font-size: 0.82rem;
                font-weight: 700;
                color: var(--blue);
                text-transform: uppercase;
                letter-spacing: 0.8px;
                margin-bottom: 8px;
                padding-bottom: 5px;
                border-bottom: 1px solid #dde5ee;
            }

            .mega-list li { margin-bottom: 2px; }

            .mega-list a {
                font-size: 0.88rem;
                padding: 7px 8px;
                border-radius: 4px;
                color: #444;
            }

            .mega-list a:hover {
                background: #e8f0f7;
                color: var(--blue);
                padding-left: 12px;
            }

            .mega-list a i { color: var(--gold); }
        }

        /* ========== HERO SECTION ========== */
        .sg-hero {
            background: linear-gradient(135deg, #1a2e4a 0%, #2c3e50 50%, #60ade0 100%);
            padding: 60px 20px;
        }

        .sg-hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .sg-breadcrumb nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }

        .sg-breadcrumb nav ul li a {
            color: rgba(255,255,255,0.65);
            font-size: 0.85rem;
            transition: color 0.2s;
        }

        .sg-breadcrumb nav ul li a:hover { color: var(--gold); }

        .sg-breadcrumb nav ul li:not(:last-child)::after {
            content: '›';
            margin-left: 6px;
            color: rgba(255,255,255,0.4);
        }

        .sg-main-heading {
            font-family: var(--font-serif);
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            color: var(--white);
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .sg-description {
            color: rgba(255,255,255,0.8);
            font-size: 0.98rem;
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .sg-cta {
            background: var(--gold);
            color: var(--navy);
            border: none;
            padding: 0;
            border-radius: 5px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            margin-bottom: 24px;
            display: inline-block;
        }

        .sg-cta a {
            display: inline-block;
            padding: 14px 28px;
            color: var(--navy);
            font-weight: 700;
        }

        .sg-cta:hover {
            background: #e0c070;
            transform: translateY(-2px);
        }

        .sg-rating {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }

        .sg-stars { color: var(--gold); letter-spacing: 2px; }

        .sg-image-wrapper img {
            width: 100%;
            height: 380px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }

        @media (max-width: 768px) {
            .sg-hero-container { grid-template-columns: 1fr; gap: 30px; }
            .sg-image-wrapper img { height: 240px; }
        }

        /* ========== EXPERIENCED LAWYER CARDS ========== */
        .experienced-lawyer { padding: 70px 20px; background: var(--bg-light); }
        .container-experience { max-width: 1200px; margin: 0 auto; }
        .section-title { text-align: center; margin-bottom: 50px; }
        .section-title h1 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--navy); margin-bottom: 10px; }
        .section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; }
        .cards-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s, box-shadow 0.3s; }
        .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        .card-header { background: linear-gradient(135deg, var(--dark-blue), var(--blue)); padding: 28px; color: white; }
        .card-icon { width: 52px; height: 52px; background: rgba(255,255,255,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 14px; }
        .card-title { font-family: var(--font-serif); font-size: 1.2rem; margin-bottom: 6px; }
        .card-subtitle { font-size: 0.85rem; opacity: 0.8; }
        .card-body { padding: 24px; flex: 1; }
        .card-body > p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 18px; line-height: 1.6; }
        .card-features { list-style: none; }
        .card-features li { display: flex; align-items: center; gap: 8px; padding: 6px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.88rem; color: var(--text); }
        .card-features li:last-child { border-bottom: none; }
        .card-features i { color: var(--blue); font-size: 0.8rem; }
        .card-footer { padding: 16px 24px; border-top: 1px solid #f0f0f0; }
        .consult-btn { background: linear-gradient(135deg, var(--dark-blue), var(--blue)); color: white; border: none; padding: 11px 22px; border-radius: 5px; font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 8px; }
        .consult-btn:hover { background: linear-gradient(135deg, var(--blue), var(--dark-blue)); transform: translateY(-1px); }
        @media (max-width: 900px) { .cards-container { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; } }

        /* ========== LAWYERS SECTION ========== */
        .Lawyers-section { padding: 70px 20px; max-width: 1200px; margin: 0 auto; }
        .section-header { text-align: center; margin-bottom: 50px; }
        .section-header h2 { font-family: var(--font-serif); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--navy); margin-bottom: 12px; position: relative; }
        .section-header h2::after { content: ''; display: block; width: 70px; height: 3px; background: var(--gold); margin: 12px auto 0; }
        .section-header p { color: var(--text-light); max-width: 700px; margin: 0 auto; }
        .Lawyers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
        .Lawyer-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border-left: 4px solid var(--blue); transition: transform 0.3s, box-shadow 0.3s; }
        .Lawyer-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        .card-image { height: 260px; overflow: hidden; position: relative; }
        .card-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transition: transform 0.5s; }
        .Lawyer-card:hover .card-image img { transform: scale(1.06); }
        .card-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); padding: 20px; color: white; }
        .card-overlay h3 { font-family: var(--font-serif); font-size: 1.2rem; color: white; margin-bottom: 4px; }
        .card-overlay p { font-size: 0.85rem; opacity: 0.85; }
        .card-content { padding: 18px; }
        .specialties { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
        .specialty { background: #e8f0f7; color: var(--blue); padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 500; }
        .card-content p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; margin-bottom: 16px; }
        .card-actions { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
        .btn { display: inline-block; padding: 9px 20px; border-radius: 5px; font-weight: 600; font-size: 0.88rem; cursor: pointer; border: none; transition: all 0.3s; }
        .btn-primary { background: linear-gradient(135deg, var(--dark-blue), var(--blue)); color: white; }
        .btn-primary:hover { background: var(--blue); transform: translateY(-1px); }
        .card-actions .social-links { display: flex; gap: 8px; }
        .card-actions .social-links a { width: 36px; height: 36px; border-radius: 50%; background: #f0f4f8; display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 1.1rem; transition: all 0.3s; }
        .card-actions .social-links a:hover { background: #25d366; color: white; transform: translateY(-2px); }
        @media (max-width: 900px) { .Lawyers-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } .card-actions { flex-direction: column; } .card-actions .btn { width: 100%; text-align: center; } .card-actions .social-links { justify-content: center; } }

     /* ========== SERVICES SECTION ========== */
.bodying { background: var(--bg-light); padding: 70px 20px; }
.services-centre { max-width: 1200px; margin: 0 auto; }

.services-top {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 14px;
    text-align: center;
}
.services-top .section-header { text-align: center; margin-bottom: 0; }
.services-top .section-header h2::after { margin: 12px auto 0; }
.services-consult-btn {
    background: var(--gold);
    color: var(--navy);
    padding: 11px 26px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
}
.services-consult-btn:hover { background: transparent; border-color: var(--gold); color: var(--gold); }

.services-divider { width: 70px; height: 3px; background: var(--gold); margin: 0 auto 40px; }

.services-gridd {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #dde2ea;
    border-left: 1px solid #dde2ea;
}

.service-cardd {
    border-right: 1px solid #dde2ea;
    border-bottom: 1px solid #dde2ea;
    padding: 32px 28px;
    background: var(--white);
    text-decoration: none;
    display: block;
    transition: background 0.25s;
    position: relative;
}
.service-cardd:hover { background: #f0f5fa; }

.service-cardd-num {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.card-headerr { padding: 0; border-bottom: none; margin-bottom: 10px; }
.card-headerr h2 {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
}
.card-headerr p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.55;
    margin: 0;
}

.service-listt {
    list-style: none;
    padding: 14px 0 0;
    margin: 0;
}
.service-listt li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.83rem;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.45;
}
.service-listt li:last-child { border-bottom: none; }
.service-listt li::before { content: '—'; color: var(--gold); flex-shrink: 0; font-size: 0.75rem; padding-top: 2px; }

.service-cardd-footer {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #eaedf2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.service-cardd-footer span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.service-cardd-footer .svc-arr { color: var(--gold); font-size: 1rem; transition: transform 0.2s; }
.service-cardd:hover .svc-arr { transform: translateX(4px); }

/* Featured cell — navy bg */
.service-cardd.svc-featured { background: var(--navy); }
.service-cardd.svc-featured:hover { background: #1e3557; }
.service-cardd.svc-featured .service-cardd-num { color: var(--gold); }
.service-cardd.svc-featured .card-headerr h2 { color: white; }
.service-cardd.svc-featured .card-headerr p { color: rgba(255,255,255,0.6); }
.service-cardd.svc-featured .service-listt li { color: rgba(255,255,255,0.75); border-bottom-color: rgba(255,255,255,0.1); }
.service-cardd.svc-featured .service-cardd-footer { border-top-color: rgba(255,255,255,0.15); }
.service-cardd.svc-featured .service-cardd-footer span { color: white; }

/* CTA last cell */
.service-cardd.svc-cta { background: #fdf8ee; display: flex; flex-direction: column; justify-content: center; }
.service-cardd.svc-cta:hover { background: #faf2dc; }
.service-cardd.svc-cta h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--navy);
    margin: 10px 0 12px;
    line-height: 1.3;
}
.service-cardd.svc-cta p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; margin-bottom: 20px; }
.svc-cta-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Segoe UI', Arial, sans-serif;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
    display: inline-block;
    transition: color 0.2s;
}
.service-cardd.svc-cta:hover .svc-cta-link { color: var(--gold); }

@media (max-width: 900px) { .services-gridd { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) {
    .services-gridd { grid-template-columns: 1fr; }
    .services-top { flex-direction: column; align-items: center; }
}

        /* ========== TESTIMONIALS ========== */
        .testimonials-section { padding: 70px 20px; max-width: 1200px; margin: 0 auto; }
        .testimonials-container { overflow: hidden; position: relative; }
        .testimonials-slider { display: flex; transition: transform 0.5s ease-in-out; }
        .slide { background: var(--white); border-radius: 10px; padding: 28px; margin: 0 12px; flex-shrink: 0; width: calc(33.333% - 24px); box-shadow: var(--shadow); border: 1px solid #eee; display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.3s, box-shadow 0.3s; }
        .slide:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
        .photo { margin-bottom: 12px; }
        .images { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
        .slide-name { font-family: var(--font-serif); font-size: 1.05rem; color: var(--navy); margin-bottom: 6px; }
        .stars { color: var(--gold); margin-bottom: 14px; }
        .slide-para { color: var(--text-light); font-size: 0.9rem; line-height: 1.65; }
        .fa-quote-left, .fa-quote-right { color: var(--blue); font-size: 0.85rem; }
        .fa-quote-left { margin-right: 6px; }
        .fa-quote-right { margin-left: 6px; }
        .slider-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
        .dot { width: 11px; height: 11px; border-radius: 50%; background: #ddd; cursor: pointer; transition: all 0.3s; border: none; }
        .dot.active { background: var(--blue); transform: scale(1.25); }
        @media (max-width: 900px) { .slide { width: calc(50% - 24px); } }
        @media (max-width: 600px) { .slide { width: calc(100% - 24px); } }

        /* ========== FAQ SECTION ========== */
        .faqs-section { padding: 70px 20px; background: var(--bg-light); }
        .faqs-container { max-width: 900px; margin: 0 auto; }
        .accordion { width: 100%; padding: 18px 20px; text-align: left; font-family: var(--font-serif); font-size: 1.05rem; font-weight: 600; border: none; outline: none; cursor: pointer; background: var(--white); color: var(--navy); display: flex; justify-content: space-between; align-items: center; box-shadow: 0 2px 8px rgba(0,0,0,0.07); border-radius: var(--radius); margin-bottom: 10px; border-left: 4px solid var(--blue); transition: all 0.3s; }
        .accordion::after { content: '\25BC'; font-size: 0.85rem; transition: transform 0.3s; flex-shrink: 0; }
        .accordion.active { background: linear-gradient(135deg, var(--dark-blue), var(--blue)); color: white; border-left-color: var(--gold); }
        .accordion.active::after { transform: rotate(180deg); }
        .accordion:hover:not(.active) { background: #f0f5fa; transform: translateY(-1px); }
        .panel { max-height: 0; overflow: hidden; background: var(--white); transition: max-height 0.35s ease; border-radius: 0 0 var(--radius) var(--radius); margin-bottom: 10px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
        .panel-para { padding: 20px; color: var(--text-light); line-height: 1.7; font-size: 0.95rem; }

        /* ========== BLOGS SECTION ========== */
        .blogs-section { padding: 70px 20px; max-width: 1200px; margin: 0 auto; }
        .blogs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
        .blog-box { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: var(--shadow); border-top: 3px solid var(--blue); transition: transform 0.3s, box-shadow 0.3s; }
        .blog-box:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        .blog-box img { width: 100%; height: 180px; object-fit: cover; }
        .blog-content { padding: 18px; }
        .blog-content h3 { font-family: var(--font-serif); font-size: 1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
        .blog-meta { display: flex; justify-content: space-between; font-size: 0.8rem; color: #888; margin-bottom: 10px; flex-wrap: wrap; gap: 4px; }
        .blog-content p { color: var(--text-light); font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
        .blog-content a { display: inline-block; padding: 8px 18px; background: linear-gradient(135deg, var(--dark-blue), var(--blue)); color: white; border-radius: 5px; font-size: 0.85rem; font-weight: 600; transition: all 0.3s; border: 2px solid var(--blue); }
        .blog-content a:hover { background: white; color: var(--navy); }
        .cta-section { text-align: center; margin-top: 40px; }
        .cta-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; background: linear-gradient(135deg, var(--dark-blue), var(--blue)); color: white; border-radius: 5px; font-weight: 600; font-size: 1rem; transition: all 0.3s; border: none; cursor: pointer; }
        .cta-btn:hover { background: linear-gradient(135deg, #25d366, #128c7e); transform: translateY(-2px); }
        @media (max-width: 900px) { .blogs { grid-template-columns: 1fr 1fr; } }
        @media (max-width: 600px) { .blogs { grid-template-columns: 1fr; } }

        /* ========== CONTACT SECTION ========== */
        .contact-section { padding: 70px 20px; background: var(--bg-light); }
        .contact-container { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 40px; }
        .contact-info { flex: 1; min-width: 280px; }
        .contact-info h2 { font-family: var(--font-serif); font-size: 2rem; color: var(--navy); margin-bottom: 8px; }
        .contact-info h2::after { content: ''; display: block; width: 50px; height: 3px; background: var(--gold); margin: 8px 0 16px; }
        .office-address { font-size: 1rem; color: var(--navy); font-weight: 600; margin-bottom: 12px; }
        .contact-info > p { color: var(--text-light); margin-bottom: 20px; }
        .contact-info .map iframe { width: 100%; height: 280px; border: none; border-radius: 10px; box-shadow: var(--shadow); }
        .contact-form { flex: 1; min-width: 280px; background: var(--white); padding: 32px; border-radius: 10px; box-shadow: var(--shadow); }
        .contact-form h3 { font-family: var(--font-serif); font-size: 1.6rem; color: var(--navy); margin-bottom: 4px; }
        .contact-form h3::after { content: ''; display: block; width: 45px; height: 3px; background: var(--gold); margin: 8px 0 20px; }
        .contact-form form { display: flex; flex-direction: column; gap: 14px; }
        .contact-form input, .contact-form textarea { padding: 12px 15px; border: 1px solid #e0e0e0; border-radius: 5px; font-family: var(--font-sans); font-size: 0.95rem; transition: border-color 0.3s, box-shadow 0.3s; width: 100%; }
        .contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,89,123,0.1); }
        .contact-form button { padding: 13px; background: linear-gradient(135deg, var(--dark-blue), var(--blue)); color: white; border: 2px solid var(--blue); border-radius: 5px; font-family: var(--font-sans); font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .contact-form button:hover { background: white; color: var(--navy); }
        @media (max-width: 700px) { .contact-container { flex-direction: column; } }




        

      /* ========== FOOTER ========== */
.footer { background: linear-gradient(135deg, #1a2e4a, #25597b); padding: 50px 20px 20px; }
.footer-row { max-width: 1200px; margin: 0 auto 30px; display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; }
.footer-col { flex: 1; min-width: 180px; }
.footer-col h4 { font-family: var(--font-serif); font-size: 1.1rem; color: white; margin-bottom: 18px; padding-bottom: 8px; border-bottom: 2px solid var(--gold); }
.footer-col .links li { margin-bottom: 8px; }
.footer-col .links li a { color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: all 0.2s; }
.footer-col .links li a:hover { color: white; padding-left: 5px; }
.footer-col > p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6; margin-bottom: 14px; }
.footer-col form { display: flex; flex-direction: column; gap: 8px; }
.footer-col input { padding: 10px 14px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); border-radius: 5px; color: white; font-size: 0.9rem; }
.footer-col input::placeholder { color: rgba(255,255,255,0.55); }
.footer-col form button { padding: 10px; background: var(--gold); color: var(--navy); border: none; border-radius: 5px; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: background 0.3s; }
.footer-col form button:hover { background: #e0c070; }

/* Brand Column */
.footer-col--brand { flex: 1.4; min-width: 220px; }
.footer-logo { margin-bottom: 16px; }
.footer-logo-img { width: 160px; height: auto; object-fit: contain; background-color: white; border-radius: 15PX; }
.footer-tagline { font-style: italic; color: var(--gold) !important; font-size: 0.82rem !important; opacity: 0.85; margin-top: 8px; }

/* Social */
.footer-social { text-align: center; max-width: 1200px; margin: 0 auto 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.footer-social h3 { font-family: var(--font-serif); color: white; font-size: 1.2rem; margin-bottom: 16px; }
.social-icons { display: flex; justify-content: center; gap: 12px; }
.social-icons a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 50%; color: white; font-size: 1.1rem; transition: all 0.3s; }
.social-icons a:hover { background: var(--gold); color: var(--navy); transform: translateY(-3px); }

/* Footer Bottom */
.footer-bottom { text-align: center; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.6); font-size: 0.88rem; max-width: 1200px; margin: 0 auto; }

/* Responsive */
@media (max-width: 768px) { .footer-col { min-width: calc(50% - 15px); } .footer-col--brand { min-width: 100%; } }
@media (max-width: 480px) { .footer-col { min-width: 100%; } }

        /* ========== WHATSAPP FLOATING ========== */
        .icon-popp { position: fixed; right: 24px; bottom: 24px; z-index: 999; }
        .whatsapp-icon { display: flex; align-items: center; gap: 8px; text-decoration: none; }
        .whatsapp-button { background: #25D366; color: white; border: none; padding: 10px 16px; border-radius: 25px; font-family: var(--font-sans); font-weight: 700; font-size: 0.88rem; cursor: pointer; box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: all 0.3s; }
        .whatsapp-button:hover { background: #128c7e; transform: translateY(-2px); }
        .whatsapp-icon img { width: 48px; height: 48px; border-radius: 50%; box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: transform 0.3s; }
        .whatsapp-icon:hover img { transform: scale(1.1); }
        @media (max-width: 480px) { .icon-popp { right: 14px; bottom: 14px; } .whatsapp-button { display: none; } }

        /* ========== UTILITY ========== */
        .main-headingg { font-family: var(--font-serif); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--navy); }
        .civill { color: var(--navy); }
        .field-button { text-decoration: none; color: inherit; }



    .header-contact-btn {
            background: var(--gold);
            color: var(--navy);
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s;
            border: 1px solid transparent;
            margin-left: 20px;
            white-space: nowrap;
        }

         .header-contact-btn i { font-size: 1rem; }
        .header-contact-btn:hover {
            background: transparent;
            border-color: var(--gold);
            color: var(--gold);
            transform: translateY(-2px);
        }

          /* contact section with RESPONSIVE MAP */
        .map-container {
            margin-top: 20px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: black;
            border-radius: 40px;
            
        }
        .contact-section iframe {
            width: 100%;
            height: 280px;
            border: 0;
            display: block;
                        border-radius: 40px;

        }