@import url(responsive.css);

:root{
  --primary: #27e654;
  --secondary:#218838;
  --tri :#4CAF50;
  --bg-color: linear-gradient(140deg, #A9D6A9 0%, #6DBE70 50%, #4CAF50 100%);



}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #F8F8FF;
}


/* Header Base */


.site-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

/* Header Layout */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
}

/* Logo */
.logo {
  order: 1;
}
.logo img {
  height: 70px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  justify-content: center;
  order: 2;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: 'Poppins', sans-serif;
}

.nav-link.active,
.nav-link:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Book Button */
.consult-btn {
  order: 3;
  margin-left: auto;
  display: flex;
}

/* Button Base */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn:hover {
  background-color: var(--secondary);
  transform: translateY(-2px);
}

/* Toggle Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  width: 100%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Tablet & Mobile */
@media (max-width: 991px) {
  .menu-toggle {
    display: flex;
    order: 3;
    margin-left: 10px;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-end;
    order: 2;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    padding: 15px 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    text-align: center;
    padding: 12px;
  }

  .consult-btn {
    display: none !important;
  }
}

/* Small Devices */
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .logo img {
    height: 55px;
  }
}

/* Very Small Devices */
@media (max-width: 320px) {
  .logo img {
    height: 50px;
  }

  .btn {
    font-size: 14px;
    padding: 8px 16px;
  }

  .nav-link {
    font-size: 14px;
    padding: 6px 10px;
  }

  .header-container {
    padding: 8px 12px;
  }
}



.main-footer {
  background-image: var(--bg-color);
  padding: 40px 20px 20px;
  font-family: 'Poppins', sans-serif;
  color: #101010;
  border-top: 5px solid #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-left {
  flex: 1 1 250px;
}

.footer-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 1rem;
}

.footer-address {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-map {
  flex: 2 1 300px;
}

.footer-map h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: black;
}

.contact-info p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-info .fa {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: black;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: #101010;
}
/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
  margin-top: 65px; /* Space for fixed header */
}

.hero img.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.4);  */
  z-index: 2;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 3;
  color: white;
  max-width: 600px;
  text-align: left;
  padding: 0 15px;
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3.5rem); /* Responsive font size */
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: clamp(1rem, 2.5vw, 1.5rem); /* Responsive font size */
  line-height: 1.6;
  margin-bottom: 1.5rem;
}





/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #1ebd5a;
  text-decoration: none;
}



/* about with logo*/
.about-section {
  padding: 60px 20px;
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* LEFT SIDE */
.about-images {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.clinic-img {
  width: 100%;
  max-width: 300px;
  border-radius: 15px;
}

.logo-overlay {
  position: absolute;
  top: 40px;
  left: 65%;
  transform: translateX(20%);
  width: 150px;
  height: auto;
  /* background: white; */
  border-radius: 12px;
  padding: 5px;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); */
  z-index: 10;
}

/* RIGHT SIDE */
.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.about-text p {
  text-align: justify;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn-more-btn {
  display: inline-block;
  background-color: #28a745;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.learn-more-btn span {
  margin-left: 5px;
}


/* service section */
.services-section {
  position: relative;
  padding: 50px 30px;
  background-size: cover;
  background-position: center;
  color: #fff;
  overflow: hidden;
}

.services-section .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(39, 230, 84, 0.15); /* Light green tint */
  backdrop-filter: blur(4px);
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.clinic-title {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--tri));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  padding: 30px 25px;
  border-radius: 15px;
  flex: 1 1 calc(33.33% - 20px);
  min-width: 280px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .service-card {
    flex: 1 1 100%;
  }
}

/*Service end*/
/* Condition Section */
.conditions-section {
  background-image: var(--bg-color);
  padding: 40px 20px;
  color: #fff;
  text-align: left;
}

.conditions-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 10px;
}

.conditions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 10px;
}

.condition-card {
  background-size: cover;
  background-position: center;
  height: 200px;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.condition-card:hover {
  transform: scale(1.05);
}

.condition-card span {
  position: absolute;
  bottom: 20px;
  left: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}


/*Testimonial Start*/
.testimonials {
  background: linear-gradient(140deg, #fefefe, #ffffff);
  border-radius: 10px;
}

.testimonial-box {
  padding: 25px;
  background: white;
  border-radius: 12px;
  border: 1px solid #cdeac0;
  max-width: 900px;
  margin: auto;
  text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-box:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(39, 230, 84, 0.15);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.user-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: bold;
  color: white;
}

.user-icon.green { background: #27e654; }
.user-icon.blue { background: #218838; }
.user-icon.orange { background: #ff9800; }

.stars {
  color: #fbc02d;
  font-size: 16px;
}

.review-meta {
  font-size: 13px;
  color: #666;
}

.review {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  font-style: italic;
}

/* Common styles (already given) */
.carousel-control-prev, 
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(39, 230, 84, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev:hover, 
.carousel-control-next:hover {
  background: #27e654;
  box-shadow: 0 8px 20px rgba(39, 230, 84, 0.4);
}

.carousel-control-prev-icon, 
.carousel-control-next-icon {
  background-size: 60% 60%;
  background-color: transparent !important;
  filter: invert(1) brightness(0) saturate(100%) hue-rotate(90deg);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(1) brightness(10);
}

/* ---------- Responsive Adjustments ---------- */

/* Tablet screens (max-width: 992px) */
@media (max-width: 992px) {
  .carousel-control-prev, 
  .carousel-control-next {
    width: 45px;
    height: 45px;
  }

  .carousel-control-prev-icon, 
  .carousel-control-next-icon {
    background-size: 55% 55%;
  }
}

/* Mobile landscape (max-width: 768px) */
@media (max-width: 768px) {
  .carousel-control-prev, 
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev-icon, 
  .carousel-control-next-icon {
    background-size: 50% 50%;
  }
}

/* Mobile portrait (max-width: 576px) */
@media (max-width: 576px) {
  .carousel-control-prev, 
  .carousel-control-next {
    width: 35px;
    height: 35px;
    box-shadow: 0 3px 10px rgba(39, 230, 84, 0.15);
  }

  .carousel-control-prev-icon, 
  .carousel-control-next-icon {
    background-size: 45% 45%;
  }
}



/*Consultaion Start*/
/* Consultation Section */
.consultation-section {
  position: relative;
  padding: 50px 10px;
  overflow: hidden;
}

/* dotted background pattern */
.consultation-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(#67ae78 1px, transparent 1px),
    radial-gradient(#c3e6cb 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  opacity: 0.3;
  z-index: 1;
}

.consultation-box {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  padding: 60px 30px 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 1350px;
  margin: auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

.consultation-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #155724;
}

.consultation-subtitle {
  font-size: 1rem;
  color: #333;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.consultation-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #28a745, #218838);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.consultation-btn span {
  margin-left: 8px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.consultation-btn:hover {
  background: linear-gradient(135deg, #218838, #1e7e34);
}

.consultation-btn:hover span {
  transform: translateX(5px);
}

/*Consultaion End*/


/*==========================
About us Page
===========================*/
/* Mission & Vision Section */
.mission-vision-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin: 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  gap: 20px;
}

.vision-box,
.mission-box {
  flex: 1 1 45%;
  background-image: var(--bg-color);
  color: white;
  padding: 20px 30px;
  text-align: center;
  border: 1px solid #ffffff;
  border-radius: 15px;
  box-sizing: border-box;
}

.iicon img {
  width: 100%;
  max-width: 100px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.mission-box h3,
.vision-box h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.mission-box p,
.vision-box p {
  font-size: 16px;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
}


/* Approach Section */

.approach-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 100px;
  gap: 40px;
  flex-wrap: wrap;
}

.approach-left,
.approach-right {
  flex: 1;
  min-width: 280px;
}

.approach-left h2,
.approach-left p,
.approach-right h2 {
  text-align: left;
}

.approach-left h2,
.approach-right h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: black;
}

.approach-left p {
  font-size: 16px;
  line-height: 1.6;
  color: black;
}

.approach-right ul {
  list-style-type: disc;
  padding-left: 40px;
  margin-top: 10px;
}

.approach-right li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: black;
}
/* Expert Wrapper Section */
.expert-wrapper {
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f2f2f2;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.08); */
  margin: 30px 20px;
}

.left-section {
  background: linear-gradient(180deg, #91DF52 0%, #3EB94A 100%);
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
}

.left-section img {
  height: 280px;
  max-width: 100%;
  object-fit: contain;
  z-index: 2;
  position: relative;
}

.name-strip {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2DA94F;
  color: #fff;
  writing-mode: vertical-rl;
  font-weight: 600;
  padding: 1rem 0.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  letter-spacing: 1px;
  z-index: 3;
}

.right-section {
  flex: 1 1 100%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.right-section h2 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.right-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 0;
}
.expert-wrapper {
      display: flex;
      border-radius: 20px;
      overflow: hidden;
      background-color: #f2f2f2;
      min-height: 400px;
      box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    }

    .left-section {
      background: linear-gradient(180deg, #91DF52 0%, #3EB94A 100%);
      flex: 0 0 40%;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }

    .left-section img {
      height: 380px;
      object-fit: contain;
      z-index: 2;
      position: relative;
    }

    .name-strip {
      position: absolute;
      left: 62px;
      top: 50%;
      transform: translateY(-50%);
      background-color: #2DA94F;
      color: #fff;
      writing-mode: vertical-rl;
      font-weight: 600;
      padding: 1rem 0.5rem;
      border-radius: 8px;
      font-size: 1rem;
      text-align: center;
      letter-spacing: 1px;
    }

    .right-section {
      flex: 0 0 60%;
      padding: 3rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .right-section h2 {
      font-weight: 700;
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    .right-section p {
      font-size: 1.1rem;
      line-height: 1.7;
      color: #333;
      margin-bottom: 0;
    }
/* about us end*/


/*==========================
Service page

==========================*/

/* servies.php*/
.intro-section {
  /* background: #FFFFFF; */
  padding: 30px 20px; 
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.intro-container {
  max-width: 800px;
  padding: 20px;
}

.intro-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: black;
}

.intro-text {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Section Headings */
section {
  padding: 20px 15px;
  text-align: center;
}

h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: black;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust for mobile */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

/* Card Base Style */
.card {
  padding: 20px;
  border-radius: 12px;
  border: 2px solid #b6f2b6;
  transition: transform 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  background-color: white;
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #222;
}

.card p {
  font-size: 0.95rem;
  color: black;
  line-height: 1.5;
}

.green-grid .card {
  background-image:var(--bg-color);
  color: black;
}

.green-grid .card h3,
.green-grid .card p {
  color: black;
}

.white-grid .card {
  background: #fff;
}

/* Hover Effect */
.card:hover {
  transform: translateY(-5px);
}

/* service.php end*/

/*=================
Condition treated
===================*/


/* Condition treated page*/
.conditionns-section {
  padding: 60px 100px;
  background-color: #ffffff;
  text-align: center;
}

.conditionns-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 600;
}

.conditionns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  justify-content: center;
}

.conditionn-card {
  background-image: var(--bg-color);
  border-radius: 15px;
  padding: 25px 25px 20px 25px;
  text-align: left;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.conditionn-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: black;
}

.conditionn-card ul {
  list-style-type: disc;
  padding-left: 25px;
  margin-bottom: 15px;
}

.conditionn-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: black;
  padding: 3px;
}

.conditionn-card p {
  font-size: 0.9rem;
  color: #222;
  padding: 10px;
}


/* Medium screen - tablets */
@media (max-width: 992px) {
  .conditionns-section {
    padding: 40px 30px;
  }
  .conditionns-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Small screen - mobiles */
@media (max-width: 600px) {
  .conditionns-section {
    padding: 30px 20px;
  }
  .conditionns-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .conditionn-card {
    padding: 20px;
    min-height: auto;
  }

  .conditionn-card h3 {
    font-size: 1rem;
  }

  .conditionn-card ul li {
    font-size: 0.85rem;
  }

  .conditionn-card p {
    font-size: 0.85rem;
  }

  .conditionns-section h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}

/*FAQ Start*/
.faq-section {
  max-width: 800px;
  margin: 15px auto;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #4CAF50;
  font-size: 1.8rem;
}

.faq-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.tab-btn {
  padding: 10px 16px;
  border: none;
  background: #e0e0e0;
  cursor: pointer;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
  font-size: 0.95rem;
}

.tab-btn.active {
  background-color: #4CAF50;
  color: white;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion {
  background-color: #f1f1f1;
  color: #333;
  cursor: pointer;
  padding: 14px;
  width: 100%;
  text-align: center;
  border: none;
  border-radius: 6px;
  outline: none;
  transition: background-color 0.3s ease;
  font-weight: 500;
  font-size: 1rem;
}

.accordion:hover {
  background-color: #e0e0e0;
}

.panel {
  padding: 14px;
  display: none;
  background-color: #fafafa;
  border-left: 3px solid #4CAF50;
  margin-top: 5px;
  border-radius: 6px;
  font-size: 0.95rem;
}

@media (max-width: 480px) {
  .faq-section {
    padding: 30px 15px;
  }

  .faq-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .tab-btn {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
  }

  .accordion {
    font-size: 0.95rem;
    padding: 12px;
  }

  .panel {
    font-size: 0.9rem;
    padding: 12px;
  }

  .faq-section h2 {
    font-size: 1.5rem;
  }
}
/*FAQ End */


/*Contact Start*/
/* Contact Wrapper */
.raaya-contact-wrapper {
  padding: 50px 20px;
}

/* Container */
.raaya-contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

/* Left Side */
.raaya-contact-left {
  flex: 1 1 500px;
}

.raaya-contact-left h1 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 15px;
}

.raaya-contact-left p {
  color: #666;
  margin-bottom: 30px;
}

.raaya-contact-info .raaya-info-block {
  margin-bottom: 20px;
}

.raaya-info-block strong {
  display: block;
  color: #27ae60;
  margin-bottom: 5px;
}

.raaya-info-block span {
  display: block;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* Right Side */
.raaya-contact-right {
  flex: 1 1 500px;
  background: linear-gradient(to bottom, #a9d6a9, #4CAF50);
  padding: 30px;
  border-radius: 12px;
  color: #fff;
}

.raaya-contact-right h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.raaya-contact-right p {
  margin-bottom: 25px;
  color: #f0f0f0;
}

.raaya-contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.raaya-contact-right input,
.raaya-contact-right textarea {
  padding: 12px 15px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #333;
}

.raaya-contact-right textarea {
  resize: vertical;
}

.raaya-contact-right button {
  padding: 12px 25px;
  background: #fff;
  color: #4CAF50;
  font-weight: 600;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s;
}

.raaya-contact-right button:hover {
  background: #e2e2e2;
}

.raaya-success-msg {
  margin-top: 15px;
  background: #d4edda;
  padding: 10px;
  border-radius: 5px;
  color: #155724;
}

/* Map */
.raaya-map-section {
  margin-top: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 12px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 768px) {
  .raaya-contact-container {
    flex-direction: column;
  }

  .raaya-contact-right,
  .raaya-contact-left {
    width: 100%;
    padding: 20px;
  }

  .raaya-map-section iframe {
    height: 300px;
  }
  .contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  color: #101010;
  justify-content: center;
}
}


.contact-info  {
  color: #101010;
}

.contact-info h4 {
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  color: #101010;
 
}

.contact-list i {
  margin-right: 10px;
  font-size: 16px;
  color:var(--secondary); /* Or your theme color */
}

.contact-list a {
  text-decoration: none;
  color: #101010;
}

.contact-list a:hover {
  color: var(--primary); /* Or any accent color */
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  background-color: var(--bg-color);
  color: #f31212;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--primary);
  color: #333;
  transform: scale(1.1);
}
