@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');


/* General */

    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
    }

    .hidden {
    display: none !important;
   }

    header {
      background-color: #222;
      color: #fff;
      padding: 20px;
      text-align: center;
    }
    
    .section {
      padding: 40px;
      text-align: center;
    }
    

  /* Logo Styling */
  .logo a {
    color: #121212;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    flex-grow: 1;
    text-align: left;
  }

  .logo {
    flex-grow: 1;
  }

  .main-container-image {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 600px;
    overflow: hidden;
  }

  .background-image-home {
   width: 100%;
   height: auto;
   display: block;
   filter: brightness(0.8); /* Darken the image */
  }

  .background-gallery-home {
   width: 100%;
   height: auto;
   display: block;
   filter: brightness(0.55); /* Darken the image */
  }


  .h1 {
    font-size: clamp(1rem, 2vw, 2rem);
    color: #121212;
    margin-bottom:0px;
  }

  

   .overlay-text-home {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 0;
     }

  .overlay-text-home h1 {
      margin-bottom: 0.24em; /* reduce from default */
    }

  .subheading {
        font-size: clamp(2.4rem, 3vw, 1.6rem);
        margin-top: 4px;
        margin-bottom: 0;
        color: white;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
      }
    
  .subheading p {
    margin: 0;
  }

  
/* Cards Section */

      .card-section {
        max-width: 1700px;
        margin: 2rem auto 4rem auto;
        padding: 0 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        text-align: center;
      }

      .card {
        background: white;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        padding: 0.6rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        cursor: pointer;
      }

      .card-cta {
      display: inline-block;
      margin-top: 1.2rem;
      padding: 10px 18px;
      font-weight: 600;
      color: white;
      background: linear-gradient(135deg, #22c55e, #16a34a);
      border-radius: 999px;
      text-decoration: none;
    }


      .card img {
      width: 100%;
      object-fit: cover;
      border-radius: 8px;
      aspect-ratio: 1 / 1;
      margin-bottom: 1rem;
      }

      .homepage-section .card img {
       height: 350px;
      }

      

      .card h3 {
        margin: 0 0 0.5rem 0;
        font-size: 1.5rem;
        color: #121212;
      }

      .card p {
        font-size: 1.15rem;
        color: #555;
        line-height: 1.4;
      }

      .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.15);
      }


      /* |||||||||| Download Cards ||||||||||*/
      .card.download-card {
        flex: 0 0 calc((100% - 4rem) / 3);
        border-radius: 18px;
        overflow: hidden;
        background: white;
        box-shadow: 0 12px 40px rgba(0,0,0,0.12);
      }

      .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: none;
        background: rgba(255,255,255,0.85);
        backdrop-filter: blur(6px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.15);
        font-size: 2rem;
        cursor: pointer;
        z-index: 10;
      }

      .carousel-btn.prev {
        left: -24px;
      }

      .carousel-btn.next {
        right: -24px;
      }
      .download-track {
      scroll-snap-type: x mandatory;
      }
      .download-card img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      }

      .card-body {
      padding: 1.5rem;
      }
       .download-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
      }

      .download-card {
        flex: 0 0 calc((100% - 64px) / 3);
      }
      .download-card p {
      font-size: 1rem;
      color: #555;
    }

    .download-carousel {
      position: relative;
      max-width: 1630px;
      margin: 0 auto;
      padding: 3rem 0;
    }

    .carousel-viewport {
      overflow: hidden;
      padding: 0 100px;
      padding-bottom: 20px;
      padding-top: 30px;
      box-sizing: border-box;
      mask-image: linear-gradient(
      to right,
      transparent 0%,
      black 8%,
      black 92%,
      transparent 100%
  );
    }

    .carousel-track {
      display: flex;
      gap: 32px;
      will-change: transform;
    }

    /* Hover */

      .hover-zone {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 380px;           /* MUCH better */
      z-index: 20;
      cursor: pointer;
      }

      .hover-zone.left {
        left: 0;
      }

      .hover-zone.right {
        right: 0;
      }


      .card.download-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
      }

      .card-cta {
      display: inline-block;
      margin-top: 1.2rem;
      padding: 10px 18px;
      font-size: 15px;
      font-weight: 600;
      color: white;
      background: linear-gradient(135deg, #22c55e, #16a34a);
      border-radius: 999px;
      text-decoration: none;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
    }

    .download-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    }

    .download-card p {
      font-size: 1rem;
      color: #555;
      max-width: 420px;
    }

      .download-rail {
      overflow-x: auto;
      padding: 2rem 1rem 4rem;
    }

  .download-track {
    display: flex;
    gap: 2rem;
    padding-left: calc((100vw - 1300px) / 2);
  }





/* #1 Styling  */

    .highlight-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 60px 20px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }

    .showcase-section {
    padding: 120px 24px;
    background:
    radial-gradient(
    circle at top,
    rgba(34, 197, 94, 0.08),
    transparent 60%
    ),
    #f9f9f9;
    }

    .showcase-container {
      max-width: 1500px; /* ← key change */
      margin: 0 auto;
    }

    .showcase-title {
    font-size: clamp(3rem, 5vw, 4.2rem);
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
    }

  .showcase-subtitle {
    max-width: 680px;
    margin: 0 auto 64px;
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 56px;
  }

    .videos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(560px, 1fr));
    gap: 56px;
  }

  .showcase-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 24px;
    box-shadow: 0 30px 90px rgba(0,0,0,0.18);
  }

  .showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.16);
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
    0 20px 60px rgba(0,0,0,0.15),
    0 0 0 1px rgba(255,255,255,0.6);
    min-height: 320px;

  }

  .video-wrapper iframe {
    position: absolute;
    display: block;
    background: #000;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .showcase-label {
    display: block;
    padding: 18px 22px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #16a34a;
    background: linear-gradient(
      to right,
      rgba(34, 197, 94, 0.08),
      transparent
    );
  }

  .showcase-meta {
  padding: 14px 20px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  font-weight: 500;
}

.showcase-meta .tag {
  color: #16a34a;
  font-size: 14px;
}


    .faq-page .highlight-section {
    margin-top: 120px;   /* tweak as needed */
    }

    .faq-wrapper {
    margin-top: 120px;
    }

    .highlight-left {
      position: relative;
      font-size: 500px;
      color: rgb(35, 234, 75);
      padding-right: 50px;
      line-height: 1;
      font-family: 'Poppins', sans-serif;

    }

    .red-underline {
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 50px;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="40"><path d="M0,25 C80,0 160,40 240,20 320,0 400,25 400,25" fill="none" stroke="red" stroke-width="12" stroke-linecap="round"/></svg>') no-repeat center;
      background-size: contain;
    }

    .highlight-right p {
      font-size: 2.75rem;
      max-width: 569px;
      text-align: left;
      color: #121212;
      line-height: 1.37;
      font-weight: 500;
    }

    .highlight-right u {
      text-decoration: underline;
    }



/* Video */

.showcase-container {
  width: 100%;
  max-width: 1200px;
}

.showcase-title {
  text-align: center;
  font-size: 4.2rem;
  margin-bottom: 40px;
  width: 100%;
  font-family: Poppins, sans-serif; 
  font-weight: 600;
  letter-spacing: 4px;
}

.videos {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.video-wrapper {
  flex: 1 1 550px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

/* Performance Section */

.performance-section {
  display: flex;
  flex-direction: column;
  align-items: left;
  padding: 20px 20px;
  background-color: #f9f9f9;
  font-family: Poppins, sans-serif;
  font-weight: 500;
}

.performance-section h2 {
  font-size: 4.5rem;
  margin-bottom: 20px;
  color: #121212;
  padding: 0px 30px;
  align-items: center;
  text-align: center;
}

.performance-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
  padding: 50px 20px;
  font-weight: 500;
}


.performance-container p {
  font-size: 1.5rem;
  color: rgb(39, 39, 39);
  max-width: 800px;
}

.performance-container img {
  width: 100%;
  max-width: 700px;
  flex: 1 1 400px;
  height: auto;
  border-radius: 60% 40% 60% 40% / 45% 55% 45% 55%;
  object-fit: cover;
  margin: 0 auto;
  margin-left: auto;
}
.limegreen {
  color: rgb(35, 234, 75);
}
.red{
  color: red;
}
.cyan{
  color: rgb(7, 105, 166);
}

/* Gallery Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  flex-direction: column;    /* Stack children vertically */
  align-items: center;       /* Center horizontally */
  justify-content: center;   /* Center vertically */
  z-index: 9999;
  padding: 20px;
  overflow: hidden;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(255,255,255,0.2);
  user-select: none;
}

.lightbox .close {
  position: absolute;
  top: 10px;
  right: 50px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}

.lightbox .nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  background: rgba(0, 0, 0, 0.3); /* Optional: a semi-transparent background */
  border: none;
  cursor: pointer;
  padding: 0 15px;
  user-select: none;
  z-index: 10001; /* ensure it's above the image */
}

/* Left arrow */
.lightbox .nav.left {
  left: 10px;  /* small gap from left edge */
}

.lightbox .nav.right {
  right: 35px; /* small gap from right edge */
}

.lightbox-description {
  color: white;
  margin-top: 15px;
  font-size: 0.8rem;
  max-width: 90%;
  text-align: center;
  user-select: none;
}

/* More Details */
.gallery-section .card h3, .gallery-section .card p {
  display: none;
}

/* Only gallery images get 16:9 aspect ratio */
.gallery-section .card img {
  aspect-ratio: 16 / 9;
}

html {
  scroll-behavior: smooth;
}


/* Responsive Design */
  @media (max-width: 768px) {
    .navbar {
      display: grid;
      grid-template-columns: 1fr auto; 
      justify-items: start;
      padding: 20px 5px; /* padding on the right side */
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
    }
    .overlay-text-home{
      white-space: wrap;
    }
    .highlight-left {
      font-size: 350px;
      padding-right: 50px;

    }
    .highlight-right p {
      text-align: center;
      max-width: 600px;
      font-size: 2.3rem;
    }
    .performance-section h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    align-items: center;
   }

  }

  @media (min-width: 769px) {
    .overlay-text-home{
      white-space: nowrap;
    }
  }

@media (max-width: 900px) {
  .card.download-card {
    flex: 0 0 85%;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .videos {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .showcase-container {
    padding: 0 16px;
  }
}
     