
    :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 {
    color: var(--primary-red);
}

.nav-buttons {
    display: flex;
    align-items: center;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-gray);
  margin: 5px 0;
}
.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;
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--dark-gray);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 100;
  padding: 80px 20px 40px;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  margin-bottom: 40px;
}

.mobile-nav-list li {
  margin-bottom: 20px;
  text-align: center;
}

.mobile-nav-list a {
  text-decoration: none;
  color: var(--dark-gray);
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s;
  display: block;
  padding: 10px 0;
}

.mobile-nav-list a:hover {
  color: var(--primary-red);
}

.mobile-nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-buttons button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
}

/* Media Queries */
@media (max-width: 768px) {
  .main-nav,
  .nav-buttons {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  /* 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);
  }

  /* Prevent scrolling when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-gray);
    margin: 5px 0;
}

.mobile-menu-btn:focus {
  outline: none;
}


/* 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-logo:hover img {
    filter: grayscale(0%);
}

.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);
}

/* 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; }
        }

    .subtitle-container {
    position: relative;
    height: 80px; /* Adjust based on your content */
    margin-bottom: 100px; /* Mobile value */
}

@media (min-width: 768px) {
    .subtitle-container {
        margin-bottom: 60px; /* Desktop value */
        height: 80px; /* Optional: adjust height for desktop if needed */
    }
}
    
    .subtitle {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
    }
    
    .subtitle.active {
        opacity: 1;
    }
    
    .typing-cursor {
        display: inline-block;
        width: 8px;
        height: 1.2rem;
        background-color: var(--accent-gold);
        animation: blink 1s infinite;
        vertical-align: middle;
        margin-left: 2px;
    }
    
    @keyframes blink {
        0%, 100% { opacity: 1; }
        50% { opacity: 0; }
    }
    /* Why HAEGL Section */
.why-haegl-content {
    display: flex;
    gap: 50px;
    align-items: center;
    
}

.why-haegl-text {
    flex: 1;
}

.why-haegl-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-haegl-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;
}

.why-haegl-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.why-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-icon svg {
    color: var(--white);
    width: 24px;
    height: 24px;
}

.why-text h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: var(--dark-gray);
}
/* Responsive styles for Why HAEGL Section */
@media (max-width: 992px) {
    .why-haegl-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-haegl-text, 
    .why-haegl-image {
        flex: none;
        width: 100%;
    }
    
    .why-haegl-image {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .why-haegl-item {
        gap: 15px;
        margin-bottom: 25px;
    }
    
    .why-text h3 {
        font-size: 1.1rem;
    }
    
    .why-icon {
        width: 45px;
        height: 45px;
    }
    
    .why-icon svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 576px) {
    .why-haegl-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        align-items: center;
    }
    
    .why-icon {
        margin-bottom: 5px;
    }
    
    .image-overlay {
        padding: 15px;
        font-size: 0.9rem;
    }
}

        /* Achievements Section */
.achievements-timeline {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    
}

.achievements-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: var(--medium-gray);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
}

.timeline-date {
    position: absolute;
    top: 0;
    width: 80px;
    height: 40px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.timeline-item:nth-child(odd) .timeline-date {
    right: 0;
}

.timeline-item:nth-child(even) .timeline-date {
    left: 0;
}

.timeline-content {
    width: 45%;
    background: var(--off-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--off-white);
    transform: rotate(45deg);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -10px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -10px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.achievements-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.achievement-stat {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 200px;
}

.achievement-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 10px;
}
/* Responsive styles for Achievements Section */
@media (max-width: 992px) {
    .achievements-timeline {
        max-width: 600px;
    }
    
    .achievement-stat {
        min-width: 180px;
    }
    
    .achievement-stat h3 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .achievements-timeline {
        max-width: 100%;
    }
    
    .achievements-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        justify-content: flex-start;
        margin-left: 60px;
    }
    
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }
    
    .timeline-date {
        left: -60px !important;
        right: auto !important;
        top: 10px;
        width: 70px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .timeline-content {
        width: calc(100% - 30px);
    }
    
    .timeline-content::before {
        left: -10px !important;
        right: auto !important;
    }
    
    .achievements-stats {
        gap: 15px;
    }
    
    .achievement-stat {
        min-width: 150px;
        padding: 15px;
    }
    
    .achievement-stat h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .achievements-timeline {
        margin-bottom: 40px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
        margin-left: 50px;
    }
    
    .timeline-date {
        left: -50px !important;
        width: 60px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .timeline-content {
        padding: 15px;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .achievements-stats {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }
    
    .achievement-stat {
        width: 100%;
        max-width: 250px;
    }
}
/* Team Section */
 .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.team-member {
    background: var(--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;
     max-width: 240px;
     
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    /* padding: 12px 16px 4px; */
    font-size: 1.3rem;
    color: var(--dark-gray);
}

.member-position {
    padding: 0 20px;
    color: var(--primary-red);
    font-weight: 500;
     font-size: 0.88rem; 
  margin-bottom: 10px; 
}

.member-bio {
    padding: 0 16px 16px; font-size: 0.88rem;
}

.member-social {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.member-social a {
    color: var(--dark-gray);
    transition: color 0.3s;
}

.member-social a:hover {
    color: var(--primary-red);
}

.team-cta {
    text-align: center;
    margin-top: 40px;
}

.team-cta p {
    margin-bottom: 15px;
    font-size: 1.2rem;
}
 */


/* Sectors Section Styles */
.sectors {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

/* Sector Tabs */
.sector-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

.sector-tab {
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--dark-gray);
}

.sector-tab.active {
    color: var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
}

.sector-tab:hover {
    color: var(--primary-red);
}

/* Sector Content */
.sector-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.sector-content.active {
    display: block;
}

.sector-intro {
    text-align: center;
    margin-bottom: 40px;
}

.sector-intro h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.sector-intro p {
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.product-info p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 14px;
}

.view-details-btn {
    background-color: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.view-details-btn:hover {
    background-color: var(--primary-red);
    color: white;
}

/* Modal Styles */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    max-width: 900px;
    border-radius: 12px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-gray);
    cursor: pointer;
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary-red);
}

.modal-body {
    padding: 30px;
}

/* Product Details */
.product-details {
    display: none;
}

.product-details-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.product-details-header img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.product-details-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.product-tags span {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.product-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--primary-red);
    width: 24px;
    height: 24px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.feature-text p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Product Stats */
.product-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    text-align: center;
}

.stat h4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* CTA Button */
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-red);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.product-cta:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
}

.product-cta svg {
    width: 18px;
    height: 18px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-details-header {
        flex-direction: column;
    }
    
    .product-details-header img {
        width: 100%;
        height: auto;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-tab {
        font-size: 16px;
        padding: 10px 16px;
    }
    
    .modal-content {
        margin: 20px;
    }
}
.discoveries {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.discoveries-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin: 60px 0;
}

.discovery-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.discovery-item.reverse {
    flex-direction: row-reverse;
}

.discovery-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.discovery-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.discovery-item:hover .discovery-image img {
    transform: scale(1.05);
}

.discovery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.discovery-item.reverse .discovery-badge {
    background: var(--accent-gold);
}

.discovery-content {
    flex: 1;
}

.discovery-content h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.discovery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.discovery-tags span {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.discovery-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.discovery-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--primary-red);
    width: 20px;
    height: 20px;
}

.discovery-item.reverse .feature-icon svg {
    color: var(--accent-gold);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

.discovery-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.discovery-item.reverse .stat h4 {
    color: var(--accent-gold);
}

.stat p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.discovery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
}

.discovery-item.reverse .discovery-link {
    color: var(--accent-gold);
}

.discovery-link:hover {
    gap: 12px;
}

.discoveries-cta {
    text-align: center;
    background: var(--off-white);
    padding: 50px;
    border-radius: 12px;
    margin-top: 60px;
}

.discoveries-cta h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.discoveries-cta p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .discovery-item, 
    .discovery-item.reverse {
        flex-direction: column;
    }
    
    .discovery-image {
        max-width: 100%;
    }
    
    .discovery-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .discoveries {
        padding: 60px 0;
    }
    
    .discovery-content h3 {
        font-size: 1.6rem;
    }
    
    .discovery-stats {
        flex-wrap: wrap;
    }
    
    .discoveries-cta {
        padding: 30px 20px;
    }
    
    .discoveries-cta h3 {
        font-size: 1.5rem;
    }
}


/* Discoveries Section Styles */
/* Sectors Section Styles */
.sectors {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

/* Sector Tabs */
.sector-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--light-gray);
}

.sector-tab {
    padding: 12px 24px;
    font-size: 18px;
    font-weight: 600;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--dark-gray);
}

.sector-tab.active {
    color: var(--primary-red);
    border-bottom: 3px solid var(--primary-red);
}

.sector-tab:hover {
    color: var(--primary-red);
}

/* Sector Content */
.sector-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.sector-content.active {
    display: block;
}

.sector-intro {
    text-align: center;
    margin-bottom: 40px;
}

.sector-intro h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.sector-intro p {
    font-size: 16px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-red);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-gray);
}

.product-info p {
    color: var(--dark-gray);
    margin-bottom: 20px;
    font-size: 14px;
}

.view-details-btn {
    background-color: transparent;
    color: var(--primary-red);
    border: 1px solid var(--primary-red);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.view-details-btn:hover {
    background-color: var(--primary-red);
    color: white;
}

/* Modal Styles */
.product-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    overflow-y: auto;
}

.modal-content {
    background-color: white;
    margin: 50px auto;
    max-width: 900px;
    border-radius: 12px;
    position: relative;
    animation: modalFadeIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--dark-gray);
    cursor: pointer;
    z-index: 10;
}

.close-modal:hover {
    color: var(--primary-red);
}

.modal-body {
    padding: 30px;
}

/* Product Details */
.product-details {
    display: none;
}

.product-details-header {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.product-details-header img {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.product-details-header h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-gray);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.product-tags span {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.product-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

/* Product Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--primary-red);
    width: 24px;
    height: 24px;
}

.feature-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.feature-text p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* Product Stats */
.product-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
    text-align: center;
}

.stat h4 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.stat p {
    font-size: 14px;
    color: var(--dark-gray);
}

/* CTA Button */
.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--primary-red);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.product-cta:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
}

.product-cta svg {
    width: 18px;
    height: 18px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-details-header {
        flex-direction: column;
    }
    
    .product-details-header img {
        width: 100%;
        height: auto;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .product-stats {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-tab {
        font-size: 16px;
        padding: 10px 16px;
    }
    
    .modal-content {
        margin: 20px;
    }
}
.discoveries {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.discoveries-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin: 60px 0;
}

.discovery-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

.discovery-item.reverse {
    flex-direction: row-reverse;
}

.discovery-image {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}

.discovery-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.discovery-item:hover .discovery-image img {
    transform: scale(1.05);
}

.discovery-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.discovery-item.reverse .discovery-badge {
    background: var(--accent-gold);
}

.discovery-content {
    flex: 1;
}

.discovery-content h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.discovery-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center; /* Added line to center the span tags */
}

.discovery-tags span {
    background: var(--light-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}


.discovery-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--dark-gray);
}

.discovery-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: var(--primary-red);
    width: 20px;
    height: 20px;
}

.discovery-item.reverse .feature-icon svg {
    color: var(--accent-gold);
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-gray);
}

.feature-text p {
    font-size: 0.9rem;
    color: var(--dark-gray);
    opacity: 0.8;
}

.discovery-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.stat {
    text-align: center;
}

.stat h4 {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 5px;
}

.discovery-item.reverse .stat h4 {
    color: var(--accent-gold);
}

.stat p {
    font-size: 0.9rem;
    color: var(--dark-gray);
}

.discovery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s;
}

.discovery-item.reverse .discovery-link {
    color: var(--accent-gold);
}

.discovery-link:hover {
    gap: 12px;
}

.discoveries-cta {
    text-align: center;
    background: var(--off-white);
    padding: 50px;
    border-radius: 12px;
    margin-top: 60px;
}

.discoveries-cta h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.discoveries-cta p {
    font-size: 1.1rem;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Responsive styles */
@media (max-width: 992px) {
    .discovery-item, 
    .discovery-item.reverse {
        flex-direction: column;
    }
    
    .discovery-image {
        max-width: 100%;
    }
    
    .discovery-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .discoveries {
        padding: 60px 0;
    }
    
    .discovery-content h3 {
        font-size: 1.6rem;
    }
    
    .discovery-stats {
        flex-wrap: wrap;
    }
    
    .discoveries-cta {
        padding: 30px 20px;
    }
    
    .discoveries-cta h3 {
        font-size: 1.5rem;
    }
}
.panel-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none; /* remove underline */
  color: inherit;         /* inherit text color */
}