@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  /* https://kilianvalkhof.com/2022/css-html/your-css-reset-needs-text-size-adjust-probably/ */
  html {
    -moz-text-size-adjust: none;
    -webkit-text-size-adjust: none;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: none;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  p,
  figure,
  blockquote,
  dl,
  dd {
    margin: 0;
  }

  /* https://www.scottohara.me/blog/2019/01/12/lists-and-safari.html */
  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  body {
    min-block-size: 100vh;
    line-height: 1.6;
  }

  h1,
  h2,
  h3,
  button,
  input,
  label {
    line-height: 1.1;
  }

  p:empty {
    display: none;
  }

  img,
  picture {
    max-inline-size: 100%;
    display: block;
  }

  input,
  button,
  textarea,
  select {
    font: inherit;
  }
}

@layer base {
  :root {
    --black: #010101;
    --white: #fff;
    --primary: #66e5ff;
    --light-primary: oklch(from var(--primary) clamp(0, l + 0.22, 1) calc(c * 0.9) h);
    --dark-primary: oklch(from var(--primary) clamp(0, l - 0.22, 1) calc(c * 0.92) h);
    --dark-gray: #161515;
    --md-gray: #505050;
    --light-gray: #f3f3f3;
    --gray: #929292;

    --border-radius-xS: 0.25rem;
    --border-radius-1: 1rem;
    --border-radius-2: 1.5rem;
    --border-radius-3: 2rem;
    --border-radius-4: 3rem;
  }

  @view-transition {
    navigation: auto;
  }

  @media (prefers-reduced-motion: no-preference) {
    html {
      scroll-behavior: smooth;
    }
  }

  html {
    scroll-padding: 2rem;
    overflow-x: hidden;
  }

  body {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: var(--white);
    background-color: var(--black);
    position: relative;
  }

  h1 {
    font-weight: 700;
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.875rem;
    font-weight: 700;
  }

  a {
    color: var(--primary);
    text-decoration: none;
  }
}

@layer layout {
  .wrapper {
    --wrapper-max-width: 1200px;
    --wrapper-padding: 1rem;
    width: 100%;

    max-width: var(--wrapper-max-width);
    margin-inline: auto;
    padding-inline: var(--wrapper-padding);
  }

  .wrapper[data-width="narrowXS"] {
    --wrapper-max-width: 400px;
  }

  .wrapper[data-width="narrowMd"] {
    --wrapper-max-width: 540px;
  }

  .wrapper[data-width="narrow"] {
    --wrapper-max-width: 720px;
  }

  .wrapper[data-width="medium"] {
    --wrapper-max-width: 1040px;
  }

  .wrapper[data-width="wide"] {
    --wrapper-max-width: 1240px;
  }

  .wrapper[data-width="largeXl"] {
    --wrapper-max-width: 1600px;
  }
  section {
    position: relative;
    overflow: hidden;

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
      pointer-events: none;
    }
    h2 {
      animation: titlePulse 0.8s ease-out;
    }
  }
  .section {
    padding-block: 8rem;

    @media (max-width: 767px) {
      padding-block: 4rem;
    }
  }

  .content-intro {
    animation: slideInLeft 1s ease-out 0.3s both;
  }

  .content-heading,
  .advantages-heading {
    position: relative;
    overflow: hidden;
  }
}

@layer components {
  /* Header */
  .header {
    position: fixed;
    z-index: 999;
    width: 100%;
    padding: 30px 0;
    transition: background-color 0.3s ease-in-out;
    background-color: transparent;

    &.scrolled {
      background-color: var(--black);
    }

    @media screen and (max-width: 767px) {
      padding: 20px 0;
    }

    .header-content {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;

      @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 20px;
      }
      .logo {
        width: 150px;
        flex-shrink: 0;

        img {
          width: 100%;
          height: 100%;
          display: block;
        }
      }

      .hamburger {
        display: none;

        @media (max-width: 767px) {
          display: block;
          position: absolute;
          right: 0;
        }
      }

      .menu {
        display: flex;
        align-items: center;
        gap: 40px;

        @media screen and (max-width: 1279px) {
          gap: 20px;
        }
        @media screen and (max-width: 991px) {
          gap: 15px;
        }
        @media screen and (max-width: 767px) {
          flex-wrap: wrap;
          justify-content: center;
          gap: 15px 20px;
          display: none;
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
          background: white;
          padding: 15px 0;
        }

        &.active {
          @media screen and (max-width: 767px) {
            display: flex;
          }
        }

        .menu-item {
          font-family: "Poppins", sans-serif;
          font-size: 14px;
          font-weight: 600;
          line-height: 20px;
          text-transform: uppercase;
          color: var(--white);
          text-decoration: none;
          white-space: nowrap;
          transition: color 0.3s ease;

          &:hover {
            color: var(--primary);
          }

          @media screen and (max-width: 1279px) {
            font-size: 12px;
          }
        }

        .dropdown {
          display: flex;
          align-items: center;
          gap: 10px;
          position: relative;
          display: inline-block;

          .dropbtn {
            color: var(--white);
            background: none;
            border-radius: 0;
            border: none;
            text-transform: uppercase;
          }

          /* Arrow */
          .arrow {
            cursor: pointer;
            transition: transform 0.3s ease;
            margin-left: 5px;
          }

          /* Rotate arrow when active */
          .arrow.rotate {
            transform: rotate(180deg);
          }

          /* Menu */
          .dropdown-content {
            display: none;
            position: absolute;
            background: #f1f1f1;
            min-width: 120px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
            margin-top: 5px;
          }

          /* Show menu */
          .dropdown-content.show {
            display: block;
          }

          /* Links */
          .dropdown-content a {
            display: block;
            padding: 12px 16px;
            text-decoration: none;
            color: black;
          }

          .dropdown-content a:hover {
            background: #ddd;
          }
        }

        .menu-divider {
          width: 0;
          height: 20px;
          position: relative;
          flex-shrink: 0;
          display: flex;
          align-items: center;
          justify-content: center;

          &:after {
            content: "";
            position: absolute;
            width: 20px;
            height: 1px;
            background-color: var(--white);
            transform: rotate(90deg);
          }

          @media screen and (max-width: 991px) {
            display: none;
          }
        }
      }
    }
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    overflow: hidden;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 50px 0;

    &::before {
      content: url(../images/shadow-hero.svg);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      display: inline-block;
      width: 100%;
      height: 100%;
      vertical-align: middle;
      pointer-events: none;
      z-index: 1;
    }

    &.hero-small {
      min-height: 500px;
      transform: none !important;
    }

    @media screen and (max-width: 767px) {
      min-height: 600px;
    }
    video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      animation: parallaxZoom 8s ease-out forwards;
    }
    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;

      gap: 30px;
      animation: slideUpFade 1s ease-out;

      .hero-title {
        font-family: "K2D", sans-serif;
        font-size: 56px;
        font-weight: 100;
        line-height: 64px;
        color: var(--white);
        margin: 0;
        max-width: 720px;

        @media screen and (max-width: 1279px) {
          font-size: 48px;
          line-height: 56px;
        }

        @media screen and (max-width: 767px) {
          font-size: 36px;
          line-height: 44px;
        }
      }

      .hero-description {
        font-size: 18px;
        line-height: 24px;
        color: var(--white);
        max-width: 540px;

        @media screen and (max-width: 767px) {
          font-size: 16px;
        }
      }
    }
  }

  /* Features Section */
  .features-section {
    background: var(--white);

    .features-grid {
      display: flex;
      align-items: stretch;

      @media screen and (max-width: 991px) {
        flex-wrap: wrap;
      }

      .feature-card {
        position: relative;
        flex: 1;
        min-width: 0;
        padding: 100px 80px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        opacity: 1; /* Changed from 0 to ensure visibility */
        animation: featurePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
        transform-origin: center;
        transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

        &:nth-child(1) {
          animation-delay: 0.1s;
          animation: featurePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
        }

        &:nth-child(2) {
          animation-delay: 0.15s;
          animation: featurePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
        }

        &:nth-child(3) {
          animation-delay: 0.2s;
          animation: featurePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
        }

        &:nth-child(4) {
          animation-delay: 0.25s;
          animation: featurePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s both;
        }

        &:nth-child(5) {
          animation-delay: 0.3s;
          animation: featurePop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
        }

        &::before {
          content: "";
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
          opacity: 0;
          transition: opacity 0.4s ease;
          pointer-events: none;
          border-radius: inherit;
        }

        &:hover::before {
          opacity: 1;
        }

        &:hover {
          transform: translateY(-8px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
          .feature-icon-arrow {
            transform: rotate(135deg);
            opacity: 0.7;
          }
          .feature-arrow-bottom {
            opacity: 1;
            transform: translateY(0);
          }
        }

        @media screen and (max-width: 991px) {
          min-width: calc(50% - 1px);
        }

        @media screen and (max-width: 767px) {
          min-width: 100%;
          padding: 60px 40px;
        }
        .feature-header {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
          h3 {
            font-size: 15px;
            font-weight: 700;
            line-height: 28px;
            text-transform: uppercase;
            color: #161616;
            margin: 0;
          }
          .feature-icon-arrow {
            flex-shrink: 0;
          }
        }
        .feature-line {
          width: 80px;
          height: 4px;
          background-color: #161616;
        }
        .feature-description {
          font-size: 18px;
          font-weight: 300;
          line-height: 24px;
          color: #161616;
        }

        .feature-arrow-bottom {
          position: absolute;
          bottom: 30px;
          right: 30px;

          opacity: 0;
          transform: translateY(10px);
          transition: all 0.4s ease;
        }

        .feature-icon-arrow {
          transition: all 0.3s ease;
          transform: rotate(45deg);
        }
      }
      .feature-divider {
        width: 1px;
        background-color: #e0e0e0;
        flex-shrink: 0;

        @media screen and (max-width: 991px) {
          &:nth-of-type(2n) {
            display: none;
          }
        }

        @media screen and (max-width: 767px) {
          display: none;
        }
      }
    }
  }

  /* Features Page Styles */

  .feature-detail-section {
    padding: 100px 0;
    background: var(--white);

    @media screen and (max-width: 767px) {
      padding: 60px 0;
    }

    &.feature-detail-alternate {
      background: #eff3f5;

      @media screen and (max-width: 991px) {
        .feature-detail-content {
          flex-direction: column-reverse;
        }
      }
    }

    .feature-detail-content {
      display: flex;
      gap: 120px;
      align-items: center;
      justify-content: center;

      @media screen and (max-width: 1279px) {
        gap: 80px;
      }

      @media screen and (max-width: 991px) {
        flex-direction: column;
        gap: 60px;
      }
    }

    .feature-detail-text {
      flex: 0 0 480px;
      display: flex;
      flex-direction: column;
      gap: 15px;

      @media screen and (max-width: 991px) {
        flex: 1;
        max-width: 600px;
      }

      .feature-detail-title {
        font-family: "K2D", sans-serif;
        font-size: 36px;
        font-weight: 200;
        line-height: 42px;
        color: #161616;
        margin: 0;

        @media screen and (max-width: 767px) {
          font-size: 28px;
          line-height: 34px;
        }
      }

      .feature-detail-description {
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: #161616;
        display: flex;
        flex-direction: column;
        gap: 20px;

        p {
          margin: 0;
        }

        .feature-detail-list {
          list-style: none;
          padding: 0;
          margin: 0;
          display: flex;
          flex-direction: column;

          li {
            padding: 10px 0;
            border-bottom: 1px solid #c1d3d7;
            font-family: "Poppins", sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 20px;
            color: #161616;

            &:first-child {
              padding-top: 0;
            }
          }
        }
      }
    }

    .feature-detail-icon {
      flex: 0 0 300px;
      width: 300px;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;

      @media screen and (max-width: 767px) {
        flex: 0 0 200px;
        width: 200px;
        height: 200px;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
  }

  /* Content Section */
  .content-section {
    background: #e0e1e4;
    padding: 150px 0;
    overflow: hidden;
    position: relative;
    .content-grid {
      display: flex;
      gap: 100px;
      align-items: flex-start;

      @media screen and (max-width: 991px) {
        flex-direction: column;
        gap: 60px;
      }
      .content-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 30px;
        max-width: 50%;

        @media screen and (max-width: 991px) {
          max-width: 100%;
        }
        .content-intro {
          display: flex;
          flex-direction: column;
          gap: 10px;
          .content-label {
            font-size: 15px;
            font-weight: 700;
            line-height: 28px;
            text-transform: uppercase;
            color: #161616;
          }

          .content-heading {
            font-family: "K2D", sans-serif;
            font-size: 56px;
            font-weight: 100;
            line-height: 64px;
            color: #161616;
            margin: 0;

            @media screen and (max-width: 1279px) {
              font-size: 48px;
              line-height: 56px;
            }

            @media screen and (max-width: 767px) {
              font-size: 36px;
              line-height: 44px;
            }
          }
        }
        .content-body {
          font-size: 18px;
          line-height: 24px;
          color: #161616;
          max-width: 480px;
          animation: slideInRight 1s ease-out 0.5s both;
        }
      }
      .browser-image {
        position: absolute;
        bottom: 0;
        right: 50px;

        div {
          transition: transform 0.3s ease;
        }

        img {
          width: 100%;
          height: auto;
          display: block;
        }
      }
    }

    .content-browser {
      @media screen and (max-width: 1279px) {
        width: 560px;
      }

      @media screen and (max-width: 991px) {
        width: 100%;
      }
    }
  }

  /* Services Section */
  .services-section {
    padding: 150px 0;
    background: var(--white);
    .services-intro {
      text-align: center;
      margin-bottom: 30px;
      .services-label {
        font-size: 15px;
        font-weight: 700;
        line-height: 28px;
        text-transform: uppercase;
        color: #161616;
        margin-bottom: 10px;
      }
      .services-subtitle {
        font-size: 24px;
        font-weight: 300;
        line-height: 30px;
        color: #161616;
      }
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;

      @media screen and (max-width: 991px) {
        flex-wrap: wrap;
      }

      @media screen and (max-width: 767px) {
        flex-direction: column;
      }
      .service-card {
        flex: 1;
        background: linear-gradient(180deg, #3d3d3d 0%, #2e2e2e 25%, #1f1f1f 50%, #0f0f0f 75%, #080808 87.5%, #000 100%);
        border-radius: 30px;
        padding: 70px 10px;
        display: flex;
        width: 340px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        text-align: center;
        /* animation: float 3s ease-in-out infinite; */

        &:nth-child(2) {
          animation-delay: 0.5s;
        }

        @media screen and (max-width: 991px) {
          min-width: calc(50% - 8px);
        }

        @media screen and (max-width: 767px) {
          min-width: 100%;
        }
        .service-icon {
          width: 80px;
          height: 80px;
          flex-shrink: 0;
        }
        .service-title {
          font-size: 20px;
          font-weight: 500;
          line-height: normal;
          color: var(--white);
        }
      }
    }
  }

  /* Advantages Section */
  .advantages-section {
    background: url(../images/bck.png) no-repeat center center/cover;
    background-attachment: fixed;
    padding: 200px 0;
    position: relative;

    video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.7;
      animation: parallaxFloat 15s ease-in-out infinite;
    }
    .advantages-grid {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 100px;

      @media screen and (max-width: 1279px) {
        gap: 60px;
      }

      @media screen and (max-width: 991px) {
        flex-direction: column;
        gap: 40px;
      }
      .advantages-heading {
        font-family: "K2D", sans-serif;
        font-size: 80px;
        font-weight: 100;
        line-height: 90px;
        color: var(--white);
        max-width: 486px;
        margin: 0;

        @media screen and (max-width: 1279px) {
          font-size: 48px;
          line-height: 56px;
        }

        @media screen and (max-width: 767px) {
          font-size: 48px;
          line-height: 56px;
        }
      }
      .advantages-list {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0;

        .advantage-item {
          margin-bottom: 32px;
          animation: advantageSlide 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
          opacity: 0;
          transition: all 0.4s ease;
          position: relative;

          &::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ffffff, transparent);
            transition: width 0.4s ease;
          }

          &:hover::after {
            width: 40px;
          }

          &:nth-child(1) {
            animation-delay: 0.1s;
          }

          &:nth-child(2) {
            animation-delay: 0.2s;
          }

          &:nth-child(3) {
            animation-delay: 0.3s;
          }

          &:nth-child(4) {
            animation-delay: 0.4s;
          }

          &:nth-child(5) {
            animation-delay: 0.5s;
          }
          h3 {
            font-size: 30px;
            font-weight: 600;
            line-height: 32px;
            color: var(--white);
            margin: 0 0 8px 0;

            @media screen and (max-width: 767px) {
              font-size: 24px;
            }
          }

          p {
            font-size: 20px;
            line-height: 32px;
            color: var(--white);
            margin: 0;

            @media screen and (max-width: 767px) {
              font-size: 16px;
            }
          }
        }
      }
    }
  }

  /* Testimonials Section */
  .testimonials-section {
    background: #eff3f5;
    padding: 150px 0;
    .testimonials-intro {
      text-align: center;
      margin-bottom: 50px;
      .testimonials-label {
        font-size: 15px;
        font-weight: 700;
        line-height: 28px;
        text-transform: uppercase;
        color: #161616;
        margin-bottom: 10px;
      }

      .testimonials-subtitle {
        font-size: 24px;
        font-weight: 300;
        line-height: 30px;
        color: #161616;
      }
    }
    .testimonials-grid {
      display: flex;
      gap: 40px;

      @media screen and (max-width: 991px) {
        flex-direction: column;
      }
      .testimonial-card {
        flex: 1;
        background: var(--white);
        border-radius: 30px;
        padding: 50px 40px 80px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
        perspective: 1000px;
        transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
        animation: testimonialFadeIn 0.8s ease-out forwards;
        opacity: 0;

        &:nth-child(1) {
          animation-delay: 0.1s;
        }

        &:nth-child(2) {
          animation-delay: 0.2s;
        }

        &:nth-child(3) {
          animation-delay: 0.3s;
        }
        &:hover {
          transform: translateY(-12px) rotateY(2deg);
          box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }
        .testimonial-quote-icon {
          width: 50px;
          height: 50px;
        }
        .testimonial-text {
          font-size: 18px;
          line-height: 24px;
          color: var(--black);
        }
        .testimonial-author {
          margin-top: 10px;

          .author-role {
            font-size: 18px;
            font-weight: 700;
            line-height: 24px;
            color: var(--black);
            margin: 0 0 5px 0;
          }
          .author-company {
            font-size: 16px;
            font-weight: 500;
            line-height: 24px;
            color: var(--black);
            margin: 0;
          }
        }
      }
    }
  }

  /* Case Studies Section */
  .case-studies-section {
    padding-top: 150px;
    border-top: 1px solid #e0e9eb;
    .case-studies-intro {
      text-align: center;
      margin-bottom: 50px;
      .case-studies-label {
        font-size: 15px;
        font-weight: 700;
        line-height: 28px;
        text-transform: uppercase;
        color: #161616;
        margin-bottom: 10px;
      }

      .case-studies-subtitle {
        font-size: 24px;
        font-weight: 300;
        line-height: 30px;
        color: #161616;
        max-width: 960px;
        margin: 0 auto;
      }
    }
    .case-studies-grid {
      display: flex;
      border-top: 1px solid #c1d3d7;

      @media screen and (max-width: 991px) {
        flex-direction: column;
      }
      .case-study-card {
        flex: 1;
        padding: 100px 30px 150px;
        display: flex;
        gap: 50px;
        animation: caseStudySlide 0.8s ease-out forwards;
        opacity: 0;

        &:nth-child(1) {
          animation-delay: 0s;
        }

        &:nth-child(3) {
          animation-delay: 0.15s;
        }

        &:nth-child(5) {
          animation-delay: 0.3s;
        }
        &:hover .case-study-image {
          transform: scale(1.05) rotate(2deg);
        }
        @media screen and (max-width: 767px) {
          flex-direction: column;
          padding: 60px 20px;
        }

        .case-study-content {
          flex: 1;
          display: flex;
          flex-direction: column;
          gap: 30px;
          padding-top: 80px;

          @media screen and (max-width: 767px) {
            padding-top: 0;
          }
          .case-study-number {
            font-size: 18px;
            font-weight: 700;
            line-height: 24px;
            color: #161616;
            margin: 0;
          }
          .case-study-title {
            font-size: 30px;
            font-weight: 300;
            line-height: 36px;
            color: #161616;
            margin: 0;
          }

          .case-study-subtitle {
            font-size: 15px;
            line-height: 20px;
            color: #161616;
            margin: 0;
          }
        }

        .case-study-visual {
          display: flex;
          flex-direction: column;
          gap: 30px;
          align-items: flex-end;

          @media screen and (max-width: 767px) {
            align-items: center;
          }
          .case-study-arrow {
            width: 50px;
            height: 50px;
          }

          .case-study-image {
            width: 240px;
            height: 240px;
            border-radius: 10px;
            overflow: hidden;
            background: #e0e0e0;
            transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);

            img {
              width: 100%;
              height: 100%;
              object-fit: cover;
            }
          }
        }
      }
      .case-study-divider {
        width: 1px;
        background-color: #c1d3d7;
        flex-shrink: 0;

        @media screen and (max-width: 991px) {
          display: none;
        }
      }
    }
  }

  .how-it-works-intro {
    background: var(--white);
    color: var(--dark-gray);
    padding: 100px 0;

    .intro-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;

      @media (max-width: 991px) {
        grid-template-columns: 1fr;
        gap: 50px;
      }
    }

    .intro-text-left,
    .intro-text-right {
      font-family: "Poppins", sans-serif;
      font-size: 0.9375rem;
      font-weight: 400;
      line-height: 1.4;
      color: var(--dark-gray);
    }

    @media (max-width: 767px) {
      padding: 60px 0;

      .intro-content {
        gap: 30px;
      }
    }
  }

  .how-it-works-step {
    background: var(--white);
    color: var(--dark-gray);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--light-gray);

    &:last-of-type {
      border-bottom: 1px solid var(--light-gray);
    }

    @media (max-width: 767px) {
      padding: 80px 0;
    }
  }

  .step-connector {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;

    .connector-line {
      width: 100%;
      height: 2px;
      color: #c1d3d7;
    }
  }

  .step-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: flex-end;

    @media (max-width: 1199px) {
      gap: 50px;
    }

    @media (max-width: 991px) {
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: stretch;
    }
  }

  .step-content {
    display: flex;
    gap: 20px;

    @media (max-width: 991px) {
      flex-direction: row;
    }

    @media (max-width: 767px) {
      flex-direction: column;
    }
  }

  .step-number {
    font-family: "K2D", sans-serif;
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.44;
    text-align: right;
    color: var(--dark-gray);
    background: var(--white);
    border: 1px solid #c1d3d7;
    width: 80px;
    min-width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;

    @media (max-width: 767px) {
      width: 60px;
      min-width: 60px;
      height: 60px;
      font-size: 1.5rem;
    }
  }

  .step-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 100px;

    @media (max-width: 1199px) {
      padding-left: 50px;
    }

    @media (max-width: 991px) {
      padding-left: 0;
    }

    @media (max-width: 767px) {
      gap: 15px;
    }
  }

  .step-title {
    font-family: "K2D", sans-serif;
    font-size: 2.25rem;
    font-weight: 300;
    line-height: 1.33;
    color: var(--dark-gray);
    margin: 0;

    @media (max-width: 767px) {
      font-size: 1.5rem;
    }
  }

  .step-description {
    font-family: "Poppins", sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark-gray);
    margin: 0;
  }

  .step-description-multi {
    display: flex;
    flex-direction: column;
    gap: 20px;

    p {
      font-family: "Poppins", sans-serif;
      font-size: 0.9375rem;
      font-weight: 400;
      line-height: 1.4;
      color: var(--dark-gray);
      margin: 0;
    }
  }

  .step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;

    li {
      font-family: "Poppins", sans-serif;
      font-size: 0.9375rem;
      font-weight: 400;
      line-height: 1.4;
      color: var(--dark-gray);
      padding: 10px 0;
      border-bottom: 1px solid #e0e9eb;

      &:last-child {
        border-bottom: 1px solid #e0e9eb;
      }
    }
  }

  .step-conclusion {
    font-family: "Poppins", sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark-gray);
    margin: 0;
  }

  .step-image {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: auto;

    img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 20px;
      object-fit: cover;
    }

    @media (max-width: 991px) {
      max-width: 100%;
    }
  }

  /* Services Page Styles */

  .services-grid-section {
    background: #e0e9eb;
    padding: 0;

    .wrapper {
      padding: 0;
    }

    .services-cards-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 1px;
      background: #e0e9eb;

      @media screen and (max-width: 1279px) {
        grid-template-columns: repeat(3, 1fr);
      }

      @media screen and (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
      }

      @media screen and (max-width: 767px) {
        grid-template-columns: 1fr;
      }

      .service-feature-card {
        background: white;
        padding: 70px 30px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        justify-content: center;
        position: relative;
        height: 380px;
        transition: all 0.3s ease;
        min-height: 380px;

        &:hover {
          .service-feature-arrow-bottom {
            opacity: 1;
            transform: translateY(0);
          }
        }

        .service-feature-icon {
          width: 80px;
          height: 80px;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;

          svg {
            width: 100%;
            height: 100%;
          }
        }

        .service-feature-title {
          font-family: "Poppins", sans-serif;
          font-size: 20px;
          font-weight: 500;
          line-height: normal;
          text-align: center;
          color: #161616;
          margin: 0;
          max-width: 100%;
        }

        .service-feature-arrow-bottom {
          position: absolute;
          bottom: 26px;
          right: 26px;
          width: 60px;
          height: 60px;
          opacity: 0;
          transform: translateY(10px);
          transition: all 0.3s ease;

          svg {
            width: 100%;
            height: 100%;
          }
        }
      }
    }
  }

  .service-detail-section {
    background: #eff3f5;
    padding: 100px 0;

    @media screen and (max-width: 767px) {
      padding: 60px 0;
    }

    &.service-detail-alternate {
      background: #f7f9fa;
    }

    .wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-detail-content {
      display: flex;
      gap: 100px;
      align-items: center;
      width: 100%;

      @media screen and (max-width: 1279px) {
        gap: 80px;
      }

      @media screen and (max-width: 991px) {
        flex-direction: column;
        gap: 60px;
      }

      .service-detail-image {
        flex: 0 0 420px;
        width: 420px;
        height: 360px;
        overflow: hidden;
        border-radius: 10px;

        @media screen and (max-width: 991px) {
          flex: 1;
          width: 100%;
          height: auto;
          max-width: 500px;
        }

        @media screen and (max-width: 767px) {
          width: 100%;
          height: auto;
        }

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          display: block;
        }
      }

      .service-detail-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;

        @media screen and (max-width: 991px) {
          width: 100%;
        }

        .service-detail-label {
          font-family: "Poppins", sans-serif;
          font-size: 15px;
          font-weight: 700;
          line-height: 20px;
          text-transform: uppercase;
          color: #161616;
          margin: 0;
        }

        .service-detail-title {
          font-family: "K2D", sans-serif;
          font-size: 36px;
          font-weight: 200;
          line-height: 42px;
          color: #161616;
          margin: 0;

          @media screen and (max-width: 1279px) {
            font-size: 32px;
            line-height: 38px;
          }

          @media screen and (max-width: 767px) {
            font-size: 24px;
            line-height: 32px;
          }
        }

        .service-detail-description {
          font-family: "Poppins", sans-serif;
          font-size: 14px;
          font-weight: 400;
          line-height: 20px;
          color: #161616;
          display: flex;
          flex-direction: column;
          gap: 20px;
          max-width: 540px;

          p {
            margin: 0;
          }
        }
      }
    }
  }

  /* Contact Section */
  .contact-section {
    background: var(--black);
    padding: 100px 0 150px;
    position: relative;
    z-index: 1;

    > img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }

    video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    @media screen and (max-width: 767px) {
      padding: 60px 0 100px;
    }

    .contact-container {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .contact-form-wrapper {
      width: 100%;
      max-width: 600px;
    }

    .contact-title {
      font-family: "K2D", sans-serif;
      font-size: 56px;
      font-weight: 100;
      line-height: 64px;
      color: var(--white);
      margin: 0 0 20px 0;
      text-align: center;

      @media screen and (max-width: 1279px) {
        font-size: 48px;
        line-height: 56px;
      }

      @media screen and (max-width: 767px) {
        font-size: 36px;
        line-height: 44px;
      }
    }

    .contact-subtitle {
      font-family: "Poppins", sans-serif;
      font-size: 20px;
      font-weight: 300;
      line-height: 28px;
      color: var(--white);
      margin: 0 0 40px 0;
      text-align: center;

      @media screen and (max-width: 767px) {
        font-size: 16px;
        line-height: 24px;
      }
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .form-group {
      width: 100%;
    }

    .form-input {
      width: 100%;
      padding: 15px 20px;
      background-color: rgba(0, 0, 0, 0.85);
      border: none;
      border-bottom: 1px solid #363636;
      font-family: "Poppins", sans-serif;
      font-size: 15px;
      font-weight: 400;
      line-height: 20px;
      color: var(--white);
      transition: all 0.3s ease;
      outline: none;

      &::placeholder {
        color: #737373;
      }

      &:focus {
        background-color: rgba(0, 0, 0, 0.95);
        border-bottom-color: var(--primary);
      }

      @media screen and (max-width: 767px) {
        padding: 12px 16px;
        font-size: 14px;
      }
    }

    .form-textarea {
      min-height: 150px;
      resize: vertical;
      padding-bottom: 60px;

      @media screen and (max-width: 767px) {
        min-height: 120px;
        padding-bottom: 40px;
      }
    }

    .submit-button {
      padding: 20px 40px;
      background-color: var(--primary);
      color: var(--black);
      border: none;
      font-family: "Poppins", sans-serif;
      font-size: 20px;
      font-weight: 600;
      line-height: 30px;
      text-transform: uppercase;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
      align-self: center;
      width: 100%;

      &:hover {
        background-color: var(--light-primary);
        transform: translateY(-2px);
      }

      &:active {
        transform: translateY(0);
      }

      @media screen and (max-width: 767px) {
        width: 100%;
        padding: 12px 30px;
        font-size: 12px;
      }
    }

    .form-message {
      padding: 15px 20px;
      border-radius: 8px;
      text-align: center;
      font-family: "Poppins", sans-serif;
      font-size: 14px;
      font-weight: 500;
      margin-top: 20px;

      &.success {
        background-color: rgba(102, 229, 255, 0.1);
        color: var(--primary);
        border: 1px solid var(--primary);
      }

      &.error {
        background-color: rgba(255, 102, 102, 0.1);
        color: #ff6666;
        border: 1px solid #ff6666;
      }
    }

    /* hCaptcha custom styling */
    .h-captcha {
      display: flex;
      justify-content: center;
      margin: 20px 0;

      iframe {
        border-radius: 8px;
      }
    }
  }

  /* Hero variant for contact page */
  .hero-section.contact-hero {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px 0;

    video {
      display: none;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(102, 229, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(102, 229, 255, 0.05) 0%, transparent 40%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .hero-title {
      font-family: "K2D", sans-serif;
      font-size: 56px;
      font-weight: 100;
      line-height: 64px;
      color: var(--white);
      margin: 0 0 30px 0;

      @media screen and (max-width: 1279px) {
        font-size: 48px;
        line-height: 56px;
      }

      @media screen and (max-width: 767px) {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 20px;
      }
    }

    .hero-description {
      font-family: "Poppins", sans-serif;
      font-size: 20px;
      font-weight: 300;
      line-height: 28px;
      color: var(--white);
      max-width: 960px;
      margin: 0 auto;

      @media screen and (max-width: 767px) {
        font-size: 16px;
        line-height: 24px;
      }
    }
  }
  /* Case Study Page Styles */

  /* Case Study Hero */
  .hero-section.case-study-hero {
    background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 90px 0 100px 0;

    video {
      display: none;
    }

    &::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image:
        radial-gradient(circle at 20% 30%, rgba(102, 229, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(102, 229, 255, 0.05) 0%, transparent 40%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero-title {
      font-family: "K2D", sans-serif;
      font-size: 56px;
      font-weight: 100;
      line-height: 64px;
      color: var(--white);
      margin: 0;
    }

    .hero-description {
      font-family: "Poppins", sans-serif;
      font-size: 20px;
      font-weight: 300;
      line-height: 28px;
      color: var(--white);
    }
  }

  /* Case Study Hero Section */
  .case-study-hero-section {
    background: var(--black);
    padding: 100px 0;
    position: relative;

    @media screen and (max-width: 767px) {
      padding: 60px 0;
    }

    .case-study-hero-content {
      display: flex;
      gap: 100px;
      align-items: center;

      @media screen and (max-width: 1279px) {
        gap: 50px;
      }

      @media screen and (max-width: 991px) {
        flex-direction: column;
        gap: 40px;
      }
    }

    .case-study-hero-text {
      flex: 1;
      color: var(--white);
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

    .case-study-label {
      display: flex;
      flex-direction: column;
      gap: 10px;

      .label {
        font-family: "Poppins", sans-serif;
        font-size: 15px;
        font-weight: 700;
        line-height: 20px;
        color: var(--white);
        margin: 0;
      }

      .case-study-title {
        font-family: "K2D", sans-serif;
        font-size: 24px;
        font-weight: 300;
        line-height: 30px;
        color: var(--white);
        margin: 0;
      }
    }

    .case-study-heading {
      font-family: "Poppins", sans-serif;
      font-size: 30px;
      font-weight: 400;
      line-height: 36px;
      color: var(--white);
      margin: 0;
      max-width: 500px;

      @media screen and (max-width: 767px) {
        font-size: 24px;
        line-height: 30px;
      }
    }

    .case-study-info-box {
      background: linear-gradient(135deg, rgba(71, 122, 132, 0.2) 0%, rgba(71, 122, 133, 0.05) 100%);
      border-radius: 10px;
      padding: 20px;
      display: flex;
      gap: 15px;

      .info-labels,
      .info-values {
        font-family: "Poppins", sans-serif;
        line-height: 20px;
      }

      .info-labels {
        font-weight: 700;
        text-align: right;
        min-width: 136px;

        p {
          margin: 0 0 10px 0;
          font-size: 13px;

          &:last-child {
            margin-bottom: 0;
          }
        }
      }

      .info-values {
        font-weight: 400;
        flex: 1;

        p {
          margin: 0 0 10px 0;
          font-size: 15px;
          color: var(--white);

          &:last-child {
            margin-bottom: 0;
          }
        }
      }
    }

    .case-study-hero-image {
      flex: 1;
      position: relative;
      aspect-ratio: 1080 / 600;

      @media screen and (max-width: 991px) {
        width: 100%;
      }

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 4px;
      }
    }
  }

  /* Case Study Section */
  .case-study-section {
    padding: 100px 0;
    background: var(--white);

    @media screen and (max-width: 767px) {
      padding: 60px 0;
    }

    &.challenge-section {
      background: var(--white);
    }

    &.solution-section {
      background: #eff3f5;
    }

    &.results-section {
      background: var(--white);
    }

    .case-study-content {
      display: flex;
      flex-direction: column;
      gap: 50px;
      align-items: center;
    }

    .section-title {
      font-family: "K2D", sans-serif;
      font-size: 36px;
      font-weight: 100;
      line-height: 42px;
      color: #161616;
      margin: 0;
      text-align: center;

      @media screen and (max-width: 767px) {
        font-size: 28px;
        line-height: 34px;
      }
    }

    .section-description {
      font-family: "Poppins", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 24px;
      color: #161616;
      margin: 0 0 20px 0;
      max-width: 900px;
      width: 100%;

      @media screen and (max-width: 767px) {
        font-size: 14px;
      }
    }
  }

  /* Challenge Section */
  .challenge-section {
    .challenge-intro {
      background: #eff3f5;
      border-radius: 15px;
      padding: 50px 90px;
      width: 100%;
      margin-bottom: 20px;

      @media screen and (max-width: 767px) {
        padding: 30px 20px;
      }

      .intro-text {
        font-family: "Poppins", sans-serif;
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        color: #161616;
        margin: 0;
        text-align: center;

        @media screen and (max-width: 767px) {
          font-size: 16px;
          line-height: 24px;
        }
      }
    }

    .challenges-list {
      display: flex;
      gap: 15px;
      width: 100%;
      max-width: 900px;

      @media screen and (max-width: 767px) {
        flex-direction: column;
        padding: 0 20px;
        gap: 20px;
      }

      .challenges-icons {
        display: flex;
        flex-direction: column;
        gap: 24px;
        min-width: fit-content;

        @media screen and (max-width: 767px) {
          flex-direction: row;
          gap: 10px;
        }
      }

      .challenge-icon {
        width: 28px;
        height: 28px;
        color: var(--primary);
        flex-shrink: 0;

        @media screen and (max-width: 767px) {
          width: 24px;
          height: 24px;
        }
      }

      .challenges-text {
        flex: 1;
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 24px;

        li {
          font-family: "Poppins", sans-serif;
          font-size: 20px;
          font-weight: 500;
          line-height: 28px;
          color: #161616;
          margin: 0;

          @media screen and (max-width: 767px) {
            font-size: 16px;
            line-height: 24px;
          }
        }
      }
    }
  }

  /* Solution Section */
  .solution-section {
    .solution-intro {
      background: #e0e9eb;
      border-radius: 15px;
      padding: 50px 90px;
      width: 100%;
      margin-bottom: 30px;

      @media screen and (max-width: 767px) {
        padding: 30px 20px;
      }

      .intro-text {
        font-family: "Poppins", sans-serif;
        font-size: 20px;
        font-weight: 500;
        line-height: 30px;
        color: #161616;
        margin: 0;
        text-align: center;

        @media screen and (max-width: 767px) {
          font-size: 16px;
          line-height: 24px;
        }
      }
    }

    .solution-details {
      display: flex;
      gap: 50px;
      align-items: flex-start;
      width: 100%;

      @media screen and (max-width: 991px) {
        flex-direction: column;
        gap: 40px;
      }

      .solution-image {
        flex: 1;
        background: var(--white);
        border-radius: 4px;
        box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
        min-height: 300px;
        overflow: hidden;

        @media screen and (max-width: 991px) {
          width: 100%;
        }

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
      }

      .solution-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 20px;

        .solution-paragraph {
          font-family: "Poppins", sans-serif;
          font-size: 16px;
          font-weight: 400;
          line-height: 24px;
          color: #161616;
          margin: 0;

          strong {
            font-weight: 500;
            font-size: 20px;
            line-height: 30px;
          }

          @media screen and (max-width: 767px) {
            font-size: 14px;
            line-height: 20px;

            strong {
              font-size: 16px;
              line-height: 24px;
            }
          }
        }
      }
    }
  }

  /* Results Section */
  .results-section {
    .results-header {
      display: flex;
      flex-direction: column;
      gap: 20px;
      align-items: center;
      text-align: center;

      .results-subtitle {
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 21px;
        color: #161616;
        margin: 0;
      }
    }

    .results-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 15px;
      width: 100%;
      max-width: 1440px;

      @media screen and (max-width: 1279px) {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
      }

      @media screen and (max-width: 767px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
      }

      @media screen and (max-width: 480px) {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }

    .result-card {
      background: #c6eff8;
      border-radius: 150px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      min-height: 276px;
      text-align: center;

      @media screen and (max-width: 767px) {
        min-height: 200px;
        border-radius: 20px;
      }

      .result-number {
        font-family: "Poppins", sans-serif;
        font-size: 28px;
        letter-spacing: -1px;
        font-weight: 700;
        line-height: 1;
        color: #161616;
        margin: 0 0 20px 0;

        @media screen and (max-width: 767px) {
          font-size: 36px;
        }
      }

      .result-label {
        font-family: "Poppins", sans-serif;
        font-size: 16px;
        font-weight: 400;
        line-height: 20px;
        color: #161616;
        margin: 0;
        text-transform: capitalize;

        @media screen and (max-width: 767px) {
          font-size: 14px;
        }
      }
    }
  }

  /* Footer */
  .footer {
    background-color: var(--black);
    padding: 100px 0 150px;

    @media screen and (max-width: 1279px) {
      padding: 80px 0 100px;
    }

    @media screen and (max-width: 767px) {
      padding: 60px 0 80px;
    }
    .footer-content {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
      width: 100%;

      .footer-columns {
        display: flex;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 50px;
        border-bottom: 1px solid #363636;

        @media screen and (max-width: 1279px) {
          gap: 40px;
        }

        @media screen and (max-width: 991px) {
          flex-direction: column;
          gap: 40px;
        }
        .footer-info {
          display: flex;
          flex-direction: column;
          gap: 24px;
          max-width: 420px;

          @media screen and (max-width: 1279px) {
            max-width: 320px;
          }

          @media screen and (max-width: 991px) {
            max-width: 100%;
          }
          .footer-logo {
            width: 50px;
            height: 50px;
            flex-shrink: 0;
            img {
              width: 100%;
              height: 100%;
              display: block;
            }
          }
          .footer-description h3 {
            font-family: "Poppins", sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
            line-height: normal;

            @media screen and (max-width: 1279px) {
              font-size: 20px;
              margin-bottom: 15px;
            }
          }

          .footer-description p {
            font-family: "Poppins", sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: var(--white);
            line-height: normal;

            @media screen and (max-width: 1279px) {
              font-size: 14px;
            }
          }

          .footer-copyright {
            font-family: "Poppins", sans-serif;
            font-size: 15px;
            font-weight: 400;
            color: var(--white);
            line-height: normal;

            @media screen and (max-width: 1279px) {
              font-size: 14px;
            }
          }
        }
        .footer-column {
          display: flex;
          flex-direction: column;
          gap: 20px;
          padding-top: 70px;

          @media screen and (max-width: 1279px) {
            padding-top: 50px;
          }

          @media screen and (max-width: 991px) {
            padding-top: 0;
          }
          h4 {
            font-family: "Poppins", sans-serif;
            font-size: 24px;
            font-weight: 700;
            color: var(--white);
            line-height: normal;

            @media screen and (max-width: 1279px) {
              font-size: 20px;
            }
          }
          .footer-links {
            display: flex;
            flex-direction: column;
            gap: 20px;
            li {
              display: flex;
              flex-direction: column;
              gap: 20px;
              a {
                font-family: "Poppins", sans-serif;
                font-size: 14px;
                font-weight: 600;
                line-height: 20px;
                color: var(--white);
                text-decoration: none;
                transition: color 0.3s ease;
                &:hover {
                  color: var(--primary);
                }
              }
            }
            .footer-link-divider {
              width: 180px;
              height: 1px;
              background-color: var(--white);
              display: block;

              @media screen and (max-width: 991px) {
                width: 100%;
                max-width: 180px;
              }
            }
          }
        }
      }
      .footer-bottom-menu {
        display: flex;
        align-items: center;
        gap: 40px;
        justify-content: center;

        @media screen and (max-width: 767px) {
          flex-direction: column;
          gap: 15px;
        }
        a {
          font-family: "Poppins", sans-serif;
          font-size: 14px;
          font-weight: 600;
          line-height: 20px;
          text-transform: uppercase;
          color: var(--white);
          text-decoration: none;
          white-space: nowrap;
          transition: color 0.3s ease;
          &:hover {
            color: var(--primary);
          }
        }
        .footer-bottom-divider {
          width: 0;
          height: 20px;
          position: relative;
          flex-shrink: 0;
          display: flex;
          align-items: center;
          justify-content: center;

          @media screen and (max-width: 767px) {
            display: none;
          }
          &::after {
            content: "";
            position: absolute;
            width: 20px;
            height: 1px;
            background-color: var(--white);
            transform: rotate(90deg);
          }
        }
      }
    }
  }
}

@layer utilites {
  .background-dark {
    background: var(--dark-gray) !important;
  }

  .background-primary {
    background: var(--primary);
  }

  .background-gray {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .background-light {
    background: var(--white) !important;
  }

  .br-xS {
    border-radius: var(--border-radius-xS) !important;
  }

  .br-1 {
    border-radius: var(--border-radius-1) !important;
  }

  .br-2 {
    border-radius: var(--border-radius-2) !important;
  }

  .d-none,
  .hidden {
    display: none !important;
  }

  .d-flex {
    display: flex;
  }

  .flex-column {
    flex-direction: column;
  }

  .d-flex .column {
    flex-basis: 50%;
    flex-grow: 1;
  }

  .justify-center {
    justify-content: center;
  }

  .flex-wrap {
    @media (max-width: 1199px) {
      flex-wrap: wrap;
    }
  }

  .justify-between {
    justify-content: space-between;
  }

  .justify-end {
    justify-content: flex-end;
  }

  .align-center {
    align-items: center;
  }

  .text-center {
    text-align: center;
  }

  .text-left {
    text-align: left;
  }

  .text-white {
    color: var(--white);
  }

  .text-black {
    color: var(--black);
  }

  .text-gray {
    color: var(--gray);
  }

  .text-small {
    font-size: 0.75rem;
  }

  .col-4 {
    width: 35%;

    @media screen and (min-width: 768px) and (max-width: 1279px) {
      width: 45%;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .col-7 {
    width: 60%;

    @media screen and (min-width: 768px) and (max-width: 1279px) {
      width: 50%;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .col-6 {
    width: 50%;

    @media screen and (max-width: 767px) {
      width: 100%;
    }
  }

  .m-auto {
    margin: 0 auto;
  }

  .w-80 {
    width: 80%;
  }

  .w-100 {
    width: 100%;
  }

  .gap-1 {
    gap: 0.5rem;
  }

  .gap-2 {
    gap: 0.625rem;
  }

  .gap-3 {
    gap: 1rem;
  }

  .gap-20 {
    gap: 20px;
  }

  .gap-30 {
    gap: 30px;
  }

  .gap-50 {
    gap: 50px;
  }

  .mt-0 {
    margin-top: 0;
  }

  .mt-1 {
    margin-top: 0.625rem;
  }

  .mt-2 {
    margin-top: 1rem;
  }

  .mt-3 {
    margin-top: 1.5rem;
  }

  .mt-4 {
    margin-top: 2rem;
  }

  .mt-5 {
    margin-top: 2.5rem;
  }

  .mb-0 {
    margin-bottom: 0;
  }

  .mb-1 {
    margin-bottom: 0.625rem;
  }

  .mb-2 {
    margin-bottom: 1rem;
  }

  .mb-3 {
    margin-bottom: 1.5rem;
  }

  .mb-4 {
    margin-bottom: 2rem;
  }

  .mb-5 {
    margin-bottom: 2.5rem;
  }

  .pt-0 {
    padding-top: 0;
  }

  .pt-1 {
    padding-top: 0.625rem;
  }

  .pt-2 {
    padding-top: 1rem;
  }

  .pt-3 {
    padding-top: 1.5rem;
  }

  .pt-4 {
    padding-top: 2rem;
  }

  .pt-5 {
    padding-top: 2.5rem;
  }

  .pb-0 {
    padding-bottom: 0;
  }

  .pb-1 {
    padding-bottom: 0.625rem;
  }

  .pb-2 {
    padding-bottom: 1rem;
  }

  .pb-3 {
    padding-bottom: 1.5rem;
  }

  .pb-4 {
    padding-bottom: 2rem;
  }

  .pb-5 {
    padding-bottom: 2.5rem;
  }

  .p-2 {
    padding: 1rem;
  }

  .reverse-mobile {
    @media screen and (max-width: 767px) {
      flex-direction: column-reverse;
    }
  }

  .mobile-column {
    @media screen and (max-width: 767px) {
      flex-direction: column;
    }
  }
}

/* ================================
   Animations
   ================================ */

/* Parallax zoom animation */
@keyframes parallaxZoom {
  from {
    transform: scale(1.3);
  }
  to {
    transform: scale(1);
  }
}
/* Hero content fade and slide up */

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered feature card animations */

@keyframes featurePop {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Floating animation for service cards */

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Text reveal effect */

@keyframes textReveal {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}

/* Parallax text layers */

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Testimonial card flip effect */

@keyframes testimonialFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) rotateX(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Case study card animations */

@keyframes caseStudySlide {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Advantages section video parallax */

@keyframes parallaxFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.02);
  }
}

/* Advantage items staggered animation */

@keyframes advantageSlide {
  from {
    opacity: 0;
    transform: translateX(-40px) skewY(2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) skewY(0);
  }
}

/* Section title animation */

@keyframes titlePulse {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Scroll progress indicator */
/* Note: animation-timeline is only supported in newer browsers, fallback handled by initial animation */
@supports (animation-timeline: view()) {
  .feature-card {
    /* Keep original animation as fallback */
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
  }

  @keyframes featureScrollReveal {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
