:root {
            --primary-color: #232d7a;   /* navy - SAFAL logo ring */
            --secondary-color: #1b7a3c; /* green - tree */
            --accent-color: #9c1c22;    /* maroon - logo text */
            --gold-color: #f0a428;      /* gold - star */
            --light-color: #f8f9fa;
            --dark-color: #333;
            --gray-color: #6c757d;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Roboto', sans-serif;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            margin-bottom: 15px;
        }

        .hindi { font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif; }

        a { text-decoration: none; color: inherit; }

        img { max-width: 100%; }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            font-family: 'Poppins', sans-serif;
        }

        .btn-primary {
            background-color: var(--secondary-color);
            color: white;
        }

        .btn-primary:hover {
            background-color: #14612e;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(27, 122, 60, 0.3);
        }

        /* ===== Header Top Row ===== */
        .header-top {
            background-color: var(--primary-color);
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }

        .header-top-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .contact-info {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .contact-info i { margin-right: 5px; color: var(--gold-color); }

        .contact-info a:hover { color: var(--gold-color); }

        /* ===== Helpline Button ===== */
        .helpline-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 7px 18px;
            background: white;
            color: var(--accent-color);
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            font-weight: 800;
            border-radius: 25px;
            text-transform: uppercase;
            letter-spacing: 0.6px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .helpline-btn:hover {
            background: var(--gold-color);
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(240, 164, 40, 0.45);
        }

        .helpline-btn .live-dot {
            width: 10px;
            height: 10px;
            background-color: var(--accent-color);
            border-radius: 50%;
            animation: pulseDot 1.4s ease-in-out infinite;
            flex-shrink: 0;
        }

        .helpline-btn:hover .live-dot { background-color: var(--primary-color); }

        @keyframes pulseDot {
            0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(156, 28, 34, 0.7); }
            50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(156, 28, 34, 0); }
        }

        /* Mobile Floating Call Button */
        .call-mobile-float {
            display: none;
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 9999;
            height: 55px;
            width: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1b7a3c 0%, #14612e 100%);
            color: white;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 20px rgba(27, 122, 60, 0.5);
            font-size: 20px;
            animation: floatUp 2s ease-in-out infinite;
        }

        .call-mobile-float .float-dot {
            position: absolute;
            top: 5px;
            right: 5px;
            height: 10px;
            width: 10px;
            background: var(--gold-color);
            border-radius: 50%;
            animation: pulseDot 1.4s ease-in-out infinite;
        }

        @keyframes floatUp {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* ===== Header Second Row ===== */
        .header-main {
            padding: 18px 0;
            background: #fff;
        }

        .header-main-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .brand-left {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            min-width: 260px;
        }

        .brand-left img { height: 88px; width: auto; }

        .brand-text h1 {
            font-size: 26px;
            color: var(--accent-color);
            margin-bottom: 2px;
            line-height: 1.2;
            letter-spacing: 0.3px;
        }

        .brand-text h2 {
            font-size: 19px;
            color: var(--primary-color);
            margin-bottom: 4px;
            font-weight: 700;
        }

        .brand-text p {
            font-size: 13px;
            color: var(--gray-color);
            margin: 0;
        }

        .brand-right { display: flex; align-items: center; }

        .brand-right img { height: 105px; width: auto; }

        /* ===== Main Menu ===== */
        .main-menu {
            background-color: var(--primary-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 3px 10px rgba(35, 45, 122, 0.25);
        }

        .menu-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-menu { display: flex; list-style: none; flex-wrap: wrap; }

        .nav-menu li { position: relative; }

        .nav-menu li a {
            display: flex;
            align-items: center;
            padding: 15px 18px;
            color: white;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-menu li a i { margin-right: 8px; font-size: 15px; transition: all 0.3s; }

        .nav-menu li a:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .nav-menu li a:hover:before { left: 100%; }

        .nav-menu > li > a:hover {
            background: linear-gradient(135deg, var(--gold-color) 0%, #d98c12 100%);
            color: var(--primary-color);
            box-shadow: 0 5px 15px rgba(240, 164, 40, 0.35);
            transform: translateY(-2px);
        }

        .nav-menu > li > a:hover i { transform: scale(1.2); color: var(--primary-color); }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background-color: white;
            min-width: 250px;
            list-style: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            z-index: 100;
            border-top: 3px solid var(--gold-color);
            border-radius: 0 0 8px 8px;
            overflow: hidden;
        }

        .dropdown-menu li a {
            color: var(--dark-color);
            padding: 12px 20px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 14px;
        }

        .dropdown-menu li a i { color: var(--secondary-color); font-size: 12px; }

        .dropdown-menu li:last-child a { border-bottom: none; }

        .dropdown-menu li a:hover {
            background-color: #f2f6ff;
            color: var(--primary-color);
            padding-left: 26px;
        }

        .nav-menu li:hover .dropdown-menu { opacity: 1; visibility: visible; }

        /* ===== Mobile Nav ===== */
        .mobile-nav { display: none; background: var(--primary-color); color: #fff; }

        .mobile-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 15px;
        }

        .mobile-header span {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
            font-size: 15px;
        }

        .mobile-toggle { background: none; border: 0; font-size: 22px; color: #fff; cursor: pointer; }

        .mobile-menu { display: none; background: #fff; list-style: none; }

        .mobile-menu.open { display: block; }

        .mobile-menu a {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 13px 15px;
            color: #222;
            border-bottom: 1px solid #eee;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
        }

        .submenu { display: none; background: #f6f8ff; list-style: none; }

        .has-submenu.active > .submenu { display: block; }

        .submenu a { padding-left: 32px; font-size: 14px; color: #444; }

        /* ===== Banner (image slider only) ===== */
        .banner { position: relative; width: 100%; overflow: hidden; background: #eef1f8; }

        .banner-slider { position: relative; width: 100%; padding-top: 40%; }

        .banner-slider .slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
        }

        .banner-slider .slide.active { opacity: 1; }

        .banner-dots {
            position: absolute;
            bottom: 16px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 9px;
            z-index: 3;
        }

        .banner-dots button {
            width: 11px;
            height: 11px;
            border-radius: 50%;
            border: 2px solid #fff;
            background: transparent;
            padding: 0;
            cursor: pointer;
            transition: all 0.3s;
        }

        .banner-dots button.active { background: var(--gold-color); border-color: var(--gold-color); transform: scale(1.2); }

        /* ===== Tagline Strip ===== */
        .tagline-strip {
            background: var(--secondary-color);
            color: #fff;
            text-align: center;
            padding: 16px 0;
        }

        .tagline-strip h3 {
            margin: 0;
            font-size: 26px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* ===== News Marquee (right to left) ===== */
        .news-marquee {
            display: flex;
            align-items: stretch;
            background: #fff8e9;
            border-bottom: 1px solid #f0e2c4;
            overflow: hidden;
        }

        .marquee-label {
            flex-shrink: 0;
            background: var(--accent-color);
            color: #fff;
            font-family: 'Poppins', sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 20px;
            white-space: nowrap;
        }

        .marquee-viewport { overflow: hidden; flex: 1; position: relative; display: flex; align-items: center; }

        .marquee-track {
            display: flex;
            white-space: nowrap;
            animation: marqueeScroll 45s linear infinite;
        }

        .news-marquee:hover .marquee-track { animation-play-state: paused; }

        @keyframes marqueeScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .marquee-track span {
            padding: 12px 0;
            font-size: 15px;
            color: #6b4c12;
        }

        .marquee-track .m-item { padding: 0 26px; display: inline-flex; align-items: center; gap: 10px; }

        .marquee-track .m-item i { color: var(--secondary-color); font-size: 8px; }

        .marquee-track .m-date { font-weight: 600; color: var(--accent-color); }

        /* ===== Section Title ===== */
        .section-title { text-align: center; margin-bottom: 55px; }

        .section-title h2 {
            font-size: 36px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--gold-color);
        }

        .section-title p { color: var(--gray-color); margin-top: 12px; }

        /* ===== Path to Recovery (light, with photos) ===== */
        .recovery-section { padding: 90px 0; background: #ffffff; }

        .recovery-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }

        .recovery-step {
            background: #fbfcff;
            border: 1px solid #e6eaf6;
            border-radius: 14px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .recovery-step:hover {
            border-color: #c9d3f0;
            box-shadow: 0 12px 30px rgba(35, 45, 122, 0.09);
            transform: translateY(-5px);
        }

        .step-photo { height: 190px; overflow: hidden; background: #eef2ff; }

        .step-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s; }

        .recovery-step:hover .step-photo img { transform: scale(1.06); }

        .step-body { padding: 24px 24px 28px; }

        .step-no {
            font-family: 'Poppins', sans-serif;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1.5px;
            color: var(--gold-color);
            display: block;
            margin-bottom: 4px;
        }

        .step-body h3 { font-size: 20px; color: var(--primary-color); margin-bottom: 10px; }

        .step-body p { color: var(--gray-color); font-size: 15px; line-height: 1.75; margin: 0; }

        /* ===== Welcome ===== */
        .welcome-section { padding: 90px 0; background-color: white; }

        .welcome-content { display: flex; align-items: center; flex-wrap: wrap; gap: 50px; }

        .welcome-text { flex: 1 1 420px; min-width: 300px; }

        .welcome-text h2 { color: var(--primary-color); font-size: 34px; line-height: 1.3; margin-bottom: 8px; }

        .welcome-text .lead-hindi { color: var(--accent-color); font-size: 20px; font-weight: 600; margin-bottom: 20px; }

        .welcome-text p { margin-bottom: 18px; color: var(--gray-color); line-height: 1.9; font-size: 16px; }

        .reg-badge {
            display: block;
            background: #f2f6ff;
            border-left: 4px solid var(--primary-color);
            padding: 12px 18px;
            margin-bottom: 22px;
            font-size: 14px;
            color: var(--primary-color);
            font-weight: 500;
        }

        .welcome-image {
            flex: 1 1 380px;
            min-width: 300px;
            max-height: 460px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 18px 40px rgba(35, 45, 122, 0.14);
        }

        .welcome-image img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; display: block; transition: transform 0.8s; }

        .welcome-image:hover img { transform: scale(1.05); }

        /* ===== Updates & Downloads (light) ===== */
        .updates-section { padding: 85px 0; background-color: #fbfcff; }

        .updates-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 55px;
            align-items: start;
        }

        .block-head { margin-bottom: 18px; }

        .block-head h3 {
            font-size: 22px;
            color: var(--primary-color);
            margin: 0 0 4px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .block-head h3 i { font-size: 16px; color: var(--gold-color); }

        .block-head span { font-size: 14px; color: var(--gray-color); }

        /* Director block */
        .director-card {
            display: flex;
            gap: 26px;
            align-items: flex-start;
            background: #fff;
            border: 1px solid #e8ecf7;
            border-radius: 14px;
            padding: 26px;
        }

        .director-photo {
            width: 150px;
            flex-shrink: 0;
            border-radius: 12px;
            overflow: hidden;
            aspect-ratio: 3 / 4;
            background: #eef2ff;
        }

        .director-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

        .director-quote {
            color: #4a5468;
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 14px;
            position: relative;
            padding-left: 22px;
        }

        .director-quote:before {
            content: '\201C';
            position: absolute;
            left: 0;
            top: -6px;
            font-family: Georgia, serif;
            font-size: 42px;
            line-height: 1;
            color: var(--gold-color);
        }

        .director-name {
            font-family: 'Poppins', sans-serif;
            font-size: 17px;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 2px;
        }

        .director-role { font-size: 13px; color: var(--gray-color); margin-bottom: 14px; }

        .link-more {
            color: var(--primary-color);
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .link-more:hover { gap: 14px; color: var(--secondary-color); }

        /* Downloads - plain rows */
        .download-list { border-top: 1px solid #e8ecf7; }

        .dl-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 15px 8px;
            border-bottom: 1px solid #e8ecf7;
            transition: all 0.25s ease;
        }

        .dl-row:hover { background: #f4f7ff; padding-left: 14px; }

        .dl-row i.dl-ico {
            width: 34px;
            height: 34px;
            border-radius: 8px;
            background: #eef2ff;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            flex-shrink: 0;
        }

        .dl-row h4 { font-size: 15px; color: var(--dark-color); margin: 0; font-weight: 500; }

        .dl-row span { font-size: 12px; color: var(--gray-color); }

        .dl-row .dl-arrow { margin-left: auto; color: #c2cade; font-size: 13px; transition: color 0.25s; }

        .dl-row:hover .dl-arrow { color: var(--secondary-color); }

        /* ===== Projects ===== */
        .projects-section { padding: 90px 0; background-color: #fff; }

        .projects-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 30px; }

        .project-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s, box-shadow 0.4s;
        }

        .project-card:hover { transform: translateY(-10px); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15); }

        .project-image { height: 210px; overflow: hidden; background: linear-gradient(135deg, #232d7a 0%, #1b7a3c 100%); }

        .project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }

        .project-card:hover .project-image img { transform: scale(1.1); }

        .project-content { padding: 28px; }

        .project-title {
            font-size: 20px;
            margin-bottom: 15px;
            padding: 10px 15px;
            color: white;
            border-radius: 5px;
            display: inline-block;
            font-weight: 600;
            font-family: 'Poppins', sans-serif;
        }

        .project-1 { background: linear-gradient(135deg, #232d7a 0%, #4a56b5 100%); }
        .project-2 { background: linear-gradient(135deg, #1b7a3c 0%, #58c27d 100%); }
        .project-3 { background: linear-gradient(135deg, #9c1c22 0%, #d24a50 100%); }
        .project-4 { background: linear-gradient(135deg, #f0a428 0%, #f7c46b 100%); }
        .project-5 { background: linear-gradient(135deg, #0f5c8c 0%, #4aa3d6 100%); }
        .project-6 { background: linear-gradient(135deg, #6a3fa0 0%, #a07ed1 100%); }

        .project-content p { color: var(--gray-color); margin-bottom: 22px; font-size: 15px; line-height: 1.7; }

        .read-more {
            color: var(--secondary-color);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s;
        }

        .read-more:hover { gap: 15px; }

        /* ===== Gallery ===== */
        .gallery-section { padding: 90px 0; background-color: #f8f9fa; }

        .gallery-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 20px; }

        .gallery-item {
            height: 220px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #232d7a 0%, #1b7a3c 100%);
        }

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

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

        /* ===== Footer ===== */
        .footer { background-color: var(--primary-color); color: white; padding: 70px 0 20px; }

        .footer-content { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 45px; }

        .footer-section { padding: 0 10px; }

        .footer-logo h3 { color: white; font-size: 23px; margin-bottom: 8px; }

        .footer-logo .hindi-name { color: var(--gold-color); font-size: 17px; margin-bottom: 15px; font-weight: 600; }

        .footer-logo p { margin-bottom: 22px; line-height: 1.8; font-size: 15px; color: #dfe3f5; }

        .social-icons { display: flex; gap: 15px; }

        .social-icons a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            transition: all 0.3s;
        }

        .social-icons a:hover { background: var(--gold-color); color: var(--primary-color); transform: translateY(-3px); }

        .footer-links h4, .footer-address h4, .footer-map h4 {
            color: white;
            font-size: 21px;
            margin-bottom: 28px;
            position: relative;
            padding-bottom: 12px;
        }

        .footer-links h4:after, .footer-address h4:after, .footer-map h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--gold-color);
        }

        .footer-links ul { list-style: none; }

        .footer-links li { margin-bottom: 14px; }

        .footer-links a { color: #dfe3f5; transition: all 0.3s; display: flex; align-items: center; }

        .footer-links a:hover { color: var(--gold-color); padding-left: 8px; }

        .footer-links a i { margin-right: 10px; color: var(--gold-color); font-size: 12px; }

        .footer-address p { margin-bottom: 18px; display: flex; align-items: flex-start; line-height: 1.7; color: #dfe3f5; font-size: 15px; }

        .footer-address i { margin-right: 14px; margin-top: 5px; font-size: 17px; color: var(--gold-color); }

        .map-container {
            margin-top: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            border: 2px solid rgba(255, 255, 255, 0.12);
        }

        .map-container iframe { width: 100%; height: 200px; border: none; display: block; }

        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
            font-size: 14px;
            color: #dfe3f5;
        }

        /* ===== Responsive ===== */
        @media (max-width: 992px) {
            .brand-text h1 { font-size: 22px; }
            .brand-text h2 { font-size: 17px; }
            .recovery-track { grid-template-columns: 1fr; gap: 20px; }
            .updates-grid { grid-template-columns: 1fr; gap: 45px; }
            .footer-content { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .main-menu { display: none; }
            .mobile-nav { display: block; }
            .header-top-content { flex-direction: column; text-align: center; }
            .contact-info { justify-content: center; gap: 14px; font-size: 13px; }
            .header-main-inner { flex-direction: column; text-align: center; }
            .brand-left { flex-direction: column; min-width: 100%; }
            .brand-left img { height: 78px; }
            .brand-right img { height: 92px; }
            .banner-slider { padding-top: 56%; }
            .banner-dots { bottom: 10px; }
            .tagline-strip h3 { font-size: 19px; letter-spacing: 1px; }
            .welcome-section, .recovery-section, .updates-section, .projects-section, .gallery-section { padding: 60px 0; }
            .projects-container { grid-template-columns: 1fr; }
            .gallery-container { grid-template-columns: repeat(2, 1fr); }
            .footer-content { grid-template-columns: 1fr; gap: 35px; }
            .call-mobile-float { display: flex; }
            .helpline-btn { padding: 6px 14px; font-size: 13px; }
            .marquee-label { padding: 10px 14px; font-size: 12px; }
            .marquee-track span { font-size: 14px; }
            .director-card { flex-direction: column; gap: 18px; }
            .director-photo { width: 130px; }
        }

        @media (max-width: 480px) {
            .section-title h2 { font-size: 26px; }
            .welcome-text h2 { font-size: 26px; }
            .gallery-container { grid-template-columns: 1fr; }
            .brand-text h1 { font-size: 19px; }
            .marquee-label .m-lbl-text { display: none; }
            .director-card { padding: 20px; }
        }

        @media (prefers-reduced-motion: reduce) {
            * { animation: none !important; transition: none !important; }
        }

        a:focus-visible, button:focus-visible {
            outline: 3px solid var(--gold-color);
            outline-offset: 2px;
        }

/* ================= INNER PAGE STYLES ================= */

.page-hero {
    background: linear-gradient(120deg, rgba(35, 45, 122, 0.92), rgba(27, 122, 60, 0.85)),
                url('https://images.unsplash.com/photo-1586618770443-e6f8167fca61?auto=format&fit=crop&w=1600&q=60');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 62px 0;
    text-align: center;
}

.page-hero h1 { font-size: 36px; color: #fff; margin-bottom: 10px; }

.breadcrumb { font-size: 14px; color: #dfe3f5; }

.breadcrumb a { color: var(--gold-color); }

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb i { font-size: 10px; margin: 0 8px; }

.page-section { padding: 70px 0; background: #fff; }

.page-section.alt { background: #fbfcff; }

.page-section h2 { font-size: 28px; color: var(--primary-color); margin-bottom: 16px; }

.page-section h3 { font-size: 21px; color: var(--primary-color); margin: 26px 0 12px; }

.page-section p { color: #55607a; line-height: 1.9; margin-bottom: 16px; font-size: 16px; }

.split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 45px; align-items: start; }

.split.reverse { grid-template-columns: 1fr 1.2fr; }

.split-img { border-radius: 12px; overflow: hidden; box-shadow: 0 16px 36px rgba(35, 45, 122, 0.13); }

.split-img img { width: 100%; height: 100%; max-height: 430px; object-fit: cover; display: block; }

.tick-list { list-style: none; margin-bottom: 18px; }

.tick-list li {
    position: relative;
    padding: 7px 0 7px 30px;
    color: #55607a;
    font-size: 16px;
    line-height: 1.7;
}

.tick-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    font-size: 13px;
    color: var(--secondary-color);
}

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }

.info-card {
    background: #fbfcff;
    border: 1px solid #e6eaf6;
    border-radius: 14px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.info-card:hover { border-color: #c9d3f0; box-shadow: 0 12px 30px rgba(35, 45, 122, 0.09); transform: translateY(-5px); }

.info-card .ic {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #eef2ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    margin-bottom: 16px;
}

.info-card h3 { font-size: 19px; color: var(--primary-color); margin: 0 0 10px; }

.info-card p { font-size: 15px; color: var(--gray-color); line-height: 1.75; margin: 0; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 26px; }

.team-card {
    background: #fff;
    border: 1px solid #e6eaf6;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover { box-shadow: 0 14px 32px rgba(35, 45, 122, 0.12); transform: translateY(-5px); }

.team-photo { aspect-ratio: 1 / 1; overflow: hidden; background: #eef2ff; }

.team-photo img { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 { font-size: 17px; color: var(--primary-color); margin: 18px 0 3px; }

.team-card p { font-size: 13px; color: var(--gray-color); margin: 0 0 18px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 45px; align-items: start; }

.contact-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid #e8ecf7; }

.contact-item:last-child { border-bottom: none; }

.contact-item i.ci {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #eef2ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item h4 { font-size: 16px; color: var(--dark-color); margin-bottom: 4px; }

.contact-item p, .contact-item a { font-size: 15px; color: var(--gray-color); margin: 0; line-height: 1.7; }

.contact-item a:hover { color: var(--secondary-color); }

.contact-form { background: #fbfcff; border: 1px solid #e6eaf6; border-radius: 14px; padding: 30px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { margin-bottom: 18px; }

.field label { display: block; font-size: 14px; font-weight: 500; color: var(--dark-color); margin-bottom: 7px; }

.field input, .field select, .field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d9e0f2;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    color: var(--dark-color);
    background: #fff;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.field textarea { min-height: 120px; resize: vertical; }

.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(35, 45, 122, 0.1);
}

.map-wide { border-radius: 12px; overflow: hidden; box-shadow: 0 14px 32px rgba(35, 45, 122, 0.12); }

.map-wide iframe { width: 100%; height: 380px; border: none; display: block; }

/* Reports / notice list */
.doc-list { border-top: 1px solid #e8ecf7; }

.doc-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 8px;
    border-bottom: 1px solid #e8ecf7;
    transition: all 0.25s ease;
}

.doc-row:hover { background: #f4f7ff; padding-left: 14px; }

.doc-row i.doc-ico {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: #eef2ff;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.doc-row h4 { font-size: 16px; color: var(--dark-color); margin: 0 0 2px; font-weight: 500; }

.doc-row span { font-size: 13px; color: var(--gray-color); }

.doc-row .doc-arrow { margin-left: auto; color: #c2cade; font-size: 14px; }

.doc-row:hover .doc-arrow { color: var(--secondary-color); }

/* Notice list */
.notice-row { padding: 20px 8px; border-bottom: 1px solid #e8ecf7; transition: background 0.25s; }

.notice-row:hover { background: #f4f7ff; }

.notice-row .n-date { font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 600; color: var(--secondary-color); margin-bottom: 5px; }

.notice-row h4 { font-size: 17px; color: var(--dark-color); margin-bottom: 5px; }

.notice-row p { font-size: 15px; color: var(--gray-color); margin: 0; line-height: 1.7; }

/* Video gallery */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }

.video-card { border-radius: 12px; overflow: hidden; box-shadow: 0 12px 28px rgba(35, 45, 122, 0.1); background: #000; }

.video-card iframe { width: 100%; aspect-ratio: 16 / 9; border: none; display: block; }

.video-card .v-title { background: #fff; padding: 16px 18px; font-family: 'Poppins', sans-serif; font-size: 16px; color: var(--primary-color); }

/* CTA band */
.cta-band {
    background: linear-gradient(120deg, var(--primary-color), #16643a);
    color: #fff;
    padding: 52px 0;
    text-align: center;
}

.cta-band h2 { color: #fff; font-size: 28px; margin-bottom: 10px; }

.cta-band p { color: #dfe3f5; margin-bottom: 24px; font-size: 16px; }

.cta-band .btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }

.cta-band .btn-outline-white:hover { background: #fff; color: var(--primary-color); }

@media (max-width: 992px) {
    .split, .split.reverse, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
    .page-hero { padding: 46px 0; }
    .page-hero h1 { font-size: 27px; }
    .page-section { padding: 55px 0; }
    .form-row { grid-template-columns: 1fr; }
    .map-wide iframe { height: 300px; }
}

/* Active menu item */
.nav-menu > li > a.is-active {
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 -3px 0 var(--gold-color);
}

.mobile-menu > li > a.is-active { color: var(--primary-color); font-weight: 600; }
