  .banner-wrapper {
      position: relative;
      height: 300vh;
      /* 3 × viewport height for scrolling */
  }

  /* Banner stays pinned while wrapper scrolls */
  .banner {
      position: sticky;
      top: 0;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #000;
  }

  .banner-media {
      position: absolute;
      inset: 0;
      z-index: 0;
  }

  .banner-img {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 120%;
      min-height: 120%;
      object-fit: cover;
      transform: translate(-50%, -50%) scale(0.4);
      /* your animation script will control scaling */
      transform-origin: center center;
      will-change: transform;
  }

  .banner::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
      z-index: 1;
  }

  /* --- Text & Circle Placement --- */
  .banner-left {
      position: absolute;
      top: 20%;
      left: 5%;
      color: white;
      z-index: 2;
  }

  .banner-left .headline {
      font-size: 3rem;
      font-weight: 500;
      line-height: 1.2;
  }

  .banner-left .subhead {
      font-size: 1rem;
      margin-top: 20px;
      opacity: 0.85;
  }

  .banner-right {
      position: absolute;
      bottom: 20%;
      right: 5%;
      color: white;
      text-align: right;
      z-index: 2;
  }

  .banner-right .headline {
      font-size: 3rem;
      font-weight: 500;
      line-height: 1.2;
  }

  .circle-cta {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: linear-gradient(135deg, #d4af37, #b8860b);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      font-weight: bold;
      color: black;
      z-index: 3;
      cursor: pointer;
      transition: transform 0.3s ease;
  }

  .circle-cta:hover {
      transform: translate(-50%, -50%) scale(1.05) rotate(15deg);
  }

  .circle-cta i {
      /* display: inline-block; */
      color: white;
      font-size: 40px;
  }


  .page-content {
      padding: 80px 20px;
      background: #111;
      color: #fff;
  }

  /***************************************************** Section container */
  .choose-section {
      background: #000;
      /* padding: 20px 20px; */
      display: flex;
      flex-direction: column;
      align-items: center;
      color: #fff;

  }

  /* Title */
  .choose-title {
      font-size: 3rem;
      font-weight: normal;
      letter-spacing: 2px;
      margin-top: 10px;
      text-align: center;
  }

  @media screen and (max-width: 768px) {
      .choose-title {
          font-size: 24px;
          margin-top: 20px;
      }

  }

  /* Outer box */
  .choose-box {
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      background: #0e0d0f;
      border: 1px solid rgba(219, 196, 119, 0.6);
      border-radius: 20px;
      padding: 40px 80px;
      width: 90%;
      margin: 20px auto;
      box-shadow: 0 0 20px rgba(219, 196, 119, 0.2);
      overflow: hidden;
      /* important for pseudo effect */
  }

  /* Left content */
  .choose-left {
      /* flex: 1; */
      text-align: left;
  }

  .choose-left h3 {
      font-size: 45px;
      margin-bottom: 12px;
      color: #fff;
  }

  .choose-left p {
      font-size: 18px;
      color: #d4af37;
      margin-bottom: 24px;
      line-height: 1.5;
  }

  .choose-btn {
      background: linear-gradient(90deg, #dbc477, #d6ad55);
      border: none;
      padding: 12px 28px;
      font-size: 0.95rem;
      font-weight: 600;
      border-radius: 12px;
      cursor: pointer;
      margin-bottom: 28px;
      color: #19181c;
      transition: background 0.3s;
  }

  .choose-btn:hover {
      background: linear-gradient(90deg, #d6ad55, #dbc477);
  }

  .choose-left h4 {
      font-size: 1.1rem;
      font-weight: 500;
      color: #fff;
      line-height: 1.4;
  }

  .choose-left h4 span {
      font-size: 1.6rem;
      font-weight: 700;
      color: #dbc477;
  }

  /* Right circular graphic */
  .choose-right {
      position: relative;
      width: 260px;
      height: 260px;
      flex-shrink: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 5%;
  }

  /* Circle */
  .circle-rotating {
      position: absolute;
      width: 220px;
      height: 220px;
      border: 4px solid #b38e43;
      border-radius: 50%;
      animation: rotateCircle 10s linear infinite;
  }

  /* Dot */
  .circle-rotating .dot {
      position: absolute;
      width: 14px;
      height: 14px;
      background: #dbc477;
      border-radius: 50%;
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);

  }

  /* animation */

  .choose-container {
      position: relative;
      width: 320px;
      height: 320px;
  }

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

  .choose-dot {
      position: absolute;
      inset: 0;
      transition: transform 0.8s ease-in-out;
  }

  .dot-img {
      position: absolute;
      width: 24px;
      height: 24px;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
  }

  @keyframes orbitRotate {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }

  /* Fixed labels */
  .circle-text span {
      position: absolute;
      font-size: 0.9rem;
      color: #fff;
      font-weight: 500;
  }

  .circle-text .top {
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
  }

  .circle-text .right {
      right: -120px;
      top: 50%;
      transform: translateY(-50%);
  }

  .circle-text .bottom {
      bottom: -30px;
      left: 50%;
      transform: translateX(-50%);
  }

  .circle-text .left {
      left: -120px;
      top: 50%;
      transform: translateY(-50%);
  }

  .choose-content {
      position: relative;
      min-height: 210px;

  }

  .category-item {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.4s ease;
  }

  .category-item h3 {
      font-size: 3rem;
      font-weight: normal;
  }

  .category-item.active {
      opacity: 1;
      position: relative;
  }

  .circle-text span {
      opacity: 0.4;
      transition: 0.3s ease;
      text-align: center;

  }

  .circle-text span.active {
      opacity: 1;
      /* font-size: 16px; */
      font-weight: bold;
      color: #d4af37;
  }

  .choose-container {
      position: relative;
      width: 320px;
      height: 320px;
  }

  /* rotating layer */
  .orbit-layer {
      position: absolute;
      inset: 0;
      transition: transform 0.8s ease-in-out;
  }

  /* keep dot positioned on edge */
  .choose-dot {
      position: absolute;
      inset: 0;
  }

  .dot-img {
      position: absolute;
      width: 24px;
      height: 24px;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
  }

  /* center text */
  .circle-center-text {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      pointer-events: none;
  }

  .circle-center-text h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 500;
  }



  /* Circle animation */
  @keyframes rotateCircle {
      from {
          transform: rotate(0deg);
      }

      to {
          transform: rotate(360deg);
      }
  }


  /**************************************************** Services section */
  .services-section {
      background: #19181c url('../images/service-backgroud-bg.png') center/cover no-repeat;
      color: #fff;
      padding: 20px 0 40px 0;
      text-align: center;
      /* min-height: 100vh; */
      position: relative;
      overflow: hidden;
      /* so lights don't scroll outside */
  }

  .services-header h1 {
      font-size: 3rem;
      font-weight: normal;
      margin-bottom: 16px;
      letter-spacing: 2px;
  }

  .services-header .services-desc {
      color: #d4af37;
      font-size: 1.15rem;
      margin-bottom: 36px;
      font-weight: 400;
      max-width: 780px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
  }

  .services-cards {
      display: flex;
      justify-content: center;
      gap: 28px;
      margin-bottom: 44px;
      flex-wrap: wrap;
  }

  .service-card {
      background: #161617;
      border-radius: 28px;
      overflow: hidden;
      width: 320px;
      box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
      display: flex;
      flex-direction: column;
      align-items: stretch;
      position: relative;
      transition: transform 0.17s;
  }

  .service-card img {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-top-left-radius: 28px;
      border-top-right-radius: 28px;
      transition: height 0.35s ease, transform 0.35s ease;
      border-radius: 5%;
  }

  .service-card:hover img {
      /* transform: scale(0.9); */
      height: 230px;
  }

  .service-info {
      padding: 20px 20px 20px 20px;
      background: #18171c;
      border-bottom-right-radius: 28px;
      border-bottom-left-radius: 28px;
      flex-grow: 1;
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 50px;
  }

  .service-info h2 {
      font-size: 28px;
      color: #fff;
      margin: 0 0 8px 0;
      font-weight: normal;
      letter-spacing: 0.02em;
      z-index: 2;
      transition: color 0.3s;
      text-align: left;
      line-height: 38px;
  }

  .service-para {
      overflow: hidden;
      max-height: 0;
      opacity: 0;
      transition: max-height 0.4s cubic-bezier(0.58, 0, 0.32, 1), opacity 0.2s;
      text-align: left;
  }

  .service-para p {
      color: #fff;
      font-size: 18px;
      margin: 0 0 18px 0;
  }

  .service-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #ece9df;
      color: #19181c;
      font-size: 1.4rem;
      border-radius: 50%;
      width: 38px;
      height: 38px;
      position: absolute;
      right: 22px;
      bottom: 22px;
      z-index: 2;
  }



  .service-card:hover .service-info .service-para {
      max-height: 120px;
      opacity: 1;
      margin-bottom: 8px;
  }

  .services-explore {
      margin-top: 8px;
  }

  .services-explore button {
      background: linear-gradient(90deg, #dbc477 0%, #d6ad55 100%);
      color: #19181c;
      border: none;
      border-radius: 16px;
      padding: 16px 44px;
      font-size: 1.15rem;
      font-weight: 500;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(219, 196, 119, 0.12);
      transition: background 0.2s;
  }

  .services-explore button:hover {
      background: linear-gradient(90deg, #d6ad55 0%, #dbc477 100%);
  }

  /* Heading becomes bold on hover */
  .service-card:hover .service-info h2 {
      color: #d4af37;
      font-size: 32px;
      /* line-height: 5px; */
      font-weight: 600;
  }

  /* Paragraph size reduces on hover */
  .service-card:hover .service-info .service-para p {
      font-size: 14px;
  }

  @media (max-width: 1200px) {
      .services-cards {
          gap: 18px;
      }

      .service-card {
          width: 270px;
      }
  }

  @media (max-width: 900px) {
      .services-cards {
          flex-wrap: wrap;
      }

      .service-card {
          width: 95vw;
          max-width: 390px;
          margin-bottom: 28px;
      }
  }

  /* Lights positioning */
  .lights {
      position: absolute;
      top: 0;
      height: auto;
      z-index: 1;
      pointer-events: none;
      /* makes lights non-clickable */
  }

  .left-lights {
      left: -4%;
      width: 200px;
      top: -10%;
  }

  .right-lights {
      right: -4%;
      width: 200px;
      top: -10%
  }

  /* Ensure content stays above lights */
  .services-header,
  .services-cards,
  .services-explore {
      position: relative;
      z-index: 2;
  }

  /********************** Offer Section *****/
  .custom-offer-section {
      width: 100vw;
      min-height: 470px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #19181c;
      position: relative;
      overflow: hidden;
      gap: 0px;
      background-image: url('../images/offer-bg.png');
      background-image: cover;
      background-position: center;
      background-repeat: no-repeat;
  }

  .offer-left {
      flex: 1.1;
      padding: 70px 0 70px 8vw;
      position: relative;
      min-width: 350px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      z-index: 1;
      margin-left: -30px;
  }


  .offer-discount {
      font-size: 3rem;
      color: #ffffff;
      font-weight: normal;
      letter-spacing: 2px;
      margin-bottom: 10px;
      z-index: 2;
  }

  .offer-title {
      font-size: 3.2rem;
      color: #dbc477;
      /* font-family: 'Georgia', serif; */
      font-weight: 600;
      margin-bottom: 24px;
      margin-top: 4px;
      line-height: 1.1;
      letter-spacing: 0.02em;
      z-index: 2;
  }

  .offer-desc {
      font-size: 18px !important;
      color: #d4af37;
      /* font-family: 'Segoe UI', Arial, sans-serif; */
      font-weight: normal;
      line-height: 1.5;
      max-width: 630px;
      margin: 0;
      z-index: 2;
  }

  .offer-right {
      flex: 1;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 5px 82px;
      min-width: 340px;
      z-index: 1;
  }

  .offer-right img {
      width: 540px;
      height: 355px;
      object-fit: cover;
      border-radius: 32px;
      background: #7a4b21;
      box-shadow: 0 10px 36px rgba(0, 0, 0, 0.19);
  }

  .offer-light {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 360px;
      height: 220px;
      background:
          radial-gradient(circle at left bottom, rgba(255, 255, 255, 0.38) 0%, rgba(219, 196, 119, 0.4) 28%, transparent 70%),
          radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 40%);
      opacity: 0.9;
      filter: blur(36px);
      pointer-events: none;
      z-index: 0;
  }


  @media (max-width: 1200px) {
      .offer-right img {
          width: 400px;
          height: 220px;
      }

      .offer-left {
          padding-left: 40px;
          min-width: 0;
      }
  }

  @media (max-width: 900px) {
      .custom-offer-section {
          flex-direction: column;
          min-height: 0;
          padding: 0;
      }

      .offer-left,
      .offer-right {
          padding: 32px 5vw;
          text-align: center;
      }

      .offer-right img {
          width: 92vw;
          max-width: 430px;
          height: auto;
          margin-top: 18px;
      }

      .spotlight-effect {
          width: 92vw;
      }
  }

  .marquee {
      width: 100%;
      overflow: hidden;
      white-space: nowrap;
      box-sizing: border-box;
      background-color: #000;
      padding: 10px;
  }

  .marquee-content {
      display: inline-flex;
      animation: marquee 5s linear infinite;
  }

  .marquee span {
      font-size: 30px;
      font-weight: 400;
      color: #FCEC94;
      margin-right: 2rem;
      margin-top: 10px;
  }

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

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

  .container {
      width: 100%;
      margin: 0 auto;
      padding: 0px 0px;
  }

  .grid-layout {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, auto);
      /* gap: 2px; */
      /* background-color: #2a2a2a; */
  }

  .grid-item {
      position: relative;
      overflow: hidden;
      min-height: 250px;
  }

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

  /* Header section - spans 2 columns */
  .header-section {
      grid-column: 1 / 4;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      background-color: #000000;
      padding: 10px;
      align-items: center;
  }

  .header-image {
      position: relative;
      min-height: 350px;
      margin: 0;
  }

  .header-image img {
      border-radius: 20px;
      width: 100%;
      height: 400px;
      padding: 0;
      object-fit: cover;
  }

  .header-text {
      background-color: #000000;
      padding: 0px 30px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
  }

  .header-text h1 {
      font-size: 48px;
      font-weight: 300;
      letter-spacing: 2px;
      margin-bottom: 30px;
      line-height: 1.2;
      color: white;
  }

  .header-text p {
      font-size: 18px;
      line-height: 1.8;
      color: #d4af37;
      font-weight: 300;
  }

  /* Middle row - text left, 2 images right */
  .middle-left {
      background-color: #000000;
      padding: 50px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      /* width: 80%; */
  }

  .middle-left h2 {
      line-height: 1.8;
      color: #d4af37;
      font-size: 18px !important;
      font-weight: 300;
      margin-bottom: 15px;
  }

  .middle-right {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 2px;
      height: 400px;
      background-color: #000000;
  }

  /* Bottom row - image left, text center, image right */
  .bottom-left {
      min-height: 280px;
      background-color: #000000;
  }

  .bottom-center {
      background-color: #000000;
      padding: 50px 40px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
  }

  .bottom-center h2 {
      font-size: 16px;
      font-weight: 300;
      line-height: 1.8;
      color: #d4af37;
      margin-bottom: 30px;
  }

  .explore-btn {
      background-color: #d4af37;
      color: #2a2a2a;
      padding: 12px 30px;
      border: none;
      border-radius: 5px;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .explore-btn:hover {
      background-color: #c5a028;
      transform: translateY(-2px);
  }

  .explore-btn::after {
      content: '→';
      font-size: 18px;
  }

  .bottom-right {
      min-height: 280px;
      background-color: #000000;
  }

  /* Bottom row grid structure */
  .bottom-row {
      grid-column: 1 / 3;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2px;
  }

  @media (max-width: 968px) {
      .header-section {
          grid-template-columns: 1fr;
      }

      .header-text {
          padding: 40px 30px;
      }

      .header-text h1 {
          font-size: 36px;
      }

      .grid-layout {
          /* grid-template-columns: 1fr; */
      }

      .middle-right {
          grid-template-columns: 1fr;
      }

      .bottom-row {
          grid-template-columns: 1fr;
      }
  }

  /* ========== Reveal / Interaction helpers ========== */
  .animate {
      opacity: 0;
      transform: translateY(26px);
      transition: opacity 700ms cubic-bezier(.2, .9, .2, 1),
          transform 700ms cubic-bezier(.2, .9, .2, 1);
      will-change: opacity, transform;
  }

  /* when JS / observer sets visible */
  .animate.in-view {
      opacity: 1;
      transform: translateY(0);
  }

  /* staggered child transitions will use inline transition-delay set by JS */

  /* image hover effect */
  .grid-item img {
      transition: transform 600ms cubic-bezier(.2, .9, .2, 1),
          filter 600ms cubic-bezier(.2, .9, .2, 1);
      will-change: transform, filter;
      backface-visibility: hidden;
      border-radius: 20px;
      padding: 4px;
      height: 450px;
  }

  .grid-item:hover img,
  .grid-item.js-anim-ready:focus-within img {
      transform: scale(1.06);
      filter: brightness(1.04) saturate(1.03);
  }

  /* header image slide + scale */
  .header-image {
      overflow: hidden;
  }

  .header-image img {
      transform: translateX(-8%) scale(1.03);
      transition: transform 900ms cubic-bezier(.2, .9, .2, 1);
      will-change: transform;
  }

  .header-image.animate.in-view img {
      transform: translateX(0) scale(1);
  }

  /* middle-right images: subtle scale-from-slightly-larger to normal */
  .middle-right .grid-item img {
      transform: scale(1.02);
  }

  .middle-right .grid-item.animate.in-view img {
      transform: scale(1);
  }

  /* bottom-row: children will get reveal via JS-stagger */
  .bottom-row>* {
      will-change: opacity, transform;
  }

  /* Explore button micro-interaction */
  .explore-btn {
      transition: transform 220ms cubic-bezier(.2, .9, .2, 1), box-shadow 220ms;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
      transform-origin: center;
  }

  .explore-btn:active {
      transform: translateY(1px) scale(.995);
  }

  .explore-btn:hover {
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  }

  /* Marquee - pause on hover for better UX */
  .marquee:hover .marquee-content,
  .marquee:focus-within .marquee-content {
      animation-play-state: paused;
      opacity: 0.96;
  }

  /* Respect reduced-motion */
  @media (prefers-reduced-motion: reduce) {

      .animate,
      .grid-item img,
      .header-image img,
      .marquee-content {
          transition: none !important;
          animation: none !important;
          transform: none !important;
          opacity: 1 !important;
      }
  }



  /* Gallery Section */

  /* Gallery Section */

  .gallery-section {
      padding: 10px 0;
      background-color: #1a1a1a;
  }

  .gallery-header {
      text-align: center;
      margin-bottom: 60px;
      padding: 0 20px;

  }

  .gallery-header h1 {
      font-size: 3rem;
      font-weight: normal;
      letter-spacing: 2px;
      color: #fff;
  }

  .gallery-header p {
      font-size: 18px !important;
      line-height: 1.8;
      color: #d4af37;
      max-width: 900px;
      margin: 0 auto;
      font-weight: 300;
  }

  .carousel-container {
      position: relative;
      padding: 0 40px;
      margin-bottom: 60px;
  }

  .slick-slider {
      padding: 20px 0;
  }

  .slide-item {
      padding: 0 15px;
      outline: none;
  }

  .slide-content {
      background-color: transparent;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease;
      height: 280px;
  }

  .slide-content:hover {
      transform: translateY(-10px);
  }

  .slide-content img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
  }

  /* CENTER SLIDE SCALE */

  .slick-center .slide-content {
      transform: scale(1.05);
  }

  /* ARROWS */

  .slick-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  /* LEFT ARROW */

  .slick-prev {
      left: -10px;
      background: #6b5327;
  }

  /* RIGHT ARROW */

  .slick-next {
      right: -10px;
      background: #d4af37;
  }

  /* REMOVE DEFAULT SLICK ICON */

  .slick-arrow::before {
      display: none;
  }

  /* CUSTOM ICONS */

  .slick-prev::after,
  .slick-next::after {
      font-size: 22px;
      font-weight: bold;
      color: #000;
  }

  .slick-prev::after {
      content: "←";
  }

  .slick-next::after {
      content: "→";
  }

  /* DOTS */

  .slick-dots {
      bottom: -70px;
      left: 80px;
      width: auto;
      display: flex !important;
      align-items: center;
      gap: 2px !important;
  }

  .slick-dots li {
      width: auto;
      height: auto;
      margin: 0;
  }

  /* DEFAULT DOT */

  .slick-dots li button {
      width: 4px !important;
      height: 4px !important;
      border-radius: 50%;
      padding: 0;
      background-color: #cccccc !important;
  }

  /* REMOVE DEFAULT DOT ICON */

  .slick-dots li button:before {
      display: none;
  }

  /* ACTIVE DOT */

  .slick-dots li.slick-active button {
      width: 28px !important;
      height: 8px !important;
      border-radius: 20px !important;
      background: #d4af37 !important;
  }


  /* Contct us  */
  /* ===== Section Layout ===== */
  .contact-section {
      display: flex;
      flex-wrap: wrap;
      align-items: stretch;
      min-height: 50vh;
      width: 100%;
  }

  .contact-left {
      flex: 1 1 50%;
      padding: 5rem 4rem;
      background-color: #0E0E0E;
  }

  .contact-right {
      flex: 1 1 50%;
      background: url("../images/service-card1.jpg") center/cover no-repeat;
      filter: brightness(0.6);
  }

  /* ===== Typography ===== */
  .contact-heading {
      font-size: 3rem;
      font-weight: 300;
      letter-spacing: 2px;
      margin-bottom: 1rem;
      color: #fff;
  }

  .contact-subtext {
      color: #b3b3b3;
      font-size: 1.1rem;
      margin-bottom: 3rem;
  }

  /* ===== Form Styling ===== */
  form {
      display: flex;
      flex-direction: column;
      gap: 2rem;
  }

  .form-row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
  }

  .form-row input {
      flex: 1;
  }

  input,
  textarea {
      background: transparent;
      border: none;
      border-bottom: 1px solid #444;
      padding: 0.75rem 0;
      color: white;
      font-size: 1rem;
      width: 100%;
      outline: none;
      transition: all 0.3s ease;
  }

  input:focus,
  textarea:focus {
      border-bottom: 1px solid #FFD700;
  }

  textarea {
      resize: none;
      height: 100px;
  }

  /* ===== Button ===== */
  .btn-send {
      display: inline-block;
      background: linear-gradient(90deg, #FFCC6B, #F8B73B, #D8A23D);
      color: #000;
      font-weight: 500;
      border: none;
      border-radius: 8px;
      padding: 0.9rem 2.5rem;
      cursor: pointer;
      transition: all 0.3s ease;
      align-self: flex-start;
  }

  .btn-send:hover {
      transform: translateY(-3px);
      box-shadow: 0 4px 10px rgba(216, 162, 61, 0.35);
  }

  /* ===== Responsive ===== */
  @media (max-width: 900px) {
      .contact-left {
          padding: 3rem 2rem;
      }

      .contact-heading {
          font-size: 2.5rem;
      }

      .contact-right {
          display: none;
      }
  }

  @media (max-width: 1200px) {
      .carousel-container {
          padding: 0 60px;
      }

      .gallery-header h1 {
          font-size: 56px;
      }
  }

  @media (max-width: 768px) {
      .gallery-header h1 {
          font-size: 42px;
          letter-spacing: 4px;
      }

      .gallery-header p {
          font-size: 14px;
      }

      .carousel-container {
          padding: 0 40px;
      }

      .slide-content {
          height: 300px;
      }

      .slick-arrow {
          width: 50px;
          height: 50px;
          bottom: -70px;
      }

      .slick-prev {
          right: 70px;
      }

      .slick-dots {
          left: 40px;
      }
  }

  @media (max-width: 480px) {
      .carousel-container {
          padding: 0 20px;
      }

      .gallery-header h1 {
          font-size: 32px;
      }

      .slick-dots {
          left: 20px;
      }

      .slick-prev {
          right: 60px;
      }
  }