    /* Topbar (Smaller Height) */
    .topbar {
      background: #ffffff;
      color: #b99762;
      font-size: 13px;
    }

    .topbar-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 4px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    /* Left Contact */
    .topbar-left {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .tb-contact {
      color: #b99762;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 2px 6px;
      border-radius: 4px;
      font-size: 16px;
      transition: 0.25s ease;
      font-weight: 600;
      /* BOLD FIX */
    }


    .tb-contact i {
      font-size: 13px;
      color: #b99762;

    }

    .tb-contact:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-2px);
    }

    /* Right Social Icons */
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .social-btn {
      width: 30px;
      height: 30px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-size: 16px;
      transition: 0.25s ease;
    }

    .fb {
      background: #1877f2;
    }

    .ig {
      background: linear-gradient(45deg,
          #feda75,
          #fa7e1e,
          #d62976,
          #962fbf);
    }

    .social-btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    /* Mobile Responsive */
    @media (max-width: 640px) {

      /* Email Hide on Mobile */
      .topbar-left a:first-child {
        display: none;
        /* Hides email */
      }

      .topbar-inner {
        flex-direction: row;
        justify-content: space-between;
        padding: 6px 14px;
      }

      .topbar-left {
        gap: 0;
      }

      .tb-contact {
        padding: 0;
        font-size: 15px;
      }
    }

    /* topbar end */
    /* navbar start */
    /* 🌿 Navbar */
    .navbar {
      /* background-color: #f0e7de !important; */
      background-color: #890713 !important;
      box-shadow: 0 2px 8px rgba(249, 246, 243, 0.6);
      height: 80px;
      display: flex;
      align-items: center;
      font-family: "Playfair Display", serif;
      /* Elegant font */
    }

    /* .navbar-logo {
      height: 80px;
      width: auto;
    } */

    .navbar-logo {
      height: 90px;
      width: 115px;
    }

    @media (max-width: 576px) {
      .navbar-logo {
        height: 60px;
      }
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 26px;
      text-decoration: none;
      letter-spacing: 0.5px;
      display: flex;
      align-items: center;
    }

    .navbar-nav .nav-link {
      /* color: #6d470e !important; */
      color: #fff !important;
      font-weight: 600;
      margin-right: 20px;
      transition: color 0.3s ease, transform 0.3s ease;
      font-size: 17px;
      font-family: "Playfair Display", serif;
    }

    .navbar-nav .nav-link:hover {
      color: #986d2d !important;
      transform: translateY(-2px);
    }

    .navbar-toggler {
      border-color: #c9a876;
    }

    .navbar-toggler-icon {
      filter: invert(82%) sepia(86%) saturate(520%) hue-rotate(1deg) brightness(95%) contrast(90%);
    }

    .order-btn {
      background-color: #c9a876 !important;
      border: 1px solid #c9a876 !important;
      color: #fff !important;
      font-weight: 600;
      border-radius: 6px;
      transition: 0.3s ease;
    }

    .order-btn:hover {
      background-color: #b99762 !important;
      /* slightly darker shade */
      border-color: #b99762 !important;
      color: #fff !important;
    }

    @media (max-width: 991px) {
      .navbar {
        height: auto;
        padding: 10px 0;
      }

      .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
        text-align: center;
      }

      .order-btn {
        display: block;
        margin: 10px auto;
        width: fit-content;
      }
    }

    /* Center the nav button on mobile */
    @media (max-width: 768px) {
      .nav-item {
        width: 100%;
        /* Take full width */
        text-align: center;
        /* Center content inside li */
      }

      .order-btn {
        display: inline-block;
        margin: 0 auto;
      }

      .nav-item.dropdown {
        width: auto !important;
        text-align: left !important;
      }
    }

    /* Dropdown Menu Styling */
    .dropdown-menu {
      background-color: #f0e7de;
      border: 1px solid #f3be02;
      min-width: 180px;
    }

    .dropdown-item {
      color: #c9a876;
      font-weight: 500;
      transition: 0.3s ease;
      font-family: "Playfair Display", serif;
    }

    .dropdown-item:hover {
      background-color: #c99d5b;
      /* Golden hover */
      color: #000 !important;
      /* Text black */
    }

    /* Dropdown toggle arrow white */
    .navbar-nav .dropdown-toggle::after {
      color: #b5925f;
    }

    /* navbar end */


    /* fixed btn start */
    /* Floating Buttons Container */
    .floating-btns {
      position: fixed;
      bottom: 25px;
      /* left: 25px; */
      display: flex;
      flex-direction: column;
      /* gap: 12px; */
      z-index: 9999;
    }

    /* Main Button Style */
    .float-btn {
      width: 90px;
      height: 90px;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      /* background: linear-gradient(135deg, #c9a876, #b89363);
            box-shadow: 0 10px 25px rgba(201, 168, 118, 0.45); */
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      overflow: hidden;
    }

    /* Hover Effect */

    /* Image Styling */
    .float-btn img {
      width: 65%;
      height: 65%;
      object-fit: contain;
      transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .float-btn:hover img {
      transform: scale(1.25);
    }

    /* fixed btn end */

    /* crousel start */
    .carousel-item img {
      height: 520px;
      width: 100%;
      object-fit: cover;
    }

    @media (max-width: 768px) {
      .carousel-item img {
        height: 260px;
      }
    }

    @media (max-width: 480px) {
      .carousel-item img {
        height: 200px;
      }
    }

    /* crousel end */

    /* about start */
    /* MAIN SECTION */
    .about-section {
      background: #f0e7de;
      padding: 70px 0;
      position: relative;
      overflow: hidden;
    }

    /* BACKGROUND SHAPES */
    .about-section::before,
    .about-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      opacity: 0.28;
      filter: blur(40px);
    }

    .about-section::before {
      width: 330px;
      height: 330px;
      background: #d8c7b5;
      top: -60px;
      left: -70px;
    }

    .about-section::after {
      width: 260px;
      height: 260px;
      background: #dcc7b7;
      bottom: -50px;
      right: -50px;
    }

    /* IMAGE */
    .about-img img {
      border-radius: 18px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
      transition: 0.5s ease;
    }

    .about-img img:hover {
      transform: scale(1.03);
    }

    /* HEADINGS */
    .small-heading {
      color: #c9a876;
      letter-spacing: 2px;
      font-size: 1.1rem;
    }

    .main-heading {
      font-size: 2.7rem;
      color: #3b3026;
      font-weight: 800;
      line-height: 1.3;
      padding-bottom: 8px;
      position: relative;
    }

    .main-heading::after {
      content: "";
      position: absolute;
      width: 70px;
      height: 3px;
      background: #c9a876;
      bottom: 0;
      left: 0;
      border-radius: 10px;
    }

    .highlight {
      color: #c9a876;
    }

    /* PARAGRAPH */
    .about-text {
      font-size: 1.3rem;
      line-height: 1.6;
      color: #3b3026;
      opacity: 0.9;
      margin-bottom: 28px;
    }

    /* FEATURES / POINTS */
    .about-point {
      font-size: 1.25rem;
      color: #3b3026;
      display: flex;
      align-items: center;
      margin-bottom: 0.8rem;
    }

    .point-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 2px solid #c9a876;
      color: #c9a876;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      font-size: 12px;
      font-weight: bold;
      margin-right: 10px;
    }

    /* BUTTON */
    .btn-about {
      background: #c9a876;
      padding: 0.8rem 2.4rem;
      border-radius: 50px;
      color: #fff;
      font-size: 1.3rem;
      font-weight: 600;
      text-decoration: none;
      transition: 0.3s ease;
      display: inline-block;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .btn-about:hover {
      background: #b59460;
      transform: translateY(-3px);
    }

    /* RESPONSIVE */
    @media (max-width: 767px) {
      .main-heading {
        font-size: 2.2rem;
        text-align: center;
      }

      .small-heading,
      .about-text {
        text-align: center;
      }

      .about-point {
        justify-content: center;
      }

      .btn-about {
        display: block;
        margin: auto;
      }
    }

    /* about end */

    /* services start */

    /* ================= SECTION ================= */
    .services-section {
      background: #fff;
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    /* Soft Golden Background Glow */
    .services-section::before,
    .services-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      z-index: 0;
    }

    .services-section::before {
      width: 500px;
      height: 500px;
      background: rgba(240, 231, 222, 0.8);
      top: -100px;
      left: -120px;
    }

    .services-section::after {
      width: 400px;
      height: 400px;
      background: rgba(240, 231, 222, 0.55);
      bottom: -100px;
      right: -120px;
    }

    /* ================= HEADING ================= */
    .services-small {
      color: #C9A876;
      letter-spacing: 3px;
      font-size: 1rem;
      font-weight: 700;
    }

    .services-heading {
      font-size: 3rem;
      color: #3b3026;
      font-weight: 800;
      position: relative;
      padding-bottom: 10px;
      display: inline-block;
    }

    .services-heading::after {
      content: "";
      position: absolute;
      width: 140px;
      height: 4px;
      background: linear-gradient(90deg, #C9A876, #E8D1B0);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 10px;
    }

    .services-subtext {
      font-size: 1.15rem;
      color: #6f6258;
    }

    /* ================= SERVICE CARD ================= */
    .service-card {
      padding: 25px;
      border-radius: 20px;
      text-align: center;
      background: rgba(255, 255, 255, 0.55);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(231, 216, 200, 0.9);
      position: relative;
      overflow: hidden;
      transition: 0.45s ease-in-out;
      transform-style: preserve-3d;
    }

    /* Shine on card border */
    .service-card::before {
      content: "";
      position: absolute;
      inset: 0;
      padding: 2px;
      border-radius: 20px;
      background: linear-gradient(135deg, #c9a876 0%, transparent 60%);
      -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: .4s ease;
    }

    .service-card:hover::before {
      opacity: 1;
    }

    /* Hover Lift + Slight Tilt */
    .service-card:hover {
      transform: translateY(-12px) scale(1.03) rotateX(6deg);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    }

    /* ================= IMAGE ================= */
    .service-img {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
    }

    .service-img img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      border-radius: 15px;
      transition: .45s ease;
      filter: brightness(0.9);
    }

    /* Image zoom + overlay shine */
    .service-img::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 80%;
      height: 100%;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.6), transparent);
      transform: skewX(-20deg);
      transition: .6s;
    }

    .service-card:hover .service-img img {
      transform: scale(1.12);
      filter: brightness(1);
    }

    .service-card:hover .service-img::after {
      left: 120%;
    }

    /* ================= TEXT ================= */
    .service-card h4 {
      color: #3b3026;
      font-size: 1.45rem;
      font-weight: 700;
      margin-top: 18px;
    }

    .service-card p {
      color: #6f6258;
      font-size: 1.05rem;
      margin-top: 6px;
      line-height: 1.45;
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 767px) {
      .services-heading {
        font-size: 2.3rem;
      }

      .service-img img {
        height: 180px;
      }
    }

    /* ṣervices end */

    /* banner start */
    .hero-section {
      padding: 80px 0 80px;
      position: relative;
      overflow: hidden;
      background: #f0e7de;
    }

    /* Glow Background */
    .hero-section::before,
    .hero-section::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(120px);
      opacity: 0.45;
    }

    .hero-section::before {
      width: 480px;
      height: 480px;
      background: rgba(201, 168, 118, 0.45);
      top: -80px;
      left: -120px;
    }

    .hero-section::after {
      width: 380px;
      height: 380px;
      background: rgba(255, 255, 255, 0.5);
      bottom: -90px;
      right: -80px;
    }

    /* ================= LEFT TEXT ================= */
    .tag-badge {
      font-size: 1rem;
      display: inline-block;
      padding: 6px 18px;
      backdrop-filter: blur(10px);
      background: rgba(255, 255, 255, 0.3);
      border-radius: 30px;
      color: #3b3026;
      border: 1px solid rgba(255, 255, 255, 0.6);
      margin-bottom: 20px;
      font-weight: 600;
    }

    .hero-title {
      font-size: 3.8rem;
      font-weight: 800;
      color: #3b3026;
      line-height: 1.2;
    }

    .hero-title span {
      color: #c9a876;
    }

    .hero-text {
      margin-top: 15px;
      font-size: 1.25rem;
      color: #64584d;
      line-height: 1.6;
      max-width: 500px;
    }

    /* ================= BUTTON ================= */
    .btn-gold {
      margin-top: 30px;
      background: #c9a876;
      padding: 12px 32px;
      border-radius: 40px;
      color: #fff;
      font-weight: 600;
      text-decoration: none;
      font-size: 1.2rem;
      transition: 0.3s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .btn-gold:hover {
      background: #b79662;
      transform: translateY(-4px);
    }

    /* ================= IMAGE SIDE ================= */
    .hero-img-box {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }

    .hero-img-box img {
      width: 100%;
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
      transition: 0.5s ease;
    }

    .hero-img-box img:hover {
      transform: scale(1.04);
    }

    /* Shine Animation */
    .hero-img-box::after {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 80%;
      height: 100%;
      background: linear-gradient(120deg,
          transparent,
          rgba(255, 255, 255, 0.6),
          transparent);
      transform: skewX(-20deg);
      transition: 0.9s;
    }

    .hero-img-box:hover::after {
      left: 140%;
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 767px) {
      .hero-title {
        font-size: 2.5rem;
        text-align: center;
      }

      .hero-text {
        text-align: center;
        margin: auto;
      }

      .btn-gold {
        display: block;
        margin: 25px auto 0;
      }

      .tag-badge {
        display: block;
        margin: auto auto 15px;
        text-align: center;
      }
    }

    /* banner end */

    /* contact start */
    /* ================= SECTION ================= */
    .contact-section {
      background: #ffffff;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }

    /* Soft Background Waves */
    .contact-section::before {
      content: "";
      position: absolute;
      top: -50px;
      left: -80px;
      width: 550px;
      height: 550px;
      background: rgba(201, 168, 118, 0.35);
      filter: blur(120px);
      border-radius: 50%;
    }

    .contact-section::after {
      content: "";
      position: absolute;
      bottom: -80px;
      right: -60px;
      width: 420px;
      height: 420px;
      background: rgba(255, 255, 255, 0.55);
      filter: blur(110px);
      border-radius: 50%;
    }

    /* Floating Decorative Circles */
    .circle {
      width: 90px;
      height: 90px;
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
      animation: float 6s infinite ease-in-out;
    }

    .circle.one {
      top: 10%;
      left: 5%;
    }

    .circle.two {
      bottom: 15%;
      right: 10%;
      width: 60px;
      height: 60px;
      animation-duration: 7s;
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-18px);
      }
    }

    /* ================= HEADING ================= */
    .contact-heading {
      font-size: 3.2rem;
      font-weight: 800;
      color: #3b3026;
      margin-bottom: 12px;
      position: relative;
    }

    .contact-heading span {
      background: linear-gradient(90deg, #c9a876, #e3c8a1);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .line {
      width: 140px;
      height: 4px;
      background: linear-gradient(90deg, #c9a876, #e8d7bc);
      margin: 12px auto 25px;
      border-radius: 10px;
    }

    .contact-sub {
      font-size: 1.2rem;
      color: #6f6258;
    }

    /* ================= LEFT INFO BOX ================= */
    .info-box {
      background: rgba(255, 255, 255, 0.45);
      padding: 28px;
      border-radius: 20px;
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255, 255, 255, 0.6);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    }

    .info-item {
      margin-bottom: 25px;
    }

    .info-icon {
      font-size: 1.6rem;
      color: #c9a876;
      margin-right: 10px;
    }

    .info-item h5 {
      font-size: 1.25rem;
      color: #3b3026;
      font-weight: 700;
    }

    .info-item p {
      margin: 0;
      color: #6f6258;
      font-size: 1.1rem;
    }

    /* ================= FORM ================= */
    .contact-form {
      background: rgba(255, 255, 255, 0.65);
      padding: 35px;
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      backdrop-filter: blur(12px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .contact-form input,
    .contact-form textarea {
      height: 50px;
      border-radius: 12px;
      border: 1px solid #d6c6b7;
      font-size: 1rem;
      padding-left: 14px;
      transition: 0.3s ease;
    }

    .contact-form textarea {
      height: 120px;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: #c9a876;
      box-shadow: 0 0 8px rgba(201, 168, 118, 0.5);
    }

    /* ================= BUTTON ================= */
    .btn-submit {
      background: linear-gradient(90deg, #c9a876, #b69662);
      color: #fff;
      padding: 12px 32px;
      border-radius: 40px;
      border: none;
      font-size: 1.15rem;
      font-weight: 600;
      transition: 0.3s ease;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    }

    .btn-submit:hover {
      transform: translateY(-4px);
      background: linear-gradient(90deg, #b69662, #c9a876);
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 767px) {
      .contact-heading {
        font-size: 2.4rem;
      }
    }

    /* contact end */

    /* footer start */
    /* ================= FOOTER ================= */
    .footer {
      background: #f0e7de;
      padding: 70px 0 20px;
      position: relative;
      overflow: hidden;
    }

    /* Soft Gold Glow */
    .footer::before {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      top: -120px;
      right: -120px;
      background: rgba(201, 168, 118, 0.35);
      filter: blur(120px);
      border-radius: 50%;
    }

    .footer-title {
      font-size: 1.6rem;
      font-weight: 700;
      color: #3b3026;
      margin-bottom: 18px;
      position: relative;
    }

    /* Underline effect */
    .footer-title::after {
      content: "";
      width: 50px;
      height: 3px;
      background: #c9a876;
      position: absolute;
      bottom: -5px;
      left: 0;
      border-radius: 5px;
    }

    /* Text */
    .footer p,
    .footer a {
      color: #6f6258;
      font-size: 1.1rem;
      text-decoration: none;
    }

    .footer a:hover {
      color: #c9a876;
    }

    /* Footer Links */
    .footer-links a {
      display: block;
      margin-bottom: 8px;
      position: relative;
      transition: 0.3s;
    }

    /* Hover Line */
    .footer-links a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      background: #c9a876;
      left: 0;
      bottom: -3px;
      transition: 0.3s ease;
    }

    .footer-links a:hover::after {
      width: 20%;
    }

    /* Social Icons */
    .social-icons a {
      font-size: 1.3rem;
      width: 42px;
      height: 42px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-right: 10px;
      color: #3b3026;
      transition: 0.3s;
      border: 1px solid rgba(255, 255, 255, 0.7);
      backdrop-filter: blur(5px);
    }

    .social-icons a:hover {
      background: #c9a876;
      color: #fff;
      transform: translateY(-3px);
    }

    /* Newsletter Input */
    .footer-input {
      background: rgba(255, 255, 255, 0.6);
      padding: 12px 18px;
      border-radius: 30px;
      border: 1px solid #d8c9b8;
      width: 100%;
      outline: none;
    }

    .footer-btn {
      background: #c9a876;
      color: #fff;
      padding: 12px 26px;
      border-radius: 30px;
      border: none;
      font-weight: 600;
      margin-top: 12px;
      transition: 0.3s;
      width: 100%;
    }

    .footer-btn:hover {
      background: #b79662;
      transform: translateY(-2px);
    }

    /* COPYRIGHT */
    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 15px;
      border-top: 1px solid #d8c9b8;
      color: #6f6258;
      font-size: 1rem;
    }

    @media (max-width: 767px) {
      .footer-title {
        text-align: center;
      }

      .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .footer p,
      .footer a {
        text-align: center;
      }

      .footer-links a {
        text-align: center;
      }

      .social-icons {
        text-align: center;
        margin-top: 10px;
      }
    }

    /* footer end */

    /* gallery start */
    /* ================= GALLERY SECTION ================= */
    .gallery-section {
      background: #ffffff;
      padding: 90px 0;
      position: relative;
      overflow: hidden;
    }

    /* Soft Background Glow */
    .gallery-section::before {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(201, 168, 118, 0.25);
      top: -140px;
      left: -120px;
      border-radius: 50%;
      filter: blur(120px);
    }

    .gallery-section::after {
      content: "";
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(240, 231, 222, 0.7);
      bottom: -120px;
      right: -140px;
      border-radius: 50%;
      filter: blur(100px);
    }

    /* ================= HEADING ================= */
    .gallery-title {
      font-size: 3rem;
      font-weight: 800;
      color: #3b3026;
    }

    .gallery-title span {
      color: #c9a876;
    }

    .gallery-subtext {
      font-size: 1.25rem;
      color: #6f6258;
    }

    /* ================= GRID ================= */
    .gallery-box {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      cursor: pointer;
      transition: 0.4s ease;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      background: #fff;
    }

    .gallery-box img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 18px;
      transition: 0.45s ease;
      filter: brightness(0.92);
    }

    .gallery-box:hover img {
      transform: scale(1.07);
      filter: brightness(1);
    }

    /* Overlay */
    .gallery-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
      opacity: 0;
      border-radius: 18px;
      transition: 0.4s ease;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      padding-bottom: 20px;
    }

    .gallery-box:hover .gallery-overlay {
      opacity: 1;
    }

    .gallery-overlay h4 {
      color: #fff;
      font-size: 1.4rem;
      font-weight: 600;
      letter-spacing: 1px;
    }

    /* ================= MODAL IMAGE ================= */
    .modal-img {
      width: 100%;
      max-height: 85vh;
      object-fit: cover;
      border-radius: 10px;
      animation: zoomIn 0.4s ease;
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.85);
        opacity: 0;
      }

      to {
        transform: scale(1);
        opacity: 1;
      }
    }

    /* CLOSE BUTTON */
    .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 35px;
      color: #fff;
      font-weight: 300;
      cursor: pointer;
      z-index: 9999;
      transition: 0.3s ease;
    }

    .close-btn:hover {
      color: #c9a876;
      transform: scale(1.2);
    }

    /* ================= RESPONSIVE ================= */
    @media (max-width: 767px) {
      .gallery-title {
        font-size: 2.3rem;
      }

      .gallery-box img {
        height: 220px;
      }
    }

    /* gallery end */

    /* brand start */
    /* SECTION */
    .brand-section {
      background: #ffffff;
      padding: 70px 0;
      position: relative;
      overflow: hidden;
    }

    /* Shine Background */
    .brand-section::before {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(201, 168, 118, 0.25);
      top: -140px;
      left: -120px;
      border-radius: 50%;
      filter: blur(120px);
    }

    /* HEADING */
    .brand-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: #3b3026;
    }

    .brand-title span {
      color: #c9a876;
    }

    .brand-subtext {
      color: #6f6258;
      margin-top: 5px;
      font-size: 1.2rem;
    }

    /* LOGO BOX */
    .brand-logo-box {
      background: #fff;
      padding: 20px 25px;
      border-radius: 16px;
      box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
      transition: 0.35s ease;
      border: 1px solid #e7d8c8;
      text-align: center;
    }

    .brand-logo-box:hover {
      transform: translateY(-8px) scale(1.03);
      box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
      border-color: #c9a876;
    }

    /* LOGO IMAGE */
    .brand-logo-box img {
      width: 100%;
      height: 70px;
      /* FIXED HEIGHT for all logos */
      object-fit: contain;
      /* Perfect fit without stretching */
      opacity: 0.9;
      transition: 0.3s ease;
    }

    .brand-logo-box:hover img {
      opacity: 1;
    }

    /* NAME */
    .brand-name {
      margin-top: 10px;
      font-size: 1.15rem;
      font-weight: 600;
      color: #3b3026;
    }

    /* RESPONSIVE */
    @media (max-width: 767px) {
      .brand-title {
        font-size: 2.2rem;
      }
    }

    /* brand end */

    /* package start */
    .packages-section {
      background-color: #f0e7de;
      padding: 80px 0;
    }

    .packages-heading {
      text-align: center;
      margin-bottom: 40px;
    }

    .packages-heading h2 {
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-size: 2.4rem;
    }

    .packages-heading p {
      max-width: 550px;
      margin: 0 auto;
      color: #6b5b4d;
      font-size: 0.95rem;
    }

    .package-card {
      border: none;
      border-radius: 20px;
      box-shadow: 0 20px 35px rgba(0, 0, 0, 0.06);
      background: #ffffff;
      height: 100%;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .package-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 26px 45px rgba(0, 0, 0, 0.12);
    }

    .package-badge {
      position: absolute;
      top: 18px;
      right: -40px;
      background: #c79b63;
      color: #fff;
      padding: 6px 55px;
      font-size: 0.8rem;
      text-transform: uppercase;
      font-weight: 600;
      transform: rotate(20deg);
    }

    .package-price {
      color: #c79b63;
      font-size: 24px;
      font-weight: 600;
      color: #000;
    }

    .old-price {
      text-decoration: line-through;
      color: #888;
      margin-right: 10px;
      font-size: 20px;
    }

    .new-price {
      color: #c79b63;
      /* discount color */
      font-size: 28px;
      font-weight: 700;
    }

    .package-price small {
      font-size: 0.9rem;
      color: #8e7a67;
      font-weight: 500;
    }

    .package-title {
      font-size: 1.15rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .package-subtitle {
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #8e7a67;
      margin-bottom: 14px;
    }

    .package-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 18px;
      font-size: 0.9rem;
      color: #5b4e43;
    }

    .package-list li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 6px;
    }

    .package-list li i {
      font-size: 0.85rem;
      margin-top: 3px;
      color: #c79b63;
    }

    .package-btn {
      border-radius: 999px;
      font-size: 0.9rem;
      padding: 8px 20px;
      border: none;
      background: #c79b63;
      color: #fff;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .package-btn:hover {
      background: #a97c45;
      color: #fff;
    }

    @media (max-width: 991.98px) {
      .packages-section {
        padding: 60px 0;
      }
    }


    /* package end */