/* Global Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Testimonials Section */
/* Testimonials Section Carousel */
.testimonials-section {
  background: #f8f9fa;
  padding: 48px 0 48px 0;
  text-align: center;
}
.testimonials-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 32px;
  color: #222;
  letter-spacing: 0.5px;
}
/* (file content copied from cryonixhome.css; truncated for brevity in patch) */
/* Global Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Testimonials Section */
/* Testimonials Section Carousel */
.testimonials-section {
  background: #f8f9fa;
  padding: 48px 0 48px 0;
  text-align: center;
}
.testimonials-title {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 32px;
  color: #222;
  letter-spacing: 0.5px;
}
.testimonials-carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-left: 25px;
  margin-right: 25px;
  max-width: calc(100vw - 50px);
}
.testimonials-arrow {
  background: #ffffff00;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1rem;
  color: #0071e3;
  /* box-shadow: 0 2px 8px rgba(0,0,0,0.07); */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
/* .testimonials-arrow:hover {
  background: #e3f2fd;
} */
.testimonials-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 0%;
  min-width: 0;
  cursor: grab;
}
.testimonials-cards {
  display: flex;
  gap: 26px;
  transition: all 0.4s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  margin-bottom: 40px;
}
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
  padding: 32px 24px 24px 24px;
  max-width: 320px;
  min-width: 240px;
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
  margin: 12px 4px 12px 4px;
}
.testimonial-card:hover {
  box-shadow: 0px 0px 5px #0071e3;
}
.testimonial-user-icon {
  font-size: 3.2rem;
  color: #0071e3;
  margin-bottom: 16px;
}
.testimonial-comment {
  font-size: 0.8rem;
  color: #333;
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-stars {
  font-size: 1rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 12px;
  margin-top: -5px;
}
.testimonial-stars span {
  color: #ffcc00; /* Gold color for stars */
}
.testimonial-name {
  font-weight: 600;
  color: #222;
  font-size: 0.8rem;
}
.testimonial-profession {
  display: block;
  font-weight: 400;
  color: #666;
  font-size: 0.6rem;
}
@media (max-width: 900px) {
  .testimonials-carousel-wrapper {
    gap: 6px;
  }
  .testimonials-cards {
    gap: 20px;
  }
  .testimonial-card {
    max-width: 90vw;
    min-width: 180px;
    flex: 0 0 260px;
    padding: 24px 12px 18px 12px;
  }
}
@media (max-width: 600px) {
  .testimonials-carousel-wrapper {
    gap: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 0 12px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .testimonials-cards {
    gap: 8px;
    margin-bottom: 18px;
  }
  .testimonials-carousel {
    overflow-x: auto; /* allow horizontal scroll on small screens */
    -webkit-overflow-scrolling: touch;
  }
  .testimonial-card {
    /* make testimonial cards smaller on phones */
    max-width: 72vw;
    min-width: 64vw;
    flex: 0 0 70vw;
    padding: 12px 10px 10px 10px;
    margin: 0 6px;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    background: #fff;
  }
  .testimonials-title {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }
  .testimonials-arrow {
    width: 36px;
    height: 36px;
    background-color: #00000000;
    font-size: 1.1rem;
  }
}
/* Fonts and Base */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* Offset for fixed navbar */
}
body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background: #fafafc;
    padding-top: 64px; /* increased to match taller navbar on desktop */
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px; /* slightly taller on desktop */
    background: #ffffff;
    padding: 0 40px;
    /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04); */
    margin-bottom: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
  }
  
  
  .navbar-logo img {
    height: 24px; /* slightly larger logo for taller navbar */
  }

  /* Logo wrapper to allow overlaying a centered GIF on top of the logo */
  .logo-wrapper {
    position: relative;
    display: inline-block;
    line-height: 0;
  }


  .logo-wrapper .site-logo {
    display: block;
    height: 26px; /* slightly larger site logo on desktop */
  }

  .logo-wrapper .logo-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 72px; /* larger base overlay size (desktop) */
    height: 72px;
    pointer-events: none; /* let clicks pass through to the link */
    mix-blend-mode: normal;
    opacity: 1;
    transform-origin: center center;
    animation: logoPulse 1.9s ease-in-out infinite;
    z-index: 2;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.12));
  }

  @keyframes logoPulse {
    0% { transform: translate(-50%, -50%) scale(1); }
    40% { transform: translate(-50%, -50%) scale(1.08); }
    60% { transform: translate(-50%, -50%) scale(1.28); }
    100% { transform: translate(-50%, -50%) scale(1); }
  }

  /* Ensure GIF scales nicely on small screens */
  @media (max-width: 1024px) {
    .logo-wrapper .site-logo { height: 22px; }
    .logo-wrapper .logo-overlay { width: 36px; height: 36px; }
  }

  @media (max-width: 768px) {
    .logo-wrapper .site-logo { height: 24px; }
    .logo-wrapper .logo-overlay { width: 40px; height: 40px; }
  }

  @media (max-width: 480px) {
    .logo-wrapper .site-logo { height: 20px; }
    .logo-wrapper .logo-overlay { width: 30px; height: 30px; }
  }
  
  .navbar-menu {
    display: flex;
    gap: 32px;
  }
  
  .navbar-menu a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 12px;
  }
  
  .navbar-menu a:hover {
    color: #0071e3;
  }
  
  .navbar-icons {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .get-in-touch-btn {
    background-color: #0071e3;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
  }

  .get-in-touch-btn:hover {
    background-color: #004181;
    color: #ffffff;
    text-decoration: none;
  }
  
  .search-icon {
    font-size: 18px;
    cursor: pointer;
    color: #222;
  }
  
  .lang-dropdown {
    display: flex;
    align-items: center;
    gap: 6px;
  }
  
  .lang-dropdown select {
    border: none;
    background: transparent;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    color: #222;
  }
  
  /* Carousel */
  .carousel {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 0;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 1s ease-in-out;
    width: 500vw; /* 5 slides */
    height: 100%;    
  }
  
  .slide {
    margin-top: 0;
    width: 100vw;
    min-height: 100%;
    max-height: 100%;
    /* height: 100%; */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0px 40px 0px;
  }
  
  .slide-content {
    display: flex;
    justify-content: center;
    height: 90%;
    align-items: center;
    padding: 20px 100px 20px 100px;
  }
  
  .text {
    max-width: 50%;
    font-size: 16px;
    
  }
  
  .text h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: -20px;
  }
  
  .text h1 {
    font-size: 55px;
    font-weight:900;
    margin-bottom: 16px;
    line-height: 1.2;
  }
  
  .text p {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    text-justify: inter-word;

  }
  
  .text button {
    background: #0071e3;
    color: #ffffff;
    border: 1px solid #0071e3;
    padding: 10px 10px;
    border-radius: 0px;
    font-size: 14px;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    width: 120px;
    text-align: center;
  }

  .text button:hover {
    background: #004181;
    color: #ffffff;
    border: 1px solid #004181;
  }

  .spacer {
    width: 10px;
    height: 100px;
  }
  
  .image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Preview Bar */
  .preview-bar {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 48px;
    background: #f3f3f3;
    padding: 28px 0 28px 0;
    margin-bottom: 0;
    border: none;
  }
  
  .preview-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 180px;
  }
  
  .preview-label {
    font-size: 14px;
    /* font-weight: 700; */
    color: #222;
    /* margin-bottom: 2px; */
    margin-left: 1px;
  }
  
  .preview-item::before {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background: #bbb;
    border-radius: 2px;
    margin-bottom: 12px;
    transition: background 0.3s, width 0.3s;
  }
  
  .preview-item.active::before {
    background: #0071e3; 
    width: 100%;
    transition: background 7s, width 7s;
  }
  
  .preview-item.active .preview-label {
    color: #111;
  }

  .preview-item p {
    font-size: 10px;
    margin-top: 4px;
    color: #000000;
    margin-left: 1px;
    /* margin-bottom: 8px; */
    /* padding: 5px; */
  }
  
  /* Section Divider */
  .section-divider {
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 1px;
    margin: 25px 0 25px 0;
  }

  .section-divider-content {
    width: 90%;
    height: 100%;
    background: #bbb;
  }

  .section-divider-sub-content {
    width: 30%;
    height: 100%;
    background: #0071e3;
  }

   /* =============================
     About Section Styles
     ============================= */
     .about-section {
      margin-left: 150px;
      margin-right: 150px;
      margin-top: 25px;
      margin-bottom: 25px;
    }
    
    .about-title {
      margin-top: 10px;
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 15px;
    }
    
    .about-grid {
      display: grid;
      grid-template-columns: 2fr 2fr 2fr 2fr;
      grid-template-rows: auto auto;
      gap: 12px;
      margin-bottom: 20px;
    }
    
    .about-card {
      /* border-radius: 10px; */
      padding: 20px;
      background: #fafafc;
      box-shadow: 0 2px 16px rgba(0,0,0,0.04);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    
    .about-card.edge {
      background: #ddd;
      color: #000000;
      border-top-left-radius: 20px;
      border-bottom-left-radius: 0px;
      border-top-right-radius: 0px;
      border-bottom-right-radius: 0px;
      grid-column: 1 / 3;
      grid-row: 1;
    }
    
    .about-card.vision {
      background: #000000;
      color: #fff;
      border-top-left-radius: 0px;
      border-bottom-left-radius: 0px;
      border-top-right-radius: 20px;
      border-bottom-right-radius: 0px;
      grid-column: 3 / 5;
      grid-row: 1;
    }
    
    .about-card.insights {
      border-radius: 0px;
      background: #0071e3;
      color: #ffffff;
      grid-column: 2 / 4;
      grid-row: 2;
    }
    

    .about-image {
      border-radius: 0px;
      grid-column: 1 / 2;
      grid-row: 2;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .about-grid > .about-image:last-of-type {
      grid-column: 4 / 5;
      grid-row: 2;
    }
    
    .about-image img {
      width: 100%;
      width: 320px;
      height: 100%;
      border-radius: 10px;
      object-fit: cover;
      box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    }

    .about-card h2 {
      font-size: 22px;
      font-weight: 800;
      line-height: 1.5;
      margin: 10px;
    }

    .about-card p {
      font-size: 15px;
      line-height: 1.5;
      margin: 10px;
    }
    
    .about-stats {
      display: flex;
      justify-content: space-between;
      align-items: stretch;
      gap: 0px;
      margin-top: 10px;
      flex-wrap: wrap;
    }
    
    .stat {
      background: #fafafc;
      border-radius: 24px;
      padding: 12px 20px;
      min-width: 120px;
      text-align: center;
      flex: 1 1 160px;
    }
    
    .stat span {
      display: block;
      font-size: 36px;
      font-weight: 800;
      color: #0071e3;
      margin-bottom: 8px;
    }
    
    .stat p {
      font-size: 16px;
      color: #111;
      margin: 0;
    }
    
    /* Client Logos Section */
    .client-logos {
      margin-top: 20px;
      text-align: center;
    }   

    .client-logos-container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 32px;
      padding: 10px 0;
    }
    
    .client-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      background: #fafafc00;
      border-radius: 12px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      width: 140px;
      height: 80px;
      flex-shrink: 0;
    }
    
    .client-logo img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }
    
    .client-logo:hover img {
      filter: grayscale(0%);
    }
    
    @media (max-width: 1200px) {
      .about-section {
        margin-left: 32px;
        margin-right: 32px;
      }
      .about-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
      }
      .about-card.edge, .about-card.vision, .about-card.insights {
        grid-column: auto;
        grid-row: auto;
      }
      .about-image {
        grid-column: auto;
        grid-row: auto;
      }
      .about-stats {
        flex-direction: column;
        gap: 16px;
      }
      
      .client-logos-container {
        gap: 20px;
      }
      
      .client-logo {
        width: 120px;
        height: 70px;
        padding: 12px;
        flex-shrink: 0;
      }
    }
     
  
  /* =============================
     What's New Section Styles
     ============================= */

  .whats-new {
    max-width: 100%;
    margin-top: 0px;
    margin-bottom: 0;
    margin-left: 150px;
    margin-right: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  /* Header Row: Heading and Arrows */
  .whats-new__header-row {
    display: flex;
    height: 100%;
    margin-right: 100px;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
  }

  .whats-new__main-heading {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0;
    padding: 10px 0 10px 0;
  }

  .whats-new__arrows {
    display: flex;
    gap: 12px;
  }

  .whats-new__nav-btn {
    background: #fafafc;
    color: #0071e3;
    border: none;
    font-size: 28px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .whats-new__nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Body Row: Intro and Carousel */
  .whats-new__body-row {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
    margin: 20px 0 0 0;
    min-width: 0;
    padding-right: 0;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
  }

  /* Intro Section */
  .whats-new__intro {
    flex: 1 1 35%;
    min-width: 320px;
    max-width: 420px;
  }

  .whats-new__desc {
    font-size: 16px;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.8;
    text-align: left;
    text-justify: inter-word;

  }

  .whats-new__intro-btn {
    margin-top: 0;
    padding: 10px 22px;
    font-family: 'Manrope', sans-serif;
    background: #fafafc;
    color: #0071e3;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
    border: 1px solid #0071e3;
    font-weight: 500;
    font-size: 14px;
  }

  .whats-new__intro-btn:hover {
    background: #f3f3f3;
  }

  /* Carousel Area */
  .whats-new__carousel-area {
    flex: 1 1 65%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    margin-right: 0;
    padding-right: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    cursor: grab;
    width: 100%;
    box-sizing: border-box;
    /* Hide scrollbar for Chrome, Safari and Opera */
    &::-webkit-scrollbar {
      display: none;
    }
  }

  .whats-new__carousel-area:active {
    cursor: grabbing;
  }

  .whats-new__carousel {
    display: flex;
    gap: 240px;
    padding: 10px 10px 10px 10px;
    min-width: max-content;
    height: 100%;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
    justify-content: flex-end;
  }

  /* Card Styles */
  .whats-new__card {
    background: #fafafc;
    border-radius: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
    width: 320px;
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .whats-new__card:hover {
    box-shadow: 0px 0px 5px #0071e3;
    transition: box-shadow 0.3s ease;

  }

  .whats-new__carousel-area .whats-new__card {
    height: 100%;
  }

  .whats-new__card-img {
    width: 100%;
    height: 200px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
  }

  .whats-new__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .whats-new__card-content {
    padding: 20px;
  }

  /* Card Category text */
  .whats-new__card-category {
    font-size: 12px;
    line-height: 1.5;
    color: #000000;
    font-weight: 600;
    text-align: left;
    margin-bottom: 10px;
  }

  .whats-new__card-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.5;
    padding: 10px 0 10px 0;
    text-align: left;
    margin-bottom: 10px;
  }

  .whats-new__card-desc {
    font-size: 14px;
    color: #000000;
    text-align: left;
    line-height: 1.5;
  }

  /* Responsive Styles */
  @media (max-width: 900px) {
    .whats-new__body-row {
      flex-direction: column;
      gap: 24px;
      width: 100%;
    }
    .whats-new__carousel {
      gap: 12px;
    }
    .whats-new__card {
      width: 90vw;
      max-width: 100vw;
    }
    .whats-new__intro {
      max-width: 100%;
    }
  }

  /* =============================
     Our Solutions Section Styles
     ============================= */
     .our-solutions {
      max-width: 100%;
      margin-top: 0px;
      margin-bottom: 0;
      margin-left: 150px;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    /* Header Row: Heading and Arrows */
    .our-solutions__header-row {
      display: flex;
      height: 100%;
      margin-right: 100px;
      justify-content: space-between;
      align-items: baseline;
      gap: 24px;
    }
  
    .our-solutions__main-heading {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 0;
      padding: 10px 0 10px 0;
    }
  
    .our-solutions__arrows {
      display: flex;
      gap: 12px;
    }
  
    .our-solutions__nav-btn {
      background: #fafafc;
      color: #0071e3;
      border: none;
      font-size: 28px;
      width: 40px;
      height: 40px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .our-solutions__nav-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
  
    /* Body Row: Intro and Carousel */
    .our-solutions__body-row {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: flex-start;
      margin: 20px 0 0 0;
      min-width: 0;
      padding-right: 0;
      margin-right: 0;
      width: 100%;
      box-sizing: border-box;
    }
  
    /* Intro Section */
    .our-solutions__intro {
      flex: 1 1 35%;
      min-width: 320px;
      max-width: 420px;
    }
  
    .our-solutions__desc {
      font-size: 16px;
      margin-top: 30px;
      margin-bottom: 20px;
      font-weight: 400;
      line-height: 1.8;
      text-align: left;
      text-justify: inter-word;
  
    }
  
    .our-solutions__intro-btn {
      margin-top: 0;
      padding: 10px 22px;
      font-family: 'Manrope', sans-serif;
      background: #fafafc;
      color: #0071e3;
      border: none;
      border-radius: 0px;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.2s;
      border: 1px solid #0071e3;
      font-weight: 500;
      font-size: 14px;
    }
  
    .our-solutions__intro-btn:hover {
      background: #f3f3f3;
    }
  
    /* Carousel Area */
    .our-solutions__carousel-area {
      flex: 1 1 65%;
      min-width: 0;
      overflow-x: auto;
      overflow-y: hidden;
      margin-right: 0;
      padding-right: 0;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Hide scrollbar for Firefox */
      cursor: grab;
      width: 100%;
      box-sizing: border-box;
      /* Hide scrollbar for Chrome, Safari and Opera */
      &::-webkit-scrollbar {
        display: none;
      }
    }
  
    .our-solutions__carousel-area:active {
      cursor: grabbing;
    }
  
    .our-solutions__carousel {
      display: flex;
      gap: 24px;
      padding: 10px 10px 10px 10px;
      min-width: max-content;
      height: 100%;
      will-change: transform;
      transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
      justify-content: flex-end;
    }
  
    /* Card Styles */
    .our-solutions__card {
      background: #fafafc;
      border-radius: 8px;
      box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
      width: 320px;
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
  
    .our-solutions__card:hover {
      box-shadow: 0px 0px 5px #0071e3;
      transition: box-shadow 0.3s ease;
  
    }
  
    .our-solutions__carousel-area .our-solutions__card {
      height: 100%;
    }
  
    .our-solutions__card-img {
      width: 100%;
      height: 200px;
      background: #eee;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }
  
    .our-solutions__card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .our-solutions__card-content {
      padding: 20px;
    }
  
    /* Card Category text */
    .our-solutions__card-category {
      font-size: 12px;
      line-height: 1.5;
      color: #000000;
      font-weight: 600;
      text-align: left;
      margin-bottom: 10px;
    }
  
    .our-solutions__card-title {
      font-size: 20px;
      font-weight: 800;
      line-height: 1.5;
      padding: 10px 0 10px 0;
      text-align: left;
      margin-bottom: 10px;
    }
  
    .our-solutions__card-desc {
      font-size: 14px;
      color: #000000;
      text-align: left;
      line-height: 1.5;
    }
  
    /* Responsive Styles */
    @media (max-width: 900px) {
      .our-solutions__body-row {
        flex-direction: column;
        gap: 24px;
        width: 100%;
      }
      .our-solutions__carousel {
        gap: 12px;
      }
      .our-solutions__card {
        width: 90vw;
        max-width: 100vw;
      }
      .our-solutions__intro {
        max-width: 100%;
      }
    }


    /* =============================
     Services Section Styles
     ============================= */
     .services {
      max-width: 100%;
      margin-top: 0px;
      margin-bottom: 50px;
      margin-left: 150px;
      margin-right: 0;
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 0;
      padding-right: 0;
    }
  
    /* Header Row: Heading and Arrows */
    .services__header-row {
      display: flex;
      height: 100%;
      margin-right: 100px;
      justify-content: space-between;
      align-items: baseline;
      gap: 24px;
    }
  
    .services__main-heading {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 0;
      padding: 10px 0 10px 0;
    }
  
    .services__arrows {
      display: flex;
      gap: 12px;
    }
  
    .services__nav-btn {
      background: #fafafc;
      color: #0071e3;
      border: none;
      font-size: 28px;
      width: 40px;
      height: 40px;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  
    .services__nav-btn:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }
  
    /* Body Row: Intro and Carousel */
    .services__body-row {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: flex-start;
      margin: 20px 0 0 0;
      min-width: 0;
      padding-right: 0;
      margin-right: 0;
      width: 100%;
      box-sizing: border-box;
    }
  
    /* Intro Section */
    .services__intro {
      flex: 1 1 35%;
      min-width: 320px;
      max-width: 420px;
    }
  
    .services__desc {
      font-size: 16px;
      margin-top: 30px;
      margin-bottom: 20px;
      font-weight: 400;
      line-height: 1.8;
      text-align: left;
      text-justify: inter-word;
  
    }
  
    .services__intro-btn {
      margin-top: 0;
      padding: 10px 22px;
      font-family: 'Manrope', sans-serif;
      background: #fafafc;
      color: #0071e3;
      border: none;
      border-radius: 0px;
      cursor: pointer;
      font-size: 16px;
      transition: background 0.2s;
      border: 1px solid #0071e3;
      font-weight: 500;
      font-size: 14px;
    }
  
    .services__intro-btn:hover {
      background: #f3f3f3;
    }
  
    /* Carousel Area */
    .services__carousel-area {
      flex: 1 1 65%;
      min-width: 0;
      overflow-x: auto;
      overflow-y: hidden;
      margin-right: 0;
      padding-right: 0;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none; /* Hide scrollbar for Firefox */
      cursor: grab;
      width: 100%;
      box-sizing: border-box;
      /* Hide scrollbar for Chrome, Safari and Opera */
      &::-webkit-scrollbar {
        display: none;
      }
    }
  
    .services__carousel-area:active {
      cursor: grabbing;
    }
  
    .services__carousel {
      display: flex;
      gap: 24px;
      padding: 10px 10px 10px 10px;
      min-width: max-content;
      height: 100%;
      will-change: transform;
      transition: transform 0.5s cubic-bezier(0.77,0,0.175,1);
      justify-content: flex-end;
    }
  
    /* Card Styles */
    .services__card {
      background: #fafafc;
      border-radius: 8px;
      box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
      width: 320px;
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
  
    .services__card:hover {
      box-shadow: 0px 0px 5px #0071e3;
      transition: box-shadow 0.3s ease;
  
    }
  
    .services__carousel-area .services__card {
      height: 100%;
    }
  
    .services__card-img {
      width: 100%;
      height: 200px;
      background: #eee;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }
  
    .services__card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  
    .services__card-content {
      padding: 20px;
    }
  
    /* Card Category text */
    .services__card-category {
      font-size: 12px;
      line-height: 1.5;
      color: #000000;
      font-weight: 600;
      text-align: left;
      margin-bottom: 10px;
    }
  
    .services__card-title {
      font-size: 20px;
      font-weight: 800;
      line-height: 1.5;
      padding: 10px 0 10px 0;
      text-align: left;
      margin-bottom: 10px;
    }
  
    .services__card-desc {
      font-size: 14px;
      color: #000000;
      text-align: left;
      line-height: 1.5;
    }
  
    /* Responsive Styles */
    @media (max-width: 900px) {
      .services__body-row {
        flex-direction: column;
        gap: 24px;
        width: 100%;
      }
      .services__carousel {
        gap: 12px;
      }
      .services__card {
        width: 90vw;
        max-width: 100vw;
      }
      .services__intro {
        max-width: 100%;
      }
    }


/* =============================
   Site Footer
   ============================= */
.site-footer {
  background-color: #121212;
  color: #ffffff;
  padding: 40px 60px;
  font-family: 'Manrope', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav-links {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}

.footer-nav-links a:hover {
  text-decoration: underline;
}

.footer-core {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo img {
  height: 24px;
  vertical-align: middle;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  color: #ffffff;
  font-size: 20px;
}

.footer-legal {
  border-top: 1px solid #444;
  padding-top: 30px;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-bottom: 20px;
}

.footer-legal-links span,
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 12px;
}

.footer-legal-links a:hover {
  text-decoration: underline;
}

.footer-warning p {
  font-size: 12px;
  color: #a0a0a0;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 30px 20px;
  }

  .footer-nav-links,
  .footer-core,
  .footer-legal-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .footer-socials {
    padding-top: 15px;
  }
}

/* --- Terms Modal Styles --- */
.terms-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.terms-modal-content {
  background: #fff;
  border-radius: 12px;
  max-width: 540px;
  width: 90vw;
  max-height: 80vh;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 32px 28px 24px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.25s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { transform: translateY(40px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.terms-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #222;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.terms-modal-close:hover {
  color: #0071e3;
}
.terms-modal-content h2 {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #0071e3;
}
.terms-modal-scroll {
  overflow-y: auto;
  max-height: 55vh;
  padding-right: 4px;
}
.terms-modal-scroll p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 16px;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .terms-modal-content {
    padding: 18px 8px 12px 8px;
    max-width: 98vw;
  }
  .terms-modal-scroll {
    max-height: 50vh;
  }
}

/* --- Consent Modal Overlay: ensure always on top and disables site --- */
#consent-modal.terms-modal-overlay {
  z-index: 10000;
}
#consent-modal .product-button {
  width: 100%;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 0;
  height: 40px;
  border-radius: 0px;
  border: 1px solid #0071e3;
  font-family: 'Manrope', sans-serif;
  background: #0071e3;
  color: #ffffff;
}
#consent-modal .terms-modal-content {
  text-align: center;
}

/* Toast Notification */
#toast-notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #3d3d3d;
  color: #fff;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  z-index: 1001;
  transform: translateX(120%); /* Start off-screen to the right */
  transition: transform 0.5s ease-in-out, visibility 0s 0.5s;
  visibility: hidden;
  display: flex;
  align-items: center;
}

#toast-notification i {
  margin-right: 8px;
}

#toast-notification.show {
  visibility: visible;
  transform: translateX(0); /* Slide in */
  transition: transform 0.5s ease-in-out;
}

.about-stats p {
  margin-top: 5px;
  font-size: 14px;
  color: #555;
  text-align: center;
}
/* End About Section */

/* Responsive Styles */

/* Base for Mobile Menu */
.hamburger-menu {
  display: none; /* Hidden on desktop */
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none; /* Hidden by default */
  flex-direction: column;
  background: #ffffff;
  position: fixed;
  top: 56px; /* Below navbar */
  left: 0;
  width: 100%;
  padding: 20px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 999;
}

.mobile-menu a {
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-menu a:last-child {
  border-bottom: none;
}

.mobile-menu .get-in-touch-btn {
    margin: 10px 20px;
    text-align: center;
}


/* Tablet and below */
@media (max-width: 1024px) {
  .navbar-menu {
    display: none; /* Hide main menu */
  }

  .hamburger-menu {
    display: block; /* Show hamburger */
  }

  .mobile-menu.active {
    display: flex; /* Show mobile menu when active */
  }

  /* Adjust carousel for tablets */
  .slide-content {
    padding: 20px 60px;
  }

  .text h1 {
    font-size: 48px;
  }

  /* slightly reduce logo sizes on tablet */
  .logo-wrapper .site-logo { height: 22px; }
  .logo-wrapper .logo-overlay { width: 60px; height: 60px; }
}

/* Mobile phones */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }

    .navbar {
        padding: 0 20px;
        height: 60px;
    }

    .mobile-menu {
        top: 60px;
    }
  /* Carousel */
  .slide-content {
    flex-direction: column;
    text-align: center;
    padding: 20px 20px;
  }

  .text {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .text h1 {
    font-size: 32px;
  }
  
  .text p {
    font-size: 16px;
    text-align: center;
  }

  .image {
      margin-top: 20px;
  }

  .image img {
    max-width: 80%;
  }

  .preview-bar {
      gap: 12px;
      padding: 15px;
      flex-wrap: wrap;
  }
  .preview-item {
      min-width: 120px;
  }
  .preview-label {
      font-size: 12px;
  }

  /* About Section */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-card, .about-image {
    grid-column: auto !important; /* Reset grid column settings */
  }

  .about-stats {
      flex-direction: column;
      align-items: center;
      gap: 20px;
  }

  /* Whats new, solutions, services */
  .whats-new__header-row, .our-solutions__header-row, .services__header-row {
      justify-content: center;
      padding: 0 20px;
  }
  .whats-new__arrows, .our-solutions__arrows, .services__arrows {
      display: none;
  }
  .whats-new__body-row, .our-solutions__body-row, .services__body-row {
      flex-direction: column;
      align-items: center;
  }
  .whats-new__intro, .our-solutions__intro, .services__intro {
      text-align: center;
      margin-bottom: 20px;
      padding: 0 20px;
  }
  .whats-new__carousel-area, .our-solutions__carousel-area, .services__carousel-area {
      scroll-snap-type: x mandatory;
  }
  .whats-new__carousel, .our-solutions__carousel, .services__carousel {
      justify-content: flex-start;
  }
  .whats-new__card, .our-solutions__card, .services__card {
      scroll-snap-align: center;
      width: 85%;
      flex-shrink: 0;
  }
  .whats-new__carousel .whats-new__body-row,
  .our-solutions__carousel .our-solutions__body-row,
  .services__carousel .services__body-row {
      flex-direction: row; /* Keep cards in a row inside the carousel */
  }

  /* Footer */
   .footer-container, .footer-core {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-nav-links {
        margin: 20px 0;
        flex-direction: column;
        align-items: center;
    }
    .footer-socials {
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .text h1 {
        font-size: 28px;
    }
    .text p {
        font-size: 14px;
    }
    .get-in-touch-btn {
        padding: 6px 12px;
        font-size: 11px;
    }
    .preview-bar {
        display: none;
    }
}

/* Styles for fixed desktop viewport */
@media (max-width: 1440px) {
    .footer-nav-links a {
        font-size: 5px;
    }
    .footer-warning p {
        font-size: 5px;
    }
    .footer-legal-links a, .footer-legal-links span {
        font-size: 5px;
    }
}

#page-loader {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #ffffff;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

#page-loader img {
  width: 150px; /* Increased size from 120px */
  height: auto;
}

/* Floating bottom GIF: stays fixed at bottom of viewport and slides right-to-left */
.floating-bottom {
  position: fixed;
  bottom: 12px; /* above any OS taskbars */
  left: 0;
  width: 100%;
  height: 0; /* container doesn't affect layout */
  pointer-events: none; /* non-interactive */
  z-index: 99998; /* below page-loader but above content */
  overflow: visible;
}

.floating-bottom-img {
  position: absolute;
  left: 0; /* position at left edge; we'll translate it off-screen to the right */
  bottom: 0;
  --floating-w: 120px; /* slightly smaller width for desktop */
  width: var(--floating-w);
  height: auto;
  /* start translated fully off the right edge */
  transform: translateX(calc(100vw + var(--floating-w)));
  will-change: transform;
  animation: floatLTR 16s linear infinite !important; /* slower */
  -webkit-animation: floatLTR 16s linear infinite !important;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.12));
}

/* Translate the image from fully off the right edge to fully off the left edge */
@keyframes floatLTR {
  0% { transform: translateX(calc(100vw + var(--floating-w))); }
  100% { transform: translateX(calc(-1 * var(--floating-w))); }
}

@-webkit-keyframes floatLTR {
  0% { -webkit-transform: translateX(calc(100vw + var(--floating-w))); transform: translateX(calc(100vw + var(--floating-w))); }
  100% { -webkit-transform: translateX(calc(-1 * var(--floating-w))); transform: translateX(calc(-1 * var(--floating-w))); }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .floating-bottom-img {
    animation: none;
    left: 4%;
    transform: translateX(0);
  }
}

/* Responsive sizes */
@media (max-width: 1024px) {
  .floating-bottom-img { --floating-w: 100px; width: var(--floating-w); }
}
@media (max-width: 640px) {
  .floating-bottom-img { --floating-w: 72px; width: var(--floating-w); }
}

.loader-spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #0071e3;
  border-radius: 50%;
  width: 60px; height: 60px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

/* Mobile responsive design */

@media (max-width: 639px) {
  .spacer {
    width: 100%;
    height: 10px;
    min-height: 10px;
    max-height: 10px;
  }
  .whats-new__carousel, .our-solutions__carousel, .services__carousel {
    gap: 2px;
  }
  .whats-new__carousel-area, .our-solutions__carousel-area, .services__carousel-area {
    min-height: 400px;
    height: 400px;
    max-height: 400px;
    padding: 8px 20px;
    overflow-y: hidden !important;
  }
  .whats-new__card, .our-solutions__card, .services__card {
    height: 380px;
    min-height: 380px;
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (max-width: 639px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  body {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
  }
  .carousel, .about-section, .whats-new, .our-solutions, .services, .site-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Section spacing */
  .about-section, .whats-new, .our-solutions, .services {
    margin-top: 24px !important;
  }
  .about-section { margin-bottom: 0 !important; }
  .whats-new { margin-bottom: 0 !important; }
  .our-solutions { margin-bottom: 0 !important; }
  .services { margin-bottom: 0 !important; }

  /* Carousel (main hero) - fix text overlap, ensure min-height */
  .carousel {
    margin-top: 0;
    padding: 0;
    width: 100vw;
    overflow-x: hidden;
  }
  .carousel-track {
    width: 500vw;
    overflow: hidden;
  }
  .slide {
    min-height: 420px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 0 24px 0;
  }
  .slide-content {
    flex-direction: column;
    padding: 16px 0;
    text-align: center;
    min-height: 320px;
    overflow: hidden;
  }
  .text {
    max-width: 100%;
    text-align: center;
    align-items: center;
    overflow: hidden;
    word-break: break-word;
  }
  .text h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  .text p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .image img {
    max-width: 85vw;
    margin: 0 auto;
    display: block;
  }
  .spacer {
    display: none;
  }
  .preview-bar {
    display: none;
  }

  /* About Section */
  .about-section {
    margin: 24px 0 0 0 !important;
    padding: 0 0 24px 0;
  }
  .about-title {
    font-size: 22px;
    text-align: center;
    margin-top: 16px;
  }
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .about-card, .about-image {
    grid-column: auto !important;
    padding: 16px;
    border-radius: 10px;
  }
  .about-image img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
  /* About stats: 2x3 grid */
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 0;
    padding: 0;
  }
  .stat {
    background: #fafafc;
    border-radius: 16px;
    padding: 10px 0;
    min-width: 0;
    text-align: center;
    flex: none;
    margin: 0;
  }
  .stat span {
    font-size: 22px;
    font-weight: 800;
    color: #0071e3;
    margin-bottom: 2px;
  }
  .stat p {
    font-size: 10px;
    color: #555;
    margin: 0;
  }
  
  /* Client logos mobile styles */
  .client-logos {
    margin-top: 20px;
  }
  
  .client-logos h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  
  .client-logos-container {
    gap: 16px;
    padding: 16px 0;
  }
  
  .client-logo {
    width: 100px;
    height: 60px;
    padding: 8px;
    flex-shrink: 0;
  }

  /* Section divider */
  .section-divider, .section-divider-content, .section-divider-sub-content {
    display: none !important;
  }

  /* What's New & Services & Solutions: stacked, scrollable carousel */
  .whats-new, .our-solutions, .services {
    margin-top: 24px !important;
    padding: 0 0 32px 0;
    width: 100% !important;
    max-width: 100% !important;
  }
  .whats-new__header-row, .our-solutions__header-row, .services__header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin: 0 0 8px 0;
    padding: 0;
  }
  .whats-new__main-heading, .our-solutions__main-heading, .services__main-heading {
    font-size: 20px;
    text-align: left;
    width: 100%;
    margin: 0 0 4px 0;
  }
  .whats-new__desc, .our-solutions__desc, .services__desc {
    font-size: 13px;
    margin: 0 0 8px 0;
    text-align: left;
  }
  .whats-new__intro-btn, .our-solutions__intro-btn, .services__intro-btn {
    width: 100%;
    font-size: 13px;
    margin: 0 0 12px 0;
    padding: 10px 0;
  }
  .whats-new__body-row, .our-solutions__body-row, .services__body-row {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  .whats-new__carousel-area, .our-solutions__carousel-area, .services__carousel-area {
    overflow-x: auto;
    overflow-y: hidden !important;
    width: 100% !important;
    margin: 0;
    padding: 0 0 8px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    box-sizing: border-box;
  }
  .whats-new__carousel, .our-solutions__carousel, .services__carousel {
    display: flex;
    flex-direction: row;
    gap: 0;
    min-width: max-content;
    width: auto;
    padding: 0;
    justify-content: flex-start;
    overflow-y: hidden !important;
    height: 100% !important;
    max-height: 100% !important;
  }
  .whats-new__card, .our-solutions__card, .services__card {
    width: 65vw;
    min-width: 65vw;
    max-width: 65vw;
    min-height: 260px;
    height: 320px;
    margin: 0 4vw 0 0;
    scroll-snap-align: center;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .whats-new__card:last-child, .our-solutions__card:last-child, .services__card:last-child {
    margin-right: 0;
  }
  .whats-new__card-img, .our-solutions__card-img, .services__card-img {
    height: 200px;
    min-height: 200px;
    max-height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
  .whats-new__card-content, .our-solutions__card-content, .services__card-content {
    padding: 20px 16px 24px 16px;
    min-height: 120px;
    background: transparent;
    border-radius: 0;
  }
  .whats-new__card-title, .our-solutions__card-title, .services__card-title {
    font-size: 15px;
    padding: 6px 0;
  }
  .whats-new__card-desc, .our-solutions__card-desc, .services__card-desc {
    font-size: 12px;
    padding-bottom: 8px;
  }
  .whats-new__card-category, .our-solutions__card-category, .services__card-category {
    font-size: 10px;
  }

  /* Hide horizontal scroll bar for carousels */
  .whats-new__carousel-area::-webkit-scrollbar,
  .our-solutions__carousel-area::-webkit-scrollbar,
  .services__carousel-area::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
    background: transparent;
  }
  .whats-new__carousel-area,
  .our-solutions__carousel-area,
  .services__carousel-area {
    scrollbar-width: none;
  }

  /* Footer: full width, no side padding, background edge-to-edge */
  .site-footer {
    padding: 24px 0 0 0 !important;
    background: #121212;
    color: #fff;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box;
  }
  .footer-container {
    padding: 0;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
  }
  .footer-core {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
  }
  .footer-logo img {
    height: 22px;
  }
  .footer-socials {
    display: flex;
    flex-direction: row;
    gap: 18px;
    justify-content: center;
    width: 100%;
    margin: 0 0 12px 0;
  }
  .footer-socials a {
    font-size: 18px;
  }
  .footer-nav-links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 10px 0 10px 0;
    flex-wrap: wrap;
  }
  .footer-nav-links a {
    font-size: 11px;
    color: #fff;
    text-align: center;
  }
  .footer-legal {
    border-top: 1px solid #444;
    padding-top: 12px;
    margin-top: 8px;
  }
  .footer-legal-links {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }
  .footer-legal-links a, .footer-legal-links span {
    font-size: 10px;
    color: #a0a0a0;
    text-align: center;
  }
  .footer-warning p {
    font-size: 9px;
    color: #a0a0a0;
    margin: 0 0 4px 0;
    text-align: left;
  }

  /* Toast notification */
  #toast-notification {
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 10px 12px;
  }

  /* Modal */
  .terms-modal-content {
    padding: 12px 4px 8px 4px;
    max-width: 98vw;
  }
  .terms-modal-content h2 {
    font-size: 1.1rem;
  }
  .terms-modal-scroll {
    max-height: 40vh;
  }
  .terms-modal-scroll p {
    font-size: 0.95rem;
  }
  #consent-modal .product-button {
    font-size: 1rem;
    height: 36px;
  }

  /* 1. Center main section headings */
  .whats-new__main-heading, .our-solutions__main-heading, .services__main-heading {
    text-align: center !important;
    width: 100%;
    margin: 0 0 8px 0;
  }

  /* 2. Card size: taller, narrower */
  .whats-new__card, .our-solutions__card, .services__card {
    width: 78vw;
    min-width: 78vw;
    max-width: 78vw;
    height: 360px !important;
    min-height: 360px !important;
    max-height: 360px !important;
    /* much smaller gap between cards on phones */
    margin: 0 8px 0 0;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    border: none !important;
    background: #fff !important;
    padding: 8px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }

  /* 3. Card text/button align left */
  .whats-new__card-content, .our-solutions__card-content, .services__card-content {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .whats-new__card-title, .our-solutions__card-title, .services__card-title,
  .whats-new__card-desc, .our-solutions__card-desc, .services__card-desc,
  .whats-new__card-category, .our-solutions__card-category, .services__card-category {
    text-align: left !important;
  }
  
  .whats-new__card-desc, .our-solutions__card-desc, .services__card-desc {
    padding-bottom: 20px !important;
  }
  .whats-new__intro-btn, .our-solutions__intro-btn, .services__intro-btn {
    text-align: left !important;
    align-self: flex-start !important;
  }
  .text {
    text-align: left !important;
    align-items: flex-start !important;
  }
  .text h1, .text p, .text button {
    text-align: left !important;
  }

  /* 1. Section and carousel padding */
  .about-section, .whats-new, .our-solutions, .services, .site-footer {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .whats-new__carousel-area, .our-solutions__carousel-area, .services__carousel-area {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  /* 2. Card text padding */
  .whats-new__card-content, .our-solutions__card-content, .services__card-content {
    padding: 16px 12px 18px 12px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    overflow: hidden !important;
    background: #fff !important;
    border-radius: 0 0 12px 12px !important;
  }

  /* 3. Shorter, smaller buttons in sections */
  .whats-new__intro-btn, .our-solutions__intro-btn, .services__intro-btn {
    min-width: 100px;
    max-width: 140px;
    width: auto;
    height: 36px;
    font-size: 13px;
    padding: 0 12px;
    margin-bottom: 12px;
    border-radius: 4px;
    text-align: center !important;
    align-self: flex-start !important;
    white-space: nowrap;
  }

  /* Main carousel: fix text padding and button width */
  .carousel .text {
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box;
  }
  .carousel .text button {
    width: auto !important;
    max-width: fit-content !important;
    padding: 8px 24px !important;
  }

  /* Fix horizontal scrollbar from card carousels */
  .whats-new__carousel-area,
  .our-solutions__carousel-area,
  .services__carousel-area {
    width: 100vw;
    margin-left: -12px; /* Offset parent padding to be full-width */
    padding: 0 !important; /* Remove padding from the area */
    box-sizing: border-box;
  }
  .whats-new__carousel,
  .our-solutions__carousel,
  .services__carousel {
    padding: 0 8px; /* smaller inner padding on phones */
  }

  /* Main carousel: center text block, but left-align text inside */
  .carousel .text {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
  }
  .carousel .text h1,
  .carousel .text h5,
  .carousel .text p,
  .carousel .text button {
    text-align: left !important;
    align-self: flex-start !important;
    width: 100%;
  }

  .carousel .text h1{
    padding-top: 20px;
  }

  .carousel .slide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .carousel .text button {
    margin-bottom: 20px !important;
  }

  

  /* Consistent spacing between sections */
  .about-section,
  .whats-new,
  .our-solutions,
  .services {
    margin-top: 0 !important;
    margin-bottom: 48px !important;
    padding-top: 24px !important;
    padding-bottom: 24px !important;
  }
  .section-divider, .section-divider-content, .section-divider-sub-content {
    display: block !important;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
    margin: 16px 0 !important;
    border: none;
    min-height: 1px;
    max-height: 1px;
    box-sizing: border-box;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  html, body {
    overflow-x: hidden !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .carousel, .about-section, .whats-new, .our-solutions, .services, .site-footer {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
  }
  .about-section, .whats-new, .our-solutions, .services {
    padding-left: 48px !important;
    padding-right: 48px !important;
    padding-top: 48px !important;
    padding-bottom: 48px !important;
    box-sizing: border-box;
  }
  .carousel {
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box;
  }
  .carousel-track {
    width: 500vw !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box;
    transition: transform 1s ease-in-out;
  }
  .slide {
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    min-height: 80vh !important;
    display: flex !important;
    align-items: center !important;
  }
  .whats-new__carousel-area, .our-solutions__carousel-area, .services__carousel-area {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar */
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* Internet Explorer 10+ */
  }
  
  /* Hide scrollbar for WebKit browsers */
  .whats-new__carousel-area::-webkit-scrollbar,
  .our-solutions__carousel-area::-webkit-scrollbar,
  .services__carousel-area::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }
  
  /* Additional scrollbar hiding for nested carousel elements */
  .whats-new__carousel::-webkit-scrollbar,
  .our-solutions__carousel::-webkit-scrollbar,
  .services__carousel::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }
  
  .whats-new__carousel .whats-new__body-row::-webkit-scrollbar,
  .our-solutions__carousel .our-solutions__body-row::-webkit-scrollbar,
  .services__carousel .services__body-row::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }
  .whats-new__carousel, .our-solutions__carousel, .services__carousel {
    display: flex !important;
    flex-direction: row !important;
    gap: 24px !important;
    width: auto !important;
    min-width: 100vw !important;
    max-width: none;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    padding: 20px 24px !important;
    margin: 0 !important;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
    /* Hide scrollbar */
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* Internet Explorer 10+ */
  }
  
  /* Fix nested body-row inside carousel to display cards horizontally */
  .whats-new__carousel .whats-new__body-row,
  .our-solutions__carousel .our-solutions__body-row,
  .services__carousel .services__body-row {
    display: flex !important;
    flex-direction: row !important;
    gap: 24px !important;
    width: auto !important;
    min-width: 100vw !important;
    max-width: none;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    white-space: nowrap !important;
    padding: 20px 24px !important;
    margin: 0 !important;
    box-sizing: border-box;
    scroll-snap-type: x mandatory;
    /* Hide scrollbar */
    scrollbar-width: none !important; /* Firefox */
    -ms-overflow-style: none !important; /* Internet Explorer 10+ */
  }
  .whats-new__card, .our-solutions__card, .services__card {
    flex: 0 0 380px !important;
    width: 380px !important;
    min-width: 280px !important;
    max-width: 400px !important;
    margin: 0 12px 0 0 !important;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    word-break: break-word !important;
    padding: 16px !important;
    min-height: 320px !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
  }
  
  .whats-new__card:hover, .our-solutions__card:hover, .services__card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    transform: translateY(-4px) !important;
  }
  .whats-new__card:last-child, .our-solutions__card:last-child, .services__card:last-child {
    margin-right: 0 !important;
  }
  
  /* Card text - show full content with line breaks */
  .whats-new__card-title, .our-solutions__card-title, .services__card-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    line-height: 1.4 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    display: block !important;
  }
  
  .whats-new__card-desc, .our-solutions__card-desc, .services__card-desc {
    font-size: 14px !important;
    line-height: 1.5 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    display: block !important;
    margin-bottom: 16px !important;
  }
  
  .whats-new__card-category, .our-solutions__card-category, .services__card-category {
    font-size: 12px !important;
    margin-bottom: 8px !important;
    color: #666 !important;
  }
  
  /* About stats: 3x2 grid for tablet view */
  .about-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    gap: 24px !important;
    margin-top: 48px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }
  
  .stat {
    background: #fafafc00 !important;
    border-radius: 16px !important;
    padding: 20px 16px !important;
    text-align: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  .stat span {
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #0071e3 !important;
    margin-bottom: 8px !important;
    display: block !important;
  }
  
  .stat p {
    font-size: 14px !important;
    color: #555 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
  }
  
  /* About section styling for tablet view */
  .about-section {
    margin-top: 48px !important;
    margin-bottom: 48px !important;
  }
  
  /* Client logos tablet styles */
  .client-logos {
    margin-top: 32px !important;
  }
  
  .client-logos h3 {
    font-size: 1.4rem !important;
    margin-bottom: 20px !important;
  }
  
  .client-logos-container {
    gap: 24px !important;
    padding: 20px 0 !important;
  }
  
  .client-logo {
    width: 120px !important;
    height: 70px !important;
    padding: 12px !important;
    flex-shrink: 0 !important;
  }
  
  .about-title {
    font-size: 32px !important;
    font-weight: 700 !important;
    margin-bottom: 32px !important;
    text-align: left !important;
  }
  
  .about-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-template-rows: auto auto !important;
    gap: 24px !important;
    margin-bottom: 48px !important;
  }
  
  .about-card.edge {
    grid-column: 1 / -1 !important; /* Span both columns */
    grid-row: 1 !important;
    background: #f5f5f5 !important;
    color: #000 !important;
  }
  
  .about-card.vision {
    grid-column: 1 !important;
    grid-row: 2 !important;
    background: #000 !important;
    color: #fff !important;
  }
  
  .about-card.insights {
    grid-column: 2 !important;
    grid-row: 2 !important;
    background: #0071e3 !important;
    color: #fff !important;
  }
  
  .about-card {
    padding: 32px 24px !important;
    border-radius: 16px !important;
    min-height: 200px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }
  
  .about-card h2 {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    line-height: 1.2 !important;
  }
  
  .about-card p {
    font-size: 16px !important;
    line-height: 1.6 !important;
    margin: 0 !important;
  }
  
  .about-image {
    display: none !important; /* Hide images in tablet view to focus on content */
  }
  
  /* Footer styling for tablet view */
  .site-footer {
    padding: 48px 48px 24px 48px !important;
    background: #121212 !important;
    color: #fff !important;
    margin-top: 48px !important;
  }
  
  .footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  
  .footer-core {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 32px !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
  }
  
  .footer-logo img {
    height: 28px !important;
  }
  
  .footer-socials {
    display: flex !important;
    gap: 20px !important;
    align-items: center !important;
  }
  
  .footer-socials a {
    font-size: 20px !important;
    color: #fff !important;
    transition: color 0.3s ease !important;
  }
  
  .footer-socials a:hover {
    color: #0071e3 !important;
  }
  
  .footer-nav-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 24px !important;
    margin-bottom: 24px !important;
    justify-content: center !important;
  }
  
  .footer-nav-links a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: color 0.3s ease !important;
  }
  
  .footer-nav-links a:hover {
    color: #0071e3 !important;
  }
  
  .footer-legal {
    border-top: 1px solid #333 !important;
    padding-top: 24px !important;
  }
  
  .footer-legal-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    margin-bottom: 16px !important;
    justify-content: center !important;
  }
  
  .footer-legal-links a {
    color: #ccc !important;
    text-decoration: none !important;
    font-size: 12px !important;
    transition: color 0.3s ease !important;
  }
  
  .footer-legal-links a:hover {
    color: #fff !important;
  }
  
  .footer-warning p {
    color: #999 !important;
    font-size: 11px !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
    text-align: left !important;
  }
  
  /* Hide preview bar for tablet view */
  .preview-bar {
    display: none !important;
  }
  
  /* Hide navigation arrows for tablet view */
  .whats-new__arrows, .our-solutions__arrows, .services__arrows {
    display: none !important;
  }
  
  .whats-new__nav-btn, .our-solutions__nav-btn, .services__nav-btn {
    display: none !important;
  }
  .slide-content {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .slide {
    min-height: 70vh !important;
  }
}

