/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

/* Import Good Times Font */
@font-face {
    font-family: 'Good Times';
    src: url('GoodTimes-Regular.woff2') format('woff2'),
         url('GoodTimes-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Root Variables */
:root {
    --primary:  #106faf;
    --primary-dark: #14385a;
    --secondary: #65b343;
    --dark: #050505;
    --darker: #0a0a0a;
    --light: #f8f9fa;
    --gray: #6c6c6c;
    --transition: all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
}

/* Base Styles */
* {
    font-family: 'Good Times', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--light);
    color: var(--darker);
    overflow-x: hidden;
    line-height: 1.6;
}

p {
    font-family: 'Helvetica', sans-serif;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gradient Heading Styles */
.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-bottom: 15px;
     transform: translateY(30px);
            animation: fadeInUp 0.8s forwards;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-title {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    padding-bottom: 15px;
}

.hero-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    border-radius: 2px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    padding-bottom: 8px;
    position: relative;
}

.card-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.timeline-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #ffffff, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    padding-bottom: 15px;
}

.cta-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #d1f3ff);
    border-radius: 2px;
}

/* Hero Section */


/* Section Styling */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-subtitle {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    color: var(--gray);
}

/* Grid Layout */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Card Styling */
.card {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
}

.card-text {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(10, 102, 194, 0.5);
    animation: pulse 4s infinite alternate;
}

.timeline-item {
    padding: 20px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    border-left: 5px solid var(--primary);
    transition: all 0.4s ease;
}

.timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-left-width: 8px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: white;
    top: 30px;
    transform: rotate(45deg);
    z-index: -1;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -15px;
    border-right: 5px solid var(--primary);
    border-top: 5px solid var(--primary);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -15px;
    border-left: 5px solid var(--primary);
    border-bottom: 5px solid var(--primary);
}

.timeline-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    right: -15px;
    background-color: white;
    border: 5px solid var(--primary);
    border-radius: 50%;
    z-index: 1;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 4px white, 0 0 0 8px rgba(10, 102, 194, 0.2);
    transition: all 0.4s ease;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -15px;
}

.timeline-dot::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 50%;
    animation: glow 2s infinite alternate;
}

.timeline-date {
    position: absolute;
    width: 140px;
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 0.75rem 1rem;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: -160px;
    top: 25px;
}

.timeline-item:nth-child(even) .timeline-date {
    left: -160px;
    top: 25px;
}

.timeline-date::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-date::before {
    border-left: 10px solid var(--primary);
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-date::before {
    border-right: 10px solid var(--primary);
    left: -10px;
}

.timeline-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.timeline-tag {
    display: inline-block;
    background: rgba(10, 102, 194, 0.1);
    color: var(--primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    border: 1px solid rgba(10, 102, 194, 0.2);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 16/9;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 1rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}


/* CTA Section */
.cta-section {
    background:linear-gradient(135deg, #22a069 0%, #42c0ff 100%);
    text-align: center;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cmVjdCB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzAgMTVMMTUgMzBNMzAgNDVMMTUgMzBNMzAgNDVMMTUgMzBNMzAgMTVMMzAgMzBNNDUgMTVMMzAgMzBNNDUgMTVMMzAgMzBNNDUgMTVMNDUgMzBNNDUgNDVMMzAgMzBNNDUgNDVMMzAgMzAiIHN0cm9rZT0iIzAwMCIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9zdmc+');
    opacity: 0.1;
}

.cta-text {
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.9);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(10,102,194,0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10,102,194,0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

@keyframes pulse {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

@keyframes glow {
    0% { box-shadow: 0 0 0 0 rgba(44, 227, 8, 0.7); }
    100% { box-shadow: 0 0 0 6px rgba(44, 227, 8, 0); }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float {
    animation: float 6s ease-in-out infinite;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .hero-section {
        min-height: 700px;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .card-image {
        height: 200px;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 4rem 0;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-section {
        min-height: 600px;
        height: auto;
        padding: 4rem 0;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-title {
        font-size: 1.5rem; /* Adjust font size for mobile screens */
        margin-bottom: 2rem; /* Adjust spacing below the title */
    }

    .section-title:after {
        width: 60px; /* Adjust underline width */
        height: 3px; /* Adjust underline height */
        bottom: -10px; /* Adjust spacing below the underline */
    }
    
    .grid-cols-2, .grid-cols-3 {
        grid-template-columns: 1fr;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .timeline::before {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item:nth-child(even) {
        left: 0;
    }
    
    .timeline-date {
        width: auto;
        left: 20px !important;
        right: auto !important;
        top: 10px !important;
    }
    
    .timeline-dot {
        left: 18px !important;
    }
    
  
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }

    .hero-title {
        font-size: 1.8rem; /* Adjust font size for mobile screens */
        margin-bottom: 1rem; /* Adjust spacing below the title */
    }

    .hero-title:after {
        width: 80px; /* Adjust underline width */
        height: 3px; /* Adjust underline height */
        bottom: -8px; /* Adjust spacing below the underline */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-section {
        min-height: 500px;
        padding: 3rem 0;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.2rem; /* Further reduce font size for smaller screens */
        margin-bottom: 1.5rem; /* Adjust spacing below the title */
    }

    .section-title:after {
        width: 50px; /* Further adjust underline width */
        height: 2px; /* Further adjust underline height */
    }
    
    .card-image {
        height: 150px;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.5rem; /* Further reduce font size for smaller screens */
        margin-bottom: 0.8rem; /* Adjust spacing below the title */
    }

    .hero-title:after {
        width: 60px; /* Further adjust underline width */
        height: 2px; /* Further adjust underline height */
    }
}


    /* General Styles */
    body {
        font-family: 'Montserrat', sans-serif;
        line-height: 1.6;
        color: #333;
        margin: 0;
        padding: 0;
    }

    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* Animated Gradient Heading Styles */
    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        display: inline-block;
        background: linear-gradient(90deg, #65b343, #106faf, #65b343);
        background-size: 300% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        padding-bottom: 15px;
        animation: gradientShift 8s ease infinite;
    }

    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #106faf, #65b343);
        border-radius: 2px;
        animation: gradientShift 8s ease infinite;
    }

    .hero-title {
      
        margin-bottom: 1.5rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        background: linear-gradient(90deg, #ffffff, #d1f3ff, #ffffff);
        background-size: 300% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
        position: relative;
        padding-bottom: 15px;
        animation: gradientShift 6s ease infinite;
    }

    .hero-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #ffffff, #d1f3ff, #ffffff);
        background-size: 300% 100%;
        border-radius: 2px;
        animation: gradientShift 6s ease infinite;
    }

    .card-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(90deg, #106faf, #65b343, #106faf);
        background-size: 300% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
        padding-bottom: 8px;
        position: relative;
        animation: gradientShift 5s ease infinite;
    }

    .card-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #106faf, #65b343, #106faf);
        background-size: 300% 100%;
        border-radius: 2px;
        animation: gradientShift 5s ease infinite;
    }

    /* Timeline Title Gradient */
    .timeline-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        background: linear-gradient(90deg, #106faf, #65b343, #106faf);
        background-size: 300% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        display: inline-block;
        animation: gradientShift 5s ease infinite;
    }

    /* CTA Title Gradient */
    .cta-title {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 1.5rem;
        background: linear-gradient(90deg, #ffffff, #d1f3ff, #ffffff);
        background-size: 300% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        position: relative;
        padding-bottom: 15px;
        animation: gradientShift 6s ease infinite;
    }

    .cta-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, #ffffff, #d1f3ff, #ffffff);
        background-size: 300% 100%;
        border-radius: 2px;
        animation: gradientShift 6s ease infinite;
    }

    /* Gradient Shift Animation */
    @keyframes gradientShift {
        0% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
        100% { background-position: 0% 50%; }
    }

    /* Hover Animation for Card Titles */
    .card-title:hover {
        animation: gradientShift 2s ease infinite, pulseScale 1s ease;
    }

    @keyframes pulseScale {
        0% { transform: scale(1); }
        50% { transform: scale(1.05); }
        100% { transform: scale(1); }
    }

 

    /* Responsive Adjustments */

    /* Tablet View */
    @media (max-width: 1024px) {
        .container {
            padding: 0 1.5rem;
        }

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }

        .section-title:after {
            width: 60px;
            height: 3px;
        }

        .hero-title {
            font-size: clamp(1.8rem, 5vw, 3rem);
        }

        .hero-subtitle {
            font-size: 1rem;
            max-width: 90%;
        }

        .grid {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        .card {
            margin-bottom: 2rem;
        }

      
       
        .image-gallery {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
    }

    /* Mobile View */
    @media (max-width: 768px) {
        .container {
            padding: 0 1rem;
        }

        .section-title {
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .section-title:after {
            width: 50px;
            height: 2px;
        }

        .hero-title {
            font-size: clamp(1.5rem, 6vw, 2.5rem);
        }

        .hero-subtitle {
            font-size: 0.9rem;
            max-width: 100%;
        }

        .grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .card {
            margin-bottom: 1.5rem;
        }

   

        .image-gallery {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 1rem;
            padding-bottom: 1rem;
        }

        .gallery-item {
            flex: 0 0 80%;
            scroll-snap-align: start;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
    }

    /* Small Mobile View */
    @media (max-width: 480px) {
        .section-title {
            font-size: 1.8rem;
            margin-bottom: 3rem;
        }

        .section-title:after {
            width: 40px;
            height: 2px;
        }

        .hero-title {
            font-size: clamp(1.2rem, 7vw, 2rem);
        }

        .hero-subtitle {
            font-size: 0.8rem;
        }

    

        

        .image-gallery {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 0.5rem;
            padding-bottom: 0.5rem;
        }

        .gallery-item {
            flex: 0 0 90%;
            scroll-snap-align: start;
        }
    }

/* New Hero Banner Styles */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 1200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(135deg, #0d431a 0%, #106faf 100%), url('Image/Intact Website Shots/WOW01018.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    isolation: isolate;
}

/* Window Grid Background */
.window-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.grid-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: meshMove 40s linear infinite;
}

.grid-panes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    position: absolute;
    width: 100%;
    height: 100%;
}

.pane {
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(168, 216, 255, 0.03);
    margin: 10px;
    opacity: 0;
    transform: scale(0.9);
    animation: paneFadeIn 1s var(--delay) forwards;
}

/* Window Mockups */
.window-mockups {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.window-mockup {
    position: absolute;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    overflow: hidden;
}

.mockup-1 {
    width: 300px;
    height: 450px;
    top: 15%;
    right: 10%;
    animation: float 8s ease-in-out infinite;
}

.mockup-2 {
    width: 400px;
    height: 300px;
    bottom: 15%;
    left: 10%;
    animation: float 10s ease-in-out 2s infinite;
}

.window-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: #f5f5f5;
    border: 8px solid #106faf;
    box-sizing: border-box;
}

.sash {
    position: absolute;
    background: rgba(255,255,255,0.9);
    border: 1px solid #ddd;
}

.mockup-1 .left {
    width: 45%;
    height: 90%;
    top: 5%;
    left: 5%;
}

.mockup-1 .right {
    width: 45%;
    height: 90%;
    top: 5%;
    right: 5%;
}

.mockup-2 .sliding {
    width: 90%;
    height: 45%;
    bottom: 5%;
    left: 5%;
    animation: windowSlide 4s ease-in-out infinite;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.title-line {
    display: block;
    margin: 0.5rem 0;
}

.highlight {
    background: linear-gradient(90deg, #65b343, #a8d8ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: gradientShift 6s ease infinite;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    max-width: 700px;
    margin: 0 auto 2rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    font-weight: 300;
}

/* Buttons */


/* Scroll Indicator */

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 13px;
    margin-bottom: 0.5rem;
    position: relative;
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    animation: scrollWheel 2s infinite;
}



/* Animations */
@keyframes meshMove {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

@keyframes paneFadeIn {
    to { opacity: 1; transform: scale(1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

@keyframes windowSlide {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-50px); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes scrollWheel {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .mockup-1, .mockup-2 {
        display: none;
    }
    
    .hero-content {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(1.8rem, 8vw, 3rem);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-banner {
            position: relative;
    height: 100vh;
    min-height: 350px;
    max-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #65b343 0%, #106faf 100%);
    isolation: isolate;
    }
    
    
    .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .pane {
        margin: 5px;
    }
}
