
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif, Helvetica;
}

body {
  background-color: #f8f9fa;
  color: #333;
}
.nav-link[aria-current="page"]{color:var(--accent);font-weight:800}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
.header {
  background: #0f7d4c;
  color: #fff;
  padding: 1rem 0;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* IKOOdigital link */
.footer-credit {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s ease, text-decoration 0.3s ease;
}

.footer-credit:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Mobile responsiveness */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
}

/* Hero */
.hero {
  background: #e8f5ee;
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: #0f7d4c;
  color: #fff;
  padding: 0.7rem 1.5rem;
  margin-top: 1rem;
  text-decoration: none;
  border-radius: 5px;
}

/* Sections */
section {
  padding: 3rem 0;
}
/* Hero Carousel */
.hero-carousel {
  position: relative;
  height: 70vh;
  overflow: hidden;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.overlay h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.overlay p {
  max-width: 600px;
}
.services h3 {
  text-align: center;
  margin-bottom: 2rem;
}

/* ===== FAQ SECTION ===== */
.faq-main {
  max-width: 900px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.faq-item {
  background: #ffffff;
  margin-bottom: 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

/* Question */
.faq-question {
  padding: 20px;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f9f9f9;
}

.faq-question:hover {
  background: #f1f8f4;
}

/* Plus / Minus */
.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0a7d3b;
  transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

/* OPEN STATE */
.faq-item.active .faq-answer {
  max-height: 300px; /* enough for text */
  padding: 15px 20px 20px;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg); /* + becomes × */
}

/* ===== Contact Page ===== */
.contact-info {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: #f4f4f4;
  padding: 2rem 1rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #0f7d4c;
}

.contact-card p,
.contact-card a {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: #333;
  text-decoration: none;
}

.contact-card a.btn {
  margin-top: 0.5rem;
  display: inline-block;
}

/* Contact Form */
.contact-form-section {
  max-width: 700px;
  margin: 0 auto 4rem;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.contact-form-section h3 {
  text-align: center;
  color: #0f7d4c;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.95rem;
}

.contact-form-section button.btn {
  display: block;
  width: 100%;
  background: #0f7d4c;
  color: #fff;
  border: none;
  padding: 0.8rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form-section button.btn:hover {
  background: #0a6d3b;
}

/* WhatsApp CTA */
.cta-whatsapp {
  text-align: center;
  padding: 2rem 0;
  background: #e8f5ee;
}

.cta-whatsapp .btn {
  background: #25D366;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
}

.cta-whatsapp .btn:hover {
  background: #128C7E;
}


/* Page Hero */
.page-hero {
  background: #e8f5ee;
  padding: 3rem 0;
  text-align: center;
}

.page-hero h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #0f7d4c;
}

/* Full About */
.about-full {
  padding: 4rem 0;
}

/* Mission & Vision */
.mission-vision {
  background: #f4f4f4;
  padding: 4rem 0;
}
.about-image img {
  margin-top: 1rem; /* space between text and image */
  max-width: 100%;
  height: auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.mission-card {
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
}

/* What We Do */
.what-we-do {
  padding: 4rem 0;
}

/* Assurance */
.assurance {
  background: #ffffff;
  padding: 4rem 0;
}

/* CTA */
.about-cta {
  background: #0f7d4c;
  color: #fff;
  text-align: center;
  padding: 3rem 1rem;
}

.about-cta .btn {
  background: #fff;
  color: #0f7d4c;
  margin-top: 1rem;
}
/* Services Page */
.services-full,
.health-services,
.extra-services,
.service-note {
  padding: 4rem 0;
}

.health-services {
  background: #f4f4f4;
}

.service-card p {
  font-size: 0.9rem;
  color: #555;
}

.service-note {
  background: #e8f5ee;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #f4f4f4;
  padding: 2rem 1rem;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card svg {
  width: 40px;
  height: 40px;
  fill: #0f7d4c;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 1rem;
}
/* Sticky Header */
.header {
  background: #0f7d4c;
  color: #fff;
  padding: 0.8rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

/* Push page content down so header doesn't overlap */
body {
  padding-top: 90px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 4px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand img {
  width: 45px;
  height: auto;
}

.brand h1 {
  font-size: 1.2rem;
  margin: 0;
  white-space: nowrap;
}

/* Navigation stays aligned */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
}
/* Mobile styles */
@media (max-width: 768px) {

  /* Hide normal nav */
  nav {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: #0f7d4c;
  }

  nav ul {
    flex-direction: column;
    padding: 1rem 0;
  }

  nav ul li {
    text-align: center;
    padding: 0.8rem 0;
  }

  nav.show {
    display: block;
  }

  /* Show hamburger */
  .menu-toggle {
    display: flex;
  }
}

.services .service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.service-card {
  background: #f4f4f4;
  padding: 1rem;
  text-align: center;
  border-radius: 5px;
}

/* Footer */
.footer {
  background: #0f7d4c;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav ul {
    flex-direction: column;
  }
}
