/* ======= MSR Garland Theme Colors (from logo) ======= */
:root {
  --primary: #6F1D28;        /* Burgundy Floral */
  --green: #4A5E38;          /* Leaf Green */
  --gold: #B08B4E;           /* Gold Accent */
  --soft-bg: #F4EDE2;        /* Light Floral Beige */
  --dark: #2A2A2A;
  --text: #4a4a4a;
}

/* ======= Font Setup ======= */
body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: var(--text);
}

h1, h2, h3, h4, h5, h6, .brand-text {
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Creative Navbar */
.navbar {
  background: #ffffff;
  position: sticky;
}

/* ================================
   STICKY NAVBAR FIX
================================ */

.sticky-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #ffffff;
}

/* Add shadow when scrolling */
.sticky-scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.15) !important;
}


/* Brand Font */
.brand-text {
  font-family: "Cormorant Garamond", serif;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
}

/* Menu Items */
.nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark) !important;
  padding: 10px 16px;
  position: relative;
  transition: color .3s ease;
}

/* Underline Animation */
.creative-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: all 0.35s ease;
  transform: translateX(-50%);
}

.creative-link:hover::after,
.creative-link.active::after {
  width: 55%;
}

/* Hover Color */
.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

/* Stylish Call Button */
.call-btn {
  background: var(--primary);
  color: #fff;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s ease;
}

.call-btn:hover {
  background: #561721;
  transform: translateY(-2px);
}


/* ===========================
   MOBILE NAVBAR ENHANCEMENTS
   =========================== */

@media (max-width: 991px) {

  /* Mobile menu background */
  .mobile-menu {
    background: var(--soft-bg);
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
    animation: slideDown 0.4s ease;
  }

  /* Menu items centered */
  .nav-link {
    padding: 14px 0;
    font-size: 18px;
  }

  /* Wider underline on mobile */
  .creative-link::after {
    height: 2px;
    bottom: 6px;
  }

  .creative-link:hover::after,
  .creative-link.active::after {
    width: 35%;
  }

  /* Stylish mobile call button */
  .call-btn {
    width: 100%;
    border-radius: 40px;
    font-size: 18px;
  }

  /* Animation */
  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .navbar-brand img {
    height: 80px;
  }
  .brand-text {
    display: none;
  }
}



/* ==========================
   HERO FIXED (TEXT VISIBLE)
========================== */

#hero {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 90vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Strong dark overlay to show white text */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);  /* DARK – text 100% visible */
  z-index: 1;
}

/* Hero Text */
.hero-content {
  position: absolute;
  bottom: 18%;
  left: 8%;
  z-index: 5 !important;
  color: #fff;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 600;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.7);
  color: var(--gold);
}

.hero-sub {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  margin-bottom: 25px;
  text-shadow: 0 4px 10px rgba(0,0,0,0.7);
}

/* Button */
.hero-btn {
  background: var(--primary);
  border-radius: 32px;
  padding: 12px 32px;
  color: #fff;
  font-size: 18px;
  z-index: 999;
}

.hero-btn:hover {
  background: #561721;
  transform: translateY(-3px);
}
/* ==========================
   CENTERED CAROUSEL CONTROLS
========================== */

.custom-control {
  position: absolute;
  top: 50%;                       /* Center vertically */
  transform: translateY(-50%);    /* Perfect center */
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
  z-index: 20 !important;
}

/* Left Arrow */
.carousel-control-prev.custom-control {
  left: 20px;      /* Left side */
}

/* Right Arrow */
.carousel-control-next.custom-control {
  right: 20px;     /* Right side */
}

.custom-control i {
  font-size: 28px;
  color: #fff;
}

.custom-control:hover {
  background: var(--primary);
}

.custom-control i {
  font-size: 32px;
  color: #fff;
}

.custom-control:hover {
  background: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
  #hero, .hero-slide {
    height: 70vh;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .custom-control {
    width: 45px;
    height: 45px;
  }
  .custom-control i {
    font-size: 22px;
  }
  .carousel-control-prev.custom-control {
    left: 10px;
  }
  .carousel-control-next.custom-control {
    right: 10px;
  }
}

/* ==========================
   ABOUT SECTION
========================== */

.about-section {
  padding: 80px 0;
  background: #fff;
}

/* Image Wrapper */
.about-img-wrapper {
  position: relative;
  width: 100%;
}

/* Image */
.about-image {
  width: 100%;
  border-radius: 12px;
  display: block;
  box-shadow: 0px 8px 25px rgba(0,0,0,0.2);
}

/* Badge inside image */
.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, #B08B4E, #6F1D28);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* Text */
.about-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  color: var(--primary);
  font-weight: 600;
}

.about-text {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* Button */
.about-btn {
  background: linear-gradient(135deg, #6F1D28, #B08B4E);
  color: #fff !important;
  padding: 12px 32px;
  border-radius: 35px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  box-shadow: 0 6px 18px rgba(111,29,40,0.35);
  transition: 0.3s ease;
}

.about-btn:hover {
  background: linear-gradient(135deg, #B08B4E, #6F1D28);
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .about-title {
    font-size: 32px;
  }
  .about-badge {
    font-size: 14px;
    padding: 8px 18px;
  }
}

/* ==========================
   SERVICES SECTION
========================== */

.services-section {
  padding: 80px 0;
  background: #fff8f2;
  background: linear-gradient(to bottom, #fff8f2, #ffffff);
}

.services-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--primary);
}

.services-sub {
  font-size: 17px;
  color: #555;
  font-family: "Poppins", sans-serif;
}

/* Card */
.service-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: 0.35s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  border: 1px solid #f1e4db;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(111, 29, 40, 0.25);
}

/* Icons */
.service-icon {
  font-size: 50px;
  color: var(--primary);
  margin-bottom: 15px;
}

/* Text */
.service-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #431018;
}

.service-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .services-title {
    font-size: 32px;
  }
}


/* ==========================
   HIGHLIGHT RIBBON – SCROLL
========================== */

.highlight-ribbon {
  background: linear-gradient(135deg, #6F1D28, #B08B4E);
  padding: 12px 0;
  margin: 50px 0;
  box-shadow: 0 8px 25px rgba(111, 29, 40, 0.25);
  overflow: hidden;
}

.ribbon-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.ribbon-track {
  display: inline-flex;
  align-items: center;
  gap: 2.5rem;
  animation: ribbonScroll var(--scroll-duration, 25s) linear infinite;
}

.ribbon-item,
.ribbon-dot {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.ribbon-dot {
  opacity: 0.75;
}

/* Keyframes for scroll */
@keyframes ribbonScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .ribbon-item,
  .ribbon-dot {
    font-size: 15px;
  }
}


/* ==========================
   LEFT CONTENT – RIGHT IMAGE
========================== */

.info-section {
  padding: 80px 0;
  background: #ffffff;
}

.info-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.info-text {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #444;
  line-height: 1.7;
}

/* Image */
.info-image {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Gradient Button (already used earlier) */
.btn-gradient {
  background: linear-gradient(135deg, #6F1D28, #B08B4E);
  color: #fff !important;
  padding: 12px 32px;
  border-radius: 35px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  transition: 0.3s ease;
  box-shadow: 0 6px 18px rgba(111,29,40,0.35);
  text-decoration: none;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #B08B4E, #6F1D28);
  transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 768px) {
  .info-title {
    font-size: 32px;
  }

  .info-section {
    padding: 50px 0;
  }
}



/* ==========================
   OUR PRODUCTS SECTION
========================== */

.products-section {
  padding: 80px 0;
  background: #fff8f2;
}

.products-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--primary);
}

.products-sub {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  color: #444;
  margin-bottom: 20px;
}

/* Product Card */
.product-card {
  background: #ffffff;
  border-radius: 16px;
  text-align: center;
  padding: 18px;
  border: 1px solid #f1e4db;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 14px 30px rgba(111, 29, 40, 0.3);
}

/* Product Image */
.product-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

/* Product Name */
.product-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: #431018;
}

/* Product Description */
.product-text {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-img {
    height: 180px;
  }
}


.testimonial-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  font-weight: 600;
  color: #431018;
}

.highlight { color: var(--primary); }

/* Left Box */
.review-logo { width: 80px; }
.google-title { font-weight: 600; }
.google-stars { color: #ffa500; font-size: 20px; }
.review-count { font-size: 14px; color: #555; }
.write-btn {
  border: 1px solid #000;
  padding: 8px 18px;
  border-radius: 8px;
}

/* Cards */
.t-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #eee;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  height: 100%;
}

.t-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.t-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.g-icon { width: 26px; }

.t-name { font-size: 16px; font-weight: 600; }
.t-date { font-size: 13px; color: #777; }
.t-rating { font-size: 18px; color: #ffa500; }
.t-text { font-size: 15px; color: #444; margin-top: 6px; }

/* Arrows */
.arrow-circle {
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.custom-prev { left: 0px; }
.custom-next { right: 0px; }

/* MOBILE FIX → Show ONLY 1 card per slide */
@media (max-width: 768px) {

  /* Force each card to take full width */
  #testimonialSlider .carousel-item .col-md-4 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* Stack cards vertically (but carousel will show only first one) */
  #testimonialSlider .carousel-item .row {
    display: block !important;
  }

  /* Show only ONE card in each slide */
  #testimonialSlider .carousel-item .col-md-4:not(:first-child) {
    display: none !important;
  }
}

/* Remove Bootstrap default arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none !important;
}

/* Allow custom arrows */
.carousel-control-prev,
.carousel-control-next {
  opacity: 1 !important;
}

/* Custom round arrow buttons */
.arrow-circle {
  background: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  font-size: 20px;
  color: #431018;
  border: 2px solid #eee;
}

/* Position */
.custom-prev { left: 0px; }
.custom-next { right: 0px; }



/* ============================
           FOOTER
============================== */

.footer-section {
  background: #065f2e; /* Dark Green */
  padding-top: 50px;
}

/* White Box */
.footer-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* Logo */
.footer-logo {
  width: 150px;
}

/* About */
.footer-about {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

/* Footer Titles */
.footer-title {
  font-size: 20px;
  color: #065f2e;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #333;
  font-size: 15px;
  text-decoration: none;
}

.footer-links a i {
  color: #065f2e;
  margin-right: 5px;
}

.footer-links a:hover {
  color: #065f2e;
}

/* Contact */
.footer-contact {
  font-size: 15px;
  color: #333;
}

.footer-contact i {
  color: #065f2e;
}

/* Social Icons */
.footer-social a {
  font-size: 20px;
  color: #065f2e;
  margin-right: 12px;
}

.footer-social a:hover {
  color: #000;
}

/* Bottom Bar */
.footer-bottom {
  background: #04481e;
}

.footer-copy {
  color: #fff;
  font-size: 14px;
}

.massclick {
  color: #ffd700; /* Gold */
  font-weight: 600;
}


/* ======= MSR Garland Theme Colors ======= */
:root {
  --primary: #6F1D28;      /* Burgundy */
  --green: #4a7227;        /* Leaf Green */
  --gold: #B08B4E;         /* Gold */
  --soft-bg: #F4EDE2;      /* Light Beige */
  --dark: #2A2A2A;
}

/* Footer Background */
.footer-section {
  background: var(--green);
  padding-top: 50px;
}

/* White Central Box */
.footer-box {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* Logo */
.footer-logo {
  width: 150px;
}

/* About Text */
.footer-about {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.6;
}

/* Call Anytime Box */
.footer-call {
  background: var(--soft-bg);
  padding: 10px 14px;
  border-radius: 10px;
  border-left: 4px solid var(--primary);
}

.call-icon {
  font-size: 26px;
  color: var(--primary);
}

.call-label {
  font-size: 14px;
  color: var(--dark);
}

.call-number {
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
}

/* Social Icons */
.footer-social a {
  font-size: 20px;
  margin-right: 12px;
  color: var(--primary);
  transition: 0.3s;
}

.footer-social a:hover {
  color: var(--gold);
}

/* Section Titles */
.footer-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 15px;
  font-family: "Cormorant Garamond", serif;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--dark);
  font-size: 15px;
  text-decoration: none;
}

.footer-links a i {
  color: var(--primary);
  margin-right: 6px;
}

.footer-links a:hover {
  color: var(--primary);
}

/* Contact */
.footer-contact {
  font-size: 15px;
  color: var(--dark);
}

.footer-contact i {
  color: var(--primary);
}

/* Footer Bottom */
.footer-bottom {
  background: #3a4b2d;
}

.footer-copy {
  color: #fff;
  font-size: 14px;
}

.massclick {
  color: var(--gold);
  font-weight: 600;
}


.about-parallax-header {
  position: relative;
  height: 45vh;
  min-height: 350px;
  background: url('./img/bg.jpg') center/cover no-repeat fixed;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.about-parallax-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.about-heading {
  position: relative;
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 50px;
  font-weight: 600;
}

.breadcrumb {
  position: relative;
  margin-top: 10px;
}

.breadcrumb a {
  color: var(--gold);
}

.breadcrumb-item.active {
  color: #fff;
}


.about-story-section {
  background: var(--soft-bg);
  position: relative;
  z-index: 5;
}

.story-title {
  color: var(--primary);
  font-size: 38px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
}

.story-line {
  width: 80px;
  height: 4px;
  background: var(--gold);
  border-radius: 20px;
  margin-bottom: 20px;
}

.story-text {
  color: #333;
  font-size: 16px;
  line-height: 1.8;
  position: relative;
  z-index: 20;
}

.story-points li {
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

.story-points i {
  color: var(--green);
  margin-right: 8px;
  font-size: 20px;
}

.story-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 25px;
  border-radius: 8px;
}

.story-btn:hover {
  background: var(--green);
}


/* ============================
   Mission & Vision Section
=============================== */
.mission-vision-section {
  position: relative;
  z-index: 5;
  background: #fff;
}

/* Title */
.mv-title {
  font-size: 38px;
  font-weight: 600;
  color: var(--primary);
  font-family: "Cormorant Garamond", serif;
}

.mv-line {
  width: 90px;
  height: 4px;
  background: var(--gold);
  border-radius: 20px;
  margin: 10px auto 15px;
}

.mv-subtext {
  font-size: 16px;
  color: var(--dark);
}

/* Boxes */
.mv-box {
  background: var(--soft-bg);
  padding: 35px;
  border-radius: 18px;
  border: 1px solid #e7decf;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}

/* Hover Effect */
.mv-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Top Decorative Gold Line */
.mv-hover:hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: var(--gold);
  animation: slideLine 0.4s ease-in-out;
}

/* Gold Slide Animation */
@keyframes slideLine {
  from { width: 0; }
  to { width: 100%; }
}

/* Icon */
.mv-icon {
  width: 65px;
  height: 65px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  margin-bottom: 18px;
  transition: 0.4s;
}

/* Pulse Animation on Icons */
.pulse {
  animation: pulseAnim 1.8s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* On Hover Icon Glow */
.mv-box:hover .mv-icon {
  background: var(--green);
  box-shadow: 0 8px 20px rgba(0,0,0,0.20);
}

/* Headings */
.mv-heading {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.mv-text {
  font-size: 16px;
  color: var(--dark);
  line-height: 1.7;
}


/* ============================
   SUPER DESIGN – Mission & Vision
==============================*/

.msr-mv-section {
  background: #f8f4ef;
  padding: 80px 0;
  position: relative;
}

/* Title */
.msr-mv-main {
  font-size: 42px;
  color: #6F1D28;   /* Burgundy */
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}

.msr-mv-sub {
  color: #3f3f3f;
  font-size: 17px;
  margin-top: 10px;
}

/* Cards */
.msr-mv-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid #e6dcca;
  transition: 0.4s ease;
  position: relative;
}

/* Hover effect */
.msr-mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  border-color: #B08B4E; /* Gold */
}

/* Icon */
.msr-icon {
  width: 75px;
  height: 75px;
  background: #6F1D28;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.msr-mv-card:hover .msr-icon {
  background: #4A5E38; /* Green */
  transform: scale(1.1);
}

/* Text */
.msr-mv-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: #6F1D28;
  margin-bottom: 12px;
}

.msr-mv-text {
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

/* Center Divider Style */
.msr-divider {
  width: 3px;
  height: 80px;
  background: #B08B4E;
  margin: 0 auto;
  border-radius: 5px;
}

.msr-divider-circle {
  width: 20px;
  height: 20px;
  background: #6F1D28;
  border-radius: 50%;
  margin: 12px auto;
  box-shadow: 0 0 0 6px #e9d8c6;
}

/* Mobile */
@media (max-width: 767px) {
  .msr-divider,
  .msr-divider-circle {
    display: none;
  }
  
  .msr-mv-card {
    margin-bottom: 25px;
  }
}


/* 🌸 OUR SERVICES DESIGN */
.services-section {
  position: relative;
}

.service-title {
  font-size: 35px;
  color: #d62b70;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-subtitle {
  color: #777;
  font-size: 15px;
}

/* Equal height cards */
.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  transition: 0.4s ease;
  height: 100%;              /* important */
  display: flex;             /* equal height */
  flex-direction: column;
  justify-content: flex-start;
}

.service-card p {
  flex-grow: 1;              /* equal text space */
}

/* Equal size images */
.service-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}




.service-name {
  color: #d62b70;
  font-weight: 700;
  margin-bottom: 10px;
}




.gallery-heading {
  font-size: 35px;
  color: #d62b70;
  text-transform: uppercase;
}

.gallery-box {
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.12);
  transition: 0.3s ease;
}

.gallery-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: 0.5s ease;
}

.gallery-box:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-box:hover {
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}


/* SECTION BG */
.contact-cards-section {
  background: var(--soft-bg);
}

/* CONTACT CARDS */
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 7px 25px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 10px;
  margin-bottom: 10px;
}

.card-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* GOOGLE LOGO */
.google-logo {
  width: 70px;
  margin-bottom: 12px;
}

/* GOOGLE BUTTON */
.google-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.google-btn:hover {
  background: #53111F;
}

/* MAP */
.map-card iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 15px;
}

/* FORM */
.form-input {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 12px 15px;
}

.form-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.15rem rgba(111, 29, 40, 0.2);
}

.submit-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #53111F;
}



/* 🌿 WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: transparent;
    border-radius: 50%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    animation: floatAir 2.8s infinite ease-in-out;
}

/* Floating Air Effect */
@keyframes floatAir {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.wa-icon {
    width: 55px;
    height: 55px;
}

/* Hover Popup Box */
.wa-hover-box {
    position: absolute;
    right: 75px;
    bottom: 0;
    width: 200px;
    background: #fff;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.35s ease;
}

.whatsapp-float:hover .wa-hover-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Text & Button */
.wa-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

.wa-btn {
    display: block;
    margin-top: 8px;
    text-align: center;
    background: var(--primary);
    color: #fff;
    padding: 8px 10px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
}

.wa-btn:hover {
    background: #53111F;
}


/* 🌸 GO UP BUTTON */
.go-up {
    position: fixed;
    bottom: 100px;
    right: 25px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease-in-out;
    animation: floatUp 3s infinite ease-in-out;
}

/* Floating Air Effect */
@keyframes floatUp {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0px); }
}

.go-up:hover {
    box-shadow: 0 0 18px var(--primary);
}

/* Visible when scrolling */
.go-up.show {
    opacity: 1;
    visibility: visible;
}
