/* ================== Global ================== */
/* #f6E6D8
#f2b830
#b2a4eb
#ee66f2
#f7d0f6 

#D4AF36
#f06cee  */

html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Lato", "Manrope", sans-serif;
  color: #555555;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  color: #222222;
  margin: 0;
}

.section-padding {
  padding: 80px 0;
}
@media (max-width: 575.98px) {
  .section-padding {
    padding: 40px 10px !important; /* or even 30px if needed */
  }
}


/* ================== Preloader ================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff8f5;
}

.preloader-bg {
  position: absolute;
  inset: 0;
  background: #fff8f5;
  z-index: -1;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid #f4c2c2;
  border-top: 5px solid #d4af37;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 15px;
}

.preloader p {
  font-family: "Playfair Display", sans-serif;
  color: #222;
  font-size: 16px;
  letter-spacing: 1px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

body.loaded #preloader {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}



 /* ================== Navbar ================== */
.navbar.custom-nav {
  position: relative !important;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  background: transparent; 
  transition: all 0.4s ease;
}

/* 🗑️ Removed nav-scroll effect — no scroll background or shadow */

/* ===== Brand ===== */
.navbar-brand:focus,
.navbar-brand:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* ===== Nav Links ===== */
.navbar.custom-nav .nav-link {
  font-size: 20px;
  color: #222;
  margin: 5px 10px;
  transition: color 0.3s ease;
}

/* ===== Toggler Button ===== */
.navbar-toggler {
  border: none !important;
  outline: none !important;
  padding: 6px 8px;
  box-shadow: none !important;
  transition: transform 0.3s ease;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.navbar-toggler .navbar-toggler-icon {
  display: block;
  background-image: none;
  width: 26px;
  height: 2px;
  background-color: #222;
  position: relative;
  transition: all 0.3s ease;
}

/* Custom three bars for hamburger */
.navbar-toggler .navbar-toggler-icon::before,
.navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background-color: #222;
  transition: all 0.3s ease;
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

.close-icon {
  display: none;
  font-size: 28px;
  line-height: 1;
  color: #222;
  transition: all 0.3s ease;
}

/* ===== Toggle State Logic ===== */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  display: none;
}

.navbar-toggler:not(.collapsed) .close-icon {
  display: block;
}

/* ===== Icons ===== */
.navbar-icons .nav-link i {
  font-size: 22px;
  color: #222;
  transition: color 0.3s ease;
}

.navbar-icons .nav-link:hover i {
  color: #000;
}

/* ================== Responsive ================== */
@media (max-width: 991px) {
  .navbar.custom-nav {
    position: relative !important;
    background: #fff !important;
    padding: 15px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
  }

  .navbar-nav {
    text-align: center;
    margin-top: 10px;
  }

  .navbar-nav .nav-link {
    font-size: 18px;
    margin: 10px 0;
  }



  .navbar-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    width: 100%;
  }
}

/* ============modals===================== */
.zr-modal {
  background: rgba(255, 221, 210, 0.9) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  border: none !important;
}

.zr-modal .modal-header {
  justify-content: center;
  border-bottom: none;
}

.zr-modal .modal-title {
  color: #222;
  font-weight: bold;
  text-align: center;
}

.zr-modal .form-label {
  color: #222; /* Labels */
  font-weight: 500;
}

.zr-modal .form-control {
  border: 1px solid #ccc;
  color: #555;
  border-radius: 8px;
  padding: 10px;
}

.zr-modal .form-control::placeholder {
  color: #555;
}

.zr-btn {
  background: #222 !important;
  color: rgba(255, 221, 210, 0.9) !important;
  font-weight: 600;
  border-radius: 10px !important;
  padding: 10px !important;
  border: none !important;
  transition: 0.3s !important;
}

.zr-btn:hover {
  background: #444 !important;
  color: #fff;
}

.zr-switch {
  font-size: 14px !important;
  color: #222 !important;
  text-align: center;
}

.zr-switch .btn-link {
  color: #222 !important;
  font-weight: 600;
  text-decoration: underline !important;
}

/* ================= Captcha Styles ================= */
.zr-captcha {
  text-align: left;
  margin-top: 10px;
}

.zr-captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Canvas left, button right */
  gap: 10px;
  margin-bottom: 8px;
}

.zr-captcha canvas {
  border: 1px solid #d6a5a5;
  border-radius: 5px;
  background: #fff;
  width: 80%; /* Larger canvas */
  height: 50px;
}

.zr-captcha-refresh {
  background: #222 !important;
  color: #f4c2c2 !important; /* rose pink */
  width: 20%;
  height: 50px;
  border: none;
  padding: 8px 12px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.3s;
  flex-shrink: 0; /* ensure button size stays */
}

.zr-captcha-refresh:hover {
  background: #f4c2c2 !important;
  color: #222 !important;
}

.zr-captcha input.form-control {
  margin-top: 10px;
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding: 8px;
  color: #222;
}

/* ================== Hero Section ================== */

/* .hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  
} */



.slider-caption {
  position: absolute;
  top: 20%;
  left: auto !important;
  right: 5% !important; /* Adjust this value as needed */
  color: #222 !important;
  z-index: 2;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  text-align: right; /* Optional: aligns text to the right */
}

.slider-caption h1 {
  font-size: 3rem !important;
  font-weight: 700 !important;
  line-height: 1.2;
}

.slider-caption p {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.btn-hero {
  display: inline-block !important;
  background: #222222 !important;
  color: #fff !important;
  padding: 15px 30px !important;
  border-radius: 10px !important;
  font-size: 16px !important;
  margin-top: 20px !important;
  text-decoration: none !important;
  transition: 0.3s !important;
}

.btn-hero:hover {
  background-color: #f5ddc9 !important;
}
/* ===== CAROUSEL ARROWS ===== */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
  width: 2.8rem;
  height: 2.8rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 0.8;
}
/* .hero-section,
.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
  height: 100vh; 
  overflow: hidden;
} */

/* .hero-section .hero-img {
  height: 100%;
  width: 100%;
  object-fit: cover; 
  display: block;
} */


@media (max-width: 576px) {

/* .hero-section {
  position: relative;
  width: 100%;
  height: 100vh; 
  overflow: hidden;

} */

/* .hero-section .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  display: block;
} */
 .slider-caption {
    top: 5%;
    right: 3% !important;
    left: auto !important;
    max-width: 80%;
    font-size: 0.9rem;
    text-align: right;
  }

  .slider-caption h1 {
    font-size: 1rem !important;
    font-weight: 600 !important;
     line-height: 1;
  }

  .slider-caption p {
    font-size: 0.8rem;
    /* margin-bottom: 5px; */
  }
    .btn-hero {
      margin-top: 0px;
  display: inline-block !important;
  color: #fff !important;
  padding: 8px 20px !important;
  }
}
/* .hero-section,
  .hero-section .carousel,
  .hero-section .carousel-inner,
  .hero-section .carousel-item {
    height: 100vh;
  
  }
} */
/* ================== Common Image Wrapper ================== */
.img-wrapper {
  position: relative;
  padding: 0 0 20px 20px;
}

.img-wrapper::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 20px;
  bottom: 0;
 
  background-color: #e6d4c2;


  z-index: 1;
}

.img-wrapper img {
  position: relative;
  z-index: 2;
  transition: transform 0.4s ease;
}

.img-wrapper img:hover {
  transform: scale(0.97);
}

.img-tag {
  position: absolute;
  bottom: 20;
  right: 20px;
  width: 96.2%;
  padding: 12px 15px;

  background-color: #e6d4c2;

  color: #222;
  font-style: italic;
  text-align: center;
  font-size: 15px;
  z-index: 3;
}
@media (max-width: 576px) {
  .img-wrapper {
    padding: 0 0 10px 3px;
    text-align: center; 
  }

  .img-wrapper::before {
    top: 15px;
    left: 20px;
    right: 35px;
    bottom: 0;
  }

  .img-wrapper img {
  
    height: auto;
  }
.img-tag {
    bottom: 0;
    right: 10px;
    width: 94%; /* slightly reduce width */
    font-size: 14px;
    padding: 10px 12px;
  }
.custom-img {
    width: 80% !important; /* ya 80% bhi kar sakti ho depending on look */
    margin: 0 auto !important;
    display: block !important;
  }
 
}
/* ================== About Section ================== */
.about {
  padding: 60px 0;
  
}

.about p {
  font-size: 18px;
  line-height: 1.5;
  justify-content: center;
}
.about2 {
  padding: 60px 0;
 
}

.about2 p {
  font-size: 16px;
  line-height: 1.67;
}
@media (max-width: 576px) {
  
/* .about.section-title h2{
 font-size: 18 !important;
    font-weight: 400 !important;
     line-height: 1.2;
}*/
.about p {
  font-size: 14px !important;
  line-height: 1.5 !important;
  justify-content: center;
} 


.about2 p {
  font-size: 14px !important;
  line-height: 1.5 !important;
  justify-content: center;
}

 
}
/* ================== comman Section tittles and span ================== */
.section-title {
  text-align: left;
  max-width: 700px;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 42px;
  font-weight: 400;
  color: #222;
  margin-bottom: 20px;
}
.section-title span {
  font-size: 28px;
  font-weight: 700;
  color: #555;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .section-title {
    text-align: center; /* Optional: center on mobile */
    margin-bottom: 30px;
    padding: 0 15px; /* Add horizontal breathing room */
  }

  .section-title h2 {
    font-size: 28px; /* Reduce from 42px */
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 16px; /* Reduce from 20px */
    letter-spacing: 1px;
    margin-bottom: 8px;
  }
}
/* ================== Services Section ================== */
.services {
  padding: 100px 0;
 
  background-color: #e6d4c2;
 
}

  .services .section-title {
  text-align: center !important; 
  position: relative; 
 
  margin: 0 auto 40px auto !important; 
 
}

.services h2{
  font-size: 3rem !important;
  font-weight: 700 !important;
  color: #222;

}

.services-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

/* Carousel & Dots */
#servicesCarousel {
  position: relative;
  padding-bottom: 50px;
}

#servicesCarousel .carousel-inner .col-lg-4 {
  margin-bottom: 20px;
}

#servicesCarousel .carousel-indicators {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  gap: 8px;
  margin: 0;
}

#servicesCarousel .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.6;
  transition: background-color 0.3s, opacity 0.3s;
}

#servicesCarousel .carousel-indicators .active {
  background-color: #222;
  opacity: 1;
}

/* ================== Responsive ================== */

/* ========== Pricing Section ========== */
.pricing {
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: 0 !important;
  background-color: #e6d4c2;
}

.pricing-bg {
  position: relative;

  padding: 80px 0;
}

.pricing-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pricing .container {
  position: relative;
  z-index: 2;
}
.pricing .section-title{
  text-align: center !important; 
  margin: 0 auto 40px auto !important; 
  position: relative;
}
.pricing h2{
font-size: 3rem !important;
  font-weight: 700 !important;
  color: #222;
}

/* Pricing Panels */
.pricing-panel {
  background: transparent;
  border-radius: 10px;
  padding: 25px;
  transition: all 0.35s ease;
}

.pricing-panel:hover {
  transform: translateY(-10px);
}

.pricing-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-heading {
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 0;
  color: #555;
  padding-right: 10px;
}

.price {
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
  color: #555;
  padding-left: 10px;
}

.pricing-divider {
  height: 27px;
  border-bottom: 1px dashed #555;
  flex-grow: 1;
}

.pricing-desc {
  font-size: 16px;
  margin-top: 10px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 576px) {
  .pricing-heading,
  .price {
    font-size: 14px;
  }
.price {
  font-size: 14px;
  line-height: 20px;
  font-weight: 740;
  color: #555;
  padding-left: 10px;
}
.pricing-panel {

  padding: 10px;
  
}
  .pricing-divider {
    margin: 0 5px;
  }
  .pricing-desc {
  font-size: 14px;
  margin-top: 5px;
  line-height: 1;
}
}
/* slider */
/* Portfolio section */
.Portfolio {
  padding: 60px 0;
}

.portfolio-container {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 20px;
}

.portfolio-left,
.portfolio-right {
  width: 100%;
}

.portfolio-tittle {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.portfolio-left {
  order: 1;
}

.portfolio-right {
  order: 3;
}

.portfolio-btn {
  padding: 10px 25px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  background-color: #3d3b35;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-btn:hover {
  background-color: rgba(7, 6, 6, 0.7);
}

/* Slider */
.portfolio-container {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 20px!important;
}

.portfolio-left {
  width: 50%;
  display: flex !important;
  justify-content: center!important;
  align-items: center!important;
}

.portfolio-tittle {
  font-size: 48px;
  font-weight: 400;
  color: rgba(26, 26, 26, 0.88);
  margin-left: 40px;
  text-align: center;
}

.portfolio-right {
  width: 50% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.portfolio-btn {
  font-size: 1.5rem !important;
  padding: 0.8rem 2.5rem !important;
  border: none !important;
  background-color: #222 !important;
  color: #fff !important;
  cursor: pointer;
  
  transition: all 0.3s ease !important;
}

/* === Slider === */
.image-slider {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.image-slider figure {
  display: flex;
  width: 200%;
  margin: 0;
  animation: scroll 20s linear infinite;
}

.my-slide {
  flex: 0 0 20%;
}

.my-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (max-width: 1024px) {
  /* Portfolio section */
  .portfolio-container {
    flex-direction: column;
    text-align: center;
  }
  .portfolio-left,
  .portfolio-right {
    width: 100%;
  }
  .portfolio-tittle {
    font-size: 32px;
    margin: 0 0 20px 0;
  }
  .portfolio-left {
    order: 1;
  }
  .image-slider {
    height: 300px;
    order: 2;
  }
  .my-slide img {
    height: 300px;
  }
  .portfolio-right {
    order: 3;
  }

}
@media (max-width: 576px) {

  /* Portfolio */
  .portfolio-tittle {
    font-size: 22px;
  }

.portfolio-btn {
  padding: 10px 15px !important;
  font-size: 16px!important;
  border-radius: 6px;
  border: none;
  background-color: #3d3b35;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

  .image-slider {
     width: 100%;
    height: 250px;
  }
  .my-slide img {
    width: 100%;
    height: 250px;
  }
}


/* ================== Brands Section ================== */
.brands-section {
  padding: 80px 0;
    background-color: #e6d4c2;/
}

.brands-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.brands-title h2 {
  font-size: 28px;
  color: #3a2f27;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.brands-title span {
  flex: 1;
  height: 1px;
  max-width: 500px;
  background: #a08d7b;
  opacity: 0.6;
}

/* Grid of brand logos */
.brands-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 6 logos per row */
  align-items: center;
  justify-items: center;
  gap: 40px;
  row-gap: 60px; /* vertical gap between rows */
}

.brand-logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.brand-logo img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}
@media (max-width: 992px) {
  .brands-logos {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .brands-logos {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brand-logo img {
  width: 80px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.8);
  transition: all 0.3s ease;
  opacity: 0.7;
}

.brand-logo img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* ========== Gallery Section ========== */

.gallery {
 
  background-color: #e6d4c2;

}

.gallery .section-title {
  text-align: center !important; 
 
  margin: 0 auto 40px auto; 
  position: relative; /
 
}

.gallery .section-title h2 {
  font-size: 42px;
  font-weight: 400;
  color: #222;
  margin-bottom: 15px;
}

.gallery .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* FAQs */
.faqs {
  padding: 80px 0;
/
}

.faq-item {
  margin-left: 40px;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.faq-question {
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  margin-bottom: 5px;
  cursor: pointer;
}

.faq-answer {
  color: #555;
  margin-top: 10px;
  line-height: 1.6;
}

.faq-list span {
  font-weight: bold;
  margin-left: 10px;
}
.img-column{
margin-top: 200px !important;
}

.faqs.img-wrapper img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 100px;
}

.faq-item {
  background:  #e6d4c2;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: #e6d4c265;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 500px; /* enough for full text */
}
.EnquiryForm {
  background-color: #e6d4c2;
}
/* ===================faqs responsive */
@media (max-width: 575.98px) {
.faq-question {
    font-size: 1rem;
    flex-direction: row; /* keep icon on right */
    gap: 8px;
  }
.faq-item {
  margin-left: 0 !important;
}
.img-column{
margin-top: 0 !important;
}
  .faq-question span {
    font-size: 1.3rem;
  }

  .faq-answer {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .faq-item {
    padding: 15px;
  }

}
#products .section-title h2 {
  font-family: "Bebas Neue", sans-serif; 
  color: #222; 
  font-size: 48px;
  text-transform: uppercase; 
  letter-spacing: 2px; 
  margin-bottom: 0;
}


#products .img-wrapper img {
  max-width: 100%;
  display: block;
}


.review-section h2 {
  color: #222;
}
.review-section .card {
  transition: transform 0.3s ease;
}
.review-section .card:hover {
  transform: translateY(-5px);
}
.review-section i.fa-star {
  transition: transform 0.2s ease;
}

/*Footer */
.custom-footer {
  background: #222;
  color: #aaa;
  padding: 60px 0 20px;
}
.custom-footer h6 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 15px;
}
.social-links a {
  color: #fff;
  margin-left: 10px;
  font-size: 18px;
  transition: 0.3s;
}
.social-links a:hover {
  color: rgba(255, 221, 210, 0.9);
}


/* ==============Enquiry Form====== */
.EnquiryForm .section-title{
  justify-content: center;
  margin: 0 auto;
}
.EnquiryForm .contact-form button[type="submit"] {
  background: #222;
  color: #e6d4c2;
  width: 100%;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 16px;
  transition: 0.3s ease;
}

.EnquiryForm .contact-form button[type="submit"]:hover {
  background: rgba(255, 221, 210, 0.9);
  color: #222;
}

/* ================== Contact Section ================== */
.contact {
  /* background: #f6e6d8; */
  background-color: #e6d4c2;
}

.contact .section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  max-width: 700px;
  padding: 40px 20px;
}

.contact-form .form-label {
  font-size: 15px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  font-size: 15px;
  transition: 0.3s;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #d6a5a5;
  box-shadow: 0 0 0 0.2rem rgba(214, 165, 165, 0.25);
}

.contact-form textarea {
  resize: none;
}

/* Submit Button */
.contact-form button[type="submit"] {
  background: #222;
  color: #f6e6d8;
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 16px;
  transition: 0.3s;
}

.contact-form button[type="submit"]:hover {
  background: rgba(255, 221, 210, 0.9);
  color: #222;
}

/* ================== Animations ================== */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: all 0.8s ease;
}

.fade-up {
  transform: translateY(40px);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-up.show,
.fade-left.show,
.fade-right.show {
  opacity: 1;
  transform: translate(0, 0);
}
/* .footer-dark {
  background-color: #222;
}

.footer-dark a:hover {
  text-decoration: underline;
  color: #e6d4c2;
} */
 .footer-section {
  background-color:rgba(20, 20, 20, 0.912);
  color: #e6d4c2;
  padding: 4rem 1rem;
}

.footer-heading {
  font-weight: 600;
  letter-spacing: 1px;
padding-bottom: 2rem;
  color: #e6d4c2;
  margin-bottom: 1rem;
}

.footer-description {
  max-width: 800px;
  margin: 0 auto 2rem;

  color: #e6d4c2;
  font-size: 2rem;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Outline button */
.footer-btn-outline {
  background-color: rgba(20, 20, 20, 0.95);
  border: 1px solid #e6d4c2;
  color: #e6d4c2;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.footer-btn-outline:hover {
  background-color: #e6d4c2;
  color: #222;
}

/* Solid button */
.footer-btn-solid {
  background-color: #e6d4c2;
  color: #222;
  border: none;
  padding: 0.6rem 1.8rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.footer-btn-solid:hover {
  background-color: #d1bca4;
}

/* Subtle animation when copied */
.footer-btn-solid:active {
  transform: scale(0.97);
}

/* Divider */
.footer-divider {
  border: none;
  height: 1px;
  background-color: #e6d4c2;
  margin: 1.5rem 0;
}

/* Navigation Links */
.footer-btn{
 
  background: none;
  border: none;
  color: #e6d4c2;
  margin: 0 0.3rem;
  font-size: 0.7.5rem;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;

}
.footer-btn:hover {
  color: #d1bca4;
}

/* Copyright */
.footer-copy {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #e6d4c2;
}
