/* ===== UPDATED AESTHETIC COLOR PALETTE ===== */
/* 
Primary Colors:
- Deep Sage: #6B7A6E (main brand color)
- Soft Mint: #A8C4A2 (accent)
- Warm Cream: #F7F5F3 (background)
- Rose Gold: #D4A574 (luxury accent)
- Charcoal: #2D3142 (text)
- Pure White: #FFFFFF
- Soft Gray: #E8E8E8
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Tenor Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.6;
  /* color: #2D3142; */
  background-color: #F7F5F3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Header */
.header {
  background: linear-gradient(135deg, #7D9A80 0%, #A8C4A2 100%);
  padding: 1rem 0;
  position: fixed; /* changed from sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(125, 154, 128, 0.15);
  font-family: "Tenor Sans", sans-serif;
  transition: transform 0.3s ease; /* for sliding effect */
  font-weight: bold;
}
/* Hide class */
.header.hide {
  transform: translateY(-100%);
}

/* Show class */
.header.show {
  transform: translateY(0);
}

/* Navigation Container */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Tenor Sans", sans-serif;
  font-weight: bold;
}

/* Logo Styling */
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
   font-family: "Tenor Sans", sans-serif;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  position: relative;
}

/* Hover & Active States */
.nav-links a:hover,
.nav-links a.active {
  background: rgba(95, 94, 94, 0.2);
  backdrop-filter: blur(10px);
  transform: translateY(-2px);
}


/* Hero Section */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.overlay {
  width: 100%;
  height: 100%;
     background: rgba(24, 23, 23, 0.4); /* dark overlay *//* dark overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-text {
  text-align: center;
  color: #fff;
  animation: fadeUp 1.5s ease forwards;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 2rem !important;
  margin-bottom: 10px;
  letter-spacing: 2px;
  animation: fadeUp 1.5s ease forwards;
  color: #A8C4A2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 3;
}
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.5rem; /* Adjust as needed */
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem; /* Even smaller for very small screens */
  }
}

.hero-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  animation: fadeUp 1.5s ease 0.2s forwards;
  color: #F7F5F3;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  animation: fadeUp 1.5s ease 0.4s forwards;
}

.cta-button {
  background: white;
  color: #A8C4A2;
  font-weight: bolder;
  padding: 15px 35px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: fadeUp 1.5s ease 0.6s forwards;
  box-shadow: 0 8px 25px rgba(#CBCCBE);
}

.cta-button:hover {
  
  transform: translateY(-2px);
   background: linear-gradient(135deg, #48534a 0%, #6e7e6a 100%);
  /* box-shadow: 0 12px 35px rgba(107, 122, 110, 0.4); */
}

/* Hero Features - UPDATED */
.hero-features {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10; /* Higher z-index than overlay */
  width: 90%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop: 4 columns */
  gap: 20px;
  padding: 20px;
}

.feature-item {
  text-align: center;
  color: white;
  font-weight: bold;
  background: rgba(107, 122, 110, 0.8);
  backdrop-filter: blur(15px);
  padding: 20px 15px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  font-family: "Tenor Sans", sans-serif;
}

.feature-item:hover {
  transform: translateY(-8px);
  background: rgba(168, 196, 162, 0.9);
  box-shadow: 0 15px 35px rgba(107, 122, 110, 0.4);
}

.feature-icon {
  font-size: 30px;
  color: #F7F5F3;
  margin-bottom: 10px;
  display: block;
}

.feature-item div {
  font-size: 0.9rem;
  line-height: 1.3;
}
/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #F7F5F3 0%, #FFFFFF 50%, #F7F5F3 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h3 {
  color: #A8C4A2;
  font-size: 25px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  font-weight: 600;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #2D3142;
  font-weight: 300;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #6B7A6E, #A8C4A2);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* === Treatment Section Horizontal Scroll Slider === */
.services-grid {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 30px;
  padding-bottom: 40px;
  scroll-snap-type: x mandatory;
  padding-left: 20px;
  padding-right: 20px;
}

.services-grid::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 300px;
  min-width: 300px;

  position: relative;
  overflow: hidden;
  background: #FFFFFF;
  padding: 45px 35px;
  border-radius: 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(107, 122, 110, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  border: 2px solid transparent;
  background-clip: padding-box;
  font-family: "Tenor Sans", sans-serif;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(107, 122, 110, 0) 0%,
    rgba(168, 196, 162, 0.05) 50%,
    rgba(212, 165, 116, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 25px;
  z-index: 0;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(135deg,
    #6B7A6E 0%,
    #A8C4A2 50%,
    #f4f4f4 100%);
  z-index: 0;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 25px 25px;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  height: 100%;
  border-radius: 25px;
}

.service-card * {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 60px rgba(107, 122, 110, 0.15);
  border-color: rgba(168, 196, 162, 0.3);
}

.service-card:hover h4,
.service-card:hover p {
  color: white !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 35px;
  background: linear-gradient(135deg,
    rgba(168, 196, 162, 0.1) 0%,
    rgba(212, 165, 116, 0.1) 100%);
  border: 2px solid rgba(107, 122, 110, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-icon::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #6B7A6E, #A8C4A2, #D4A574);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.service-card:hover .service-icon::before {
  opacity: 1;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.service-card h4 {
  font-size: 1.4rem;
  margin-bottom: 18px;
  color: #2D3142;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.service-card p {
  color: #A8C4A2 !important;
  font-weight: bolder;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  transition: all 0.4s ease;
  font-family: "Tenor Sans", sans-serif;
  text-align: justify;
}

/* Add subtle glow effect on hover */
.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow:
    0 25px 60px rgba(107, 122, 110, 0.15),
    0 0 0 1px rgba(168, 196, 162, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: rgba(168, 196, 162, 0.3);
}

/* Floating Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.service-card:nth-child(odd) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 0s;
}

.service-card:nth-child(even) {
  animation: float 6s ease-in-out infinite;
  animation-delay: 3s;
}

/* Responsive width adjustment for mobile */
@media (max-width: 768px) {
  .service-card {
    width: 260px;
    min-width: 260px;
  }
}

/* Premium Section */
.premium {
  padding: 80px 0;
  background: linear-gradient(135deg, #A8C4A2 35%, #FFF 75%);
  position: relative;
  font-family: "Tenor Sans", sans-serif;
}

.premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.premium-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.premium-text h3 {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  font-weight: 600;
}

.premium-text h2 {
  font-size: 2.2rem;
  color: #FFFFFF;
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.3;
}

.premium-text p {
  color: #F7F5F3;
  margin-bottom: 30px;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.premium-features {
  list-style: none;
  margin-bottom: 40px;
}

.premium-features li {
  padding: 8px 0;
  color: #F7F5F3;
  position: relative;
  padding-left: 25px;
}

.premium-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FFF;
  font-weight: bolder;
  font-size: 1.2rem;
}

.premium-image {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #D4A574, #A8C4A2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.premium-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #F7F5F3;
  font-family: "Tenor Sans", sans-serif;
}

.testimonials-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.testimonials-text h2 {
  font-size: 2.5rem;
  color: #A8C4A2;
  margin-bottom: 30px;
  font-weight: bolder;
   
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 30px 25px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(107, 122, 110, 0.1);
  transition: all 0.3s ease;
  border: 1px solid rgba(168, 196, 162, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(107, 122, 110, 0.15);
}

.testimonial-card h4 {
  color: #2D3142;
  margin-bottom: 10px;
  font-weight: 600;
}

.testimonial-card .stars {
  margin-bottom: 15px;
  color: #D4A574;
  font-size: 1.1rem;
}

.testimonial-card p {
  color: #6B7A6E;
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Consultation Section */
.consultation {
  padding: 80px 0;
  background: linear-gradient(135deg, #A8C4A2 35%, #FFF 75%);
  color: white;
  position: relative;
  font-family: "Tenor Sans", sans-serif;
}

.consultation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="90" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.2;
}

.consultation-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.consultation-image {
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background:#A8C4A2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.consultation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.consultation-form {
  background: rgba(255, 255, 255, 0.15);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.consultation-form h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #FFFFFF;
  font-weight: 700;
}

.consultation-form p {
  text-align: center;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #F7F5F3;
  font-weight: 400;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  color: #2D3142;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(168, 196, 162, 0.3);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background:white;
  color: #CBCCBE;
  font-weight: bolder;
  padding: 18px;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  /* box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3); */
}

.submit-btn:hover {
  background: linear-gradient(135deg, #A8C4A2, #6B7A6E);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(107, 122, 110, 0.4);
}

/* Enhanced Left Section */
.enhanced-left {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.enhanced-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.7);
  border-radius: 20px;
}

.overlay-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(107, 122, 110, 0.8);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 25px;
  border-radius: 15px;
  animation: fadeIn 1s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-info blockquote {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 15px;
  color: #fff;
  font-weight: bold;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.highlight-points {
  list-style: none;
  padding: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

.highlight-points li {
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Footer */
.footer {
  background: #8b9c8e; /* soft pastel lavender */
  color: #fff;
  padding: 60px 0 30px;
  font-family: "Tenor Sans", sans-serif;
  border-top: 2px solid rgba(227, 247, 222, 0.826);
  font-weight: bold;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fff; /* mint accent */
}

.footer-section h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: #fff; /* deeper mint for contrast */
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: #000000 ; /* lavender hover */
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(168, 196, 162, 0.25);
  padding-top: 30px;
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
  padding: 10px;
  background: linear-gradient(135deg, #A8C4A2 35%, #FFFFFF 75%);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(168, 196, 162, 0.3);
  transition: all 0.3s ease;
}

/* Hover effect to add depth */
.hamburger:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(168, 196, 162, 0.4);
}

/* Hamburger Lines */
.hamburger span {
  width: 26px;
  height: 3px;
  background: linear-gradient(90deg, #6B7A6E, #A8C4A2);
  border-radius: 3px;
  transition: all 0.4s ease;
}

/* Open state animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:#FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
}

.preloader-content img {
  width: 150px;
  height: auto;
  margin-bottom: 1rem;
  animation: zoomIn 1.2s ease-in-out infinite alternate;
}

.preloader-text {
  font-size: 1.2rem;
  color: #6B7A6E;
  font-weight: 600;
  animation: fadeText 2s infinite ease-in-out;
}

/* Scroll Progress */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, #6B7A6E, #A8C4A2, #D4A574);
  width: 0%;
  z-index: 9999;
}

/* Animations */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(20px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

@keyframes fadeText {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}

@keyframes zoomIn {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
     background: rgba(24, 23, 23, 0.4) ; /* dark overlay */
    /* backdrop-filter: blur(10px); */
    padding: 20px 0;
    box-shadow: 0 6px 20px rgba(107, 122, 110, 0.15);
    border-top: 1px solid rgba(168, 196, 162, 0.2);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-text h2 {
    font-size: 1.5rem;
  }

  /* Mobile Hero Features - 2x2 Grid */
  .hero-features {
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 columns */
    grid-template-rows: repeat(2, 1fr); /* Mobile: 2 rows */
    gap: 15px;
    bottom: 30px;
    width: 95%;
    padding: 15px;
  }

  .feature-item {
    padding: 15px 10px;
    font-size: 0.85rem;
  }

  .feature-icon {
    font-size: 24px;
    margin-bottom: 8px;
  }

  .feature-item div {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .premium-content,
  .consultation-content,
  .testimonials-content {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .slider-wrapper {
    padding: 0 10px;
  }

  .slider-btn {
    display: none;
  }

  .service-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}

/* Medium screens - tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }

  .feature-item {
    padding: 18px 12px;
  }

  .feature-item div {
    font-size: 0.85rem;
  }
}

/* Large screens - ensure proper spacing */
@media (min-width: 1025px) {
  .hero-features {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
  }

  .feature-item {
    padding: 20px 15px;
  }
}

/* Utility Classes */
.text-gradient {
  background: linear-gradient(135deg, #6B7A6E, #A8C4A2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient {
  background: linear-gradient(135deg, #6B7A6E, #A8C4A2);
}

.shadow-soft {
  box-shadow: 0 10px 30px rgba(107, 122, 110, 0.1);
}

.shadow-medium {
  box-shadow: 0 15px 40px rgba(107, 122, 110, 0.15);
}

.shadow-strong {
  box-shadow: 0 20px 50px rgba(107, 122, 110, 0.2);
}

.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.services-slider {
  display: flex;
  gap: 5px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
}

.services-slider::-webkit-scrollbar {
  display: none;
}

.service-card {
  flex: 0 0 100%;
  max-width: 100%;
  scroll-snap-align: start;
}

@media(min-width: 768px) {
  .service-card {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
    background: linear-gradient(135deg, #6B7A6E, #A8C4A2);
  color: white;
  border: none;
  padding: 10px 16px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: 0.3s;
}

.slider-btn:hover {
   background: linear-gradient(135deg, #3d473f, #7b9176);
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}
.slider-dots {
  text-align: center;
  margin-top: 1rem;
}

.slider-dots button {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.slider-dots button.active {
  background-color: #2c5282;
}

@media (min-width: 769px) {
  .slider-dots {
    display: none;
  }
}
.slider-dots {
  text-align: center;
  margin-top: 1rem;
}

.slider-dots button {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  border-radius: 50%;
  border: none;
  background-color: #bbb;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.slider-dots button.active {
  background-color: #2c5282;
}

@media (min-width: 769px) {
  .slider-dots {
    display: none;
  }
}
html, body {
  overflow-x: hidden;
}
/* === NEW: External Slider Button Wrapper === */
.slider-btn-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.slider-btn-wrapper .slider-btn {
  position: static;
  transform: none;
  background: linear-gradient(135deg, #6B7A6E, #A8C4A2);
  color: white;
  border: none;
  padding: 16px 20px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(107, 122, 110, 0.3);
  transition: 0.3s ease;
}

.slider-btn-wrapper .slider-btn:hover {
  background: linear-gradient(135deg, #A8C4A2, #D4A574);
  transform: scale(1.1);
}
.slider-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto -40px; /* Pull it closer to the slider */
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.slider-btn-wrapper .slider-btn {
  position: static;
  transform: none;
  background: linear-gradient(135deg, #6B7A6E, #A8C4A2);
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(107, 122, 110, 0.3);
  transition: 0.3s ease;
}

.slider-btn-wrapper .slider-btn:hover {
  background: linear-gradient(135deg, #A8C4A2, #ffffff);
  transform: scale(1.1);
}

.slider-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.slider-btn-wrapper .slider-btn {
  background: linear-gradient(135deg, #6B7A6E, #A8C4A2);
  color: white;
  border: none;
  padding: 14px 20px;
  font-size: 22px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(107, 122, 110, 0.3);
  transition: 0.3s ease;
  z-index: 100;
}

.slider-btn-wrapper .slider-btn:hover {
  background: linear-gradient(135deg, #A8C4A2, #ffffff);
  transform: scale(1.1);
}
.slider-wrapper {
  position: relative;
  padding-bottom: 60px; /* Add space below slider for buttons */
  z-index: 2;
  width: 100%;
}

.slider-btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  z-index: 3;
  position: relative;
}
/* .slide {
  position: relative;
  z-index: 0;
} */



.hero-text {
  position: relative;
  z-index: 2; /* ABOVE overlay */
}

.hero-text h1 {
  position: relative;
  z-index: 3; /* Ensure it's always on top */
  font-size: 4rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  animation: fadeUp 1.5s ease forwards;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
   font-family: "Tenor Sans", sans-serif;
}




 .progress-bar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: rgba(168, 196, 162, 0.2);
      z-index: 1000;
    }

    .progress-fill {
      height: 100%;
      background: linear-gradient(90deg, #A8C4A2, #2D3142);
      width: 0;
      transition: width 0.1s ease;
    }