/* ========== CSS RESET & VARIABLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-start: #28a133;
  --green-mid: #1a7a2a;
  --green-deep: #005006;
  --text-primary: #1a2e24;
  --text-secondary: #5a6e64;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 12px 28px rgba(0, 80, 6, 0.12);
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 100px;
  --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  --container-max: 1320px;
}

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  color: var(--text-primary);
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  /*padding: 0 32px;*/
}

/* ========== STICKY HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 80, 6, 0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}

/* ========== LOGO ========== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}

/* ========== DESKTOP NAVIGATION ========== */
.nav-desktop {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 8px 0;
  transition: var(--transition);
  position: relative;
  display: inline-block;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-start), var(--green-deep));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--green-start);
}

.nav-link:hover::after {
  width: 100%;
}

/* ========== PROFESSIONAL MEGA MENU ========== */
.dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -150px;
  width: 800px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(0, 80, 6, 0.1);
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 28px;
}

.mega-column h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--green-start);
  display: inline-block;
}

.mega-column ul {
  list-style: none;
}

.mega-column ul li {
  margin-bottom: 8px;
}

.mega-column ul li a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: block;
}

.mega-column ul li a:hover {
  color: var(--green-start);
  transform: translateX(4px);
}

/* ========== BUTTON STYLES ========== */
.btn-primary {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border: none;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

/* ========== MOBILE HAMBURGER ========== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  gap: 6px;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ========== MOBILE FULLSCREEN OVERLAY ========== */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s ease;
  overflow-y: auto;
}

.mobile-overlay.active {
  visibility: visible;
  opacity: 1;
}

.overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 32px;
  border-bottom: 1px solid rgba(0, 80, 6, 0.06);
}

.close-icon {
  font-size: 32px;
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition);
  width: 44px;
  height: 44px;
}

.close-icon:hover {
  color: var(--green-start);
  transform: scale(1.1);
}

.overlay-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px 24px;
}

.mobile-menu-list {
  list-style: none;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.mobile-nav-link {
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--text-primary);
  transition: var(--transition);
  display: inline-block;
  padding: 12px 0;
  animation: fadeInUp 0.4s ease forwards;
  opacity: 0;
}

.mobile-menu-list li:nth-child(1) .mobile-nav-link { animation-delay: 0.05s; }
.mobile-menu-list li:nth-child(2) .mobile-nav-link { animation-delay: 0.1s; }
.mobile-menu-list li:nth-child(3) .mobile-nav-link { animation-delay: 0.15s; }
.mobile-menu-list li:nth-child(4) .mobile-nav-link { animation-delay: 0.2s; }
.mobile-menu-list li:nth-child(5) .mobile-nav-link { animation-delay: 0.25s; }
.mobile-menu-list li:nth-child(6) .mobile-nav-link { animation-delay: 0.3s; }

.mobile-nav-link:hover {
  color: var(--green-start);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(40, 161, 51, 0.05);
  border-radius: var(--radius-sm);
  margin-top: 8px;
  list-style: none;
}

.mobile-dropdown-submenu.open {
  max-height: 800px;
}

.mobile-sub-dropdown {
  border-bottom: 1px solid rgba(0, 80, 6, 0.1);
}

.sub-toggle {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.sub-toggle:hover {
  color: var(--green-start);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.5);
  list-style: none;
}

.mobile-submenu.open {
  max-height: 300px;
}

.mobile-submenu li a {
  display: block;
  padding: 10px 16px 10px 32px;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.mobile-submenu li a:hover {
  color: var(--green-start);
  padding-left: 36px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.overlay-cta {
  padding: 12px 36px;
  font-size: 0.95rem;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.bg-slide.active {
  opacity: 1;
}

.bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, rgba(0, 63, 10, 0.877), rgba(1, 68, 5, 0.767));
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.hero-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-content-wrapper {
  flex: 1.2;
}

.hero-content {
  animation: fadeUpContent 0.8s ease forwards;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero-content.fade-transition {
  opacity: 0;
  transform: translateY(20px);
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.2;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff, #e8f3e6);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  max-width: 90%;
}

.hero-cta {
  padding: 11px 30px;
  font-size: 0.9rem;
}

/* Form Styles */
.hero-form-wrapper {
  flex: 0.7;
  max-width: 380px;
}

.glass-form {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.glass-form:hover {
  background: rgba(255, 255, 255, 0.3);
}

.form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: white;
  margin-bottom: 6px;
  text-align: center;
}

.form-subtitle {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.85);
  text-align: center;
  margin-bottom: 24px;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: white;
  transition: var(--transition);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.6);
}

.form-group select option,
.form-group select optgroup {
  background: var(--green-deep);
  color: white;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 11px;
  font-size: 0.85rem;
}

.form-note {
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: white;
  width: 30px;
  border-radius: 10px;
}

.dot:hover {
  background: white;
  transform: scale(1.1);
}

@keyframes fadeUpContent {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1100px) {
  .mega-menu {
    left: -200px;
    width: 700px;
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .nav-menu {
    gap: 20px;
  }
  .hero {
    min-height: 80vh;
  }
  .hero-form-wrapper {
    max-width: 340px;
  }
  .mega-menu {
    left: -250px;
    width: 650px;
  }
}

@media (max-width: 880px) {
  .container {
    padding: 0 4px;
  }
  
  .nav-desktop, .btn-cta {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-grid {
    flex-direction: column;
  }
  
  .hero-content-wrapper {
    text-align: center;
  }
  
  .hero-subtext {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-form-wrapper {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  
  .hero-container {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
}

@media (max-width: 550px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .hero-subtext {
    font-size: 0.85rem;
  }
  
  .container {
    padding: 0 1px;
  }
  
  .glass-form {
    padding: 22px 18px;
  }
  
  .form-title {
    font-size: 1.2rem;
  }
  
  .mobile-nav-link {
    font-size: 1rem;
  }
  
  .hero-container {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  
  .hero-form-wrapper {
    max-width: 100%;
  }
}
/* Add these updated styles to your existing CSS */

/* ========== MEGA MENU WITH EQUAL HEIGHT HEADINGS ========== */
.mega-menu {
  position: absolute;
  top: 100%;
  left: -200px;
  width: 900px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
  border: 1px solid rgba(0, 80, 6, 0.1);
}

.dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 28px;
}

.mega-column {
  display: flex;
  flex-direction: column;
}

/* Equal height headings */
.mega-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--green-start);
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  height: auto;
}

.mega-title i {
  font-size: 1rem;
  color: var(--green-start);
  width: 20px;
}

.mega-title span {
  flex: 1;
  line-height: 1.3;
}

.mega-column ul {
  list-style: none;
}

.mega-column ul li {
  margin-bottom: 10px;
}

.mega-column ul li a {
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-column ul li a i {
  font-size: 0.7rem;
  color: var(--green-start);
  transition: var(--transition);
}

.mega-column ul li a:hover {
  color: var(--green-start);
  transform: translateX(4px);
}

.mega-column ul li a:hover i {
  transform: translateX(2px);
}

/* ========== MOBILE MENU WITH ICONS ========== */
.sub-toggle i,
.mobile-submenu li a i {
  margin-right: 10px;
  width: 16px;
  font-size: 0.8rem;
  color: var(--green-start);
}

.mobile-submenu li a {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .mega-menu {
    left: -250px;
    width: 800px;
  }
}

@media (max-width: 950px) {
  .mega-menu {
    left: -300px;
    width: 750px;
  }
  
  .mega-menu-container {
    gap: 15px;
    padding: 20px;
  }
  
  .mega-title {
    font-size: 0.85rem;
    min-height: 44px;
  }
}

@media (max-width: 880px) {
  .mega-menu {
    display: none;
  }
}
/* about us demo */
/* ========== ABOUT US SECTION ========== */
.about-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.02), rgba(0, 80, 6, 0.02));
}

/* Glassmorphism Card */
.about-card {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 52px 56px;
  border: 1px solid rgba(40, 161, 51, 0.1);
  transition: var(--transition);
}

.about-card:hover {
  box-shadow: 0 20px 40px rgba(0, 80, 6, 0.08);
}

/* Two-Column Grid */
.about-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

/* ========== LEFT SIDE - IMAGES ========== */
.about-images {
  flex: 1;
  position: relative;
}

.image-stack {
  position: relative;
  min-height: 450px;
}

/* Main Image */
.main-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  transition: transform 0.5s ease;
}

.main-image:hover img {
  transform: scale(1.02);
}

.image-overlay-light {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.1), transparent);
  border-radius: 24px;
  pointer-events: none;
}

/* Overlapping Small Image */
/* Overlapping Small Image */
.overlap-image {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 45%;
  border-radius: 20px;
  overflow: visible; /* important for transparency */
  box-shadow: none;  /* optional: remove if you want pure transparent look */
  z-index: 3;
  background: transparent; /* ensure no bg */
}

.overlap-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0; /* remove if image already has shape */
  background: transparent;
}


/* Floating Badge */
.floating-badge {
  position: absolute;
  top: 10px;
  left: -20px;
  background: linear-gradient(135deg, #ffffff, #f8fff8);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 80, 6, 0.12);
  z-index: 4;
  border: 1px solid rgba(40, 161, 51, 0.2);
  animation: floatBadge 4s ease-in-out infinite;
}

.floating-badge i {
  font-size: 28px;
  color: var(--green-start);
}

.badge-text {
  display: flex;
  flex-direction: column;
}

.badge-years {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--green-deep);
}

.badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.3px;
}

/* Floating Animations for Images */
.floating-img {
  animation: floatImage 5s ease-in-out infinite;
}

.floating-img-delayed {
  animation: floatImage 5s ease-in-out infinite 1.5s;
}

@keyframes floatImage {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ========== RIGHT SIDE - CONTENT ========== */
.about-content {
  flex: 1;
}

/* Label */
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: var(--green-start);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-start), var(--green-deep));
  border-radius: 2px;
}

/* Heading */
.about-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.gradient-text-about {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Description */
.about-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

/* Features / Bullet Points */
.about-features {
  list-style: none;
  margin-bottom: 32px;
  font-size: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-primary);
  opacity: 0;
  transform: translateX(-10px);
  animation: fadeInRight 0.5s ease forwards;
}

.feature-item:nth-child(1) { animation-delay: 0.1s; }
.feature-item:nth-child(2) { animation-delay: 0.2s; }
.feature-item:nth-child(3) { animation-delay: 0.3s; }
.feature-item:nth-child(4) { animation-delay: 0.4s; }

.feature-item i {
  font-size: 1rem;
  color: var(--green-start);
  width: 20px;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* About CTA Button */
.btn-about {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border: none;
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-about i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.btn-about:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.btn-about:hover i {
  transform: translateX(4px);
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.fade-up-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .about-card {
    padding: 44px 40px;
  }
  
  .about-grid {
    gap: 50px;
  }
  
  .about-heading {
    font-size: 1.8rem;
  }
}

@media (max-width: 880px) {
  .about-section {
    padding: 20px 0;
  }
  
  .about-card {
    padding: 36px 28px;
  }
  
  .about-grid {
    flex-direction: column;
  }
  
  .about-images {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .about-content {
    text-align: center;
  }
  
  .about-label {
    justify-content: center;
  }
  
  .about-heading {
    font-size: 1.6rem;
    text-align: center;
  }
  
  .about-description {
    text-align: center;
  }
  
  .about-features {
    text-align: left;
    max-width: 300px;
    margin: 0 auto 32px auto;
  }
  
  .feature-item {
    justify-content: flex-start;
  }
  
  .btn-about {
    margin: 0 auto;
    display: inline-flex;
  }
  
  .image-stack {
    min-height: 380px;
  }
  
  .overlap-image {
    bottom: -20px;
    right: -20px;
  }
  
  .floating-badge {
    top: 15px;
    left: -10px;
    padding: 8px 15px;
  }
}

@media (max-width: 550px) {
  .about-section {
    padding: 50px 0;
    background-color: #d1e9d3;
  }
  
  .about-card {
    padding: 28px 20px;
  }
  
  .about-heading {
    font-size: 1.4rem;
  }
  
  .about-description {
    font-size: 0.85rem;
  }
  
  .feature-item {
    font-size: 0.8rem;
  }
  
  .image-stack {
    min-height: 30px;
  }
  
  .overlap-image {
    width: 40%;
    bottom: -15px;
    right: -15px;
  }
  
  .floating-badge {
    padding: 6px 12px;
  }
  
  .floating-badge i {
    font-size: 20px;
  }
  
  .badge-years {
    font-size: 0.85rem;
  }
  
  .badge-label {
    font-size: 0.6rem;
  }
}
@media (max-width: 768px) {
  .overlap-image {
    display: none;
  }
}
@media (max-width: 550px) {
    .image-stack {
        min-height: 30px;
    }
}
/* treatments sections  */
/* ========== SERVICES SECTION ========== */
.services-section {
  padding: 10px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.02), rgba(0, 80, 6, 0.02));
}

/* Glass Card Container */
.services-card {
  background:  linear-gradient(15deg, #78b94d, var(--green-deep));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 52px 56px;
  border: 1px solid rgba(40, 161, 51, 0.1);
  transition: var(--transition);
}

.services-card:hover {
  box-shadow: 0 20px 40px rgba(0, 80, 6, 0.08);
}

/* Section Header */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 20px;
}

.services-header-left {
  flex: 1;
}

.services-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.services-label .label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, var(--green-deep));
  border-radius: 2px;
}

.services-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin: 0;
}

.gradient-text-services {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Explore Button */
.btn-explore {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.btn-explore i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.btn-explore:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-hover);
}

.btn-explore:hover i {
  transform: translateX(4px);
}

/* ========== CAROUSEL STYLES ========== */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.carousel-container {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform;
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

/* Service Card */
.service-card {
  flex-shrink: 0;
  width: calc(33.333% - 16px);
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

/* Card Image */
.card-image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.1), transparent);
  pointer-events: none;
}

/* Floating Icon */
.floating-icon {
  position: absolute;
  top: 160px;
  left: 20px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 80, 6, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

.service-card:hover .floating-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(40, 161, 51, 0.3);
}

.floating-icon i {
  font-size: 1.5rem;
  color: white;
}

/* Card Content */
.card-content {
  padding: 28px 20px 24px;
}

.service-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.service-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--green-start);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link i {
  font-size: 0.65rem;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: var(--green-deep);
  gap: 10px;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* Carousel Navigation Buttons */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid rgba(40, 161, 51, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.carousel-nav:hover {
  background: var(--green-start);
  border-color: var(--green-start);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav:hover i {
  color: white;
}

.carousel-nav i {
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.prev {
  left: 2px;
}

.next {
  right: 2px;
}

/* Carousel Dots */
.carousel-dots-services {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot-service {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot-service.active {
  width: 28px;
  border-radius: 10px;
  background: var(--green-start);
}

.dot-service:hover {
  background: var(--green-start);
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 1100px) {
  .service-card {
    width: calc(50% - 12px);
  }
  
  .prev {
    left: -15px;
  }
  
  .next {
    right: -15px;
  }
}

@media (max-width: 880px) {
  .services-section {
    padding: 10px 0;
  }
  
  .services-card {
    padding: 36px 28px;
  }
  
  .services-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .services-heading {
    font-size: 1.5rem;
  }
  
  .btn-explore {
    white-space: normal;
  }
  
  .service-card {
    width: 100%;
  }
  
  .prev {
    left: 2px;
  }
  
  .next {
    right: 2px;
  }
  
  .carousel-nav {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 550px) {
  .services-card {
    padding: 28px 20px;
  }
  
  .services-heading {
    font-size: 1.3rem;
  }
  
  .card-image {
    height: 180px;
  }
  
  .floating-icon {
    width: 48px;
    height: 48px;
    top: 140px;
  }
  
  .floating-icon i {
    font-size: 1.2rem;
  }
  
  .card-content {
    padding: 22px 16px 20px;
  }
}
/* ------------------why choose us --------------------- */
/* ========== WHY CHOOSE US SECTION ========== */
.why-choose-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.02), rgba(0, 80, 6, 0.02));
}

/* Glass Card Container */
.why-choose-card {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 52px 56px;
  border: 1px solid rgba(40, 161, 51, 0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-choose-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.why-choose-card:hover {
  box-shadow: 0 20px 40px rgba(0, 80, 6, 0.08);
}

/* Section Header */
.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--green-start);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-label .label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-start), var(--green-deep));
  border-radius: 2px;
}

.why-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.gradient-text-why {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.why-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Main Layout */
.why-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* LEFT SIDE FEATURES */
.features-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item-left {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  text-align: right;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-15px);
  animation: fadeInRight 0.5s ease forwards;
}

.feature-item-left:nth-child(1) { animation-delay: 0.1s; }
.feature-item-left:nth-child(2) { animation-delay: 0.2s; }
.feature-item-left:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-item-left:hover {
  transform: translateX(5px);
}

.feature-item-left:hover .feature-title {
  color: var(--green-start);
}

.feature-content-left {
  flex: 1;
}

.feature-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.feature-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.feature-icon-left {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 80, 6, 0.15);
  transition: all 0.3s ease;
}

.feature-item-left:hover .feature-icon-left {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(40, 161, 51, 0.25);
}

.feature-icon-left i {
  font-size: 1.1rem;
  color: white;
}

/* RIGHT SIDE FEATURES */
.features-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item-right {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(15px);
  animation: fadeInLeft 0.5s ease forwards;
}

.feature-item-right:nth-child(1) { animation-delay: 0.1s; }
.feature-item-right:nth-child(2) { animation-delay: 0.2s; }
.feature-item-right:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.feature-item-right:hover {
  transform: translateX(-5px);
}

.feature-item-right:hover .feature-title {
  color: var(--green-start);
}

.feature-icon-right {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 80, 6, 0.15);
  transition: all 0.3s ease;
}

.feature-item-right:hover .feature-icon-right {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(40, 161, 51, 0.25);
}

.feature-icon-right i {
  font-size: 1.1rem;
  color: white;
}

.feature-content-right {
  flex: 1;
}

/* CENTER CIRCLE WITH ROTATING RING */
.features-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-circle-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Rotating Ring Container */
.rotating-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.ring-svg {
  width: 100%;
  height: 100%;
}

/* Rotating Dots on Ring */
.rotating-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

.dot-1 {
  transform: rotate(0deg) translate(130px) rotate(0deg);
  animation: pulseDot 2s ease-in-out infinite;
}

.dot-2 {
  transform: rotate(90deg) translate(130px) rotate(-90deg);
  animation: pulseDot 2s ease-in-out infinite 0.5s;
}

.dot-3 {
  transform: rotate(180deg) translate(130px) rotate(-180deg);
  animation: pulseDot 2s ease-in-out infinite 1s;
}

.dot-4 {
  transform: rotate(270deg) translate(130px) rotate(-270deg);
  animation: pulseDot 2s ease-in-out infinite 1.5s;
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 0.4;
    transform: rotate(var(--rotation, 0deg)) translate(130px) rotate(var(--rotation-reverse, 0deg)) scale(1);
  }
  50% {
    opacity: 1;
    transform: rotate(var(--rotation, 0deg)) translate(130px) rotate(var(--rotation-reverse, 0deg)) scale(1.3);
  }
}

/* Inner Circle */
.inner-circle {
  width: 200px;
  height: 200px;
  background: var(--green-start);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 35px rgba(0, 80, 6, 0.15), inset 0 1px 2px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(40, 161, 51, 0.2);
  z-index: 2;
  position: relative;
}

.tooth-icon-large {
  font-size: 3rem;
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.circle-badge {
  text-align: center;
}

.circle-badge span {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Optional thin connector lines */
.features-left::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, rgba(40, 161, 51, 0.15), transparent);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1100px) {
  .why-choose-card {
    padding: 44px 40px;
  }
  
  .center-circle-wrapper {
    width: 240px;
    height: 240px;
  }
  
  .inner-circle {
    width: 170px;
    height: 170px;
    
  }
  
  .dot-1, .dot-2, .dot-3, .dot-4 {
    transform-origin: center;
  }
  
  .dot-1 { transform: rotate(0deg) translate(110px) rotate(0deg); }
  .dot-2 { transform: rotate(90deg) translate(110px) rotate(-90deg); }
  .dot-3 { transform: rotate(180deg) translate(110px) rotate(-180deg); }
  .dot-4 { transform: rotate(270deg) translate(110px) rotate(-270deg); }
  
  .tooth-icon-large {
    font-size: 2.5rem;
  }
}

@media (max-width: 880px) {
  .why-choose-section {
    padding: 60px 0;
  }
  
  .why-choose-card {
    padding: 36px 28px;
  }
  
  .why-heading {
    font-size: 1.5rem;
  }
  
  .why-subtext {
    font-size: 0.8rem;
  }
  
  .why-layout {
    flex-direction: column;
    gap: 48px;
  }
  
  .features-left, .features-right {
    width: 100%;
    gap: 24px;
  }
  
  .feature-item-left,
  .feature-item-right {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  
  .feature-content-left,
  .feature-content-right {
    text-align: center;
  }
  
  .features-left::before {
    display: none;
  }
  
  .center-circle-wrapper {
    width: 220px;
    height: 220px;
  }
  
  .inner-circle {
    width: 160px;
    height: 160px;
    
  }
  
  .dot-1, .dot-2, .dot-3, .dot-4 {
    transform-origin: center;
  }
  
  .dot-1 { transform: rotate(0deg) translate(100px) rotate(0deg); }
  .dot-2 { transform: rotate(90deg) translate(100px) rotate(-90deg); }
  .dot-3 { transform: rotate(180deg) translate(100px) rotate(-180deg); }
  .dot-4 { transform: rotate(270deg) translate(100px) rotate(-270deg); }
}

@media (max-width: 550px) {
  .why-choose-card {
    padding: 28px 20px;
  }
  
  .why-heading {
    font-size: 1.3rem;
  }
  
  .why-subtext {
    font-size: 0.75rem;
  }
  
  .why-label {
    font-size: 0.65rem;
  }
  
  .center-circle-wrapper {
    width: 200px;
    height: 200px;
  }
  
  .inner-circle {
    width: 140px;
    height: 140px;
    
  }
  
  .tooth-icon-large {
    font-size: 2rem;
  }
  
  .dot-1, .dot-2, .dot-3, .dot-4 {
    transform-origin: center;
  }
  
  .dot-1 { transform: rotate(0deg) translate(90px) rotate(0deg); }
  .dot-2 { transform: rotate(90deg) translate(90px) rotate(-90deg); }
  .dot-3 { transform: rotate(180deg) translate(90px) rotate(-180deg); }
  .dot-4 { transform: rotate(270deg) translate(90px) rotate(-270deg); }
  
  .feature-title {
    font-size: 0.9rem;
  }
  
  .feature-description {
    font-size: 0.7rem;
  }
  
  .feature-icon-left,
  .feature-icon-right {
    width: 40px;
    height: 40px;
  }
  
  .feature-icon-left i,
  .feature-icon-right i {
    font-size: 1rem;
  }
}
/* -------------------the doctors------------------ */
/* ========== OUR DOCTORS SECTION ========== */
.doctors-section {
  padding: 10 0;
  position: relative;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.02), rgba(0, 80, 6, 0.02));
}

/* Glass Card Container */
.doctors-card {
  background: #fefefe;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 52px 56px;
  border: 1px solid rgba(40, 161, 51, 0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.doctors-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.doctors-card:hover {
  box-shadow: 0 20px 40px rgba(0, 80, 6, 0.08);
}

/* Section Header */
.doctors-header {
  text-align: center;
  margin-bottom: 48px;
}

.doctors-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--green-start);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.doctors-label .label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-start), var(--green-deep));
  border-radius: 2px;
}

.doctors-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.gradient-text-doctors {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.doctors-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* ========== DOCTORS CAROUSEL ========== */
.doctors-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.doctors-carousel-container {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.doctors-carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  will-change: transform;
  cursor: grab;
}

.doctors-carousel-track:active {
  cursor: grabbing;
}

/* Doctor Card */
.doctor-card {
  flex-shrink: 0;
  width: calc(25% - 18px);
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.doctor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

/* Doctor Image */
.doctor-image-wrapper {
  position: relative;
  overflow: hidden;
}

.doctor-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.doctor-card:hover .doctor-image img {
  transform: scale(1.05);
  filter: brightness(1.02);
}

.image-overlay-doc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0), rgba(0, 80, 6, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.doctor-card:hover .image-overlay-doc {
  opacity: 1;
}

/* Social Icons */
.doctor-social {
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  transition: bottom 0.3s ease;
}

.doctor-card:hover .doctor-social {
  bottom: 0;
}

.doctor-social a {
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.doctor-social a i {
  font-size: 0.8rem;
  color: var(--green-start);
  transition: all 0.3s ease;
}

.doctor-social a:hover {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  transform: translateY(-3px);
}

.doctor-social a:hover i {
  color: white;
}

/* Doctor Info */
.doctor-info {
  padding: 20px;
  text-align: center;
}

.doctor-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.doctor-card:hover .doctor-name {
  color: var(--green-start);
}

.doctor-role {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--green-start);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.doctor-experience {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.doctor-qualification {
  display: inline-block;
  background: rgba(40, 161, 51, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 8px;
}

.doctor-qualification span {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.65rem;
  color: var(--green-start);
}

/* Carousel Navigation */
.doctors-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid rgba(40, 161, 51, 0.2);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.doctors-nav:hover {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border-color: transparent;
  transform: translateY(-50%) scale(1.05);
}

.doctors-nav:hover i {
  color: white;
}

.doctors-nav i {
  font-size: 1rem;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.doctors-nav.prev {
  left: 2px;
}

.doctors-nav.next {
  right: 2px;
}

/* Carousel Dots */
.doctors-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.dot-doctor {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(40, 161, 51, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.dot-doctor.active {
  width: 28px;
  border-radius: 10px;
  background: var(--green-start);
}

.dot-doctor:hover {
  background: var(--green-start);
  transform: scale(1.1);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1100px) {
  .doctors-card {
    padding: 44px 40px;
  }
  
  .doctor-card {
    width: calc(33.333% - 16px);
  }
  
  .doctor-image {
    height: 260px;
  }
}

@media (max-width: 880px) {
  .doctors-section {
    padding: 10px 0;
  }
  
  .doctors-card {
    padding: 36px 28px;
  }
  
  .doctors-heading {
    font-size: 1.5rem;
  }
  
  .doctors-subtext {
    font-size: 0.8rem;
  }
  
  .doctor-card {
    width: calc(50% - 12px);
  }
  
  .doctor-image {
    height: 240px;
  }
  
  .doctors-nav.prev {
    left: 5px;
  }
  
  .doctors-nav.next {
    right: 5px;
  }
  
  .doctors-nav {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 650px) {
  .doctor-card {
    width: 100%;
  }
  
  .doctor-image {
    height: 280px;
  }
  
  .doctors-nav {
    display: none;
  }
}

@media (max-width: 550px) {
  .doctors-card {
    padding: 28px 20px;
  }
  
  .doctors-heading {
    font-size: 1.3rem;
  }
  
  .doctors-subtext {
    font-size: 0.75rem;
  }
  
  .doctors-label {
    font-size: 0.65rem;
  }
  
  .doctor-image {
    height: 260px;
  }
  
  .doctor-name {
    font-size: 0.95rem;
  }
  
  .doctor-role {
    font-size: 0.7rem;
  }
}

/* ----------------------FAQ section---------------------- */
/* ========== FAQ SECTION ========== */
.faq-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.02), rgba(0, 80, 6, 0.02));
}

/* Glass Card Container */
.faq-card {
  background: linear-gradient(135deg, #78b94d, var(--green-deep));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 52px 56px;
  border: 1px solid rgba(40, 161, 51, 0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.faq-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.faq-card:hover {
  box-shadow: 0 20px 40px rgba(0, 80, 6, 0.08);
}

/* Section Header */
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: white;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.faq-label .label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-start), var(--green-deep));
  border-radius: 2px;
}

.faq-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.gradient-text-faq {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  background-clip: text;
  -webkit-background-clip: text;
  color: white;
}

.faq-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}

/* FAQ Grid - Two Column Layout */
.faq-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* FAQ Item */
.faq-item {
  background: white;
  backdrop-filter: blur(4px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.5s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.05s; }
.faq-item:nth-child(2) { animation-delay: 0.1s; }
.faq-item:nth-child(3) { animation-delay: 0.15s; }
.faq-item:nth-child(4) { animation-delay: 0.2s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* FAQ Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.question-text {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: color 0.3s ease;
  flex: 1;
  padding-right: 12px;
}

.faq-item:hover .question-text {
  color: var(--green-start);
}

/* Toggle Button */
.faq-toggle {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-toggle:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(40, 161, 51, 0.3);
}

.faq-toggle i {
  font-size: 0.8rem;
  color: white;
  transition: transform 0.3s ease;
}

/* Active state - when FAQ is open */
.faq-item.active .faq-toggle i {
  transform: rotate(90deg);
}

.faq-item.active .question-text {
  color: var(--green-start);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 20px 18px 20px;
}

.faq-answer p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.faq-answer strong {
  color: var(--green-start);
  font-weight: 600;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .faq-card {
    padding: 44px 40px;
  }
  
  .faq-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 880px) {
  .faq-section {
    padding: 60px 0;
  }
  
  .faq-card {
    padding: 36px 28px;
  }
  
  .faq-heading {
    font-size: 1.5rem;
  }
  
  .faq-subtext {
    font-size: 0.8rem;
  }
  
  .faq-grid {
    flex-direction: column;
  }
  
  .faq-column {
    width: 100%;
  }
  
  .question-text {
    font-size: 0.85rem;
  }
  
  .faq-question {
    padding: 16px 18px;
  }
  
  .faq-answer p {
    font-size: 0.75rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 18px 16px 18px;
  }
}

@media (max-width: 550px) {
  .faq-card {
    padding: 28px 20px;
  }
  
  .faq-heading {
    font-size: 1.3rem;
  }
  
  .faq-subtext {
    font-size: 0.75rem;
  }
  
  .faq-label {
    font-size: 0.65rem;
  }
  
  .question-text {
    font-size: 0.8rem;
  }
  
  .faq-question {
    padding: 14px 16px;
  }
  
  .faq-toggle {
    width: 28px;
    height: 28px;
  }
  
  .faq-toggle i {
    font-size: 0.7rem;
  }
  
  .faq-answer p {
    font-size: 0.7rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 16px 14px 16px;
  }
}
/* ----------------------------------------FAQ SECTION--------------------------- */
/* ========== GALLERY SECTION ========== */
.gallery-section {
  padding: 10px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.02), rgba(0, 80, 6, 0.02));
}

/* Glass Card Container */
.gallery-card {
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 52px 56px;
  border: 1px solid rgba(40, 161, 51, 0.1);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.gallery-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.gallery-card:hover {
  box-shadow: 0 20px 40px rgba(0, 80, 6, 0.08);
}

/* Section Header */
.gallery-header {
  text-align: center;
  margin-bottom: 48px;
}

.gallery-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--green-start);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.gallery-label .label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-start), var(--green-deep));
  border-radius: 2px;
}

.gallery-heading {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.gradient-text-gallery {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.gallery-subtext {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Gallery Item */
.gallery-item {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.05s; }
.gallery-item:nth-child(2) { animation-delay: 0.1s; }
.gallery-item:nth-child(3) { animation-delay: 0.15s; }
.gallery-item:nth-child(4) { animation-delay: 0.2s; }
.gallery-item:nth-child(5) { animation-delay: 0.25s; }
.gallery-item:nth-child(6) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Comparison Slider */
.comparison-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: ew-resize;
  background: #f0f0f0;
  aspect-ratio: 5 / 4;
}

.comparison-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.comparison-before,
.comparison-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.comparison-after {
  clip-path: inset(0 50% 0 0);
}

.comparison-slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: white;
  transform: translateX(-50%);
  cursor: ew-resize;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.comparison-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  box-shadow: 0 4px 15px rgba(0, 80, 6, 0.3);
  transition: all 0.2s ease;
  z-index: 11;
}

.comparison-handle i {
  color: white;
  font-size: 1rem;
}

.gallery-item:hover .comparison-handle {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(40, 161, 51, 0.4);
}

/* Labels */
.comparison-label {
  position: absolute;
  top: 16px;
  padding: 4px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  z-index: 5;
}

.before-label {
  left: 16px;
}

.after-label {
  right: 16px;
}

/* Gallery Info */
.gallery-info {
  padding: 20px;
  text-align: center;
}

.gallery-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.gallery-item:hover .gallery-title {
  color: var(--green-start);
}

.gallery-description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .gallery-card {
    padding: 44px 40px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .gallery-heading {
    font-size: 1.6rem;
  }
}

@media (max-width: 880px) {
  .gallery-section {
    padding: 10px 0;
  }
  
  .gallery-card {
    padding: 36px 28px;
  }
  
  .gallery-heading {
    font-size: 1.5rem;
  }
  
  .gallery-subtext {
    font-size: 0.8rem;
  }
  
  .comparison-handle {
    width: 38px;
    height: 38px;
  }
  
  .comparison-handle i {
    font-size: 0.85rem;
  }
}

@media (max-width: 650px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .comparison-handle {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 550px) {
  .gallery-card {
    padding: 28px 20px;
  }
  
  .gallery-heading {
    font-size: 1.3rem;
  }
  
  .gallery-subtext {
    font-size: 0.75rem;
  }
  
  .gallery-label {
    font-size: 0.65rem;
  }
  
  .gallery-title {
    font-size: 0.9rem;
  }
  
  .gallery-description {
    font-size: 0.7rem;
  }
  
  .comparison-label {
    font-size: 0.6rem;
    padding: 3px 10px;
  }
  
  .comparison-handle {
    width: 36px;
    height: 36px;
  }
}
/* ------------------CONTACT US ----------- */
/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 80px 0;
  position: relative;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.02), rgba(0, 80, 6, 0.02));
}

/* Contact Wrapper - Overlapping Cards Layout */
.contact-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 550px;
}

/* ========== LEFT CARD - CONTACT INFO (GRADIENT GREEN) ========== */
.contact-info-card {
  flex: 1;
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: white;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 80, 6, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInLeft 0.6s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(0, 80, 6, 0.25);
}

/* Info Header */
.info-header {
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 16px;
}

.info-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.info-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  opacity: 0.85;
}

/* Info Items */
.info-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.info-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.info-item:hover .info-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.info-icon i {
  font-size: 1rem;
  color: white;
}

.info-content h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.info-content p {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.9;
  margin: 0;
}

.info-content a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.info-content a:hover {
  opacity: 0.8;
}

.info-small {
  font-size: 0.65rem !important;
  opacity: 0.7 !important;
  margin-top: 2px !important;
}

/* Social Icons */
.info-social {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon i {
  color: white;
  font-size: 0.85rem;
}

.social-icon:hover {
  background: white;
  transform: translateY(-3px);
}

.social-icon:hover i {
  color: var(--green-start);
}

/* ========== RIGHT CARD - CONTACT FORM (GLASS) ========== */
.contact-form-card {
  flex: 1.5;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(40, 161, 51, 0.1);
  margin-left: -20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 80, 6, 0.08);
}

/* Form Header */
.form-header {
  margin-bottom: 28px;
}

.form-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: black;
}

/* Form Layout */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  width: 100%;
}

.form-group label {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--text-primary);
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: #f1f5f3;
  border: 1px solid rgba(40, 161, 51, 0.15);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: black;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-start);
  box-shadow: 0 0 0 3px rgba(40, 161, 51, 0.1);
  background: white;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2328a133' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg, var(--green-start), var(--green-deep));
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}

.btn-submit i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.btn-submit:hover i {
  transform: translateX(4px);
}

/* Form Note */
.form-note {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: black;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-note i {
  font-size: 0.6rem;
  color: var(--green-start);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  
  .contact-info-card {
    margin-bottom: 0;
  }
  
  .contact-form-card {
    margin-left: 0;
  }
  
  .form-row {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 880px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 32px 24px;
  }
  
  .info-title {
    font-size: 1.3rem;
  }
  
  .form-title {
    font-size: 1.3rem;
  }
}

@media (max-width: 550px) {
  .contact-info-card,
  .contact-form-card {
    padding: 28px 20px;
  }
  
  .info-item {
    gap: 12px;
  }
  
  .info-icon {
    width: 36px;
    height: 36px;
  }
  
  .info-icon i {
    font-size: 0.85rem;
  }
  
  .info-content h4 {
    font-size: 0.8rem;
  }
  
  .info-content p {
    font-size: 0.7rem;
  }
  
  .form-title {
    font-size: 1.2rem;
  }
  
  .form-subtitle {
    font-size: 0.75rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
  
  .btn-submit {
    padding: 12px 24px;
    font-size: 0.8rem;
  }
}
/* ----------------------footer--------------- */
/* ========== FOOTER SECTION ========== */
.footer-section {
  background: linear-gradient(135deg, #003d06, #005006);
  position: relative;
  padding: 60px 0 0;
  margin-top: 0;
}

/* Subtle gradient overlay at top */
.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #28a133, #ffffff, #28a133);
}

.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Footer Grid - 4 Columns */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Column */
.footer-col {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.footer-col.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* COLUMN 1: Logo & Description */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  background: linear-gradient(135deg, #ffffff, #28a133);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.footer-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 50px;
  width: fit-content;
}

.footer-trust-badge i {
  font-size: 0.8rem;
  color: #28a133;
}

.footer-trust-badge span {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Column Titles */
.footer-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 35px;
  height: 2px;
  background: linear-gradient(90deg, #28a133, #ffffff);
  border-radius: 2px;
}

/* Quick Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #28a133;
  transform: translateX(5px);
}

/* Contact Info */
.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact li i {
  width: 18px;
  font-size: 0.85rem;
  color: #28a133;
  margin-top: 2px;
}

.footer-contact li span,
.footer-contact li a {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #28a133;
}

/* Map Section */
.footer-map {
  position: relative;
  margin-bottom: 16px;
}

.map-preview {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1a472a;
}

.map-preview img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.map-preview:hover .map-overlay {
  opacity: 1;
}

.map-preview:hover img {
  opacity: 0.6;
}

.view-map-btn {
  background: linear-gradient(135deg, #28a133, #005006);
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.view-map-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.footer-hours {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-hours i {
  color: #28a133;
  font-size: 0.7rem;
}

/* Bottom Bar */
.footer-bottom {
  padding: 25px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-legal a {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #28a133;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.7rem;
}

.footer-social-bottom {
  display: flex;
  gap: 12px;
}

.social-bottom-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-bottom-icon i {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-bottom-icon:hover {
  background: #28a133;
  transform: translateY(-3px);
}

.social-bottom-icon:hover i {
  color: white;
}

/* ========== RESPONSIVE FOOTER ========== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .footer-container {
    padding: 0 32px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 50px 0 0;
  }
  
  .footer-container {
    padding: 0 24px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .footer-social-bottom {
    justify-content: center;
  }
}

@media (max-width: 650px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-trust-badge {
    margin: 0 auto;
  }
  
  .footer-contact li {
    justify-content: center;
  }
  
  .footer-hours {
    justify-content: center;
  }
  
  .map-preview {
    max-width: 300px;
    margin: 0 auto;
  }
  
  .footer-links a:hover {
    transform: translateX(0);
  }
}

@media (max-width: 550px) {
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-logo-text {
    font-size: 1.1rem;
  }
  
  .footer-description {
    font-size: 0.75rem;
  }
  
  .footer-title {
    font-size: 0.95rem;
  }
  
  .footer-links a,
  .footer-contact li span,
  .footer-contact li a {
    font-size: 0.75rem;
  }
}
/* ----------------------------------------------------------------------------- */
/* ======================Years of Dental Excellence============================== */
/* ========== STATISTICS SECTION - EXACT MATCH ========== */
:root {
  --green-deep: #2e7d32;
  --stats-gradient-start: #78b94d;
  --stats-shadow: rgba(0, 0, 0, 0.08);
}

.stats-section {
  padding: 10px 0;
  background: var(--bg-soft-green);
}

.stats-wrapper {
  background: linear-gradient(135deg, #78b94d, var(--green-deep));
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Two Column Header Layout */
.stats-header-row {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}

.stats-header-left {
  flex: 1;
}

.stats-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  color: white;
  margin: 0;
}

.stats-title-highlight {
  position: relative;
  display: inline-block;
}

.stats-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
  z-index: 0;
}

.stats-header-right {
  flex: 1;
}

.stats-description {
  font-family: 'intere', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Stats Grid - 4 Columns */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Stat Card */
.stat-card {
  background: white;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 4px 15px var(--stats-shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

/* Hidden Background Image for Hover */
.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('https://images.pexels.com/photos/3845757/pexels-photo-3845757.jpeg?auto=compress&cs=tinysrgb&w=600&h=400&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

/* Different background images for each card */
.stat-card:nth-child(1)::before {
  background-image: url('image/ChatGPT Image May 4, 2026, 02_38_36 PM.png');
}

.stat-card:nth-child(2)::before {
  background-image: url('image/ChatGPT Image May 4, 2026, 02_57_12 PM.png');
}

.stat-card:nth-child(3)::before {
  background-image: url('image/ChatGPT Image May 4, 2026, 03_02_32 PM.png');
}

.stat-card:nth-child(4)::before {
  background-image: url('image/ChatGPT Image May 4, 2026, 03_05_49 PM.png');
}

/* Green Overlay on Hover Background */
.stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 125, 50, 0.88), rgba(46, 125, 50, 0.92));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.stat-card-inner {
  position: relative;
  z-index: 2;
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Icon */
.stat-icon {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.stat-icon svg {
  transition: all 0.3s ease;
}

/* Number */
.stat-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  margin-bottom: 12px;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--green-deep);
  transition: color 0.3s ease;
}

.stat-suffix {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--green-deep);
  transition: color 0.3s ease;
}

/* Label */
.stat-label {
  font-family: 'inter', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: #5a6e64;
  transition: color 0.3s ease;
}

/* HOVER EFFECT - Background Reveal */
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card:hover .stat-icon svg {
  stroke: white;
}

.stat-card:hover .stat-number,
.stat-card:hover .stat-suffix {
  color: white;
}

.stat-card:hover .stat-label {
  color: rgba(255, 255, 255, 0.85);
}

.stat-card:hover .stat-icon {
  transform: scale(1.05);
}

/* Reveal Animation */
.stat-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Animation */
.stat-card:nth-child(1).revealed { transition-delay: 0.05s; }
.stat-card:nth-child(2).revealed { transition-delay: 0.1s; }
.stat-card:nth-child(3).revealed { transition-delay: 0.15s; }
.stat-card:nth-child(4).revealed { transition-delay: 0.2s; }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1100px) {
  .stats-wrapper {
    padding: 48px 40px;
  }
  
  .stats-title {
    font-size: 32px;
  }
  
  .stats-description {
    font-size: 13x;
  }
  
  .stat-number,
  .stat-suffix {
    font-size: 36px;
  }
}

@media (max-width: 880px) {
  .stats-section {
    padding: 50px 0;
  }
  
  .stats-wrapper {
    padding: 40px 32px;
  }
  
  .stats-header-row {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
  }
  
  .stats-title {
    font-size: 28px;
    text-align: center;
  }
  
  .stats-description {
    text-align: center;
    font-size: 13px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .stat-number,
  .stat-suffix {
    font-size: 32px;
  }
  
  .stat-label {
    font-size: 13px;
  }
  
  .stat-card-inner {
    padding: 28px 16px;
  }
}

@media (max-width: 550px) {
  .stats-section {
    padding: 40px 0;
  }
  
  .stats-wrapper {
    padding: 32px 24px;
  }
  
  .stats-title {
    font-size: 24px;
  }
  
  .stats-description {
    font-size: 13px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-number,
  .stat-suffix {
    font-size: 38px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .stat-card-inner {
    padding: 24px 20px;
  }
}

/* ========== MODERN HERO BANNER - COMPACT VERSION ========== */
.hero-modern {
  position: relative;
  min-height: auto;  /* Changed from 100vh */
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
  padding: 30px 0;  /* Reduced padding */
}

/* Background with subtle gradient (not too green) */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-bottom: 60px;
  height: 100%;
  background: radial-gradient(circle at 80% 30%, rgba(120, 185, 77, 0.08), transparent 70%);
}

/* Animated particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 40%, rgba(120, 185, 77, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(120, 185, 77, 0.08) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px;
  animation: floatParticles 20s linear infinite;
}

@keyframes floatParticles {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50px); }
}

.hero-container-modern {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;  /* Removed top/bottom padding */
}

.hero-grid-modern {
  display: flex;
  align-items: center;
  gap: 50px;  /* Reduced from 60px */
  flex-wrap: wrap;
}

/* ========== LEFT CONTENT ========== */
.hero-content-modern {
  flex: 1.1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(120, 185, 77, 0.12);
  padding: 6px 16px;  /* Reduced padding */
  border-radius: 50px;
  margin-bottom: 16px;  /* Reduced from 24px */
  font-family: 'Poppins', sans-serif;
  font-size: 12px;  /* Slightly smaller */
  font-weight: 500;
  color: #2e7d32;
}

.badge-dot {
  width: 6px;  /* Smaller */
  height: 6px;  /* Smaller */
  background: #78b94d;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title-modern {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;  /* Reduced from 48px */
  font-weight: 700;
  line-height: 1.2;
  color: #1a2e24;
  margin-bottom: 14px;  /* Reduced from 20px */
}

.hero-highlight {
  background: linear-gradient(135deg, #78b94d, #2e7d32);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  position: relative;
}

.hero-description-modern {
  font-family: 'Inter', sans-serif;
  font-size: 14px;  /* Reduced from 16px */
  line-height: 1.5;  /* Tighter line height */
  color: #5a6e64;
  margin-bottom: 20px;  /* Reduced from 28px */
  max-width: 90%;
}

/* Hero Features */
.hero-features {
  display: flex;
  gap: 20px;  /* Reduced from 24px */
  margin-bottom: 22px;  /* Reduced from 32px */
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 6px;  /* Reduced */
  font-family: 'Inter', sans-serif;
  font-size: 13px;  /* Reduced from 14px */
  color: #1a2e24;
}

.hero-feature i {
  color: #78b94d;
  font-size: 14px;  /* Reduced */
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 14px;  /* Reduced from 16px */
  margin-bottom: 22px;  /* Reduced from 32px */
  flex-wrap: wrap;
}

.btn-primary-modern {
  background: linear-gradient(135deg, #78b94d, #2e7d32);
  border: none;
  padding: 10px 28px;  /* Reduced from 14px 32px */
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;  /* Reduced from 15px */
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(46, 125, 50, 0.25);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);  /* Reduced movement */
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.35);
}

.btn-primary-modern i {
  transition: transform 0.3s ease;
}

.btn-primary-modern:hover i {
  transform: translateX(5px);
}

.btn-outline-modern {
  background: transparent;
  border: 2px solid #78b94d;
  padding: 8px 26px;  /* Reduced from 12px 28px */
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;  /* Reduced from 15px */
  font-weight: 600;
  color: #2e7d32;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-modern:hover {
  background: #78b94d;
  color: white;
  transform: translateY(-2px);
}

/* Trust Badge */
.hero-trust-badge {
  display: flex;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;  /* Reduced from 13px */
  color: #5a6e64;
}

.trust-item i {
  color: #ffc107;
  font-size: 12px;  /* Reduced */
}

/* ========== RIGHT SIDE - IMAGE STACK + FORM ========== */
.hero-right-modern {
  flex: 1;
  position: relative;
}

/* Animated Image Stack - COMPACT */
.hero-image-stack {
  position: relative;
  height: 80px;
  margin-bottom: 20px;
  background-color: transparent;
}

.floating-image {
  position: absolute;
  border-radius: 20px;  /* Slightly smaller */
  overflow: hidden;
  /* box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1); */
  transition: all 0.5s ease;
}

.floating-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.floating-image:hover img {
  transform: scale(1.05);
}

.img-1 {
  top: 0;
  left: 0;
  width: 150px;  /* Reduced from 280px */
  height: 150px;  /* Reduced from 320px */
  z-index: 3;
  animation: floatImage 6s ease-in-out infinite;
}

/* .img-2 {
  bottom: 10px;  
  right: 20px;  
  width: 160px;  
  height: 160px;  
  z-index: 2;
  animation: floatImage 6s ease-in-out infinite 1s;
} */

.img-3 {
  top: 200%;
  right: 0;
  width: 120px;  /* Reduced from 180px */
  height: 120px;  /* Reduced from 180px */
  z-index: 1;
  animation: floatImage 6s ease-in-out infinite 2s;
}

@keyframes floatImage {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }  /* Reduced movement */
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(120, 185, 77, 0.1), rgba(46, 125, 50, 0.05));
  z-index: 0;
}

.shape-1 {
  width: 250px;  /* Reduced from 350px */
  height: 250px;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  animation: rotateShape 20s linear infinite;
}

.shape-2 {
  width: 150px;  /* Reduced from 200px */
  height: 150px;
  bottom: 0;
  right: 15%;
  animation: rotateShape 15s linear infinite reverse;
}

@keyframes rotateShape {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Modern Glass Form - More Compact */
.hero-form-modern {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 24px;  /* Slightly smaller */
  padding: 20px 24px;  /* Reduced from 28px 30px */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 380px;  /* Reduced from 420px */
  margin: 0 auto;
   margin: -20px auto 50px;
}

.form-header-modern {
  text-align: center;
  margin-bottom: 16px;  /* Reduced from 24px */
}

.form-title-modern {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;  /* Reduced from 22px */
  font-weight: 600;
  color: #1a2e24;
  margin-bottom: 4px;
}

.form-subtitle-modern {
  font-family: 'Inter', sans-serif;
  font-size: 12px;  /* Reduced from 13px */
  color: #8a9e94;
}

.booking-form-modern {
  display: flex;
  flex-direction: column;
  gap: 10px;  /* Reduced from 14px */
}

.form-group-modern {
  position: relative;
  display: flex;
  align-items: center;
}

.form-group-modern i {
  position: absolute;
  left: 12px;  /* Reduced */
  color: #78b94d;
  font-size: 13px;  /* Reduced */
}

.form-group-modern input,
.form-group-modern select {
  width: 100%;
  padding: 10px 12px 10px 38px;  /* Reduced padding */
  border: 1px solid #e5e8ec;
  border-radius: 12px;  /* Slightly smaller */
  font-family: 'Inter', sans-serif;
  font-size: 13px;  /* Reduced */
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-group-modern input:focus,
.form-group-modern select:focus {
  outline: none;
  border-color: #78b94d;
  box-shadow: 0 0 0 3px rgba(120, 185, 77, 0.1);
  background: white;
}

.form-row-modern {
  display: flex;
  gap: 10px;  /* Reduced from 12px */
}

.form-group-modern.half {
  flex: 1;
}

.btn-submit-modern {
  width: 100%;
  background: linear-gradient(135deg, #78b94d, #2e7d32);
  border: none;
  padding: 11px;  /* Reduced from 14px */
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;  /* Reduced from 15px */
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
}

.form-footer-modern {
  display: flex;
  justify-content: center;
  gap: 15px;  /* Reduced from 20px */
  margin-top: 14px;  /* Reduced from 18px */
  padding-top: 10px;  /* Reduced from 14px */
  border-top: 1px solid #e5e8ec;
}

.form-footer-modern span {
  font-family: 'Inter', sans-serif;
  font-size: 10px;  /* Reduced from 11px */
  color: #8a9e94;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-footer-modern i {
  color: #78b94d;
  font-size: 10px;
}

/* Animations */
.fade-up {
  animation: fadeUp 0.8s ease forwards;
}

.fade-up-delayed {
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1100px) {
  .hero-title-modern {
    font-size: 36px;
  }
  
  .hero-grid-modern {
    gap: 35px;
  }
  
  .hero-image-stack {
    height: 320px;
    background: none;
  }
  
  .img-1 {
    width: 180px;
    height: 210px;
  }
  
  .img-2 {
    width: 140px;
    height: 140px;
  }
  
  .img-3 {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 880px) {
  .hero-modern {
    padding: 25px 0;
  }
  
  .hero-container-modern {
    padding: 0 24px;
  }
  
  .hero-grid-modern {
    flex-direction: column;
    gap: 30px;
  }
  
  .hero-content-modern {
    text-align: center;
  }
  
  .hero-description-modern {
    max-width: 100%;
  }
  
  .hero-features {
    justify-content: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-trust-badge {
    justify-content: center;
  }
  
  .hero-image-stack {
    height: 300px;
    margin-bottom: 15px;
    background: none;
  }
  
  .hero-right-modern {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero-form-modern {
    width: 100%;
    max-width: 450px;
  }
}

@media (max-width: 550px) {
  .hero-title-modern {
    font-size: 28px;
  }
  
  .hero-description-modern {
    font-size: 13px;
  }
  
  .hero-features {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-primary-modern,
  .btn-outline-modern {
    width: 100%;
    justify-content: center;
  }
  
  .hero-image-stack {
    height: 260px;
  }
  
  .img-1 {
    width: 150px;
    height: 180px;
  }
  
  .img-2 {
    width: 120px;
    height: 120px;
    right: 5px;
  }
  
  .img-3 {
    width: 90px;
    height: 90px;
  }
  
  .hero-form-modern {
    padding: 18px 16px;
  }
  
  .form-row-modern {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-title-modern {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .hero-image-stack {
    display: none;
  }
}

/* ========== FEATURE CARDS SECTION - CENTERED + COMPACT ========== */
.feature-cards-section {
  position: relative;
  z-index: 10;
  margin-top: -40px;  /* Overlaps the banner bottom */
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
}

.feature-container {
  max-width: 1100px;  /* Reduced from 1320px */
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;  /* Limits maximum width */
  margin: 0 auto;  /* Centers the grid */
}

/* Feature Card - COMPACT SIZE */
.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 18px;  /* Slightly smaller */
  padding: 20px 18px;  /* Reduced padding */
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(40, 161, 51, 0.08);
  overflow: hidden;
  max-width: 280px;  /* Limits card width */
  margin: 0 auto;  /* Centers each card */
  width: 100%;
}

/* Top accent line */
.card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #28a133, #005006);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover .card-top-accent {
  transform: scaleX(1);
}

/* Icon Container - SMALLER */
.feature-icon {
  width: 60px;  /* Reduced from 70px */
  height: 60px;  /* Reduced from 70px */
  margin: 0 auto 14px;  /* Reduced margin */
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.12), rgba(0, 80, 6, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 24px;  /* Reduced from 28px */
  color: #28a133;
  transition: all 0.3s ease;
}

/* Title - SMALLER */
.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;  /* Reduced from 16px */
  font-weight: 600;
  color: #1a2e24;
  margin-bottom: 8px;  /* Reduced margin */
  transition: color 0.3s ease;
}

/* Description - SMALLER */
.feature-description {
  font-family: 'Inter', sans-serif;
  font-size: 12px;  /* Reduced from 13px */
  font-weight: 400;
  line-height: 1.5;
  color: #5a6e64;
  margin: 0;
}

/* Hover Effects */
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 80, 6, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #28a133, #005006);
  transform: scale(1.05);
}

.feature-card:hover .feature-icon i {
  color: white;
}

.feature-card:hover .feature-title {
  color: #28a133;
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation */
.feature-card:nth-child(1).revealed { transition-delay: 0.05s; }
.feature-card:nth-child(2).revealed { transition-delay: 0.1s; }
.feature-card:nth-child(3).revealed { transition-delay: 0.15s; }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 20px;
    max-width: 750px;
  }
  
  .feature-card {
    padding: 18px 16px;
    max-width: 260px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .feature-icon i {
    font-size: 22px;
  }
  
  .feature-title {
    font-size: 14px;
  }
  
  .feature-description {
    font-size: 11px;
  }
}

@media (max-width: 880px) {
  .feature-cards-section {
    margin-top: -30px;
    padding-bottom: 50px;
  }
  
  .feature-container {
    padding: 0 24px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 550px;
  }
  
  .feature-card {
    padding: 18px 14px;
    max-width: 260px;
  }
  
  .feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
  
  .feature-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .feature-description {
    font-size: 11px;
  }
}

@media (max-width: 580px) {
  .feature-cards-section {
    margin-top: -20px;
    padding-bottom: 40px;
  }
  
  .feature-container {
    padding: 0 20px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 300px;
  }
  
  .feature-card {
    padding: 16px 14px;
    max-width: 100%;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
  
  .feature-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  
  .feature-description {
    font-size: 11px;
  }
}
/* ========== FEATURE CARDS SECTION - CENTERED + COMPACT ========== */
.feature-cards-section {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
}

.feature-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Feature Card - Default State */
.feature-card {
  position: relative;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 20px 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(40, 161, 51, 0.08);
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
  width: 100%;
}

/* ========== FIRST CARD - ACTIVE/DIFFERENT COLOR (DEFAULT) ========== */
.feature-card:nth-child(1) {
  background: linear-gradient(135deg, #78b94d, #2e7d32);
  border: none;
}

.feature-card:nth-child(1) .feature-icon {
  background: white;
}

.feature-card:nth-child(1) .feature-icon i {
  color: #2e7d32;
}

.feature-card:nth-child(1) .feature-title {
  color: white;
}

.feature-card:nth-child(1) .feature-description {
  color: rgba(255, 255, 255, 0.9);
}

.feature-card:nth-child(1) .card-top-accent {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
}

/* First card hover effect - slight enhancement */
.feature-card:nth-child(1):hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.3);
}

.feature-card:nth-child(1):hover .feature-icon {
  background: white;
  transform: scale(1.05);
}

.feature-card:nth-child(1):hover .feature-icon i {
  color: #2e7d32;
}

/* ========== SECOND & THIRD CARDS - DEFAULT STYLE ========== */
.feature-card:nth-child(2),
.feature-card:nth-child(3) {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.12), rgba(0, 80, 6, 0.08));
}

.feature-card:nth-child(2) .feature-icon i,
.feature-card:nth-child(3) .feature-icon i {
  color: #28a133;
}

.feature-card:nth-child(2) .feature-title,
.feature-card:nth-child(3) .feature-title {
  color: #1a2e24;
}

.feature-card:nth-child(2) .feature-description,
.feature-card:nth-child(3) .feature-description {
  color: #5a6e64;
}

/* Second & Third card hover effects */
.feature-card:nth-child(2):hover,
.feature-card:nth-child(3):hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 80, 6, 0.12);
  background: rgba(255, 255, 255, 0.98);
}

.feature-card:nth-child(2):hover .feature-icon,
.feature-card:nth-child(3):hover .feature-icon {
  background: linear-gradient(135deg, #28a133, #005006);
  transform: scale(1.05);
}

.feature-card:nth-child(2):hover .feature-icon i,
.feature-card:nth-child(3):hover .feature-icon i {
  color: white;
}

.feature-card:nth-child(2):hover .feature-title,
.feature-card:nth-child(3):hover .feature-title {
  color: #28a133;
}

/* Top accent line */
.card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #28a133, #005006);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover .card-top-accent {
  transform: scaleX(1);
}

/* Icon Container */
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 24px;
  transition: all 0.3s ease;
}

/* Title */
.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

/* Description */
.feature-description {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation */
.feature-card:nth-child(1).revealed { transition-delay: 0.05s; }
.feature-card:nth-child(2).revealed { transition-delay: 0.1s; }
.feature-card:nth-child(3).revealed { transition-delay: 0.15s; }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 20px;
    max-width: 750px;
  }
  
  .feature-card {
    padding: 18px 16px;
    max-width: 260px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .feature-icon i {
    font-size: 22px;
  }
  
  .feature-title {
    font-size: 14px;
  }
  
  .feature-description {
    font-size: 11px;
  }
}

@media (max-width: 880px) {
  .feature-cards-section {
    margin-top: -30px;
    padding-bottom: 50px;
  }
  
  .feature-container {
    padding: 0 24px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 550px;
  }
  
  .feature-card {
    padding: 18px 14px;
    max-width: 260px;
  }
  
  /* Keep first card styling on tablet */
  .feature-card:nth-child(1) {
    background: linear-gradient(135deg, #78b94d, #2e7d32);
  }
  
  .feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
}

@media (max-width: 580px) {
  .feature-cards-section {
    margin-top: -20px;
    padding-bottom: 40px;
  }
  
  .feature-container {
    padding: 0 20px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 300px;
  }
  
  .feature-card {
    padding: 16px 14px;
    max-width: 100%;
  }
  
  /* Keep first card styling on mobile */
  .feature-card:nth-child(1) {
    background: linear-gradient(135deg, #78b94d, #2e7d32);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
}
/* ========== FEATURE CARDS SECTION - CENTERED + COMPACT ========== */
.feature-cards-section {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
}

.feature-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Feature Card - Default State */
.feature-card {
  position: relative;
  border-radius: 18px;
  padding: 20px 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
  width: 100%;
}

/* ========== CARD 1 - GREEN GRADIENT (ALWAYS GREEN - NO CHANGE ON HOVER) ========== */
.feature-card:nth-child(1) {
  background: linear-gradient(135deg, #78b94d, #2e7d32);
  border: none;
}

.feature-card:nth-child(1) .feature-icon {
  background: white;
}

.feature-card:nth-child(1) .feature-icon i {
  color: #2e7d32;
}

.feature-card:nth-child(1) .feature-title {
  color: white;
}

.feature-card:nth-child(1) .feature-description {
  color: rgba(255, 255, 255, 0.9);
}

.feature-card:nth-child(1) .card-top-accent {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
}

/* Card 1 hover - NO COLOR CHANGE, only lift and shadow */
.feature-card:nth-child(1):hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.3);
  /* Background remains green gradient */
}

.feature-card:nth-child(1):hover .feature-icon {
  background: white;
  transform: scale(1.05);
}

.feature-card:nth-child(1):hover .feature-icon i {
  color: #2e7d32;
}

.feature-card:nth-child(1):hover .feature-title {
  color: white;
}

.feature-card:nth-child(1):hover .feature-description {
  color: rgba(255, 255, 255, 0.9);
}

/* ========== CARD 2 - WHITE GLASS (NEVER CHANGES TO GREEN) ========== */
.feature-card:nth-child(2) {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(40, 161, 51, 0.08);
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.12), rgba(0, 80, 6, 0.08));
}

.feature-card:nth-child(2) .feature-icon i {
  color: #28a133;
}

.feature-card:nth-child(2) .feature-title {
  color: #1a2e24;
}

.feature-card:nth-child(2) .feature-description {
  color: #5a6e64;
}

.feature-card:nth-child(2) .card-top-accent {
  background: linear-gradient(90deg, #28a133, #005006);
}

/* Card 2 hover - NO GREEN, only lift and subtle changes */
.feature-card:nth-child(2):hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
  /* Background remains white glass */
}

.feature-card:nth-child(2):hover .feature-icon {
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.2), rgba(0, 80, 6, 0.15));
  transform: scale(1.05);
}

.feature-card:nth-child(2):hover .feature-icon i {
  color: #28a133;
}

.feature-card:nth-child(2):hover .feature-title {
  color: #28a133;
}

/* ========== CARD 3 - WHITE GLASS (CHANGES TO GREEN ONLY ON HOVER) ========== */
.feature-card:nth-child(3) {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(40, 161, 51, 0.08);
}

.feature-card:nth-child(3) .feature-icon {
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.12), rgba(0, 80, 6, 0.08));
}

.feature-card:nth-child(3) .feature-icon i {
  color: #28a133;
}

.feature-card:nth-child(3) .feature-title {
  color: #1a2e24;
}

.feature-card:nth-child(3) .feature-description {
  color: #5a6e64;
}

.feature-card:nth-child(3) .card-top-accent {
  background: linear-gradient(90deg, #28a133, #005006);
}

/* Card 3 hover - CHANGES TO GREEN GRADIENT on hover only */
.feature-card:nth-child(3):hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.25);
  background: linear-gradient(135deg, #78b94d, #2e7d32);
  border: none;
}

.feature-card:nth-child(3):hover .feature-icon {
  background: white;
  transform: scale(1.05);
}

.feature-card:nth-child(3):hover .feature-icon i {
  color: #2e7d32;
}

.feature-card:nth-child(3):hover .feature-title {
  color: white;
}

.feature-card:nth-child(3):hover .feature-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Top accent line */
.card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover .card-top-accent {
  transform: scaleX(1);
}

/* Icon Container */
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 24px;
  transition: all 0.3s ease;
}

/* Title */
.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

/* Description */
.feature-description {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation */
.feature-card:nth-child(1).revealed { transition-delay: 0.05s; }
.feature-card:nth-child(2).revealed { transition-delay: 0.1s; }
.feature-card:nth-child(3).revealed { transition-delay: 0.15s; }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 20px;
    max-width: 750px;
  }
  
  .feature-card {
    padding: 18px 16px;
    max-width: 260px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .feature-icon i {
    font-size: 22px;
  }
  
  .feature-title {
    font-size: 14px;
  }
  
  .feature-description {
    font-size: 11px;
  }
}

@media (max-width: 880px) {
  .feature-cards-section {
    margin-top: -30px;
    padding-bottom: 50px;
  }
  
  .feature-container {
    padding: 0 24px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 550px;
  }
  
  .feature-card {
    padding: 18px 14px;
    max-width: 260px;
  }
  
  .feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
}

@media (max-width: 580px) {
  .feature-cards-section {
    margin-top: -20px;
    padding-bottom: 40px;
  }
  
  .feature-container {
    padding: 0 20px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 300px;
  }
  
  .feature-card {
    padding: 16px 14px;
    max-width: 100%;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
}
/* ========== FEATURE CARDS SECTION - CENTERED + COMPACT ========== */
.feature-cards-section {
  position: relative;
  z-index: 10;
  margin-top: -40px;
  padding-bottom: 60px;
  display: flex;
  justify-content: center;
}

.feature-container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Feature Card - Default State */
.feature-card {
  position: relative;
  border-radius: 18px;
  padding: 20px 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  max-width: 280px;
  margin: 0 auto;
  width: 100%;
}

/* ========== CARD 1 - GREEN GRADIENT (ACTIVE) ========== */
.feature-card:nth-child(1) {
  background: linear-gradient(135deg, #78b94d, #2e7d32);
  border: none;
}

.feature-card:nth-child(1) .feature-icon {
  background: white;
}

.feature-card:nth-child(1) .feature-icon i {
  color: #2e7d32;
}

.feature-card:nth-child(1) .feature-title {
  color: white;
}

.feature-card:nth-child(1) .feature-description {
  color: rgba(255, 255, 255, 0.9);
}

.feature-card:nth-child(1) .card-top-accent {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
}

/* Card 1 hover - lift only, no color change */
.feature-card:nth-child(1):hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.3);
}

.feature-card:nth-child(1):hover .feature-icon {
  background: white;
  transform: scale(1.05);
}

.feature-card:nth-child(1):hover .feature-icon i {
  color: #2e7d32;
}

/* ========== CARD 2 - WHITE GLASS (ACTIVE) ========== */
.feature-card:nth-child(2) {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(40, 161, 51, 0.08);
}

.feature-card:nth-child(2) .feature-icon {
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.12), rgba(0, 80, 6, 0.08));
}

.feature-card:nth-child(2) .feature-icon i {
  color: #28a133;
}

.feature-card:nth-child(2) .feature-title {
  color: #1a2e24;
}

.feature-card:nth-child(2) .feature-description {
  color: #5a6e64;
}

.feature-card:nth-child(2) .card-top-accent {
  background: linear-gradient(90deg, #28a133, #005006);
}

/* Card 2 hover - lift only, subtle changes */
.feature-card:nth-child(2):hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
}

.feature-card:nth-child(2):hover .feature-icon {
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.2), rgba(0, 80, 6, 0.15));
  transform: scale(1.05);
}

.feature-card:nth-child(2):hover .feature-icon i {
  color: #28a133;
}

.feature-card:nth-child(2):hover .feature-title {
  color: #28a133;
}

/* ========== CARD 3 - GREEN GRADIENT (ACTIVE - SAME AS CARD 1) ========== */
.feature-card:nth-child(3) {
  background: linear-gradient(135deg, #78b94d, #2e7d32);
  border: none;
}

.feature-card:nth-child(3) .feature-icon {
  background: white;
}

.feature-card:nth-child(3) .feature-icon i {
  color: #2e7d32;
}

.feature-card:nth-child(3) .feature-title {
  color: white;
}

.feature-card:nth-child(3) .feature-description {
  color: rgba(255, 255, 255, 0.9);
}

.feature-card:nth-child(3) .card-top-accent {
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
}

/* Card 3 hover - lift only, no color change */
.feature-card:nth-child(3):hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.3);
}

.feature-card:nth-child(3):hover .feature-icon {
  background: white;
  transform: scale(1.05);
}

.feature-card:nth-child(3):hover .feature-icon i {
  color: #2e7d32;
}

/* Top accent line */
.card-top-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover .card-top-accent {
  transform: scaleX(1);
}

/* Icon Container */
.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 24px;
  transition: all 0.3s ease;
}

/* Title */
.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

/* Description */
.feature-description {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, transform 0.3s ease, background 0.3s ease;
}

.feature-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation */
.feature-card:nth-child(1).revealed { transition-delay: 0.05s; }
.feature-card:nth-child(2).revealed { transition-delay: 0.1s; }
.feature-card:nth-child(3).revealed { transition-delay: 0.15s; }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 20px;
    max-width: 750px;
  }
  
  .feature-card {
    padding: 18px 16px;
    max-width: 260px;
  }
  
  .feature-icon {
    width: 55px;
    height: 55px;
  }
  
  .feature-icon i {
    font-size: 22px;
  }
  
  .feature-title {
    font-size: 14px;
  }
  
  .feature-description {
    font-size: 11px;
  }
}

@media (max-width: 880px) {
  .feature-cards-section {
    margin-top: -30px;
    padding-bottom: 50px;
  }
  
  .feature-container {
    padding: 0 24px;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 550px;
  }
  
  .feature-card {
    padding: 18px 14px;
    max-width: 260px;
  }
  
  .feature-card:nth-child(1),
  .feature-card:nth-child(3) {
    background: linear-gradient(135deg, #78b94d, #2e7d32);
  }
  
  .feature-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 12px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
}

@media (max-width: 580px) {
  .feature-cards-section {
    margin-top: -20px;
    padding-bottom: 40px;
  }
  
  .feature-container {
    padding: 0 20px;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 300px;
  }
  
  .feature-card {
    padding: 16px 14px;
    max-width: 100%;
  }
  
  .feature-card:nth-child(1),
  .feature-card:nth-child(3) {
    background: linear-gradient(135deg, #78b94d, #2e7d32);
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-icon i {
    font-size: 20px;
  }
}
/* ========== TREATMENTS SECTION - MINIMAL & COMPACT ========== */
.treatments-section {
  position: relative;
  padding: 50px 0;
  background: #f7fdf9;
  overflow: hidden;
}

/* ========== SUBTLE ANIMATED BACKGROUND ========== */

.treatments-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #78b94d, #2e7d32);
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: floatGlow 15s ease-in-out infinite;
}

.glow-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(40, 161, 51, 0.3), transparent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.glow-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 80, 6, 0.2), transparent);
  bottom: -80px;
  left: -80px;
  animation-delay: 5s;
  animation-duration: 20s;
}

.glow-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(40, 161, 51, 0.25), transparent);
  top: 40%;
  right: 20%;
  animation-delay: 10s;
  animation-duration: 18s;
}

@keyframes floatGlow {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) translateX(20px);
    opacity: 0.5;
  }
}

/* Container */
.treatments-container {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ========== SECTION HEADER ========== */
.treatments-header {
  text-align: left;
  margin-bottom: 40px;
}

.treatments-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.label-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #005006);
  border-radius: 2px;
}

.treatments-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: #1a2e24;
  margin-bottom: 8px;
}

.gradient-text {
  background: linear-gradient(135deg, #28a133, #005006);
  background-clip: text;
  -webkit-background-clip: text;
  color: white;
}

.treatments-subtext {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: #ffffff;
}

/* ========== TREATMENTS GRID ========== */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Treatment Card - Compact Design */
.treatment-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(40, 161, 51, 0.08);
  position: relative;
  overflow: hidden;
}

/* Card Icon */
.treatment-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(40, 161, 51, 0.12), rgba(0, 80, 6, 0.08));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.treatment-icon i {
  font-size: 24px;
  color: #28a133;
  transition: all 0.3s ease;
}

/* Card Title */
.treatment-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #1a2e24;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

/* Card Description */
.treatment-desc {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #5a6e64;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}

/* Arrow Icon */
.treatment-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(40, 161, 51, 0.1);
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.treatment-arrow i {
  font-size: 10px;
  color: #28a133;
  transition: transform 0.3s ease;
}

/* ========== HOVER EFFECTS ========== */
.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  background: white;
}

.treatment-card:hover .treatment-icon {
  background: linear-gradient(135deg, #28a133, #005006);
  transform: scale(1.05);
}

.treatment-card:hover .treatment-icon i {
  color: white;
}

.treatment-card:hover .treatment-title {
  color: #28a133;
}

.treatment-card:hover .treatment-arrow {
  background: linear-gradient(135deg, #28a133, #005006);
  transform: translateX(3px);
}

.treatment-card:hover .treatment-arrow i {
  color: white;
  transform: translateX(2px);
}

/* ========== SCROLL REVEAL ANIMATION ========== */
.treatment-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.treatment-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delay */
.treatment-card:nth-child(1).revealed { transition-delay: 0.05s; }
.treatment-card:nth-child(2).revealed { transition-delay: 0.1s; }
.treatment-card:nth-child(3).revealed { transition-delay: 0.15s; }
.treatment-card:nth-child(4).revealed { transition-delay: 0.2s; }
.treatment-card:nth-child(5).revealed { transition-delay: 0.25s; }
.treatment-card:nth-child(6).revealed { transition-delay: 0.3s; }

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .treatments-heading {
    font-size: 24px;
  }
  
  .treatment-card {
    padding: 22px 18px;
  }
}

@media (max-width: 880px) {
  .treatments-section {
    padding: 40px 0;
  }
  
  .treatments-container {
    padding: 0 24px;
  }
  
  .treatments-heading {
    font-size: 22px;
  }
  
  .treatments-subtext {
    font-size: 12px;
  }
}

@media (max-width: 650px) {
  .treatments-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .treatment-card {
    padding: 20px 16px;
  }
  
  .treatment-icon {
    width: 50px;
    height: 50px;
  }
  
  .treatment-icon i {
    font-size: 20px;
  }
  
  .treatment-title {
    font-size: 14px;
  }
  
  .treatment-desc {
    font-size: 11px;
  }
}

@media (max-width: 550px) {
  .treatments-section {
    padding: 35px 0;
  }
  
  .treatments-container {
    padding: 0 20px;
  }
  
  .treatments-heading {
    font-size: 20px;
  }
  
  .treatments-label {
    font-size: 10px;
    color: white;
  }
}
/* ========== TREATMENTS SECTION HEADER WITH VIEW ALL BUTTON ========== */
.treatments-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.treatments-header {
  flex: 1;
}

/* View All Button */
.treatments-header-right {
  flex-shrink: 0;
  position: relative;
  top: -60px;
  /* margin-left: 250px; */
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: #28a133;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 24px;
  border: 1.5px solid #28a133;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.view-all-btn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.view-all-btn:hover {
  background: linear-gradient(135deg, #28a133, #005006);
  color: white;
  border-color: transparent;
  transform: scale(1.05);
}

.view-all-btn:hover i {
  transform: translateX(4px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 880px) {
  .treatments-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .view-all-btn {
    padding: 8px 20px;
    font-size: 12px;
  }
}
/* default (desktop) */
.treatments-header-right {
  flex-shrink: 0;
  position: relative;
  top: -60px;
}

/* mobile */
@media (max-width: 768px) {
  .treatments-header-right {
    top: -15px; /* remove the shift */
  }
}


@media (max-width: 768px) {
  .logo img {
    height: 35px !important;
    width: auto !important;
  }
}