/* Extracted from index.php for faster homepage load */

        /* ============================================================
           ASHAR ALO — "Green Light" Redesign
           Theme: Teal #009B8E · Leaf motifs · Organic professional
           ============================================================ */
        :root {
            --primary: #009B8E;
            --primary-dark: #00776D;
            --deep: #00594F;
            --ink: #06322C;
            --mint: #E3F4F1;
            --mint-soft: #F1FAF8;
            --ivory: #F8FBFA;
            --gold: #E9B44C;
            --gold-soft: #FBF0DA;
            --white: #ffffff;
            --text-dark: #23423D;
            --text-light: #5E7A75;
            --shadow: 0 6px 24px rgba(0, 89, 79, 0.10);
            --shadow-lg: 0 18px 45px rgba(0, 89, 79, 0.16);
            --teal-gradient: linear-gradient(135deg, #009B8E 0%, #00594F 100%);
            --gold-gradient: linear-gradient(135deg, #E9B44C 0%, #D69A2D 100%);
            --leaf-radius: 6px 36px 6px 36px;
            --leaf-radius-lg: 8px 56px 8px 56px;
        }

        * {
            margin: 0;
            padding: 0;
            text-align: justify;
            box-sizing: border-box;
            font-family: 'Hind Siliguri', 'Segoe UI', Tahoma, sans-serif, 'BenSen Handwriting', cursive;
        }

        h1, h2, h3, h4 { line-height: 1.3; }

        body {
            background-color: var(--ivory);
            color: var(--text-dark);
            line-height: 1.7;
            background-image:
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><path d="M70 18 C96 34 108 62 70 108 C32 62 44 34 70 18 Z" fill="none" stroke="%23009B8E" stroke-width="1.2" opacity="0.10"/><path d="M70 30 L70 96" stroke="%23009B8E" stroke-width="1" opacity="0.08"/></svg>'),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="90" height="90" viewBox="0 0 90 90"><path d="M45 14 C60 24 66 42 45 70 C24 42 30 24 45 14 Z" fill="%23009B8E" opacity="0.045"/></svg>');
            background-size: 280px, 180px;
            background-position: 0 0, 90px 120px;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .section {
            padding: 55px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-title {
            text-align: left;
            margin-bottom: 40px;
            color: var(--ink);
            font-family: 'Fraunces', serif;
            font-size: 2.1rem;
            font-weight: 600;
            position: relative;
            display: inline-block;
            padding-left: 46px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-55%);
            width: 32px;
            height: 32px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M32 6 C50 18 58 38 32 58 C6 38 14 18 32 6 Z" fill="%23009B8E"/><path d="M32 16 L32 50" stroke="%23E3F4F1" stroke-width="3"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 46px;
            width: 90px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            border-radius: 2px;
        }

        .btn {
            display: inline-block;
            padding: 13px 30px;
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            border-radius: var(--leaf-radius);
            cursor: pointer;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            letter-spacing: 0.3px;
            box-shadow: 0 6px 18px rgba(0, 155, 142, 0.35);
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
            transition: all 0.5s ease;
        }

        .btn:hover {
            background: var(--gold-gradient);
            transform: translateY(-3px);
            border-radius: 36px 6px 36px 6px;
            box-shadow: 0 10px 24px rgba(233, 180, 76, 0.45);
        }

        .btn:hover::before {
            left: 100%;
        }

        /* ================= Header ================= */
        .top-header {
            background: var(--ink);
            color: rgba(255,255,255,0.85);
            padding: 9px 0;
            font-size: 0.88rem;
        }

        .top-header .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .contact-info span { margin-right: 22px; }
        .contact-info i { margin-right: 6px; color: var(--gold); }

        .main-header {
            background: linear-gradient(160deg, #91f9e7 0%, #7eb9ae 100%);
            border-bottom: 3px solid var(--primary);
            box-shadow: 0 4px 20px rgba(0, 89, 79, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .main-header.scrolled {
            background: var(--teal-gradient);
            backdrop-filter: blur(10px);
            box-shadow: 0 6px 24px rgba(0, 89, 79, 0.14);
        }

        .main-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 15px;
        }

        .logo {
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

        .logo:hover { transform: scale(1.03); }

        .logo img {
            height: 62px;
            margin-right: 12px;
            transition: all 0.3s ease;
        }

        .logo h1 {
            font-family: 'Fraunces', serif;
            font-size: 1.35rem;
            font-weight: 600;
            color: black;
        }

        .scrolling-text {
            width: 100%;
            background: var(--teal-gradient);
            color: white;
            padding: 12px 0;
            margin-bottom: 24px;
            border-radius: var(--leaf-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            border-left: 6px solid var(--gold);
        }

        .scrolling-text marquee {
            font-size: 1.15rem;
            letter-spacing: 0.5px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
        }

        .nav-menu li { margin-left: 22px; }

        .nav-menu a {
            text-decoration: none;
            color: white;
            font-weight: 600;
            transition: color 0.3s ease;
            padding: 6px 0;
            position: relative;
        }

        .nav-menu a:hover { color: var(--primary); }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after { width: 100%; }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            width: 30px;
            height: 30px;
            position: relative;
            z-index: 1001;
        }

        .hamburger {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
            position: relative;
            transition: all 0.3s ease;
        }

        .hamburger::before,
        .hamburger::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 3px;
            border-radius: 3px;
            background-color: var(--primary);
            left: 0;
            transition: all 0.3s ease;
        }

        .hamburger::before { top: -8px; }
        .hamburger::after { bottom: -8px; }

        .mobile-menu-btn.active .hamburger { background-color: transparent; }
        .mobile-menu-btn.active .hamburger::before { top: 0; transform: rotate(45deg); }
        .mobile-menu-btn.active .hamburger::after { bottom: 0; transform: rotate(-45deg); }

        /* ================= Visitor Statistics ================= */
        .visitor-stats {
            background: var(--teal-gradient);
            border-radius: var(--leaf-radius-lg);
            padding: 24px;
            margin: 20px 0;
            box-shadow: var(--shadow);
            color: var(--white);
        }

        .visitor-stats h3 {
            text-align: center;
            margin-bottom: 20px;
            font-size: 1.5rem;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .visitor-stats h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--gold);
        }

        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 15px;
        }

        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 120px;
            padding: 15px 10px;
            background: rgba(255, 255, 255, 0.14);
            border-radius: var(--leaf-radius);
            backdrop-filter: blur(5px);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            margin-bottom: 5px;
            color: var(--gold);
        }

        .stat-label { font-size: 0.9rem; opacity: 0.9; }

        .desktop-visitor-stats { display: block; }
        .mobile-visitor-stats { display: none; }

        @media (max-width: 992px) { .stat-item { min-width: 100px; } }
        @media (max-width: 576px) {
            .stats-container { flex-direction: column; gap: 10px; }
            .stat-item { display: flex; justify-content: space-between; align-items: center; padding: 10px 15px; }
            .stat-number { margin-bottom: 0; }
        }

        /* ================= Hero ================= */
        .hero-section {
            display: flex;
            flex-wrap: wrap;
            margin-top: 0px;
            padding: 0px;
        }

        .slider-container {
            flex: 0 0 100%;
            max-width: 100%;
            position: relative;
            overflow: hidden;
            border-radius: var(--leaf-radius-lg);
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--white);
            outline: 1px solid var(--mint);
        }

        .slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .slide { min-width: 100%; position: relative; }

        .slide img {
            width: 100%;
            height: 550px;
            object-fit: fill;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(0deg, rgba(6, 50, 44, 0.92) 0%, rgba(0, 155, 142, 0.75) 100%);
            color: var(--white);
            padding: 18px 24px;
            border-top: 3px solid var(--gold);
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .slide-content h2 { font-family: 'Fraunces', serif; }

        .slide.active .slide-content { transform: translateY(0); }

        /* ================= Notice Board ================= */
        .notice-board-section {
            background-color: var(--mint-soft);
            padding: 50px 0;
        }

        .notice-board-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .notice-board { flex: 0 0 100%; max-width: 100%; }

        .notice-board h2 {
            background: var(--teal-gradient);
            color: var(--white);
            font-family: 'Fraunces', serif;
            padding: 16px 24px;
            border-radius: 6px 36px 0 0;
            margin-bottom: 0;
            border-left: 6px solid var(--gold);
        }

        .notice-list {
            background-color: var(--white);
            border-radius: 0 0 36px 6px;
            box-shadow: var(--shadow);
            max-height: 400px;
            overflow-y: auto;
        }

        .notice-item {
            padding: 16px 24px;
            border-bottom: 1px dashed #cde8e3;
            transition: all 0.3s ease;
            transform: translateX(-20px);
            opacity: 0;
        }

        .notice-item.visible { transform: translateX(0); opacity: 1; }

        .notice-item:hover {
            background-color: var(--mint-soft);
            transform: translateX(6px);
            border-left: 4px solid var(--primary);
        }

        .notice-item:last-child { border-bottom: none; }

        .notice-date {
            font-size: 0.8rem;
            color: var(--primary);
            margin-bottom: 5px;
            font-weight: 600;
        }

        .notice-title {
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 5px;
        }

        .view-all {
            text-align: center;
            padding: 14px;
            background-color: var(--mint);
            border-radius: 0 0 36px 6px;
        }

        /* ================= Message Section ================= */
        .message-section {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
            padding: 10px;
        }

        .message-section::before,
        .message-section::after {
            content: '';
            position: absolute;
            width: 260px;
            height: 260px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 8 C78 26 90 56 50 92 C10 56 22 26 50 8 Z" fill="%23009B8E"/><path d="M50 20 L50 80 M50 38 L34 30 M50 38 L66 30 M50 56 L32 46 M50 56 L68 46" stroke="%23ffffff" stroke-width="2" opacity="0.5"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.07;
            z-index: 0;
        }

        .message-section::before { top: -60px; right: -60px; transform: rotate(35deg); }
        .message-section::after { bottom: -60px; left: -60px; transform: rotate(-140deg); }

        .message-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            position: relative;
            z-index: 1;
            flex-direction: row-reverse;
        }

        .message-text {
            flex: 0 0 50%;
            max-width: 50%;
            padding-right: 30px;
        }

        .message-image {
            flex: 0 0 50%;
            max-width: 50%;
            text-align: center;
        }

        .message-image img {
            max-width: 40%;
            border-radius: var(--leaf-radius-lg);
            box-shadow: var(--shadow-lg);
            border: 4px solid var(--white);
            outline: 2px solid var(--primary);
            outline-offset: 4px;
            transition: all 0.5s ease;
        }

        .message-image img:hover {
            transform: scale(1.03) rotate(-1deg);
            outline-color: var(--gold);
        }

        .objectives {
            margin-top: 50px;
            position: relative;
            z-index: 1;
        }

        .objective-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
        }

        .objective-card {
            flex: 0 0 calc(50% - 11px);
            background: var(--mint-soft);
            border: 1px solid #cfeae5;
            border-radius: var(--leaf-radius);
            box-shadow: var(--shadow);
            padding: 26px;
            transition: all 0.35s ease;
            position: relative;
            overflow: hidden;
            transform: translateY(30px);
            opacity: 0;
        }

        .objective-card.visible { transform: translateY(0); opacity: 1; }

        .objective-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary), var(--gold));
        }

        .objective-card::after {
            content: '';
            position: absolute;
            bottom: -18px;
            right: -14px;
            width: 90px;
            height: 90px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 8 C78 26 90 56 50 92 C10 56 22 26 50 8 Z" fill="%23009B8E"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.08;
            transform: rotate(30deg);
            transition: all 0.35s ease;
        }

        .objective-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            background: var(--teal-gradient);
            color: #ECFBF8;
            border-color: transparent;
        }

        .objective-card:hover::after { opacity: 0.18; transform: rotate(0deg) scale(1.15); }

        .objective-card h3 {
            color: var(--deep);
            margin-bottom: 10px;
            font-weight: 700;
            transition: color 0.35s ease;
        }

        .objective-card:hover h3 { color: var(--gold); }

        /* ================= Vision & Mission ================= */
        .vision-mission {
            background: linear-gradient(160deg, var(--mint) 0%, #d3ede8 100%);
            position: relative;
            overflow: hidden;
        }

        .vision-mission::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -40px;
            width: 300px;
            height: 300px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 8 C78 26 90 56 50 92 C10 56 22 26 50 8 Z" fill="%2300594F"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.07;
            transform: rotate(45deg);
        }

        .vision-mission-content {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .vision-mission-text {
            flex: 0 0 50%;
            max-width: 50%;
            padding-right: 30px;
        }

        .vision-mission-text h3 {
            color: var(--deep);
            font-family: 'Fraunces', serif;
            margin: 24px 0 10px;
            position: relative;
            display: inline-block;
        }

        .vision-mission-text h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 44px;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
        }

        .vision-mission-text h3:first-child { margin-top: 0; }

        .icon-links-container {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .icon-links-container h3 {
            color: var(--deep);
            font-family: 'Fraunces', serif;
            margin-bottom: 24px;
            font-size: 1.7rem;
            position: relative;
            display: inline-block;
        }

        .icon-links-container h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            border-radius: 3px;
            background: var(--gold);
        }

        .icon-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        .icon-link {
            background-color: var(--white);
            border-radius: var(--leaf-radius);
            box-shadow: var(--shadow);
            padding: 22px 14px;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #d8efe9;
            position: relative;
            overflow: hidden;
            transform: scale(0.9);
            opacity: 0;
        }

        .icon-link.visible { transform: scale(1); opacity: 1; }

        .icon-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
        }

        .icon-link:hover {
            border-color: var(--primary);
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            background: var(--mint-soft);
        }

        .icon-link i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }

        .icon-link:hover i { color: var(--gold); transform: scale(1.15); }

        .icon-link h3 {
            font-size: 1rem;
            color: var(--text-dark);
        }

        /* ================= Organization Info ================= */
        .org-info-section {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .org-info-section::before {
            content: '';
            position: absolute;
            bottom: -50px;
            right: -50px;
            width: 240px;
            height: 240px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 8 C78 26 90 56 50 92 C10 56 22 26 50 8 Z" fill="%23009B8E"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.06;
            transform: rotate(-30deg);
        }

        .org-info-content {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .org-info-text {
            flex: 0 0 50%;
            max-width: 50%;
            padding-right: 30px;
        }

        .org-info-text p { margin-bottom: 20px; }

        .org-info-list { list-style: none; }

        .org-info-list li {
            margin-bottom: 12px;
            padding-left: 32px;
            position: relative;
            transform: translateX(-20px);
            opacity: 0;
        }

        .org-info-list li.visible { transform: translateX(0); opacity: 1; }

        .org-info-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 5px;
            width: 18px;
            height: 18px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M32 6 C50 18 58 38 32 58 C6 38 14 18 32 6 Z" fill="%23009B8E"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
        }

        .climate-messages {
            flex: 0 0 50%;
            max-width: 50%;
        }

        .climate-messages h3 {
            color: var(--deep);
            font-family: 'Fraunces', serif;
            margin-bottom: 24px;
            font-size: 1.7rem;
            position: relative;
            display: inline-block;
        }

        .climate-messages h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 3px;
            border-radius: 3px;
            background: var(--gold);
        }

        .message-box {
            background: var(--mint-soft);
            border: 1px solid #d3ede7;
            border-left: 5px solid var(--primary);
            padding: 16px 18px;
            margin-bottom: 18px;
            border-radius: 6px 28px 28px 6px;
            position: relative;
            overflow: hidden;
            transform: translateX(20px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .message-box.visible { transform: translateX(0); opacity: 1; }

        .message-box:hover {
            border-left-color: var(--gold);
            box-shadow: var(--shadow);
            transform: translateX(-4px);
        }

        .message-box h4 {
            color: var(--deep);
            margin-bottom: 8px;
        }

        /* ================= Activities ================= */
        .activities-section {
            background: linear-gradient(160deg, var(--mint) 0%, #d3ede8 100%);
            position: relative;
            overflow: hidden;
        }

        .activities-section::before {
            content: '';
            position: absolute;
            top: -50px;
            left: -50px;
            width: 240px;
            height: 240px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 8 C78 26 90 56 50 92 C10 56 22 26 50 8 Z" fill="%2300594F"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.07;
            transform: rotate(160deg);
        }

        .activities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 22px;
            position: relative;
            z-index: 1;
        }

        .activity-card {
            background-color: var(--white);
            border-radius: var(--leaf-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.35s ease;
            position: relative;
            border-bottom: 4px solid var(--primary);
            transform: scale(0.9);
            opacity: 0;
        }

        .activity-card.visible { transform: scale(1); opacity: 1; }

        .activity-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-bottom-color: var(--gold);
        }

        .activity-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .activity-card:hover img { transform: scale(1.06); }

        .activity-card-content { padding: 16px; }

        .activity-card h3 {
            color: var(--deep);
            margin-bottom: 8px;
        }

        .view-all-activities {
            text-align: center;
            margin-top: 34px;
            position: relative;
            z-index: 1;
        }

        /* ================= Achievements & Team ================= */
        .achievements-section {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .achievements-section::before {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 220px;
            height: 220px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 8 C78 26 90 56 50 92 C10 56 22 26 50 8 Z" fill="%23009B8E"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.06;
            transform: rotate(200deg);
        }

        .achievements-content {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .achievements-gallery {
            flex: 0 0 70%;
            max-width: 70%;
        }

        .achievements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 16px;
        }

        .achievement-item {
            background-color: var(--mint-soft);
            border-radius: var(--leaf-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.35s ease;
            cursor: pointer;
            position: relative;
            border: 1px solid #d8efe9;
            transform: scale(0.9);
            opacity: 0;
        }

        .achievement-item.visible { transform: scale(1); opacity: 1; }

        .achievement-item:hover {
            transform: scale(1.04);
            box-shadow: var(--shadow-lg);
            border-color: var(--gold);
        }

        .achievement-item img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .achievement-caption {
            padding: 10px;
            text-align: center;
            border-top: 3px solid var(--primary);
        }

        .team-members {
            flex: 0 0 30%;
            max-width: 30%;
            padding-left: 20px;
        }

        .team-members h3 {
            background: var(--teal-gradient);
            color: var(--white);
            font-family: 'Fraunces', serif;
            padding: 16px 20px;
            border-radius: 6px 36px 0 0;
            margin-bottom: 0;
            border-left: 6px solid var(--gold);
        }

        .team-list {
            background-color: var(--white);
            border-radius: 0 0 36px 6px;
            box-shadow: var(--shadow);
            border: 1px solid #e2f2ee;
        }

        .team-member {
            padding: 15px;
            border-bottom: 1px dashed #cde8e3;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
            transform: translateX(-20px);
            opacity: 0;
        }

        .team-member.visible { transform: translateX(0); opacity: 1; }

        .team-member:hover {
            background-color: var(--mint-soft);
            transform: translateX(5px);
        }

        .team-member:last-child { border-bottom: none; }

        .team-member img {
            width: 60px;
            height: 60px;
            border-radius: 50% 50% 50% 8px;
            object-fit: cover;
            margin-right: 15px;
            border: 3px solid var(--primary);
        }

        .member-info h4 { margin-bottom: 3px; color: var(--ink); }
        .member-info p { color: var(--text-light); font-size: 0.9rem; }

        .view-all-team {
            text-align: center;
            padding: 12px;
            background-color: var(--mint);
            border-radius: 0 0 36px 6px;
        }

        /* ================= Feedback ================= */
        .feedback-section {
            background: var(--ink);
            position: relative;
            overflow: hidden;
            padding: 70px 0;
        }

        .feedback-section .section-title { color: var(--mint); }

        .feedback-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="160" height="160" viewBox="0 0 160 160"><path d="M80 24 C108 42 120 72 80 122 C40 72 52 42 80 24 Z" fill="none" stroke="%23009B8E" stroke-width="1.5" opacity="0.18"/></svg>');
            background-size: 220px;
        }

        .feedback-content {
            display: flex;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
            gap: 40px;
        }

        .feedback-form-container {
            flex: 0 0 50%;
            max-width: 50%;
            background: var(--white);
            border-radius: var(--leaf-radius-lg);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            padding: 40px;
            position: relative;
            overflow: hidden;
            border-top: 6px solid var(--primary);
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
            position: relative;
        }

        .form-header h2 {
            color: var(--deep);
            font-family: 'Fraunces', serif;
            font-size: 1.9rem;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }

        .form-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            border-radius: 2px;
        }

        .form-header p { color: var(--text-light); font-size: 1rem; }

        .form-icon {
            font-size: 2.6rem;
            color: var(--white);
            margin-bottom: 20px;
            display: inline-block;
            background: var(--teal-gradient);
            width: 84px;
            height: 84px;
            line-height: 84px;
            border-radius: 50% 50% 50% 10px;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,155,142,0.4);
        }

        .feedback-form {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-group.full-width { grid-column: 1 / -1; }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--deep);
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #d9ece8;
            border-radius: 6px 18px 6px 18px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: var(--mint-soft);
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(0, 155, 142, 0.18);
            background-color: var(--white);
        }

        textarea.form-control { min-height: 140px; resize: vertical; }

        .form-submit {
            grid-column: 1 / -1;
            text-align: center;
            margin-top: 10px;
        }

        .submit-btn {
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            padding: 14px 44px;
            border-radius: var(--leaf-radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 18px rgba(0, 155, 142, 0.4);
            position: relative;
            overflow: hidden;
        }

        .submit-btn:hover {
            background: var(--gold-gradient);
            transform: translateY(-3px);
            border-radius: 36px 6px 36px 6px;
            box-shadow: 0 10px 24px rgba(233, 180, 76, 0.45);
        }

        .submit-btn:active { transform: translateY(-1px); }
        .submit-btn i { margin-left: 8px; }

        .partners-container {
            flex: 0 0 calc(50% - 40px);
            max-width: calc(50% - 40px);
        }

        .partners {
            background: var(--white);
            border-radius: var(--leaf-radius-lg);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            border-top: 6px solid var(--gold);
        }

        .partners h3 {
            text-align: center;
            margin-bottom: 30px;
            color: var(--deep);
            font-family: 'Fraunces', serif;
            font-size: 1.7rem;
            position: relative;
            padding-bottom: 15px;
        }

        .partners h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .partner-logo {
            background-color: var(--white);
            border-radius: var(--leaf-radius);
            padding: 15px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 89, 79, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e4f2ee;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 100px;
        }

        .partner-logo.visible { transform: scale(1); opacity: 1; }

        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 70px;
            object-fit: contain;
        }

        .full-width-banner {
            margin-top: auto;
            text-align: center;
            padding-top: 20px;
            border-top: 1px dashed #cde8e3;
        }

        .full-width-banner img {
            border-radius: var(--leaf-radius);
            box-shadow: var(--shadow);
            max-width: 100%;
            height: auto;
        }

        .form-control.error { border-color: #e35d6a; }
        .form-control.success { border-color: var(--primary); }

        .error-message {
            color: #e35d6a;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        .form-group.error .error-message { display: block; }

        @media (max-width: 992px) {
            .feedback-form-container,
            .partners-container { flex: 0 0 100%; max-width: 100%; }
            .partners-container { margin-top: 40px; }
        }

        @media (max-width: 768px) {
            .feedback-form { grid-template-columns: 1fr; }
            .feedback-form-container, .partners { padding: 30px 20px; }
            .form-header h2 { font-size: 1.6rem; }
        }

        @media (max-width: 576px) {
            .partners-grid { grid-template-columns: repeat(auto-fill, minmax(100px, 1fr)); }
            .partner-logo { height: 80px; padding: 10px; }
        }

        .form-group {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .form-group.visible { opacity: 1; transform: translateY(0); }

        /* ================= Footer ================= */
        .footer {
            background: linear-gradient(180deg, var(--deep) 0%, var(--ink) 100%);
            color: rgba(255,255,255,0.9);
            padding: 50px 0 0px;
            position: relative;
            overflow: hidden;
            border-top: 5px solid var(--gold);
        }

        .footer::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 300px;
            height: 300px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 8 C78 26 90 56 50 92 C10 56 22 26 50 8 Z" fill="%23009B8E"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.10;
            transform: rotate(40deg);
        }

        .maintenance-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(6, 50, 44, 0.92);
            backdrop-filter: blur(8px);
            z-index: 9999;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.5s ease;
        }

        .maintenance-overlay.active {
            display: flex;
        }

        .maintenance-modal {
            background: rgba(6, 50, 44, 0.92);
            border-radius: var(--leaf-radius-lg);
            padding: 50px 60px;
            max-width: 550px;
            width: 90%;
            border: 3px solid blue;
            text-align: center;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
            position: relative;
            overflow: hidden;
            animation: slideUp 0.6s ease;
            border-top: 8px solid var(--gold);
        }

        .maintenance-modal::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 160px;
            height: 160px;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 8 C78 26 90 56 50 92 C10 56 22 26 50 8 Z" fill="%23009B8E"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.08;
            transform: rotate(40deg);
        }

        .maintenance-modal .icon {
            font-size: 4rem;
            color: var(--gold);
            margin-bottom: 15px;
            display: block;
        }

        .maintenance-modal h2 {
            font-family: 'Fraunces', serif;
            font-size: 2rem;
            color: var(--deep);
            margin-bottom: 12px;
        }

        .maintenance-modal p {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .maintenance-modal .highlight {
            color: var(--primary);
            font-weight: 700;
        }

        .maintenance-modal .close-btn {
            margin-top: 25px;
            background: var(--teal-gradient);
            color: var(--white);
            border: none;
            padding: 14px 44px;
            border-radius: var(--leaf-radius);
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 18px rgba(0, 155, 142, 0.35);
        }

        .maintenance-modal .close-btn:hover {
            background: var(--gold-gradient);
            transform: translateY(-3px);
            border-radius: 36px 6px 36px 6px;
            box-shadow: 0 10px 24px rgba(233, 180, 76, 0.45);
        }

        .maintenance-modal .leaf-deco {
            display: inline-block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
            border-radius: 4px;
            margin: 12px auto 18px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px) scale(0.95); }
            to { opacity: 1; transform: translateY(0) scale(1); }
        }

        @media (max-width: 576px) {
            .maintenance-modal {
                padding: 35px 25px;
            }
            .maintenance-modal h2 {
                font-size: 1.5rem;
            }
            .maintenance-modal .icon {
                font-size: 3rem;
            }
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-section {
            flex: 0 0 25%;
            max-width: 25%;
            padding: 0 15px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            font-family: 'Fraunces', serif;
            font-size: 1.2rem;
            color: var(--white);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            border-radius: 3px;
            background: linear-gradient(90deg, var(--primary), var(--gold));
        }

        .contact-info-footer p {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
        }

        .contact-info-footer i {
            margin-right: 10px;
            margin-top: 5px;
            color: var(--gold);
        }

        .quick-links { list-style: none; }
        .quick-links li { margin-bottom: 10px; }

        .quick-links a {
            color: rgba(255,255,255,0.85);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .quick-links a:hover {
            color: var(--gold);
            padding-left: 6px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50% 50% 50% 8px;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--gold-gradient);
            color: var(--ink);
            transform: translateY(-4px);
        }

        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 11px 14px;
            border: none;
            border-radius: 6px 0 0 18px;
        }

        .newsletter-form button {
            background: var(--gold-gradient);
            color: var(--ink);
            border: none;
            padding: 0 16px;
            border-radius: 0 18px 6px 0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover { background: var(--teal-gradient); color: var(--white); }

        .emergency-services {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            z-index: 1;
        }

        .emergency-service {
            flex: 0 0 calc(16.66% - 10px);
            text-align: center;
            margin-bottom: 10px;
        }

        .emergency-service img {
            max-width: 100%;
            height: 50px;
            object-fit: contain;
            filter: brightness(0) invert(1);
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .emergency-service:hover img { opacity: 1; }

        .copyright {
            text-align: center;
            padding: 20px 0;
            margin-top: 20px;
            border-top: 1px solid rgba(0, 155, 142, 0.35);
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.65);
            position: relative;
            z-index: 1;
        }

        /* ================= Modal ================= */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(6, 50, 44, 0.9);
            z-index: 1100;
            align-items: center;
            justify-content: center;
        }

        .modal-content {
            max-width: 90%;
            max-height: 90%;
            position: relative;
            border-radius: var(--leaf-radius-lg);
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        }

        .modal-content img {
            max-width: 100%;
            max-height: 100%;
            border-radius: var(--leaf-radius-lg);
        }

        .close-modal {
            position: absolute;
            top: 10px;
            right: 10px;
            background: var(--gold-gradient);
            color: var(--ink);
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50% 50% 50% 8px;
            font-size: 1.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .close-modal:hover {
            background: var(--teal-gradient);
            color: var(--white);
            transform: scale(1.1);
        }

        /* ================= Responsive ================= */
        @media (max-width: 992px) {
            .slider-container,
            .notice-board { flex: 0 0 100%; max-width: 100%; }

            .message-text,
            .message-image,
            .vision-mission-text,
            .icon-links-container,
            .org-info-text,
            .climate-messages,
            .achievements-gallery,
            .team-members,
            .feedback-form,
            .partners { flex: 0 0 100%; max-width: 100%; }

            .message-text,
            .vision-mission-text,
            .org-info-text,
            .feedback-form { padding-right: 0; margin-bottom: 30px; }

            .team-members { padding-left: 0; margin-top: 30px; }

            .footer-section { flex: 0 0 50%; max-width: 50%; margin-bottom: 30px; }
            .emergency-service { flex: 0 0 calc(33.33% - 10px); }
            .icon-links { grid-template-columns: repeat(2, 1fr); }
        }

        @media (max-width: 768px) {
            .message-text,
            .message-image {
                flex: 0 0 100%;
                max-width: 100%;
                padding-right: 0;
            }

            .message-image { margin-bottom: 30px; text-align: center; }
            .message-image img { max-width: 40%; }
        }

        /* ============================================================
           MOBILE: Quick Access Corner → 2 cards per row (FORCE 2 COLUMN)
           ============================================================ */
        @media (max-width: 767px) {
            .icon-links {
                display: grid;
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 12px !important;
            }
            .icon-link {
                padding: 16px 8px;
                transform: scale(1) !important;
                opacity: 1 !important;
                border-radius: 12px 24px 12px 24px;
                box-shadow: 0 4px 12px rgba(0, 89, 79, 0.08);
                min-height: 80px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
            }
            .icon-link i {
                font-size: 1.6rem;
                margin-bottom: 6px;
            }
            .icon-link h3 {
                font-size: 0.85rem;
                text-align: center;
            }
            .icon-links-container {
                padding: 0 4px;
            }
            .vision-mission .section-title {
                margin-bottom: 20px;
            }
            /* Override any other grid settings */
            .icon-links-container .icon-links {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 420px) {
            .icon-links {
                gap: 8px !important;
            }
            .icon-link {
                padding: 12px 4px;
                min-height: 70px;
            }
            .icon-link i {
                font-size: 1.4rem;
            }
            .icon-link h3 {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 768px) {
            .mobile-menu-btn { display: block; }
            .top-header { display: none; }

            .nav-menu {
                position: fixed;
                top: 100px;
                left: -100%;
                width: 72%;
                height: calc(75vh - 100px);
                background: rgba(0, 89, 79, 0.96);
                backdrop-filter: blur(8px);
                display: flex;
                flex-direction: column;
                align-items: stretch;
                transition: left 0.3s ease;
                box-shadow: var(--shadow-lg);
                padding: 25px;
                border-radius: 0 36px 36px 0;
                z-index: 1000;
            }

            .nav-menu.active { left: 0; }
            .nav-menu li { margin: 10px 0; }
            .nav-menu a { color: var(--white); }
            .nav-menu a:hover { color: var(--gold); }

            .objective-card { flex: 0 0 100%; }
            .footer-section { flex: 0 0 100%; max-width: 100%; }
            .emergency-service { flex: 0 0 calc(50% - 10px); }
        }

        @media (max-width: 576px) {
            .top-header .container { flex-direction: column; align-items: flex-start; }
            .contact-info span { display: block; margin-bottom: 5px; }
            .logo h1 { font-size: 1.2rem; color:black; }
            .section-title { font-size: 1.2rem; padding-left: 38px; }
            .section-title::before { width: 26px; height: 26px; }
            .section-title::after { left: 38px; }
            .emergency-service { flex: 0 0 100%; }
            .hero-section {flex-direction: column; display: flex; flex-wrap: wrap; align-items: center;}
        }

        @media (prefers-reduced-motion: reduce) {
            * { transition: none !important; animation: none !important; }
        }

        @media (max-width: 767px) {
            .slider-container {
                border-radius: 0;
                border: none;
                outline: none;
                box-shadow: none;
                margin: 0 -15px;
                width: auto;
            }

            .slide img {
                height: 280px; 
                width: 100%;
                object-fit: contain;
                object-position: center;
                border-radius: 2px;
            }

            .slide-content {
                padding: 12px 16px;
                transform: translateY(0) !important;
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                background: linear-gradient(0deg, rgba(6, 50, 44, 0.92) 0%, rgba(0, 155, 142, 0.75) 100%);
                border-top: 3px solid var(--gold);
            }

            .slide-content h2 {
                font-size: 1.1rem;
                margin-bottom: 4px;
            }
            .slide-content p {
                font-size: 0.85rem;
                margin-bottom: 2px;
            }
        }