/* Base Styles */
@import url("https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Orienta&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Outfit:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: "Orienta", sans-serif;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

img {
  max-width: 100%;
  height: auto;
}

/* Navbar / Header */
.header {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0) 100%);
  transition: all 0.4s ease;
  z-index: 1030;
}

.header.scrolled {
  background: rgba(43, 18, 7, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 202, 40, 0.15);
}

.logo {
  color: #fbd341;
}

.logo-hue {
  font-family: "Dancing Script", cursive;
  font-size: 2.5rem;
  line-height: 1;
  color: #ffca28;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.logo-sub {
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 600;
  color: #ffca28;
}

.navbar-nav .nav-link {
  color: white;
  font-weight: 500;
  text-transform: capitalize;
  transition: color 0.3s ease;
  font-size: 1.05rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ffca28;
}

.btn-book {
  background-color: #ffca28;
  color: #333;
  font-weight: 600;
  border-radius: 5px;
  padding: 0.6rem 1.5rem;
  border: none;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background-color: #e6b624;
  color: #000;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-title {
  font-family: "Kaushan Script", cursive;
  font-size: 5rem;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.btn-view-services {
  background-color: white;
  color: #c48b71;
  border: none;
}

@media (max-width: 768px) {
  .inner-hero {
    min-height: 40vh !important;
  }
}

.btn-view-services:hover {
  background-color: #f8f9fa;
  color: #a07159;
}

.btn-book-appointment {
  background-color: #c48b71;
  color: white;
  border: none;
}

.btn-book-appointment:hover {
  background-color: #a07159;
  color: white;
}

/* Marquee */
.marquee-container {
  background-color: #fdf5e6;
  /* light beige background */
  padding: 15px 0;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

.marquee-item {
  color: #a07159;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 1px;
  margin: 0 20px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Services Section */
.services-section {
  background-color: #fdf5e6;
}

.section-heading {
  color: #b07d62;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 2rem;
}

.section-heading .arrow {
  font-weight: 300;
  margin-right: 10px;
}

.view-all-link {
  color: #b07d62;
  font-weight: 600;
  text-decoration: underline !important;
  text-underline-offset: 4px;
}

.view-all-link:hover {
  color: #8c604b;
}

.service-card {
  background-color: #e9ecef;
  border-radius: 2px;
}

.service-col-side .service-card {
  height: 250px;
}

.service-col-center .service-card {
  height: 350px;
}

.service-card img {
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top,
      rgba(176, 125, 98, 0.9) 0%,
      rgba(176, 125, 98, 0) 100%);
  pointer-events: none;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.service-count {
  font-size: 0.85rem;
  font-weight: 300;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/*  our-space-section */
.gallery-section {
  padding: 70px 0;
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.gallery-text {
  color: #b88c74;
  font-size: 18px;
}

.view-all {
  color: #b88c74;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.section-title {
  text-align: center;
  font-size: 48px;
  font-style: italic;
  color: #8d6a57;
  margin-bottom: 50px;
}

.gallery-card {
  margin-bottom: 40px;
  text-align: center;
}

.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: 0.4s ease;
}

.gallery-card img:hover {
  transform: scale(1.03);
}

.gallery-card h5 {
  margin-top: 18px;
  color: #b88c74;
  font-size: 28px;
  font-weight: 500;
}

/* face-section */
.face-section {
  background-image: url("../img/face-banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.face-section::before {
  content: "";
  position: absolute;
  top: 0; 
  left: 0; 
  right: 0; 
  bottom: 0;
  background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.6) 75%, rgba(0,0,0,0.8) 100%);
  z-index: 1;
}

.face-section .container {
  position: relative;
  z-index: 2;
}

.face-content {
  max-width: 667px;
}

.face-title {
  font-family: "Kaushan Script", cursive;
  font-size: 70px;
  color: #ffffff;
  font-weight: bold;
  margin-top: 10px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.face-para {
  font-family: "Orienta", sans-serif;
  font-size: 24px;
  color: #ffffff;
  margin-top: 15px;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* TESTIMONIAL SECTION */

.testimonial-section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.bg-text {
  position: absolute;
  top: 10px;
  right: 70px;
  font-size: 120px;
  color: #ead7cb;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  opacity: 0.7;
  z-index: 1;
}

.section-subtitle {
  color: #b78b72;
  font-size: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 2;
}

.testimonial-left {
  background: #efc1a3;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-left img {
  max-height: 380px;
  object-fit: contain;
}

.quote-icon {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #7d5845;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  z-index: 5;
}

.testimonial-content {
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.testimonial-title {
  font-size: 42px;
  font-family: "Cormorant Garamond", serif;
  color: #8f6b57;
  margin-bottom: 20px;
  font-style: italic;
}

.stars {
  margin-bottom: 30px;
}

.stars i {
  color: #f6c343;
  margin-right: 6px;
  font-size: 18px;
  background: #fff;
  padding: 6px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
  color: #8f8f8f;
  line-height: 1.9;
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 500px;
}

.client-name {
  color: #9a9a9a;
  font-size: 14px;
  font-weight: 500;
}

.testimonial-navigation {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border: 2px solid #d8b7a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8785e;
  background: transparent;
  transition: 0.3s;
  cursor: pointer;
}

.nav-btn:hover {
  background: #a8785e;
  color: #fff;
}

/* FAQ SECTION*/
.faq-section {
  padding: 90px 0;
  overflow: hidden;
}

.section-subtitle {
  color: #b7896d;
  font-size: 20px;
  margin-bottom: 50px;
}

/* Left Side */
.faq-left {
  padding-right: 40px;
}

.faq-image {
  width: 100%;
  max-width: 280px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.faq-title {
  font-size: 48px;
  color: #8b5d4a;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 20px;
}

.faq-title span {
  color: #9d8d82;
  font-size: 32px;
}

.faq-description {
  color: #8c7c72;
  line-height: 2;
  font-size: 18px;
  max-width: 320px;
  margin-bottom: 35px;
}

.contact-btn {
  background: #d3a17f;
  color: #fff;
  border: none;
  padding: 14px 34px;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s;
}

.contact-btn:hover {
  background: #b98764;
}

/* Accordion */
.accordion-item {
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.accordion-button {
  background: #fff;
  color: #7b3f3f;
  font-size: 28px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  padding: 28px 30px;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: #fff;
  color: #7b3f3f;
}

.accordion-button::after {
  background-image: none;
  content: "+";
  font-size: 28px;
  font-weight: 600;
  color: #4b4b4b;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "−";
}

.accordion-body {
  color: #8e8e8e;
  line-height: 1.9;
  font-size: 17px;
  padding: 0 30px 30px;
  max-width: 90%;
}

/* footer section*/
.footer-section {
  position: relative;
  background: linear-gradient(to right, #4b230d, #2b1207);
  color: #fff;
  overflow: hidden;
  padding-top: 80px;
}

/* Background Logo */
.footer-bg-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 320px;
  color: rgba(255, 255, 255, 0.03);
  z-index: 1;
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 2;
}

/* Logo */
.footer-logo {
  width: 180px;
  margin-bottom: 25px;
}

.footer-description {
  color: #d4b59f;
  line-height: 1.9;
  font-size: 15px;
  margin-bottom: 35px;
  max-width: 320px;
}

/* Subscribe */
.subscribe-box {
  display: flex;
  overflow: hidden;
  max-width: 340px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.subscribe-input {
  background: transparent;
  border: none;
  color: #fff;
  width: 100%;
  padding: 12px 15px;
  outline: none;
  font-size: 14px;
}

.subscribe-input::placeholder {
  color: #c9b2a3;
}

.subscribe-btn {
  background: #f0dfc8;
  color: #5c2d14;
  border: none;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.subscribe-btn:hover {
  background: #d9b18b;
}

/* Footer Titles */
.footer-title {
  color: #e4b34e;
  font-size: 24px;
  margin-bottom: 28px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  text-transform: uppercase;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 18px;
}

.footer-links a {
  color: #d6c0b2;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Bottom Footer */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 70px;
  padding: 25px 0;
}

.copyright-text {
  color: #d0b6a3;
  font-size: 14px;
}

.bottom-links {
  display: flex;
  gap: 25px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.bottom-links a {
  color: #d0b6a3;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.bottom-links a:hover {
  color: #fff;
}

/* all services section*/

.services-section {
  padding: 85px 0px;
}

.section-title {
  font-family: "Kaushan Script", cursive;
  font-size: 42px;
  font-style: italic;
  text-align: center;
  margin-bottom: 10px;
  color: #7d5d4b;
}

.title-line {
  width: 220px;
  height: 2px;
  background: #b18469;
  margin: 0 auto 60px;
  position: relative;
}

.title-line::before,
.title-line::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #b18469;
  position: absolute;
  top: -4px;
  transform: rotate(45deg);
}

.title-line::before {
  left: 0;
}

.title-line::after {
  right: 0;
}

.service-box {
  margin-bottom: 70px;
}

.service-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #9b7158;
}

.service-list {
  padding-left: 20px;
}

.service-list li {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 1px;
}

.service-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.custom-btn {
  background: #d0a183;
  color: #fff;
  border: none;
  padding: 12px 35px;
  border-radius: 6px;
  margin-top: 20px;
  transition: 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.custom-btn:hover {
  background: #b98666;
}

/* Offer Box */
.offer-box {
  background-color: #fdf5e6;
  border: 1px solid #c7a48d;
  padding: 30px;
  border-radius: 8px;
  height: 100%;
}

.offer-title {
  color: #725141;
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.offer-list {
  padding-left: 20px;
  color: #725141;
  font-size: 0.95rem;
}

.offer-list li {
  margin-bottom: 8px;
  list-style-type: square;
}

/* New About Section Styles */
.about-section-new {
  background-color: #faeedb;
  padding: 80px 0;
  overflow: hidden;
}

.about-us-label {
  color: #b07d62;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.about-decor-flower {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  z-index: 1;
  pointer-events: none;
}
.about-decor-flower svg {
  width: 100%;
  height: 100%;
}

.slanted-images-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 20px;
}
.slanted-img-box {
  transform: skewX(-12deg);
  overflow: hidden;
  box-shadow: 8px 10px 20px rgba(140, 115, 101, 0.2);
  border-radius: 2px;
}
.slanted-img-box img {
  transform: skewX(12deg) scale(1.2);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-1 { width: 150px; height: 380px; }
.img-2 { width: 160px; height: 400px; margin-top: -10px; }
.img-3 { width: 140px; height: 360px; }

.about-content-new {
  max-width: 500px;
}
.about-logo-new {
  width: 80px;
  height: auto;
  border-radius: 50%;
  mix-blend-mode: multiply; /* Helps the logo blend smoothly */
}
.about-text-new {
  font-family: 'Orienta', sans-serif;
  color: #857062;
  font-size: 1.15rem;
  line-height: 2;
  letter-spacing: 0.5px;
}
.hue-brand {
  font-family: 'Orienta', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 4px;
  font-weight: 600;
  color: #7b6859;
  margin-right: 5px;
}
.btn-view-more {
  display: inline-block;
  background-color: #d1aa8f;
  color: #ffffff;
  padding: 12px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(209, 170, 143, 0.3);
}
.btn-view-more:hover {
  background-color: #bf987d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(209, 170, 143, 0.4);
}

@media (max-width: 991px) {
  .slanted-images-wrapper {
    transform: scale(0.85);
  }
}
@media (max-width: 768px) {
  .slanted-images-wrapper {
    flex-direction: row;
    gap: 8px;
    padding: 10px;
  }
  .slanted-img-box {
    transform: skewX(-8deg); /* slightly less slant for mobile */
  }
  .slanted-img-box img {
    transform: skewX(8deg) scale(1.2);
  }
  .img-1 { width: 28vw !important; height: 220px !important; }
  .img-2 { width: 32vw !important; height: 240px !important; margin-top: -15px !important; }
  .img-3 { width: 26vw !important; height: 200px !important; }
  
  .about-decor-flower {
    display: none;
  }
}

/* ABOUT- SECTION*/
.about-banner {
  background-image: url("../img/about-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
}

@media (max-width: 768px) {
  .about-banner {
    min-height: 40vh;
    padding: 60px 0;
  }
}

.about-our-story {
  background-color: #fff0e3;
  padding: 90px 0;
}

.story-section {
  padding: 80px 0;
  background-color: #fff0e3;
}

.story-box {
  position: relative;
  background: #f4e8de;
  border: 1px solid #c7a996;
  padding: 60px 50px;
}

/* Double Border Effect */
.story-box::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  border: 1px solid #d5b8a4;
  z-index: -1;
}

.story-logo {
  width: 110px;
  margin-bottom: 20px;
}

.story-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-style: italic;
  color: #8d6854;
  text-align: center;
  margin-bottom: 15px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}

.divider span {
  width: 180px;
  height: 1px;
  background: #b48a72;
  position: relative;
}

.divider span::before,
.divider span::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #b48a72;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.divider span::before {
  left: -5px;
}

.divider span::after {
  right: -5px;
}

.story-content {
  color: #8d6854;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1px;
}

.story-content p {
  margin-bottom: 20px;
}

.img-story {
  background-image: url("../img/about-story-pic.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}

.video-section {
  background: linear-gradient(rgba(43, 18, 7, 0.82), rgba(43, 18, 7, 0.9)), url("../img/video\ call.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: auto;
  padding: 80px 0;
  display: block;
}

@media (max-width: 768px) {
  .video-section {
    min-height: auto;
    padding: 50px 0;
  }
}

/* BEFORE-AFTER SECTION */
.ba-container {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 109, 92, 0.2);
}
.ba-background, .ba-foreground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ba-background img, .ba-foreground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-foreground {
  width: 100%;
  clip-path: inset(0 50% 0 0); /* crops from the right edge */
  z-index: 2;
  overflow: hidden;
}
.ba-foreground img {
  width: 100%;
  max-width: none;
}
.ba-label {
  position: absolute;
  top: 20px;
  padding: 5px 15px;
  background: rgba(255, 255, 255, 0.85);
  color: #634335;
  font-weight: 600;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: 'Orienta', sans-serif;
  z-index: 3;
  pointer-events: none;
}
.ba-label-before {
  left: 20px;
}
.ba-label-after {
  right: 20px;
}
.ba-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 4;
  cursor: ew-resize;
}
.ba-slider-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  pointer-events: none;
  color: #8b6d5c;
}
.ba-slider-btn::before, .ba-slider-btn::after {
  content: '';
  position: absolute;
  top: -300px;
  bottom: -300px;
  width: 3px;
  background: #fff;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

/* Responsiveness */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 10px;
  }

  .bg-text {
    font-size: 70px;
    right: 20px;
  }

  .testimonial-content {
    padding: 60px 30px;
    text-align: center;
  }

  .testimonial-text {
    margin: auto;
    margin-bottom: 20px;
  }

  .testimonial-left {
    min-height: 320px;
  }

  .testimonial-title {
    font-size: 34px;
  }

  .faq-left {
    text-align: center;
    padding-right: 0;
    margin-bottom: 50px;
  }

  .faq-description {
    margin: auto;
    margin-bottom: 30px;
  }

  .faq-image {
    margin: auto;
    margin-bottom: 35px;
  }

  .accordion-button {
    font-size: 22px;
  }

  .face-title {
    font-size: 50px;
  }

  .face-para {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .face-section {
    min-height: auto;
    padding: 80px 0;
  }
  
  .face-section::before {
    background: rgba(0, 0, 0, 0.6);
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .testimonial-section {
    padding: 60px 0;
  }
  
  .ba-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .service-col-side .service-card,
  .service-col-center .service-card {
    height: 300px;
  }

  .section-title {
    font-size: 36px;
  }

  .face-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 10px;
  }
}

@media (max-width: 576px) {
  .bg-text {
    display: none;
  }

  .testimonial-title {
    font-size: 28px;
  }

  .testimonial-content {
    padding: 50px 20px;
  }

  .quote-icon {
    width: 75px;
    height: 75px;
    font-size: 28px;
  }

  .faq-title {
    font-size: 38px;
  }

  .faq-description {
    font-size: 16px;
  }

  .accordion-button {
    font-size: 18px;
    padding: 22px 20px;
  }

  .accordion-body {
    font-size: 15px;
    padding: 0 20px 25px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .marquee-item {
    font-size: 0.9rem;
  }

  .face-title {
    font-size: 36px;
  }

  .face-para {
    font-size: 16px;
  }

  .gallery-card img {
    height: 250px;
  }

  .section-title {
    font-size: 28px;
  }

  .about-text h2 {
    font-size: 2.2rem !important;
  }
}

@media (max-width: 991px) {
  .footer-section {
    padding-top: 60px;
  }

  .footer-column {
    margin-bottom: 45px;
  }

  .bottom-links {
    justify-content: center;
    margin-top: 15px;
  }

  .copyright-text {
    text-align: center;
  }

  .footer-bg-logo {
    font-size: 220px;
  }
}

@media (max-width: 576px) {
  .footer-bg-logo {
    font-size: 150px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-description {
    font-size: 14px;
  }

  .subscribe-box {
    flex-direction: column;
    border: none;
    gap: 10px;
  }

  .subscribe-btn {
    padding: 12px;
  }

  .subscribe-input {
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
}

/* all services section*/
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .service-title {
    margin-top: 25px;
    font-size: 24px;
  }

  .service-img {
    height: 220px;
  }

  .service-list li {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .story-section {
    padding: 50px 10px;
  }

  .story-box {
    padding: 30px 20px;
  }

  .story-title {
    font-size: 30px;
  }

  .divider span {
    width: 120px;
  }

  .story-content {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.5px;
  }

  .story-logo {
    width: 70px;
    display: block;
    margin: auto auto 20px;
  }
  .story-box::before {
    top: 5px;
    left: 5px;
  }
}

/* Signup Section */
.signup-section {
  min-height: 100vh;
  background-color: #fff4ec;
  overflow: hidden;
}

.signup-section .row {
  min-height: 100vh;
}

.signup-image {
  height: 100vh;
}

.signup-image img {
  height: 100vh;
  object-fit: cover;
}

.signup-form-col {
  background-color: #fff4ec;
}

.signup-form-container {
  padding-top: 50px;
  padding-bottom: 50px;
}

.signup-label {
  color: #b0816b;
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.signup-input {
  background-color: transparent;
  border: 1px solid #c7a48d;
  border-radius: 8px;
  padding: 12px 15px;
  color: #b0816b;
}

.signup-input::placeholder {
  color: #c7a48d;
  opacity: 0.8;
}

.signup-input:focus {
  background-color: transparent;
  border-color: #8b5d4a;
  box-shadow: none;
  color: #8b5d4a;
}

.forgot-link {
  color: #b0816b;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.forgot-link:hover {
  color: #8b5d4a;
}

.btn-signup {
  background-color: #4b301f;
  color: white;
  border-radius: 8px;
  padding: 12px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-signup:hover {
  background-color: #311c10;
  color: white;
}

.btn-google {
  border-radius: 8px;
  border: none;
  color: #888 !important;
  font-size: 0.95rem;
}

.btn-google:hover {
  background-color: #f8f9fa !important;
}

@media (max-width: 767px) {
  .signup-section .row {
    min-height: auto;
  }
  .signup-image, 
  .signup-image img {
    height: 250px;
  }
  .signup-form-container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

/* Appointment Section */
.appointment-hero {
  min-height: 100vh;
}

.appoint-input {
  border: 1px solid #c0907a !important;
  border-radius: 8px;
  color: #634335 !important;
  padding: 15px 20px !important;
  font-size: 0.95rem !important;
}

.appoint-input::placeholder {
  color: #c0907a !important;
  opacity: 0.8;
}

.appoint-input:focus {
  border-color: #8b6d5c !important;
}

.btn-appoint-submit {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-appoint-submit:hover {
  background-color: #b0816b !important;
}