  .bodyHome {
      margin: 0;
      padding: 0;
      box-sizing: border-box;


  }

  .the-carousel {
      padding: 0;
      margin: 0;
  }

  #sectionOneHome {
      position: relative;
      top: 20dvh;
      width: 85%;
      background-color: rgba(0, 157, 255, 0.384);
      padding: 20px;



  }

  #carouselExampleIndicators {}

  #sectiontowHome {
      padding-top: 250px;
      margin-bottom: 60px;

  }










  /* ========= COMPACT ROYAL ELEGANCE HERO ========= */
  :root {
      --bg-deep: #050406;
      --gold-1: #e9d08a;
      --gold-2: #c8a43a;
      --crystal: rgba(255, 255, 255, 0.9);
      --muted: rgba(255, 255, 255, 0.85);
      --soft-black: #060507;
      --ease: cubic-bezier(.17, .9, .32, 1);
  }

  /* Base */
  .titan-v6 {
      position: relative;
      width: 100%;
      height: calc(100vh - 20vw);
      min-height: 500px;
      overflow: hidden;
      background: var(--bg-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Playfair Display", Georgia, serif;
      color: var(--muted);
      direction: rtl;
  }

  /* Background layers */
  .v6-bg {
      position: absolute;
      inset: 0;
      z-index: 1;
      overflow: hidden;
      pointer-events: none;
  }

  .v6-image {
      position: absolute;
      inset: 0;
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      transform: scale(1.06);
      will-change: transform;
      filter: contrast(1.05) saturate(1.03) brightness(.92);
      transition: transform 12s linear;
  }

  .v6-overlay {
      position: absolute;
      inset: 0;
      mix-blend-mode: multiply;
      opacity: .6;
      background: linear-gradient(135deg,
              rgba(0, 0, 0, 0.8) 0%,
              rgba(0, 0, 0, 0.6) 50%,
              rgba(0, 0, 0, 0.8) 100%) !important;
      background: none !important;
  }

  /* Canvas (WebGPU/WebGL fallback) */
  #v6Canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 2;
      display: block;
  }

  /* Sheen overlay (subtle, decorative) */
  .v6-sheen {
      position: absolute;
      width: 100%;
      height: 100%;
      inset: 0;
      z-index: 3;
      pointer-events: none;
      mix-blend-mode: screen;
      opacity: 0.9;
      background: var(--shadow-color-strong);
  }

  /* Content (compact & luxurious) */
  .v6-content {
      position: relative;
      z-index: 1;
      text-align: center;
      max-width: 900px;
      padding: 0 1.2rem;
      transform: translateZ(0);
  }

  .v6-title {
      font-size: var(--fs-lg);
      font-weight: 700;
      letter-spacing: 0.02em;
      margin-bottom: 0.5rem;
      color: transparent;
      background-image: linear-gradient(90deg, #fff9ea 0%, #6b6bd0 35%, #6b6cd1 65%, #fff6df 100%);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 8px 40px rgba(200, 160, 60, 0.09);
      transition: text-shadow .6s var(--ease);
  }

  .v6-sub {
      font-size: var(--fs-xs);
      font-weight: 300;
      max-width: 700px;
      margin: 0 auto 1.5rem;
      color: rgba(255, 255, 255, 0.9);
      text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
      line-height: 1.5;
  }

  /* Jewel CTA */
  .v6-cta {
      --pad-y: .55rem;
      --pad-x: 1.25rem;
      border: none;
      border-radius: 999px;
      cursor: pointer;
      display: inline-block;
      position: relative;
      overflow: visible;
      background: var(--gradient-primary);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.04);
      padding: var(--pad-y) var(--pad-x);
      transition: transform .28s var(--ease), box-shadow .28s var(--ease);
      will-change: transform;
  }

  .v6-cta-inner {
      display: flex;
      align-items: center;
      gap: .7rem;
      color: var(--crystal);
      font-weight: 600;
      font-size: var(--fs-xxs);
  }

  .v6-gem {
      display: inline-block;
      color: var(--gold-2);
      font-size: var(--fs-xxs);
      text-shadow: 0 2px 10px rgba(200, 150, 40, 0.35);
      transform: translateY(-1px);
      transition: transform 0.3s ease;
  }

  .v6-cta:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.65);
  }

  .v6-cta:hover .v6-gem {
      transform: translateY(-1px) rotate(180deg);
  }

  .v6-cta:active {
      transform: translateY(-2px) scale(1.01);
  }

  /* Scroll */
  .v6-scroll {
      position: absolute;
      bottom: 5.2vh;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1;
      background: transparent;
      border: none;
      cursor: pointer;
      color: var(--crystal);
  }

  .v6-scroll-arrow {
      display: inline-block;
      font-size: 1.6rem;
      opacity: .95;
      filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.6));
      transition: transform .28s var(--ease);
  }

  .v6-scroll:hover .v6-scroll-arrow {
      transform: translateY(6px);
  }

  /* Interaction effects */
  .titan-v6:hover .v6-image {
      transform: scale(1.12);
  }

  /* Performance optimizations */
  @media (prefers-reduced-motion: reduce) {
      #v6Canvas {
          display: none !important;
      }

      .v6-title,
      .v6-cta,
      .v6-scroll,
      .v6-image {
          transition: none !important;
          animation: none !important;
      }

      .titan-v6:hover .v6-image {
          transform: scale(1.06);
      }
  }

  /* Responsive tuning */
  @media (max-width: 900px) {
      .titan-v6 {
          min-height: 70vh;
          height: auto;
          padding: 3rem 0;
      }

      .v6-title {
          font-size: var(--fs-lg);
      }

      .v6-gem {
          font-size: var(--fs-xxs);
      }

      #v6Canvas {
          opacity: 0.9;
      }

      .v6-scroll {
          bottom: 2.5vh;
      }
  }

  @media (max-width: 480px) {
      .v6-cta {
          padding: calc(var(--fs-xxs) - 3vw) var(--fs-xxs);
      }

      .v6-cta-inner {
          font-size: var(--fs-xxs);
      }

      .v6-scroll {
          bottom: 2vh;
      }
  }

  /* Accessibility */
  .v6-cta:focus-visible {
      outline: 2px solid var(--gold-2);
      outline-offset: 2px;
  }

  .v6-scroll:focus-visible {
      outline: 2px solid rgba(255, 255, 255, 0.5);
      outline-offset: 2px;
  }

  /* High contrast mode */
  @media (prefers-contrast: high) {
      .v6-title {
          -webkit-text-fill-color: #fff;
          background: none;
          text-shadow: 0 0 10px #000;
      }

      .v6-cta {
          background: #c8a43a;
          border: 2px solid #fff;
      }
  }


























































  /* ----------- swiper-button style ---------------- */

  .swiper-button-next:after,
  .swiper-rtl .swiper-button-prev:after {
      content: 'next';
      font-size: var(--fs-lg);
      color: var(--accent-primary);
  }


















  /* ========================== */





  /* ========== LIGHTWEIGHT HERO – STATIC, FAST ========== */
  .hero-simple {
      position: relative;
      width: 100%;
      height: calc(100vh - 20vw);
      min-height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      overflow: hidden;
      font-family: "Playfair Display", Georgia, serif;
      direction: rtl;
  }

  .hero-background {
      position: absolute;
      inset: 0;
      z-index: 0;
  }

  .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
  }

  .hero-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
      /* fallback */
      mix-blend-mode: multiply;
  }

  .hero-content {
      position: relative;
      z-index: 1;
      max-width: 900px;
      padding: 0 1.2rem;
      color: white;
  }

  .hero-title {
      font-size: var(--fs-md) !important;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: #fff9ea;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  }

  .hero-subtitle {
      font-size: var(--fs-sm);
      ;
      font-weight: 300;
      margin-bottom: 1.8rem;
      opacity: 0.95;
      text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  }

  .hero-button {
      background: linear-gradient(145deg, var(--bg-tertiary), var(--accent-primary));
      border: none;
      border-radius: 999px;
      padding: calc(1.0rem - var(--fs-md)) calc(2.5rem - var(--fs-md));
      color: white;
      font-size: var(--fs-sm);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      cursor: pointer;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .hero-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
  }

  .hero-button span:first-child {
      font-size: 1.3rem;
      color: #ffe69b;
  }

  .hero-scroll {
      position: absolute;
      bottom: 5vh;
      left: 50%;
      transform: translateX(-50%);
      background: transparent;
      border: none;
      color: white;
      font-size: 2rem;
      cursor: pointer;
      z-index: 3;
      opacity: 0.9;
      transition: opacity 0.2s, transform 0.2s;
  }

  .hero-scroll:hover {
      opacity: 1;
      transform: translateX(-50%) translateY(6px);
  }

  /* Mobile fine‑tuning */
  @media (max-width: 768px) {
      .hero-simple {
          min-height: 80vh;
          height: auto;
          padding: 3rem 0;
      }

      .hero-button {
          padding: calc(1.0rem - var(--fs-md)) calc(2.5rem - var(--fs-md));
          font-size: var(--fs-xs);
      }

      .hero-scroll {
          bottom: 3vh;
          font-size: 1.8rem;
      }
  }