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

        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #00D9FF;
            --dark: #1A1A2E;
            --light: #F7F9FC;
            --cream: #f5f0e8;
            --text-dark: #2d2a26;
            --accent-gold: #c5a35d;
            --orange: #FF6B35;
            --violet: #8B5CF6;
            --blue: #3B82F6;
        }

        body {
            font-family: 'Space Grotesk', sans-serif;
            background: var(--light);
            color: var(--text-dark);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ==================== NAVIGATION ==================== */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.2rem 5%;
            background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(255,255,255,0.9) 60%, rgba(255,255,255,0) 100%);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            animation: slideDown 0.8s ease-out;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            font-family: 'Outfit', sans-serif;
            font-size: 1.6rem;
            font-weight: 700;
            color: #000;
            position: relative;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #fbbf24;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .logo:hover {
            color: #fbbf24;
        }

        .logo:hover::after {
            transform: scaleX(1);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #000;
            font-weight: 500;
            font-size: 1.2rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: #fbbf24;
            transition: width 0.3s ease, left 0.3s ease;
        }

        .nav-links a:hover {
            color: #fbbf24;
        }

        .nav-links a:hover::before {
            width: 100%;
            left: 0;
        }

        /* ================= HERO ABOUT ================= */

.hero-about {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 80px;
    padding: 0 5%;

    background: url('https://cdn.prod.website-files.com/699025c46f659bcd5d4bd4cb/69902982d2cb613c8f64d35b_bg.jpeg') center / cover no-repeat;
}

/* Dark Gradient Overlay */
.hero-about::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 15, 40, 0.85) 0%,
        rgba(15, 25, 60, 0.85) 50%,
        rgba(20, 35, 80, 0.9) 100%
    );
    z-index: 1;
}

/* Soft Glow Accent */
.hero-about::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(255, 107, 53, 0.25), transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(0, 217, 255, 0.25), transparent 50%);
    animation: glowPulse 8s ease-in-out infinite;
    z-index: 2;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 5;
    max-width: 900px;
    animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subheader */
.hero-about .subheader {
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.5rem;
}

/* Heading */
.hero-about h1 {
    font-size: 4.5rem;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    letter-spacing: -0.03em;

    background: linear-gradient(90deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Highlight Word */
.hero-about h1 span {
    background: linear-gradient(90deg, #FF6B35, #00D9FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Paragraph */
.hero-about p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    max-width: 650px;
    margin: 0 auto;
}

/* Optional CTA */
.hero-buttons {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn.primary {
    background: linear-gradient(90deg, #FF6B35, #FF8A50);
    color: #fff;
}

.hero-btn.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.hero-btn.secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
}

.hero-btn.secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-about h1 {
        font-size: 2.8rem;
    }

    .hero-about p {
        font-size: 1rem;
    }
}


        /* ==================== MISSION SECTION ==================== */
        .mission-section {
            padding: 120px 5%;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            animation: fadeInDown 0.8s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section-title .tagline {
            display: inline-block;
            color: var(--primary);
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        .section-title h2 {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-family: 'Outfit', sans-serif;
        }

        .mission-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
            align-items: center;
        }

        .mission-text {
            opacity: 0;
        }

        .mission-text.animate {
            animation: slideInLeft 0.8s ease-out forwards;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .mission-text h3 {
            font-size: 2.2rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
            font-family: 'Outfit', sans-serif;
            opacity: 0;
        }

        .mission-text h3.animate {
            animation: slideUpTitle 0.8s ease-out 0.2s forwards;
        }

        @keyframes slideUpTitle {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mission-text p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            opacity: 0;
        }

        .mission-text p:nth-of-type(1).animate {
            animation: slideUpPara 1s ease-out 0.4s forwards;
        }

        .mission-text p:nth-of-type(2).animate {
            animation: slideUpPara 1s ease-out 0.6s forwards;
        }

        @keyframes slideUpPara {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mission-text .highlight {
            color: var(--primary);
            font-weight: 600;
        }

        .mission-image {
            position: relative;
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .mission-image video,
        .story-image-left video {
            width: 100%;
            height: auto;
            border-radius: 15px;
            box-shadow: none;
            animation: floatImage 5s ease-in-out infinite;
            display: block;
        }

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

        /* ==================== STORY SECTION - NO CARDS ==================== */
        .story-section {
            padding: 100px 5%;
            background: #ffffff;
            position: relative;
            overflow: hidden;
        }

        .story-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .story-layout {
            display: grid;
            grid-template-columns: 0.8fr 1.2fr;
            gap: 70px;
            align-items: flex-start;
        }

        .story-image-left {
            position: relative;
            animation: slideFromLeft 0.8s ease-out 0.2s both;
            margin-top: 80px;
        }

        @keyframes slideFromLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .story-content-right {
            animation: slideFromRight 0.8s ease-out 0.3s both;
            padding-top: 20px;
        }

        @keyframes slideFromRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .story-heading {
            margin-bottom: 50px;
            opacity: 0;
        }

        .story-heading.animate {
            animation: slideUpContent 0.8s ease-out forwards;
        }

        @keyframes slideUpContent {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .story-heading .tagline {
            display: inline-block;
            color: var(--primary);
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .story-heading h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 0;
            font-family: 'Outfit', sans-serif;
            line-height: 1.2;
        }

        .mission-vision-section {
            display: grid;
            grid-template-columns: 0.5fr 0.5fr;
            gap: 60px;
            margin-top: 10px;
        }

        .mission-vision-item {
            background: transparent;
            padding: 0;
            border: none;
            opacity: 0;
        }

        .mission-vision-item:nth-child(1).animate {
            animation: slideUpContent 1s ease-out 0.3s forwards;
        }

        .mission-vision-item:nth-child(2).animate {
            animation: slideUpContent 1s ease-out 0.5s forwards;
        }

        .mission-vision-symbol {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .mission-vision-item h3 {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 1rem;
            font-family: 'Outfit', sans-serif;
        }

        .mission-vision-item p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #666;
        }

        /* ==================== VALUES SECTION - ENHANCED ==================== */
        .values-section {
            padding: 120px 5%;
            background: linear-gradient(135deg, #f5f0e8 0%, #ebe5dc 100%);
            position: relative;
            overflow: hidden;
        }

        .values-parallax {
            position: absolute;
            opacity: 0.05;
            font-size: 200px;
            font-weight: 800;
            color: var(--dark);
            top: -50px;
            right: -100px;
            z-index: 0;
            animation: float 15s ease-in-out infinite;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .value-card {
            background: white;
            padding: 50px 40px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            border: 2px solid transparent;
            animation: popIn 0.6s ease-out backwards;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .value-card:nth-child(1) { animation-delay: 0.1s; }
        .value-card:nth-child(2) { animation-delay: 0.2s; }
        .value-card:nth-child(3) { animation-delay: 0.3s; }

        /* Orange Card */
        .value-card:nth-child(1) {
            background: linear-gradient(135deg, #3c3c86 0%, #1c1c53 100%);
            border: 3px solid rgba(255, 107, 53, 0.2);
        }

        /* Violet Card */
        .value-card:nth-child(2) {
            background: linear-gradient(135deg, #3c3c86 0%, #1c1c53 100%);
            border: 3px solid rgba(139, 92, 246, 0.2);
        }

        /* Blue Card */
        .value-card:nth-child(3) {
            background: linear-gradient(135deg, #3c3c86 0%, #1c1c53 100%);
            border: 3px solid rgba(59, 130, 246, 0.2);
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(0.8) translateY(30px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Animated hover effects */
        .value-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
            z-index: 0;
        }

        .value-card:nth-child(1)::before {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
        }

        .value-card:nth-child(2)::before {
            background: linear-gradient(135deg, #8B5CF6 0%, #A78BFA 100%);
        }

        .value-card:nth-child(3)::before {
            background: linear-gradient(135deg, #3B82F6 0%, #60A5FA 100%);
        }

        .value-card:hover::before {
            width: 150%;
            height: 150%;
        }

        .value-card:hover {
            transform: translateY(-25px) scale(1.05) rotateZ(2deg);
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
            border-color: transparent;
        }

        .value-card:nth-child(1):hover {
            border: 3px solid #FF6B35;
        }

        .value-card:nth-child(2):hover {
            border: 3px solid #8B5CF6;
        }

        .value-card:nth-child(3):hover {
            border: 3px solid #3B82F6;
        }

        /* Icon animation */
        .value-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
            position: relative;
            z-index: 2;
            animation: iconFloat 3s ease-in-out infinite;
        }

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

        .value-card:hover .value-icon {
            transform: scale(1.4) rotateY(360deg) translateY(-10px);
            animation: none;
        }

        .value-card h3 {
            font-size: 1.9rem;
            font-weight: 800;
            margin-bottom: 1rem;
            font-family: 'Outfit', sans-serif;
            transition: color 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .value-card:nth-child(1) h3 {
            color: #FF6B35;
        }

        .value-card:nth-child(2) h3 {
            color: #8B5CF6;
        }

        .value-card:nth-child(3) h3 {
            color: #3B82F6;
        }

        .value-card:hover h3 {
            color: white;
            transform: scale(1.05);
        }

        .value-card p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #ffffff;
            transition: color 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .value-card:hover p {
            color: rgba(255, 255, 255, 0.95);
        }

        /* Sparkle effect on hover */
        .value-card::after {
            content: '✨';
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 3;
        }

        .value-card:hover::after {
            opacity: 1;
            animation: sparkle 1s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.2) rotate(180deg); }
        }

        /* ==================== COMMITMENT SECTION - ENHANCED ==================== */
        .commitment-section {
            padding: 120px 5%;
            background: linear-gradient(135deg, 
                rgba(255, 107, 53, 0.08) 0%,
                rgba(139, 92, 246, 0.08) 50%,
                rgba(59, 130, 246, 0.08) 100%
            );
            position: relative;
            overflow: hidden;
        }

        .commitment-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(111, 43, 19, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
            animation: pulseGlow 8s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .commitment-container {
            max-width: 1100px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .commitment-text {
            background: white;
            padding: 70px;
            border-radius: 30px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
            animation: slideUp 0.8s ease-out;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.5s ease;
        }

        .commitment-text::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, 
                var(--orange) 0%, 
                var(--violet) 50%, 
                var(--blue) 100%);
            animation: slideGradient 3s ease-in-out infinite;
        }

        @keyframes slideGradient {
            0%, 100% { transform: translateX(-20%); }
            50% { transform: translateX(20%); }
        }

        .commitment-text:hover {
            transform: translateY(-10px);
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
            border-color: rgba(255, 107, 53, 0.3);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .commitment-text h3 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 2rem;
            font-family: 'Outfit', sans-serif;
            font-weight: 900;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--blue) 50%, var(--violet) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .commitment-text h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--blue), var(--violet));
            border-radius: 2px;
        }

        .commitment-text p {
            font-size: 1.15rem;
            color: #555;
            line-height: 2;
            margin-bottom: 2rem;
            position: relative;
            padding-left: 30px;
        }

        .commitment-text p::before {
            content: '▸';
            position: absolute;
            left: 0;
            color: var(--orange);
            font-size: 1.5rem;
            font-weight: bold;
        }

        .commitment-text p:nth-of-type(2)::before {
            color: var(--orange);
        }

        .commitment-text p:last-child {
            margin-bottom: 0;
        }

        .commitment-accent {
            color: var(--primary);
            font-weight: 700;
            background: linear-gradient(135deg, var(--secondary) 0%, var(--blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Floating decorative elements */
        .commitment-section .floating-decoration {
            position: absolute;
            opacity: 0.1;
            z-index: 1;
            animation: floatSlow 20s ease-in-out infinite;
        }

        .decoration-1 {
            top: 10%;
            left: 5%;
            font-size: 100px;
        }

        .decoration-2 {
            bottom: 10%;
            right: 5%;
            font-size: 120px;
        }

        @keyframes floatSlow {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        /* ==================== PARALLAX SECTION ==================== */
        .parallax-section {
            min-height: 80vh;
            background-image: linear-gradient(135deg, rgb(23, 28, 57), rgb(25, 29, 61)), 
                              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="1200" height="600" fill="url(%23grid)"/></svg>');
            background-attachment: fixed;
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .parallax-content {
            text-align: center;
            z-index: 2;
            position: relative;
            animation: zoomIn 1s ease-out;
        }

        @keyframes zoomIn {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .parallax-content h2 {
            font-size: 4rem;
            font-weight: 800;
            color: var(--light);
            margin-bottom: 1.5rem;
            font-family: 'Outfit', sans-serif;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
        }

        .parallax-content p {
            font-size: 1.4rem;
            color: var(--cream);
            max-width: 600px;
            margin: 0 auto 2rem;
            font-weight: 500;
        }

        .cta-button {
            display: inline-block;
            padding: 1.3rem 3.5rem;
            background: linear-gradient(135deg, var(--light), var(--cream), var(--light));
            color: rgb(20, 25, 49);
            font-size: 1.2rem;
            font-weight: 800;
            text-decoration: none;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
            font-family: 'Outfit', sans-serif;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(127, 151, 247, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .cta-button:hover::before {
            width: 400px;
            height: 400px;
        }

        .cta-button:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 20px 60px rgba(53, 93, 255, 0.5);
        }

        @media (max-width: 768px) {
        .cta-content h2 {
                font-size: 2.2rem;
            }

            .cta-content p {
                font-size: 1.1rem;
            }
        }

        .parallax-bg-element {
            position: absolute;
            opacity: 0.1;
            z-index: 0;
        }

        .shape-lg {
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: var(--primary);
            top: -100px;
            left: -100px;
            animation: float 20s ease-in-out infinite;
        }

        .shape-lg-2 {
            width: 300px;
            height: 300px;
            background: var(--secondary);
            bottom: -100px;
            right: -100px;
            transform: rotate(45deg);
            animation: float 15s ease-in-out infinite reverse;
        }

        /* ==================== FOOTER ==================== */
.main-footer {
    padding: 30px 5% 30px;
    background: var(--cream);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

/* Update 1: Align Logo and Text on the same line */
.footer-brand h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    display: flex;          
    align-items: center;    
    left: 2%;              
}


.footer-brand h2 span {
    color: var(--accent-gold);
}

.footer-brand p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
    position: relative;
}

.footer-links ul li a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-links ul li a:hover::before {
    width: 100%;
}

.footer-contact p {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    width: 20px;
}

.footer-contact a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary);
}


.footer-bottom {
    padding-top: 30px;     
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column; 
    align-items: center;    
    text-align: center;     
    gap: 20px;      
    margin-top: -30px;        
}

/* --- Scroll Animation States --- */
.reveal, 
.reveal-left, 
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal { transform: translateY(30px); }
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }

/* Active states with proper specificity */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

        /* ==================== RESPONSIVE ==================== */
        @media (max-width: 768px) {
            nav {
                flex-direction: column;
                gap: 1rem;
                padding: 1rem 5%;
            }

            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 2rem;
            }

            .nav-links a {
                font-size: 1.1rem;
            }

            .hero-about {
                margin-top: 150px;
                min-height: 60vh;
                background-attachment: scroll;
            }

            .hero-about h1 {
                font-size: 2.5rem;
            }

            .hero-about .subheader {
                font-size: 1rem;
            }

            .hero-about p {
                font-size: 1rem;
            }

            .story-layout {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .story-image-left {
                margin-top: 0;
            }

            .story-heading h2 {
                font-size: 2rem;
            }

            .mission-vision-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .mission-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .values-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .section-title h2 {
                font-size: 2.2rem;
            }

            .commitment-text {
                padding: 40px;
            }

            .parallax-section {
                background-attachment: scroll;
                min-height: 60vh;
            }

            .parallax-content h2 {
                font-size: 2.5rem;
            }

            .parallax-content p {
                font-size: 1.1rem;
            }
        }