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

:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --accent: #00D9FF;
    --accent-gold: #c5a35d;
    --dark: #1A1A2E;
    --text-dark: #2d2a26;
    --cream: #f5f0e8;
    --light: #F7F9FC;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(120deg, #89f7fe 0%, #66a6ff 100%);
}

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

/* Animated gradient background */
.hero {
    min-height: 100vh;
    position: relative;
    background: linear-gradient(135deg, #f5f0e8 0%, #ebe5dc 30%, #f9f5ed 60%, #f0ebe3 100%);
    overflow: hidden;
    padding-top: 60px; /* Reduced padding for tighter spacing after navbar */
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(239, 205, 145, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Floating geometric shapes */
.shape {
    position: absolute;
    opacity: 0;
    animation: float 15s ease-in-out infinite, fadeInShape 1s ease-out 0.8s forwards;
}

.shape.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gradient-1);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape.square {
    width: 200px;
    height: 200px;
    background: var(--gradient-2);
    top: 60%;
    left: 5%;
    transform: rotate(45deg);
    animation-delay: 2s;
}

.shape.triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid rgba(0, 217, 255, 0.3);
    bottom: 10%;
    right: 20%;
    animation-delay: 4s;
}

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

@keyframes fadeInShape {
    from {
        opacity: 0;
    }
    to {
        opacity: 0.1;
    }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 5%;
    animation: slideDown 0.8s ease-out;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,1) 0%,
        rgba(255,255,255,0.9) 60%,
        rgba(255,255,255,0) 100%
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* Scrolled state for navbar with bottom blur */
nav.scrolled {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(183, 182, 182, 0.1);
    padding: 0.8rem 5%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.616);
}

/* Add extra blur effect to bottom edge when scrolled */
nav.scrolled::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    pointer-events: none;
}

@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: rgb(0, 0, 0);
    position: relative;
    
    /* Added these for alignment */
    display: flex;
    align-items: center;
    gap: 12px; /* Space between logo and text */
    cursor: pointer;
}

/* Control the logo image size */
.logo img {
    height: 40px; /* Adjust this height to fit your nav bar */
    width: auto;
    display: block;
}

/* Updated hover line to account for the image width */
.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::after {
    transform: scaleX(1);
}

.logo:hover {
    color: #fbbf24;
}

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

.nav-links a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    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 Content */
.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    margin-top: 4rem;
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
    padding: 0% 5%;
    align-items: center;
    /* min-height: 80vh; */
}

.hero-text small {
    display: block;
    margin-bottom: 5rem;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0;
    animation: fadeInBounce 0.8s ease-out 0.2s forwards;
}

@keyframes fadeInBounce {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(5px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-text p:first-child {
    margin-bottom: 5%; /* Reduced from 10% for tighter spacing */
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: slideDown 0.5s ease-out 0.6s both;
}

.hero-text {
    padding-top: 1rem; /* Reduced from 3rem to start higher */
}

@keyframes slideFromCenterToLeft {
    0% {
        opacity: 0;
        transform: translateX(50%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.hero-text h1 {
    font-family: 'Outfit', astafine;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #0A0A0A;
    letter-spacing: -0.03em;
    text-transform: capitalize;
    white-space: nowrap;
    opacity: 0;
    animation: slideInLeftSoft 0.8s ease-out 0.4s forwards;
}

@keyframes slideInLeftSoft {
    0% {
        opacity: 0;
        transform: translateX(-35px); /* Slight from left */
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


.hero-text h1 span{
    color: #2c257a;
    display: inline-block;
    animation: colorPulse 2s ease-in-out 1.5s infinite;
}

@keyframes colorPulse {
    0%, 100% {
        color: #2c257a;
        transform: scale(1);
    }
    50% {
        color: #4a3fb8;
        transform: scale(1.05);
    }
}

.hero-text .subheadline {
    font-family: 'Space Grotesk', astafine;
    font-size: 1.25rem;
    color: #414040;
    margin-bottom: 2rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.01em;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-highlight {
    font-weight: 800;
    font-size: 1.2rem;
    color: #ef4444;
    margin-bottom: 6rem;
    font-family: 'Space Grotesk', sans-serif;
    opacity: 0;
    animation: slideInLeftSoft 0.8s ease-out 0.5s forwards;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0);
    transition: text-shadow 0.3s ease;
}

@keyframes glowFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: blur(5px);
    }
    70% {
        opacity: 1;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }
}

.hero-highlight:hover {
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: buttonsSlideIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
}

@keyframes buttonsSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    overflow: hidden;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary), #1c1c53);
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
    border: 2.5px solid var(--dark);
    position: relative;
    z-index: 1;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--dark);
    z-index: -1;
    transition: width 0.4s ease;
    border-radius: 50px;
}

.btn-secondary:hover::after {
    width: 100%;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    animation: slideFromCenterToRight 0.6s ease-out 0s both;
}

@keyframes slideFromCenterToRight {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.illustration-wrapper {
    position: relative;
    transform: translateY(40px);
}

.illustration-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    animation: floatSoft 6s ease-in-out infinite;
}

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

/* Decorative elements - Rocket and Lock icons */
.deco-icon {
    position: absolute;
    font-size: 2rem;
    animation: floatIcon 3s ease-in-out infinite;
    z-index: 10;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.deco-icon.rocket {
    top: -15%;
    right: 200px;
    animation-delay: 0s;
}

.deco-icon.lock {
    top: 2%;
    right: -40px;
    animation-delay: 1s;
}

.deco-icon.rocket-2 {
    top: 45%;
    right: -60px;
    animation-delay: 0.5s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 3.2rem;
        white-space: normal;
    }

    .hero-text h2 {
        font-size: 2.5rem;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1.5rem;
    }

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

    .hero-text h1 {
        font-size: 2.2rem;
        white-space: normal;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text .subheadline {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .shape {
        display: none;
    }
}






/* About Section Styles */
.about-section {
    padding: 40px 5%; /* Very tight spacing */
    background: #ffffff; 
    overflow: hidden;
}

/* Orange Fixed Tagline */
.tagline.orange-fixed {
    display: inline-block;
    color: var(--primary); /* Uses your #FF6B35 */
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.2s;
}

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

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

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

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

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

/* Ensure smooth transition for all reveal types */
.reveal-left, .reveal-right, .reveal {
    will-change: transform, opacity; /* Improves animation performance */
}

/* Specific transition for the horizontal reveals */
.reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr; /* Video narrower, text wider */
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-content {
    text-align: left;
}

.about-text-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark);
    opacity: 0;
    animation: fadeInRight 1s ease forwards;
    animation-delay: 0.4s;
}

.about-text-content .simple-text {
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.6s;
}

/* Mission & Vision Cards */
.goals-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.goal-card {
    background: #ffffff; /* White cards stand out on gray background */
    padding: 20px;
    border-left: 4px solid var(--primary);
    border-radius: 8px;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: zoomIn 0.8s ease forwards;
}

.goal-card:first-child {
    animation-delay: 0.8s;
}

.goal-card:last-child {
    animation-delay: 1s;
}

.goal-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.goal-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.goal-card p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
}

/* Left Side Video Styling - Clean, No Design Elements */
.video-wrapper {
    position: relative;
    opacity: 0;
    animation: slideInLeft 1.2s ease forwards;
    animation-delay: 0.2s;
}

.side-video {
    width: 100%;
    height: auto;
    max-height: 500px; /* Controls video height to stay within section */
    object-fit: cover; /* Maintains aspect ratio while filling container */
    border-radius: 0; /* No rounded corners */
    box-shadow: none; /* No shadow */
}

/* Mobile Responsiveness */
@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-video-container {
        order: 2; /* Video goes below text on mobile */
        margin-top: 40px;
    }
    
    .about-text-content {
        order: 1;
    }
    
    .goals-container {
        grid-template-columns: 1fr;
    }
    
    .side-video {
        max-height: 400px; /* Slightly smaller on mobile */
    }
    
    /* Adjust animations for mobile */
    .video-wrapper {
        animation: fadeInUp 1s ease forwards;
    }
}

/* --- Parallax Stats Section --- */
.stats-parallax {
    position: relative;
    padding: 100px 5%;
    background-image: url('https://cdn.prod.website-files.com/699025c46f659bcd5d4bd4cb/69902b86f0d4cbf132d90b6c_48046a60b738f53f5a39e061bef3c6aa_7.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.stats-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(10, 10, 20, 0.8); /* Darker overlay for better text contrast */
    z-index: 1;
}

/* --- Services Grid --- */
.stats {
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.s-card {
    /* Lighter Card Background */
    background: #f9f5ed;
    backdrop-filter: blur(15px); /* The frosted glass effect */
    -webkit-backdrop-filter: blur(15px);
    padding: 5rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    cursor: pointer;
}

/* Background expansion circle logic (unchanged logic, updated feel) */
.s-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s ease-in-out, height 0.7s ease-in-out;
    z-index: 0;
}

/* Individual Card Accents */
.s-card:nth-child(1)::before { background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%); }
.s-card:nth-child(1) h3, .s-card:nth-child(1) i { color: #FF6B35; }

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

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

/* Global Hover States */
.s-card:hover::before {
    width: 200%; /* Larger expansion for full coverage */
    height: 200%;
}

.s-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.s-card:hover h3, 
.s-card:hover p, 
.s-card:hover i {
    color: #ffffff !important; /* Flip text to white on color background */
}

/* Content layer management */
.s-card i, .s-card h3, .s-card p {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.s-card i {
    font-size: 3.2rem;
    margin-bottom: 2rem;
}

.s-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    font-family: 'Outfit', sans-serif;
}

.s-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #4a5568; /* Dark grey for better legibility on light cards */
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    padding: 120px 5%;
    background: linear-gradient(135deg, 
        rgb(22, 25, 58) 0%,
        rgb(37, 33, 85) 50%,
        rgb(23, 31, 71) 100%
    );
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 50%, var(--light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.3rem;
    color: #dbd9d9;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.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;
    }
}

/* ==================== 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);
}