    :root {
      --primary: #ff6a00;
      --primary-dark: #e55d00;
      --primary-light: #fff0e6;
      --secondary: #ffffff;
      --dark: #0f172a;
      --darker: #0a0f1f;
      --light: #f8fafc;
      --lighter: #f1f5f9;
      --gray: #94a3b8;
      --glass: rgba(255, 255, 255, 0.1);
      --glass-border: rgba(255, 255, 255, 0.2);
      --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      --card-height: 360px;
      --navbar-border-radius: 10px;
      --navbar-spacer: 1rem;
      --navbar-text-color: #6a778e;
      --navbar-link-height: 3.5rem;
      --navbar-timing: 250ms;
      --navbar-transition: var(--navbar-timing) ease all;
      --service-card-width: 280px;
      --service-card-height: 420px;
      --service-card-radius: 18px;
      --service-card-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    html {
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    input,
    textarea,
    select,
    button {
      font-size: 16px;
      /* base font size prevents autozoom */
    }

    body {
      background: var(--secondary);
      color: var(--dark);
      overflow-x: hidden;
      position: relative;
      background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    }

    /* ------------------------------------------------------- Custom Scrollbar ------------------------------------------------------- */
    ::-webkit-scrollbar {
      width: 10px;
    }

    ::-webkit-scrollbar-track {
      background: var(--light);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--primary);
      border-radius: 5px;
    }


    /*----------------------------------------------------blue highlight on clicks----------------------------------------------------------------------*/

    * {
      -webkit-tap-highlight-color: transparent;
      -webkit-focus-ring-color: transparent;
    }

    /* Hide outlines by default */
    *:focus {
      outline: none;
    }

    /* Show outline only when user navigates with keyboard */
    :focus-visible {
      outline: 2px solid #ff6600;
      /* you can change color */
      outline-offset: 3px;
    }

    /* ------------------------------------------------------- Glass Effect ------------------------------------------------------- */
    .glass {
      background: var(--glass);
      -webkit-backdrop-filter: blur(12px);
      backdrop-filter: blur(12px);
      border: 1px solid var(--glass-border);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    /* ------------------------------------------------------- Header & Navigation ------------------------------------------------------- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      padding: 1.2rem 5%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.76);
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: 0.4s;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.8rem;
      color: var(--primary);
      text-decoration: none;
    }

    .logo img {
      height: 52px;
      transition: transform 0.3s;
    }


    /* ------------------------------------------------------- Hamburger Menu with Glass Effect ------------------------------------------------------- */
    .hamburger {
      position: relative;
      width: 40px;
      height: 30px;
      cursor: pointer;
      z-index: 1001;
    }

    .hamburger span {
      position: absolute;
      height: 3px;
      width: 100%;
      background: var(--primary);
      border-radius: 2px;
      transition: 0.4s;
    }

    .hamburger span:nth-child(1) {
      top: 0;
      transform-origin: left center;
    }

    .hamburger span:nth-child(2) {
      top: 50%;
      transform: translateY(-50%);
      transform-origin: left center;
    }

    .hamburger span:nth-child(3) {
      bottom: 0;
      transform-origin: left center;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg);
      width: 120%;
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg);
      width: 120%;
    }

    /* ------------------------------------------------------- Glass Menu Overlay ------------------------------------------------------- */
    .menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .menu-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .menu-links a {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: var(--navbar-link-height);
      width: calc(var(--navbar-spacer) * 5.5);
      color: var(--navbar-text-color);
      transition: var(--navbar-transition);
      text-decoration: none;
    }

    .menu-overlay.active .menu-links a {
      opacity: 1;
    }

    /* ------------------ Navigation Styles ------------------ */
    .navbar {
      position: fixed;
      top: calc(var(--navbar-spacer) * 4);
      right: var(--navbar-spacer);
      background: rgba(255, 255, 255, 0.76);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.21);
      border-radius: var(--navbar-border-radius);
      padding: var(--navbar-spacer) 0;
      box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
      height: auto;
      top: 105%;
      right: 3.8%;
      z-index: 999;
    }

    .navbar__menu {
      list-style: none;
      height: 100%;
      position: relative;
    }



    .navbar__link span {
      position: absolute;
      right: 105%;
      transform: translate(-3rem);
      margin-left: 1rem;
      opacity: 0;
      pointer-events: none;
      color: var(--primary);
      background: #fff;
      padding: calc(var(--navbar-spacer) * 0.75);
      transition: var(--navbar-transition);
      border-radius: calc(var(--navbar-border-radius) * 1.75);
      white-space: nowrap;
    }

    .navbar__link:hover {
      color: #fff;
    }

    .navbar:not(:hover) .navbar__link:focus span,
    .navbar__link:hover span {
      opacity: 1;
      transform: translate(0);
    }

    .navbar__item:last-child:before {
      content: '';
      position: absolute;
      opacity: 0;
      z-index: -1;
      top: 0;
      left: var(--navbar-spacer);
      width: var(--navbar-link-height);
      height: var(--navbar-link-height);
      background: var(--primary);
      border-radius: calc(var(--navbar-border-radius) * 1.75);
      transition: var(--navbar-timing) cubic-bezier(1, 0.2, 0.1, 1.2) all;
    }

    /* Gooey effect keyframes */
    @keyframes gooeyEffect-1 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes gooeyEffect-2 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes gooeyEffect-3 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes gooeyEffect-4 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes gooeyEffect-5 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes gooeyEffect-6 {
      0% {
        transform: scale(1, 1);
      }

      50% {
        transform: scale(0.5, 1.5);
      }

      100% {
        transform: scale(1, 1);
      }
    }

    /* show bubble when hovering any item */
    .navbar__item:hover~.navbar__item:last-child:before,
    .navbar__item:last-child:hover:before {
      opacity: 1;
    }

    /* move bubble depending on which item is hovered */
    .navbar__item:nth-child(1):hover~.navbar__item:last-child:before {
      top: calc((100% / 6) * 0);
      animation: gooeyEffect-1 var(--navbar-timing) 1;
    }

    .navbar__item:nth-child(2):hover~.navbar__item:last-child:before {
      top: calc((100% / 6) * 1);
      animation: gooeyEffect-2 var(--navbar-timing) 1;
    }

    .navbar__item:nth-child(3):hover~.navbar__item:last-child:before {
      top: calc((100% / 6) * 2);
      animation: gooeyEffect-3 var(--navbar-timing) 1;
    }

    .navbar__item:nth-child(4):hover~.navbar__item:last-child:before {
      top: calc((100% / 6) * 3);
      animation: gooeyEffect-4 var(--navbar-timing) 1;
    }

    .navbar__item:nth-child(5):hover~.navbar__item:last-child:before {
      top: calc((100% / 6) * 4);
      animation: gooeyEffect-5 var(--navbar-timing) 1;
    }

    .navbar__item:nth-child(6):hover:before,
    .navbar__item:last-child:hover:before {
      top: calc((100% / 6) * 5);
      animation: gooeyEffect-6 var(--navbar-timing) 1;
    }

    /* ------------------------------------------------------- Hero Section with Parallax ------------------------------------------------------- */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding: 0 10%;
      position: relative;
      overflow: hidden;
    }

    .hero-slideshow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .hero-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      animation: slideShow 18s infinite;
      transform: translateY(100%);
    }

    .hero-slide:nth-child(1) {
      background-image: url("../images/2.webp");
      animation-delay: 0s;
    }

    .hero-slide:nth-child(2) {
      background-image: url("../images/1.webp");
      animation-delay: 6s;
    }

    .hero-slide:nth-child(3) {
      background-image: url("../images/3.webp");
      animation-delay: 12s;
    }

    @keyframes slideShow {
      0% {
        opacity: 0;
        transform: translateY(100%);
      }

      10% {
        opacity: 1;
        transform: translateY(0);
      }

      33.33% {
        opacity: 1;
        transform: translateY(0);
      }

      43.33% {
        opacity: 0;
        transform: translateY(-100%);
      }

      100% {
        opacity: 0;
        transform: translateY(-100%);
      }
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.15) 0%, transparent 40%);
      z-index: 1;
    }

    .hero-content {
      max-width: 650px;
      z-index: 2;
      position: relative;
      /* Ensure text is readable against the background */
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .hero h1 {
      font-size: 4.2rem;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      transform: translateY(30px);
      opacity: 0;
      transition: all 1s ease;
      position: relative;
    }

    .hero h1.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .hero h1 span {
      color: var(--primary);
      position: relative;
      display: inline-block;
      font-weight: 900;
    }


    .hero p {
      font-size: 1.25rem;
      color: black;
      font-weight: bolder;
      margin-bottom: 2rem;
      line-height: 1.5;
      transform: translateY(30px);
      opacity: 0;
      transition: all 1s ease 0.2s;
      transition: transform 2s;
    }

    .hero p.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .hero-btns {
      transform: translateY(30px);
      opacity: 0;
      transition: all 1s ease 0.4s;
      color: var(--secondary);
    }

    .hero-btns.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .btn {
      display: inline-block;
      padding: 15px 35px;
      background: var(--primary);
      color: var(--secondary);
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      border: 2px solid var(--primary);
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .btn::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background: var(--secondary);
      transition: width 0.5s;
      z-index: -1;
    }

    .btn:hover {
      color: var(--primary);
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(255, 106, 0, 0.2);
    }

    .btn:hover::before {
      width: 100%;
    }

    .btn-outline {
      background: transparent;
      color: var(--primary);
      margin-left: 15px;
    }

    .btn-outline:hover {
      color: black;
    }



    /* ------------------------------------------------------- Floating Elements with Parallax ------------------------------------------------------- */
    .floating-element {
      position: absolute;
      border-radius: 50%;
      filter: blur(30px);
      z-index: 1;
      transition: transform 0.5s ease-out;
    }

    .element-1 {
      width: 400px;
      height: 400px;
      top: -100px;
      right: -100px;
    }

    .element-2 {
      width: 300px;
      height: 300px;
      bottom: -100px;
      right: 30%;
    }

    .element-3 {
      width: 200px;
      height: 200px;
      top: 40%;
      left: -50px;
    }

    /* ------------------------------------------------------- Services Section ------------------------------------------------------- */
    .services {
      padding: 8rem 5%;

      position: relative;
      overflow: hidden;
    }

    .services::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;

      z-index: 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 4rem;
      position: relative;
      z-index: 1;
    }

    .section-title h2 {
      font-size: 2.8rem;

      margin-bottom: 1rem;
      position: relative;
      display: inline-block;
    }

    .section-title h2::after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: var(--primary);
      border-radius: 2px;
    }

    .section-title p {
      color: var(--gray);
      max-width: 600px;
      margin: 2.5rem auto 0;
      font-size: 1.1rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      position: relative;
      z-index: 1;
      justify-items: center;
    }

    .hidden-service {
      display: none;
    }

    .see-more-container {
      grid-column: 1 / -1;
      text-align: center;
      margin-top: 2rem;
    }

    @media (min-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(3, 1fr);
      }

    }


    @media (max-width: 1024px) {
      .hero-slideshow {
        -webkit-filter: blur(60px);
        filter: blur(60px);
        transform: translateZ(0);
        z-index: 1;
      }

    }


    @media (min-width: 769px) {
      .clients {
        display: none !important;
      }
    }

    /* For wide desktops (≥1280px) → 4 columns */
    @media (min-width: 1280px) {
      .services-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    /* ========================================= */
    /*       NEW DESKTOP SHOWCASE STYLES         */
    /* ========================================= */

    /* Hide Mobile Grid on Desktop */
    @media (min-width: 1024px) {
      .services-mobile-only {
        display: none !important;
      }
    }

    /* Hide Desktop Showcase on Mobile */
    .services-desktop-showcase {
      display: none;
    }

    /* Show Desktop Showcase on Desktop */
    @media (min-width: 1024px) {
      .services-desktop-showcase {
        display: flex;
        width: 100%;
        height: 600px;
        /* Adjust height as needed */
        gap: 15px;
        padding: 2rem 0;
        perspective: 1000px;
      }

      .desktop-service-item {
        position: relative;
        flex: 1;
        height: 100%;
        border-radius: 30px;
        overflow: hidden;
        overflow: hidden;
        cursor: pointer;
        transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.6s ease;
        will-change: flex, box-shadow;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        background: #fff;
      }

      .desktop-service-item:hover {
        flex: 4;
        /* Expand on hover */
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .desktop-service-img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        /* No dark filter as per request, just the gradient overlay will handle tint */
      }

      .desktop-service-item:hover .desktop-service-img {
        transform: scale(1.1);
      }

      /* Gradient Overlay */
      .desktop-service-item::after {
        content: '';
        position: absolute;
        inset: 0;
        /* Gradient: 20% #e55d00 to full white */
        background: linear-gradient(to top, #e55d00 0%, white 30%, white 100%);
        pointer-events: none;
        transition: background 0.6s ease;
        opacity: 0.9;
        /* Slight transparency to see image texture if desired, or 1 for solid */
      }

      .desktop-service-item:hover::after {
        background: linear-gradient(to top, #e55d00 20%, white 30%, white 100%);
        /* Maintain similar feel on hover */
        opacity: 0.2;
      }

      /* Content Overlay */
      .desktop-service-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 30px;
        background: transparent;
        /* UPDATED: No movement, just opacity */
        transform: none;
        opacity: 0;
        transition: opacity 0.4s ease;
        pointer-events: none;
        z-index: 2;
      }

      /* Show content when expanded (hovered) */
      .desktop-service-item:hover .desktop-service-content {
        opacity: 1;
      }

      /* Typewriter effect for Title */
      .desktop-service-content h3 {
        font-size: clamp(1.5rem, 2.5vw, 2.2rem);
        margin-bottom: 15px;
        color: #000;
        font-weight: 800;
        display: inline-block;
        overflow: hidden;
        white-space: nowrap;
        width: 0;
        /* Start hidden */
      }

      .desktop-service-item:hover .desktop-service-content h3 {
        animation: typing 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
        animation-delay: 0.1s;
      }

      /* Smooth Fade for Text & Button */
      .desktop-service-content p,
      .desktop-service-content .desktop-service-btn {
        opacity: 0;
        transform: translateY(5px);
        transition: all 0.5s ease;
      }

      .desktop-service-item:hover .desktop-service-content p {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.4s;
      }

      .desktop-service-item:hover .desktop-service-content .desktop-service-btn {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.6s;
      }

      /* Typewriter Keyframes */
      @keyframes typing {
        from {
          width: 0
        }

        to {
          width: 100%
        }
      }

      .desktop-service-content p {
        font-size: 1.1rem;
        color: #1a1a1a;
        max-width: 400px;
        line-height: 1.6;
        margin-bottom: 20px;
        font-weight: 500;
      }

      .desktop-service-btn {
        display: inline-block;
        padding: 12px 30px;
        background: #000;
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        pointer-events: auto;
      }

      .desktop-service-btn:hover {
        transform: scale(1.05);
        background: white;
        color: #000;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      }

      /* Vertical Title for Collapsed State */
      .desktop-service-vertical-title {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-90deg);
        white-space: nowrap;
        color: #000;
        font-size: 1.5rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        transition: opacity 0.2s ease;
        pointer-events: none;
        z-index: 2;
      }

      .desktop-service-item:hover .desktop-service-vertical-title {
        opacity: 0;
      }


    }

    /* NEW SERVICE CARD STYLES - NO HOVER/FLIP ANIMATIONS */
    .service-card {
      position: relative;
      width: var(--service-card-width);
      height: var(--service-card-height);
      border-radius: var(--service-card-radius);
      overflow: hidden;
      background: #fff;
      color: #fff;
      display: flex;
      flex-direction: column;
      transform: translateY(30px) scale(1);
      /* include scale(1) */
      opacity: 0;
      transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
      will-change: transform;
    }

    .service-card.visible {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .service-card:hover {
      transform: scale(1.05);
      /* Slight zoom */
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
      /* Optional subtle shadow */
      z-index: 2;
      /* Ensure card appears above neighbors */
    }


    .service-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      inset: 0;
      z-index: 0;
      filter: brightness(100%);
    }

    .card-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top,



          rgba(255, 106, 0, 0.76) 0%,
          rgba(255, 106, 0, 0.52) 10%,
          rgba(255, 255, 255, 0) 50%,
          transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 18px;
      z-index: 1;

    }

    .service-title {
      font-size: 1.3rem;
      font-weight: bold;
      text-align: center;
      color: rgba(250, 74, 11, 0.8);
      margin-bottom: 1rem;
    }

    .service-desc {
      font-size: 0.95rem;
      line-height: 1.5;
      text-align: center;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 10px;
      color: #000;
      position: absolute;
      bottom: 70px;
      font-weight: 500;
    }

    .service-cta {
      align-self: flex-end;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #ff6a00;
      border: none;
      color: #fff;
      font-size: 1.1rem;
      font-weight: bold;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);

    }

    .service-cta:focus {
      outline: 2px solid rgba(255, 166, 0, 0.6);
      outline-offset: 3px;
    }

    .service-cta:hover {
      transform: scale(1.1);

    }


    /* ------------------------------------------------------- Stats Section with Auto Counting ------------------------------------------------------- */
    .stats {
      padding: 6rem 5%;
      position: relative;
      text-align: center;
      color: var(--secondary);
      overflow: hidden;
      width: 100vw;
      /* full viewport width */
      margin: 0;
    }

    /* Video Background */
    .stats-video-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    /* Orange overlay with opacity + optional gradient */
    .stats::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(255, 106, 0, 0.8);
      /* semi-transparent orange overlay */
      z-index: 1;
    }

    /* Make sure content is above overlay */
    .stats>* {
      position: relative;
      z-index: 2;
    }

    /* Force video to stay at 0 even if matched by > * */
    .stats>.stats-video-bg {
      z-index: 0;
      position: absolute;
    }

    /* Grid for stats cards */
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      position: relative;
      z-index: 1;
    }

    /* Individual stat item */
    .stat-item {
      background: rgba(255, 255, 255, 0.1);
      /* glass effect */
      border-radius: 20px;
      padding: 2rem;
      backdrop-filter: blur(5px);
      transition: 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .stat-item h3 {
      font-size: 3.2rem;
      margin-bottom: 0.5rem;
      color: white;
    }

    .stat-item p {
      font-size: 1.1rem;
      opacity: 0.9;
    }

    /* Circular progress */
    .circular-progress {
      position: relative;
      height: 120px;
      width: 120px;
      margin: 0 auto 1.5rem;
    }

    .circular-progress svg {
      height: 120px;
      width: 120px;
      transform: rotate(-90deg);
    }

    .circular-progress svg circle {
      fill: none;
      stroke: rgba(255, 255, 255, 0.2);
      stroke-width: 8;
      stroke-linecap: round;
    }

    .circular-progress svg circle:last-child {
      stroke: white;
      stroke-dasharray: 330;
      stroke-dashoffset: 330;
      transition: stroke-dashoffset 1.5s ease-in-out;
    }

    .progress-value {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 2rem;
      font-weight: 700;
      color: white;
    }

    .support-icon {
      font-size: 3.5rem;
      margin-bottom: 1rem;
      color: white;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }

      50% {
        transform: scale(1.1);
      }

      100% {
        transform: scale(1);
      }
    }

    .testimonial-card {
      width: 40%;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      flex-shrink: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .testimonial-content {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
      border: 2px solid var(--primary);
    }

    .testimonial-info h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }

    .testimonial-info p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    /* -----------------------------------768px-----------------*/
    @media (max-width: 768px) {
      .testimonial-card {
        min-width: 320px;
        height: 280px;
        padding: 1.5rem;
      }

      .testimonials-container {
        height: 350px;
      }
    }

    @media (max-width: 480px) {
      .testimonial-card {
        min-width: 280px;
        height: 320px;
      }

      .testimonials-container {
        height: 400px;
      }
    }

    /* Testimonials Section */
    .testimonials {
      padding: 6rem 5%;
      background: var(--darker);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .testimonials::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 30%, rgba(255, 106, 0, 0.1) 0%, transparent 40%);
      z-index: 0;
    }

    .testimonials-container {
      max-width: 100%;
      margin: 0 auto;
      position: relative;
      z-index: 1;
      height: 380px;
      overflow: hidden;
    }

    .testimonials-track {
      display: flex;
      gap: 1.5rem;
      height: 100%;
      align-items: center;
      will-change: transform;
    }

    @keyframes scrollTestimonials {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(calc(-1 * var(--scroll-width)));
      }
    }

    .testimonial-card {
      width: 40%;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 20px;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      flex-shrink: 0;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .testimonial-content {
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
    }

    .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
      border: 2px solid var(--primary);
    }

    .testimonial-info h4 {
      font-size: 1.2rem;
      margin-bottom: 5px;
    }

    .testimonial-info p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    /* -----------------------------------768px-----------------*/
    @media (max-width: 768px) {
      .testimonial-card {
        min-width: 320px;
        height: 280px;
        padding: 1.5rem;
      }

      .testimonials-container {
        height: 350px;
      }
    }

    @media (max-width: 480px) {
      .testimonial-card {
        min-width: 280px;
        height: 320px;
      }

      .testimonials-container {
        height: 400px;
      }
    }

    /* ------------------------------------------------------- Contact Section ------------------------------------------------------- */
    .contact {
      padding: 8rem 5%;
      background: var(--light);
      position: relative;
      overflow: hidden;
    }

    .contact::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 80%, rgba(255, 106, 0, 0.1) 0%, transparent 40%);
      z-index: 0;
    }

    .contact-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 4rem;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .contact-form {
      background: var(--secondary);
      padding: clamp(1.8rem, 4vw, 3rem) 1.5rem 1.5rem;
      border-radius: 20px;
      box-shadow: var(--card-shadow);
      transform: translateY(30px);
      opacity: 0;
      transition: all 0.8s ease;
      position: relative;
    }

    .contact-form h3 {
      position: relative;
      left: 50%;
      top: 0;
      transform: translate(-50%, -50%);
      margin: 0;
      padding: 0 10px;
      font-size: clamp(1.05rem, 2.1vw, 1.35rem);
      line-height: 1;
      font-weight: bold;
      border-radius: 6px;
      pointer-events: none;

    }

    .contact-form.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: var(--dark);
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px;
      border: 1px solid #e2e8f0;
      border-radius: 10px;
      font-size: 1rem;
      transition: 0.3s;
      background: var(--lighter);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--primary);
      outline: none;
      box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
    }

    .form-group textarea {
      min-height: 150px;
      resize: vertical;
    }

    .contact-action {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-action-card {
      background: var(--secondary);
      padding: 2.5rem;
      border-radius: 20px;
      text-align: center;
      box-shadow: var(--card-shadow);
      transition: 0.3s;
      transform: translateY(30px);
      opacity: 0;
    }

    .contact-action-card p {
      margin-bottom: 1rem;
      text-align: center;
    }

    .contact-action-card.visible {
      transform: translateY(0);
      opacity: 1;
    }

    .contact-action-card:nth-child(1) {
      transition-delay: 0.1s;
    }

    .contact-action-card:nth-child(2) {
      transition-delay: 0.2s;
    }

    .contact-action-card:nth-child(3) {
      transition-delay: 0.3s;
    }

    .contact-action-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 40px rgba(255, 106, 0, 0.15);
    }

    .contact-action-icon {
      width: 70px;
      height: 70px;
      background: rgba(255, 106, 0, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--primary);
      margin: 0 auto 1.5rem;
    }

    .contact-action-card h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      color: var(--dark);
      text-align: center;
    }

    .contact-action-btn {
      display: inline-block;
      padding: 12px 30px;
      background: var(--primary);
      color: white;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      transition: 0.3s;
    }

    .contact-action-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(229, 93, 0, 0.3);
    }

    /* ------------------------------------------------------- Chatbot ------------------------------------------------------- */
    .chatbot-container {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
    }

    .chatbot-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(255, 106, 0, 0.4);
      transition: 0.3s;
    }

    .chatbot-btn:hover {
      transform: scale(1.1);
    }

    .chatbot-btn i {
      font-size: 1.5rem;
    }

    .chat-window {
      position: absolute;
      bottom: 80px;
      right: 0;
      width: 350px;
      height: 450px;
      background: var(--secondary);
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      transform: scale(0);
      transform-origin: bottom right;
      transition: transform 0.3s;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .chat-window.active {
      transform: scale(1);
    }

    .chat-header {
      background: var(--primary);
      color: white;
      padding: 1.2rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .chatbot-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: scale-down;
      background: white;
      /* Ensure visibility if transparent */
      flex-shrink: 0;
      /* prevents stretching */
    }

    .chat-messages {
      flex: 1;
      padding: 1.5rem;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .message {
      max-width: 80%;
      padding: 12px 16px;
      border-radius: 18px;
      line-height: 1.5;
      position: relative;
    }

    .bot-message {
      background: rgba(255, 106, 0, 0.1);
      align-self: flex-start;
      border-bottom-left-radius: 5px;
    }

    .user-message {
      background: rgba(15, 23, 42, 0.1);
      align-self: flex-end;
      border-bottom-right-radius: 5px;
    }

    .chat-input {
      display: flex;
      padding: 1rem;
      background: var(--light);
    }

    .chat-input input {
      flex: 1;
      padding: 12px 15px;
      border: none;
      border-radius: 30px;
      background: var(--secondary);
      outline: none;
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    }

    .chat-input button {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--primary);
      color: white;
      border: none;
      margin-left: 10px;
      cursor: pointer;
      transition: 0.3s;
      flex-shrink: 0;
      flex-grow: 0;
    }

    .chat-input button:hover {
      background: var(--primary-dark);
    }

    /* -------------------- Chat Chips -------------------- */
    .chat-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 8px;
      margin-bottom: 8px;
      align-self: flex-start;
      max-width: 85%;
    }

    .chat-chip {
      background: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.85rem;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }

    .chat-chip:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(255, 106, 0, 0.2);
    }

    /* ------------------------------------------------------- Clients Section ------------------------------------------------------- */
    .clients {
      padding: 5rem 5%;
      background: var(--secondary);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .clients::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.05) 0%, transparent 40%);
      z-index: 0;
    }

    .clients-container {
      max-width: auto;
      margin: 3rem auto 0;
      overflow: hidden;
      position: relative;
      height: 100px;
      border-radius: 50px;
    }

    .clients-track {
      display: flex;
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      align-items: center;
      gap: 0;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ------------------------------------------------------- Client logo styles ------------------------------------------------------- */
    .clients-track>* {
      height: 140px;
      width: auto;
      background: transparent;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--dark);
      transition: all 0.3s ease;
      box-shadow: none;
      padding: 0;
      margin: 0 2.5rem;
      flex-shrink: 0;
    }

    .clients-track img {
      object-fit: contain;
    }

    .clients-track>*:hover {
      transform: scale(1.1);
      background: transparent;
      box-shadow: none;
      color: var(--primary);
    }


    /* -----------------------------------------------Hero Client Section-------------------------------------------------------------- */

    .Heroclients {
      padding: 5rem 5%;
      background: var(--secondary);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .Heroclients::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 80% 20%, rgba(255, 106, 0, 0.05) 0%, transparent 40%);
      z-index: 0;
    }

    .Heroclients-container {
      max-width: auto;
      margin: 3rem auto 0;
      overflow: hidden;
      position: relative;
      height: 100px;
      border-radius: 50px;
    }

    .Heroclients-track {
      display: flex;
      position: absolute;
      left: 0;
      top: 0;
      height: 100%;
      align-items: center;
      gap: 0;
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ------------------------------------------------------- Hero Client logo styles ------------------------------------------------------- */
    .Heroclients-track>* {
      height: 140px;
      width: auto;
      background: transparent;
      border-radius: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
      color: var(--dark);
      transition: all 0.3s ease;
      box-shadow: none;
      padding: 0;
      margin: 0 2.5rem;
      flex-shrink: 0;
    }

    .Heroclients-track img {
      object-fit: contain;
    }

    .Heroclients-track>*:hover {
      transform: scale(1.1);
      background: transparent;
      box-shadow: none;
      color: var(--primary);
    }




    /* ------------------------------------------------------- Footer ------------------------------------------------------- */
    footer {
      background: var(--darker);
      color: var(--light);
      padding: 4rem 5% 2rem;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
      max-width: 1200px;
      margin: 0 auto 3rem;
    }

    .footer-logo {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 1rem;
      display: inline-block;
    }

    .footer-about p {
      color: var(--gray);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .social-links {
      display: flex;
      gap: 14px;
    }

    .social-links a {
      width: 42px;
      height: 42px;
      border-radius: 50%;

      background:
        radial-gradient(circle at 20% 80%, rgba(255, 106, 0, .18) 0%, transparent 60%),
        rgba(255, 255, 255, 0.75);

      border: 1px solid rgba(255, 255, 255, .5);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);

      display: flex;
      align-items: center;
      justify-content: center;

      color: var(--secondary);
      text-decoration: none;

      box-shadow:
        0 6px 14px rgba(2, 6, 23, .12),
        inset 0 1px 0 rgba(255, 255, 255, .6);

      transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
    }

    .social-links a:hover {
      transform: translateY(-2px);

      background:
        radial-gradient(circle at 20% 80%, rgba(255, 106, 0, .28) 0%, transparent 65%),
        rgba(255, 255, 255, .9);

      box-shadow:
        0 12px 22px rgba(2, 6, 23, .18),
        inset 0 1px 0 rgba(255, 255, 255, .8);
    }


    .footer-links h3 {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
      position: relative;
      color: white;
    }

    .footer-links h3::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 0;
      width: 50px;
      height: 3px;
      background: var(--primary);
    }

    .footer-links ul {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.8rem;
    }

    .footer-links a {
      color: var(--gray);
      text-decoration: none;
      transition: 0.3s;
    }

    .footer-links a:hover {
      color: var(--primary);
      padding-left: 5px;
    }

    .copyright {
      text-align: center;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--gray);
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ------------------------------------------------------- Toast notification styles ------------------------------------------------------- */
    .toast {
      position: fixed;
      top: 20px;
      right: 20px;
      padding: 15px 25px;
      background: #4CAF50;
      color: white;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      z-index: 10000;
      opacity: 0;
      transform: translateY(-20px);
      transition: all 0.3s ease;
      max-width: 350px;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    .toast i {
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .toast-content {
      flex: 1;
      font-weight: 500;
    }

    .toast-close {
      background: transparent;
      border: none;
      color: white;
      font-size: 1.2rem;
      cursor: pointer;
      padding: 5px;
    }

    .toast.error {
      background: #f44336;
    }

    /* ------------------------------------------------------- Respect users who prefer reduced motion ------------------------------------------------------- */
    @media (prefers-reduced-motion: reduce) {
      .contact-form {
        animation: none !important;
        transform: none !important;
      }
    }

    /* ------------------------------------------------------- Responsive Design ------------------------------------------------------- */
    @media (max-width: 992px) {
      .hero h1 {
        font-size: 3.2rem;
      }

      .menu-links a {
        font-size: 2.5rem;
      }

      .navbar {
        display: flex;
      }
    }

    /* Target specifically tablet range (including 768px) to move hero content to right */
    @media (min-width: 769px) and (max-width: 992px) {
      .hero-content {
        margin-left: auto;
        text-align: right;
        max-width: 600px;
        /* Optional: Adjust width if needed for better fit */
      }

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

    @media (max-width: 768px) {
      .hero {
        padding-top: 6rem;
      }

      .hero h1 {
        font-size: 2.6rem;
      }

      .menu-links a {
        font-size: 2rem;
      }


      .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        text-align: center;
      }

      .btn-outline {
        margin-left: 0;
      }


      .chat-window {
        width: 300px;
        height: 400px;
      }

      .contact-container {
        grid-template-columns: 1fr;
      }

      .testimonial-card {
        min-width: 320px;
        height: 260px;
      }

      .navbar {
        display: flex;
      }

      .service-card {
        width: 100%;
        max-width: 320px;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 2.2rem;
      }

      .navbar {
        display: flex;
      }

      .menu-links a {
        font-size: 1.8rem;
      }

      .section-title h2 {
        font-size: 2rem;
      }

      .service-card {
        padding: 0rem;
      }

      .chat-window {
        width: 280px;
        height: 380px;
      }

      .client-logo {
        width: 130px;
        height: 80px;
        font-size: 0 1.9rem;
      }

      .testimonial-card {
        min-width: 280px;
        height: auto;
        padding: 1.5rem;
      }

      .service-card {
        width: 100%;
        max-width: 280px;
        height: 380px;
      }

      .service-desc {
        font-size: 0.85rem;
      }
    }

    .main-content {
      transition: filter 0.4s ease;
    }

    .main-content.blurred {
      filter: blur(8px);
      pointer-events: none;
    }

    .chatbot-container,
    .chatbot-btn {
      position: fixed;
      right: 16px;
      bottom: 16px;
      z-index: 99999;

    }

    .chat-window {
      position: fixed;
      right: 16px;
      bottom: 80px;
      width: calc(100% - 40px);
      max-width: 340px;
      height: 420px;
      transform-origin: bottom right;
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);

    }

    .chatbot-btn {
      z-index: 100000;
    }

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

    .chat-input input {
      font-size: 16px;
    }

    .chat-input button {
      flex-shrink: 0;
      margin-left: 8px;
    }

    @media (max-width: 768px) {
      .service-card {
        padding: 0rem;
      }

      .navbar {
        display: flex;
      }



      .hero-slideshow:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.3);
        pointer-events: none;
        z-index: 1;
      }
    }

    /* Mobile overlay instead of heavy blur for better performance */
    @media (max-width: 767px) {
      .hero-slideshow:after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255, 255, 255, 0.65);
        /* adjustments for readability */
        backdrop-filter: blur(8px);
        /* Lighter blur */
        z-index: 1;
      }

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

    @media (max-width: 360px) {
      .contact-form {
        padding-top: clamp(1.4rem, 6vw, 2.4rem);
      }

      .contact-form h3 {
        padding: 0 8px;
        font-size: clamp(0.98rem, 2.8vw, 1.1rem);
      }
    }





    #clients {
      display: block;
    }



    /* ------------------ See More / hidden cards styles (injected) ------------------ */
    .service-card.hidden-service {
      display: none;
      /* hidden by default */
      opacity: 0;
      transform: translateY(10px);
    }

    .services-grid.expanded .service-card.hidden-service {
      display: flex;
      animation: svcFadeIn 320ms ease forwards;
    }

    @keyframes svcFadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .see-more-container {
      grid-column: 1 / -1;
      text-align: center;
      margin-top: 1rem;
      justify-self: center;
    }

    /* Hide See More button on small screens and show all services */
    @media (max-width: 767px) {
      .service-card.hidden-service {
        display: flex !important;
        opacity: 1 !important;
        transform: none !important;
        transition: opacity 0.3s ease, transform 0.3s ease;
      }

      .see-more-container {
        display: none !important;
      }
    }

    @media (max-width: 768px) {
      .service-card.hidden-service {
        transition: opacity 0.3s ease, transform 0.3s ease;
      }
    }

    @media (max-width: 417px) {
      .hero h1 {
        font-size: 2.2rem;
        /* Adjust this to your desired smaller size */
      }

      .hero h1 span {
        font-size: 1.9rem;
        /* Adjust if you want the span smaller than the main h1 */
      }
    }


    /* Hide HeroClients on mobile */
    .Heroclients-container {
      display: none !important;
      /* default: hidden on mobile */
    }

    /* Show HeroClients only on >= 769px */
    @media screen and (min-width: 769px) {
      .Heroclients-container {
        display: flex !important;
        /* or block */
      }
    }

    /* Show normal clients on mobile (<1024px) */
    #clients {
      display: block !important;
    }

    /* Hide normal clients on >=1024px */
    @media screen and (min-width: 1024px) {
      #clients {
        display: none !important;
      }
    }


    /* Mobile Navbar Styles */

    #mobileToggle {
      display: none;
      /* Hide the checkbox itself */
    }

    .mobile-nav-container {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      z-index: 2000;
      pointer-events: none;
    }

    .mobile-toggle-button {
      position: fixed;
      top: 20px;
      right: 20px;
      width: 60px;
      height: 60px;
      backdrop-filter: blur(10px);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 2001;
      transition: all 2s ease;
      pointer-events: all;
    }


    .mobile-toggle-button span {
      display: block;
      width: 30px;
      height: 3px;
      background: var(--primary);
      margin: 3px 0;
      border-radius: 2px;
      transition: all 0.3s ease;
      transform-origin: center;
    }

    .mobile-nav-overlay {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      clip-path: circle(0% at top right);
      transition: clip-path 0.8s cubic-bezier(0.86, 0, 0.07, 1);
      display: flex;
      justify-content: center;
      align-items: center;
      pointer-events: none;
    }

    .mobile-nav {
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.5s ease 0.3s;
    }

    .mobile-nav-links {
      list-style: none;
    }

    .mobile-nav-links li {
      margin: 25px 0;
    }

    .mobile-nav-links a {
      color: white;
      text-decoration: none;
      font-size: 1.8rem;
      font-weight: 600;
      padding: 10px 20px;
      display: inline-block;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .mobile-nav-links a:before {
      content: '';
      position: absolute;
      bottom: 0;
      left: -100%;
      width: 100%;
      height: 3px;
      background: white;
      transition: all 0.3s ease;
    }

    .mobile-nav-links a:hover {
      transform: translateX(10px);
    }

    .mobile-nav-links a:hover:before {
      left: 0;
    }

    /* Active state for mobile nav */
    #mobileToggle:checked~.mobile-nav-overlay {
      clip-path: circle(150% at top right);
      pointer-events: all;
    }

    #mobileToggle:checked~.mobile-nav-overlay .mobile-nav {
      opacity: 1;
      transform: translateY(0);
    }

    #mobileToggle:checked~.mobile-toggle-button span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    #mobileToggle:checked~.mobile-toggle-button span:nth-child(2) {
      opacity: 0;
    }

    #mobileToggle:checked~.mobile-toggle-button span:nth-child(3) {
      transform: rotate(-45deg) translate(8px, -8px);
    }

    #mobileToggle:checked~.mobile-toggle-button {
      background: rgba(255, 255, 255, 0.95);
    }

    /* Hide desktop header and show mobile navbar on mobile */
    @media (max-width: 768px) {
      .hamburger {
        display: none;
      }

      .mobile-nav-container {
        display: block;
      }
    }

    /* Hide mobile navbar on desktop */
    @media (min-width: 769px) {
      .mobile-nav-container {
        display: none;
      }
    }

    /*------------------------WHO WE ARE------------------*/
    .ux-section {
      max-width: 900px;
      margin: 0 auto;
      padding: 60px 40px;
      border-radius: 12px;
      text-align: center;
    }

    .ux-section h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
      color: #0f172a;
      position: relative;
      /* required for ::after positioning */
    }

    .ux-section h1::after {
      content: "";
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: orange;
      /* or var(--primary) if defined */
      border-radius: 2px;
    }

    .ux-section p {
      font-size: 18px;
      line-height: 1.8;
      font-weight: 600;
      color: #333;
      text-align: center;
      margin-top: 100px;
    }

    .orange {
      font-size: 90px;
      color: #ff6a00;
      font-weight: 700;
      line-height: 0.8;
    }

    /* Mobile Dropdown Styles */
    .mobile-dropdown-btn {
      width: 100%;
      text-align: center;
      background: none;
      border: none;
      color: white;
      font-size: 1.8rem;
      font-weight: 600;
      padding: 10px 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

    .mobile-dropdown-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease-out;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      width: 80%;
      margin: 0 auto;
    }

    .mobile-dropdown-content.active {
      max-height: 200px;
      /* Adjust based on content */
    }

    .mobile-dropdown-content a {
      font-size: 1.4rem;
      padding: 12px 0;
      display: block;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-dropdown-content a:last-child {
      border-bottom: none;
    }

    .mobile-dropdown-btn i {
      transition: transform 0.3s ease;
      font-size: 0.8em;
    }

    .mobile-dropdown-btn.active i {
      transform: rotate(180deg);
    }

    @media (max-width: 600px) {
      .ux-section h1 {
        font-size: 32px;
      }

      .ux-section p {
        font-size: 16px;
      }
    }

    /* Header Products Dropdown */
    .header-products {
      position: relative;
      margin-left: auto;
      margin-right: 30px;
      font-weight: 600;
      cursor: pointer;
      color: var(--primary);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .header-products span {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1.2rem;
      padding: 10px;
    }

    .products-dropdown-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      min-width: 240px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(15px);
      transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
      z-index: 2000;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .header-products:hover .products-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .products-dropdown-menu a {
      display: block;
      padding: 12px 25px;
      color: var(--dark);
      text-decoration: none;
      font-size: 1rem;
      transition: all 0.2s ease;
      font-weight: 500;
    }

    .products-dropdown-menu a:hover {
      background: rgba(255, 106, 0, 0.08);
      color: var(--primary);
      padding-left: 30px;
    }

    /* Mobile Hide */
    @media (max-width: 900px) {
      .header-products {
        display: none;
      }
    }

    /* ---------------- Mobile Hero Slider CSS ---------------- */
    .mobile-hero-slider {
      display: none;
      /* Hidden by default */
      width: 100%;
      height: calc(100vh - 80px);
      /* Adjust for header height */
      position: absolute;
      top: 80px;
      /* Push down below fixed header */
      left: 0;
      z-index: 10;
      overflow: hidden;
    }

    .mobile-slider-track {
      display: flex;
      width: 100%;
      height: 100%;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      /* Firefox */
      -ms-overflow-style: none;
      /* IE/Edge */
      scroll-behavior: smooth;
    }

    .mobile-slider-track::-webkit-scrollbar {
      display: none;
    }

    .mobile-slide {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      scroll-snap-align: start;
      display: fill;
      /* anchor link */
      position: relative;
    }

    .mobile-slide img {
      width: 100%;
      height: 100%;
      object-fit: fill;
      margin-top: 23px;
      filter: drop-shadow(1px 0px 6px black);
    }

    @media (max-width: 412px) {
      .mobile-slide img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: fill;
        filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.4));
      }
    }

    @media (max-width: 430px) {

      .hero-content,
      .hero-slideshow,
      .hero::before,
      .hero .floating-element,
      #Heroclients {
        display: none !important;
      }

      .mobile-hero-slider {
        display: block;
      }

      .hero {
        padding: 0 !important;
        height: 100vh;
        /* Force full viewport height */
        min-height: 100vh;
      }
    }