    body {
      margin: 0;
font-family: "Cormorant Garamond", serif;
      background-color: #000;
      color: #fff;
      overflow-x: hidden;
    }
.navbar-sticky {
    position: fixed; /* fixes the navbar at the top */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999; /* above everything else */
    background-color: #000; /* ensure background stays solid */
    box-shadow: 0 2px 6px rgba(0,0,0,0.3); /* optional shadow */
    transition: all 0.3s ease-in-out;
}
    /* Navbar */
    .navbar {
      background-color: #000;
      padding: 22px 40px;
      transition: all 0.3s ease-in-out;
      position: relative;
      z-index: 100;
    }

    .navbar-brand img {
      height: 80px;
      width: auto;
      transition: 0.3s;
    }

    .navbar-brand img:hover {
      opacity: 0.9;
    }

    .nav-link {
      color: #ddd !important;
      margin-right: 25px;
      transition: 0.3s;
      font-weight: 900;
      font-size: 1.40rem;
    }

    .nav-link:hover {
      color: #fff !important;
    }

    /* Custom Toggler */
    .navbar-toggler {
      border: none;
      outline: none;
      background: none;
      position: relative;
      width: 30px;
      height: 24px;
      transition: all 0.3s ease-in-out;
    }

    .navbar-toggler span {
      position: absolute;
      height: 3px;
      width: 100%;
      background: #fff;
      left: 0;
      border-radius: 2px;
      transition: 0.3s ease;
    }

    .navbar-toggler span:nth-child(1) { top: 0; }
    .navbar-toggler span:nth-child(2) { top: 10px; }
    .navbar-toggler span:nth-child(3) { top: 20px; }

    .navbar-toggler.active span:nth-child(1) {
      transform: rotate(45deg);
      top: 10px;
    }

    .navbar-toggler.active span:nth-child(2) { opacity: 0; }

    .navbar-toggler.active span:nth-child(3) {
      transform: rotate(-45deg);
      top: 10px;
    }
    @media (max-width: 767px) {
    .navbar-brand img {
        height: 50px; /* smaller logo for mobile */
    }
}

    /* Banner Section */
    .hero-section {
      position: relative;
      height: 100vh;
      width: 100%;
      overflow: hidden;
    }

    .hero-video {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.6);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      padding: 0 20px;
    }

  /* .hero-content h1 {
  font-size: 8rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 250px;
} */

.hero-content h1 {
  font-size: 5rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 250px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.2s ease-out forwards;
}

/* Optional: animate subtitle or button too */
.hero-content p,
.hero-content a {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.4s ease-out forwards;
  animation-delay: 0.3s; /* starts after heading */
}

/* Keyframes */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    .hero-content p {
      font-size: 1.2rem;
      margin-top: 15px;
      color: #ddd;
    }

    .hero-content .btn {
      margin-top: 30px;
      background: #fff;
      color: #000;
      padding: 12px 28px;
      border-radius: 30px;
      font-weight: 600;
      text-transform: uppercase;
      transition: 0.3s;
    }

    .hero-content .btn:hover {
      background: transparent;
      color: #fff;
      border: 2px solid #fff;
    }

    /* Mobile Adjustments */
    @media (max-width: 991px) {
      .navbar { padding: 15px 20px; }
      .navbar-brand img { height: 45px; }

      .navbar-nav {
        text-align: left;
        background: #111;
        border-radius: 10px;
        padding: 10px 20px;
        margin-top: 10px;
      }

      .nav-link {
        margin: 8px 0;
        display: block;
        padding-left: 10px;
        border-left: 3px solid transparent;
        transition: 0.3s ease;
      }

      .nav-link:hover {
        background: rgba(255,255,255,0.05);
        border-left: 3px solid #fff;
        border-radius: 4px;
      }

      .hero-content h1 {
        font-size: 2.2rem;
      }

      .hero-content p {
        font-size: 1rem;
      }
    }



    /* 🌟 Flora About Banner */
.flora-banner {
  position: relative;
  height: 80vh;
  background: url('../img/luxury-bathroom-banner.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
}

.flora-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.banner-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(200,162,74,0.1), transparent 60%);
  animation: moveGradient 10s linear infinite;
  z-index: 1;
  mix-blend-mode: overlay;
}

.flora-banner h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c8a24a;
  font-family: "Cormorant Garamond", serif;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.flora-banner h1 span { color: #fff; }

.flora-banner p {
  font-size: 1.2rem;
  color: #ddd;
  margin-top: 15px;
  z-index: 2;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.3s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes moveGradient {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 768px) {
  .flora-banner {
    height: 60vh;
    padding: 0 20px;
  }

  .flora-banner h1 {
    font-size: 2.5rem;
  }

  .flora-banner p {
    font-size: 1rem;
  }
}

/* Gold Text Class for Headings */
.text-gold {
  color: #c8a24a !important;
}

/* ===========================
   Small About Banner - Flora
=========================== */
.flora-about-banner {
  position: relative;
  background: url('img/closeup-view-water-dropping-from-faucet-indoors-space-text.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.flora-about-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  z-index: 1;
}

.flora-about-banner .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeUp 1.2s ease-out;
}

.flora-about-banner h5 {
  color: #c8a24a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.flora-about-banner h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
}

.flora-about-banner p {
  color: #e6d9b8;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .flora-about-banner {
    padding: 60px 15px; 
  }
  .flora-about-banner h1 {
    font-size: 2rem;
  }
  .flora-about-banner p {
    font-size: 1rem;
    text-align: justify;
  }
}

.mission-vision-split {
  position: relative;
  background: url('img/image.png') center/cover no-repeat;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  padding: 100px 0;
  overflow: hidden;
}

.mission-vision-split::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  z-index: 1;
}

.mission-vision-split .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 0 20px;
}

.text-content {
  flex: 1 1 50%;
}

.text-content h2 {
  font-size: 2.8rem;
  color: #c8a24a;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Cormorant Garamond", serif;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #e6d9b8;
  margin-bottom: 20px;
}

.image-content {
  flex: 1 1 45%;
}

.image-content img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
  transition: transform 0.5s ease;
}

.image-content img:hover {
  transform: scale(1.05);
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
   .mission-vision-split {
    padding-top: 120px;  /* 👈 Adds space above the entire section */
    padding-bottom: 80px;
  }

  .mission-vision-split .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Show image first */
  .image-content {
    order: 2;
    width: 100%;
  }

  /* Content comes below image */
  .text-content {
    order: 1;
    width: 100%;
    margin-top: 25px;
  }

  .text-content h2 {
    font-size: 1.7rem;
    text-align: left;
  }
  .text-content p{
    text-align: left;
    font-size: 16px;
  }
   
}

.simple-footer {
  position: relative;
  background: #000;
  color: #fff;
  padding: 70px 20px 40px;
  text-align: center;
  overflow: hidden;
}

/* Background image */
.simple-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('img/footer-bg.jpg') center/cover no-repeat;
  opacity: 0.25;
  z-index: 0;
}

/* Black overlay */
.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1;
}

.simple-footer .container {
  position: relative;
  z-index: 2;
}

.simple-footer h3 {
  color: #c8a24a;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.simple-footer p {
  color: #ccc;
  font-size: 1rem;
}

.simple-footer hr {
  border: none;
  height: 1px;
  background: rgba(200,162,74,0.3);
  width: 100px;
  margin: 25px auto;
}

.footer-social {
  margin: 20px 0;
}

.footer-social a {
  color: #c8a24a;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #fff;
}

.simple-footer span {
  color: #c8a24a;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 576px) {
  .simple-footer {
    padding: 50px 15px 30px;
  }
}


.flora-contact-banner {
  position: relative;
  background: url('img/sleek-modern-black-bathroom-with-stunning-monochromatic-design-minimalist-traits.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
  font-family: "Montserrat", sans-serif;
  overflow: hidden;
}

.flora-contact-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.729);
  z-index: 1;
}

.flora-contact-banner .container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
  animation: fadeUp 1.2s ease-out;
}

.flora-contact-banner h5 {
  color: #c8a24a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

.flora-contact-banner h1 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  color: #fff;
}

.flora-contact-banner p {
  color: #e6d9b8;
  font-size: 1.1rem;
  line-height: 1.8;
  letter-spacing: 0.5px;
}

/* Animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .flora-contact-banner {
    padding: 60px 15px;
  }
  .flora-contact-banner h1 {
    font-size: 2rem;
  }
  .flora-contact-banner p {
    font-size: 1rem;
    text-align: justify;
  }
}
.connect-section {
  background: #000000;
  color: #fff;
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
}

.connect-section .title h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.connect-section .title p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact-card {
  background: #1a1a1a;
  padding: 35px 25px;
  text-align: center;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.contact-card:hover {
  background: #222;
  transform: translateY(-6px);
  box-shadow: 0 0 15px rgba(212,175,55,0.25);
}

.contact-card .icon {
  font-size: 2.2rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.contact-card h5 {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card p, 
.contact-card a {
  color: #ccc;
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-card a:hover {
  color: #d4af37;
}

.social-links a {
  color: #fff;
  margin: 0 8px;
  font-size: 1.3rem;
  transition: 0.3s;
}

.social-links a:hover {
  color: #d4af37;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-card {
    margin-bottom: 20px;
  }
  .connect-section .title h2 {
    font-size: 2rem;
  }
}

@media (max-width: 575px) {
  .connect-section {
    padding: 60px 20px;
  }
  .contact-card {
    padding: 25px 15px;
  }
}



.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  transition: all 0.3s ease;
}
.whatsapp-float img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.whatsapp-float img:hover {
  transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px; /* above WhatsApp button */
  right: 20px;
  z-index: 1000;
  display: none; /* hidden initially */
}
.back-to-top img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}
.back-to-top img:hover {
  transform: scale(1.1);
}