
    /* Main Carousel Wrapper */
    .carousel-banner-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 50px;
      width: 100%;
      margin-bottom: 25px;
      animation: slideInUp 0.8s ease-out;
    }

    @keyframes slideInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Banner Text Content */
    .banner-text-content {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 2;
    }

    /* Top Line Text */
    .text-top-line {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 5px;
      flex-wrap: wrap;
      font-size: 40px;
      line-height: 1.3;
      font-weight: 800;
      letter-spacing: 0;
      color: rgba(255, 255, 255, 0.95);
      text-align: left;
    }

    /* Bottom Line Text */
    .text-bot-line {
      font-size: 40px;
      line-height: 1.3;
      font-weight: 800;
      margin: 0;
      letter-spacing: 0;
      color: rgba(255, 255, 255, 0.95);
      text-align: left;
    }

    /* Rotating Service Type */
    .carousel-service-type {
      transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      display: inline-block;
      white-space: nowrap;
      color: #ffc107;
      font-weight: 900;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
      position: relative;
    }

    .carousel-service-type::after {
      content: '';
      position: absolute;
      bottom: -3px;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, #ffc107, transparent);
      opacity: 0.6;
    }

    /* Carousel Container */
    .service-carousel-container {
      position: relative;
      width: 240px;
      height: 280px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      padding: 20px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      animation: containerGlow 3s ease-in-out infinite;
    }

    @keyframes containerGlow {
      0%, 100% {
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
      }
      50% {
        box-shadow: 0 25px 65px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
      }
    }

    /* Individual Service Items */
    .service-item {
      position: absolute;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      animation: fadeOut 0.7s ease-in-out;
      pointer-events: none;
    }

    .service-item.active {
      opacity: 1;
      animation: fadeInScale 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      pointer-events: auto;
    }

    @keyframes fadeInScale {
      from {
        opacity: 0;
        transform: translateY(25px) scale(0.92);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes fadeOut {
      from {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
      to {
        opacity: 0;
        transform: translateY(-25px) scale(0.92);
      }
    }

    /* Profile Image */
    .service-profile-img {
      width: 160px;
      height: 160px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(255, 255, 255, 0.2);
      border: 5px solid rgba(255, 255, 255, 0.95);
      margin-bottom: 15px;
      flex-shrink: 0;
      transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      position: relative;
      z-index: 2;
    }

    .service-item.active .service-profile-img {
      transform: scale(1.02);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 4px rgba(255, 193, 7, 0.3);
    }

    /* Service Label */
    .service-label {
      color: #fff;
      font-weight: 700;
      font-size: 17px;
      text-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
      white-space: nowrap;
      letter-spacing: 0;
      transition: all 0.5s ease;
      position: relative;
      z-index: 2;
    }

    .service-item.active .service-label {
      color: #ffc107;
      font-size: 18px;
    }

    /* Banner Description */
    .banner-description {
      color: rgba(255, 255, 255, 0.85);
      font-size: 15px;
      line-height: 1.6;
      margin-top: 15px;
      font-weight: 400;
      letter-spacing: 0;
      max-width: 100%;
      animation: slideInUp 1s ease-out 0.2s backwards;
      text-align: left;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .carousel-banner-wrapper {
        gap: 35px;
      }

      .text-top-line,
      .text-bot-line {
        font-size: 36px;
      }

      .service-carousel-container {
        width: 220px;
        height: 260px;
      }

      .service-profile-img {
        width: 145px;
        height: 145px;
      }

      .service-label {
        font-size: 16px;
      }

      .banner-description {
        font-size: 14px;
      }
    }

    @media (max-width: 992px) {
      .carousel-banner-wrapper {
        gap: 30px;
        flex-wrap: nowrap;
      }

      .banner-text-content {
        min-width: auto;
      }

      .text-top-line,
      .text-bot-line {
        font-size: 32px;
      }

      .service-carousel-container {
        width: 200px;
        height: 240px;
        padding: 15px;
      }

      .service-profile-img {
        width: 130px;
        height: 130px;
        margin-bottom: 12px;
      }

      .service-label {
        font-size: 15px;
      }

      .banner-description {
        font-size: 14px;
      }
    }

    @media (max-width: 768px) {
      .carousel-banner-wrapper {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
        margin-bottom: 20px;
      }

      .banner-text-content {
        text-align: left;
        width: 100%;
      }

      .text-top-line,
      .text-bot-line {
        font-size: 28px;
        text-align: left;
      }

      .service-carousel-container {
        width: 200px;
        height: 240px;
        align-self: center;
      }

      .service-profile-img {
        width: 130px;
        height: 130px;
      }

      .banner-description {
        font-size: 13px;
        text-align: left;
        line-height: 1.5;
      }

      .service-label {
        font-size: 14px;
      }
    }

    @media (max-width: 480px) {
      .text-top-line,
      .text-bot-line {
        font-size: 22px;
        gap: 6px;
      }

      .carousel-banner-wrapper {
        gap: 15px;
      }

      .service-carousel-container {
        width: 180px;
        height: 220px;
        padding: 12px;
      }

      .service-profile-img {
        width: 115px;
        height: 115px;
        margin-bottom: 10px;
        border-width: 4px;
      }

      .banner-description {
        font-size: 12px;
        line-height: 1.4;
      }

      .service-label {
        font-size: 13px;
      }
    }

  .nav-animation { position: relative; }
  .nav-animation .dropdown-mega { position: relative; }
  .nav-animation .megamenu {
    position: absolute;
    left: 0;
    top: 100%;
    width: 820px;
    background: #fff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    display: none;
    z-index: 9999;
    max-height: calc(100vh - 160px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav-animation .dropdown-mega:hover > .megamenu{display:block}
  .nav-animation .dropdown-mega.open > .megamenu{display:block}

  .megamenu .category { padding:8px }
  .megamenu .category .cat-head { display:flex;align-items:center;gap:10px }
  .megamenu .category img{width:72px;height:56px;object-fit:cover;border-radius:6px}
  .megamenu .category h5{margin:0;font-size:16px;color:#024637;font-weight:800}
  .megamenu .category ul{margin-top:8px;padding-left:0;list-style:none}
  .megamenu .category ul li{margin:6px 0}
  .megamenu .category ul li a{color:#333;text-decoration:none;font-weight:600}
  .megamenu .category ul li a.small{font-weight:400;color:#666;font-size:13px}

  .megamenu .megamenu-footer{padding:6px 0}
  .megamenu .megamenu-footer .site-button{background:#ffb600;border:none;color:#fff;padding:10px 18px;border-radius:6px;font-weight:700}

  @media (max-width: 991px){
    .nav-animation .megamenu{position:static;width:100%;box-shadow:none;padding:12px; max-height:70vh; overflow-y:auto}
    .nav-animation .dropdown-mega:hover > .megamenu{display:block}
    .megamenu .row{display:flex;flex-direction:column}
    .megamenu .category img{width:62px;height:48px}
  }

  /* Desktop: make megamenu full-bleed and fixed beneath header for reliable positioning */
  @media (min-width: 992px){
    .nav-animation .megamenu{
      position:fixed;
      left:0;
      right:0;
      top:var(--megamenu-top,100px);
      width:100%;
      max-width:none;
      border-radius:0 0 8px 8px;
      padding:22px 32px;
    }
    .megamenu > .container{max-width:1200px;margin:0 auto}
  }

  /* Styles for Why Flex-Fix dropdown cards */
  .component-library--comp-dd-wrapper { position: relative; display: inline-block; width:100%; }
  .component-library--comp-dd-toggle { cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 8px 16px; background: #fff; border:1px solid #ddd; border-radius:4px; }
  .component-library--comp-dd-list { display: none; position: absolute; top:100%; left:0; width:100%; background:#fff; box-shadow:0 4px 12px rgba(0,0,0,0.1); border-radius:4px; padding:16px; z-index:10000; }
  .dropdown-mega:hover .component-library--comp-dd-list { display: block; }
  .component-library--comp-cards-wrapper { display: flex; flex-wrap: wrap; gap:12px; }
  .component-library--comp-nav-card { display: flex; flex-direction: column; padding:12px; border:1px solid #eee; border-radius:6px; text-decoration:none; color:#333; flex:1 1 220px; max-width:240px; }
  .component-library--comp-nav-card:hover { background:#f9f9f9; }
  .component-library--comp-nav-content-label { font-weight:600; margin-bottom:4px; }
  .component-library--comp-nav-content-small-label { font-size:13px; color:#666; }



  .see-all-services-cta{padding:26px 0}
  .see-all-services-cta .site-button.large-btn{padding:14px 28px;font-size:16px;border-radius:8px;background:#ffb600;color:#fff;border:none;font-weight:800}
  .see-all-services-cta .site-button.large-btn:hover{opacity:.95}


    /* Make megamenu links behave like existing .sub-menu hover */
  .megamenu .category ul li a {
    color: #000;
    display: block;
    font-size: 13px;
    padding: 14px 20px;
    padding-left: 20px;
    font-weight: 600;
    border-bottom: 1px solid #f4f4f4;
  }
  .megamenu .category ul li a:hover,
  .megamenu .category ul li:hover > a {
    color: #ffb600;
    text-decoration: none;
    background: rgba(255,182,0,0.04);
  }
  @media (max-width: 991px){
    .megamenu .category ul li a { padding: 12px 14px }
  }