/* Extracted from our-objectives.php */

        /* ============================================================
           ASHAR ALO — "Green Light" Redesign (Same as Homepage)
           Theme: Teal #009B8E · Leaf motifs · Organic professional
           ============================================================ */
        :root {
            --primary: #009B8E;          /* brand teal */
            --primary-dark: #00776D;
            --deep: #00594F;             /* deep forest teal */
            --ink: #06322C;              /* near-black teal for text & footer */
            --mint: #E3F4F1;             /* pale mint surface */
            --mint-soft: #F1FAF8;
            --ivory: #F8FBFA;            /* page background */
            --gold: #E9B44C;             /* marigold accent */
            --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-shaped corners */
            --leaf-radius-lg: 8px 56px 8px 56px;
        }

        * {
            margin: 0;
            padding: 0;
            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;
            /* Leaf-pattern background (same as homepage) */
            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: 60px 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Section title with leaf glyph (same as homepage) */
        .section-title {
            text-align: left;
            margin-bottom: 40px;
            color: var(--ink);
            font-family: 'Fraunces', serif;
            font-size: 2.3rem;
            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 (Same as Homepage) ================= */
        .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: var(--white);
            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: rgba(255, 255, 255, 0.95);
            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: var(--ink);
        }

        /* Navigation (Same as Homepage) */
        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
        }

        .nav-menu li { margin-left: 22px; }

        .nav-menu a {
            text-decoration: none;
            color: var(--ink);
            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 button */
        .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); }

        /* ================= Objectives Specific Styles ================= */
        .objectives-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .objectives-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .objective-card {
            background: var(--white);
            border-radius: var(--leaf-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.35s ease;
            position: relative;
            border-top: 4px solid var(--primary);
            margin-bottom: 35px;
            transform: scale(0.95);
            opacity: 0;
        }

        .objective-card.visible {
            transform: scale(1);
            opacity: 1;
        }

        .objective-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
            border-top-color: var(--gold);
        }

        .objective-header {
            background: var(--teal-gradient);
            color: var(--white);
            padding: 20px 25px;
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .objective-icon {
            font-size: 1.8rem;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.18);
            border-radius: 50% 50% 50% 8px;
            flex-shrink: 0;
            border: 2px solid rgba(255, 255, 255, 0.25);
        }

        .objective-title {
            font-family: 'Fraunces', serif;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .objective-content {
            padding: 30px;
        }

        .objective-sub-title {
            color: var(--ink);
            font-family: 'Fraunces', serif;
            font-size: 1.2rem;
            margin-top: 20px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .objective-sub-title:first-of-type {
            margin-top: 0;
        }

        .objective-sub-title i {
            color: var(--primary);
            font-size: 1rem;
        }

        .objective-sub-title .gold-icon {
            color: var(--gold);
        }

        .objective-text {
            color: var(--text-dark);
            line-height: 1.7;
            padding-left: 5px;
        }

        .objective-text-bn {
            font-family: 'Hind Siliguri', sans-serif;
        }

        /* Activity Grid */
        .activity-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }

        .activity-card {
            background: var(--mint-soft);
            border-radius: var(--leaf-radius);
            padding: 22px 22px 18px;
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
            transform: translateY(20px);
            opacity: 0;
        }

        .activity-card.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .activity-card:hover {
            background: var(--mint);
            transform: translateX(5px);
            border-left-color: var(--gold);
            box-shadow: var(--shadow);
        }

        .activity-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Fraunces', serif;
        }

        .activity-title i {
            color: var(--primary);
            font-size: 1.1rem;
        }

        .activity-title .gold-icon {
            color: var(--gold);
        }

        .activity-sub {
            color: var(--text-light);
            font-size: 0.9rem;
            margin-bottom: 12px;
        }

        .activity-list {
            list-style: none;
        }

        .activity-list li {
            margin-bottom: 7px;
            padding-left: 25px;
            position: relative;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .activity-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }

        .activity-list li:hover::before {
            color: var(--gold);
        }

        /* ================= Footer (Same as Homepage) ================= */
        .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 58 C10 56 22 26 50 8 Z" fill="%23009B8E"/></svg>');
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.10;
            transform: rotate(40deg);
        }

        .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); }

        .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;
        }

        /* ================= Responsive ================= */
        @media (max-width: 992px) {
            .footer-section {
                flex: 0 0 50%;
                max-width: 50%;
                margin-bottom: 30px;
            }
            
            .activity-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
        }

        @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(70vh - 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-header {
                flex-direction: column;
                text-align: center;
                padding: 20px;
            }

            .objective-icon {
                margin-right: 0;
                margin-bottom: 10px;
            }

            .objective-title {
                font-size: 1.2rem;
            }

            .activity-grid {
                grid-template-columns: 1fr;
            }

            .objective-content {
                padding: 20px;
            }

            .footer-section {
                flex: 0 0 100%;
                max-width: 100%;
            }

            .section-title {
                font-size: 1.8rem;
                padding-left: 38px;
            }
            .section-title::before {
                width: 26px;
                height: 26px;
            }
            .section-title::after {
                left: 38px;
            }
        }

        @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;
            }

            .section-title {
                font-size: 1.4rem;
            }

            .objective-title {
                font-size: 1rem;
            }

            .objective-sub-title {
                font-size: 1rem;
            }

            .activity-card {
                padding: 18px;
            }

            .objective-content {
                padding: 15px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            * { transition: none !important; animation: none !important; }
        }
    