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

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

    .animate-marquee {
      display: inline-block;
      white-space: nowrap;
      animation: marquee 30s linear infinite;
    }

    .hero-gradient {
      background: radial-gradient(circle at center, rgba(217, 188, 112, 0.1) 0%, rgba(15, 36, 46, 0) 70%);
    }

    /* Search Modal Styles */
    #search-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      backdrop-filter: blur(8px);
      z-index: 1000;
      justify-content: center;
      align-items: center;
    }

    #search-modal.active {
      display: flex;
    }

    .modal-content {
      background: #fdfaf5;
      width: 90%;
      max-width: 600px;
      padding: 2.5rem;
      border-radius: 2rem;
      border: 1px solid rgba(217, 188, 112, 0.2);
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      cursor: pointer;
      color: #0f242e;
      transition: transform 0.3s ease;
    }

    .modal-close:hover {
      transform: rotate(90deg);
    }

    /* Hero Carousel Styles */
    .carousel-item {
      position: absolute;
      width: 70%;
      height: 100%;
      transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      z-index: 10;
      transform: translateX(0) scale(0.65);
      cursor: pointer;
      overflow: hidden;
      border-radius: 2rem;
      pointer-events: auto;
      /* Ensure clickable even when behind */
    }

    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 2rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      border: 1px solid #d9bc70;
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .no-scrollbar::-webkit-scrollbar {
      display: none;
    }

    /* Hide scrollbar for IE, Edge and Firefox */
    .no-scrollbar {
      -ms-overflow-style: none;
      /* IE and Edge */
      scrollbar-width: none;
      /* Firefox */
    }

    .carousel-item.active {
      opacity: 1;
      z-index: 30;
      transform: translateX(0) scale(1);
    }

    .carousel-item.active img {
      border: 1px solid #d9bc70;
    }

    .carousel-item.prev {
      opacity: 0.9;
      z-index: 20;
      transform: translateX(-30%) scale(0.75);
      filter: brightness(0.6);
    }

    .carousel-item.next {
      opacity: 0.9;
      z-index: 20;
      transform: translateX(30%) scale(0.8);
      filter: brightness(0.6);
    }

    .carousel-item.far-prev {
      opacity: 0.5;
      z-index: 15;
      transform: translateX(-45%) scale(0.6);
      filter: brightness(0.4);
    }

    .carousel-item.far-next {
      opacity: 0.5;
      z-index: 15;
      transform: translateX(45%) scale(0.72) translateY(-20px);
      /* Taller and higher than left side */
      filter: brightness(0.4);
    }

    .carousel-item.hidden-slide {
      opacity: 0;
      transform: scale(0.5);
    }

    /* Internal Slide Content Overlay */
    .slide-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(15, 36, 46, 0.95) 0%, rgba(15, 36, 46, 0.5) 50%, transparent 100%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 2.5rem;
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }

    .carousel-item.active .slide-overlay {
      opacity: 1;
      pointer-events: auto;
    }

    .slide-subtitle {
      color: #d9bc70;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
      transform: translateY(10px);
      transition: transform 0.6s ease 0.1s;
    }

    .slide-title {
      font-family: 'Playfair Display', serif;
      color: white;
      font-size: 2.25rem;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      transform: translateY(10px);
      transition: transform 0.6s ease 0.2s;
    }

    .slide-cta {
      align-self: flex-start;
      background: #d9bc70;
      color: #0f242e;
      padding: 0.75rem 1.5rem;
      border-radius: 9999px;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      transition: all 0.3s ease;
      transform: translateY(10px);
      transition: transform 0.6s ease 0.3s, background 0.3s ease;
    }

    .carousel-item.active .slide-subtitle,
    .carousel-item.active .slide-title,
    .carousel-item.active .slide-cta {
      transform: translateY(0);
    }

    .slide-cta:hover {
      background: #e6d3a0;
      transform: scale(1.05);
    }

    /* Testimonial Slider Styles */
    .testimonial-slide {
      opacity: 0;
      transition: opacity 0.7s ease-in-out;
      pointer-events: none;
    }

    .testimonial-slide.active {
      opacity: 1;
      z-index: 10;
      pointer-events: auto;
    }

    .testimonial-slide.active img {
      transform: scale(1);
    }

    .testimonial-slide img {
      transition: transform 1.2s ease-out;
    }

    /* Testimonial Image Gradient - Handling LTR/RTL */
    .testimonial-image-gradient {
      background: linear-gradient(to right, #f4f7f8 0%, rgba(244, 247, 248, 0.8) 40%, rgba(244, 247, 248, 0) 100%);
    }

    [dir="rtl"] .testimonial-image-gradient {
      background: linear-gradient(to left, #f4f7f8 0%, rgba(244, 247, 248, 0.8) 40%, rgba(244, 247, 248, 0) 100%);
    }

    @media (max-width: 1024px) {
      .carousel-item {
        width: 85%;
      }

      .carousel-item.prev {
        transform: translateX(-15%) scale(0.85);
        opacity: 0.3;
      }

      .carousel-item.next {
        transform: translateX(15%) scale(0.85);
        opacity: 0.3;
      }
    }

    /* ===== Premium Section Slider (Services, Products, Specialists) ===== */
    .section-slider-container {
      position: relative;
      margin: 0 -1rem;
      padding: 0 1rem;
      overflow: hidden;
    }

    .section-slider-track {
      display: flex;
      gap: 2rem;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      width: max-content;
    }

    .section-slider-track>div {
      width: 320px;
      flex-shrink: 0;
    }

    /* Side Navigation Buttons */
    .section-nav-wrapper {
      position: absolute;
      top: 50%;
      left: -1.5rem;
      right: -1.5rem;
      transform: translateY(-50%);
      pointer-events: none;
      z-index: 40;
      display: flex;
      justify-content: space-between;
    }

    .section-prev,
    .section-next {
      pointer-events: auto;
      background: white;
      color: #0f242e;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(217, 188, 112, 0.1);
      width: 3.5rem !important;
      height: 3.5rem !important;
      display: flex !important;
      align-items: center;
      justify-content: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .section-prev:hover,
    .section-next:hover {
      background: #d9bc70;
      color: white;
      transform: scale(1.1);
    }

    @media (max-width: 767px) {
      .section-slider-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }

      .section-nav-wrapper {
        display: none;
      }

      .section-slider-track>div {
        width: 280px;
      }
    }

    /* Scroll Utilities */
    #scroll-progress-container {
      position: fixed;
      right: 2rem;
      bottom: 6rem;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.3s ease;
      width: 4rem;
      height: 4rem;
    }

    #scroll-progress-container.visible {
      opacity: 1;
      pointer-events: auto;
    }

    #back-to-top {
      width: 3.5rem;
      height: 3.5rem;
      background: #0f242e;
      color: #d9bc70;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px rgba(15, 36, 46, 0.2);
      border: 2px solid transparent;
      position: relative;
      z-index: 10;
    }

    .progress-ring {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      transform: rotate(-90deg);
      pointer-events: none;
    }

    .progress-ring__circle {
      transition: stroke-dashoffset 0.1s linear;
    }

    #back-to-top:hover {
      transform: translateY(-5px);
      background: #d9bc70;
      color: #0f242e;
    }

    /* FAQ Styles */
    .faq-item {
      border-bottom: 1px solid rgba(217, 188, 112, 0.2);
    }

    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }

    .faq-item.active .faq-content {
      max-height: 200px;
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }

    /* --- Marquee Animation --- */
    @keyframes scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(calc(-250px * 7));
      }
    }

    .marquee {
      display: flex;
      width: calc(250px * 14);
      animation: scroll 40s linear infinite;
    }

    .marquee:hover {
      animation-play-state: paused;
    }

    .marquee-item {
      width: 250px;
      flex-shrink: 0;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0.8;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .marquee-item:hover {
      opacity: 1;
      transform: scale(1.1);
    }