:root {
  --primary-color: #af2f50;
  --primary-color-dark: #8d1b38;
  --primary-gradient: linear-gradient(90deg,rgba(162, 32, 66, 1) 0%, rgba(176, 62, 42, 1) 100%);;
  --text-dark: #222222;
  --text-light: #6B7280;
  --bg-light: #f8fafc;
  --white: #ffffff;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 0.3s ease-in-out;

  /* Fluid Font Scaling */
  --fs-h1: clamp(2rem, 3.5vw, 3.2rem);
  --fs-h2: clamp(1.8rem, 3vw, 2.6rem);
  --fs-h3: clamp(1.4rem, 2vw, 1.8rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);

  /* Section spacing */
  --section-space: clamp(3rem, 6vw, 7rem);

  --max-width: 1200px;
}
[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0); /* 🔥 reduce from 100px → 30px */
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Rethink Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}
/* @media (max-width: 768px){
  body{
  line-height: 1.3em;
  }
} */

h1,
h2,
h3,
h4,
h5,
h6,
.btn {
  font-family: "Rethink Sans", sans-serif;
  /* line-height: 1.5; */
  /* color: #0671a4; */
}

li {
  list-style: none;
}

a{
  text-decoration: none!important;
}
i{
  line-height: 0 !important;
}
.text-muted {
  opacity: 1;
  color: #595e64 !important;
}

/* Shine */
.img-shine {
  position: relative;
  overflow: hidden;
}

.img-shine::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, .4) 100%);
  transform: skewX(-25deg);
  transition: transform .10s ease;
  will-change: transform;
}

.img-shine:hover::before {
  animation: shine 1s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.img-shine img {
  width: 100%;
  display: block;
}

/*----------
 BUTTON CSS 
 -----------*/
.btn-hover {
  display: inline-block;
  text-align: center;
  border-radius: 50px !important;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 15px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color .35s ease;
}

.btn-hover::before,
.btn-hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: -100%;
  left: 0;
  background: var(--primary-color);
  z-index: -1;
  transition: all .35s ease;
}

.btn-hover::before {
  opacity: .5;
}

.btn-hover::after {
  transition-delay: .2s;
}

.btn-hover:hover {
  color: #fff;
}

.btn-hover:hover::before,
.btn-hover:hover::after {
  top: 0;
}

/*-----------------------
 PRELOADING FUNCTION CSS 
 ----------------------*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10002;
  background-color: #fee9ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

#loading-icon img {
  width: 80%;
}

.loading {
  border: 2px solid transparent;
  border-color: transparent #af2f50 transparent #af2f50;
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*================== 
SECTION TITILE CSS 
===================*/

section{
 padding: 60px 0;
}

.section-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #2d2924;
  display: inline-block;
  margin-bottom: 8px;
}

.section-title {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 600;
  color: var(--primary-color-dark);
}
@media (max-width:768px) {
  section{
    padding: 50px 10px!important; 
  }
}

/*-------------------- 
HEADER HEIGHT CONTROL 
--------------------*/

.main-header {
  /* border-bottom: 1px solid #ddd; */
  position: relative;
}

.btn-call{
  background-color: transparent;
  color: var(--primary-color);
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid var(--primary-color);
  border-radius: 50px !important;
  text-transform: uppercase;
  transition: all 0.3s ease;
  animation: pulse 1.5s infinite;
}

.btn-call i{
  color: var(--primary-color);
  margin-right: 10px;
}
.btn-call:hover i{
  color: var(--bg-light);
}
.btn-call:hover{
  background: var(--primary-color);
  color: var(--bg-light);
}
/* 1. Pulse Animation */


@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Appointment button */
.btn-appointment {
  background: var(--primary-gradient);
  color: #fff;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 50px !important;
  /* text-transform: uppercase; */
  transition: background-color 0.3s ease;
}
.btn-appointment:hover {
  background-color: var(--primary-color-dark);
  color: #fff;
}


/* TOP ROW */
.header-row {
  /* height: 90px; */
  padding: 10px;
  /* SAME HEIGHT FOR ALL ITEMS */
  display: flex;
  align-items: center;
  /* VERTICAL ALIGNMENT FIX */
  justify-content: space-between;
}

/* LOGO */
.header-logo img {
  width: 140px;
}

/* SEARCH */
.header-search {
  max-width: 650px;
  /* height: 50px; */
  border: 1px solid var(--primary-color-dark);
  background: transparent;
  border-radius: 50px;
  padding: 5px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Icon */
.header-search i {
  font-size: 22px;
  color: var(--primary-color-dark);
}

/* Input */
.header-search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  padding-left: 12px;
  color: #0c0c0c;
  font-size: 16px;
}

.header-search input::placeholder {
  color: var(--text-dark);
}

/* Button */
.search-btn {
  background: var(--primary-gradient);
  color: var(--bg-light);
  border: none;
  padding: 6px 28px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s;
  margin-left: 10px;
}

.search-btn:hover {
  background: var(--primary-color-dark);
}

.header-search input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  padding-left: 8px;
}

/* ACTION BUTTONS */
.header-actions {
  display: flex;
  gap: 10px;
}
/* 
.header-actions .btn {
  height: 42px;
  padding: 0 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
} */

/* BUTTON STYLES */
.btn.outline {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  background: #fff;
}

.btn.outline.contact {
  background: var(--primary-gradient);
  color: #fff;
  transition: all 0.45s ease;
  border: 0;
}

.btn.outline.contact:hover {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.btn.outline:hover {
  background: var(--primary-gradient);
  color: #fff;
}

/* ================= NAV ROW ================= */
.nav-row {
  position: relative;
  border-top: 1px solid #ddd;
  background: var(--primary-gradient);
  z-index: 1000;
}

.nav-row ul {
  margin: 0;
  padding: 12px 0;
  gap: 40px;
}

.nav-row a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.nav-row a:hover {
  color: #e6f607;
}

/* ================= MAIN NAV ================= */
.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-link {
  color: var(--bg-light);
  padding: 5px 0;
  text-decoration: none;
}

.main-nav .nav-link i {
  margin-right: 6px;
  font-size: 15px;
  color: var(--bg-light);
  transition: .3s;
}

.main-nav .nav-link:hover i {
  transform: translateY(-1px);
}

.nav-link:focus {
  color: #e6f607;
}

/* ================= DESKTOP DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu-custom {
  position: absolute;
  top: 45px;
  left: 0;
  margin-top: 12px;
  min-width: 250px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  padding: 10px !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(.4, 0, .2, 1);
  z-index: 999;
}

.dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom a {
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  color: #444;
  transition: 0.3s;
}

.dropdown-menu-custom a:hover {
  background: var(--primary-gradient);
  color: #ffffff;
  padding-left: 10px;
}

/* MULTI COLUMN DROPDOWN */
.dropdown-menu-custom.multi-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px 20px;
  min-width: 450px;
  padding: 15px;
}

.dropdown-menu-custom.multi-column li {
  list-style: none;
}

.dropdown-menu-custom.multi-column a {
  padding: 8px 10px;
  font-size: 14px;
  white-space: nowrap;
}

/* TOGGLE BUTTON */
.menu-toggle {
  font-size: 22px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  border-radius: 5px;
  padding: 7px;
  line-height: 1;
}
/* Mobile Menu */
.mobile-nav {
  list-style: none;
  padding: 0;
}

.mobile-nav a {
  text-decoration: none;
  color: #ffffff;
  display: block;
  padding: 10px 0;
  font-weight: 500;
}

/* Dropdown */
.mobile-dropdown .mobile-link {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 10px 0;
  font-weight: 500;
}

/* Submenu */
.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease;
  padding-left: 15px;
}

.mobile-dropdown.active .mobile-submenu {
  max-height: 500px;
}

.mobile-submenu a {
  font-size: 14px;
  color: #ffffff;
}

.offcanvas{
  background: var(--primary-color);
  color: var(--white);
  z-index: 9999999;
}
.btn-close{
  filter: invert(1) grayscale(100%) brightness(200%);
}
/* .offcanvas .btn-close{
  background-color: var(--white) !important;
} */
/* ================= RESPONSIVE (FOR OFFCANVAS) ================= */
/* Mobile Sticky Header */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
}

/* Hide desktop nav on mobile */
@media (max-width: 991px) {
  .nav-row {
    display: none;
  }

  /* Offcanvas will handle mobile menu */
}

/* Optional: show nav again on desktop */
@media (min-width: 992px) {
  .nav-row {
    display: block;
  }
  .header-row{
    padding: 5px;
  }
}
@media (max-width:576px){
  .header-logo img{
    width: 110px;
  }
}
/*----------------- 
BANNER SECTION CSS 
------------------*/

/* ================= HERO SECTION ================= */
.hero-section {
  /* background: url('../images/section-bg-image.png'); */
  background: #f8f0f2;
  object-fit: contain;
  background-position: center;
  padding: 70px 0;
  z-index: 1000;
}

/* LEFT CONTENT */
.hero-content h1 {
  font-size: 45px;
  font-weight: 700;
  color: #111;
}

.hero-content h1 span {
  color: var(--primary-color);
  transition: all 0.3s ease;
  display: inline-block;
  min-width: 220px; /* adjust based on longest text */
}

.hero-content p {
  margin: 20px 0 30px;
  font-family: "Inter", sans-serif;
  color: #555;
  max-width: 520px;
}

/* BUTTON */
.hero-btn {
  padding: 10px 28px;
  font-weight: 600;
  gap: 10px;
  text-decoration: none;
}


/* REVIEWS */
.review-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img,
.avatars .count {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.count {
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.review-text strong {
  font-size: 20px;
  color: var(--primary-color);
}

.review-text span {
  display: block;
  font-size: 14px;
  color: #666;
}

/* RIGHT SIDE */
.hero-images {
  position: relative;
}

.top-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.stat-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
}

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

.overlay-text {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
  font-size: 14px;
}

.overlay-text strong {
  font-size: 24px;
  display: block;
}

/* MAIN IMAGE */
.main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.main-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.quote-badge {
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: #f8f0f2;
  color: #000;
  padding: 7px 24px;
  border-radius: 5px;
  font-weight: 600;
  white-space: nowrap;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {

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

  .hero-images {
    margin-top: 50px;
  }

  .main-image img {
    height: 360px;
  }
}

@media (max-width: 576px) {

  .hero-section {
    padding: 60px 0;
  }

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

  .top-cards {
    flex-direction: column;
  }

  .stat-card img {
    height: 120px;
  }

  .main-image img {
    height: 300px;
  }

  .quote-badge {
    font-size: 14px;
    padding: 10px 18px;
  }
}


/*-------------------------
 YT SHORTS VIDEOS SECTION 
 -------------------------*/
.yt-video-section {
  background: #ffffff;
  padding: 80px 0;
}

.video-card {
  display: block;
  text-decoration: none;
  color: #111;
  padding: 10px;
}

.thumb {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.thumb img {
  width: 100%;
  /* height: 280px; */
  object-fit: cover;
  transition: transform .4s ease;
}

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

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  opacity: 0;
  transition: .3s ease;
}

.video-card:hover .play-btn {
  opacity: 1;
}

.view-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, .9);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.video-title {
  margin-top: 12px;
  font-weight: 600;
  text-align: center;
}

/* Center Active Item Zoom */
.owl-item.active.center .thumb img {
  transform: scale(1.12);
}



/* --------------------
FEATURES SECTION CSS
---------------------- */

.features-section {
  background: var(--primary-gradient);
  padding: 45px 20px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: #fff;
}

.icon-box {
  width: 52px;
  height: 52px;
  background: #ffffff;
  color: #af2f50;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.feature-item h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-item p {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 0;
}


/*=======================
 OUR SERVICE SECTION CSS 
 =======================*/

 .our-services {
  background: url("../images/services-bg.png") no-repeat;
  object-fit: contain;
  background-size: cover;
  background-position: center;
  position: relative;
}


/* Card */
.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Image Box */
.our-service-img {
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  display: inline-block;
}

.our-service-img img {
  max-width: 120px;
  height: auto;
}

/* Title */
.service-card h5 {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Text */
.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/*------------------
 ABOUT SECTION CSS 
-------------------*/

.about-section {
  background: #ffffff;
  padding: 80px 0;
}

.about-section .about-img {
  border-radius: 10px;
  /* border: 3px solid var(--primary-color); */
}

.about-section .about-divider {
  border-top: 3px solid #d3d2d2;
}

.about-section .about-content h4 {
  font-size: 29px;
}

.about-section .about-content p {
  font-size: 17px;
}

.about-counter-modern {
  margin-top: 35px;
  background: var(--primary-color);
  padding: 20px;
  border-radius: 20px 0 20px 0;
}

.about-section .counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
  text-align: center;
}


.about-section .counter-item h3 {
  font-size: 46px;
  font-weight: 500;
  color: var(--bg-light);
  margin: 0;
}

.about-section .counter-item p {
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 5px;
  color: var(--bg-light);
}

/* Responsive */
@media (max-width: 991px) {

  .about-section .about-counter-modern {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .about-section .counter-grid {
    grid-template-rows: 1fr;
    gap: 25px;
  }
  .about-section .counter-item p{
    font-size: 13px;
  }
  .about-section .counter-item h3{
    font-size: 25px;
  }
  .about-section .about-counter-modern {
    text-align: center;
  }
}

/*------------------ 
SERVICES SECTION CSS
------------------- */


/* .services-section {
  padding: 80px 0;
  background: #fdf8f4;
}

.services-overlay {
  background: url("../images/your_path_graphic.png") no-repeat left top;
  background-repeat: no-repeat;
}

.services-divider {
  border-top: 3px solid #d3d2d2;
}

.service-card {
  background: #f8b1c3;
  border-radius: 30px 0 30px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.service-card.active {
  background: var(--primary-color);
  color: #fff;
}
.service-card.active h4{
  color: #fff;
}
.service-card.active p{
  color: #fff;
}

.service-card {
  --shadow-color: hsl(186, 67%, 18%, 1);
}

.service-card:hover {
  filter: drop-shadow(1px 2px 8px var(--shadow-color));
}

.service-card h4 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.service-card p {
  font-size: 15px;
  color: #000;
  margin: 15px 0 25px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: transparent;
  border-bottom: none;
}

.arrow-btn {
  width: 48px;
  height: 48px;
  background: var(--primary-color);
  color: #ffffff;
  border-radius: 50%;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all .3s ease-in-out;
}

.arrow-btn.active {
  background: #ffffff;
  color: var(--primary-color);
}

.service-card:hover .arrow-btn.active {
  background: transparent;
  transform: scale(1);
  color: #ffffff;
  border: 2px solid #ffffff;
}

.service-card:hover .arrow-btn {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.card-img {
  margin-top: auto;
  border-radius: 20px;
  overflow: hidden;
}

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

@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }

  .section-desc {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .service-card h4 {
    font-size: 24px;
  }

  .card-img img {
    height: 170px;
  }
} */


/*--------------------- 
TESTIMONIAL SECTION CSS
---------------------- */

.testimonial-section {
  background: #f7f5f1;
  padding: 80px 0;
}

/* .section-head span {
  font-size: 12px;
  letter-spacing: 2px;
  color: #aaa;
}

.section-head h2 {
  font-size: 36px;
  margin-top: 8px;
} */

/* Rating Card */
.rating-card {
  background: #fff;
  border-radius: 30px 0 30px;
  padding:50px 35px;
  height: 100%;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.rating-card h1 {
  font-size: 65px;
  font-weight: 700;
}

.rating-card p {
  font-size: 14px;
  color: #777;
}

.rating-card .googleImg{
  width: 120px;
}
/* Custom Nav Buttons */
.owl-nav-controls {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.owl-nav-controls button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #fccece;
  background: #fff;
  font-size: 20px;
  transition: 0.3s;
}

.owl-nav-controls button:hover {
  background: var(--primary-color);
  color: #fff;
  border-color: #4d7c78;
}

/* Testimonial Card */
.testimonial-card {
  background: #fff;
  border-radius: 30px 0 30px;
  padding: 50px 40px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.quote {
  font-size: 60px;
  color: #4d7c78;
  line-height: 1;
}

.testimonial-card p {
  font-size: 16px;
  color: #444;
}

.testimonial-card h6 {
  margin-top: 40px;
  font-size: 15px;
}

.testimonial-card h6 span {
  color: #999;
}

/* Owl dots disable */
.owl-dots {
  display: none;
}

/* Mobile Responsive */
@media(max-width: 768px) {

  .rating-card {
    padding: 40px 25px;
  }

  .testimonial-card {
    padding: 40px 25px;
  }

  .testimonial-section {
    padding: 50px 0;
  }

}


/*------------------- 
CONDITON SECTION CSS 
-------------------*/

.conditions-section {
  background: #f8b1c3;
  overflow-x: hidden;
}

.conditions-container {
  background: url(../images/bg-2-01.png) no-repeat center;
  object-fit: cover;
  background-position: left;
}

.conditions-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.conditions-content h2 {
  font-size: 45px;
  margin: 15px 0;
  color: var(--primary-color-dark);
}

.conditions-content p {
  font-size: 15px;
  color: #0b0b0b;
  margin-bottom: 25px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.tag-list span {
  background: #fff;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .05);
}

/* Body Wrapper */
.body-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.body-wrapper img {
  width: 70%;
  display: block;
}

/* Dots */
.dot {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--primary-color-dark);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(47, 156, 149, .25);
  animation: pulse 1.8s infinite;
}

/* Tooltip */
.tooltip-box {
  position: absolute;
  background: #fff;
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.4;
  max-width: 230px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .3s;
  z-index: 5;
}

/* Positions */
.dot-shoulder {
  top: 15%;
  left: 45%;
}

.dot-back {
  top: 36%;
  left: 50%;
}

.dot-knee {
  top: 60%;
  left: 33%;
}

.dot-foot {
  top: 85%;
  left: 70%;
}

/* Hover Effect */
.dot:hover~.tooltip-box {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(156, 47, 72, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(156, 47, 72, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(156, 47, 78, 0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .conditions-content {
    padding: 20px;
  }

  .conditions-content h2 {
    font-size: 20px;
  }
}



/*--------------- 
CTA SECTION CSS 
----------------*/

/* SECTION */
.cta-exact {
  padding: 80px 0;
}

/* MAIN BOX */
.cta-box {
  background: #f8b1c3;
  /* border-radius: 30px 0 30px; */
  padding: 0 80px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

/* RIGHT BACKGROUND SYMBOL */
.cta-box::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 450px;
  height: 450px;
  background: url("../images/bg-shape.png") no-repeat center;
  background-size: contain;
  opacity: 0.12;
}

/* IMAGE */
.cta-image img {
  max-width: 260px;
  border-radius: 30px;
}

/* CONTENT */
.cta-content {
  color: var(--primary-color);
  max-width: 650px;
}

.cta-top {
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 12px;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 17px;
  margin-bottom: 35px;
  max-width: 520px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 991px) {
  .cta-box {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }

  .cta-box::after {
    display: none;
  }

  .cta-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .cta-content h2 {
    font-size: 26px;
  }

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

/* ---------------- 
FOOTER SECTION CSS 
------------------*/

.footer-section {
  background: #0b1b2b;
  color: #ccc;
  padding: 60px 0 20px;
}

/* Logo */
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

/* Text */
.footer-section p {
  font-size: 14px;
  line-height: 1.7;
}

/* Titles */
.footer-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: var(--primary-color);
}
.footer-contact-box a{
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}
.footer-contact-box a:hover{
 color: var(--primary-color);
}

/* Social */
.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  border: 1px solid #333;
  padding: 8px 10px;
  border-radius: 6px;
  transition: 0.3s;
}
.social-icons a:hover {
  background: var(--primary-color-dark);
}

/* Contact */
.footer-contact-box {
  margin-bottom: 15px;
}
.footer-contact-box i {
  color: var(--primary-color);
  margin-right: 8px;
  transition: .3s all;
}

/* Branch */
.branch-section {
  border-top: 1px solid #1f2f40;
  padding-top: 20px;
}
.branch-section h6 {
  color: #fff;
  margin-bottom: 10px;
}
.branch-section a{
  color: #bbb;
  text-decoration: none;
  transition: 0.3s;
}
.branch-section a:hover{
  color: var(--primary-color);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1f2f40;
  padding-top: 15px;
  font-size: 14px;
}
.footer-bottom a {
  color: #bbb;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    text-align: center;
  }
}

/*----------------------- 
PAGE HEADER SECTION CSS 
------------------------*/

.page-header {
  background: #fff8f3;
  padding: 0 !important;
}

.page-header-box {
  background: #ffffff;
  padding: 50px 20px;
}

.page-header-box h1 {
  font-size: 45px;
  font-weight: 500;
  color: #2f2f3a;
  margin-bottom: 10px;
}

.page-header-box p {
  font-size: 16px;
  color: #6c6c78;
  margin-bottom: 0;
}

.page-header-box span {
  margin: 0 6px;
  color: #9a9a9a;
}

/* Responsive */

@media (max-width: 992px) {
  .page-header-box {
    padding: 40px 20px;
  }

  .page-header-box h1 {
    font-size: 46px;
  }
}

@media (max-width: 576px) {
  .page-header-box {
    padding: 30px 15px;
    border-radius: 24px;
  }

  .page-header-box h1 {
    font-size: 34px;
  }
}


/* --------------------- 
BACK TO TOP BUTTON CSS 
------------------------*/

.back-top {
  position: fixed;
  bottom: 0;
  border-radius: 10px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: rgb(175 47 80);
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  z-index: 9;
  opacity: 0;
  visibility: hidden;
}

.back-top-show {
  bottom: 20px;
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  background: rgb(107, 21, 43);
}

.back-top svg {
  position: absolute;
  inset: 0;
}

.up-arrow {
  position: absolute;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
}

/*---------------------- 
ABOUT MODERN SECTION CSS 
-----------------------*/

.about-modern {
  background: #fdf8f4;
}

.about-heading .sub-title {
  font-size: 13px;
  letter-spacing: 1.8px;
  font-weight: 600;
  color: #0671a4;
  display: inline-block;
  margin-bottom: 12px;
}

.about-heading h2 {
  max-width: 900px;
  margin: auto;
  font-size: 32px;
  line-height: 1.45;
  font-weight: 600;
  color: #0f172a;
}

.about-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, .12);
}

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

.point-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #374151;
}

.point-item i {
  color: var(--primary-color);
  font-size: 18px;
}

/* Responsive */

@media (max-width: 991px) {
  .about-heading h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .about-heading h2 {
    font-size: 22px;
  }

  .point-item {
    justify-content: flex-start;
  }
}


/*---------------------- 
COMMITMENT SECTION CSS 
------------------------*/

.commitment-section {
  background: #ffffff;
  padding: 80px 0;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Image */

.commitment-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  text-align: center;
}

.experience-badge h3 {
  font-size: 36px;
  color: #5a4768;
  margin: 0;
  font-weight: 700;
}

.experience-badge p {
  font-size: 14px;
  margin: 0;
  color: #666;
}

/* Content */

.description {
  color: #555;
  font-size: 16px;
  max-width: 520px;
}

/* Feature Box */

.commitment-feature-box {
  display: flex;
  margin: 30px 0;
  border-radius: 18px;
  overflow: hidden;
}

.commitment-feature {
  flex: 1;
  padding: 22px;
}

.commitment-feature.light {
  background: #fde7d7;
}

.commitment-feature.dark {
  background: #dce8ec;
}

.commitment-feature .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.commitment-feature h4 {
  margin: 5px 0;
  font-size: 18px;
}

.commitment-feature p {
  font-size: 14px;
  color: #555;
}

/* Points */

.points {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.points li {
  margin-bottom: 10px;
  color: #444;
  font-size: 15px;
}

/* Responsive */

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

}

@media (max-width: 576px) {
  .commitment-section {
    padding: 60px 0;
  }

  .commitment-feature-box {
    flex-direction: column;
  }
}

/*---------------------- 
SHASTI CARE SECTION CSS 
-----------------------*/

.shasti-care-section {
  background: #f0fcfe;
  padding: 90px 0;
}

.care-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT SIDE */

.care-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.image-box {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.image-box.large {
  grid-row: span 2;
}

.image-box.wide {
  grid-column: span 2;
}

.info-box {
  background: #dce8ec;
  border-radius: 22px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-box h2 {
  font-size: 52px;
  margin: 0;
  color: #1f2937;
}

.info-box p {
  font-size: 15px;
  letter-spacing: 1px;
  color: #555;
}

.info-box h5 {
  /* margin-top: 15px; */
  font-size: 16px;
  color: #5a4768;
  font-weight: 600;
}


.care-right p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  max-width: 520px;
}

blockquote {
  margin: 30px 0;
  font-size: 20px;
  font-style: italic;
  color: #4b5563;
}

.divider {
  width: 100%;
  height: 1px;
  background: #e5e7eb;
  margin: 30px 0;
}

/* FEATURES */

.shasti-features-row {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.shasti-feature-item {
  font-size: 13px;
  color: #444;
  font-weight: 600;
}

/* RESPONSIVE */

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

  .care-left {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 576px) {
  .shasti-care-section {
    padding: 60px 0;
  }

  .care-left {
    grid-template-columns: 1fr;
  }

  .image-box.large,
  .image-box.wide {
    grid-column: span 1;
  }

  blockquote {
    font-size: 16px;
  }

  .shasti-features-row {
    flex-direction: column;
    gap: 12px;
  }
}

/*===================== 
LEADERSHIP SECTION CSS 
======================*/

.leadership-section {
  padding: 80px 0;
  background: #f9f7f5;
}

.leader-box {
  margin-bottom: 50px;
}
.leader-card:hover .team-social{
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}
.leader-img img {
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.leader-content {
  padding: 20px;
}

.leader-role {
  color: #b02a4a;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.leader-content h3 {
  font-size: 32px;
  margin: 10px 0 0 0;
  color: #222;
}
.leader-edu{
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}
.leader-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.leader-points {
  list-style: none;
  padding: 0;
}

.leader-points li {
  margin-bottom: 8px;
  font-size: 14px;
}
.leader-box.reverse {
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .leader-content {
    text-align: center;
  }
}
@media (max-width: 567px) {
  .leadership-section {
    padding: 60px 0;
  }
}

/* -------------- 
TEAM SECTION CSS 
----------------*/

.shasti-team-section {
  background: #f9f7f5;
  padding: 80px 0;
}

/* Headings */

.team-subtitle {
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #8b6c4f;
  display: inline-block;
  margin-bottom: 8px;
}

.team-title {
  font-size: 42px;
  line-height: 1.25;
  font-weight: 600;
  color: #1f2937;
}

/* Team Card */

.team-card {
  background: transparent;
  border-radius: 22px;
  transition: 0.4s ease;
}

.team-img {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.team-img img {
  width: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

/* Hover Effects */

.team-card:hover img {
  transform: scale(1.05);
}

.team-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 15px) scale(0.9);
  background: var(--primary-color-dark);
  padding: 10px 16px;
  border-radius: 50px;
  display: flex;
  gap: 14px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}

/* On hover */

.team-card:hover .team-social {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.team-social a {
  color: #fff;
  font-size: 15px;
  transition: 0.3s;
}

.team-social a:hover {
  transform: scale(1.15);
}

/* Info */

.team-info {
  padding-top: 22px;
}

.team-info h5 {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 5px;
}

.team-info p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}

/* Responsive */

@media (max-width: 992px) {
  .team-title {
    font-size: 32px;
  }

  .team-img img {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .shasti-team-section {
    padding: 60px 0;
  }

  .team-title {
    font-size: 26px;
  }

  .team-img img {
    height: 330px;
  }
}

/*-------------------- 
WHY SHASTI SECTION CSS 
--------------------- */

.why-shasti-section {
  position: relative;
  padding: 100px 0;
  background: url("../images/bg-img.jpg") center / cover no-repeat;
  overflow: hidden;
}

.feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.75));
  z-index: 0;
}

.why-shasti-section .container {
  z-index: 1;
}

/* Headings */

.section-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--primary-color-dark);
  margin-bottom: 10px;
}



/* Feature Cards */

.why-shasti-card {
  height: 100%;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  text-align: center;
  transition: all 0.35s ease;
}

.why-shasti-card i {
  font-size: 38px;
  color: #ff1751;
  margin-bottom: 15px;
}

.why-shasti-card h5 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.why-shasti-card p {
  color: #d9ecf7;
  font-size: 14px;
  margin: 0;
}

/* Hover */

.why-shasti-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(255, 255, 255, 0.18);
}

/* Stats */

.stats-row h3 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.stats-row p {
  color: #cceaff;
  margin: 0;
  font-size: 15px;
}

/* Responsive */

@media (max-width: 991px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .why-shasti-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 26px;
  }
}

/*---------------------------- 
SERVICE DETAILS SECTION CSS
----------------------------- */

.service-details-section {
  background: #faf7f3;
}

/* Sidebar */
.service-sidebar {
  top: 50px;
}

.sticky-column-top {
  position: sticky;

}

/* Box */
.service-box {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.box-title {
  background: var(--primary-color);
  color: #fff;
  padding: 20px;
  border-radius: 14px 14px 0 0;
  font-size: 16px;
  margin-bottom: 0;
}

.service-list {
  list-style: none;
  padding: 22px;
  margin: 0;
}

.service-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 6px;
  border-bottom: 1px solid #eee;
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.service-list li a:hover {
  color: #08393f;
  transform: translateX(5px);
}

.view-list{
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
  transition: all .3s ease;
}

.extra-item {
  display: none;
  transition: transform .10s ease;
}

.view-more-btn {
  margin-bottom: 10px;
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
}

/* Contact Box */
.contact-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: url('../images/contact.png') center/cover;
  min-height: 260px;
}

.contact-box .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(175, 47, 79, 0.674), rgb(250 123 123 / 28%));
}

.contact-box .content {
  position: relative;
  color: #fff;
  padding: 28px;
  text-align: center;
}

.call-btn {
  display: inline-block;
  margin-top: 15px;
  background: #fff;
  color: #0671a4;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn:hover {
  background: #0671a4;
  color: #fff;
}

/* Right Content */
.service-content h2 {
  font-weight: 700;
}

.service-img img {
  border-radius: 18px;
}

.service-points {
  padding: 0;
  list-style: none;
}

.service-points li {
  margin-bottom: 10px;
  font-weight: 500;
}

.service-points i {
  color: #0671a4;
  margin-right: 8px;
}

.service-design-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 50px 0;
}

.service-design-text h2,
.service-design-bottom h2 {
  /* font-size:40px; */
  line-height: 1.2;
  margin-bottom: 15px;
}

.service-design-text p {
  color: #666;
  margin-bottom: 25px;
}

.service-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-check-list li {
  padding-left: 32px;
  margin-bottom: 8px;
  position: relative;
  font-weight: 500;
}

.service-check-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-color);
}

.service-design-image video {
  width: 100%;
  border-radius: 16px;
}

.service-design-bottom {
  margin-bottom: 50px;
  max-width: 900px;
}

.service-design-bottom .desc {
  margin-bottom: 35px;
  color: #666;
}

.service-point {
  border-bottom: 1px solid #ddd;
  margin-top: 25px;
}

.service-point h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

/* Responsive */

@media(max-width:992px) {
  .service-design-top {
    grid-template-columns: 1fr;
  }

  .service-design-text h2,
  .service-design-bottom h2 {
    font-size: 30px;
  }
}

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

.faq-content {
  background: #fffaf5;
}

.section-tag {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0671a4;
  font-weight: 600;
}

.custom-accordion .accordion-item {
  border: 0;
  margin-bottom: 25px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.custom-accordion .accordion-button {
  font-weight: 600;
  padding: 22px;
  background: #fff;
  border: none;
  box-shadow: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--primary-color), #43b1c6);
  color: #fff;
}

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

.custom-accordion .accordion-body {
  background: #fff;
  color: #555;
  padding: 18px 22px;
  line-height: 1.7;
}


/*------------------------
 SHASTI VALUE SECTION CSS 
 ------------------------*/

/*------------------------
 CONTACT US SECTION CSS 
 ------------------------*/

.contact-ui {
  background: #fffaf6;
}

/* Left Content */

.contact-badge {
  font-size: 13px;
  letter-spacing: 2px;
  color: #6f5d53;
  display: inline-block;
  margin-bottom: 12px;
}

.contact-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 18px;
}

.contact-desc {
  font-size: 16px;
  color: #555;
  max-width: 520px;
  margin-bottom: 32px;
}

.contact-image img {
  width: 100%;
  height: 250px;
  border-radius: 22px;
  object-fit: cover;
}

/* Info Cards */

.info-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 30px 26px;
  height: 100%;
}

.info-card:hover {
  background: #e6f0f4;
}

.info-card i {
  font-size: 40px;
  margin-bottom: 18px;
  display: inline-block;
  color: #444;
}

.info-card h5 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.info-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}


/* Responsive */

@media (max-width: 992px) {
  .contact-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .contact-title {
    font-size: 30px;
  }
}

/*-----------------------
 SHASTI CONTACT FORM CSS 
 -----------------------*/

.shasti-form-section {
  background: #fffaf6;
}

.shasti-form-wrapper {
  border-radius: 28px;
  overflow: hidden;
  background: #fdecdc;
}

/* Form Area */

.shasti-form {
  background: #fce7e7;
}

.form-title {
  font-size: 42px;
  font-weight: 600;
  color: #2c2c34;
}

.custom-input,
.custom-textarea, 
.custom-select {
  border: 1px solid #cecece !important;
  border-radius: 14px !important;
  padding: 13px 18px !important;
  font-size: 15px !important;
  background: #fff !important;
}

.custom-input::placeholder,
.custom-textarea::placeholder, 
.custom-select::placeholder {
  color: #8e8d8d!important;
}

.custom-input:focus,
.custom-textarea:focus,
.custom-select:focus {
  box-shadow: none !important;
  border: 1px solid var(--primary-color-dark) !important;
}

/* Submit Button */

.submit-btn {
  background: var(--primary-color) !important;
  color: #fff !important;
  padding: 14px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  transition: all .5s ease;
  border: 0;
}

.submit-btn:hover {
  background: var(--primary-color-dark)!important;
  transform: scale(1.02);
}

/* Map */

.shasti-map iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

/* Responsive */

@media (max-width: 992px) {
  .form-title {
    font-size: 34px;
  }

  .shasti-map iframe {
    min-height: 350px;
  }
}

@media (max-width: 576px) {
  .form-title {
    font-size: 28px;
  }

  .shasti-form {
    padding: 25px !important;
  }
}

/*------------------- 
BOOK APPOINTMENT CSS 
---------------------*/

.book-appointment-section{
  background:#fcf5ef;
  padding:80px 0;
}

/* IMAGE CARD */
.appointment-card{
  position:relative;
  border-radius:25px;
  overflow:hidden;
}

.appointment-card img{
  width:100%;
  border-radius:25px;
}

.appointment-overlay{
  position:absolute;
  left:20px;
  right:20px;
  bottom:20px;
  background:rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  border-radius:18px;
  padding:18px 25px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  box-shadow:0 12px 35px rgba(0,0,0,.25);
}

/* INFO BOX */
.overlay-box{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
}

.overlay-box i{
  font-size:26px;
  color:#fff;
}

/* TEXT */
.overlay-box span{
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  opacity:.85;
}

.overlay-box h6{
  margin:0;
  font-size:15px;
  font-weight:600;
}

/* DIVIDER */
.overlay-divider{
  width:1px;
  height:38px;
  background:rgba(255,255,255,.35);
}


/* FORM */
.gender-group .form-check-input{
  cursor: pointer;
}

.gender-group .form-check-label{
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.custom-radio .form-check-input:checked{
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* RESPONSIVE */
@media(max-width:576px){
  .appointment-overlay{
    flex-direction:column;
    text-align:center;
    gap:12px;
  }

  .overlay-divider{
    width:50%;
    height:1px;
  }
}

/*-------------------- 
LOCATION SECTION CSS 
---------------------*/
.locations-section {
  padding: 80px 0 ;
  background: #E4DBDB;
background: linear-gradient(80deg, rgba(228, 219, 219, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.map-wrapper {
  position: relative;
  /* max-width: 1200px; */
  margin: auto;
}

.world-map {
  width: 100%;
  display: block;
}

/* DOT */
.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  background: #b22b5d;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(178, 43, 93, 0.25);
  animation: pulse 1.8s infinite;
}

/* CARD */
.location-card {
  position: absolute;
  top: -75px;
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 170px;
  box-shadow: 0 12px 30px rgba(0,0,0,.15);
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
  z-index: 10;
}

.location-card img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.location-card h6 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.location-card p {
  margin: 0;
  font-size: 15px;
  color: #777;
}

/* SHOW ON HOVER */
.map-dot:hover .location-card {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* DOT POSITIONS */
.dot-1 { top: 67%; left: 61%; }  /* /* Mauritius */
.dot-2 { top: 49%; left: 69%; }  /* India */
.dot-3 { top: 56%; left: 72%; }  /* Maldives */

/* PULSE */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(178,43,93,.4); }
  70% { box-shadow: 0 0 0 14px rgba(178,43,93,0); }
  100% { box-shadow: 0 0 0 0 rgba(178,43,93,0); }
}

.card-location {
  background: #fff;
  border-radius: 18px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,.12);
  transition: .3s ease;
  height: 100%;
}

.card-location:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.18);
}

.card-location img {
  width: 140px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
}

.location-info h3 {
  font-size: 36px;
  font-weight: 800;
  color: #b52b4b;
  margin: 0;
}

.location-info h5 {
  font-size: 22px;
  font-weight: 700;
  color: #b52b4b;
  margin-bottom: 6px;
}

.location-info p {
  font-size: 15px;
  color: #222;
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .card-location {
    flex-direction: column;
    text-align: center;
  }

  .location-flag img {
    width: 120px;
    height: 110px;
  }

  .location-info h3 {
    font-size: 28px;
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .location-card {
    min-width: 140px;
    padding: 8px 12px;
  }

  .location-card h6 { font-size: 14px; }
  .location-card p  { font-size: 12px; }
}

/*========================
CAREER BANNER SECTION CSS 
==========================*/

.career-banner-img{
 width: 100%;
 height: auto;
 object-fit: cover;
}


/*========================
CAREER MODEL CSS 
==========================*/
.career-modal {
  border-radius: 15px;
  z-index:99999
}

.career-modal .modal-header {
  background: #8d1b38;
  color: #fff;
}

.career-modal .btn-primary {
  background: #8d1b38;
  border: none;
}


/*================= 
CAREER SECTION CSS 
==================*/

.career-section {
  background: #f9fafb;
}

/* Heading */
.career-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-color);
}

.career-subtitle {
  color: #555;
  margin-top: 10px;
}

/* Select */
.location-select {
  border-radius: 10px;
  padding: 10px;
}

/* Job Card */
.job-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  margin-bottom: 20px;
  transition: 0.3s;
}

.job-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

/* Header */
.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.job-header h6{
  margin: 0;
}
/* Location */
.location-badge {
  background: #f1f3f5;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

/* Meta */
.job-meta {
  font-size: 14px;
  color: #777;
  display: flex;
  gap: 20px;
}

/* Mobile Fix */
@media (max-width: 768px) {
  .career-title {
    font-size: 28px;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .location-badge {
    margin-top: 5px;
  }
}


/*====================== 
WHY CHOOSE SECTION CSS 
=====================*/

.why-choose {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.7)),
              url('../images/why-bg.png'); /* replace with your image */
  background-size: cover;
  background-position: center;
  color: #fff;
}

.why-section-title {
  font-size: 40px;
  font-weight: 700;
}

/* Layout */
.why-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Card */
.why-card {
  width: 180px;
  text-align: center;
}

/* Icon Circle */
.icon-circle {
  width: 90px;
  height: 90px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4d4d, #ff7a7a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  position: relative;
  animation: float 3s ease-in-out infinite;
}

/* Glow Ring */
.icon-circle::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border: 2px dashed rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: rotate 10s linear infinite;
}

/* Text */
.why-card p {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 500;
}


/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
/* Responsive */
@media (max-width: 992px) {
  .why-row {
    gap: 20px;
  }

  .why-card{
    width: 140px;
  }

  .icon-circle {
    width: 70px;
    height: 70px;
    font-size: 22px;
  }
}


/*====================== 
CLIENT LOGO SECTION CSS 
=====================*/

.clients-section {
  background: #f8f9fa;
}

/* Card */
.client-card {
  min-width: 180px;
  height: 100px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.client-card img {
  max-height: 80px;
  transition: 0.3s;
}

.client-card:hover img {
  filter: grayscale(100%);
}

/* ================= MARQUEE ================= */
.marquee {
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scrollMarquee 20s linear infinite;
}

/* Smooth Infinite Animation */
@keyframes scrollMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}


/*==================== 
FRANCHISEE BANNER CSS 
=====================*/

.franchisee-banner {
  position: relative;
  height: 90vh;
  background: url('../images/franchise.webp') no-repeat center/cover;
  display: flex;
  align-items: center;
  color: #8d1b38;
}

/* Content */
.franchisee-banner-content {
  position: relative;
  max-width: 600px;
  z-index: 2;
}

/* Heading */
.franchisee-banner-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

/* Text */
.franchisee-banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
  line-height: 1.6;
  opacity: 0.9;
}


/*===================
 FRANCHISEE LOGO CSS 
 ==================*/

 .brand-logo-section {
  background: #f8f9fa;
}

.brand-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo-box img {
  max-width: 70%;
  object-fit: contain;
  transition: 0.3s;
}

.brand-logo-box img:hover{
  filter: grayscale(100%);
}

/* Hover effect */
.brand-logo-box img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}


/*====================== 
WHY INVEST SECTION CSS 
=======================*/

.why-invest {
  background: #f9fafc;
}

/* Heading */
.why-invest-title {
  font-size: 34px;
  font-weight: 700;
}

.why-invest-subtitle {
  color: #666;
  font-size: 15px;
}

/* List */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-list li {
  font-size: 15px;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #333;
}

/* Tick Icon */
.why-list i {
  color: #28a745;
  font-size: 18px;
  margin-top: 2px;
}

/* Image */
.why-image img {
  max-width: 80%;
}

/* Responsive */
@media (max-width: 991px) {
  .section-title {
    font-size: 26px;
  }

  .why-image img {
    max-width: 100%;
  }
}


/*==================== 
FRANCHISE BENIFIT CSS 
=====================*/

.franchise-benefits {
  background: #f8f9fb;
}

/* Card */
.benefit-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: 0.4s ease;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Icon Circle */
.benifit-icon-box {
  width: 80px;
  height: 80px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4d4d, #ff7a7a);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.6s ease;
}

/* Icon Image */
.benifit-icon-box img {
  width: 35px;
  transition: 0.6s ease;
}

/* Hover Effect */
.benefit-card:hover .benifit-icon-box img {
  transform: rotateY(180deg);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* Text */
.benefit-card h5 {
  margin-top: 20px;
  font-weight: 600;
}

.benefit-card p {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {

  .benifit-icon-box {
    width: 65px;
    height: 65px;
  }

  .benifit-icon-box img {
    width: 28px;
  }
}


/*================= 
FRANCHISEE CTA CSS 
==================*/

.franchise-cta-section {
  position: relative;  
  background: url('../images/section-bg-image.png')no-repeat;
  object-fit: contain;
  background-position: center;
  background-size: cover;
}

/* Title */
.franchise-cta-title {
  font-size: 32px;
  font-weight: 700;
}

/* Subtitle */
.franchise-cta-subtitle {
  font-size: 15px;
  max-width: 600px;
  margin: 10px auto 0;
  opacity: 0.95;
}

/* Buttons */
.franchise-cta-buttons .btn {
  padding: 12px 26px;
  border-radius: 8px;
  margin: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

/* Call */
.franchise-btn-call {
  background: #1aaa7d;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.franchise-btn-call:hover {
  background: #218838;
  transform: translateY(-2px);
}

/* Contact */
.franchise-btn-contact {
  background: #0d6efd;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.franchise-btn-contact:hover {
  background: #0b5ed7;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .franchise-cta-title {
    font-size: 24px;
  }

  .franchise-cta-buttons .btn {
    display: block;
    width: 80%;
    margin: 10px auto;
  }
}