/* Base rules */
    a,
    button {
      transition: all 0.25s ease;
    }

    .heading {
      margin:0;
    }

    #hero {
      /* Ensures the entire hero section takes up the full screen height */
      height: 100vh;
      width: 100%;
      position: relative;
      padding: 0 !important;
    }

    /* about-us-styles */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      /* background: linear-gradient(135deg, #f5f7fa 0%, #e8eef3 100%); */
      /* padding: 40px 20px; */
      line-height: 1.6;
    }
    .header {
      text-align: center;
      margin-bottom: 60px;
      animation: fadeInDown 0.8s ease;
    }

    .header h1 {
      color: #2d8c7e;
      margin-bottom: 10px;
      font-weight: 500;
      background: transparent !important;
    }

    .header .underline {
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #2d8c7e, #4db8a8);
      margin: 0 auto;
      border-radius: 2px;
    }

    /* HERO SECTION  */

    #hero {
      height: 100vh;
      min-height: 100vh;
      max-height: 100vh;
      padding: 0 !important;
    }

    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 520px;
      overflow: hidden;
      padding: 0;
    }

    #hero-carousel,
    .hero .carousel-inner {
      height: 100%;
    }

    .hero .carousel {
      width: 100%;
      height: 100vh;
      padding: 0;
      margin: 0;
      background-color: var(--background-color);
      position: relative;
    }

    .hero .carousel-item {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      overflow: hidden;
    }

    .hero img {
      position: absolute;
      inset: 0;
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    .slide-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }

    .hero-video {
      min-width: 200%;
      min-height: 200%;
      object-fit: cover;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.5);
      z-index: -1;
    }

    :root {
      --slide-pt: clamp(90px, 14vh, 150px);
      --slide-pb: clamp(52px, 8vh, 90px);
      --slide-px: clamp(80px, 10vw, 160px);
    }

    .slide-inner {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      padding: var(--slide-pt) var(--slide-px) var(--slide-pb);
    }

    .slide-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    /* ── Slide 1 — LET THERE BE LIGHT ── */
    #slide-1 .slide-text {
      justify-content: flex-end;
      padding-bottom: clamp(120px, 18vh, 200px);
      padding-left: clamp(40px, 8vw, 120px);
    }

    #slide-1 h2 {
      color: #fff;
    }

    #slide-1 .line-1 {
      display: block;
      font-weight: 400;
      font-size: clamp(1.5rem, 4vw, 3.6rem);
      letter-spacing: 0.06em;
      line-height: 1.15;
    }

    #slide-1 .line-2 {
      display: block;
      font-weight: 800;
      font-size: clamp(3rem, 10.5vw, 9rem);
      line-height: 0.88;
      letter-spacing: -0.01em;
    }

    #slide-1 .slide-subtitle {
      color: #fff;
      font-size: clamp(0.85rem, 1.8vw, 1.35rem);
      font-weight: 400;
      margin-top: clamp(10px, 1.5vh, 20px);
      margin-bottom: 0;
    }

    /* slide 1 — keep reactor visible on smaller screens */
    @media (max-width: 1024px) {
      #slide-1 .slide-text {
        justify-content: flex-start;
        padding-top: 80px;
        padding-bottom: 10px;
        text-align: center;
        align-items: center;
        padding-left: 0;
      }

      #slide-1 .line-1 {
        font-size: clamp(2rem, 6.5vw, 4rem);
      }

      #slide-1 .line-2 {
        font-size: clamp(5rem, 18vw, 10rem);
      }

      #slide-1 .slide-bg {
        object-position: 92% top;
      }

      #slide-1 .slide-subtitle {
        font-size: 1.8rem !important;
      }
    }

    @media (max-width: 1024px) and (max-height: 700px) {
      #slide-1 .slide-text {
        align-items: flex-start !important;
        text-align: left !important;
        padding-left: 8vw !important;
        justify-content: center !important;
      }

      #slide-1 .line-1 {
        font-size: clamp(1.3rem, 3.5vw, 2.4rem) !important;
      }

      #slide-1 .line-2 {
        font-size: clamp(3.5rem, 8vw, 5rem) !important;
        line-height: 0.9 !important;
      }

      #slide-1 .slide-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
      }

      #slide-1 .slide-bg {
        object-position: 80% center !important;
      }
    }

    @media (max-width: 853px) and (max-height: 1280px) {
      #slide-1 .slide-text {
        justify-content: center;
        padding-top: 10vh;
        padding-bottom: 0;
        padding-left: 5vw;
        text-align: left;
        align-items: flex-start;
      }

      #slide-1 .line-1 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: -5px;
      }

      #slide-1 .line-2 {
        font-size: clamp(4.5rem, 12vw, 7rem);
        line-height: 0.9;
      }

      #slide-1 .slide-bg {
        object-position: 88% center !important;
      }
    }


    @media (max-width: 820px) {
      #slide-1 .slide-text {
        justify-content: flex-start;
        padding-top: clamp(70px, 11vh, 120px);
        padding-bottom: 0;
        margin-top: 0;
        align-self: center !important;
      }

      #slide-1 .line-1 {
        font-size: clamp(1.6rem, 5.2vw, 2.8rem);
      }

      #slide-1 .line-2 {
        font-size: clamp(4rem, 15vw, 6rem);
      }

      #slide-1 .slide-bg {
        object-position: 90% center;
      }

      #slide-1 .slide-subtitle {
        font-size: 1.2rem !important;
     }
    }

    @media (max-width: 768px) {
      #slide-1 .slide-bg {
        object-position: 95% center !important;
      }

      #slide-1 .slide-text {
        padding-left: 0px;
        padding-top: 50px;
      }

      #slide-1 .line-1 {
        font-size: 5.5vw;
        ;
      }
    }

    @media (max-width: 576px) {
      #slide-1 .slide-bg {
        object-position: 80% center;
      }

      #slide-1 .slide-text {
        justify-content: flex-start;
        padding-top: clamp(20px, 5vh, 60px);
        padding-bottom: 0;
        padding-left: 0 !important;
        text-align: center;
        align-items: center;
      }

      #slide-1 .line-1 {
        font-size: clamp(2rem, 8vw, 3rem);
      }

      #slide-1 .line-2 {
        font-size: clamp(5rem, 20vw, 7rem);
      }
    }

    @media (max-width: 540px) {
      #slide-1 .slide-text {
        padding-top: clamp(30px, 5vh, 60px);
        padding-bottom: clamp(90px, 13vh, 150px);
      }

      #slide-1 .slide-subtitle {
        font-size: 1rem !important;
    }

      #slide-1 .line-1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }

      #slide-1 .line-2 {
        font-size: clamp(3rem, 15vw, 5rem);
      }

      #slide-1 .slide-bg {
        object-position: 95% center;
      }
    }

    @media (max-width: 431px) {
      #slide-1 .slide-text {
        padding-top: 100px !important;
        padding-bottom: clamp(90px, 13vh, 150px);
      }

      #slide-1 .line-1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }

      #slide-1 .line-2 {
        font-size: clamp(3rem, 15vw, 5rem);
      }

      #slide-1 .slide-bg {
        object-position: 81% center !important;
      }
    }

    @media (max-width: 415px) {
      #slide-1 .slide-bg {
        object-position: 80% center !important;
      }

      #slide-1 .slide-text {
        padding-top: 100px !important;
        padding-bottom: 20px !important;
      }

      #slide-1 .line-1 {
        font-size: clamp(1.5rem, 6vw, 2rem);
      }

      #slide-1 .line-2 {
        font-size: clamp(3rem, 15vw, 5rem);
      }

    }

    @media (max-width:391px){
      #slide-1 .slide-text {
        padding-top: 90px !important;
        padding-bottom: 20px !important;
      }

      #slide-1 .slide-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 20px !important;
      }
    }

    @media (max-width: 376px) {
      #slide-1 .slide-text {
        margin-bottom: 150px !important;
        padding-bottom: 100px !important;
        padding-top: 0 !important;
      }

      #slide-1 .line-1 {
        font-size: 1.5rem !important;
      }

      #slide-1 .slide-bg {
        object-position: 88% center !important;
      }
     #slide-1 .slide-subtitle {
        font-size: 0.7rem !important;
        margin-bottom: 50px !important;
    }

      :root {
        --slide-pb: clamp(50px, 9vh, 90px) !important;
      }
    }

    @media (max-width: 361px) {
      #slide-1 .slide-bg {
        object-position: 83% center !important;
      }

      #slide-1 .slide-text {
        padding-top: 75px !important;
        margin-bottom: 0 !important;
      }

      #slide-1 .line-2 {
        font-size: 3.6rem !important;
      }
    }

    @media (max-width: 345px) {
      #slide-1 .slide-bg {
        object-position: 79% center !important;
      }

      #slide-1 .slide-subtitle {
        margin-bottom: 0 !important;
      }

      #slide-1 .slide-text {
        padding-top: 100px !important;
        margin-bottom: 0 !important;
    }
    }

    /* ── Slide 2 — 3,00,000L Installation ── */
      #slide-2 .slide-inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        padding: var(--slide-pt) var(--slide-px) var(--slide-pb);
        height: 100%;
        text-align: center;
      }

      #slide-2 .slide-2-content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        width: 100%;
        padding-top: clamp(10px, 3vh, 30px);
        padding-bottom: clamp(10px, 3vh, 30px);
      }

      #slide-2 .slide-2-number {
        font-size: clamp(4.5rem, 13vw, 10rem);
        font-weight: 600;
        color: #000000;
        margin: 0;
        line-height: 1;
        letter-spacing: 0.05em;
        transform: translateY(-20px);
      }

      #slide-2 .slide-2-caption {
        font-size: clamp(1rem, 2.6vw, 2.4rem);
        font-weight: 500;
        color: #3db552;
        margin: 0;
        line-height: 1.3;
        transform: translateY(50px);
      }

      /* RESPONSIVE */

      @media (min-width: 1921px) {
        #slide-2 .slide-2-number {
          font-size: clamp(6.2rem, 20vw, 18rem);
          letter-spacing: 0.08em;
          transform: translateY(10px);
        }
        #slide-2 .slide-2-caption {
          font-size: clamp(2rem, 3.5vw, 4rem);
          transform: translateY(20px);
        }
      }

      @media (max-width: 1920px) and (min-width: 1500px) {
        #slide-2 .slide-2-number {
          font-size: clamp(4.5rem, 13vw, 13rem); 
          letter-spacing: 0.08em;
          transform: translateY(30px); 
        }
        #slide-2 .slide-2-caption {
          font-size: clamp(1.5rem, 3.2vw, 3rem); 
          transform: translateY(30px); 
        }
      }

      @media (max-width: 1920px) and (min-width: 1500px) and (max-height: 980px) {
        #slide-2 .slide-2-number {
          font-size: clamp(4.5rem, 13vw, 10rem); 
          transform: translateY(-30px);
        }
        #slide-2 .slide-2-caption {
          font-size: clamp(1.2rem, 2.5vw, 2.5rem);
          transform: translateY(60px);
        }
      }

      @media (max-width: 1024px) {
        #slide-2 .slide-inner {
          padding-left: 0 !important;
          padding-right: 0 !important;
        }
        #slide-2 .slide-bg {
          object-position: 35% center;
        }
        #slide-2 .slide-2-number {
          font-size: clamp(5rem, 18vw, 12rem); 
          transform: translateY(120px); 
        }
        #slide-2 .slide-2-caption {
          width: 100%;
          text-align: center;
          position: static;
          font-size: clamp(1.2rem, 4vw, 2.5rem);
          transform: translateY(40px);
        }
      }

      @media (max-width: 1024px) and (max-height: 700px) {
        #slide-2 .slide-bg {
          object-position: center center;
        }
        #slide-2 .slide-2-number {
          font-size: clamp(3rem, 10vw, 8rem);
          transform: translateY(10px);
        }
        #slide-2 .slide-2-caption {
          font-size: clamp(1rem, 3.5vw, 2rem);
          transform: translateY(30px);
        }
      }

      @media (max-width: 768px) {
        #slide-2 .slide-2-number {
          font-size: clamp(3rem, 18vw, 8rem);
          transform: translateY(60px); 
        }
        #slide-2 .slide-2-caption {
          font-size: clamp(1.2rem, 4vw, 2rem) !important;
          transform: translateY(70px); 
        }
      }

      @media (max-width: 540px) {
        #slide-2 .slide-2-number {
          font-size: clamp(2.5rem, 20vw, 6rem);
          transform: translateY(40px);
        }
        #slide-2 .slide-2-caption {
          font-size: clamp(1rem, 4.5vw, 2rem) !important;
          transform: translateY(30px);
        }
      }

      @media (max-width: 431px) {
        #slide-2 .slide-bg {
          object-position: 28% center;
        }
        #slide-2 .slide-2-number {
          font-size: clamp(2rem, 22vw, 5rem);
          transform: translateY(80px);
        }
        #slide-2 .slide-2-caption {
          font-size: clamp(0.9rem, 5vw, 1.5rem);
          transform: translateY(10px);
        }
      }

      @media (max-width: 415px) {
        #slide-2 .slide-2-number {
          font-size: clamp(1.875rem, 21vw, 4.75rem);
        }
      }

      @media (max-width: 391px) {
        #slide-2 .slide-2-number {
          font-size: clamp(1.75rem, 19.5vw, 4.5rem);
        }
      }

      @media (max-width: 376px) {
        #slide-2 .slide-bg {
          object-position: 30% center;
        }
        #slide-2 .slide-2-number {
          font-size: clamp(1.625rem, 18vw, 4.25rem);
          transform: translateY(70px);
        }
      }

      @media (max-width: 345px) {
        #slide-2 .slide-bg {
          object-position: 26% center;
        }
        #slide-2 .slide-2-number {
          font-size: clamp(1.625rem, 18vw, 4.25rem);
          transform: translateY(90px);
        }
      }

    /* ── Slide 3 — COLD STORAGE SOLUTIONS ── */
    #slide-3 .slide-text {
      justify-content: flex-end;
      padding-bottom: 120px;
      padding-right: clamp(54px, 6vw, 115px);
      max-width: 100%;
    }

    #slide-3 h2 {
      color: #fff;
    }

    #slide-3 .line-1 {
      display: block;
      font-weight: 900;
      font-size: clamp(2.2rem, 6.5vw, 6.8rem);
      letter-spacing: -0.01em;
      line-height: 1.05;
      text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
      white-space: nowrap;
    }

    #slide-3 .line-2 {
      display: block;
      font-weight: 800;
      font-size: clamp(2.8rem, 7vw, 8rem);
      line-height: 1.05;
      color: transparent;
      -webkit-text-stroke: clamp(1.5px, 0.25vw, 3px) #ffffff;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }

    /* slide 3 — keep reactors visible on smaller screens */
    @media (max-width: 1280px) {
      #slide-3 .slide-bg {
        object-position: 90% top !important;
      }

      #slide-3 .slide-text {
        align-items: flex-start !important;
        text-align: left !important;
        margin-top: 10vh;
        justify-content: center !important;
        padding-bottom: 0;
        padding-left: 50px;
      }

      #slide-3 .line-1 {
        font-size: clamp(2.5rem, 6vw, 4rem) !important;
      }

      #slide-3 .line-2 {
        font-size: 4.3rem !important;
        line-height: 0.9 !important;
      }
    }

    @media (max-width: 1024px) {
      #slide-3 .slide-bg {
        object-position: 91% top !important;
      }

      #slide-3 .slide-text {
        justify-content: flex-start !important;
        padding-top: 8vh !important;
        text-align: center !important;
        align-items: center !important;
      }

      #slide-3 .line-1 {
        font-size: clamp(3rem, 15vw, 5rem) !important;
        white-space: normal !important;
      }

      #slide-3 .line-2 {
        font-size: clamp(3.6rem, 13vw, 7rem) !important;
        white-space: normal !important;
      }
    }

    @media (max-width: 1024px) and (max-height: 700px) {
      #slide-3 .slide-text {
        align-items: flex-start !important;
        text-align: left !important;
        padding-bottom: 6vh;
        padding-right: 6vw !important;
        padding-left: 0 !important;
        justify-content: center !important;
      }

      #slide-3 .line-1 {
        font-size: clamp(2.5rem, 6vw, 4rem) !important;
      }

      #slide-3 .line-2 {
        font-size: 4.3rem !important;
        line-height: 0.9 !important;
      }

      #slide-3 .slide-bg {
        object-position: 80% center !important;
      }
    }

    @media (max-width:913px) {
      #slide-3 .slide-bg {
        object-position: 88% center !important;
      }
    }

    @media (max-width: 854px) {
      #slide-3 .slide-bg {
        object-position: 88% center !important;
      }

      #slide-3 .slide-text {
        justify-content: center !important;
        padding-block: 0 !important;
        margin-top: 0 !important;
        padding-left: 5vw !important;
        text-align: left !important;
        align-items: flex-start !important;
      }
    }

    @media (max-width: 820px) {
      #slide-3 .slide-text {
        justify-content: flex-start !important;
        padding-top: 15vh !important;
        text-align: center !important;
        align-items: center !important;
        padding-left: 2vw !important;
      }

      #slide-3 .line-1 {
        font-size: clamp(2.8rem, 10vw, 4rem) !important;
        white-space: normal !important;
      }

      #slide-3 .line-2 {
        font-size: 5.5rem !important;
        white-space: normal !important;
      }

      #slide-3 .slide-bg {
        object-position: 90% center !important;
      }
    }

    @media (max-width: 768px) {
      #slide-3 .slide-bg {
        object-position: 90% center !important;
      }

      #slide-3 .slide-text {
        padding-left: 60px !important;
        padding-top: 13vh !important;

      }

      #slide-3 .line-1 {
        font-size: clamp(2.8rem, 10vw, 4rem) !important;
        white-space: normal !important;
      }

      #slide-3 .line-2 {
        font-size: 5.5rem !important;
        white-space: normal !important;
      }
    }

    @media (max-width: 576px) {
      #slide-3 .slide-bg {
        object-position: 82% center !important;
      }

      #slide-3 .slide-text {

        padding-top: clamp(20px, 5vh, 60px) !important;
        padding-bottom: 0 !important;
        
      }

      #slide-3 .line-1 {
        font-size: clamp(2.8rem, 10vw, 4rem) !important;
        white-space: normal;
      }

      #slide-3 .line-2 {
        font-size: clamp(3.8rem, 14vw, 6rem) !important;
        white-space: normal;
      }

      :root {
        --slide-pb: clamp(20px, 4vh, 40px) !important;
      }
    }

    @media (max-width: 540px) {
      #slide-3 .slide-text {
        padding-top: 100px !important;
        padding-bottom: 0 !important;
        
      }

      #slide-3 .line-1 {
        font-size: clamp(2rem, 7.5vw, 3rem) !important;
        white-space: normal !important;
      }

      #slide-3 .line-2 {
        font-size: clamp(3rem, 15vw, 3.5rem) !important;
        white-space: normal !important;
      }

      #slide-3 .slide-bg {
        object-position: 90% center !important;
      }
    }

    @media (max-width:431px) {
      #slide-3 .slide-bg {
        object-position: 82% center !important;
      }

      #slide-3 .slide-text {
        padding-top: 17vh !important;
      }

      #slide-3 .line-1 {
        font-size: 2.5rem !important;
        white-space: normal !important;
      }

      #slide-3 .line-2 {
        font-size: 3.5rem !important;
        white-space: normal !important;
      }
    }

    @media (max-width:415px) {
      #slide-3 .slide-bg {
        object-position: 81% center !important;
      }

    }

    @media (max-width: 376px) {
      #slide-3 .slide-bg {
        object-position: 84% center !important;
      }

      #slide-3 .slide-text {

        padding-top: 14vh !important;
        padding-bottom: 0 !important;
        padding-left: 30px !important;
      }

    }

    @media (max-width:361px) {

      #slide-3 .slide-bg {
        object-position: 82% center !important;
      }
      #slide-3 .slide-text {
        padding-left: 60px !important;
        padding-top: 15vh !important;
      }
    }

    @media (max-width: 344px) {
      #slide-3 .slide-bg {
        object-position: 80% center !important;
      }
    }

    /* ── Slide 4 — PHOTOSTABILITY / SUN ── */
    #slide-4 .slide-inner {
      justify-content: space-between;
    }

    #slide-4 .arch-wrap {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: flex-start;
      flex-shrink: 0;
    }

    #slide-4 .arched-text {
      width: clamp(260px, 82vw, 920px);
      height: auto;
      overflow: visible;
    }

    #slide-4 .arched-text text {
      font-size: clamp(16px, 3.2vw, 44px);
      font-weight: 300;
      fill: #ffffff;
      filter: drop-shadow(1px 1px 3px rgba(0, 0, 0, 0.9));
    }

    #slide-4 .sun-text {
      font-size: clamp(22px, 4.8vw, 60px);
      font-weight: 900;
      fill: #fde613;
      filter: drop-shadow(0 0 8px rgba(253, 230, 19, 0.7));
    }

    #slide-4 .slide-text {
      flex: 1;
      justify-content: flex-end;
      padding-bottom: clamp(40px, 8vh, 100px);
      max-width: 52%;
    }

    #slide-4 .p-main {
      color: #fff;
      font-weight: 500;
      font-size: clamp(1rem, 2.2vw, 1.75rem);
      line-height: 1.25;
      margin-bottom: clamp(4px, 0.8vh, 10px);
      text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
    }

    #slide-4 .p-specs {
      color: #eee;
      font-weight: 400;
      font-size: clamp(0.85rem, 1.6vw, 1.3rem);
      line-height: 1.5;
      text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    }
    /* p-main span */
    #slide-4 .p-main span { display: block; }

    /* ── Two SVG toggle ── */
    .straight-only { display: none; }
    .arched-only { display: block; }

    #slide-4 .arched-text.straight-only {
      width: 100% !important;
      height: auto !important;
    }

   /* ── Slide 4 Desktop base ── */

    @media (max-width: 1280px) {
      #slide-4 .slide-bg {
        object-position: center top !important;
      }
      #slide-4 .arched-text {
        width: clamp(260px, 80vw, 850px) !important;
      }
      #slide-4 .arched-text text {
        font-size: clamp(16px, 3vw, 40px) !important;
      }
      #slide-4 .sun-text {
        font-size: clamp(22px, 4.5vw, 55px) !important;
      }
      #slide-4 .slide-text {
        padding-bottom: clamp(40px, 8vh, 100px) !important;
        max-width: 52% !important;
      }
    }

    @media (max-width: 1024px) {
      .arched-only { display: none !important; }
      .straight-only { display: block !important; }

      #slide-4 .slide-bg {
        object-position: center top !important;
      }
      #slide-4 .arched-text.straight-only {
        width: 100vw !important;
      }
      #slide-4 .arched-text.straight-only text {
        font-size: 60px !important;
      }
      #slide-4 .arched-text.straight-only .sun-text {
        font-size: 70px !important;
      }
      #slide-4 .arch-wrap {
        padding-top: 200px !important;
      }
      #slide-4 .slide-text {
        padding-bottom: clamp(60px, 10vh, 120px) !important;
        max-width: 55% !important;
      }
      #slide-4 .p-main {
        font-size: clamp(1.5rem, 3.5vw, 2rem) !important;
      }
      #slide-4 .p-specs {
        font-size: clamp(1.5rem, 3.8vw, 2rem) !important;
      }
    }

    @media (max-width: 1024px) and (max-height: 650px) {
      .arched-only { display: block !important; }
      .straight-only { display: none !important; }

      #slide-4 .arch-wrap {
        padding-top: 20px !important;
      }

      #slide-4 .p-main {
        font-size: clamp(1rem, 2.2vw, 1.75rem) !important;
      }
      #slide-4 .p-specs {
        font-size: clamp(0.85rem, 1.6vw, 1.3rem) !important;
      }
    }

    @media (max-width: 913px) {
      #slide-4 .slide-text {
        text-align: start !important;
        align-items: start !important;
        padding-bottom: 0 !important;
      }
    }

    @media (max-width: 820px) {
      #slide-4 .slide-bg {
        object-position: 50% center !important;
      }
      #slide-4 .arched-text.straight-only {
        width: 95vw !important;
      }
      #slide-4 .arched-text.straight-only text {
        font-size: 62px !important;
      }
      #slide-4 .arched-text.straight-only .sun-text {
        font-size: 70px !important;
      }
      #slide-4 .arch-wrap {
        padding-top: 160px !important;
        display: flex !important;
        justify-content: center !important;
      }
      #slide-4 .slide-text {
        padding-left: 20px !important;
        padding-bottom: 0 !important;
        max-width: 60% !important;
        text-align: start !important;
        align-items: start !important;
      }
    }

    @media (max-width: 819px) {
      #slide-4 .p-main span { display: inline; }
      #slide-4 .slide-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
      }
      #slide-4 .slide-text {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
      }
    }

    @media (max-width: 768px) {
      #slide-4 .arched-text.straight-only text {
        font-size: 50px !important;
      }
      #slide-4 .arched-text.straight-only .sun-text {
        font-size: 58px !important;
      }
      #slide-4 .arch-wrap {
        padding-top: 100px !important;
        display: flex !important;
        justify-content: center !important;
      }
      #slide-4 .slide-text {
        max-width: 100% !important;
        padding-left: 16px !important;
        padding-block: 0 !important;
        justify-content: flex-end !important;
        text-align: center !important;
        align-items: center !important;
      }
      #slide-4 .p-main {
        font-size: 24px !important;
        margin-bottom: 460px !important;
      }
    }

    @media (max-width: 576px) {
      #slide-4 .slide-inner {
        justify-content: flex-end !important;
        padding-top: clamp(55px, 9vh, 90px) !important;
      }
      #slide-4 .slide-bg {
        object-position: 50% center !important;
      }
      #slide-4 .arched-text.straight-only {
        width: 100% !important;
      }
      #slide-4 .arched-text.straight-only text {
        font-size: 20px !important;
      }
      #slide-4 .arched-text.straight-only .sun-text {
        font-size: 28px !important;
      }
      #slide-4 .slide-text {
        flex: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 16px !important;
        max-width: 75% !important;
        text-align: center !important;
        align-items: center !important;
      }
      #slide-4 .p-specs {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem) !important;
        margin-top: 6px !important;
      }
    }

    @media (max-width: 540px) {
      #slide-4 .slide-text {
        padding-top: 0 !important;
        max-width: 100% !important;
        padding-left: 0 !important;
        text-align: center !important;
      }
      #slide-4 .p-main {
        font-size: 20px !important;
        margin-bottom: 310px !important;
      }
      #slide-4 .arched-text.straight-only text {
        font-size: 50px !important;
        font-weight: 400 !important;
      }
      #slide-4 .arched-text.straight-only .sun-text {
        font-size: 60px !important;
        font-weight: 500 !important;
      }
    }

    @media (max-width: 431px) {
      #slide-4 .slide-bg {
        object-position: 53% center !important;
      }
      #slide-4 .slide-text {
        padding-top: 0 !important;
        padding-left: 0 !important;
        max-width: 100% !important;
        text-align: center !important;
        align-items: center !important;
      }
      #slide-4 .p-main {
        font-size: 18px !important;
        margin-bottom: 450px !important;
      }
      #slide-4 .p-specs {
        font-size: 13px !important;
      }
      #slide-4 .arched-text.straight-only text {
        font-size: 55px !important;
        font-weight: 400 !important;
      }
      #slide-4 .arched-text.straight-only .sun-text {
        font-size: 60px !important;
        font-weight: 500 !important;
      }
    }

    @media (max-width: 415px) {
      #slide-4 .slide-text {
        text-align: center !important;
        align-items: center !important;
        padding-top: 0 !important;
      }
      #slide-4 .p-main {
        font-size: 16px !important;
        margin-bottom: 440px !important;
      }
      #slide-4 .p-specs {
        font-size: 13px !important;
      }
      #slide-4 .arched-text.straight-only text {
        font-size: 50px !important;
        font-weight: 400 !important;
      }
      #slide-4 .arched-text.straight-only .sun-text {
        font-size: 60px !important;
        font-weight: 500 !important;
      }
    }

    @media (max-width: 391px) {
      #slide-4 .p-main {
        font-size: 14px !important;
        margin-bottom: 400px !important;
      }
    }

    @media (max-width: 376px) {
      #slide-4 .slide-bg {
        object-position: 50% center !important;
      }
      #slide-4 .p-main {
        font-size: 12px !important;
        margin-bottom: 300px !important;
      }
      #slide-4 .arched-text.straight-only {
        width: 100% !important;
      }
      #slide-4 .arched-text.straight-only text {
        font-size: 46px !important;
      }
      #slide-4 .arched-text.straight-only .sun-text {
        font-size: 54px !important;
      }
    }

    @media (max-width: 361px) {
      #slide-4 .slide-text {
        padding-left: 10px !important;
        padding-top: 0 !important;
      }
      #slide-4 .p-main {
        margin-bottom: 340px !important;
      }
    }

    @media (max-width: 344px) {
      #slide-4 .p-main {
        margin-bottom: 430px !important;
      }
    }

    /* ── Indicators responsive size ── */
    @media (max-width: 768px) {
      .hero .carousel-indicators [data-bs-target] {
        width: 8px !important;
        height: 8px !important;
      }
    }

    @media (max-width: 576px) {
      .hero .carousel-indicators [data-bs-target] {
        width: 6px !important;
        height: 6px !important;
      }
      .hero .carousel-indicators {
        margin-bottom: 10px !important;
      }
    }

    @media (max-width: 376px) {
      .hero .carousel-indicators [data-bs-target] {
        width: 5px !important;
        height: 5px !important;
      }
      .hero .carousel-indicators {
        margin-bottom: 6px !important;
      }
    }

    /* ── Entrance animations ── */
    /* ── Controls ── */
    .hero .carousel-control-prev,
    .hero .carousel-control-next {
      width: 5%;
      opacity: 0.5;
      transition: opacity 0.3s;
      z-index: 10;
    }

    .hero .carousel-control-prev:hover,
    .hero .carousel-control-next:hover {
      opacity: 0.9;
    }

    .hero .carousel-control-next-icon,
    .hero .carousel-control-prev-icon {
      background: none;
      font-size: clamp(20px, 2.5vw, 32px);
      line-height: 1;
    }

    /* ── Indicators ── */
    .hero .carousel-indicators {
      z-index: 10;
      margin-bottom: 18px;
      list-style: none;
    }

    .hero .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: none;
      background: rgba(255, 255, 255, 0.45);
      transition: background 0.3s, transform 0.3s;
      cursor: pointer;
    }

    .hero .carousel-indicators .active {
      background: #fff;
      transform: scale(1.3);
    }

    /* END OF HERO SECTION  */

    /* METRICS SECTION */
    .metrics-section {
      background: url('../img/hero-carousel/banner.png') center / cover no-repeat;
      padding: 50px 20px;
      position: relative;
      overflow: hidden;
    }

    .metrics-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: transparent;
      pointer-events: none;
    }

    .metrics-container {
      max-width: 100%;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      align-items: center;
      gap: clamp(30px, 5vw, 40px);
      position: relative;
      z-index: 1;
      padding: 0 clamp(20px, 4vw, 40px);
    }

    .metric-item {
      text-align: center;
      color: white;
      flex: 1 1 200px;
      min-width: 180px;
    }

    .metric-number {
      font-size: clamp(2rem, 5vw, 35px);
      font-weight: 500;
      margin: 0 0 10px 0;
      color: white;
      line-height: 1;
      letter-spacing: -1px;
    }

    .metric-label {
      font-size: clamp(1rem, 3vw, 1.5rem);
      font-weight: 500;
      margin: 0;
      color: rgba(255, 255, 255, 0.9);
      text-transform: capitalize;
      line-height: 1.4;
    }

    @media (max-width: 1024px) {
      .metrics-container {
        flex-wrap: nowrap;
        gap: 10px;
      }
      .metric-item {
        flex: 1 1 0;
        min-width: 0;
      }
      .metric-number {
        font-size: clamp(1.5rem, 3vw, 2rem);
      }
      .metric-label {
        font-size: clamp(0.85rem, 1.5vw, 1rem);
      }
    }

    @media (max-width: 968px) {
      .metrics-container {
        flex-wrap: wrap;
        gap: 30px;
      }
      .metric-item {
        flex: 0 0 calc(50% - 20px);
      }
      .metric-number {
        font-size: clamp(2rem, 5vw, 35px);
      }
      .metric-label {
        font-size: clamp(1rem, 3vw, 1.5rem);
      }
    }

    @media (max-width: 480px) {
      .metric-item {
        flex: 0 0 100%;
      }
    }

/* END OF METRICS SECTION */

    /* FLAGSHIP SECTION */
    
    .flagship-products {
      max-width: 100%;
      margin: 0 auto;
      background-color: white !important;
    }

    .flagship-products-header {
      display: flex;
      flex-wrap: nowrap;
      justify-content: space-between;
      align-items: flex-start;
      max-width: 100%;
      gap: 15px;
    }

    .flagship-products-header .heading h1 { white-space: nowrap; }

    .flagship-products-header .secondary-btn {
      height: fit-content;
    }

    .flagship-products-title {
      font-size: clamp(2rem, 5vw, 2.5rem);
      font-weight: 500;
      color: #000;
      margin: 0;
    }

    .flagship-products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: clamp(20px, 4vw, 30px);
      margin-block: 60px;
      max-width: 100%;
    }

    .flagship-product-card {
      background-color: transparent;
      border-radius: 12px;
      padding: clamp(15px, 3vw, 20px);
      display: flex;
      flex-direction: column;
      height: 100%;
      position: relative;
      overflow: hidden;
      transform: translate3d(0, 0, 0);
      backface-visibility: hidden;
      will-change: transform, box-shadow;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .flagship-product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #1a1a1a, color-mix(in srgb, #1a1a1a, transparent 50%));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
      z-index: 10;
    }

    .flagship-product-card:hover {
      transform: translate3d(0, -10px, 0);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      border-color: #1a1a1a;
      background: linear-gradient(135deg, color-mix(in srgb, #1a1a1a, transparent 96%) 0%, transparent 100%);
    }

    .flagship-product-card:hover::before {
      transform: scaleX(1);
    }

    .flagship-product-card .secondary-btn {
      align-self: flex-end;
    }

    /* Base style for all images */
    .flagship-product-image {
      width: 100%;
      aspect-ratio: 3 / 4;
      background-color: #e0e0e0;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 20px;
      align-self: stretch;
      position: relative;
    }

    .flagship-product-image img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1.2);
    }

    .flagship-product-info {
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .flagship-product-name {
      display: flex;
      flex-direction: column;
      font-size: clamp(0.95rem, 2.8vw, 1.2rem);
      font-weight: 400;
      text-align: right;
      color: #000;
      margin: 0 0 15px 0;
      line-height: 1.4;
      flex-grow: 1;
    }

    .flagship-product-name .product-line-one {
      font-weight: 400;
    }

    .flagship-product-name .product-line-two {
      font-weight: 600;
    }

    .flagship-product-footer {
      display: flex;
      justify-content: flex-end;
      margin-top: auto;
    }

    .flagship-products-description {
      text-align: justify;
      max-width: 100%;
      margin: 0 auto;
    }

    .flagship-products-description strong {
      font-weight: 500;
      color: #000;
    }

    @media (max-width: 767px) {
      .flagship-products-header {
        align-items: center !important;
      }
      .flagship-products-header .heading h1 {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
      }
    }

    /* END OF FLAGSHIP SECTION */

    /* STANDOUT FEATURES SECTION */

    section.standout-features {
      max-width: 100%;
      margin: 0 auto;
      background: #1a1a1a;
    }

    .standout-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: clamp(20px, 4vw, 25px);
      margin-top: 60px;
      align-items: stretch;
    }

    .standout-feature-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .standout-feature-card {
      background: #2f2f2f;
      border-radius: 12px;
      padding: 0;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      cursor: pointer;
      width: 100%;
      flex-grow: 1;
      transform: translate3d(0, 0, 0);
      backface-visibility: hidden;
      will-change: transform, box-shadow;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .standout-feature-card::after {
      content: "CLICK TO KNOW MORE";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 15px 0;
      background: #1a1a1a;
      color: #ffffff;
      font-family: var(--default-font);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 2px;
      text-align: center;
      z-index: 5;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      transform: translate3d(0, 100%, 0);
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .standout-feature-item:hover .standout-feature-card {
      transform: translate3d(0, -10px, 0);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    }

    .standout-feature-item:hover .standout-feature-card::after {
      transform: translate3d(0, 0, 0);
    }

    .standout-feature-image-wrapper {
      width: 100%;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: clamp(15px, 2vw, 20px);
      background: #2f2f2f;
      overflow: hidden;
      min-height: 280px;
      aspect-ratio: 1 / 1.1;
    }

    .standout-feature-image {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      transform: scale(1.2);
      transition: transform 0.3s ease;
    }

    .standout-feature-item:nth-child(1) .standout-feature-image {
      max-height: 95% !important;
      width: auto !important;
      transform: scale(1.5) translateY(-40px) translateX(5px)!important;
    }

    .standout-feature-item:nth-child(2) .standout-feature-image {
      max-width: 95% !important;
      height: auto !important;
      transform: scale(1.3) translateY(-35px) !important;
    }

    .standout-feature-content {
      padding: 20px 20px 0 20px;
      background: transparent;
      text-align: center;
      width: 100%;
    }

    .standout-feature-title,
    .standout-feature-subtitle {
      display: flex;
      flex-direction: column;
      font-size: clamp(0.95rem, 2.8vw, 1.2rem);
      text-align: right;
      color: #ffffff;
      margin: 0 0 15px 0;
      line-height: 1.4;
    }

    .standout-feature-title {
      margin-bottom: 5px;
    }

    .standout-feature-title {
      font-weight: 400;
    }

    .standout-feature-subtitle {
      font-weight: 600;
    }

    @media (max-width: 992px) {
      .standout-feature-item:nth-child(1) .standout-feature-image,
      .standout-feature-item:nth-child(2) .standout-feature-image {
        transform: translateY(-10px);
      }
    }

    @media (max-width: 576px) {
      .standout-feature-item:nth-child(1) .standout-feature-image {
        transform: translateY(-5px); 
        max-height: 85% !important;
      }
      
      .standout-feature-item:nth-child(2) .standout-feature-image {
        transform: translateY(-5px);
        max-width: 90% !important;
      }
    }

    @media (max-width: 480px) {
      .standout-feature-card {
        min-height: auto;
      }
    }

    /* END OF STANDOUT FEATURES SECTION */

    /* SOFTWARE SECTION  */

    #software.section {
      background-color: transparent !important;
      max-width: 100%;
      animation: none !important;
      padding-bottom: 0 !important;
    }

    #software.section h2 {
      font-size: 2.5rem !important;
      margin-bottom: 0px !important;
      color: #000 !important;
      font-weight: 450 !important;
    }

    .niv-das-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      margin-bottom: 60px;
      width: 100%;
    }

    .niv-das-header .heading {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .niv-das-header .heading h1 {
      padding-bottom: 0;
    }

    .niv-das-description {
      margin-bottom: 50px;
    }

    .niv-das-description strong {
      font-weight: 500;
      color: #000;
    }

    .niv-das-mockup {
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 50px;
    }

    .niv-das-mockup img {
      width: 100%;
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    .ready-badge {
      display: inline-flex;
      background: rgba(61, 181, 82, 0.1);
      border: 1px solid rgba(0, 255, 136, 0.3);
      padding: 5px 20px;
      margin-left: 20px;
      border-radius: 50px;
      color: var(--default-color);
      font-weight: 600;
      font-size: 0.9rem;
    }


    @media (max-width: 768px) {

      .niv-das-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
      }

      .niv-das-header .heading h1 {
        font-size: var(--text-lg) !important;
        white-space: nowrap;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        line-height: 1 !important;
      }

      #software.section h2 {
        font-size: 2rem !important;
      }

      #software.section p {
        font-size: 0.75rem !important;
      }

      .niv-das-mockup {
        margin-bottom: 30px;
      }
    }

    @media (max-width: 480px) {

      .niv-das-title {
        font-size: 1.5rem;
      }

      .niv-das-description p {
        font-size: 0.95rem;
        line-height: 1.6;
      }
    }

    /* END OF SOFTWARE SECTION  */

    /* WHY CHOOSE SECTION */

    section.why-choose {
      max-width: 100%;
      margin: 0 auto;
      background-color: transparent;
      color: inherit;
      scroll-margin-top: unset;
      overflow: unset;
      padding-bottom: 0 !important;
    }

    section.why-choose .why-choose-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: clamp(30px, 6vw, 80px);
      margin-top: 60px;
    }

    section.why-choose .why-choose-card {
      background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
      border-radius: 12px;
      padding: clamp(25px, 4vw, 30px) clamp(20px, 3vw, 25px) clamp(60px, 10vw, 80px);
      position: relative;
      overflow: hidden;
      min-height: clamp(400px, 50vw, 450px);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      transform: translateZ(0); 
      backface-visibility: hidden;
      will-change: transform, box-shadow;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                  box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    section.why-choose .why-choose-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: auto;
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events: none;
      z-index: 10;
    }

    section.why-choose .why-choose-card:hover {
      transform: translateY(-10px) translateZ(0) !important;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    section.why-choose .why-choose-card:hover::before {
      transform: scaleX(1);
    }

    section.why-choose .why-choose-card:nth-child(1)::before { background: #95C93F; }
    section.why-choose .why-choose-card:nth-child(2)::before { background: #3DB552; }
    section.why-choose .why-choose-card:nth-child(3)::before { background: #00AB9A; }
    section.why-choose .why-choose-card:nth-child(4)::before { background: #008B7F; }

    section.why-choose .why-choose-card-title {
      font-size: clamp(1.5rem, 4vw, 1.75rem);
      font-weight: 600;
      margin-bottom: 15px;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
      min-height: 2.5em;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    section.why-choose .why-choose-card:nth-child(1) .why-choose-card-title {
      background: #95C93F;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: #95C93F;
    }

    section.why-choose .why-choose-card:nth-child(2) .why-choose-card-title {
      background: #3DB552;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: #3DB552;
    }

    section.why-choose .why-choose-card:nth-child(3) .why-choose-card-title {
      background: #00AB9A;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: #00AB9A;
    }

    section.why-choose .why-choose-card:nth-child(4) .why-choose-card-title {
      background: #008B7F;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      color: #008B7F;
    }

    section.why-choose .why-choose-card-description {
      color: #ffffff;
      font-size: clamp(1.1rem, 2.5vw, 1.3rem);
      line-height: var(--lh-relaxed);
      margin: 20px 0;
      text-align: center;
    }

    section.why-choose .why-choose-number {
      position: absolute;
      bottom: -1.8rem;
      right: clamp(10px, 3vw, 20px);
      font-size: clamp(5rem, 20vw, 12rem);
      font-weight: 800;
      color: rgb(255, 255, 255);
      line-height: 0.85;
    }

    @media (max-width: 768px) {
      section.why-choose .why-choose-number {
        font-size: 6.5rem;
        bottom: -1rem;
      }
    }

    @media (max-width: 480px) {
      section.why-choose .why-choose-number {
        font-size: 6rem;
      }
    }

    /* END OF WHY CHOOSE SECTION */

    /* TESTIMONIALS SECTION */

    section.testimonials {
      max-width: 100%;
      margin: 0 auto;
      background: transparent;
      color: var(--default-color);
      scroll-margin-top: 100px;
      overflow: clip;
      padding-bottom: 0 !important;
    }

    section.testimonials .section-title span,
    section.testimonials .section-title h2 {
      color: var(--heading-color);
    }

    section.testimonials .section-title p {
      color: var(--default-color);
    }

    section.testimonials .swiper {
      padding-bottom: 60px;
    }

    section.testimonials .swiper-wrapper {
      display: flex;
      align-items: stretch;
      margin-top: 60px;
    }

    section.testimonials .swiper-slide {
      height: auto;
      display: flex;
      opacity: 1;
      transform: scale(1);
      transition: opacity 0.3s, transform 0.3s;
    }

    section.testimonials .testimonial-item-new {
      background-color: var(--surface-color);
      border-radius: 15px;
      padding: 30px;
      margin: 10px 0;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      color: #1A1A1A;
      width: 100%;
      min-height: 400px;
      position: relative;
      overflow: hidden;
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    section.testimonials .testimonial-item-new::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--default-color), color-mix(in srgb, var(--default-color), transparent 50%));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    section.testimonials .testimonial-item-new:hover {
      border-color: var(--default-color);
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12), 0 0 0 1px color-mix(in srgb, var(--default-color), transparent 80%);
    }

    section.testimonials .testimonial-item-new:hover::before {
      transform: scaleX(1);
    }

    section.testimonials .testimonial-item-new .profile-header-new {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    section.testimonials .testimonial-item-new .testimonial-img-new {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
      border: 3px solid var(--default-color);
    }

    section.testimonials .testimonial-item-new .profile-info-new h3 {
      font-size: 19px;
      font-weight: 600;
      margin: 0;
      color: var(--heading-color);
    }

    section.testimonials .testimonial-item-new .profile-info-new h4 {
      font-size: 15px;
      color: color-mix(in srgb, var(--heading-color), transparent 30%);
      margin: 0;
      font-weight: 400;
    }

    section.testimonials .testimonial-item-new .stars-new {
      margin-bottom: 15px;
    }

    section.testimonials .testimonial-item-new .stars-new i {
      color: #FFC107;
      font-size: 18px;
      margin: 0 1px;
    }

    section.testimonials .testimonial-item-new .testimonial-text-new {
      font-size: 16px;
      line-height: var(--lh-relaxed);
      color: #333333;
      position: relative;
      flex-grow: 1;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 12px;
      padding-top: 10px;
    }

    section.testimonials .testimonial-item-new .quote-icon-new {
      position: relative;
      display: inline-block;
      flex-shrink: 0;
      font-size: 32px;
      line-height: 1;
      color: var(--default-color);
      opacity: 0.4;
      margin-top: -5px;
    }

    section.testimonials .testimonial-item-new .testimonial-footer-new {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    }

    section.testimonials .testimonial-item-new .company-logo-new {
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      color: #333;
    }

    section.testimonials .testimonial-item-new .company-logo-new img {
      max-height: 35px;
      width: auto;
      order: 1;
    }

    section.testimonials .testimonial-item-new .company-logo-new span.company-name {
      order: 2;
      text-align: right;
      font-weight: 500;
    }

    section.testimonials .swiper-pagination {
      bottom: 0px !important;
      position: absolute;
      margin-top: 0;
    }

    section.testimonials .swiper-pagination .swiper-pagination-bullet {
      width: 12px;
      height: 12px;
      background-color: color-mix(in srgb, var(--default-color), transparent 70%);
      opacity: 1;
    }

    section.testimonials .swiper-pagination .swiper-pagination-bullet-active {
      background-color: var(--default-color);
    }

    section.testimonials .testimonial-item {
      display: none !important;
    }

    /*--------------------------------------------------------------
        # Header/Hero Layout Fix
        --------------------------------------------------------------*/
    body.index-page {
      padding-top: 0 !important;
      padding-left: 0;
      padding-right: 0;
    }

    main.main {
      padding-top: 90px;
      padding-left: 0;
      padding-right: 0;
    }

    section.hero {
      margin-top: -90px;
    }

    /*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
    .clients {
      overflow-x: hidden;
      padding: 60px 0;
      /* Responsive adjustments */
    }

    .clients .clients-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      padding: 20px 0;
    }

    .clients .clients-slider:not(:last-child) {
      margin-bottom: 20px;
    }

    .clients .clients-track {
      display: flex;
      width: fit-content;
      animation-duration: 30s;
      animation-timing-function: linear;
      animation-iteration-count: infinite;
    }

    .clients .clients-track.track-1 {
      animation-name: scroll-left;
    }

    .clients .clients-track.track-2 {
      animation-name: scroll-right;
    }

    .clients .clients-track:hover {
      animation-play-state: paused;
    }

    .clients .clients-slide {
      flex: 0 0 auto;
      width: 200px;
      height: 100px;
      margin: 0 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: transparent !important;
      border-radius: 10px;
      /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .clients .clients-slide::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg,
          transparent,
          color-mix(in srgb, var(--default-color), transparent 96%),
          transparent);
      transition: 0.5s;
    }

    .clients .clients-slide:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .clients .clients-slide:hover::before {
      left: 100%;
    }

    .clients .clients-slide:hover img {
      filter: none;
      opacity: 1;
    }

    .clients .clients-slide img {
      max-width: 80%;
      max-height: 60%;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }

    .company-logo-new {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .company-logo-new img {
      height: 24px;
      width: auto;
      object-fit: contain;
      vertical-align: middle;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-2080px);
      }
    }

    @keyframes scroll-right {
      0% {
        transform: translateX(-2080px);
      }

      100% {
        transform: translateX(0);
      }
    }

    @media (max-width: 991px) {
      .clients .clients-slide {
        width: 180px;
        height: 90px;
        margin: 0 20px;
      }

      @keyframes scroll-left {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(-1760px);
        }
      }

      @keyframes scroll-right {
        0% {
          transform: translateX(-1760px);
        }

        100% {
          transform: translateX(0);
        }
      }
    }

    @media (max-width: 767px) {
      .clients .clients-slide {
        width: 150px;
        height: 75px;
        margin: 0 15px;
      }

      @keyframes scroll-left {
        0% {
          transform: translateX(0);
        }

        100% {
          transform: translateX(-1440px);
        }
      }

      @keyframes scroll-right {
        0% {
          transform: translateX(-1440px);
        }

        100% {
          transform: translateX(0);
        }
      }
    }

    /* END OF CLIENTS SECTION */

    @media (max-width: 1199px) {
      .navmenu ul li .btn-get-mobile-touch {
        display: block;
        margin: 10px 15px;
        padding: 8px 20px;
        border-radius: 50px;
        background: #00c868;
        color: #ffffff;
        text-align: center;
        font-weight: 600;
      }

      .navmenu ul li .btn-get-mobile-touch:hover {
        background: #00e676;
        color: #ffffff;
      }
    }

    /* ========================================
   GLOBAL MOBILE RESPONSIVENESS FIXES
   ======================================== */

    @media (max-width: 768px) {

      body,
      html {
        overflow-x: hidden;
        max-width: 100vw;
      }
    }

    @media (max-width: 480px) {

      /* Make touch targets bigger */
      button,
      a:not(.footer a) {
        min-height: 44px;
        min-width: 44px;
      }
    }

    .cinematic-text {
      background: linear-gradient(120deg, #ffffff 0%, #f0f0f0 50%, #ffd700 100%);
      background-size: 200% auto;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: shineText 5s linear infinite;
    }

    @keyframes shineText {
      to {
        background-position: 200% center;
      }
    }

    .floating-element {
      animation: floating 6s ease-in-out infinite;
    }

    @keyframes floating {
      0% {
        transform: translateY(0px);
      }

      50% {
        transform: translateY(-20px);
      }

      100% {
        transform: translateY(0px);
      }
    }

      .flagship-product-card,
      .standout-feature-card,
      .why-choose-card {
        transform-style: preserve-3d;
        transform: perspective(1000px);
      }

      .flagship-product-card *,
      .standout-feature-card *,
      .why-choose-card * {
        transform: translateZ(20px);
      }
      
      /* Button ID Selectors */
      #primary-btn-slide-1 {
        background: linear-gradient(135deg, #2d8c7e, #4db8a8);
        color: #fff;
        box-shadow: 0 4px 15px rgba(45, 140, 126, 0.35);
      }

      #primary-btn-slide-1:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(45, 140, 126, 0.45);
      }

      #primary-btn-slide-4 {
        background: linear-gradient(to right, #f7b733, #fcc853);
        color: #333;
        box-shadow: 0 4px 15px rgba(247, 183, 51, 0.35);
      }

      #primary-btn-slide-4:hover {
        color: #222;
        transform: scale(1.05);
        box-shadow: 0 6px 25px rgba(247, 183, 51, 0.45);
      }

