@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Poppins:wght@300;400;500;700&display=swap");

:root {
  /* Brand Colors */
  --color-yellow: rgb(254 202 10);
  /* Gold Yellow */
  --color-orange: #ee1d23;
  --primary-light: #fef0f0;
  /* Bright Orange */
  --color-dark: #333333;
  --color-light: #ffffff;
  --primary-light: #fef0f0;
  --primary-dark: #b31014;
  --primary-color: var(--color-orange);
  /* Fonts */
  --font-family: "Segoe UI", sans-serif;
  /* ... (your brand colors, etc.) ... */
  --font-serif: "Playfair Display", serif;
  --font-sans: "Poppins", sans-serif;
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;

  /* Border radius */
  --radius-sm: 4px;
  --radius-md: 6px;
  /* Bootstrap Primary Color Overrides */
  --bs-primary: var(--color-orange) !important;
  --bs-primary-rgb: 255, 127, 0;
  /* RGB values of your custom color */
}

/* Base Styles */
body {
  font-family: var(--font-sans);
  color: var(--color-dark);
  background-color: var(--color-light);
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Custom Button Style */
.btn-custom {
  display: inline-block;
  font-family: var(--font-family);
  font-size: 1rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
}

/* Orange Button */
.btn-orange {
  background-color: var(--color-orange);
  color: var(--color-light);
}

.btn-orange:hover {
  background-color: var(--color-yellow);
  color: var(--color-dark);
}

/* Yellow Button */
.btn-yellow {
  background-color: var(--color-yellow);
  color: var(--color-dark);
}

/* Custom Outline Button Color */
.btn-outline-brand-yellow {
  --bs-btn-color: var(--color-yellow);
  --bs-btn-border-color: var(--color-yellow);
  --bs-btn-hover-color: var(--color-light);
  --bs-btn-hover-bg: var(--color-yellow);
  --bs-btn-hover-border-color: var(--color-yellow);
  --bs-btn-active-color: var(--color-light);
  --bs-btn-active-bg: var(--color-yellow);
  --bs-btn-active-border-color: var(--color-yellow);
}

.btn-outline-brand-orange {
  --bs-btn-color: var(--color-orange);
  --bs-btn-border-color: var(--color-orange);
  --bs-btn-hover-color: var(--color-light);
  --bs-btn-hover-bg: var(--color-orange);
  --bs-btn-hover-border-color: var(--color-orange);
  --bs-btn-active-color: var(--color-light);
  --bs-btn-active-bg: var(--color-orange);
  --bs-btn-active-border-color: var(--color-orange);
}

.btn-yellow:hover {
  background-color: var(--color-orange);
  color: var(--color-light);
}

/* Icon Colors */
.icon-yellow {
  color: var(--color-yellow);
}

.icon-orange {
  color: var(--color-orange);
}

/* Initial navbar */
.navbar {
  transition:
    transform 0.6s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
  transform-origin: top;
  position: relative;
}

/* Sticky header with flip animation */
.navbar.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1010;
  background-color: #f3f4f5 !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
  animation: flipDown 0.6s ease forwards;
}

.navbar .navbar-brand {
  width: fit-content;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  border-radius: 50%;
  overflow: hidden;
  z-index: 10;
  margin: 0;
}

.navbar .navbar-brand img {
  width: 100px;
  aspect-ratio: 1/1;
}

/* Flip keyframes */
@keyframes flipDown {
  0% {
    transform: rotateX(-90deg);
    opacity: 0;
  }

  60% {
    transform: rotateX(20deg);
    opacity: 1;
  }

  100% {
    transform: rotateX(0deg);
    opacity: 1;
  }
}

/* Navbar brand */
.navbar-brand {
  font-weight: bold;
  /* color: var(--color-orange) !important; */
}

/* Navbar links - desktop */
.navbar-nav .nav-link {
  position: relative;
  padding: var(--space-sm) var(--space-md);
  font-weight: 500;
  /* color: var(--color-dark) !important; */
  transition: all 0.3s ease;
  border-radius: var(--radius-md);
}

.navbar-nav .nav-link:hover {
  /* color: var(--color-orange) !important; */
}

.navbar-nav .nav-link.active {
  font-weight: bold;
  /* color: var(--color-orange) !important; */
}

/* Drawer Sidebar Styling */
.offcanvas-start {
  width: 250px;
}

/* Mobile Drawer links */
.offcanvas-body .nav-link {
  padding: var(--space-sm) var(--space-md);
  /* color: var(--color-dark) !important; */
  /* border-radius: var(--radius-md); */
  transition: all 0.3s ease;
}

.offcanvas-body .nav-link:hover {
  /* background-color: var(--color-yellow); */
  color: var(--color-orange) !important;
}

/* .offcanvas-body .nav-link.active {
font-weight: bold;
background-color: var(--color-yellow);
color: var(--color-orange) !important;
} */

/* hero section  */
/* Hero Section Styles */
.herosection {
  position: relative;
  width: 100%;
  height: 85vh;
  /* Adjust height as needed */
  background: url("../img/marahta-vivahdarbar.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (max-width: 992px) {
  .herosection {
    background: url("../img/marahta-vivahdarbar-mobile.webp");
	background-size: contain;
  }
}
.hero-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  /* background: linear-gradient(180deg, hsla(0, 0%, 59%, 0), #000000b3); */
  background: linear-gradient(180deg, hsla(0, 0%, 59%, 0), #00000045);
  z-index: 9;
}

.hero-content {
  z-index: 10 !important;
  position: relative;
  position: absolute;
  top: 65%;
  transform: translate(-50%, -50%);
  width: 90%;
  left: 50%;
  /* margin-top: 100px; */
}

.hero-content h1 {
  font-size: 3rem;
  font-family: var(--font-serif);
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  font-weight: 400;
}

.ban-search {
  padding: 30px 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  background-color: #e6e1e1;
  z-index: 11;
  border-radius: 20px;
}

.ban-search {
  padding: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1300px;
  background-color: #fffffff9;
  backdrop-filter: blur(10px);
  z-index: 11;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ban-search label {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
  color: var(--color-dark);
}

.ban-search .select2-container .select2-selection--single {
  height: 45px !important;
  border-radius: 4px !important;
  border: 1px solid #444444 !important;
  padding: 0 40px 0 12px !important;
  /* left-right padding only */
  font-size: 16px !important;
  background-color: #fff !important;
  display: flex !important;
  align-items: center !important;
  /* vertical center */
}

.filter-sidebar .select2-container .select2-selection--single {
  height: 45px !important;
  border-radius: 4px !important;
  border: 1px solid #444444 !important;
  padding: 0 40px 0 12px !important;
  /* left-right padding only */
  font-size: 16px !important;
  background-color: #fff !important;
  display: flex !important;
  align-items: center !important;
  /* vertical center */
}

.filter-sidebar
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: normal !important;
  padding-left: 0 !important;
  color: #333 !important;
}

.filter-sidebar
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100% !important;
  top: 0 !important;
  right: 10px !important;
}

.ban-search
  .select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: normal !important;
  padding-left: 0 !important;
  color: #333 !important;
}

.ban-search
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 100% !important;
  top: 0 !important;
  right: 10px !important;
}

.ban-search
  .select2-container--default.select2-container--focus
  .select2-selection--single {
  border-color: var(--color-orange) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25) !important;
}

/* Remove default blue focus outline & set orange theme */
.ban-search
  .select2-container--default.select2-container--focus
  .select2-selection--single,
.ban-search .select2-container--default .select2-selection--single:focus,
.ban-search .select2-container--default .select2-selection--single:active {
  border-color: var(--color-orange) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 102, 0, 0.25) !important;
  outline: none !important;
}

/* Also remove default blue when option is clicked */
.ban-search
  .select2-container--default
  .select2-selection--single:focus-visible {
  outline: none !important;
}

/* experiance section  */
/* Parent-scoped styling */

.shaadi-experience h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.shaadi-experience .card {
  border-radius: 15px;
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid var(--color-orange) !important;
}

.shaadi-experience .card img {
  height: 4rem;
  width: 4rem;
  object-fit: contain;
  filter: invert(15%) sepia(98%) saturate(7473%) hue-rotate(356deg)
    brightness(95%) contrast(110%);
}

.shaadi-experience .card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: #222;
}

.shaadi-experience .card p {
  font-size: 0.95rem;
  color: #666;
}

.shaadi-experience .card:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.shaadi-experience .card:hover h3 {
  /* color: var(--color-orange); */
}

.testimonial-item {
  background: #fff;
  border-radius: 12px;
  /* box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1); */
  /* padding: 20px; */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  position: relative;
  min-height: max-content;
  overflow: hidden;
  border: 1px solid #1e293b;
}

.testimonial-image {
  width: 100%;
  height: 200px;
  /* border-radius: 10px; */
  overflow: hidden;
  /* border: px solid var(--color-orange); */
  flex-shrink: 0;
}

.testimonial-item .content {
  padding: 10px 20px;
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-name {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-orange);
  margin-bottom: 6px;
}

.testimonial-location {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #555;
  flex-grow: 1;
  text-align: left;
  min-height: 80px;
  margin-bottom: 10px;
  position: relative;
}

/* Read more button */
.read-more-btn {
  background: none;
  border: none;
  color: var(--color-orange);
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  padding: 0;
  font-size: 0.95rem;
  user-select: none;
}

/* Owl nav buttons */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  position: absolute;
  top: 100%;
  margin-top: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  color: var(--color-orange);
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  color: #cc5200;
  /* background-color: transparent !important; */
}

.owl-nav button.owl-prev {
  left: 77%;
}

.owl-nav button.owl-next {
  right: 10%;
}

@media (max-width: 768px) {
  .owl-nav button.owl-prev {
    left: 40%;
  }

  .owl-nav button.owl-next {
    right: 40%;
  }
}

/* Adjust nav container */
.owl-nav {
  position: relative;
  margin-top: 40px;
  height: 0;
}

/* Responsive */

.testimonial-section h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 600;
}

.testimonial-section .owl-stage-outer {
  padding: 5px 0;
}

.testimonial-section .owl-item {
  /* margin: 10px 10px !important; */
}

.content-container p {
  font-size: 18px;
  font-weight: 400;
  color: #d2cece;
}

.conttainer {
  background-color: #00000048;
  background-image: url("https://rn53themes.net/themes/matrimo/images/about/1.jpg");
  height: 100%;
  align-content: center;
  padding: 20px;
  border-radius: 30px 5px 30px 5px;
  color: var(--color-light);
  background-blend-mode: multiply;
}

.faq-section {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  border-radius: 18px;
  /* Slightly more rounded */
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  /* Slightly more prominent shadow */
  /* Increased padding */
  padding: 45px;

  /* Increased margin */
  /* Increased margin */
  transition: all 0.3s ease;
  /* Smooth transition for potential future animations */
}

.faq-section:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  /* Slightly more intense shadow on hover */
}

.faq-section h2 {
  font-weight: 700;
  color: #2c3e50;
  /* Slightly darker and more professional heading color */
  /* margin-bottom: 40px; */
  text-align: center;
  font-size: 2.6rem;
  /* Slightly larger heading */
  position: relative;
  /* padding-bottom: 15px; */
}

.faq-section .title {
  font-family: var(--font-serif);
  margin-bottom: 15px;
}

.accordion-item {
  border: none;
  margin-bottom: 20px;
  /* Increased margin between items */
  border-radius: 12px;
  /* Consistent rounded corners */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  /* Refined shadow */
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  /* Smooth transition for hover */
}

.accordion-item:hover {
  transform: translateY(-3px);
  /* Lift effect on hover */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  /* More pronounced shadow on hover */
}

.accordion-button {
  background-color: #ffffff;
  color: #34495e;
  /* Deeper text color */
  font-weight: 600;
  font-size: 1.15rem;
  /* Slightly larger font size */
  padding: 20px 28px;
  /* Increased padding */
  border-radius: 12px;
  /* Consistent rounded corners */
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-radius 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: var(--color-orange);
  /* Accent color when open */
  color: #ffffff;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  /* Softer inner shadow */
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Adjust icon color for collapsed state */
/* .accordion-button::after {
filter: invert(25%) sepia(20%) saturate(1000%) hue-rotate(330deg) brightness(90%) contrast(80%);
transition: transform 0.2s ease, filter 0.3s ease;
} */

/* Adjust icon color for open state */
.accordion-button:not(.collapsed)::after {
  filter: invert(100%) sepia(0%) saturate(7483%) hue-rotate(244deg)
    brightness(112%) contrast(100%);
  transform: rotate(180deg);
  /* Rotate icon when open */
}

.accordion-body {
  padding: 25px 30px;
  /* Adjusted padding */
  background-color: #fcfdff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  /* Slightly more visible border */
  color: #5a6a7c;
  /* Softer body text color */
  line-height: 1.7;
  /* Increased line height for readability */
  font-size: 0.98rem;
}

.download-section {
  background: linear-gradient(135deg, #ff8e53, #fe6b8b);
  /* color: white; */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.download-section h2 {
  font-size: 2.4 rem;
  font-family: var(--font-serif);
  font-weight: 700;
}

.download-section .lead {
  font-size: 18px;
  font-weight: 400;
}

/* .download-section::before {
content: "";
position: absolute;
top: -50px;
left: -50px;
width: 200%;
height: 200%;
background: url("https://www.transparenttextures.com/patterns/cubes.png");
opacity: 0.08;
} */

.app-image {
  /* max-width: 300px; */
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(-5deg);
  transition: 0.4s ease;
}

.app-image-two {
  position: absolute;
  right: 0;
  bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transform: rotate(3deg);
  transition: 0.4s ease;
}

.app-image:hover {
  /* transform: rotate(0deg) scale(1.05); */
}

.download-btn img {
  height: 50px;
  margin: 5px;
  transition: transform 0.3s ease;
}

.download-btn img:hover {
  transform: scale(1.08);
}

.footer-section {
  /* background: linear-gradient(20deg, var(--color-orange), var(--color-yellow)); */
  background-color: #000000b3;

  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

/* Profile Card */
.profile-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.155);
  transition: transform 0.2s ease;
  border: 1px solid #a1a0a040;
  height: 100%;
}

.owl-item .profile-card {
  box-shadow: none;
}

.profile-card:hover {
  /* border-color: var(--color-yellow); */
}

.profile-card .img {
  padding: 10px 10px 0 10px;
  border-radius: 10px;
  position: relative;
}

.like-btn {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: #fff;
  /* padding: 8px 10px; */
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.like-btn:hover {
  transform: scale(1.1);
}

.profile-card img {
  border-radius: 10px;
}

.profile-img {
  /* height: 250px; */
  aspect-ratio: 1.6/1;
  object-fit: cover;
  width: 100%;
  object-position: top;
}

.profile-details h5 {
  font-weight: bold;
}

.profile-meta {
  font-size: 0.9rem;
  color: #555;
}

/* Default: stacked on mobile */
.nav-md-justified .nav-item {
  flex: 0 0 auto !important;
}

@media (max-width: 768px) {
  .nav-md-justified .nav-item {
    flex: unset;
  }

  .nav-justified .nav-item,
  .nav-justified > .nav-link {
    flex-basis: unset;
    flex-grow: unset;
    text-align: unset;
  }

  #outerTab .nav-item {
    width: 100%;
  }

  #outerTab .nav-item .nav-link {
    width: 100%;
    margin-bottom: 5px;
  }

  #outerTabContent .nav-item {
    width: 50%;
  }

  #outerTabContent .nav-item .nav-link {
    width: 100%;
    margin-bottom: 3px;
    text-align: center;
  }
}

#mobileFilter .offcanvas-body {
  max-height: 90dvh;
  overflow-y: scroll;
}

/* Filter Sidebar */
.filter-sidebar {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  top: 100px;
  border: 1px solid #a1a0a040;
  max-height: 90vh;
  overflow-y: auto;
  padding-bottom: 50px;
}

.filter-sidebar .mb-3 {
  margin-bottom: 8px !important;
}

.filter-sidebar::-webkit-scrollbar {
  width: 5px;
}

.filter-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.filter-sidebar::-webkit-scrollbar-thumb {
  background-color: #ff6600;
  /* brand orange */
  border-radius: 10px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
  background-color: #e65c00;
}

/* Offcanvas Custom Width */
.filter-sidebar .offcanvas-start {
  width: 70% !important;
}

.footer-section h5 {
  font-size: 1.1rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #fff;
}

.social-link {
  color: #fff;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-link:hover {
  transform: scale(1.2);
  color: #ffd700;
}

.footer-menu a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.footer-menu a:hover {
  color: #fff;
}

.listing-page-banner {
  /* padding: 35px 30px 38px; */
  background: url("../img/navratri-highly-detailed-door-decoration.jpg") 0px
    0px / cover no-repeat;
  /* position: relative; */
  width: 100%;
  float: left;
  text-align: center;
  background-color: #b8b4b4c9;
  background-blend-mode: multiply;
  /* margin-top: var(--mtop); */
  height: 150px;
}

.pricing-container .title {
  font-size: 2.4 rem;
  font-family: var(--font-serif);
  font-weight: 600;
}

.pricing-container .subtitle {
  font-size: 16px;
}

.pricing-container .card {
  position: relative;
  z-index: 5px;
}

.pricing-container {
  position: relative;
  background-image: url("../img/bg-image.webp");
  background-color: #00000032;
  background-blend-mode: multiply;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* background-color: white; */
}

@media (max-width: 768px) {
  .faq-section {
    padding: 0;
    background-color: transparent;
    box-shadow: none;
  }

  .pricing-container .pricingDiv::before {
    /* display: none; */
  }

  .navbar .navbar-brand img {
    width: 70px;
  }
}

.badge-custom {
  display: inline-block;
  /* background-color: var(--color-yellow); */
  background-color: var(--color-yellow);
  color: var(--color-dark);
  font-size: 0.8rem;
  padding: 5px 5px;
  border-radius: 3px;
  margin: 3px 2px;
  font-weight: 500;
}

.badge-custom:last-child {
  margin-right: 0;
}

/*  */
/* Profile Image */
.bio-section .profile-photo {
  max-width: 100%;
  width: 400px;
  aspect-ratio: 1/1.2;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: sticky;
  margin: auto;
  top: 80px;
}

@media (max-width: 768px) {
  .bio-section .profile-photo {
    top: 0px;
  }
}

.bio-section .profile-photo:hover {
  transform: scale(1.02);
}

/* Section Title */
.bio-section .section-title {
  font-weight: bold;
  /* margin-top: 1rem; */
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
  color: var(--color-orange);
  border-left: 4px solid var(--color-orange);
  padding-left: 8px;
  text-transform: uppercase;
  font-family: var(--font-serif);
}

/* Hobbies Badge */
.bio-section .hobby-badge {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 6px 14px;
  margin: 4px;
  display: inline-block;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.bio-section .hobby-badge:hover {
  background-color: var(--color-orange);
  color: white;
  border-color: var(--color-orange);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .bio-section .profile-photo {
    max-width: 100%;
    position: relative;
    margin: auto;
  }
}

@media (max-width: 576px) {
  .bio-section .section-title {
    font-size: 1.1rem;
  }
}

.bio-section .title {
  font-size: 2rem;
  font-weight: 600;
  font-family: var(--font-serif);
  margin-bottom: 12px;
}

.bio-section .bio-name {
  font-size: 23px;
  margin-bottom: 15px;
  font-weight: 600;
  font-family: var(--font-serif);
  color: var(--color-orange);
}

.bio-section .card {
  border-radius: 10px;
  border-color: #3333332a;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.bio-card {
  border: 1px solid #222;
  padding: 20px;
}

.profile-form .card {
  /* max-width: 800px; */
  /* margin: 2rem auto; */
  border-radius: 1rem;
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.form-step {
  display: none;
  /* Hidden by default */
}

.form-step .form-control,
.form-step .select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple {
  min-height: 40px;
  border-radius: 5px;
}

.form-step.active {
  display: block;
  /* Shown when active */
}

.progress-indicator {
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 2rem; */
  position: relative;
}

.progress-indicator::before {
  content: "";
  position: absolute;
  width: calc(100% - 2rem);
  height: 4px;
  background-color: #e2e8f0;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  z-index: 0;
  border-radius: 9999px;
}

.step-circle {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #64748b;
  z-index: 2;
  transition:
    background-color 0.3s,
    color 0.3s,
    transform 0.3s;
}

.step-circle.active {
  background-color: var(--color-yellow);
  /* Bootstrap primary blue */
  color: white;
  transform: scale(1.1);
}

.step-circle.completed {
  background-color: var(--color-orange);
  /* Bootstrap success green */
  color: white;
  border: 1px solid rgba(0, 0, 0, 0.45);
}

.profile-form .progress-bar {
  transition: width 0.3s ease-in-out;
  border-radius: 9999px;
  /* Rounded corners for inner bar */
}

/* Adjustments for Bootstrap form controls and descriptions */
.form-label {
  font-weight: 500;
  color: #1e293b;
  margin-bottom: 5px;
}

.form-control,
.form-select {
  border-radius: 0.5rem;
}

.description-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

/* Select2 specific styling to integrate with Bootstrap */
.select2-container--default .select2-selection--single {
  height: calc(2.25rem + 2px);
  /* Match Bootstrap form-control height */
  border: 1px solid #ced4da;
  /* Bootstrap border color */
  border-radius: 0.5rem;
  /* Match Bootstrap border-radius */
  display: flex;
  /* Align text vertically */
  align-items: center;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #495057;
  /* Match Bootstrap form-control text color */
  line-height: 1.5;
  /* Match Bootstrap form-control line-height */
  padding-left: 0.75rem;
  /* Match Bootstrap form-control padding */
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: calc(2.25rem + 2px);
  /* Match Select2 arrow height */
  right: 0.75rem;
  /* Adjust arrow position */
}

.select2-container--default.select2-container--focus .select2-selection--single,
.select2-container--default.select2-container--open .select2-selection--single {
  border-color: #86b7fe;
  /* Bootstrap focus border color */
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  /* Bootstrap focus shadow */
}

.select2-dropdown {
  border-color: #ced4da;
  /* Match Bootstrap border color */
  border-radius: 0.5rem;
  /* Match Bootstrap border-radius */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  /* Subtle shadow */
}

.select2-search--dropdown .select2-search__field {
  border-radius: 0.5rem;
  /* Match input field styling */
  border: 1px solid #ced4da;
  padding: 0.5rem;
}

.profile-slider .slick-list .slick-track {
  padding-top: 10px;
  padding-bottom: 10px;
}

.select2-results__option--highlighted.select2-results__option--selectable {
  background-color: var(--color-orange) !important;
  /* Bootstrap primary blue */
  color: white !important;
}

.profile-form .progress-bar {
  background-color: var(--color-orange) !important;
}

.profile-form .progress {
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 100%;
}

/* dashboard */
.db-sidebar {
  background: #fff;
  /* border-right: 1px solid #222; */
  /* Adjust based on topbar height */
  transition: all 0.3s ease-in-out;
  z-index: 1050;
}

.db-nav-pro {
  text-align: center;
  padding: 1.5rem 1rem;

  /* border-bottom: 1px solid #1e293b; */
}

.db-nav-pro img {
  padding: 10px 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border-radius: 10px;
  aspect-ratio: 2/1.5;
  width: 100%;
  object-fit: cover;
}

.editProfileFormHeading {
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  font-family: var(--font-serif);
}

.sub-subheding {
  font-size: 20px;
}

.profile-form.edit .form-control,
.profile-form.edit .form-control,
.profile-form.edit .select2-container--default .select2-selection--single,
.profile-form.edit .select2-container--default .select2-selection--multiple {
  min-height: 40px;
}

.main-info {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.main-info li {
  width: 135px;
  text-align: center;
  border: 1px solid #c0bcbca5;
  padding: 20px 10px;
  border-radius: 15px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.main-info img {
  width: 40px;
}

.main-info .img {
  margin-bottom: 10px;
}

.main-info li span {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 400;
  margin: 10px 0;
}

.main-info li span strong {
  display: block;
  color: var(--color-orange);
}

.contact-info i {
  border: 1px solid #33333389;
  padding: 8px;
  width: 40px;
  border-radius: 5px;
  margin-right: 10px;
  text-align: center;
  /* margin-bottom: 0; */
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.contact-info li {
  margin-bottom: 15px;
}

.familyDetails ul {
  display: flex;
  flex-wrap: wrap;
}

.familyDetails ul li {
  width: 50%;
  position: relative;
  padding-left: 20px;
}

.familyDetails ul li::before {
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  width: 15px;
  height: 15px;
  color: #000;
  line-height: 11px;
  padding: 0px;
  border-radius: 25px;
  font-weight: 600;
  left: 0px;
  top: 6px;
  text-align: center;
  font-size: 16px;
}

.plain-bg {
  height: 70px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
    padding-top: 50px;
  }

  .hero-content {
    top: 33%;
  }

  .ban-search {
    top: -50px;
  }

  .plain-bg {
    height: 130px;
  }

  .offcanvas.offcanvas-start {
    width: 280px;
    /* Match desktop sidebar width */
  }

  .hero-image-overlay {
    background-color: #000;
    height: 100%;
    opacity: 0.5;
  }

  .ban-search label {
    margin-bottom: 2px;
    margin-top: 0px;
    color: var(--color-dark);
    font-weight: 500;
  }

  .main-info {
    /* justify-content: center; */
  }

  .bio-section {
    /* margin-top: 40px !important; */
  }

  .familyDetails ul li {
    width: 100%;
  }
}

/* .navigation::after, */
.navigation::before {
  content: "";
  position: fixed;
  bottom: 0;
  right: 20px;
  /* width: 500px; */
  /* height: ; */
  background: url("../img/marigold.png") no-repeat;
  background-size: 121px;
  background-position: center right;
  z-index: 100;
}

.navigation::after {
  width: 82px;
  height: 244px;
  background-size: 90px;
  background-position: -1px 6px;
}

.navigation::before {
  width: fit-content;
  /* height: 244px; */
  background-size: 90px;
  background-position: -1px 6px;
  transform: rotate(45deg);
}

.about-banner {
  min-height: 60vh;
  align-content: center;
  background-image: url("../img/navratri-highly-detailed-door-decoration.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #00000058;
  background-blend-mode: multiply;
}

.about-banner h1 {
  font-size: 3 rem;
  font-family: var(--font-serif);
  text-align: center;
  color: var(--color-light);
  font-weight: 700;
}

.about-banner p {
  color: var(--color-light);
  text-align: center;
}

.about-container {
  background-color: #fefcf5;
}

.about-container .card img {
  width: 70px;
}

.about-container .card {
  text-align: center;
  border: none;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: 0.5s all;
}

.about-container .card:hover {
  transform: scale(1.1);
}

.about-container .card h4 {
  font-size: 20px;
  margin: 10px auto;
}

.about-container .card p {
  font-size: 15px;
  margin: 10px auto;
}

.about-content-row {
  margin-top: -110px;
}

.about-container .sec-2 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-container .sec-2 .img1 {
  position: absolute;
  width: 75%;
  height: 550px;
  object-fit: cover;
  left: 0px;
  top: 0px;
  border-radius: 15px;
}

.about-container .sec-2 .img2 {
  width: 80%;
  height: 300px;
  object-fit: cover;
  z-index: 1;
  position: relative;
  border-top-style: solid;
  border-left-style: solid;
  border-top-color: rgb(255, 255, 255);
  border-left-color: rgb(255, 255, 255);
  border-right-style: initial;
  border-right-color: initial;
  border-bottom-style: initial;
  border-bottom-color: initial;
  margin: 47% 10% 5% 15%;
  border-width: 15px 0px 0px 15px;
  border-image: initial;
  border-radius: 0px 100px 15px;
}

.about-container .sec-2 .abt-1,
.about-container .abt-2 {
  position: absolute;
}

.about-container .sec-2 .abt-1 {
  width: 100px;
  height: 100px;
  border: 7px solid var(--color-orange);
  border-radius: 50%;
  left: -39px;
  top: -32px;
  z-index: 0;
}

.about-container .sec-2 .abt-2 {
  width: 200px;
  height: 200px;
  border: 7px solid var(--color-yellow);
  border-radius: 20px;
  right: 9px;
  bottom: -4px;
}

.abt-rh-se h2 {
  font-size: 58px;
  font-weight: 700;
  padding-bottom: 10px;
  color: var(--color-orange);
  line-height: 44px;
  font-family: var(--font-serif);
}

.abt-rh-se h2 span {
  display: block;
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 45px;
  /* font-family: var(--font-sans); */
  line-height: 78px;
  padding-left: 50px;
}

.abt-rh-se p,
.abt-rh-se-1 p {
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
}

.abt-rh-se p a {
  color: var(--color-orange);
  font-weight: 600;
  font-size: 16px;
}

.abt-rh-se-1 {
  border-top: 1px solid rgb(217, 217, 217);
  margin-top: 25px;
  padding-top: 25px;
}

.abt-rh-se-2 ul {
  list-style: none;
}

.abt-rh-se-2 ul li {
  float: left;
  width: 50%;
}

.abt-rh-se-2 ul li div {
  position: relative;
}

.abt-rh-se-2 ul li div i {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 42px;
  height: 42px;
  background: #000;
  border-radius: 50%;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 9px;
  box-shadow: rgb(0 0 0 / 10%) 0px 0px 0px 8px;
  font-size: 18px;
  line-height: 25px;
}

.abt-rh-se-2 {
  float: left;
  width: 100%;
  padding-top: 30px;
}

.abt-rh-se-2 ul li div h4 {
  padding: 0px 0px 0px 60px;
  font-size: 15px;
  color: rgb(122, 122, 122);
}

.abt-rh-se-2 ul li div h4 em {
  display: block;
  font-size: 18px;
  color: rgb(0, 0, 0);
  font-weight: 600;
  padding-top: 5px;
  font-style: inherit;
}

.abt-rh-se-3 .card-1,
.abt-rh-se-3 .card-2,
.abt-rh-se-3 .card-3,
.abt-rh-se-3 .card-4 {
  position: relative;
  border: 1px solid #d7d1be;
  border-left: 0;
  padding: 20px;
}

.abt-rh-se-3 .card-4 {
  border-right: 0;
}

.abt-rh-se-3 .cr i {
  font-size: 20px;
  position: absolute;
  left: 25px;
  top: 25px;
  color: #66451c;
  border: 1px solid #b79b79;
  padding: 8px 0px;
  border-radius: 10px;
  vertical-align: middle;
  width: 38px;
  height: 38px;
  text-align: center;
  transition: all 0.4s ease;
}

.abt-rh-se-3 .cr div {
  padding-left: 55px;
}

.abt-rh-se-3 .cr h4 {
  font-weight: 700;
  font-size: 35px;
  /* color: #00306e; */
  font-family: var(--font-serif);
  margin-bottom: 6px;
}

.abt-rh-se-3 .cr span {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .abt-rh-se-2 ul li {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-container .sec-2 {
    padding-top: 30px;
  }

  .abt-rh-se h2 {
    font-size: 40px;
  }

  .abt-rh-se h2 span {
    line-height: 1;
    font-size: 30px;
  }

  .abt-rh-se-3 .card-1,
  .abt-rh-se-3 .card-2,
  .abt-rh-se-3 .card-3,
  .abt-rh-se-3 .card-4 {
    /* width: 50%; */
  }

  .abt-rh-se-3 .cr {
    margin: 3px;
    padding: 30px 10px 25px 10px;
    border: 1px solid #22222257;
  }

  .abt-rh-se-3 .cr i {
    position: relative;
    left: initial;
    top: initial;
    margin: 0 auto;
    display: table;
  }

  .abt-rh-se-3 .cr div {
    padding-left: 0;
    text-align: center;
  }
}

/* Make carousel container relative */
.vip-carousel {
  position: relative;
}

/* Owl Nav container */
.vip-carousel .owl-nav {
  position: absolute;
  top: 25%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: auto;
  /* only as high as the buttons */
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  /* only buttons clickable */
  padding: 0 5px;
}

/* Owl Carousel nav buttons */
.vip-carousel .owl-nav button.owl-prev,
.vip-carousel .owl-nav button.owl-next {
  pointer-events: all;
  /* enable click */
  position: relative;
  background: #ff6600;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  transition: 0.3s;
  margin-top: 0px;
}

/* Hover effect */
.vip-carousel .owl-nav button.owl-prev:hover,
.vip-carousel .owl-nav button.owl-next:hover {
  background: #e05500;
}

/* Left and right positioning */
.vip-carousel .owl-nav button.owl-prev {
  left: 0;
}

.vip-carousel .owl-nav button.owl-next {
  right: 0;
}

.vip-carousel .owl-nav {
  margin-top: 0px;
}

/* Items and stage */
.vip-carousel .owl-item {
  min-height: 400px;
}

.vip-carousel .owl-stage {
  height: auto;
}

/* Right arrow */
.vip-carousel .owl-nav button.owl-next {
  right: 0px;
  margin-top: 0;
  /* outside right */
}

.vip-carousel .profile-card {
  min-height: 450px;
}

/* Hover effect */
.vip-carousel .owl-nav button.owl-prev:hover,
.vip-carousel .owl-nav button.owl-next:hover {
  background: #e05500;
  color: #fff;
}

.vip-carousel .profile-card {
  min-height: 450px;
}

/* chat bot css  */
.chat-input-box {
  display: flex;
  margin-top: 10px;
}

.chat-input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 20px;
  outline: none;
}

.send-btn {
  background: #4caf50;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  margin-left: 5px;
  cursor: pointer;
}

.send-btn:hover {
  background: #45a049;
}

#chatPopup .msg {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 15px;
  margin-bottom: 8px;
  display: inline-block;
  word-wrap: break-word;
}

#chatPopup .msg-left {
  background-color: #e9ecef;
  text-align: left;
  border-bottom-left-radius: 0;
  float: left;
  clear: both;
}

#chatPopup .msg-right {
  background-color: #0d6efd;
  color: #fff;
  text-align: right;
  border-bottom-right-radius: 0;
  float: right;
  clear: both;
}

#chatPopup .card-footer {
  position: fixed;
  bottom: 20px;
  width: inherit;
}

/* Scrollbar styling */
#chatMessages::-webkit-scrollbar {
  width: 6px;
  /* Thin scrollbar */
}

#chatMessages::-webkit-scrollbar-track {
  background: red;
  /* Track color */
  border-radius: 10px;
}

#chatMessages::-webkit-scrollbar-thumb {
  background: #888;
  /* Scroll handle color */
  border-radius: 10px;
}

#chatMessages::-webkit-scrollbar-thumb:hover {
  background: #555;
  /* Darker on hover */
}

/* For Firefox */
#chatMessages {
  scrollbar-width: thin;
  /* makes scrollbar thin */
  scrollbar-color: #888 #f1f1f1;
  /* thumb color + track color */
}

.vip__profile .profile-card {
  height: auto !important;
  background-color: #f5efe7;
  /* border-color: #e65c0051; */
}

.vip__profile .profile-card img {
  border-radius: 10px;
  /* display: flex; */
  object-position: top;
}

.vip__profile .profile-img {
  aspect-ratio: 1.5/1;
  object-fit: cover;
  /* width: 70%; */
  margin: auto;
}

/* Container */
.vip__profile {
  max-height: 85vh;
  overflow-y: auto;
  padding-right: 5px;
  padding-bottom: 50px;

  /* space for scrollbar */
  scrollbar-width: thin;
  /* Firefox */
  scrollbar-color: #ee1d23 #f1f1f1;
  /* Firefox */
}

/* Chrome, Edge, Safari */
.vip__profile::-webkit-scrollbar {
  width: 8px;
}

.vip__profile::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.vip__profile::-webkit-scrollbar-thumb {
  background-color: #ff6600;
  /* brand orange */
  border-radius: 10px;
}

.vip__profile::-webkit-scrollbar-thumb:hover {
  background-color: #e65c00;
}

/* Default: normal flow (mobile & tablet) */
.vip__profile_container {
  position: static;
}

/* On large screens and above: sticky */
@media (min-width: 992px) {
  .vip__profile_container {
    position: -webkit-sticky;
    /* Safari support */
    position: sticky;
    top: 78px;
    /* distance from top */
    height: fit-content;
    z-index: 10;
  }
}

.mobile-filter-sticky {
  position: sticky;
  top: 70px;
  /* Distance from top of viewport */
  z-index: 1000;
  /* Make sure it stays above other content */
  background: #fff;
  /* Optional: avoid transparency issues */
  padding-top: 0.5rem;
  /* Optional spacing */
  padding-bottom: 0.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  /* Optional shadow */
}

/* Force show nav buttons even if Owl disables them */
.vip-carousel .owl-nav.disabled {
  display: flex !important;
  /* show buttons */
  pointer-events: all !important;
  /* make clickable */
}

.sticky-header ~ .bg-light.py-md-5.py-3 {
  margin-top: 200px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: #ff6600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.step-icon:hover {
  background: #e05500;
  transform: scale(1.1);
}

.nav-list .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: var(--secondary-color);
  /* Default link color */
  text-decoration: none;
  border-radius: 0;
  transition: all 0.2s;
  /* Smooth transition on hover/active */
  font-weight: 500;
}

.nav-list .nav-link:hover,
.nav-list .nav-link.active {
  background-color: var(--primary-light);
  /* Light primary background on hover/active */
  color: var(--primary-dark);
  /* Darker text color */
  border-left: 5px solid var(--primary-color);
  /* Highlight with primary color bar */
  padding-left: calc(1.5rem - 5px);
  /* Adjust padding to keep alignment */
}

.nav-list .nav-link i {
  width: 25px;
  /* Fixed width for icons */
  text-align: center;
  margin-right: 1rem;
  color: var(--primary-color);
  /* Icon color */
}

.nav-list .nav-link.active i {
  color: var(--primary-dark);
  /* Active icon color */
}

/* end code here for chatbot */
