@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* ==========================================
   CSS Variables (:root) Definition
   ========================================== */
:root {
  /* Metallic Gold Gradient Colors */
  --gold-stop-1: #bf953f;
  --gold-stop-2: #fcf6ba;
  --gold-stop-3: #b38728;
  --gold-stop-4: #fbf5b7;
  --gold-stop-5: #aa771c;
  --gray_bg: #f3f4f6;
  /* Scrolled Active / Dark Gradient Colors */
  --dark-stop-1: #111111;
  --dark-stop-2: #2b2b2b;
  --dark-stop-3: #000000;

  /* Gradients */
  --gold-gradient: linear-gradient(
    135deg,
    var(--gold-stop-1) 0%,
    var(--gold-stop-2) 25%,
    var(--gold-stop-3) 50%,
    var(--gold-stop-4) 75%,
    var(--gold-stop-5) 100%
  );

  --dark-gradient: linear-gradient(
    135deg,
    var(--dark-stop-1) 0%,
    var(--dark-stop-2) 50%,
    var(--dark-stop-3) 100%
  );

  /* loader */

  /* Zero Margin / Absolute Bounds for Preloader */
  html,
  body {
    margin: 0;
    padding: 0;
  }

  #mmp-loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999; /* Highest priority overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
  }

  /* Split Panels */
  .loader-panel {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50vh;
    background-color: #f7f3ec; /* Off-white theme */
    z-index: 1;
    transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
    margin: 0;
  }

  .panel-top {
    top: 0;
  }

  .panel-bottom {
    bottom: 0;
  }

  /* Center Logo Only */
  .loader-logo-center {
    position: absolute;
    z-index: 3;
    transition:
      opacity 0.4s ease,
      transform 0.4s ease;
  }

  .loader-logo {
    max-height: 90px;
    object-fit: contain;
  }

  /* Polaroid Base Styling */
  .polaroid-card {
    position: absolute;
    background-color: #ffffff;
    padding: 8px 8px 22px 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
  }

  .polaroid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
  }

  /* TOP PANEL PHOTOS */
  .p-card-1 {
    width: 130px;
    height: 150px;
    top: 15%;
    left: 10%;
    transform: rotate(-8deg);
  }

  .p-card-2 {
    width: 140px;
    height: 160px;
    top: 8%;
    left: 50%;
    transform: translateX(-50%) rotate(4deg);
  }

  .p-card-3 {
    width: 130px;
    height: 150px;
    top: 15%;
    right: 10%;
    transform: rotate(10deg);
  }

  /* BOTTOM PANEL PHOTOS */
  .p-card-4 {
    width: 140px;
    height: 160px;
    bottom: 12%;
    left: 20%;
    transform: rotate(6deg);
  }

  .p-card-5 {
    width: 130px;
    height: 150px;
    bottom: 12%;
    right: 20%;
    transform: rotate(-6deg);
  }

  /* Split Reveal Classes */
  #mmp-loader-wrapper.loaded .loader-logo-center {
    opacity: 0;
    transform: scale(0.8);
  }

  #mmp-loader-wrapper.loaded .panel-top {
    transform: translateY(-100%);
  }

  #mmp-loader-wrapper.loaded .panel-bottom {
    transform: translateY(100%);
  }

  #mmp-loader-wrapper.loaded {
    pointer-events: none;
  }

  @media (max-width: 768px) {
    .p-card-1,
    .p-card-3 {
      display: none;
    }
    .p-card-2 {
      width: 100px;
      height: 120px;
      top: 12%;
    }
    .p-card-4 {
      width: 100px;
      height: 120px;
      left: 8%;
      bottom: 15%;
    }
    .p-card-5 {
      width: 100px;
      height: 120px;
      right: 8%;
      bottom: 15%;
    }
  }

  /* loader end */
  .gray_bg {
    background-color: var(--gray_bg);
  }
  /* Shadows & Effects */
  --gold-shadow: drop-shadow(0px 2px 4px rgba(191, 149, 63, 0.2));
  --dark-shadow: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.15));

  /* Transitions */
  --smooth-transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-golden {
  background-color: var(--gold-stop-5);
  color: white;
}
/* Base Reset */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Base Heading Styling */
.approach-heading {
  color: #111111;
  letter-spacing: 0.5px;
}

/* Individual Word Base State (Light Gray Fade) */
.reveal-word {
  color: #f4de3c; /* Light gray initial state */
  transition: color 0.2s ease-out;
  display: inline-block;
  margin-right: 0.28em; /* Proper spacing between words */
}

/* Active State (Solid Dark Black when Scrolled) */
.reveal-word.active {
  color: #111111; /* Solid dark text */
}

/* herosection */
body {
  /* font-family: "Inter", sans-serif !important; */
  font-family: Georgia, serif;
}

/*  */
.custom-service-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.custom-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.carousel-inner {
  padding: 5px;
}

/*  */

/* Outer Card Container */
.brand-card {
  border-color: rgba(0, 0, 0, 0.08) !important;
  background-color: #f8f9fa;
  transition: transform 0.3s ease;
}

/* Asset Container & Floating Shadow Effect */
.asset-wrapper {
  position: relative;
}

.asset-img {
  max-height: 600px;
  /* object-fit: cover; */
  transition: transform 0.4s ease;
}

.asset-wrapper:hover .asset-img {
  transform: translateY(-5px);
}

/* Stat Cards Subtle Hover */
.stat-box {
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.stat-box:hover {
  border-color: #bf953f !important; /* Gold border accent on hover */
  transform: translateY(-2px);
}
/*  */

/* FAQs */
/* Custom Accordion Button Base */
.custom-dark-accordion .accordion-button {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 18px 24px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

/* Hover & Active States */
.custom-dark-accordion .accordion-button:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(212, 175, 55, 0.4); /* Subtle Gold border on hover */
}

.custom-dark-accordion .accordion-button:not(.collapsed) {
  background-color: #1a1a1a;
  color: #d4af37; /* Metallic Gold Accent */
  border-color: #d4af37;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

/* Accordion Body Styling */
.custom-dark-accordion .accordion-body {
  background-color: #1a1a1a;
  border: 1px solid #d4af37;
  border-top: none;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 16px 24px 20px;
}

/* Plus Icon Styling */
.custom-dark-accordion .accordion-button::after {
  filter: invert(1); /* Converts arrow to light theme */
}
/* end of FAQs */
/* benefits */
/* Bento Grid Hover Animation & Borders */
/* Layout & Container Setup */
.benefits-section {
  padding: 80px 20px;
  background-color: #ffffff;
  /* font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
}

.container-custom {
  max-width: 1100px;
  margin: 0 auto;
}

/* Header Styling */
.header-center {
  text-align: center;
  margin-bottom: 50px;
}

.pill-badge {
  background: #f1f2f4;
  color: #555;
  font-size: 13px;
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 16px;
}

.main-title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #111111;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.main-subtitle {
  color: #777777;
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.5;
}

/* 1:1 Bento Grid Layout System */
.bento-container {
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  grid-template-rows: 280px 180px 110px;
  gap: 16px;
}

/* Generic Bento Card Style */
.bento-box {
  background-color: #f3f4f6; /* Exact Reference Soft Gray */
  border-radius: 28px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* Box 1: Left Tall Card */
.box-1 {
  grid-row: span 3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.express-tag {
  background: #ffe399;
  color: #4a3400;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
}

.box-title-lg {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.25;
  color: #111;
  margin-bottom: 24px;
}

.express-item {
  margin-bottom: 20px;
}

.express-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #111;
  margin: 0 0 2px 0;
}

.express-item p {
  font-size: 0.82rem;
  color: #666;
  margin: 0;
  line-height: 1.4;
}

/* Box 2: Gear Card */
.box-2 {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.box-title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  color: #111;
  margin: 0;
}

.gear-img-wrapper {
  text-align: center;
}

.gear-img {
  max-height: 160px;
  mix-blend-mode: multiply;
  object-fit: contain;
}

/* Box 3: Dark Overlay */
.box-3 {
  grid-column: 3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0) 20%, rgba(0, 0, 0, 0.85) 100%),
    url("https://images.pexels.com/photos/3379933/pexels-photo-3379933.jpeg?auto=compress&cs=tinysrgb&w=600")
      center/cover;
  display: flex;
  align-items: flex-end;
}

.overlay-text h3 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
}

/* Box 4: Middle Wide Card */
.box-4 {
  grid-column: 2 / span 2;
  padding: 0 0 0 28px;
}

.tailored-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.tailored-img-box {
  width: 55%;
  height: 100%;
}

.cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Box 5: Stats Box */
.box-5 {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rating-stars {
  color: #ff4d4d;
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 4px;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin-right: 8px;
}

.stat-text {
  font-size: 0.8rem;
  color: #777;
}

/* Box 6: Clock/Speed */
.box-6 {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.turnaround-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.clock-icon {
  font-size: 1.2rem;
}

.turnaround-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
}

/* Responsive Grid */
@media (max-width: 991px) {
  .bento-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .box-1,
  .box-2,
  .box-3,
  .box-4,
  .box-5,
  .box-6 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .box-4 {
    padding: 28px;
  }
}

.bg-light {
  background-color: #aa771c30 !important; /* Reference light gray background */
}

.rounded-5 {
  border-radius: 24px !important;
}

.rounded-4 {
  border-radius: 16px !important;
}

/* Subtle Hover Animation */
.bg-light,
.rounded-5 {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.bg-light:hover {
  transform: translateY(-2px);
}
/* end of benefits */
/*  */
.marquee-wrapper {
  overflow: hidden;
  width: 100%;
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
}

.marquee-item {
  width: 300px;
  flex-shrink: 0;
}

.marquee-item img {
  width: 100%;
  height: 55vh;
  object-fit: cover;
}

/* Row 1: Left Scroll Animation */
.marquee-left {
  animation: scrollLeft 25s linear infinite;
}

/* Row 2: Right Scroll Animation */
.marquee-right {
  animation: scrollRight 25s linear infinite;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Hover Pause Effect */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}
/*  */
/* herosection start */

/* ==========================================
   1. SEPARATE HEADER STYLES
   ========================================== */
.mm-site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.mm-contact-btn {
  border: 1.5px solid #1a1a1a;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  background-color: transparent;
  transition: all 0.3s ease;
}

.mm-contact-btn:hover {
  background-color: #1a1a1a;
  color: #fff;
}

/* ==========================================
   2. HERO SECTION (FULLSCREEN CENTER & CLEAR TEXT)
   ========================================== */
.mm-hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center; /* Vertically Center Content */
  justify-content: center; /* Horizontally Center Content */
  position: relative;
  padding-top: 170px; /* Header Space */
  padding-bottom: 50px; /* Header Space */
}

.mm-hero-content-wrapper {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

/* Big Typography Styling */
.mm-big-heading {
  font-size: 80px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  color: #111111;
  line-height: 0.95;
  z-index: 99999 !important;
  text-transform: uppercase;
}
.logo_header {
  border-radius: 10px;
  width: 150px;
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
  .mm-big-heading {
    font-size: 35px;
  }
  .logo_header {
    width: 80px;
    border-radius: 10px;
  }
  .marquee-item img {
    width: 100%;
    height: 30vh;
    object-fit: cover;
  }
}
.mm-sub-heading {
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 5px;
  color: #b88a3b;
  line-height: 1;
  text-transform: uppercase;
  margin-top: 5px !important;
}

.mm-reg-symbol {
  font-size: 0.3em;
  vertical-align: super;
  font-weight: 600;
  margin-left: 5px;
}
.gallery-marquee-section {
  /* background-image: url(/images/bg_texture1.jpg);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.833), rgba(255, 255, 255, 0.805)),
    url("../images/bg_texture1.jpg"); */
  background-repeat: no-repeat;
  background-size: cover;
}
.mm-hero-tagline {
  font-size: 1.1rem;
  color: #988e8e;
  /* font-family: "Inter", sans-serif; */
  /* letter-spacing: 0.5px; */
  font-weight: 500;
}

/* Floating Elements Base */
.mm-float-item {
  position: absolute;
  z-index: 5;
  transition: transform 0.4s ease;
}

.mm-polaroid-frame {
  background: #ffffff;
  padding: 6px 6px 6px 6px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
  border-radius: 2px;
  border: 1px solid #eaeaea;
}

.mm-polaroid-frame img {
  display: block;
  border-radius: 2px;
}

/* ==========================================
   3. UNLIMITED FLOATING ANIMATIONS
   ========================================== */

/* Keyframe for Up & Down Floating Motion */
@keyframes floatAnimation1 {
  0% {
    transform: translateY(0px) rotate(-10deg);
  }
  50% {
    transform: translateY(-15px) rotate(-8deg);
  }
  100% {
    transform: translateY(0px) rotate(-10deg);
  }
}

@keyframes floatAnimation2 {
  0% {
    transform: translateY(0px) rotate(6deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
  100% {
    transform: translateY(0px) rotate(6deg);
  }
}

@keyframes floatAnimation3 {
  0% {
    transform: translateY(0px) rotate(-4deg);
  }
  50% {
    transform: translateY(-12px) rotate(-2deg);
  }
  100% {
    transform: translateY(0px) rotate(-4deg);
  }
}

@keyframes floatAnimation4 {
  0% {
    transform: translateY(0px) rotate(8deg);
  }
  50% {
    transform: translateY(-16px) rotate(10deg);
  }
  100% {
    transform: translateY(0px) rotate(8deg);
  }
}

@keyframes floatAnimation5 {
  0% {
    transform: translateY(0px) rotate(-12deg);
  }
  50% {
    transform: translateY(-14px) rotate(-10deg);
  }
  100% {
    transform: translateY(0px) rotate(-12deg);
  }
}

/* 1. Far Left Polaroid */
.mm-float-1 {
  top: -23px;
  left: 15%;
  animation: floatAnimation1 5s ease-in-out infinite;
}
.mm-float-1 img {
  width: 50px;
  height: 35px;
  object-fit: cover;
}

/* 2. Top Center Polaroid */
.mm-float-2 {
  top: -50px;
  left: 42%;
  animation: floatAnimation2 6s ease-in-out infinite 0.5s;
}
.mm-float-2 img {
  width: 50px;
  height: 40px;
  object-fit: cover;
}

/* 3. Top Right Badge */
.mm-float-3 {
  top: -75px;
  right: 32%;
  animation: floatAnimation3 4.5s ease-in-out infinite 1s;
}

.mm-camera-badge {
  background: #1a1a1a;
  color: #d4af37;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* 4. Bottom Left Polaroid */
.mm-float-4 {
  bottom: -40px;
  left: 25%;
  animation: floatAnimation4 5.5s ease-in-out infinite 0.2s;
}
.mm-float-4 img {
  width: 40px;
  height: 55px;
  object-fit: cover;
}

/* 5. Bottom Right Polaroid */
.mm-float-5 {
  bottom: -25px;
  right: 26%;
  animation: floatAnimation5 6.5s ease-in-out infinite 0.8s;
}
.mm-float-5 img {
  width: 50px;
  height: 40px;
  object-fit: cover;
}

/* Hover Zoom Effect (Hover kelya var animation pause hoin ani enlarge disel) */
.mm-float-item:hover {
  animation-play-state: paused;
  transform: scale(1.15) rotate(0deg) !important;
  z-index: 20;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .mm-hero-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .mm-sub-heading {
    letter-spacing: 3px;
  }
}

/*  */

/* Header Base */
.mm-site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  /* background: white; */
}

/* Nav Link Styles */
.mm-nav-link {
  color: #1a1a1a !important;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s ease;
}

.mm-nav-link:hover,
.mm-nav-link.active {
  color: #b88a3b !important;
}

/* Gradient Border Button Styling */
.mm-gradient-btn {
  position: relative;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #1a1a1a;
  background: #ffffff;
  border: 2px solid transparent;
  background-image:
    linear-gradient(#fff, #fff),
    linear-gradient(135deg, #d4af37, #b88a3b, #1a1a1a);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.3s ease;
  display: inline-block;
}

.mm-gradient-btn:hover {
  color: #ffffff;
  background-image: linear-gradient(135deg, #d4af37, #b88a3b, #1a1a1a);
  background-clip: border-box;
  box-shadow: 0 4px 15px rgba(184, 138, 59, 0.3);
}

/* Mobile Dropdown Customization */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}
/* .bg_herosection {
  background-image:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.759) 0%,
      rgba(255, 255, 255, 0.758) 100%
    ),
    url("../images/bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */
.mm-hero-section {
  position: relative;
  min-height: 29vh;
  background: #efe5d47f;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Video Container */
.mm-hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Video Styling */
.mm-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Semi-transparent White Overlay for text readability */
.mm-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgb(229 241 246 / 76%) 0%,
    rgb(13 110 253 / 8%) 100%
  );

  /* background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.76) 0%,
    rgba(255, 255, 255, 0.76) 100%
  ); */
  z-index: 2;
}
.mm-camera-badge {
  background: #1a1a1a;
  color: #d4af37;
  padding: 6px 14px 6px 8px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.mm-badge-img {
  object-fit: cover;
  border: 1px solid #d4af37;
}
.mm-camera-tag {
  background: rgba(26, 26, 26, 0.85);
  color: #d4af37;
  font-size: 0.65rem;
  font-weight: 800;
  border-radius: 4px;
  letter-spacing: 1px;
}
/* end herosection */
/*  */
/* Base Parallax Class */
.mm-parallax-section {
  height: 100vh;
  width: 100%;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

/* Image 1 path */
.mm-bg-1 {
  background-image:
    linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.081)),
    url("../images/1\ \(2\).png");
}

/* Mobile Devices Fix (Mobile browsers block fixed attachments for performance) */
@media (max-width: 768px) {
  .mm-parallax-section {
    background-attachment: scroll;
    height: 60vh; /* Adjust height for smaller mobile screens */
  }
}
/*  */
/*  */
/* Custom Background & Fonts */
.bg-light-cream {
  background-color: #fcf8f3; /* Matching beige tone from reference */
}

/* .font-serif {
  font-family: "Playfair Display", Georgia, serif;
} */

.tracking-wide {
  letter-spacing: 2px;
}

/* Service Card & Image Hover Effect */
.service-card {
  min-height: 420px;
  cursor: pointer;
}

.service-img {
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-img {
  transform: scale(1.08); /* Smooth Zoom effect on Hover */
}

/* Dark Gradient Overlay for Text Visibility */
.service-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.62) 60%,
    transparent 100%
  );
  z-index: 2;
}

/* Circular Arrow inside Card */
.card-arrow {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.service-card:hover .card-arrow {
  background: #ffffff;
  color: #000000;
  border-color: #ffffff;
  transform: translateX(3px);
}

/* Unlimited Animated Moving Arrow for Column 1 Link */
@keyframes moveRightInfinite {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
  100% {
    transform: translateX(0);
  }
}

.animated-arrow {
  display: inline-block;
  font-size: 1.2rem;
  animation: moveRightInfinite 1.2s infinite ease-in-out; /* Unlimited loop animation */
}

.more-services-link:hover {
  color: #8b6b35 !important;
}

/* Responsive Fix for Small Screens */
@media (max-width: 768px) {
  .service-card {
    min-height: 350px;
  }
}
/*  */
/*  */

/* Up and Down Floating Animation */
.mm-float-y {
  animation: floatVertical 3.5s ease-in-out infinite alternate;
}

@keyframes floatVertical {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-18px); /* Image 18px var jail */
  }
}
/*  */

/* Custom Accordion Styling for Soft Grey Pill Cards */
.custom-faq-accordion .accordion-item {
  background-color: #f8f9fa;
  border-radius: 12px !important;
}

.custom-faq-accordion .accordion-button {
  background-color: #f4f5f6;
  border: none !important;
  color: #111111 !important;
  font-weight: 500;
  padding: 25px 20px;
  border-radius: 12px !important;
  font-size: 1rem;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
  background-color: #f8f9fa;
  color: #000;
  box-shadow: none;
}

.custom-faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2z'/%3e%3c/svg%3e");
  transition: transform 0.3s ease;
}

.custom-faq-accordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8z'/%3e%3c/svg%3e");
  transform: rotate(0deg);
}
/*  */
/* testimonial */
/* Carousel Fade Effect Fix */
/* Container Box */
.stacked-card-wrapper {
  position: relative;
  width: 320px;
  height: 420px;
}

/* Base Photo Card */
.stack-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease;
}

/* Back Photo 2 - Deep Angle Offset */
.card-back-2 {
  transform: rotate(-10deg) translate(-12px, 12px) scale(0.92);
  z-index: 1;
  filter: brightness(0.75); /* Thoda dark mhanje front image highlight hoil */
}

/* Back Photo 1 - Mild Angle Offset */
.card-back-1 {
  transform: rotate(6deg) translate(8px, -4px) scale(0.96);
  z-index: 2;
  filter: brightness(0.85);
}

/* Front Active Photo */
.card-front {
  transform: rotate(-1.5deg);
  z-index: 3;
}

/* In-Place Crossfade Animation */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
}

/* Smooth Up-Fade Content Transition */
.carousel-item .col-lg-7 {
  transform: translateY(16px);
  transition:
    transform 0.6s ease,
    opacity 0.6s ease;
}

.carousel-item.active .col-lg-7 {
  transform: translateY(0);
}

/* Typography & Controls Styling */
.testimonial-desc {
  /* font-family: Georgia, serif; */
  font-size: 1.25rem;
  color: #4a433d;
  line-height: 1.8;
}

.divider-line {
  width: 28px;
  height: 1px;
  background-color: #8c7f73;
}

.client-name {
  color: #2b2520;
}

.client-city {
  color: #8c7f73;
  letter-spacing: 2px;
}

.custom-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #c9beae;
  background: transparent;
  color: #5a5047;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-nav-btn:hover {
  background-color: #c9beae;
  color: #fff;
}

.dot-item {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #c9beae !important;
  border: none !important;
  opacity: 0.5;
}

.dot-item.active {
  width: 26px !important;
  border-radius: 10px !important;
  background-color: #be9b58 !important;
  opacity: 1;
}

.btn-gold-pill {
  background-color: #be9b58;
  color: #ffffff;
  font-weight: 500;
}

.btn-gold-pill:hover {
  background-color: #a38345;
  color: #ffffff;
}
/* heading */
/* Header Typography */
.gold-subhead {
  color: #be9b58;
  font-size: 0.85rem;
  letter-spacing: 4px;
  font-weight: 600;
}

.section-main-title {
  /* font-family: Georgia, serif; */
  font-size: 2.8rem;
  color: #2b2520;
  letter-spacing: 2px;
  font-weight: bold;
}

.section-main-title .italic-gold {
  font-style: italic;
  color: #be9b58;
  font-weight: 400;
}

.section-subtitle {
  color: #6c635b;
  font-size: 1.05rem;
  max-width: 500px;
  line-height: 1.5;
}

/* Background Quote Icon Effect */
.bg-quote-mark {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10rem;
  color: #eee7db;
  z-index: 0;
  line-height: 1;
  pointer-events: none;
  /* font-family: Georgia, serif; */
}

.section-main-title,
.google-badge-card,
.section-subtitle,
.gold-subhead {
  position: relative;
  z-index: 1;
}

/* Google Badge Styling */
.google-badge-card {
  border: 1px solid #e8e2d7;
  background-color: #ffffff;
}

.rating-num {
  font-size: 1.2rem;
  color: #2b2520;
  /* font-family: Georgia, serif; */
}

.star-rating {
  color: #d4a359 !important;
  letter-spacing: 2px;
  font-size: 0.95rem;
}

.review-count {
  color: #7a7067 !important;
  font-size: 0.82rem;
}
/* end of testimonial  */
/*  */
/* CSS Columns layout sathi perfect Masonry Alignment */
.signature-masonry-grid {
  column-count: 4;
  column-gap: 1.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.5rem;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}

/* Asymmetric height adjustments for staggered look */
.masonry-item.item-tall img {
  height: 420px;
}

.masonry-item.item-extra-tall img {
  height: 520px;
}

.masonry-item img:not(.item-tall img):not(.item-extra-tall img) {
  height: 300px;
}

/* Interactive Hover Effect */
.masonry-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.95);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .signature-masonry-grid {
    column-count: 2;
  }
}

@media (max-width: 576px) {
  .signature-masonry-grid {
    column-count: 1;
  }
  .masonry-item.item-tall img,
  .masonry-item.item-extra-tall img {
    height: 350px;
  }
}
/*  */

.cta-white-section {
  width: 100%;
  background-color: #ffffff;
  /* Semi-transparent white gradient overlay above image */
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.264), rgba(255, 255, 255, 0.367)),
    url("../images/pic8.JPG");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Outer Border Box */
.cta-white-box {
  width: 100%;
  max-width: 1050px;
  background-color: #f7f3ec;
  border: 1px solid #e2e2e2;
  padding: 70px 30px;
  text-align: center;
  box-sizing: border-box;
}

/* Small Upper Title */
.cta-sub-title {
  /* font-family: "Montserrat", sans-serif; */
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  color: #8c8c8c;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

/* Elegant Serif Heading */
.cta-main-title {
  /* font-family: "Cormorant Garamond", serif; */
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 2px;
  color: #222222;
  margin: 0 0 35px 0;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Gold/Bronze Pill Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #c49a55 0%, #b0853e 100%);
  color: #ffffff;
  /* font-family: "Montserrat", sans-serif; */
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 38px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(176, 133, 62, 0.25);
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: linear-gradient(180deg, #b0853e 0%, #9a7230 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(176, 133, 62, 0.35);
  color: #ffffff;
}

.cta-arrow {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-btn:hover .cta-arrow {
  transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .cta-white-section {
    padding: 40px 15px;
  }
  .cta-white-box {
    padding: 45px 20px;
  }
  .cta-main-title {
    font-size: 30px;
    letter-spacing: 1px;
  }
  .cta-sub-title {
    font-size: 11px;
    letter-spacing: 2.5px;
  }
  .cta-btn {
    padding: 14px 28px;
    font-size: 12px;
  }
}
/*  */

/* contact us  */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Montserrat:wght@400;500;600&display=swap");

.font-serif {
  font-family: "Cormorant Garamond", serif;
}

/* Off-White Theme Colors */
.mmp-contact-section {
  background-color: #ffffff;
}

.mmp-contact-info {
  background: linear-gradient(135deg, #2b2623 0%, #1a1715 100%);
  border-right: 2px solid #c49a55;
}

.mmp-contact-form-bg {
  background-color: #f7f3ec;
}

/* Form Inputs Styling */
.mmp-contact-section .form-control {
  background-color: #ffffff;
  border: 1px solid #e2ded7;
  font-size: 0.95rem;
  color: #333;
}

.mmp-contact-section .form-control:focus {
  border-color: #c49a55;
  box-shadow: 0 0 0 0.25rem rgba(196, 154, 85, 0.2);
}

/* Magic Moments Custom Gold Pill Button */
.mmp-gold-btn {
  background: linear-gradient(180deg, #c49a55 0%, #b0853e 100%);
  color: #ffffff !important;
  border: none;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(176, 133, 62, 0.25);
  transition: all 0.3s ease;
}

.mmp-gold-btn:hover {
  background: linear-gradient(180deg, #b0853e 0%, #9a7230 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(176, 133, 62, 0.35);
}

/* end of contact us  */
/* footer */

/* Footer Wrapper */
.mmp-footer-section {
  background-color: #f7f3ec;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

/* Vertical Dividers between columns (Desktop view) */
@media (min-width: 768px) {
  .mmp-footer-col:not(:last-child) {
    border-right: 1px solid #e0d8cc;
  }
}

/* Navigation Links */
.mmp-footer-link {
  color: #8c7355;
  font-size: 13px;
  font-weight: 600;
  /* letter-spacing: 3px; */
  text-decoration: none;
  transition: color 0.3s ease;
}

.mmp-footer-link:hover {
  color: #5c4033;
}

/* Center Logo */
.mmp-footer-logo {
  max-height: 100px;
  object-fit: contain;
}

/* Gold Round Social Icons */
.mmp-social-icon {
  width: 38px;
  height: 38px;
  background-color: #c49a55;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.mmp-social-icon:hover {
  background-color: #a67c38;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Scroll To Top Button */
.mmp-scroll-top-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 2px dashed #c49a55;
  border-radius: 50%;
  color: #c49a55;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mmp-scroll-top-btn:hover {
  background-color: #c49a55;
  color: #ffffff;
  border-style: solid;
}

/* Dark Bottom Bar */
.mmp-copyright-bar {
  background-color: #000;
  color: #f7f3ec;
}

.mmp-copy-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  letter-spacing: 0.5px;
}

/* Floating WhatsApp Button */
.mmp-whatsapp-float {
  position: fixed;
  width: 52px;
  height: 52px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 28px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.mmp-whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
}
/* end of footer  */
