        :root {
            --primary: #1a6b3c;
            --primary-dark: #0d4a28;
            --primary-light: #2a8a50;
            --accent: #e8472a;
            --accent-orange: #f5a623;
            --accent-blue: #2563eb;
            --accent-purple: #7c3aed;
            --text-dark: #1a1a2e;
            --text-mid: #374151;
            --text-light: #6b7280;
            --bg-light: #f8faf9;
            --bg-white: #ffffff;
            --border: #e5e7eb;
            --shadow: 0 4px 24px rgba(26, 107, 60, 0.10);
            --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.07);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans Bengali', sans-serif;
            background: var(--bg-white);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* ===== NAVBAR ===== */
        nav {
            background: #fff;
            border-bottom: 2px solid #e8f5ed;
            position: sticky;
            top: 0;
            z-index: 10002;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 68px;
            box-shadow: 0 2px 16px rgba(26, 107, 60, 0.06);
        }

        .nav-left {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .nav-logo-emblem {
            width: 52px;
            height: 52px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

        .nav-brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .nav-brand-text .bn {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .nav-brand-text .en {
            font-size: 0.65rem;
            color: var(--text-light);
            letter-spacing: 0.5px;
        }

        .nav-divider {
            width: 1px;
            height: 36px;
            background: var(--border);
            margin: 0 0.8rem;
        }

        .nav-smart-logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-smart-logo .smart-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, #1a6b3c, #2a8a50);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        .nav-smart-logo .smart-text {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--primary);
        }

        .nav-smart-logo .smart-sub {
            font-size: 0.6rem;
            color: var(--text-light);
        }

        .nav-links {
            display: flex;
            /* align-items: center; */
            gap: 0.2rem;
            list-style: none;
        }

        .nav-links li a {
            text-decoration: none;
            color: var(--text-mid);
            /* font-size: 0.85rem; */
            font-weight: 500;
            padding: 0.5rem 0.9rem;
            border-radius: 6px;
            transition: all 0.2s;
            position: relative;
        }

        .nav-links li a:hover {
            color: var(--primary);
            background: #edfaf2;
        }

        .nav-links li.active a {
            color: var(--primary);
            font-weight: 700;
        }

        .nav-links li.active a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .sb_dropdown-menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 50%;
            transform: translateX(-50%);
            width: 60%;
            height: 2px;
            background: none !important;
            border-radius: 2px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .btn-download-nav {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 0.5rem 1.1rem;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .btn-download-nav:hover {
            background: var(--primary-dark);
        }

        .nav-search {
            width: 32px;
            height: 32px;
            border: 1px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            color: var(--text-mid);
            transition: all 0.2s;
        }

        .nav-search:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .lang-toggle {
            background: none;
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 0.3rem 0.6rem;
            font-size: 0.75rem;
            color: var(--text-mid);
            cursor: pointer;
            font-family: inherit;
        }

        /* ===== HERO ===== */
        .hero {
            background:
                linear-gradient(rgba(10, 61, 32, 0.6), rgba(26, 107, 60, 0.6)),
                url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;

            min-height: 520px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            padding: 3rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: 30%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero-text {
            position: relative;
            z-index: 2;
            animation: fadeInLeft 0.8s ease;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 900;
            color: #ffffff;
            line-height: 1.1;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
            margin-bottom: 0.5rem;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 600;
            margin-bottom: 0.8rem;
        }

        .hero-desc {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.75);
            line-height: 1.7;
            max-width: 380px;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-bottom: 1rem;
        }

        .btn-app {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.4rem;
            border-radius: 10px;
            font-family: inherit;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.25s;
            border: none;
        }

        .btn-android {
            background: rgba(255, 255, 255, 0.12);
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(8px);
        }

        .btn-android:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }

        .btn-ios {
            background: #1a1a2e;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.1);
        }

        .btn-ios:hover {
            background: #111;
            transform: translateY(-2px);
        }

        .btn-demo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.4rem;
            background: none;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-family: inherit;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.25s;
        }

        .btn-demo:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-2px);
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: flex-end;
            position: relative;
            z-index: 2;
            animation: fadeInRight 0.8s ease;
        }

        .phone-mockup {
            width: 220px;
            background: #111;
            border-radius: 36px;
            padding: 12px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .phone-screen {
            background: #fff;
            border-radius: 26px;
            overflow: hidden;
            height: 420px;
            display: flex;
            flex-direction: column;
        }

        .phone-statusbar {
            background: var(--primary);
            color: white;
            padding: 0.4rem 1rem;
            font-size: 0.6rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .phone-header {
            background: var(--primary);
            color: white;
            padding: 0.6rem 1rem;
            font-size: 0.8rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .phone-content {
            flex: 1;
            padding: 0.8rem;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0.6rem;
            overflow: hidden;
            background: #f8faf9;
        }

        .phone-service-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.3rem;
            padding: 0.5rem 0.2rem;
            background: white;
            border-radius: 10px;
            font-size: 0.5rem;
            color: var(--text-dark);
            text-align: center;
            box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
        }

        .phone-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
        }

        /* ===== SECTION TITLE ===== */
        .section-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        /* ===== SERVICES ===== */
        .services-section {
            padding: 4rem 4rem;
            background: #fff;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 1.2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .service-card {
            background: #fff;
            border: 1.5px solid var(--border);
            border-radius: 14px;
            padding: 1.4rem 0.8rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.25s;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.7rem;
        }

        .service-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .service-icon-wrap {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .service-card h3 {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .service-card p {
            font-size: 0.65rem;
            color: var(--text-light);
            line-height: 1.5;
        }

        .btn-see-all {
            display: block;
            margin: 1.5rem auto 0;
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.7rem 2rem;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.85rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-see-all:hover {
            background: var(--primary-dark);
        }

        /* ===== EMERGENCY ===== */
        .emergency-section {
            background: linear-gradient(135deg, #c0392b, #e8472a);
            padding: 1.5rem 4rem;
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .emergency-label {
            color: white;
        }

        .emergency-label h2 {
            font-size: 1.3rem;
            font-weight: 800;
        }

        .emergency-label p {
            font-size: 0.75rem;
            opacity: 0.85;
        }

        .emergency-cards {
            display: flex;
            gap: 1rem;
            flex: 1;
            flex-wrap: wrap;
        }

        .emergency-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1.5px solid rgba(255, 255, 255, 0.25);
            border-radius: 12px;
            padding: 0.8rem 1.2rem;
            color: white;
            display: flex;
            align-items: center;
            gap: 0.7rem;
            cursor: pointer;
            transition: all 0.2s;
            flex: 1;
            min-width: 120px;
        }

        .emergency-card:hover {
            background: rgba(255, 255, 255, 0.25);
        }

        .emergency-num {
            font-size: 1.8rem;
            font-weight: 900;
            line-height: 1;
        }

        .emergency-text {
            font-size: 0.7rem;
            opacity: 0.9;
        }

        .sos-card {
            background: white;
            color: var(--accent);
            border: none;
            border-radius: 12px;
            padding: 0.8rem 1.4rem;
            font-weight: 900;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .sos-card:hover {
            transform: scale(1.05);
        }

        /* ===== MOBILE APP ===== */
        .app-section {
            display: grid;
            grid-template-columns: 1fr 1.8fr;
            gap: 3rem;
            align-items: center;
            margin: 0 auto;
        }

        .app-text h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.2;
            margin-bottom: 1.2rem;
        }

        .btn-app-download {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.6rem 1.4rem;
            border-radius: 8px;
            font-family: inherit;
            font-size: 0.8rem;
            font-weight: 600;
            cursor: pointer;
            margin-bottom: 1.2rem;
            display: block;
            width: fit-content;
            transition: background 0.2s;
        }

        .btn-app-download:hover {
            background: var(--primary-dark);
        }

        .qr-store-row {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .qr-box {
            width: 60px;
            height: 60px;
            background: #f3f4f6;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.5rem;
            color: var(--text-light);
            text-align: center;
            padding: 4px;
        }

        .store-badges {
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .store-badge {
            background: #111;
            color: white;
            border-radius: 6px;
            padding: 0.3rem 0.7rem;
            font-size: 0.65rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
            cursor: pointer;
        }

        .phone-screens-row {
            display: flex;
            gap: 0.8rem;
            align-items: flex-end;
            overflow: hidden;
        }

        .phone-preview {
            flex: 1;
            min-width: 0;
            background: #111;
            border-radius: 20px;
            padding: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .phone-preview-screen {
            background: var(--bg-light);
            border-radius: 14px;
            overflow: hidden;
            height: 180px;
            display: flex;
            flex-direction: column;
        }

        .phone-preview-header {
            background: var(--primary);
            color: white;
            padding: 0.4rem 0.6rem;
            font-size: 0.55rem;
            font-weight: 700;
        }

        .phone-preview-body {
            flex: 1;
            padding: 0.5rem;
            display: flex;
            flex-direction: column;
            gap: 0.3rem;
        }

        .preview-card {
            background: white;
            border-radius: 6px;
            padding: 0.4rem;
            font-size: 0.5rem;
            color: var(--text-mid);
            display: flex;
            align-items: center;
            gap: 0.3rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
        }

        .preview-icon {
            width: 20px;
            height: 20px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.7rem;
            flex-shrink: 0;
        }

        .phone-preview-label {
            text-align: center;
            font-size: 0.65rem;
            color: var(--text-light);
            margin-top: 0.4rem;
            font-weight: 500;
        }

        /* ===== WARD REPS ===== */
        .ward-section {
            padding: 3.5rem 4rem;
            background: var(--bg-light);
        }

        .ward-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.2rem;
            max-width: 1100px;
            margin: 0 auto 1.5rem;
        }

        .ward-card {
            background: white;
            border-radius: 14px;
            padding: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.9rem;
            box-shadow: var(--shadow-card);
            border: 1.5px solid transparent;
            transition: all 0.2s;
            cursor: pointer;
        }

        .ward-card:hover {
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .ward-avatar {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            object-fit: cover;
            background: linear-gradient(135deg, #c8e6c9, #a5d6a7);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            flex-shrink: 0;
        }

        .ward-info h4 {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--text-dark);
        }

        .ward-info p {
            font-size: 0.65rem;
            color: var(--text-light);
            margin-top: 0.2rem;
        }

        .ward-info .ward-num {
            font-size: 0.65rem;
            color: var(--primary);
            font-weight: 600;
        }

        .ward-info .ward-phone {
            font-size: 0.65rem;
            color: var(--text-mid);
        }

        /* ===== FOOTER ===== */
        footer {
            background: #0d3d22;
            color: rgba(255, 255, 255, 0.85);
            padding: 3rem 4rem 1.5rem;
        }

        /* ===== FOOTER RESPONSIVE FIX ===== */

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
            gap: 2.5rem;
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            footer {
                padding: 2rem 1rem 1.2rem;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 1.6rem;
            }

            .footer-brand,
            .footer-col {
                text-align: center;
            }

            .footer-col ul {
                align-items: center;
            }

            .social-links {
                justify-content: center;
            }

            .footer-contact {
                text-align: center;
            }
        }

        .footer-brand h3 {
            font-size: 1rem;
            font-weight: 800;
            color: white;
            margin-bottom: 0.8rem;
        }

        .footer-brand p {
            font-size: 0.75rem;
            line-height: 1.7;
            opacity: 0.75;
        }

        .footer-col h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.8rem;
        }

        .footer-col ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 0.75rem;
            transition: color 0.2s;
        }

        .footer-col ul li a:hover {
            color: white;
        }

        .footer-contact {
            font-size: 0.75rem;
            opacity: 0.75;
        }

        .footer-contact div {
            margin-bottom: 0.4rem;
        }

        .social-links {
            display: flex;
            gap: 0.6rem;
            margin-top: 0.8rem;
        }

        .social-link {
            width: 30px;
            height: 30px;
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
            text-decoration: none;
            transition: transform 0.2s;
        }

        .social-link:hover {
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 1.2rem;
            text-align: center;
            font-size: 0.72rem;
            opacity: 0.55;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .phone-mockup {
            animation: float 3s ease-in-out infinite;
        }

        /* Scroll reveal */
        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE FIX ===== */
        @media (max-width: 1200px) {

            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .ward-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 2rem;
                text-align: center;
            }

            .hero-image {
                margin-top: 2rem;
            }


            .nav-search,
            .lang-toggle {
                display: none;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 0 1rem;
            }

            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .app-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .phone-screens-row {
                overflow-x: auto;
            }

            .ward-grid {
                grid-template-columns: 1fr;
            }

            section,
            .services-section,
            .complaints-section,
            .ward-section,
            footer {
                padding: 2rem 1rem;
            }
        }

        .complaint-box {
            text-align: center;
            padding: 10px 15px;
            border-radius: 7px;
            transition: 0.3s;
            cursor: pointer;
            height: 100%;
            box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
        }

        .complaint-box i {
            font-size: 35px;
            display: block;
            margin-bottom: 8px;
        }

        .complaint-box span {
            font-size: 14px;
            font-weight: 600;
        }

        .complaint-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .menu-toggle {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
        }

        /* ===== SIDE DRAWER MENU (MOBILE) ===== */
        @media (max-width:768px) {

            .menu-toggle {
                display: block;
            }

            .btn-download-nav,
            .nav-search,
            .lang-toggle {
                display: none;
            }

            .nav-links {
                position: fixed;
                top: 68px;
                left: -280px;
                height: 100vh;
                width: 260px;
                background: #ffffff;
                flex-direction: column;
                padding: 1rem 1.2rem 1.2rem;
                gap: 0.6rem;
                box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15);
                transition: left 0.35s ease;
                z-index: 10001;
                /* above overlay */
                display: flex;
                /* IMPORTANT */
            }

            .nav-links.show {
                left: 0;
            }

            .menu-overlay {
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.35);
                backdrop-filter: blur(3px);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.3s;
                z-index: 10000;
            }

            .menu-overlay.show {
                opacity: 1;
                pointer-events: auto;
            }
        }

        i {
            color: #6c757d !important;
        }


        .topbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: #0f5132;
            color: #fff;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 40px;
            z-index: 9999;
            transition: transform .35s ease;
        }

        .topbar.hide {
            transform: translateY(-100%);
        }

        .topbar-left i {
            margin-right: 6px;
        }

        .topbar-right {
            display: flex;
            gap: 8px;
        }

        .tb-btn {
            background: transparent;
            border: 1px solid #fff;
            color: #fff;
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
        }

        .tb-primary {
            background: #fff;
            color: #0f5132;
            font-weight: 600;
        }

        .topbar-marquee {
            overflow: hidden;
            white-space: nowrap;
            flex: 1;
            margin: 0 20px;
            position: relative;
        }

        .marquee-text {
            display: inline-block;
            padding-left: 100%;
            animation: marquee 18s linear infinite;
        }

        @keyframes marquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        nav {
            margin-top: 38px;
        }

        @media (max-width: 768px) {
            .topbar {
                display: none;
            }

            nav {
                margin-top: 0;
            }
        }

        .img-thumbnail {
            padding: 3px !important;
        }






        .sb_has-dropdown {
            position: relative;
        }

        .sb_dd-icon {
            font-size: 16px;
            margin-left: 6px;
        }

        .sb_dropdown-menu {
            position: absolute;
            top: 120%;
            left: 0;
            min-width: 220px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
            padding: 8px 0;
            opacity: 0;
            visibility: hidden;
            transition: all .25s ease;
            z-index: 9999;
        }

        .sb_has-dropdown:hover .sb_dropdown-menu {
            top: 100%;
            opacity: 1;
            visibility: visible;
        }

        .sb_dropdown-menu li {
            list-style: none;
        }

        .sb_dropdown-menu a {
            display: block;
            padding: 10px 18px;
            color: #333;
            text-decoration: none;
            font-size: 14px;
        }

        .sb_dropdown-menu a:hover {
            background: #f3f7f4;
            color: #1a6b3c;
        }




        .container-box {
            max-width: 1050px;
            margin: auto;
            padding: 0 15px;
        }

        .about-banner {
            position: relative;
            height: 190px;
            border-radius: 16px;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            color: #fff;
            padding: 20px;
            margin-bottom: 18px;
        }

        .about-banner::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.55);
        }

        .about-banner>div {
            position: relative;
            z-index: 1;
        }

        .section-title {
            font-size: 16px;
            font-weight: 600;
            color: #2c3e50;
            margin: 14px 0 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-box {
            background: #edf3f5;
            border-radius: 8px;
            padding: 14px;
        }