
:root {      
  --teal: #36C2C9;     /* Primary Brand Color (Headings, Links) */
  --orange: #F15A22;   /* Accent Color (Buttons, CTAs) */
  --black: #000000;    /* Body Text */
  --white: #FFFFFF;    /* Backgrounds, Neutral Space */
}

/* Base Settings */
html, body {
  height: 100%;
  margin: 0;
  font-family: 'Roboto', sans-serif;   /* Secondary Font for Body */
  color: var(--black);
  line-height: 1.6;
  font-size: 16px; /* Base font size for consistency */
}

/* =========================
   Headings: Montserrat
   ========================= */
h1, h2, h3, h4, h5, h6,
.section-title {
  font-family: 'Montserrat', sans-serif;  /* Primary Font for Headlines */
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 0.5em;
}

/* Font Sizes - Responsive via Clamp */
h1 { font-size: clamp(2rem, 4vw, 3rem); }   /* Main Hero Titles */
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); } /* Section Titles */
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

/* =========================
   Paragraphs & Body Text
   ========================= */
p, li, a, span {
  font-family: 'Roboto', sans-serif;   /* Body Font */
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 1em;
}

/* Smaller text (for captions, footnotes) */
.small-text {
  font-size: 0.875rem;
  color: #555;
}

/* =========================
   Links & Buttons
   ========================= */

/* Links */
a {
  color: var(--teal);
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: #2ba4a9;
}

/* Buttons */
.btn-cta {
  background: var(--orange);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: background 0.3s ease;
}
.btn-cta:hover {
  background: #d84d1c;
}

/* =========================
   Section Spacing
   ========================= */
section {
  padding: 110px 0; /* Ample white space for sections */
}
@media (max-width: 992px) { section { padding: 90px 0; } }
@media (max-width: 768px) { section { padding: 70px 0; } }

/* =========================
   Text Alignment Utilities
   ========================= */
.text-center { text-align: center; }
.text-start  { text-align: left; }
.text-end    { text-align: right; }


/* ===== Hero ===== */
.hero{
  background:url('../images/home\ doct.jpg') no-repeat center center/cover;
  min-height:70vh;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:var(--white);
  padding:0 1rem;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.4);
}
.hero .container{ position:relative; z-index:1; }
.hero h1{ font-size:clamp(2rem, 4vw, 3rem); }
#about p {
  color: #ffffff !important;  /* Change this to your desired text color */
}
/* ===== Buttons ===== */
.btn-cta{
  background:var(--orange);
  color:var(--white);
  border:none;
  font-weight:700;
  padding:.7rem 1.2rem;
  border-radius:.5rem;
}
.btn-cta:hover{ background:#d84d1c; color:var(--white); }

/* Links (site-wide) */
a{ color:var(--teal); text-decoration:none; }


/* Sections */
/* ===== Section Spacing ===== */
section {
  padding: 110px 0;   /* More space for desktop */
}

/* Special: Hero already full height, so leave it */
.hero {
  min-height: 75vh;  /* Full-screen feel but slightly smaller than 100vh */
}

/* On smaller screens, reduce padding so it doesn't look too big */
@media (max-width: 992px) {
  section {
    padding: 90px 0;
  }
}

@media (max-width: 768px) {
  section {
    padding: 70px 0;
  }
}
/* Mission Section Image Styling */
#mission img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


#mission h3 {
  color: #36C2C9;
  margin-bottom: 15px;
  
}
#mission p {
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.6;
}



#vision h3 {
  color: #36C2C9;
  margin-bottom: 15px;
  
}
#vision p {
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Lists */
.highlight-list li{ margin-bottom:.5rem; }


/* Center and equal height for value cards */
#values .row {
  justify-content: center;
}
/* Value Cards */
.value-card {
  background: #ffe3cb;
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: 1rem;
  padding: 1.25rem .85rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between; /* Equal spacing inside card */
  text-align: center;
  gap: .5rem;
  height: 100%; /* Full height of the column */
  min-height: 130px; /* Equal card height */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover animation */
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.value-card i {
  font-size: 1.8rem;
  color: var(--teal);
}

.value-card span {
  font-weight: 600;
  font-size: 1.2rem;
}

/* Fix for mobile spacing */
@media (max-width: 576px) {
  .value-card {
    min-height: 150px;
  }
}


/* Social icons */
.social-icons a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px; height:42px;
  border-radius:50%;
  margin:0 .25rem;
  background:var(--orange);
  color:var(--white);
}
.social-icons a:hover{ opacity:.85; }

/* WhatsApp floating button */
.whatsapp-float{
  position:fixed;
  right:20px; bottom:20px;
  width:56px; height:56px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#25D366;
  color:#fff;
  box-shadow:0 6px 20px rgba(0,0,0,.2);
  z-index:999;
  text-decoration:none;
  font-size:1.5rem;
}
.whatsapp-float:hover{ opacity:.9; }
.accordion-button:not(.collapsed) {
  background-color: #36C2C9;   /* Orange when open */
  color: white;

}

#faq, 
#care-faq {
  background: #ffffff; /* Light background */
  padding: 60px 20px;
}

#faq .section-title, 
#care-faq .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
}

/* Accordion Buttons */
#faq .accordion-button, 
#care-faq .accordion-button {
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
  background-color: #ffd8d8;
  border: none;
  box-shadow: none;
  padding: 15px 20px;
  transition: background 0.3s ease;
  border-radius: 6px;
}

/* Active/Open Accordion Button */
#faq .accordion-button:not(.collapsed), 
#care-faq .accordion-button:not(.collapsed) {
  background-color: var(--teal);
  color: var(--white);
  border-color: #49f3ff !important;
  box-shadow: none !important;
}

/* Accordion Body */
#faq .accordion-body, 
#care-faq .accordion-body {
  font-size: 16px;
  color: #000000;
  padding: 15px 20px;
  background: #ffdbdb;
}

/* Accordion Items */
#faq .accordion-item, 
#care-faq .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  background: #ffe0e0;
}

/* CTA Button */
#faq .btn-cta, 
#care-faq .btn-cta {
  display: inline-block;
  background-color: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 6px;
  text-align: center;
  transition: background 0.3s ease;
  text-decoration: none;
  margin-top: 20px;
}

#faq .btn-cta:hover, 
#care-faq .btn-cta:hover {
  background-color: #d84d1c;
  color: #fff;
}



/* Initial hidden state */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.4s ease-out;
}

/* Animate when visible */
.fade-section.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: animate hero heading & button separately */
.hero h1, .hero p, .hero .btn-cta {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
  transition-delay: 0.2s;
}

.hero.animate h1,
.hero.animate p,
.hero.animate .btn-cta {
  opacity: 1;
  transform: translateY(0);
}



/* Section Padding - Full width, no box effect */
.section-padding {
  padding: 40px 20px;
  background: white;
  width: 100%;
  margin: 40px auto;
  border-radius: 0;       /* No rounded corners */
  box-shadow: none;       /* No shadow box */
}

/* Title & Paragraph */
.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #36C2C9;
  margin-bottom: 15px;
}
.section-paragraph {
  width: 100%;
  display: block;
  text-align: center;
  margin: 0 auto 20px;
}

/* Layout: Image + Benefits */
.service-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;  /* Keeps content centered */
}

/* Image Styles */
.service-image {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-image img {
  max-width: 550px;
  width: 100%;
  height: 700px;
  border-radius: 12px;
  object-fit: cover;
}

/* Benefits Grid - Centered cards */
.service-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Centers last card */
  gap: 20px;
  flex: 1;
  max-width: 1000px /* Prevents too wide benefit section */
  
}

/* Benefit Cards */
.benefit-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px #f6cdb8d3;
  transition: 0.3s;
  text-align: center;
  flex: 1 1 280px;  /* Flexible width */
  max-width: 500px; /* Prevents too wide cards */
}
.benefit-card:hover {
  transform: translateY(-5px);
}
.benefit-icon {
  display: inline-block;
  font-size: 28px;
  margin-bottom: 8px;
  color:var(--teal);
}
.benefit-card h3 {
  margin: 10px 0 5px;
 color:var(--teal);
  font-size: 18px;
}
.benefit-card p {
  font-size: 14px;
 color:var(--teal);
}

/* Responsive */
@media(max-width: 768px) {
  .service-container {
    flex-direction: column;
    align-items: center;
  }
  .service-image img {
    max-width: 100%;
      height: 300px;
  }
}


.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  margin-top: 30px;
  justify-content: center; /* Centers cards in last row */
}

/* Each Card */
.why-card {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px #f6cdb8d3;
  padding: 20px;
  gap: 20px;
  transition: transform 0.3s ease;
  max-width: 600px; /* Prevents very long single card */
}
.why-card:hover {
  transform: translateY(-4px);
}

/* Icon Styling */
.why-icon {
  font-size: 36px;
  color: var(--teal);
  flex-shrink: 0;
}

/* Text Content */
.why-content h3 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: #004c54;
}
.why-content p {
  margin: 0;
  color: #333;
  font-size: 15px;
}

/* Mobile View: Stack Vertical */
@media(max-width: 768px) {
  .why-card {
    flex-direction: column;
    text-align: center;
  }
  .why-icon {
    font-size: 30px;
  }
}
.why-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.why-card {
  flex: 1 1 400px;  /* min-width 400px, will wrap automatically */
  max-width: 600px;
}
.contact-card {
    background-color: #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: 1rem;
    padding: 3rem;
    width: 100%;
    max-width: 42rem;
    margin: 0 auto;
}

.header {
    height: 100px;
}

.title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #6b7280;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f9fafb;
    border-radius: 0.75rem;
}

.info-item svg {
    height: 2rem;
    width: 2rem;
    color: #3b82f6;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #4b5563;
}

.info-text {
    color: #1f2937;
}

.contact-form-container {
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-input {
    margin-top: 0.25rem;
    display: block;
    width: 100%;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
}

.form-input:focus {
    outline: 2px solid #3b82f6;
    border-color: #3b82f6;
}

.form-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #3b82f6;
    color: #fff;
    font-weight: 600;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: background-color 0.3s ease-in-out;
    cursor: pointer;
}

.form-button:hover {
    background-color: #2563eb;
}

.status-message {
    text-align: center;
    margin-top: 1rem;
}

.status-message span {
    font-weight: 600;
}

.status-success {
    color: #22c55e;
}

.status-error {
    color: #ef4444;
}
.overlay{
  width: 100%;
  height:auto;    background: linear-gradient(to bottom, #d8f9f8, #b6f1ec);
  padding: 20px 0;
  box-sizing: border-box;
}