* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #fffafc;
  color: #2f2230;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .navbar-brand {
  font-family: 'Manrope', sans-serif;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

/* Topbar */
.topbar {
  background: linear-gradient(90deg, #8f002f, #d4145a);
  color: #fff;
  padding: 10px 0;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1055;
}

.topbar-marquee {
  display: flex;
  gap: 70px;
  white-space: nowrap;
  animation: marqueeMove 22s linear infinite;
  font-size: 14px;
  font-weight: 600;
}

.topbar-marquee span::after {
  content: "•";
  margin-left: 70px;
  opacity: 0.8;
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Navbar */
.ecommerce-navbar {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #f1dbe4;
  padding: 5px 0;
  position: sticky;
  top: 42px;
  z-index: 1050;
  box-shadow: 0 8px 30px rgba(40, 10, 20, 0.05);
}

.navbar-brand {
  font-size: 38px;
  font-weight: 700;
  color: #960039 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff0f5;
  color: #d4145a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.main-menu .nav-link {
  color: #6b1737 !important;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 10px 14px !important;
}

.main-menu .nav-link:hover,
.main-menu .nav-link.active {
  color: #d4145a !important;
}

.nav-action-icon,
.nav-icons-mobile a {
  width: 42px;
  height: 42px;
  border: 1px solid #ecd6df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8c2048;
  transition: 0.3s ease;
  position: relative;
}

.nav-action-icon:hover,
.nav-icons-mobile a:hover {
  background: #fff1f6;
  color: #d4145a;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #d4145a;
  color: #fff;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-toggler {
  border: 1px solid #ecd3dd;
  box-shadow: none !important;
}

/* Hero Slider */
.hero-slider-section {
  position: relative;
}

.hero-slide {
  min-height: 62vh;
  position: relative;
  display: flex;
  background-size: contain;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(28 7 18 / 34%), rgb(28 7 18 / 11%));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
  padding: 120px 0 90px;
}

.hero-badge,
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.section-tag {
  background: #ffe8f1;
  color: #b1124a;
}

.hero-content h1 {
  font-size: 50px;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

.hero-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #f8e9ef;
  margin-bottom: 30px;
  max-width: 620px;
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn {
  background: linear-gradient(90deg, #d4145a, #f03b7a);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: 0 12px 30px rgba(212, 20, 90, 0.25);
}

.primary-btn:hover {
  color: #fff;
  background: linear-gradient(90deg, #b80f4c, #e43170);
}

.secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.08);
}

.secondary-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.slider-arrow {
  filter: none;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Sections */
.categories-section,
.product-slider-section,
.decoration-section,
.why-us-section,
.reviews-section,
.faq-contact-section {
  padding: 50px 0;
}

.section-head h2,
.faq-title,
.contact-form-box h2 {
  font-size: 35px;
  font-weight: 700;
  color: #2d1620;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}

.section-head p,
.contact-form-box p {
  color: #6f5e65;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.9;
  font-size: 16px;
  font-weight: 500;
}

/* Category Cards */
.category-card {
  background: transparent!important;
  border-radius: 24px;
  overflow: hidden;
  /* box-shadow: 0 14px 40px rgba(30, 10, 20, 0.06); */
  /* border: 1px solid #f3e0e7; */
  transition: 0.35s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card img {
  height: 170px;
  /* object-fit: cover; */
}

.category-card h5 {
  padding: 0px 18px 20px;
  margin: 0;
  text-align: center;
  font-size: 16px;
  color: #c61051!important;
  font-weight: 700;
}

.category-card h5 a{
  color: #c61051!important;  
}

/* Category Cards2 */
.category-card2 {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(30, 10, 20, 0.06);
  border: 1px solid #f3e0e7;
  transition: 0.35s ease;
  height: 100%;
}

.category-card2:hover {
  transform: translateY(-8px);
}

.category-card2 img {
  height: 300px;
  object-fit: cover;
}

.category-card2 h5 {
  padding: 20px 18px 20px;
  margin: 0;
  text-align: center;
  font-size: 25px;
  color: #7f1f45;
  font-weight: 700;
}

.category-card2 h5 a{
    color: #c61051!important; 
}

.ptb-50{
  padding-top: 50px;
  padding-bottom: 50px;
}

/* Product Slider */
.product-carousel {
  position: relative;
}

.product-card {
  background: #fff;
  border: 1px solid #f1dde4;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 28px rgba(20, 10, 16, 0.05);
  transition: 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-image {
  height: 280px;
  overflow: hidden;
  background: #f9f2f5;
}

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-content {
  padding: 24px 22px;
}

.product-content h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #30171f;
  font-weight: 700;
}

.product-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #6e5e64;
  min-height: 50px;
  font-weight: 500;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 18px;
}

.price {
  font-size: 24px;
  font-weight: 800;
  color: #c31250;
}

.old-price {
  font-size: 14px;
  color: #aa939c;
  text-decoration: line-through;
}

.cart-btn {
  width: 100%;
  border: none;
  background: #fff1f6;
  color: #c31250;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.cart-btn:hover {
  background: #d4145a;
  color: #fff;
}

.custom-product-arrow {
  width: 52px;
  height: 52px;
  background: #d4145a;
  border-radius: 50%;
  top: 45%;
  opacity: 1;
}

.carousel-control-prev.custom-product-arrow {
  left: -25px;
}

.carousel-control-next.custom-product-arrow {
  right: -25px;
}

/* Decoration */
.decoration-section {
  background: linear-gradient(180deg, #fff8fb 0%, #fffdfd 100%);
}

.service-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #f0dfe5;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
  height: 100%;
}

.service-card img {
  height: 260px;
  object-fit: cover;
}

.service-card-body {
  padding: 24px;
}

.service-card-body h5 {
  font-size: 25px;
  color: #331821;
  margin-bottom: 10px;
  font-weight: 700;
}

.service-card-body p {
  color: #6a5b61;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

/* Why Choose */
.why-us-section {
  background: #fff;
}

.why-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #f0dfe5;
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
}

.why-card i {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: #fff0f5;
  color: #d4145a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 18px;
}

.why-card h5 {
  font-size: 25px;
  color: #331821;
  margin-bottom: 10px;
  font-weight: 700;
}

.why-card p {
  color: #6a5b61;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

/* Reviews */
.review-card {
  background: #fff;
  border: 1px solid #f0dfe5;
  border-radius: 24px;
  padding: 30px 26px;
  height: 100%;
  box-shadow: 0 12px 28px rgba(20, 10, 16, 0.05);
}

.stars {
  color: #ffb400;
  margin-bottom: 16px;
}

.review-card p {
  color: #5f5158;
  line-height: 1.9;
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 500;
}

.review-card h6 {
  font-size: 20px;
  color: #30161f;
  margin-bottom: 4px;
  font-weight: 700;
}

.review-card span {
  color: #a31a4d;
  font-size: 14px;
  font-weight: 700;
}

/* FAQ + Form */
.faq-contact-box {
  background: linear-gradient(135deg, #fff5f8, #fffdfd);
  border: 1px solid #f1dee6;
  border-radius: 32px;
  padding: 45px;
  box-shadow: 0 16px 44px rgba(20, 10, 16, 0.05);
}

.custom-accordion .accordion-item {
  border: 1px solid #eedbe3;
  border-radius: 16px !important;
  overflow: hidden;
  margin-bottom: 14px;
}

.custom-accordion .accordion-button {
  font-weight: 700;
  color: #631e3b;
  background: #fff;
  box-shadow: none;
  padding: 18px 20px;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: #fff1f6;
  color: #b1124a;
}

.custom-accordion .accordion-body {
  color: #6a5c61;
  line-height: 1.8;
  font-size: 15px;
  font-weight: 500;
}

.contact-form-box {
  background: #fff;
  border: 1px solid #f0dbe4;
  border-radius: 24px;
  padding: 30px;
}

.contact-form .form-control {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid #ead6de;
  box-shadow: none;
  padding-left: 16px;
  font-weight: 500;
}

.contact-form textarea.form-control {
  min-height: 130px;
  resize: none;
  padding-top: 14px;
}

.contact-form .form-control:focus {
  border-color: #d4145a;
}

/* Footer */
.footer-section {
  background: #2a111b;
  color: #fff;
  padding: 70px 0 25px;
}

.footer-section h4,
.footer-section h5 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}

.footer-section p,
.footer-section li a {
  color: #e9d5dd;
  line-height: 1.8;
  font-weight: 500;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section li {
  margin-bottom: 10px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #d4145a;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 34px;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
}

/* Toast */
.cart-toast {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: #d4145a;
  color: #fff;
  padding: 14px 22px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.35s ease;
  z-index: 9999;
  font-size: 14px;
  font-weight: 700;
}

.cart-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-content h1 {
    font-size: 58px;
  }

  .section-head h2,
  .faq-title,
  .contact-form-box h2 {
    font-size: 46px;
  }

  .carousel-control-prev.custom-product-arrow {
    left: -10px;
  }

  .carousel-control-next.custom-product-arrow {
    right: -10px;
  }
}

@media (max-width: 991px) {
  .ecommerce-navbar {
    top: 40px;
  }

  .hero-slide {
    min-height: 78vh;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 110px 0 80px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .section-head h2,
  .faq-title,
  .contact-form-box h2 {
    font-size: 40px;
  }

  .faq-contact-box {
    padding: 30px;
  }

  .custom-product-arrow {
    display: none;
  }
}

@media (max-width: 767px) {
  .navbar-brand {
    font-size: 30px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .section-head h2,
  .faq-title,
  .contact-form-box h2 {
    font-size: 25px;
  }

  .category-card img,
  .product-image,
  .service-card img {
    /* height: 180px; */
  }

  .categories-section,
  .product-slider-section,
  .decoration-section,
  .why-us-section,
  .reviews-section,
  .faq-contact-section {
    padding: 30px 0;
  }
}

@media (max-width: 575px) {
  .topbar-marquee {
    gap: 35px;
    font-size: 12px;
  }

  .ecommerce-navbar {
    top: 38px;
  }

  .hero-slide {
    min-height: 68vh;
  }

  .hero-content {
    padding: 90px 0 60px;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    text-align: center;
  }

  .faq-contact-box {
    padding: 20px;
  }

  .contact-form-box {
    padding: 22px;
  }

  .cart-toast {
    right: 15px;
    left: 15px;
    bottom: 15px;
    text-align: center;
  }
}

/* dropdown */

.category-dropdown {
  min-width: 240px;
  border-radius: 18px;
  background: #ffffff;
}

.category-dropdown .dropdown-item {
  padding: 10px 14px;
  border-radius: 12px;
  color: #6b1737;
  font-weight: 600;
  transition: 0.3s ease;
}

.category-dropdown .dropdown-item:hover {
  background: #fff1f6;
  color: #d4145a;
}

@media (max-width: 991px) {
  .category-dropdown {
    box-shadow: none !important;
    border-radius: 12px;
    padding-top: 0;
  }
}

/* birthday */

/* =========================
   Birthday Page CSS Start
========================= */

.birthday-banner {
  position: relative;
  min-height: 88vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.birthday-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 7, 18, 0.78), rgba(28, 7, 18, 0.28));
}

.birthday-banner-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  color: #fff;
  padding: 130px 0 90px;
}

.birthday-banner-content h1 {
  font-size: 68px;
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.4px;
}

.birthday-banner-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #f8e9ef;
  margin-bottom: 30px;
  max-width: 640px;
  font-weight: 500;
}

.birthday-outline-btn {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.birthday-outline-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.birthday-breadcrumb-wrap {
  background: #fff5f8;
  border-bottom: 1px solid #f1dbe4;
}

.birthday-breadcrumb {
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #7c5364;
  font-weight: 600;
}

.birthday-breadcrumb a {
  text-decoration: none;
  color: #b1124a;
  transition: 0.3s ease;
}

.birthday-breadcrumb a:hover {
  color: #d4145a;
}

.birthday-about-section,
.birthday-packages-section,
.birthday-services-section,
.birthday-cta-section {
  padding: 100px 0;
}

.birthday-about-section {
  background: #fff;
}

.birthday-about-image {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(27, 10, 18, 0.08);
  border: 1px solid #f1dde4;
}

.birthday-about-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  display: block;
}

.birthday-about-content h2 {
  font-size: 54px;
  font-weight: 700;
  color: #2d1620;
  margin-bottom: 18px;
  line-height: 1.12;
}

.birthday-about-content p {
  color: #6f5e65;
  line-height: 1.95;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 16px;
}

.birthday-feature-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}

.birthday-feature-item {
  background: #fff8fb;
  border: 1px solid #f2dfe6;
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4a2431;
  font-weight: 600;
}

.birthday-feature-item i {
  color: #d4145a;
  font-size: 16px;
}

.birthday-packages-section {
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

.birthday-package-card {
  background: #fff;
  border: 1px solid #f1dde4;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 30px rgba(20, 10, 16, 0.05);
  transition: 0.35s ease;
}

.birthday-package-card:hover {
  transform: translateY(-8px);
}

.birthday-package-image {
  height: 280px;
  overflow: hidden;
  background: #fdf2f6;
}

.birthday-package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.birthday-package-card:hover .birthday-package-image img {
  transform: scale(1.08);
}

.birthday-package-content {
  padding: 24px 22px 26px;
}

.birthday-package-content h4 {
  font-size: 30px;
  color: #30171f;
  font-weight: 700;
  margin-bottom: 10px;
}

.birthday-package-content p {
  font-size: 14px;
  line-height: 1.85;
  color: #6e5e64;
  min-height: 78px;
  font-weight: 500;
  margin-bottom: 0;
}

.birthday-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 18px;
}

.birthday-price {
  font-size: 24px;
  font-weight: 800;
  color: #c31250;
}

.birthday-old-price {
  font-size: 14px;
  color: #aa939c;
  text-decoration: line-through;
}

.birthday-card-btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: none;
  background: #fff1f6;
  color: #c31250;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.birthday-card-btn:hover {
  background: #d4145a;
  color: #fff;
}

.birthday-services-section {
  background: #ffffff;
}

.birthday-service-box {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #f0dfe5;
  padding: 34px 24px;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
  transition: 0.35s ease;
}

.birthday-service-box:hover {
  transform: translateY(-8px);
  background: #fff8fb;
}

.birthday-service-box i {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff1f6;
  color: #d4145a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.birthday-service-box h5 {
  font-size: 28px;
  color: #331821;
  margin-bottom: 10px;
  font-weight: 700;
}

.birthday-service-box p {
  color: #6a5b61;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
  font-size: 15px;
}

.birthday-cta-section {
  padding-top: 0;
}

.birthday-cta-box {
  background: linear-gradient(135deg, #3a1121 0%, #8a1241 55%, #d4145a 100%);
  border-radius: 30px;
  padding: 45px 38px;
  box-shadow: 0 18px 40px rgba(45, 10, 22, 0.16);
}

.birthday-cta-box h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.birthday-cta-box p {
  color: #f9dde8;
  margin: 0;
  line-height: 1.9;
  font-weight: 500;
  max-width: 700px;
}

/* Responsive */
@media (max-width: 1199px) {
  .birthday-banner-content h1 {
    font-size: 58px;
  }

  .birthday-about-content h2,
  .birthday-cta-box h2 {
    font-size: 42px;
  }

  .birthday-package-content h4 {
    font-size: 26px;
  }
}

@media (max-width: 991px) {
  .birthday-banner {
    min-height: 72vh;
  }

  .birthday-banner-content {
    text-align: center;
    margin: 0 auto;
    padding: 120px 0 80px;
  }

  .birthday-banner-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .birthday-about-content {
    text-align: center;
  }

  .birthday-feature-list {
    grid-template-columns: 1fr;
  }

  .birthday-cta-box {
    text-align: center;
    padding: 38px 26px;
  }

  .birthday-about-content h2,
  .birthday-cta-box h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .birthday-banner {
    min-height: 62vh;
  }

  .birthday-banner-content {
    padding: 110px 0 70px;
  }

  .birthday-banner-content h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .birthday-banner-content p {
    font-size: 15px;
  }

  .birthday-about-section,
  .birthday-packages-section,
  .birthday-services-section,
  .birthday-cta-section {
    padding: 75px 0;
  }

  .birthday-about-image img {
    min-height: 320px;
  }

  .birthday-about-content h2,
  .birthday-cta-box h2 {
    font-size: 32px;
  }

  .birthday-package-content h4,
  .birthday-service-box h5 {
    font-size: 24px;
  }

  .birthday-breadcrumb {
    font-size: 14px;
    gap: 6px;
  }
}

@media (max-width: 575px) {
  .birthday-banner-content h1 {
    font-size: 34px;
  }

  .birthday-banner-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .birthday-about-content h2,
  .birthday-cta-box h2 {
    font-size: 28px;
  }

  .birthday-package-image {
    height: 240px;
  }

  .birthday-package-content,
  .birthday-service-box {
    padding-left: 18px;
    padding-right: 18px;
  }

  .birthday-cta-box {
    border-radius: 24px;
    padding: 30px 20px;
  }

  .birthday-card-btn,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }
}

/* =========================
   Birthday Page CSS End
========================= */

/* dropdown */

/* Categories Dropdown */
.category-dropdown {
  min-width: 260px;
  padding: 10px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.category-dropdown .dropdown-item {
  padding: 11px 15px;
  border-radius: 12px;
  color: #7a1d45;
  font-weight: 600;
  transition: all 0.3s ease;
}

.category-dropdown .dropdown-item:hover {
  background: linear-gradient(135deg, #ff0f7b, #d4145a);
  color: #fff;
}

.navbar .dropdown-toggle::after {
  margin-left: 8px;
  vertical-align: middle;
}

@media (min-width: 1200px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

@media (max-width: 1199px) {
  .category-dropdown {
    min-width: 100%;
    box-shadow: none;
    border: 1px solid #f1dbe4;
    margin-top: 8px;
    border-radius: 14px;
  }

  .category-dropdown .dropdown-item {
    padding: 10px 12px;
    font-size: 15px;
  }
}

/* anniversary */

/* ===== Anniversary Banner ===== */
.anniversary-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.anniversary-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.8), rgba(28,7,18,0.3));
}

.anniversary-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
  padding: 120px 0 80px;
}

.anniversary-banner-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Breadcrumb */
.anniversary-breadcrumb {
  margin: 12px 0;
  color: #fff;
  font-size: 15px;
}

.anniversary-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.anniversary-breadcrumb strong {
  color: #ffd3e3;
}

/* About */
.anniversary-about-section {
  padding: 100px 0;
}

.anniversary-about-image img {
  width: 100%;
  border-radius: 25px;
}

.anniversary-about-content h2 {
  font-size: 48px;
  margin-bottom: 15px;
}

.anniversary-feature-list {
  margin-top: 20px;
}

.anniversary-feature-item {
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  color: #6b1737;
}

/* Cards */
.anniversary-package-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.anniversary-package-card:hover {
  transform: translateY(-6px);
}

.anniversary-package-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.anniversary-package-content {
  padding: 20px;
}

.anniversary-price {
  color: #d4145a;
  font-weight: bold;
}

.anniversary-old-price {
  text-decoration: line-through;
  color: #999;
}

.anniversary-card-btn {
  display: block;
  text-align: center;
  background: #fff1f6;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
  color: #d4145a;
}

/* CTA */
.anniversary-cta-box {
  background: linear-gradient(135deg, #8a1241, #d4145a);
  padding: 40px;
  border-radius: 25px;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .anniversary-banner-content h1 {
    font-size: 36px;
  }

  .anniversary-about-content h2 {
    font-size: 30px;
  }
}
/* baby */

/* Banner */
.baby-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
}

.baby-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.75), rgba(28,7,18,0.3));
}

.baby-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 120px 0;
}

/* Breadcrumb center */
.baby-breadcrumb {
  margin-bottom: 15px;
  font-size: 14px;
}

.baby-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.baby-breadcrumb strong {
  color: #ffd3e3;
}

/* About */
.baby-about-section {
  padding: 100px 0;
}

.baby-about-image img {
  width: 100%;
  border-radius: 20px;
}

.baby-feature-item {
  margin-bottom: 8px;
  color: #6b1737;
}

/* Cards */
.baby-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.baby-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.baby-card-body {
  padding: 20px;
}

.price {
  color: #d4145a;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .baby-banner-content h1 {
    font-size: 32px;
  }
}
/* proposal */
/* Proposal Banner */
.proposal-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.proposal-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28, 7, 18, 0.78), rgba(28, 7, 18, 0.28));
}

.proposal-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 120px 0;
  max-width: 760px;
  margin: 0 auto;
}

.proposal-banner-content h1 {
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}

.proposal-banner-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8e9ef;
  max-width: 650px;
  margin: 0 auto 28px;
}

.proposal-outline-btn {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.proposal-outline-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Breadcrumb Top Center */
.proposal-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
}

.proposal-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.proposal-breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.proposal-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.proposal-breadcrumb strong {
  color: #ffd3e3;
  font-weight: 600;
}

/* Sections */
.proposal-about-section,
.proposal-packages-section,
.proposal-services-section {
  padding: 100px 0;
}

.proposal-about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.06);
}

.proposal-about-image img {
  width: 100%;
  display: block;
  min-height: 460px;
  object-fit: cover;
}

.proposal-about-content h2 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #2d1620;
  line-height: 1.15;
}

.proposal-about-content p {
  color: #6f5e65;
  line-height: 1.9;
  margin-bottom: 14px;
}

.proposal-feature-list {
  margin-top: 24px;
}

.proposal-feature-item {
  margin-bottom: 12px;
  color: #6b1737;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.proposal-feature-item i {
  color: #d4145a;
}

/* Cards */
.proposal-packages-section {
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

.proposal-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #f1dde4;
  box-shadow: 0 12px 30px rgba(20, 10, 16, 0.05);
  transition: 0.35s ease;
  height: 100%;
}

.proposal-card:hover {
  transform: translateY(-8px);
}

.proposal-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.proposal-card-body {
  padding: 22px;
}

.proposal-card-body h4 {
  font-size: 28px;
  color: #30171f;
  margin-bottom: 10px;
}

.proposal-card-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #6e5e64;
  margin-bottom: 14px;
}

.proposal-price {
  display: inline-block;
  color: #d4145a;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 14px;
}

.proposal-card-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: #fff1f6;
  color: #d4145a;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s ease;
}

.proposal-card-btn:hover {
  background: #d4145a;
  color: #fff;
}

/* Services */
.proposal-service-box {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #f0dfe5;
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
  transition: 0.35s ease;
}

.proposal-service-box:hover {
  transform: translateY(-8px);
  background: #fff8fb;
}

.proposal-service-box i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff1f6;
  color: #d4145a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.proposal-service-box h5 {
  font-size: 26px;
  color: #331821;
  margin-bottom: 10px;
}

.proposal-service-box p {
  color: #6a5b61;
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .proposal-banner-content {
    padding: 110px 0 80px;
  }

  .proposal-banner-content h1 {
    font-size: 46px;
  }

  .proposal-about-content {
    text-align: center;
  }

  .proposal-about-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .proposal-banner {
    min-height: 70vh;
  }

  .proposal-banner-content h1 {
    font-size: 34px;
  }

  .proposal-banner-content p {
    font-size: 14px;
  }

  .proposal-about-section,
  .proposal-packages-section,
  .proposal-services-section {
    padding: 75px 0;
  }

  .proposal-about-image img {
    min-height: 320px;
  }

  .proposal-about-content h2 {
    font-size: 30px;
  }

  .proposal-card-body h4,
  .proposal-service-box h5 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .proposal-breadcrumb {
    font-size: 13px;
  }

  .proposal-banner-content h1 {
    font-size: 30px;
  }

  .proposal-card img {
    height: 220px;
  }

  .proposal-card-body,
  .proposal-service-box {
    padding: 18px;
  }
}
/* kids */
/* Banner */
.kids-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
}

.kids-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.75), rgba(28,7,18,0.3));
}

.kids-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 120px 0;
}

/* Breadcrumb */
.kids-breadcrumb {
  margin-bottom: 15px;
  font-size: 14px;
}

.kids-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.kids-breadcrumb strong {
  color: #ffd3e3;
}

/* About */
.kids-about-section {
  padding: 100px 0;
}

.kids-about-image img {
  width: 100%;
  border-radius: 20px;
}

.kids-feature-item {
  margin-bottom: 8px;
  color: #6b1737;
}

/* Cards */
.kids-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.kids-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.kids-card-body {
  padding: 20px;
}

.kids-price {
  color: #d4145a;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .kids-banner-content h1 {
    font-size: 32px;
  }
}

/* backdrops */
/* Banner */
.backdrop-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
}

.backdrop-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.75), rgba(28,7,18,0.3));
}

.backdrop-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 120px 0;
}

/* Breadcrumb */
.backdrop-breadcrumb {
  margin-bottom: 15px;
  font-size: 14px;
}

.backdrop-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.backdrop-breadcrumb strong {
  color: #ffd3e3;
}

/* About */
.backdrop-about-section {
  padding: 100px 0;
}

.backdrop-about-image img {
  width: 100%;
  border-radius: 20px;
}

.backdrop-feature-item {
  margin-bottom: 8px;
  color: #6b1737;
}

/* Cards */
.backdrop-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.backdrop-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.backdrop-card-body {
  padding: 20px;
}

.backdrop-price {
  color: #d4145a;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .backdrop-banner-content h1 {
    font-size: 32px;
  }
}
/* festive */
/* Banner */
.festive-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
}

.festive-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.75), rgba(28,7,18,0.3));
}

.festive-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 120px 0;
}

/* Breadcrumb */
.festive-breadcrumb {
  margin-bottom: 15px;
  font-size: 14px;
}

.festive-breadcrumb a {
  color: #fff;
  text-decoration: none;
}

.festive-breadcrumb strong {
  color: #ffd3e3;
}

/* About */
.festive-about-section {
  padding: 100px 0;
}

.festive-about-image img {
  width: 100%;
  border-radius: 20px;
}

.festive-feature-item {
  margin-bottom: 8px;
  color: #6b1737;
}

/* Cards */
.festive-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}

.festive-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.festive-card-body {
  padding: 20px;
}

.festive-price {
  color: #d4145a;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
  .festive-banner-content h1 {
    font-size: 32px;
  }
}

/* bachelorette */
/* Banner */
.bachelorette-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.bachelorette-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.76), rgba(28,7,18,0.28));
}

.bachelorette-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 120px 0;
  max-width: 760px;
  margin: 0 auto;
}

.bachelorette-banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}

.bachelorette-banner-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8e9ef;
  max-width: 650px;
  margin: 0 auto 28px;
}

.bachelorette-outline-btn {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.bachelorette-outline-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Breadcrumb */
.bachelorette-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
}

.bachelorette-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.bachelorette-breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.bachelorette-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.bachelorette-breadcrumb strong {
  color: #ffd3e3;
  font-weight: 600;
}

/* Sections */
.bachelorette-about-section,
.bachelorette-packages-section,
.bachelorette-services-section {
  padding: 100px 0;
}

.bachelorette-about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.06);
}

.bachelorette-about-image img {
  width: 100%;
  display: block;
  min-height: 460px;
  object-fit: cover;
}

.bachelorette-about-content h2 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #2d1620;
  line-height: 1.15;
}

.bachelorette-about-content p {
  color: #6f5e65;
  line-height: 1.9;
  margin-bottom: 14px;
}

.bachelorette-feature-list {
  margin-top: 24px;
}

.bachelorette-feature-item {
  margin-bottom: 12px;
  color: #6b1737;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.bachelorette-feature-item i {
  color: #d4145a;
}

/* Cards */
.bachelorette-packages-section {
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

.bachelorette-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #f1dde4;
  box-shadow: 0 12px 30px rgba(20, 10, 16, 0.05);
  transition: 0.35s ease;
  height: 100%;
}

.bachelorette-card:hover {
  transform: translateY(-8px);
}

.bachelorette-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.bachelorette-card-body {
  padding: 22px;
}

.bachelorette-card-body h4 {
  font-size: 28px;
  color: #30171f;
  margin-bottom: 10px;
}

.bachelorette-card-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #6e5e64;
  margin-bottom: 14px;
}

.bachelorette-price {
  display: inline-block;
  color: #d4145a;
  font-weight: 800;
  font-size: 24px;
}

/* Service Boxes */
.bachelorette-service-box {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #f0dfe5;
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
  transition: 0.35s ease;
}

.bachelorette-service-box:hover {
  transform: translateY(-8px);
  background: #fff8fb;
}

.bachelorette-service-box i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff1f6;
  color: #d4145a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.bachelorette-service-box h5 {
  font-size: 26px;
  color: #331821;
  margin-bottom: 10px;
}

.bachelorette-service-box p {
  color: #6a5b61;
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .bachelorette-banner-content {
    padding: 110px 0 80px;
  }

  .bachelorette-banner-content h1 {
    font-size: 44px;
  }

  .bachelorette-about-content {
    text-align: center;
  }

  .bachelorette-about-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .bachelorette-banner {
    min-height: 70vh;
  }

  .bachelorette-banner-content h1 {
    font-size: 34px;
  }

  .bachelorette-banner-content p {
    font-size: 14px;
  }

  .bachelorette-about-section,
  .bachelorette-packages-section,
  .bachelorette-services-section {
    padding: 75px 0;
  }

  .bachelorette-about-image img {
    min-height: 320px;
  }

  .bachelorette-about-content h2 {
    font-size: 30px;
  }

  .bachelorette-card-body h4,
  .bachelorette-service-box h5 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .bachelorette-breadcrumb {
    font-size: 13px;
  }

  .bachelorette-banner-content h1 {
    font-size: 30px;
  }

  .bachelorette-card img {
    height: 220px;
  }

  .bachelorette-card-body,
  .bachelorette-service-box {
    padding: 18px;
  }
}
/* all Indian occasions */
/* Banner */
.indian-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.indian-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.76), rgba(28,7,18,0.28));
}

.indian-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 120px 0;
  max-width: 760px;
  margin: 0 auto;
}

.indian-banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}

.indian-banner-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8e9ef;
  max-width: 650px;
  margin: 0 auto 28px;
}

.indian-outline-btn {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.indian-outline-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Breadcrumb */
.indian-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
}

.indian-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.indian-breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.indian-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.indian-breadcrumb strong {
  color: #ffd3e3;
  font-weight: 600;
}

/* Sections */
.indian-about-section,
.indian-packages-section,
.indian-services-section {
  padding: 100px 0;
}

.indian-about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.06);
}

.indian-about-image img {
  width: 100%;
  display: block;
  min-height: 460px;
  object-fit: cover;
}

.indian-about-content h2 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #2d1620;
  line-height: 1.15;
}

.indian-about-content p {
  color: #6f5e65;
  line-height: 1.9;
  margin-bottom: 14px;
}

.indian-feature-list {
  margin-top: 24px;
}

.indian-feature-item {
  margin-bottom: 12px;
  color: #6b1737;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.indian-feature-item i {
  color: #d4145a;
}

/* Cards */
.indian-packages-section {
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

.indian-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #f1dde4;
  box-shadow: 0 12px 30px rgba(20, 10, 16, 0.05);
  transition: 0.35s ease;
  height: 100%;
}

.indian-card:hover {
  transform: translateY(-8px);
}

.indian-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.indian-card-body {
  padding: 22px;
}

.indian-card-body h4 {
  font-size: 28px;
  color: #30171f;
  margin-bottom: 10px;
}

.indian-card-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #6e5e64;
  margin-bottom: 14px;
}

.indian-price {
  display: inline-block;
  color: #d4145a;
  font-weight: 800;
  font-size: 24px;
}

/* Service Boxes */
.indian-service-box {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #f0dfe5;
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
  transition: 0.35s ease;
}

.indian-service-box:hover {
  transform: translateY(-8px);
  background: #fff8fb;
}

.indian-service-box i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff1f6;
  color: #d4145a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.indian-service-box h5 {
  font-size: 26px;
  color: #331821;
  margin-bottom: 10px;
}

.indian-service-box p {
  color: #6a5b61;
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

/* Responsive */
@media (max-width: 991px) {
  .indian-banner-content {
    padding: 110px 0 80px;
  }

  .indian-banner-content h1 {
    font-size: 44px;
  }

  .indian-about-content {
    text-align: center;
  }

  .indian-about-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .indian-banner {
    min-height: 70vh;
  }

  .indian-banner-content h1 {
    font-size: 34px;
  }

  .indian-banner-content p {
    font-size: 14px;
  }

  .indian-about-section,
  .indian-packages-section,
  .indian-services-section {
    padding: 75px 0;
  }

  .indian-about-image img {
    min-height: 320px;
  }

  .indian-about-content h2 {
    font-size: 30px;
  }

  .indian-card-body h4,
  .indian-service-box h5 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .indian-breadcrumb {
    font-size: 13px;
  }

  .indian-banner-content h1 {
    font-size: 30px;
  }

  .indian-card img {
    height: 220px;
  }

  .indian-card-body,
  .indian-service-box {
    padding: 18px;
  }
}
/* products */

/* Products Banner */
.products-banner {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.products-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.78), rgba(28,7,18,0.30));
}

.products-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 0;
}

.products-banner-content h1 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}

.products-banner-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8e9ef;
  max-width: 650px;
  margin: 0 auto 28px;
}

.products-outline-btn {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.products-outline-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Breadcrumb */
.products-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
}

.products-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.products-breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.products-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.products-breadcrumb strong {
  color: #ffd3e3;
  font-weight: 600;
}

/* Sections */
.products-intro-section,
.products-grid-section,
.products-cta-section {
  padding: 100px 0;
}

.products-intro-section {
  padding-bottom: 20px;
}

.products-grid-section {
  padding-top: 20px;
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

/* Product Card */
.product-page-card {
  background: #fff;
  border: 1px solid #f1dde4;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 30px rgba(20, 10, 16, 0.05);
  transition: 0.35s ease;
}

.product-page-card:hover {
  transform: translateY(-8px);
}

.product-page-image {
  height: 260px;
  overflow: hidden;
}

.product-page-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.product-page-card:hover .product-page-image img {
  transform: scale(1.08);
}

.product-page-content {
  padding: 22px;
}

.product-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #d4145a;
  background: #fff1f6;
  padding: 7px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.product-page-content h4 {
  font-size: 16px;
  color: #30171f;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.2;
}

.product-page-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #6e5e64;
  margin-bottom: 14px;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.product-price {
  color: #d4145a;
  font-weight: 800;
  font-size: 24px;
}

.old-price {
  color: #a39198;
  text-decoration: line-through;
  font-size: 14px;
}

.product-page-btn {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  background: #fff1f6;
  color: #d4145a;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s ease;
}

.product-page-btn:hover {
  background: #d4145a;
  color: #fff;
}

/* CTA */
.products-cta-section {
  padding-top: 0;
}

.products-cta-box {
  background: linear-gradient(135deg, #3a1121 0%, #8a1241 55%, #d4145a 100%);
  border-radius: 30px;
  padding: 50px 30px;
  box-shadow: 0 18px 40px rgba(45, 10, 22, 0.16);
}

.products-cta-box h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 12px;
}

.products-cta-box p {
  color: #f9dde8;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 991px) {
  .products-banner-content {
    padding: 40px 0 40px;
  }

  .products-banner-content h1 {
    font-size: 46px;
  }

  .products-cta-box h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .products-banner {
    min-height: 30vh;
  }

  .products-banner-content h1 {
    font-size: 34px;
  }

  .products-banner-content p {
    font-size: 14px;
  }

  .products-intro-section,
  .products-grid-section,
  .products-cta-section {
    padding: 75px 0;
  }

  .product-page-content h4 {
    font-size: 22px;
  }

  .products-cta-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 575px) {
  .products-breadcrumb {
    font-size: 13px;
  }

  .products-banner-content h1 {
    font-size: 30px;
  }

  .product-page-image {
    height: 220px;
  }

  .product-page-content {
    padding: 18px;
  }

  .products-cta-box {
    padding: 35px 20px;
    border-radius: 22px;
  }
}
/* decoration */
/* Decoration Banner */
.decoration-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.decoration-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.78), rgba(28,7,18,0.30));
}

.decoration-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 0;
}

.decoration-banner-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}

.decoration-banner-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8e9ef;
  max-width: 650px;
  margin: 0 auto 28px;
}

.decoration-outline-btn {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.decoration-outline-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Breadcrumb */
.decoration-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
}

.decoration-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.decoration-breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.decoration-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.decoration-breadcrumb strong {
  color: #ffd3e3;
  font-weight: 600;
}

/* Sections */
.decoration-intro-section,
.decoration-services-section,
.decoration-why-section,
.decoration-cta-section {
  padding: 100px 0;
}

.decoration-intro-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.06);
}

.decoration-intro-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.decoration-intro-content h2 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #2d1620;
  line-height: 1.15;
}

.decoration-intro-content p {
  color: #6f5e65;
  line-height: 1.9;
  margin-bottom: 14px;
}

.decoration-feature-list {
  margin-top: 24px;
}

.decoration-feature-item {
  margin-bottom: 12px;
  color: #6b1737;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.decoration-feature-item i {
  color: #d4145a;
}

/* Service Cards */
.decoration-services-section {
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

.decoration-service-card {
  background: #fff;
  border: 1px solid #f1dde4;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 12px 30px rgba(20, 10, 16, 0.05);
  transition: 0.35s ease;
}

.decoration-service-card:hover {
  transform: translateY(-8px);
}

.decoration-service-image {
  height: 260px;
  overflow: hidden;
}

.decoration-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.decoration-service-card:hover .decoration-service-image img {
  transform: scale(1.08);
}

.decoration-service-content {
  padding: 22px;
}

.service-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #d4145a;
  background: #fff1f6;
  padding: 7px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.decoration-service-content h4 {
  font-size: 28px;
  color: #30171f;
  margin-bottom: 10px;
  line-height: 1.2;
}

.decoration-service-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #6e5e64;
  margin-bottom: 16px;
}

.decoration-service-btn {
  display: inline-block;
  text-decoration: none;
  background: #fff1f6;
  color: #d4145a;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s ease;
}

.decoration-service-btn:hover {
  background: #d4145a;
  color: #fff;
}

/* Why Boxes */
.decoration-why-box {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #f0dfe5;
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
  transition: 0.35s ease;
}

.decoration-why-box:hover {
  transform: translateY(-8px);
  background: #fff8fb;
}

.decoration-why-box i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff1f6;
  color: #d4145a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.decoration-why-box h5 {
  font-size: 26px;
  color: #331821;
  margin-bottom: 10px;
}

.decoration-why-box p {
  color: #6a5b61;
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

/* CTA */
.decoration-cta-section {
  padding-top: 0;
}

.decoration-cta-box {
  background: linear-gradient(135deg, #3a1121 0%, #8a1241 55%, #d4145a 100%);
  border-radius: 30px;
  padding: 50px 30px;
  box-shadow: 0 18px 40px rgba(45, 10, 22, 0.16);
}

.decoration-cta-box h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 12px;
}

.decoration-cta-box p {
  color: #f9dde8;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 991px) {
  .decoration-banner-content {
    padding: 110px 0 80px;
  }

  .decoration-banner-content h1 {
    font-size: 46px;
  }

  .decoration-intro-content {
    text-align: center;
  }

  .decoration-intro-content h2,
  .decoration-cta-box h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .decoration-banner {
    min-height: 70vh;
  }

  .decoration-banner-content h1 {
    font-size: 34px;
  }

  .decoration-banner-content p {
    font-size: 14px;
  }

  .decoration-intro-section,
  .decoration-services-section,
  .decoration-why-section,
  .decoration-cta-section {
    padding: 75px 0;
  }

  .decoration-intro-image img {
    min-height: 320px;
  }

  .decoration-intro-content h2,
  .decoration-cta-box h2 {
    font-size: 30px;
  }

  .decoration-service-content h4,
  .decoration-why-box h5 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .decoration-breadcrumb {
    font-size: 13px;
  }

  .decoration-banner-content h1 {
    font-size: 30px;
  }

  .decoration-service-image {
    height: 220px;
  }

  .decoration-service-content,
  .decoration-why-box {
    padding: 18px;
  }

  .decoration-cta-box {
    padding: 35px 20px;
    border-radius: 22px;
  }
}
/* why choose */

/* Why Banner */
.why-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.why-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.78), rgba(28,7,18,0.30));
}

.why-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 0;
}

.why-banner-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}

.why-banner-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8e9ef;
  max-width: 650px;
  margin: 0 auto 28px;
}

.why-outline-btn {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.why-outline-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Breadcrumb */
.why-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
}

.why-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.why-breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.why-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.why-breadcrumb strong {
  color: #ffd3e3;
  font-weight: 600;
}

/* Sections */
.why-intro-section,
.why-features-section,
.why-stats-section,
.why-cta-section {
  padding: 100px 0;
}

.why-intro-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.06);
}

.why-intro-image img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
  display: block;
}

.why-intro-content h2 {
  font-size: 48px;
  margin-bottom: 16px;
  color: #2d1620;
  line-height: 1.15;
}

.why-intro-content p {
  color: #6f5e65;
  line-height: 1.9;
  margin-bottom: 14px;
}

.why-feature-list {
  margin-top: 24px;
}

.why-feature-item {
  margin-bottom: 12px;
  color: #6b1737;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.why-feature-item i {
  color: #d4145a;
}

/* Feature Boxes */
.why-features-section {
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

.why-feature-box {
  background: #fff;
  border-radius: 22px;
  border: 1px solid #f0dfe5;
  padding: 32px 22px;
  text-align: center;
  height: 100%;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
  transition: 0.35s ease;
}

.why-feature-box:hover {
  transform: translateY(-8px);
  background: #fff8fb;
}

.why-feature-box i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff1f6;
  color: #d4145a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.why-feature-box h5 {
  font-size: 26px;
  color: #331821;
  margin-bottom: 10px;
}

.why-feature-box p {
  color: #6a5b61;
  line-height: 1.8;
  margin: 0;
  font-size: 15px;
}

/* Stats */
.why-stats-section {
  padding-top: 0;
}

.why-stats-box {
  background: linear-gradient(135deg, #3a1121 0%, #8a1241 55%, #d4145a 100%);
  border-radius: 30px;
  padding: 45px 25px;
  box-shadow: 0 18px 40px rgba(45, 10, 22, 0.16);
}

.why-stat-item h3 {
  color: #fff;
  font-size: 44px;
  margin-bottom: 8px;
}

.why-stat-item p {
  color: #f9dde8;
  margin: 0;
  font-size: 16px;
}

/* CTA */
.why-cta-section {
  padding-top: 0;
}

.why-cta-box {
  background: #fff8fb;
  border: 1px solid #f0dfe5;
  border-radius: 30px;
  padding: 50px 30px;
}

.why-cta-box h2 {
  color: #2d1620;
  font-size: 48px;
  margin-bottom: 12px;
}

.why-cta-box p {
  color: #6f5e65;
  max-width: 760px;
  margin: 0 auto 24px;
  line-height: 1.9;
}

/* Responsive */
@media (max-width: 991px) {
  .why-banner-content {
    padding: 110px 0 80px;
  }

  .why-banner-content h1 {
    font-size: 46px;
  }

  .why-intro-content {
    text-align: center;
  }

  .why-intro-content h2,
  .why-cta-box h2 {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .why-banner {
    min-height: 70vh;
  }

  .why-banner-content h1 {
    font-size: 34px;
  }

  .why-banner-content p {
    font-size: 14px;
  }

  .why-intro-section,
  .why-features-section,
  .why-stats-section,
  .why-cta-section {
    padding: 75px 0;
  }

  .why-intro-image img {
    min-height: 320px;
  }

  .why-intro-content h2,
  .why-cta-box h2 {
    font-size: 30px;
  }

  .why-feature-box h5 {
    font-size: 22px;
  }

  .why-stat-item h3 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .why-breadcrumb {
    font-size: 13px;
  }

  .why-banner-content h1 {
    font-size: 30px;
  }

  .why-feature-box,
  .why-cta-box {
    padding: 22px 18px;
  }

  .why-stats-box {
    padding: 30px 18px;
    border-radius: 22px;
  }

  .why-cta-box {
    border-radius: 22px;
  }
}
/* faq */
/* Banner */
.faq-contact-banner {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.faq-contact-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.78), rgba(28,7,18,0.30));
}

.faq-contact-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 0;
}

.faq-contact-banner-content h1 {
  font-size: 62px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}

.faq-contact-banner-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8e9ef;
  max-width: 650px;
  margin: 0 auto 28px;
}

.faq-contact-outline-btn {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.faq-contact-outline-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Breadcrumb */
.faq-contact-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
}

.faq-contact-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.faq-contact-breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.faq-contact-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.faq-contact-breadcrumb strong {
  color: #ffd3e3;
  font-weight: 600;
}

/* Sections */
.faq-main-section,
.contact-main-section {
  padding: 100px 0;
}

.faq-main-section {
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
  padding-bottom: 60px;
}

.contact-main-section {
  padding-top: 60px;
}

/* FAQ Accordion */
.faq-wrapper {
  max-width: 950px;
  margin: 0 auto;
}

.custom-faq-accordion .accordion-item {
  border: 1px solid #f1dde4;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 10px 24px rgba(20, 10, 16, 0.04);
}

.custom-faq-accordion .accordion-button {
  background: #fff;
  color: #30171f;
  font-weight: 700;
  font-size: 18px;
  padding: 22px 24px;
  box-shadow: none;
}

.custom-faq-accordion .accordion-button:not(.collapsed) {
  background: #fff1f6;
  color: #d4145a;
}

.custom-faq-accordion .accordion-button:focus {
  box-shadow: none;
}

.custom-faq-accordion .accordion-body {
  padding: 0 24px 22px;
  color: #6e5e64;
  line-height: 1.9;
  background: #fff;
}

/* Contact Info */
.contact-info-box {
  background: linear-gradient(135deg, #3a1121 0%, #8a1241 55%, #d4145a 100%);
  border-radius: 28px;
  padding: 38px 28px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(45, 10, 22, 0.16);
}

.contact-info-box .section-tag {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

.contact-info-box h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 14px;
}

.contact-info-box p {
  color: #f9dde8;
  line-height: 1.9;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  align-items: flex-start;
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-item h5 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 20px;
}

.contact-info-item p {
  margin: 0;
  color: #f9dde8;
}

/* Contact Form */
.contact-form-box {
  background: #fff;
  border: 1px solid #f1dde4;
  border-radius: 28px;
  padding: 38px 30px;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
  height: 100%;
}

.contact-form-box h2 {
  font-size: 42px;
  margin-bottom: 12px;
  color: #2d1620;
}

.contact-form-box p {
  color: #6f5e65;
  line-height: 1.9;
  margin-bottom: 24px;
}

.custom-form-control {
  border: 1px solid #ead7df;
  border-radius: 14px;
  min-height: 56px;
  padding: 14px 16px;
  color: #30171f;
  box-shadow: none;
}

textarea.custom-form-control {
  min-height: 160px;
  resize: none;
}

.custom-form-control:focus {
  border-color: #d4145a;
  box-shadow: 0 0 0 0.15rem rgba(212, 20, 90, 0.1);
}

/* Responsive */
@media (max-width: 991px) {
  .faq-contact-banner-content {
    padding: 110px 0 80px;
  }

  .faq-contact-banner-content h1 {
    font-size: 46px;
  }

  .contact-info-box h2,
  .contact-form-box h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .faq-contact-banner {
    min-height: 70vh;
  }

  .faq-contact-banner-content h1 {
    font-size: 34px;
  }

  .faq-contact-banner-content p {
    font-size: 14px;
  }

  .faq-main-section,
  .contact-main-section {
    padding: 75px 0;
  }

  .faq-main-section {
    padding-bottom: 40px;
  }

  .contact-main-section {
    padding-top: 40px;
  }

  .custom-faq-accordion .accordion-button {
    font-size: 16px;
    padding: 18px 18px;
  }

  .custom-faq-accordion .accordion-body {
    padding: 0 18px 18px;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 26px 20px;
  }

  .contact-info-box h2,
  .contact-form-box h2 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .faq-contact-breadcrumb {
    font-size: 13px;
  }

  .faq-contact-banner-content h1 {
    font-size: 30px;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .contact-info-item h5 {
    font-size: 18px;
  }
}
/* cart */
/* Cart Banner */
.cart-banner {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.cart-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(28,7,18,0.78), rgba(28,7,18,0.30));
}

.cart-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 0 90px;
}

.cart-banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.1;
}

.cart-banner-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8e9ef;
  max-width: 650px;
  margin: 0 auto 28px;
}

.cart-outline-btn {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.cart-outline-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Breadcrumb */
.cart-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
}

.cart-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.cart-breadcrumb a:hover {
  text-decoration: underline;
  opacity: 1;
}

.cart-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.cart-breadcrumb strong {
  color: #ffd3e3;
  font-weight: 600;
}

/* Cart Section */
.cart-main-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

.cart-table-wrap {
  background: #fff;
  border: 1px solid #f1dde4;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
}

.cart-table-header h2 {
  font-size: 38px;
  color: #2d1620;
  margin-bottom: 6px;
}

.cart-table-header p {
  color: #6f5e65;
  margin-bottom: 24px;
}

/* Cart Item */
.cart-item-card {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
  border: 1px solid #f1dde4;
  border-radius: 22px;
  padding: 18px;
  margin-bottom: 18px;
}

.cart-item-image {
  border-radius: 18px;
  overflow: hidden;
}

.cart-item-image img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  display: block;
}

.cart-item-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #d4145a;
  background: #fff1f6;
  padding: 6px 12px;
  border-radius: 30px;
  margin-bottom: 10px;
}

.cart-item-content h4 {
  font-size: 26px;
  color: #30171f;
  margin-bottom: 8px;
}

.cart-item-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #6e5e64;
  margin-bottom: 14px;
}

.cart-item-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-item-price {
  color: #d4145a;
  font-weight: 800;
  font-size: 24px;
}

/* Quantity */
.qty-box {
  display: flex;
  align-items: center;
  border: 1px solid #ead7df;
  border-radius: 12px;
  overflow: hidden;
}

.qty-box button {
  width: 38px;
  height: 38px;
  border: none;
  background: #fff1f6;
  color: #d4145a;
  font-weight: 700;
  font-size: 18px;
}

.qty-box input {
  width: 46px;
  height: 38px;
  border: none;
  text-align: center;
  outline: none;
  color: #30171f;
}

.cart-item-remove a {
  color: #b1124a;
  text-decoration: none;
  font-weight: 700;
}

.cart-item-remove a:hover {
  text-decoration: underline;
}

/* Summary */
.cart-summary-box {
  background: #fff;
  border: 1px solid #f1dde4;
  border-radius: 28px;
  padding: 28px 24px;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
  position: sticky;
  top: 120px;
}

.cart-summary-box h3 {
  font-size: 34px;
  color: #2d1620;
  margin: 12px 0 22px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #f1dde4;
  color: #6f5e65;
}

.summary-row strong {
  color: #30171f;
}

.total-row {
  font-size: 18px;
}

.total-row strong {
  color: #d4145a;
  font-size: 24px;
}

.cart-summary-btn {
  border-color: #e1c9d3;
  color: #b1124a;
  background: #fff;
}

.cart-summary-btn:hover {
  background: #fff1f6;
  color: #b1124a;
}

/* Responsive */
@media (max-width: 991px) {
  .cart-banner-content {
    padding: 110px 0 80px;
  }

  .cart-banner-content h1 {
    font-size: 44px;
  }

  .cart-summary-box {
    position: static;
  }

  .cart-item-card {
    grid-template-columns: 120px 1fr;
  }

  .cart-item-remove {
    grid-column: 1 / -1;
    text-align: right;
  }
}

@media (max-width: 767px) {
  .cart-banner {
    min-height: 68vh;
  }

  .cart-banner-content h1 {
    font-size: 34px;
  }

  .cart-banner-content p {
    font-size: 14px;
  }

  .cart-main-section {
    padding: 75px 0;
  }

  .cart-table-wrap,
  .cart-summary-box {
    padding: 20px;
  }

  .cart-table-header h2,
  .cart-summary-box h3 {
    font-size: 28px;
  }

  .cart-item-card {
    grid-template-columns: 1fr;
  }

  .cart-item-image img {
    height: 220px;
  }

  .cart-item-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-remove {
    text-align: left;
  }
}

@media (max-width: 575px) {
  .cart-breadcrumb {
    font-size: 13px;
  }

  .cart-banner-content h1 {
    font-size: 30px;
  }

  .cart-item-content h4 {
    font-size: 22px;
  }

  .cart-item-image img {
    height: 200px;
  }
}
/* profile */

/* Banner */
.profile-banner {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.profile-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 8, 20, 0.82), rgba(212, 20, 90, 0.35));
}

.profile-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 0 80px;
}

.profile-banner-content h1 {
  font-size: 62px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.profile-banner-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8e9ef;
  max-width: 680px;
  margin: 0 auto;
}

/* Breadcrumb */
.profile-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
}

.profile-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.profile-breadcrumb a:hover {
  text-decoration: underline;
}

.profile-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.profile-breadcrumb strong {
  color: #ffd3e3;
}

/* Main */
.profile-main-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

/* Sidebar */
.profile-sidebar {
  position: sticky;
  top: 120px;
}

.profile-user-card,
.profile-menu-card,
.profile-info-card {
  background: #fff;
  border: 1px solid #f1dde4;
  border-radius: 26px;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
}

.profile-user-card {
  padding: 32px 24px;
  text-align: center;
  margin-bottom: 24px;
}

.profile-user-image {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 4px solid #fff1f6;
}

.profile-user-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-user-card h3 {
  font-size: 28px;
  color: #30171f;
  margin-bottom: 6px;
}

.profile-user-card p {
  color: #816d75;
  margin-bottom: 18px;
}

.edit-profile-btn {
  display: inline-block;
  text-decoration: none;
  background: #d4145a;
  color: #fff;
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.edit-profile-btn:hover {
  background: #b3124b;
  color: #fff;
}

.profile-menu-card {
  padding: 16px;
}

.profile-menu-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #5f3344;
  padding: 14px 14px;
  border-radius: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.profile-menu-card a:hover,
.profile-menu-card a.active {
  background: #fff1f6;
  color: #d4145a;
}

/* Content */
.profile-content-wrap {
  display: grid;
  gap: 24px;
}

.profile-info-card {
  padding: 28px 24px;
}

.profile-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.profile-card-head h2 {
  font-size: 34px;
  color: #2d1620;
  margin: 0;
}

.profile-card-head a {
  text-decoration: none;
  color: #d4145a;
  font-weight: 700;
}

.profile-info-card label {
  display: block;
  font-weight: 600;
  color: #6f5e65;
  margin-bottom: 8px;
}

.profile-input {
  min-height: 54px;
  border-radius: 14px;
  border: 1px solid #ead7df;
  box-shadow: none;
  padding: 12px 16px;
}

.profile-input:focus {
  border-color: #d4145a;
  box-shadow: 0 0 0 0.15rem rgba(212, 20, 90, 0.1);
}

.saved-address-box {
  background: #fff8fb;
  border: 1px solid #f1dde4;
  border-radius: 18px;
  padding: 20px;
}

.saved-address-box h5 {
  font-size: 22px;
  color: #30171f;
  margin-bottom: 8px;
}

.saved-address-box p {
  margin: 0;
  color: #6f5e65;
  line-height: 1.8;
}

.recent-order-box {
  display: grid;
  gap: 16px;
}

.recent-order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid #f1dde4;
  border-radius: 18px;
  background: #fff8fb;
}

.recent-order-item h5 {
  font-size: 20px;
  color: #30171f;
  margin-bottom: 4px;
}

.recent-order-item p {
  margin: 0;
  color: #7b6870;
}

.order-status {
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.order-status.delivered {
  background: #e8fff0;
  color: #1d8f4d;
}

.order-status.pending {
  background: #fff6df;
  color: #b98300;
}

.order-status.processing {
  background: #eef4ff;
  color: #2d6cdf;
}

/* Responsive */
@media (max-width: 991px) {
  .profile-sidebar {
    position: static;
  }

  .profile-banner-content h1 {
    font-size: 46px;
  }

  .profile-card-head h2 {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .profile-banner {
    min-height: 62vh;
  }

  .profile-banner-content {
    padding: 110px 0 70px;
  }

  .profile-banner-content h1 {
    font-size: 34px;
  }

  .profile-banner-content p {
    font-size: 14px;
  }

  .profile-main-section {
    padding: 75px 0;
  }

  .profile-info-card,
  .profile-user-card {
    padding: 22px 18px;
  }

  .profile-card-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .recent-order-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 575px) {
  .profile-breadcrumb {
    font-size: 13px;
  }

  .profile-banner-content h1 {
    font-size: 30px;
  }

  .profile-user-card h3 {
    font-size: 24px;
  }

  .profile-card-head h2 {
    font-size: 24px;
  }

  .saved-address-box h5,
  .recent-order-item h5 {
    font-size: 18px;
  }
}
/* wishlist */
/* Wishlist Banner */
.wishlist-banner {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.wishlist-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 8, 20, 0.82), rgba(212, 20, 90, 0.35));
}

.wishlist-banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 0 90px;
}

.wishlist-banner-content h1 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.wishlist-banner-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #f8e9ef;
  max-width: 650px;
  margin: 0 auto 28px;
}

.wishlist-outline-btn {
  border: 1px solid rgba(255,255,255,0.55);
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.wishlist-outline-btn:hover {
  background: rgba(255,255,255,0.16);
  color: #fff;
}

/* Breadcrumb */
.wishlist-breadcrumb {
  margin-bottom: 16px;
  font-size: 14px;
  color: #fff;
}

.wishlist-breadcrumb a {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
}

.wishlist-breadcrumb a:hover {
  text-decoration: underline;
}

.wishlist-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.wishlist-breadcrumb strong {
  color: #ffd3e3;
}

/* Main */
.wishlist-main-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff8fb 0%, #ffffff 100%);
}

/* Card */
.wishlist-card {
  background: #fff;
  border: 1px solid #f1dde4;
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 14px 34px rgba(23, 10, 16, 0.05);
  transition: 0.35s ease;
}

.wishlist-card:hover {
  transform: translateY(-8px);
}

.wishlist-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.wishlist-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.wishlist-card:hover .wishlist-card-image img {
  transform: scale(1.08);
}

.wishlist-remove-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  color: #d4145a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(20, 10, 16, 0.12);
}

.wishlist-remove-btn:hover {
  background: #d4145a;
  color: #fff;
}

.wishlist-card-content {
  padding: 22px;
}

.wishlist-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #d4145a;
  background: #fff1f6;
  padding: 7px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
  letter-spacing: 0.4px;
}

.wishlist-card-content h4 {
  font-size: 28px;
  color: #30171f;
  margin-bottom: 10px;
  line-height: 1.2;
}

.wishlist-card-content p {
  font-size: 14px;
  line-height: 1.8;
  color: #6e5e64;
  margin-bottom: 14px;
}

.wishlist-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.wishlist-price {
  color: #d4145a;
  font-weight: 800;
  font-size: 24px;
}

.wishlist-old-price {
  color: #a39198;
  text-decoration: line-through;
  font-size: 14px;
}

.wishlist-actions {
  display: flex;
  gap: 12px;
}

.wishlist-cart-btn,
.wishlist-view-btn {
  flex: 1;
  text-align: center;
  text-decoration: none;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.3s ease;
}

.wishlist-cart-btn {
  background: #d4145a;
  color: #fff;
}

.wishlist-cart-btn:hover {
  background: #b3124b;
  color: #fff;
}

.wishlist-view-btn {
  background: #fff1f6;
  color: #d4145a;
}

.wishlist-view-btn:hover {
  background: #f7d9e6;
  color: #b3124b;
}

/* Responsive */
@media (max-width: 991px) {
  .wishlist-banner-content h1 {
    font-size: 46px;
  }
}

@media (max-width: 767px) {
  .wishlist-banner {
    min-height: 65vh;
  }

  .wishlist-banner-content {
    padding: 110px 0 70px;
  }

  .wishlist-banner-content h1 {
    font-size: 34px;
  }

  .wishlist-banner-content p {
    font-size: 14px;
  }

  .wishlist-main-section {
    padding: 75px 0;
  }

  .wishlist-card-image {
    height: 230px;
  }

  .wishlist-card-content h4 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .wishlist-breadcrumb {
    font-size: 13px;
  }

  .wishlist-banner-content h1 {
    font-size: 30px;
  }

  .wishlist-card-content {
    padding: 18px;
  }

  .wishlist-actions {
    flex-direction: column;
  }
}


.logo_img{
  width: 100px;
}

img.logo_img {}

.cat_home{
  border-radius: 20px;
  margin-bottom: 20px;
}





.insta_img{
  width: 100%!important;
  height: auto!important;
}


/* Tabs */
.tabs {
    display: flex;
    gap: 25px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.tabs a {
    text-decoration: none;
    color: #9b1c31;
    font-weight: 500;
    padding-bottom: 5px;
}

.tabs a.active {
    border-bottom: 2px solid #9b1c31;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.item {
    margin-bottom: 20px;
}

.item h3 {
    margin: 0;
    font-size: 18px;
    color: #9b1c31;
    font-weight: bold;
}

.item p {
    margin: 5px 0 15px;
    color: #999;
    font-size: 14px;
}

/* Responsive */
@media(max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .logo_img {
    width: 80px;
}

.col-xs-6{
    width:50%!important;
}
}

