



/* Hero Section */
.hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--black);
    font-weight: 700;
}

.highlight {
    /* or */
    color: #e63946; /* A nicer red tone */
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-gray);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    padding-top: 15px;
}

.primary-btn {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 12px 34px;
    padding-top: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 12px;
}

.primary-btn:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
}

.primary-btn svg {
    width: 18px;
    height: 18px;
}

.secondary-btn {
    background: var(--white);
    color: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.secondary-btn:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 30px 0;
    text-align: center;
    padding-bottom: 10px;
}

.stat-item {
    padding: 15px;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 5px;
    font-weight: 700;
    line-height: 1;
}

.stat-item p {
    color: var(--dark-gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Hero Card */
.hero-card {
    flex: 1;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    max-width: 450px;
}

.hero-card {
    /* Mobile styles */
    margin-top: 0;
    position: relative;
    top: -10px;
    

}

@media (min-width: 768px) {
    .hero-card {
        /* Desktop positioning */
        margin-top: -50px;
        top: -40px;
    }
}

.stats-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.stat-item h2 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-item p {
    color: var(--dark-gray);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Responsive breakpoints */
@media (max-width: 900px) {
    .stat-item {
        flex: 1 1 calc(50% - 20px); /* 2 items per row on tablets */
    }
}

@media (max-width: 600px) {
    .stats-container {
        gap: 12px;
    }
    .stat-item {
        flex: 1 1 100%; /* 1 item per row on mobile */
        min-width: 0;
        padding: 15px 10px;
    }
}
.card-header {
    background: var(--off-white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--light-gray);
}

.card-header h3 {
    font-size: 1.2rem;
    color: var(--dark-gray);
}

.live-demo {
    background: var(--light-blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.card-content {
    padding: 30px;
}

.card-content p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.chart-placeholder {
    height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
}

.bar {
    width: 40px;
    height: 100px;
    background: var(--light-gray);
    border-radius: 4px;
    position: relative;
}

.bar.tall {
    height: 160px;
    background: var(--accent-gold);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.why-haegl {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}
.achievements {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--off-white);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    color: var(--white);
    width: 30px;
    height: 30px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--dark-gray);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--dark-gray);
}

.step-connector {
    height: 2px;
    background: var(--medium-gray);
    flex: 1;
    margin: 0 15px;
    position: relative;
    top: -30px;
}

/* Clients Section */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.client-logo {
    background: var(--white);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.client-logo:hover {
    transform: scale(1.05);
}

.client-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(0%);
    transition: filter 0.3s;
}



.client-testimonials {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary-red);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -15px;
}

.client-name {
    font-weight: 600;
    color: var(--dark-gray);
}

.client-position {
    color: var(--dark-gray);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #cbcbcb, #f5f7fa);
    position: relative;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .primary-btn {
    background-color: var(--white);
    color: var(--primary-red);
    font-weight: 600;
}

.cta .primary-btn:hover {
    background-color: var(--off-white);
}/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #cbcbcb, #f5f7fa);
    position: relative;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .primary-btn {
    background-color: var(--white);
    color: var(--primary-red);
    font-weight: 600;
}

.cta .primary-btn:hover {
    background-color: var(--off-white);
}


/* Footer */
footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 72px;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #383131;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    text-decoration: none;
    color: rgb(15 0 0);
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #2e0404;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: var(--accent-gold);
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-card {
        max-width: 100%;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
        top: 0;
    }
}

@media (max-width: 768px) {
    .main-nav, .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 2.2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
        
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 30px;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        margin-top: 20px;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        flex-direction: column;
    }

    .hero-card {
        max-width: 100%;
    }

    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
        top: 0;
    }
}

@media (max-width: 768px) {
    .main-nav, .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    h1 {
        font-size: 2.2rem;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
        
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        margin-top: 30px;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-social {
        margin-top: 20px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 0.8s ease forwards;
}
.slider {
    position: relative;
    width: 100%;
    max-width: 900px;
    overflow: hidden;
}

.slide {
    display: none;
    animation: fade 1s ease-in-out;
}

.slide.active {
    display: block;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}


 /* Product Slider Styles */
 .product-slider {
            flex: 1;
            max-width: 450px;
            position: relative;
        }

        .product-slide {
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .product-slide.active {
            display: block;
            opacity: 1;
        }

        .card-header {
            background: var(--off-white);
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid var(--light-gray);
        }

        .card-header h3 {
            font-size: 1.2rem;
            color: var(--dark-gray);
        }

        .live-demo {
            background: var(--primary-blue);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .card-content {
            padding: 30px;
        }

        .card-content p {
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        /* Product-specific content styles */
        .product-content {
            height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        /* Gait Analysis (Pressure Mat) */
  /* Gait Analysis (Pressure Mat) */
  .gait-analysis-display {
            height: 230px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            background: linear-gradient(to bottom, #f5f7fa, #e4e7eb);
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 10px;
        }
        
        .foot-pressure-map {
            display: flex;
            justify-content: center;
            gap: 20px;
            height: 140px;
            margin-top: 0;
        }
        
        .foot {
            position: relative;
            width: 70px;
            height: 140px;
            background: rgba(240, 240, 240, 0.8);
            border-radius: 40% 40% 50% 50%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .left-foot {
            transform: rotate(-5deg);
            box-shadow: inset 0 0 15px rgba(230, 57, 70, 0.3);
        }
        
        .right-foot {
            transform: rotate(5deg);
            box-shadow: inset 0 0 10px rgba(230, 57, 70, 0.1);
        }
        
        .pressure-points {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .pressure-point {
            position: absolute;
            width: 15px;
            height: 15px;
            background: radial-gradient(circle, rgba(230, 57, 70, 1) 0%, rgba(230, 57, 70, 0) 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }
        
        .pressure-point.high {
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, rgba(230, 57, 70, 1) 0%, rgba(230, 57, 70, 0.3) 70%);
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% {
                transform: translate(-50%, -50%) scale(1);
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
            }
        }
        
        .foot-label {
            position: absolute;
            top: 5px;
            font-weight: bold;
            font-size: 14px;
            color: var(--dark-gray);
        }
        
        .pressure-value {
            position: absolute;
            bottom: 10px;
            font-weight: bold;
            font-size: 14px;
            color: var(--primary-red);
        }
        
        .gait-metrics {
            display: flex;
            justify-content: space-around;
            margin-top: 15px;
        }
        
        .metric {
            text-align: center;
        }
        
        .metric-value {
            font-weight: bold;
            font-size: 16px;
            color: var(--light-blue);
        }
        
        .metric-label {
            font-size: 12px;
            color: var(--dark-gray);
            margin-top: 10px;
        }
        /* Enhanced Motion Mentor Arcade */
        .motion-display {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .game-screen {
            width: 280px;
            height: 160px;
            background: linear-gradient(to bottom, #2c3e50, #1a2530);
            border-radius: 8px;
            position: relative;
            margin: 10px 0;
            overflow: hidden;
            border: 3px solid #34495e;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.1);
        }

        .game-platform {
            position: absolute;
            width: 100%;
            height: 20px;
            bottom: 0;
            background: linear-gradient(to bottom, #7f8c8d, #95a5a6);
        }

        .game-character {
            position: absolute;
            width: 20px;
            height: 40px;
            bottom: 20px;
            left: 30%;
            animation: characterMove 4s infinite ease-in-out;
        }

        .character-body {
            position: absolute;
            width: 20px;
            height: 30px;
            background-color: #f1c40f;
            border-radius: 10px 10px 0 0;
            bottom: 0;
        }

        .character-head {
            position: absolute;
            width: 24px;
            height: 24px;
            background-color: #f39c12;
            border-radius: 50%;
            bottom: 25px;
            left: -2px;
        }

        .character-arm {
            position: absolute;
            width: 8px;
            height: 20px;
            background-color: #f39c12;
            border-radius: 4px;
        }

        .character-arm.left {
            transform-origin: top center;
            transform: rotate(-30deg);
            left: -5px;
            top: 5px;
            animation: armSwing 1s infinite alternate;
        }

        .character-arm.right {
            transform-origin: top center;
            transform: rotate(30deg);
            right: -5px;
            top: 5px;
            animation: armSwing 1s infinite alternate-reverse;
        }

        .character-leg {
            position: absolute;
            width: 8px;
            height: 15px;
            background-color: #e67e22;
            border-radius: 0 0 4px 4px;
            bottom: -15px;
        }

        .character-leg.left {
            left: 2px;
            animation: legMove 0.5s infinite alternate;
        }

        .character-leg.right {
            right: 2px;
            animation: legMove 0.5s infinite alternate-reverse;
        }

        .game-obstacle {
            position: absolute;
            width: 30px;
            height: 30px;
            bottom: 20px;
            right: -30px;
            animation: obstacleMove 3s infinite linear;
        }

        .obstacle-body {
            position: absolute;
            width: 30px;
            height: 30px;
            background-color: #e74c3c;
            border-radius: 5px;
            transform: rotate(45deg);
        }

        .obstacle-eye {
            position: absolute;
            width: 8px;
            height: 8px;
            background-color: white;
            border-radius: 50%;
            top: 8px;
            left: 8px;
        }

        .obstacle-eye::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: black;
            border-radius: 50%;
            top: 2px;
            left: 2px;
        }

        .game-score {
            position: absolute;
            top: 10px;
            right: 10px;
            color: white;
            font-size: 14px;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        }

        .game-health {
            position: absolute;
            top: 10px;
            left: 10px;
            display: flex;
            gap: 5px;
        }

        .health-point {
            width: 15px;
            height: 15px;
            background-color: #e74c3c;
            border-radius: 50%;
            box-shadow: 0 0 5px rgba(231, 76, 60, 0.7);
        }

        .game-particles {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: rgba(255, 255, 255, 0.7);
            border-radius: 50%;
        }

        .particle:nth-child(1) {
            top: 20%;
            left: 10%;
            animation: particleFloat 8s infinite linear;
        }

        .particle:nth-child(2) {
            top: 50%;
            left: 30%;
            animation: particleFloat 12s infinite linear;
        }

        .particle:nth-child(3) {
            top: 30%;
            left: 70%;
            animation: particleFloat 10s infinite linear;
        }

        .particle:nth-child(4) {
            top: 70%;
            left: 40%;
            animation: particleFloat 9s infinite linear;
        }

        .particle:nth-child(5) {
            top: 60%;
            left: 80%;
            animation: particleFloat 11s infinite linear;
        }

        .game-stats {
            display: flex;
            justify-content: space-around;
            width: 100%;
            margin-top: 15px;
            background: rgba(236, 240, 241, 0.1);
            border-radius: 8px;
            padding: 10px;
        }

        .game-stat {
            text-align: center;
            position: relative;
        }

        .game-stat::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 50%;
            transform: translateY(-50%);
            height: 70%;
            width: 1px;
            background-color: var(--light-gray);
        }

        .game-stat:last-child::after {
            display: none;
        }

        .stat-value {
            font-weight: bold;
            font-size: 18px;
            color: var(--primary-blue);
        }

        .stat-label {
            font-size: 12px;
            color: var(--dark-gray);
            margin-top: 5px;
        }

        /* Enhanced Weather Station */
        .weather-display {
            background: linear-gradient(to bottom, #f5f7fa, #e4e7eb);
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 10px;
        }

        .weather-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .weather-location {
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-gray);
        }

        .weather-time {
            font-size: 12px;
            color: var(--dark-gray);
            opacity: 0.8;
        }

        .weather-main {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .weather-temp {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .temp-value {
            font-size: 36px;
            font-weight: 700;
            color: var(--primary-blue);
            line-height: 1;
            margin-bottom: 5px;
        }

        .temp-unit {
            font-size: 16px;
            position: relative;
            top: -15px;
        }

        .temp-feel {
            font-size: 12px;
            color: var(--dark-gray);
        }

        .weather-icon-large {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            position: relative;
        }

        .weather-icon-large::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: -1;
        }

        .weather-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
        }

        .weather-metric {
            background: rgba(255, 255, 255, 0.7);
            border-radius: 8px;
            padding: 10px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .weather-metric:hover {
            transform: translateY(-2px);
        }

        .weather-icon {
            font-size: 20px;
            margin-bottom: 5px;
            color: var(--primary-blue);
        }

        .weather-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--dark-gray);
            margin-bottom: 2px;
        }

        .weather-label {
            font-size: 11px;
            color: var(--dark-gray);
            opacity: 0.8;
        }

        /* Enhanced Solar Tunnel Dryer */
        .dryer-display {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            background: linear-gradient(to bottom, #f5f7fa, #e4e7eb);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 10px;
        }

        .dryer-header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .dryer-status {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .status-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--success-green);
            animation: blink 2s infinite;
        }

        .status-text {
            font-size: 12px;
            font-weight: 600;
            color: var(--dark-gray);
        }

        .dryer-mode {
            font-size: 12px;
            color: var(--primary-blue);
            font-weight: 600;
            padding: 3px 8px;
            background-color: rgba(69, 123, 157, 0.1);
            border-radius: 4px;
        }

        .temperature-container {
            position: relative;
            width: 200px;
            height: 100px;
            margin-bottom: 15px;
        }

        .temperature-gauge {
            width: 200px;
            height: 100px;
            background: conic-gradient(
                from 180deg,
                #3498db 0deg,
                #3498db 60deg,
                #f1c40f 60deg,
                #f1c40f 120deg,
                #e74c3c 120deg,
                #e74c3c 180deg
            );
            border-radius: 100px 100px 0 0;
            position: relative;
            overflow: hidden;
        }

        .temperature-gauge::before {
            content: '';
            position: absolute;
            width: 180px;
            height: 90px;
            top: 5px;
            left: 10px;
            background: conic-gradient(
                from 180deg,
                rgba(255, 255, 255, 0.15) 0deg,
                rgba(255, 255, 255, 0.15) 60deg,
                rgba(255, 255, 255, 0.15) 60deg,
                rgba(255, 255, 255, 0.15) 120deg,
                rgba(255, 255, 255, 0.15) 120deg,
                rgba(255, 255, 255, 0.15) 180deg
            );
            border-radius: 90px 90px 0 0;
        }

        .temperature-marks {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .temperature-mark {
            position: absolute;
            width: 2px;
            height: 10px;
            background-color: rgba(255, 255, 255, 0.7);
            bottom: 0;
            transform-origin: bottom center;
        }

        .temperature-mark:nth-child(1) { transform: rotate(0deg) translateY(-90px); }
        .temperature-mark:nth-child(2) { transform: rotate(30deg) translateY(-90px); }
        .temperature-mark:nth-child(3) { transform: rotate(60deg) translateY(-90px); }
        .temperature-mark:nth-child(4) { transform: rotate(90deg) translateY(-90px); }
        .temperature-mark:nth-child(5) { transform: rotate(120deg) translateY(-90px); }
        .temperature-mark:nth-child(6) { transform: rotate(150deg) translateY(-90px); }
        .temperature-mark:nth-child(7) { transform: rotate(180deg) translateY(-90px); }

        .temperature-labels {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .temperature-label {
            position: absolute;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.9);
            transform-origin: bottom center;
        }

        .temperature-label:nth-child(1) { transform: rotate(0deg) translateY(-75px) rotate(0deg); left: 10px; }
        .temperature-label:nth-child(2) { transform: rotate(60deg) translateY(-75px) rotate(-60deg); }
        .temperature-label:nth-child(3) { transform: rotate(120deg) translateY(-75px) rotate(-120deg); }
        .temperature-label:nth-child(4) { transform: rotate(180deg) translateY(-75px) rotate(-180deg); right: 10px; }

        .temperature-needle {
            position: absolute;
            bottom: 0;
            left: 50%;
            height: 90px;
            width: 4px;
            background: linear-gradient(to top, #212529, #495057);
            transform-origin: bottom center;
            transform: rotate(90deg);
            transition: transform 1s ease;
            z-index: 10;
        }

        .temperature-needle::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #212529;
            bottom: -6px;
            left: -4px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
        }

        .temperature-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary-red);
            margin-top: 5px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
        }

        .dryer-metrics {
            display: flex;
            justify-content: space-around;
            width: 100%;
            margin-top: 10px;
        }

        .dryer-metric {
            text-align: center;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 8px;
            padding: 8px 12px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .dryer-metric-value {
            font-size: 16px;
            font-weight: 600;
            color: var(--primary-blue);
        }

        .dryer-metric-label {
            font-size: 11px;
            color: var(--dark-gray);
            margin-top: 2px;
        }

        /* Enhanced Autonomous Drone */
        .drone-display {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            background: linear-gradient(to bottom, #f5f7fa, #e4e7eb);
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-top: 10px;
        }

        .drone-header {
            width: 100%;
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .drone-status {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .drone-status-indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--success-green);
            animation: blink 2s infinite;
        }

        .drone-status-text {
            font-size: 12px;
            font-weight: 600;
            color: var(--dark-gray);
        }

        .drone-battery {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .battery-icon {
            width: 20px;
            height: 10px;
            background-color: var(--success-green);
            border-radius: 2px;
            position: relative;
        }

        .battery-icon::after {
            content: '';
            position: absolute;
            width: 2px;
            height: 4px;
            background-color: var(--success-green);
            right: -2px;
            top: 3px;
            border-radius: 0 2px 2px 0;
        }

        .battery-percentage {
            font-size: 12px;
            color: var(--dark-gray);
        }

        .drone-map {
            width: 280px;
            height: 140px;
            background-color: #e9ecef;
            position: relative;
            margin: 10px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .map-grid {
            position: absolute;
            width: 100%;
            height: 100%;
            display: grid;
            grid-template-columns: repeat(10, 1fr);
            grid-template-rows: repeat(5, 1fr);
            opacity: 0.2;
        }

        .grid-cell {
            border: 1px solid #adb5bd;
        }

        .map-features {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .map-feature {
            position: absolute;
            border-radius: 50%;
        }

        .feature-water {
            width: 60px;
            height: 60px;
            background-color: rgba(52, 152, 219, 0.3);
            top: 10px;
            left: 20px;
        }

        .feature-forest {
            width: 40px;
            height: 40px;
            background-color: rgba(46, 204, 113, 0.3);
            bottom: 15px;
            right: 30px;
        }

        .feature-field {
            width: 100px;
            height: 70px;
            background-color: rgba(241, 196, 15, 0.2);
            bottom: 20px;
            left: 50px;
            border-radius: 5px;
        }

        .field-rows {
            position: absolute;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-around;
        }

        .field-row {
            height: 2px;
            background-color: rgba(46, 204, 113, 0.5);
        }

        .drone-path {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .path-line {
            position: absolute;
            width: 180px;
            height: 2px;
            background-color: rgba(231, 76, 60, 0.5);
            top: 70px;
            left: 50px;
            transform-origin: left center;
            transform: rotate(-10deg);
        }

        .path-line::before, .path-line::after {
            content: '';
            position: absolute;
            width: 4px;
            height: 4px;
            background-color: rgba(231, 76, 60, 0.8);
            border-radius: 50%;
            top: -1px;
        }

        .path-line::before {
            left: 0;
        }

        .path-line::after {
            right: 0;
        }

        .drone-position {
            position: absolute;
            width: 16px;
            height: 16px;
            background-color: var(--primary-red);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            animation: droneFlight 8s infinite linear;
            box-shadow: 0 0 10px rgba(231, 76, 60, 0.7);
            z-index: 10;
        }

        .drone-position::before {
            content: '';
            position: absolute;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(231, 76, 60, 0.3) 0%, rgba(231, 76, 60, 0) 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse 2s infinite;
        }

        .drone-shadow {
            position: absolute;
            width: 20px;
            height: 6px;
            background-color: rgba(0, 0, 0, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            filter: blur(2px);
            animation: droneShadow 8s infinite linear;
        }

        .crop-health {
            display: flex;
            justify-content: space-around;
            width: 100%;
            margin-top: 10px;
        }

        .health-indicator {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 12px;
            color: white;
            position: relative;
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        }

        .health-indicator::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            top: 0;
            left: 0;
            animation: pulse 2s infinite;
        }

        .health-good {
            background: linear-gradient(to bottom right, #2ecc71, #27ae60);
        }

        .health-medium {
            background: linear-gradient(to bottom right, #f1c40f, #f39c12);
        }

        .health-poor {
            background: linear-gradient(to bottom right, #e74c3c, #c0392b);
        }

        .health-label {
            position: absolute;
            bottom: -20px;
            font-size: 10px;
            color: var(--dark-gray);
            width: 100%;
            text-align: center;
            
        }

        /* Slider navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .slider-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--medium-gray);
            margin: 0 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .slider-dot.active {
            background-color: var(--primary-red);
        }

        /* Animations */
        @keyframes droneFlight {
            0% { top: 75%; left: 10%; }
            25% { top: 25%; left: 25%; }
            50% { top: 50%; left: 75%; }
            75% { top: 75%; left: 50%; }
            100% { top: 75%; left: 10%; }
        }

        @keyframes droneShadow {
            0% { top: 78%; left: 10%; }
            25% { top: 28%; left: 25%; }
            50% { top: 53%; left: 75%; }
            75% { top: 78%; left: 50%; }
            100% { top: 78%; left: 10%; }
        }

        @keyframes characterMove {
            0% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0); }
        }

        @keyframes armSwing {
            0% { transform: rotate(-30deg); }
            100% { transform: rotate(-10deg); }
        }

        @keyframes legMove {
            0% { transform: translateY(0); }
            100% { transform: translateY(-5px); }
        }

        @keyframes obstacleMove {
            0% { right: -30px; }
            100% { right: 300px; }
        }

        @keyframes particleFloat {
            0% { transform: translate(0, 0); }
            25% { transform: translate(10px, 10px); }
            50% { transform: translate(0, 20px); }
            75% { transform: translate(-10px, 10px); }
            100% { transform: translate(0, 0); }
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        

        :root {
  /* Complementary colors to the HAEGL logo */
  --primary-red: #e63946;
  --dark-red: #9d0208;
  --accent-gold: #ffb703;
  --dark-blue: #1d3557;
  --light-blue: #457b9d;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #adb5bd;
  --dark-gray: #343a40;
  --black: #212529;
  --white: #ffffff;
  /* Adding dark tech color */
  --tech-dark: #0a192f;
  --font-family: Monument Grotesk, Fragment Mono, monospace ;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  background-color: var(--off-white);
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Grid Background with fading pattern */
.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(to right, rgba(233, 236, 239, 0.8) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(233, 236, 239, 0.8) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.7;
    /* Add fading effect to the grid */
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0) 70%);
}

/* Neural network background with dark tech color hint */
.ai-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-color: rgba(10, 25, 47, 0.03); /* Hint of dark tech color */
    overflow: hidden;
}


/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 40px;
}

.main-nav {
  display: flex;
  list-style: none;
}

.main-nav li {
  margin: 0 15px;
}

.main-nav a {
  text-decoration: none;
  color: var(--dark-gray);
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--primary-red);
}

.nav-buttons {
  display: flex;
  align-items: center;
}

.language-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 15px;
}

.login-btn {
  background: none;
  border: none;
  cursor: pointer;
  margin-right: 15px;
  font-weight: 500;
}

.contact-btn {
  background: none;
  border: 1px solid var(--dark-gray);
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  margin-right: 15px;
  font-weight: 500;
  transition: all 0.3s;
}

.contact-btn:hover {
  background-color: var(--light-gray);
}

.demo-btn {
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.demo-btn:hover {
  background: var(--dark-red);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}
/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}



/* Hero Section */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--black);
  font-weight: 700;
}

.highlight {
  color: var(--accent-gold);
}

.subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--dark-gray);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

.primary-btn {
  background: var(--primary-red);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.primary-btn:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.primary-btn svg {
  width: 18px;
  height: 18px;
}

.secondary-btn {
  background: var(--white);
  color: var(--dark-gray);
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.secondary-btn:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.stats-container {
  display: flex;
  gap: 40px;
  margin-top: 20px;
}

.stat-item h2 {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-item p {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

/* Moisture Data Styling */
.moisture-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.moisture-item {
  text-align: center;
}

.moisture-item h4 {
  margin-bottom: 15px;
  color: var(--dark-gray);
  font-weight: 600;
}

.moisture-bars {
  display: flex;
  justify-content: center;
  gap: 20px;
  height: 150px;
  align-items: flex-end;
}

.moisture-bar {
  width: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.moisture-level {
  width: 100%;
  background-color: var(--primary-red);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.moisture-level.final {
  background-color: var(--accent-gold);
}

.moisture-value {
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  position: absolute;
  top: -25px;
}

.moisture-label {
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--dark-gray);
}

.moisture-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.feature-item {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, opacity 0.5s;
  opacity: 0;
  transform: translateY(20px);
}

.feature-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-red);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  color: var(--white);
  width: 30px;
  height: 30px;
}

.feature-item h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--dark-gray);
}

/* How It Works Section */
.how-it-works {
  background-color: var(--white);
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  background: var(--medium-gray);
}

.process-step {
  display: flex;
  margin-bottom: 50px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s, opacity 0.5s;
}

.process-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.process-step:last-child {
  margin-bottom: 0;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  z-index: 2;
  flex-shrink: 0;
}

.step-content {
  padding-left: 30px;
  padding-top: 10px;
}

.step-content h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--dark-gray);
}

/* Benefits Section */
.benefits-content {
  display: flex;
  gap: 50px;
  align-items: center;
}

.benefits-image {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefits-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 20px;
  color: var(--white);
  font-weight: 500;
}

.benefits-list {
  flex: 1;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: transform 0.3s, opacity 0.5s;
}

.benefit-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon svg {
  color: var(--white);
  width: 24px;
  height: 24px;
}

.benefit-text h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--dark-gray);
}

/* Applications Section */
.applications {
  background-color: var(--white);
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.application-item {
  background: var(--off-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s;
  opacity: 0;
  transform: translateY(20px);
}

.application-item.animate {
  opacity: 1;
  transform: translateY(0);
}

.application-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.application-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.application-item h3 {
  padding: 20px 20px 10px;
  font-size: 1.3rem;
  color: var(--dark-gray);
}

.application-item p {
  padding: 0 20px 20px;
  color: var(--dark-gray);
}

/* FAQ Section */
.faq-section {
  background-color: var(--off-white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.1rem;
  color: var(--dark-gray);
  margin: 0;
}

.faq-question svg {
  color: var(--primary-red);
  transition: transform 0.3s;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 1000px;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate {
  animation: fadeIn 0.8s ease forwards;
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }

  .hero-content {
    flex-direction: column;
  }

  .hero-card {
    max-width: 100%;
  }

  .benefits-content {
    flex-direction: column;
  }

  .moisture-data {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .nav-buttons {
    display: none;
  }

  .main-nav.active,
  .nav-buttons.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }

  .main-nav.active li {
    margin: 10px 0;
  }

  .nav-buttons.active button {
    margin: 10px 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  h1 {
    font-size: 2.2rem;
  }

  .stats-container {
    flex-direction: column;
    gap: 20px;
  }

  .features-grid,
  .applications-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-links {
    margin-top: 30px;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    margin-top: 20px;
  }
}

/* Clients Section */
.clients {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  color: #4a5568;
  font-size: 1.1rem;
}

/* Logo Slider */
.logo-slider-container {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
  padding: 10px 0;
}

.logo-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.client-logo {
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  width: 150px;
  height: 100px;
}

.client-logo:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.client-logo img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(100%);
  transition: filter 0.3s;
}



/* Testimonials */
.testimonials-header {
  margin-top: 40px;
}

.client-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
 
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



.quote {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--primary-red);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -15px;
}

.client-name {
  font-weight: 600;
  color: var(--dark-gray);
}

.client-position {
  color: var(--dark-gray);
  opacity: 0.8;
  font-size: 0.9rem;
}


        /* General section spacing */
section {
  padding: 80px 0; /* Consistent padding for all sections */
}

/* Fix for missing section padding */
section:not(.hero):not(.how-it-works):not(.applications):not(.faq-section):not(.cta) {
  padding: 80px 0; /* Add padding to sections that don't have a class with padding */
}



/* Fix section headers spacing */
.section-header {
  margin-bottom: 60px; /* Increase bottom margin for better separation */
}

/* Fix feature grid spacing */
.features-grid {
  gap: 30px;
  margin-top: 40px; /* Add top margin */
}

/* Fix process steps spacing */
.process-steps {
  padding: 40px 0; /* Add padding around the steps */
}

.process-step {
  margin-bottom: 60px; /* Increase spacing between steps */
}

/* Fix benefits section spacing */
.benefits-content {
  gap: 60px; /* Increase gap between image and benefits list */
  margin-top: 40px; /* Add top margin */
}

.benefit-item {
  margin-bottom: 40px; /* Increase spacing between benefit items */
}

/* Fix applications grid spacing */
.applications-grid {
  gap: 30px;
  margin-top: 40px; /* Add top margin */
}



/* Fix FAQ spacing */
.faq-container {
  margin-top: 40px; /* Add top margin */
}

.faq-item {
  margin-bottom: 20px; /* Consistent spacing between FAQ items */
}

