:root {
  --primary-green: #2E7D32;
  --dark-green: #1B5E20;
  --ayur-gold: #C89B3C;
  --light-gold: #E6C46A;
  --cream: #FFF9F1;
  --soft-blue: #EAF5FF;
  --white: #ffffff;
  --text: #2D3748;
  --danger: #DC3545;
}

/* ================= GLOBAL ================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background: #fff;
  overflow-x: hidden;
  color: #333;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1320px;
}

/* ================= TOP BAR ================= */
.top-bar {
    background: linear-gradient(90deg, var(--dark-green), var(--primary-green));
    padding: 12px 0;
    color: #fff;
    font-size: 15px;
}

.top-bar i {
    font-size: 16px;
    margin-right: 6px;
}

.top-btn {
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: .4s;
    display: inline-block;
    white-space: nowrap;
    line-height: 1.4;
}

.appointment-btn {
    background: var(--ayur-gold);
    color: #fff;
}

.room-btn {
    background: #fff;
    color: var(--primary-green);
}

.emergency-btn {
    background: var(--danger);
    color: #fff;
}

.top-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,.2);
    color: #fff;
}

/* Mobile */

@media (max-width: 768px) {

    .top-bar {
        font-size: 13px;
        padding: 10px 0;
    }

    .top-btn {
        font-size: 12px;
        padding: 7px 14px;
        margin-top: 5px;
    }
}
/* ================= MAIN HEADER ================= */

.main-header {
  background: linear-gradient(135deg, #ffffff, #f7fdf9, #fff7e6);
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 100;
}

/* FLEX LAYOUT */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ===== LOGO SECTION ===== */
.logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  transition: 0.4s ease;
  filter: drop-shadow(0 6px 10px rgba(0, 0, 0, 0.15));
}

.logo:hover {
  transform: scale(1.08) rotate(-1deg);
}

.trust-text {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
  font-weight: 600;
  max-width: 240px;
  letter-spacing: 0.3px;
}

/* ===== CENTER TITLE ===== */
.center-title {
  text-align: center;
}

.center-title h1 {
  font-size: 54px;
  font-weight: 900;
  background: linear-gradient(45deg, #0a7a4a, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.center-title h3 {
  font-size: 32px;
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.center-title span {
  display: inline-block;
  background: rgba(10, 122, 74, 0.08);
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  color: #0a7a4a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

/* ===== HEADER BUTTONS ===== */
.header-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.header-buttons a {
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ================= BUTTONS ================= */

.btn-green {
  background: linear-gradient(135deg, #0a7a4a, #13a86b);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 25px rgba(46, 125, 50, .25);
  transition: .4s;
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(10, 122, 74, 0.25);
  color: #fff;
}

.btn-gold {
  background: linear-gradient(135deg, #d4af37, #f2d16b);
  color: #000;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 25px rgba(200, 155, 60, .25);
  transition: .4s;
}

.btn-gold:hover {
  transform: translateY(-2px);
  color: #000;
}

.btn-outline-custom {
  border: 2px solid #0a7a4a;
  color: #0a7a4a;
  background: transparent;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: .4s;
}

.btn-outline-custom:hover {
  background: #0a7a4a;
  color: #fff;
  transform: translateY(-3px);
}
/* ================= NAVBAR ================= */
.custom-navbar {
    background: linear-gradient(90deg, var(--dark-green), var(--primary-green));
    box-shadow: 0 4px 15px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 1040;
    padding: 8px 0 !important;
}

.custom-navbar .nav-link {
    color: #fff !important;
    font-weight: 600;
    padding: 12px 16px !important;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
}

.custom-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 5px;
    width: 0;
    height: 2px;
    background: #FFD54F;
    transition: .4s;
    transform: translateX(-50%);
}

.custom-navbar .nav-link:hover {
    color: #FFD54F !important;
}

.custom-navbar .nav-link:hover::after {
    width: 70%;
}

.custom-navbar .navbar-brand img {
    height: 65px;
    width: auto;
}
/* ================= DROPDOWN ================= */

.dropdown-menu {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  padding: 5px 0;          
}

.dropdown-item {
  padding: 8px 16px;       
  font-weight: 500;
  font-size: 12.5px;       
}

.dropdown-item:hover {
  background: var(--primary-green);
  color: #fff;
}

/* ================= RESPONSIVE HEADER ================= */

@media(max-width: 992px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
  }

  .logo-section {
    align-items: center;
  }

  .header-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }

  .logo {
    margin: auto;
  }

  .trust-text {
    max-width: 100%;
    text-align: center;
  }

  .center-title h1 {
    font-size: 34px;
  }

  .center-title h3 {
    font-size: 22px;
  }

  .top-info {
    justify-content: center;
  }

  .top-bar .text-end {
    text-align: center !important;
    margin-top: 15px;
  }

  .top-btn {
    margin: 5px;
  }
}

/* ================= HERO SECTION ================= */
/* ================= HERO SECTION ================= */

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-section .carousel,
.hero-section .carousel-inner,
.hero-section .carousel-item {
    height: 85vh;
}

.hero-img {
    width: 100%;
    height: 85vh;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background: linear-gradient(
        rgba(0, 0, 0, 0.50),
        rgba(0, 0, 0, 0.40)
    );
    display: flex;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 20;
    color: #fff;
    max-width: 850px;
}

.hero-tag {
    background: rgba(200, 155, 60, 0.95);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
}

.hero-est {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
    font-weight: 600;
    font-size: 16px;
}

.hero-content h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 15px;
    color: #fff;
}

.hero-content h4 {
    color: #FFD54F;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 18px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 750px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-light-custom {
    background: #fff;
    color: #2E7D32;
}

.btn-light-custom:hover {
    background: #FFD54F;
    color: #000;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline-light:hover {
    background: #fff;
    color: #000;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h4 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btn {
        font-size: 14px;
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .hero-section,
    .hero-section .carousel,
    .hero-section .carousel-inner,
    .hero-section .carousel-item,
    .hero-img {
        height: 70vh;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }

    .hero-tag,
    .hero-est {
        font-size: 12px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content h4 {
        font-size: 18px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .hero-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}
/* ================= QUICK ACCESS ================= */

.quick-access-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff, #FFF9F1);
}

.section-heading {
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  background: #EAF5FF;
  color: #2E7D32;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2E7D32;
  margin-bottom: 15px;
}

.section-heading p {
  color: #666;
  font-size: 18px;
}

.quick-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  transition: .4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  border-top: 5px solid #2E7D32;
}

.quick-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.quick-card i {
  font-size: 50px;
  color: #2E7D32;
  margin-bottom: 20px;
}

.quick-card h5 {
  font-weight: 700;
  margin-bottom: 15px;
}

.quick-card a {
  color: #C89B3C;
  font-weight: 600;
}

.emergency-card {
  border-top: 5px solid #DC3545;
}

.emergency-card i {
  color: #DC3545;
}

@media(max-width: 768px) {
  .section-heading h2 {
    font-size: 30px;
  }

  .quick-card {
    padding: 25px 20px;
  }
}

/* ================= WHY CHOOSE MODERN ================= */

.why-choose-modern {
  padding: 90px 0;
  background: #fff;
}

.why-image-box {
  position: relative;
}

.why-image-box img {
  border-radius: 30px;
  width: 100%;
  height: 650px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .15);
}

.experience-box {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: linear-gradient(135deg, #2E7D32, #43A047);
  padding: 30px;
  border-radius: 25px;
  color: #fff;
  text-align: center;
  width: 220px;
  box-shadow: 0 20px 40px rgba(46, 125, 50, .3);
}

.experience-box h2 {
  font-size: 60px;
  font-weight: 800;
  margin: 0;
}

.experience-box span {
  font-size: 15px;
}

.why-main-title {
  font-size: 48px;
  font-weight: 800;
  color: #2E7D32;
  margin: 20px 0;
  line-height: 1.2;
}

.why-desc {
  font-size: 18px;
  line-height: 1.9;
  color: #666;
  margin-bottom: 35px;
}

.why-feature {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.why-feature i {
  font-size: 28px;
  color: #C89B3C;
  margin-top: 5px;
}

.why-feature h5 {
  font-weight: 700;
  margin-bottom: 5px;
  color: #2E7D32;
}

.why-feature p {
  margin: 0;
  color: #666;
}

@media(max-width: 991px) {
  .why-image-box img {
    height: 400px;
    margin-bottom: 40px;
  }

  .experience-box {
    right: 10px;
    width: 180px;
    padding: 20px;
  }

  .why-main-title {
    font-size: 34px;
  }
}

/* ================= TREATMENT SECTION ================= */

.treatment-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #ffffff, #f8fbf8);
}

.treatment-card {
  background: #fff;
  padding: 35px;
  border-radius: 25px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: .4s;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
  border: 1px solid rgba(46, 125, 50, .08);
}

.treatment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #2E7D32, #C89B3C);
}

.treatment-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .15);
}

.treatment-card i {
  font-size: 55px;
  color: #2E7D32;
  margin-bottom: 20px;
}

.treatment-card h4 {
  font-size: 24px;
  color: #2E7D32;
  margin-bottom: 15px;
  font-weight: 700;
}

.treatment-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
}

.treatment-card a {
  display: inline-block;
  padding: 10px 22px;
  background: #C89B3C;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: .4s;
}

.treatment-card a:hover {
  background: #2E7D32;
  color: #fff;
}

@media(max-width: 768px) {
  .treatment-card {
    padding: 25px;
  }

  .treatment-card h4 {
    font-size: 20px;
  }
}

/* ================= MODAL ================= */

.modal {
  backdrop-filter: blur(6px);
}

.modal-content {
  border-radius: 18px;
  border: none;
  background: linear-gradient(145deg, #f0fff4, #ffffff);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  animation: popup 0.3s ease-in-out;
}

.modal-content h4 {
  color: #2e7d32;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  font-size: 22px;
}

.modal-content p {
  color: #444;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
}

@keyframes popup {
  from { transform: scale(0.7); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

/* ================= THERAPY JOURNEY ================= */

.therapy-journey {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff, #f7fbf8);
}

.therapy-timeline {
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.therapy-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #2E7D32, #C89B3C);
  transform: translateX(-50%);
}

.therapy-item {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #fff;
  padding: 30px;
  border-radius: 25px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.therapy-number {
  font-size: 60px;
  font-weight: 800;
  color: #EAF5FF;
  min-width: 100px;
}

.therapy-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E7D32, #43A047);
  display: flex;
  align-items: center;
  justify-content: center;
}

.therapy-icon i {
  font-size: 35px;
  color: #fff;
}

.therapy-info h3 {
  color: #2E7D32;
  font-size: 28px;
  margin-bottom: 10px;
}

.therapy-info p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

.therapy-item:hover {
  transform: translateY(-8px);
  transition: .4s;
}

@media(max-width: 768px) {
  .therapy-timeline::before {
    display: none;
  }

  .therapy-item {
    flex-direction: column;
    text-align: center;
  }

  .therapy-number {
    font-size: 45px;
  }

  .therapy-info h3 {
    font-size: 22px;
  }
}

/* ================= GOLDEN LEGACY ================= */

.legacy-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #FFF9F1, #ffffff);
}

.legacy-timeline {
  max-width: 900px;
  margin: 60px auto;
  position: relative;
}

.legacy-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #C89B3C, #2E7D32);
  transform: translateX(-50%);
}

.legacy-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.legacy-item:nth-child(even) {
  flex-direction: row-reverse;
}

.legacy-year {
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #C89B3C, #E6C46A);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  z-index: 2;
  box-shadow: 0 10px 25px rgba(200, 155, 60, .3);
}

.legacy-content {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  margin: 0 30px;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.legacy-content h4 {
  color: #2E7D32;
  margin-bottom: 10px;
  font-weight: 700;
}

.legacy-content p {
  margin: 0;
  color: #666;
  line-height: 1.8;
}

.founder-story {
  margin-top: 70px;
  text-align: center;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.founder-icon {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E7D32, #43A047);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.founder-icon i {
  font-size: 40px;
  color: #fff;
}

.founder-story h3 {
  color: #2E7D32;
  margin-bottom: 15px;
}

.founder-story p {
  max-width: 850px;
  margin: auto;
  line-height: 1.9;
  color: #666;
}

@media(max-width: 768px) {
  .legacy-timeline::before {
    left: 35px;
  }

  .legacy-item,
  .legacy-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 70px;
  }

  .legacy-year {
    width: 80px;
    height: 80px;
    font-size: 18px;
    position: absolute;
    left: 0;
  }

  .legacy-content {
    margin: 0;
    width: 100%;
  }
}

/* ================= DEPARTMENT SHOWCASE ================= */

.department-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #F8FFF8 0%, #EEF8F0 50%, #FFF9F1 100%);
  position: relative;
  overflow: hidden;
}

.department-section::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(46, 125, 50, .05);
  top: -120px;
  right: -120px;
}

.department-section::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(200, 155, 60, .08);
  bottom: -80px;
  left: -80px;
}

.department-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.department-row.reverse {
  flex-direction: row-reverse;
}

.department-content {
  flex: 1;
}

.department-content span {
  display: block;
  font-size: 110px;
  font-weight: 900;
  line-height: 1;
  color: rgba(46, 125, 50, .08);
}

.department-content h3 {
  font-size: 34px;
  font-weight: 800;
  color: #2E7D32;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.department-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background: #C89B3C;
  border-radius: 50px;
}

.department-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 25px;
}

.dept-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #2E7D32, #43A047);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  transition: .4s;
}

.dept-btn:hover {
  background: linear-gradient(135deg, #C89B3C, #D9A93F);
  color: #fff;
  transform: translateY(-3px);
}

.department-benefits {
  flex: 1;
  background: linear-gradient(135deg, #ffffff, #f7fbff);
  padding: 35px;
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  border-left: 6px solid #C89B3C;
  position: relative;
  overflow: hidden;
}

.department-benefits::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(200, 155, 60, .08);
}

.department-benefits h5 {
  font-size: 24px;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 20px;
}

.department-benefits ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.department-benefits li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .05);
  font-size: 16px;
  color: #444;
  position: relative;
  padding-left: 30px;
}

.department-benefits li:last-child {
  border-bottom: none;
}

.department-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2E7D32;
  font-weight: bold;
}

.department-row:hover .department-benefits {
  transform: translateY(-8px);
  transition: .4s;
}

@media(max-width: 991px) {
  .department-row,
  .department-row.reverse {
    flex-direction: column;
    gap: 25px;
  }

  .department-content {
    text-align: center;
  }

  .department-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .department-content span {
    font-size: 70px;
  }

  .department-content h3 {
    font-size: 28px;
  }

  .department-benefits {
    width: 100%;
  }
}

/* ================= PANCHAKARMA SHOWCASE ================= */

.panchakarma-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #1B5E20 0%, #2E7D32 50%, #245A28 100%);
  position: relative;
  overflow: hidden;
}

.panchakarma-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  top: -200px;
  right: -150px;
}

.panchakarma-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(200, 155, 60, .08);
  bottom: -150px;
  left: -100px;
}

.panchakarma-heading {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.pk-tag {
  display: inline-block;
  padding: 12px 28px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  color: #FFD54F;
  font-weight: 600;
  margin-bottom: 20px;
}

.panchakarma-heading h2 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.panchakarma-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: #FFD54F;
  border-radius: 50px;
}

.panchakarma-heading p {
  max-width: 850px;
  margin: auto;
  color: rgba(255, 255, 255, .85);
  font-size: 17px;
  line-height: 1.9;
}

.pk-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  height: 100%;
  padding: 18px;
  position: relative;
  transition: .4s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  display: flex;
  flex-direction: column;
}

.pk-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #C89B3C, #FFD54F);
}

.pk-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .20);
}

.pk-image {
  height: 220px;
  overflow: hidden;
  border-radius: 18px;
  margin-bottom: 20px;
}

.pk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s;
}

.pk-card:hover .pk-image img {
  transform: scale(1.1);
}

.pk-card h4 {
  font-size: 24px;
  font-weight: 700;
  color: #2E7D32;
  margin-bottom: 15px;
  text-align: center;
}

.pk-card p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  text-align: center;
  min-height: 85px;
}

.pk-card span {
  display: block;
  text-align: center;
  margin: 15px 0 20px;
  font-size: 14px;
  font-weight: 600;
  color: #C89B3C;
}

.pk-card a {
  display: inline-block;
  padding: 11px 24px;
  background: #2E7D32;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  transition: .4s;
  margin: auto;
  margin-top: auto;
}

.pk-card a:hover {
  background: #C89B3C;
  color: #fff;
}

@media(max-width: 991px) {
  .panchakarma-heading h2 {
    font-size: 38px;
  }
}

@media(max-width: 768px) {
  .panchakarma-section {
    padding: 80px 0;
  }

  .panchakarma-heading h2 {
    font-size: 30px;
  }

  .pk-image {
    height: 200px;
  }
}

/* ================= FACILITIES ================= */

.facilities-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff, #F7FBF8);
  position: relative;
  overflow: hidden;
}

.facilities-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(46, 125, 50, .05);
}

.facilities-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(200, 155, 60, .08);
}

.facility-card {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 30px;
  height: 100%;
  text-align: center;
  transition: .4s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.facility-card:hover {
  transform: translateY(-10px);
}

.medical-card  { border-top: 6px solid #2E7D32; }
.care-card     { border-top: 6px solid #C89B3C; }
.comfort-card  { border-top: 6px solid #4A90E2; }

.facility-icon {
  width: 90px;
  height: 90px;
  margin: auto;
  margin-bottom: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #fff;
}

.medical-card  .facility-icon { background: #2E7D32; }
.care-card     .facility-icon { background: #C89B3C; }
.comfort-card  .facility-icon { background: #4A90E2; }

.facility-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #2E7D32;
}

.facility-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.facility-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: 16px;
  color: #555;
  position: relative;
}

.facility-card ul li:last-child {
  border: none;
}

.facility-card ul li::before {
  content: "✓";
  margin-right: 10px;
  color: #2E7D32;
  font-weight: bold;
}

@media(max-width: 768px) {
  .facilities-section {
    padding: 80px 0;
  }

  .facility-card {
    padding: 30px 20px;
  }

  .facility-card h3 {
    font-size: 24px;
  }
}

/* ================= ACCOMMODATION ================= */

.accommodation-showcase {
  padding: 110px 0;
  background: linear-gradient(135deg, #0F3D2E, #1B5E20);
  position: relative;
  overflow: hidden;
}

.accommodation-showcase::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  top: -200px;
  right: -150px;
}

.accommodation-tag {
  display: inline-block;
  background: #C89B3C;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.accommodation-showcase h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 800;
}

.accommodation-showcase p {
  color: rgba(255, 255, 255, .85);
  max-width: 800px;
  margin: auto;
}

.accommodation-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
  margin-bottom: 50px;
}

.stay-box {
  padding: 50px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: .4s;
}

.stay-box:hover {
  transform: translateY(-10px);
}

.stay-badge {
  display: inline-block;
  background: #C89B3C;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.stay-box h3 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 30px;
}

.stay-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.stay-box ul li {
  padding: 12px 0;
  color: #fff;
  font-size: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.stay-box ul li::before {
  content: "✓ ";
  color: #FFD54F;
  font-weight: bold;
}

.book-stay-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #C89B3C;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  transition: .4s;
}

.book-stay-btn:hover {
  background: #fff;
  color: #2E7D32;
}

@media(max-width: 991px) {
  .accommodation-wrapper {
    grid-template-columns: 1fr;
  }
}

/* ================= SOCIAL IMPACT ================= */

.impact-section {
  padding: 70px 0;
  background: #FFF9F1;
  position: relative;
}

.impact-heading {
  margin-bottom: 45px;
}

.impact-tag {
  display: inline-block;
  background: #C89B3C;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px;
}

.impact-heading h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2D3748;
  margin-bottom: 10px;
}

.impact-heading p {
  color: #666;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.impact-circle {
  background: #fff;
  padding: 30px 15px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  border-top: 5px solid #C89B3C;
  transition: .4s;
}

.impact-circle:hover {
  transform: translateY(-8px);
}

.impact-circle h3 {
  font-size: 42px;
  font-weight: 800;
  color: #C89B3C;
  margin-bottom: 8px;
}

.impact-circle span {
  font-size: 14px;
  font-weight: 600;
  color: #555;
  display: block;
  line-height: 1.5;
}

@media(max-width: 991px) {
  .impact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media(max-width: 768px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-heading h2 {
    font-size: 30px;
  }
}

/* ================= ADMISSION SECTION ================= */

.admission-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #FFF8E8, #FFFDF8);
}

.admission-box {
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  padding: 60px;
  border-radius: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.admission-box::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -120px;
  right: -120px;
}

.admission-left {
  flex: 1;
  position: relative;
  z-index: 2;
}

.admission-tag {
  display: inline-block;
  background: #C89B3C;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.admission-left h2 {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.admission-left p {
  color: rgba(255, 255, 255, .85);
  line-height: 1.9;
  max-width: 650px;
}

.admission-right {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.admission-date {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.admission-date h3 {
  font-size: 40px;
  font-weight: 800;
  color: #2E7D32;
  margin: 0;
}

.admission-date span {
  font-size: 13px;
  font-weight: 600;
  color: #666;
}

.admission-buttons {
  text-align: center;
  margin-top: 40px;
}

.apply-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #2E7D32;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  margin: 10px;
  transition: .4s;
}

.apply-btn:hover {
  background: #C89B3C;
  color: #fff;
}

.consult-btn {
  display: inline-block;
  padding: 15px 35px;
  background: #C89B3C;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  margin: 10px;
  transition: .4s;
}

.consult-btn:hover {
  background: #2E7D32;
  color: #fff;
}

@media(max-width: 991px) {
  .admission-box {
    flex-direction: column;
    text-align: center;
  }

  .admission-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  .admission-left h2 {
    font-size: 34px;
  }
}

@media(max-width: 768px) {
  .admission-date {
    width: 110px;
    height: 110px;
  }

  .admission-date h3 {
    font-size: 28px;
  }
}

/* ================= TESTIMONIALS ================= */

.testimonial-section {
  padding: 100px 0;
  background: #EAF5FF;
}

.video-review {
  background: #fff;
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.video-review iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 20px;
}

.video-review h5 {
  margin-top: 15px;
  text-align: center;
  font-weight: 700;
}

.review-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.review-card {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
  border-bottom: 5px solid #C89B3C;
}

.review-card p {
  margin: 15px 0;
}

@media(max-width: 768px) {
  .review-strip {
    grid-template-columns: 1fr;
  }
}

/* ================= GALLERY ================= */

.gallery-section {
  padding: 100px 0;
  background: #FFF9F1;
}

.gallery-tag {
  background: #C89B3C;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 40px 0;
}

.gallery-filter button {
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, .08);
  font-weight: 600;
}

.gallery-grid {
  columns: 3;
  column-gap: 20px;
}

.gallery-grid img {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: .4s;
}

.gallery-grid img:hover {
  transform: scale(1.03);
}

@media(max-width: 768px) {
  .gallery-grid {
    columns: 1;
  }
}

/* ================= LOCATION ================= */
/* ===== LOCATION SECTION ===== */

.location-section {
  padding-bottom: 80px;
}

/* Full screen map wrapper */
.map-fullscreen-wrapper {
  position: relative;
  width: 100%;
  height: 90vh;          /* 90% of screen height = full-screen feel */
  min-height: 600px;
}

/* The iframe fills the entire wrapper */
.map-fullscreen-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Info card floats over the map on the RIGHT side */
.location-info-overlay {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
  width: 360px;
  background: #FFF9F1;
  padding: 35px 30px;
  border-radius: 24px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
  z-index: 10;
  max-height: 85vh;
  overflow-y: auto;
}

.location-info-overlay h3 {
  color: #2E7D32;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
}

.distance-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  font-size: 16px;
}

.distance-item strong {
  color: #C89B3C;
}

.location-info-overlay hr {
  margin: 20px 0;
  border-color: #e0e0e0;
}

.location-info-overlay h4 {
  color: #2E7D32;
  margin-bottom: 15px;
  font-size: 17px;
}

/* Transport grid */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.transport-box {
  background: #fff;
  padding: 15px 8px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  font-size: 13px;
}

.transport-box:hover {
  transform: translateY(-4px);
}

.transport-box i {
  font-size: 24px;
  color: #4A90E2;
  margin-bottom: 8px;
  display: block;
}

/* Button */
.location-btn {
  display: block;
  text-align: center;
  padding: 13px 30px;
  background: #2E7D32;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s;
}

.location-btn:hover {
  background: #C89B3C;
  color: #fff;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .mobile-map-wrapper {
    height: auto !important;
    display: flex;
    flex-direction: column;
  }
}

  .map-fullscreen-wrapper iframe {
    position: relative;     /* back to normal flow */
    height: 400px;
  }

  .location-info-overlay {
    position: relative;     /* card goes BELOW map on mobile */
    top: auto;
    right: auto;
    transform: none;
    width: 100%;
    border-radius: 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    max-height: none;
  }

  .transport-grid {
    grid-template-columns: repeat(3, 1fr);  /* keep 3 cols on mobile */
  }
}
/* ================= CONTACT SECTION ================= */

.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #F8FBFD, #FFFFFF);
}

.contact-tag {
  display: inline-block;
  padding: 10px 25px;
  background: #4A90E2;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-info-box {
  height: 100%;
  padding: 45px;
  border-radius: 30px;
  background: linear-gradient(135deg, #2E7D32, #1B5E20);
  color: #fff;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.contact-info-box h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 35px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-item i {
  width: 60px;
  height: 60px;
  background: #C89B3C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.contact-item h5 {
  margin-bottom: 5px;
}

.contact-form-box {
  background: #fff;
  padding: 45px;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.contact-form-box .form-control {
  height: 55px;
  border-radius: 15px;
  border: 1px solid #ddd;
}

.contact-form-box textarea.form-control {
  height: auto;
  padding-top: 15px;
}

.contact-form-box .form-control:focus {
  box-shadow: none;
  border-color: #2E7D32;
}

.contact-btn {
  background: #2E7D32;
  color: #fff;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  transition: .4s;
}

.contact-btn:hover {
  background: #C89B3C;
}

/* ================= FLOATING BUTTONS ================= */

.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 58px;
  height: 58px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .18);
  transition: .4s;
  overflow: hidden;
}

.float-btn span {
  position: absolute;
  right: 65px;
  background: #fff;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  color: #333;
}

.float-btn:hover span {
  opacity: 1;
  visibility: visible;
}

.whatsapp-btn        { background: #25D366; }
.call-btn            { background: #2E7D32; }
.appointment-btn-float { background: #4A90E2; }
.room-btn-float      { background: #C89B3C; }
.map-btn             { background: #FF7043; }

.float-btn:hover {
  transform: translateX(-5px) scale(1.08);
  color: #fff;
}

@media(max-width: 768px) {
  .floating-buttons {
    right: 12px;
    bottom: 15px;
  }

  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .float-btn span {
    display: none;
  }
}

/* ================= FOOTER ================= */

.footer-section {
  background: #1B2A1F;
  padding: 80px 0 25px;
  color: #fff;
}

.footer-section h4 {
  color: #C89B3C;
  margin-bottom: 25px;
  font-weight: 700;
  font-size: 22px;
}

.footer-section p {
  color: #d7d7d7;
  line-height: 1.8;
  font-size: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 12px;
}

.footer-section ul li a {
  color: #d7d7d7;
  transition: .3s;
}

.footer-section ul li a:hover {
  color: #C89B3C;
  padding-left: 6px;
}

.footer-section hr {
  border-color: rgba(255, 255, 255, .15);
  margin: 40px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  margin: 0;
  color: #bbb;
  font-size: 14px;
}

@media(max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
  }
}