:root {
  --teal: #36C2C9;
  --orange: #F15A22;
  --black: #000000;
  --white: #FFFFFF;

  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Roboto', sans-serif;

  --fs-h1: 42px;
  --fs-h2: 32px;
  --fs-h3: 26px;
  --fs-body: 16px;
  --fs-small: 14px;

  --lh-tight: 1.2;
  --lh-normal: 1.5;
  --lh-loose: 1.8;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-secondary);
}


body {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-loose);
  color: var(--black);
  background: #f8f9fa;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
/* .container{
   box-shadow:  0 2px 8px rgba(0, 0, 0, 0.1);
} */
/* Hero Section */
#hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  background: url('../images/1.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding:20px;
  margin-top: 85px;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  z-index: 1;
  transition: opacity 0.3s ease;
}

#hero:hover::before { opacity: 0.8; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 30px;
  max-width: 900px;
  animation: fadeIn 1s ease-in-out;
  margin-left: 10px;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-family: var(--font-primary);
  font-size: var(--fs-h1);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: var(--lh-tight);
  color: var(--teal);
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  margin-bottom: 20px;
  line-height: var(--lh-normal);
  color: #e0e6eb;
}

.hero-content .btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  font-family: var(--font-primary);
  font-size: var(--fs-body);
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 5px 15px rgba(54, 194, 201, 0.4);
}

.hero-content .btn-primary:hover {
  background: #d94d1e;
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(54, 194, 201, 0.5);
}

/* Section Styling */
.section-padding {
  padding: 90px 0;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-family: var(--font-primary);
  font-size: var(--fs-h1);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
  line-height: var(--lh-tight);
  color: var(--teal);
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--teal), var(--orange));
  border-radius: 3px;
  transition: width 0.3s ease;
}

.section-title:hover::after { width: 80px; }

.section-paragraph {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  text-align: center;
  margin-bottom: 20px;
  color: var(--black);
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* Service Overview */
.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.benefits-list li {
  max-width: 500px;
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border-left: 5px solid var(--teal);
}

.benefits-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  margin-right: 15px;
  color: var(--teal);
  font-size: var(--fs-small);
}

/* Elder Care Services */
#service-box{
  margin-top: 10px;
}
.service-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center; /* Vertically centers image */
}

/* 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;
}
.service-benefits {
  flex: 1;
  display: flex;
  flex-wrap:wrap ;
  justify-content: center;
  gap: 20px;
}
.benefits-list {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}
.benefits-list li {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border-left: 5px solid var(--teal);
}
.benefits-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.benefit-icon {
  margin-right: 15px;
  color: var(--teal);
  font-size: var(--fs-small);
}
.benefit-card {
  width: 300px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  text-align: center;
}
.benefit-card:hover {
  transform: translateY(-5px);
}
.benefit-icon {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
  color: #36C2C9;
}
.benefit-card h3 {
  margin: 10px 0 5px;
  color: #36C2C9;
  font-size: 18px;
  font-weight: 600;
}
.benefit-card p {
  font-size: 14px;
  color: #090808;
}

.benefit-icon {
  display: inline-block;
  font-size: 28px;
  margin-bottom: 8px;
  color: #36C2C9;
}

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

/* Services Offered */
/* Section Paragraph Font Size */

#benefits p {
  font-size: 1.1rem;
}

/* Service Grid Layout */
.service-grid {
  display: flex;
  flex-wrap: wrap ;
  justify-content: center;
  align-items: center;
  align-content:center;
  gap: 20px;
  margin-bottom: 45px;
  padding: 0 20px;
}

.service-item {
  width: 300px;
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}

.overlay-card{
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  z-index: -1;
}
.service-item .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* space title & button apart */
  align-items: center;
  text-align: center;
  /* padding: 30px 20px; spacing top & bottom */
  box-sizing: border-box;
}
/* Title Styling */
.service-item h3 {
  margin-top: 15px; /* spacing below top edge */
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  z-index: 2;
  /* background-color:var(--teal); */
   border-radius: 5px;
  padding: 2px;
}

/* Button Styling */
.en-button {
  margin-bottom: 15px; /* spacing above bottom edge */
  background: var(--teal);
  color: white;
  padding: 8px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
  z-index: 2;
  text-decoration: none;
}
.en-button:hover {
  background: #05abb3;
}

/* Hover Effect */
.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}


/* ---------------------
   Responsive Design
--------------------- */
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr); /* 3 per row on medium screens */
  }
  .service-item {
    height: 230px;
  }
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
  .service-item {
    height: 220px;
  }
  .service-item .overlay {
    padding: 20px 15px;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
  .service-item {
    height: 200px;
  }
  .service-item h3 {
    font-size: 1rem;
  }
  .en-button {
    padding: 6px 12px;
    font-size: 0.85rem;
  }
}



/* Pricing & Packages */
/* Section Styling */
#pricing {
  background-color: #ffffff;
  padding: 60px 0;
}

#pricing .section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #36C2C9;
  margin-bottom: 15px;
  text-align: center;
}

#pricing .section-paragraph {
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 0 20px;
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.6;
  text-align: center;
}

/* Table Styling */
.care-pricing-table {
  width: 100%;
 
  border-collapse: separate;
  border-spacing: 0;
  margin: 0 auto;
  background-color: #b2f0e6;
  font-family: 'Roboto', sans-serif;
  color: #000000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
.care-pricing-table thead th {
  background-color: #ff7340;
  color: #000000;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  text-align: center;
  border-bottom: 2px solid #c2c2c2;
  border-right: 2px solid #000000;
}

.care-pricing-table thead th:last-child {
  border-right: none;
}

/* Body cells */
.care-pricing-table tbody td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #c2c2c2;
  border-right: 2px solid #000000;
  background-color: #dffffa;
}

.care-pricing-table tbody td:last-child {
  border-right: none;
}

/* Alternate row background for better readability */
.care-pricing-table tbody tr:nth-child(even) td {
  background-color: #d0f4f1;
}

/* Hover effect */
.care-pricing-table tbody tr:hover td {
  background-color: #a1e0dc;
  transition: background 0.3s ease;
}

/* Button Styling */
.btn-container {
  text-align: center;
  margin-top: 25px;
}

.btn-consult {
  display: inline-block;
  background-color: #F15A22;
  color: #ffffff;
  padding: 12px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: 0.3s ease;
}

.btn-consult:hover {
  background-color: #d94e1d;
  transform: translateY(-2px);
}

/* Responsive Table */
.care-pricing-table {
  width: 100%;
  border-collapse: separate;  /* allows rounded corners */
  border-spacing: 0;
  margin: 0 auto;
  background-color: #b2f0e6; /* light teal */
  font-family: 'Roboto', sans-serif;
  color: #000000;
  border-radius: 12px; /* rounded corners */
  overflow: hidden;    /* ensures corners stay rounded */
}

/* Header */
.care-pricing-table thead th {
  background-color: #ff7340; /* dark teal */
  color: #000000; /* black text */
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  text-align: center;
  border-bottom: 2px solid #c2c2c2; /* subtle grey horizontal line */
  border-right: 2px solid #000000;  /* vertical black line */
}

/* Remove right border for last header cell */
.care-pricing-table thead th:last-child {
  border-right: none;
}

/* Body cells */
.care-pricing-table tbody td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #c2c2c2; /* subtle grey horizontal line */
  border-right: 2px solid #000000;  /* vertical black line */
  background-color: #dffffa;        /* base teal */
}

/* Remove right border for last column */
.care-pricing-table tbody td:last-child {
  border-right: none;
}

/* Alternate row background for readability */
.care-pricing-table tbody tr:nth-child(even) td {
  background-color: #d0f4f1; /* lighter teal */
}

/* Optional: hover effect for modern feel */
.care-pricing-table tbody tr:hover td {
  background-color: #a1e0dc; /* slightly darker teal on hover */
  transition: background 0.3s ease;
}

/* How It Works */
.process-list {
  list-style: none;
  padding: 0;
  margin-bottom: 45px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.process-list li {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border-left: 5px solid var(--orange);
}

.process-list li:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.process-icon {
  margin-right: 15px;
  color: var(--teal);
  font-size: var(--fs-small);
}

.process-visual {
  margin-bottom: 30px;
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 35px;
  margin-bottom: 45px;
}

.testimonial-item {
  padding: 25px;
  background:rgba(217, 77, 30,0.3);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  border-left: 5px solid var(--teal);
}

.testimonial-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  margin-bottom: 20px;
  color: var(--black);
  font-style: italic;
  line-height: var(--lh-normal);
}

.testimonial-author {
  font-family: var(--font-secondary);
  font-size: var(--fs-small);
  text-align: right;
  color: var(--black);
  font-weight: 600;
}

/* Booking & Contact Section */
.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  color: #36C2C9;
}

#contact-form-section {
  position: relative;
  
  padding: 60px 0;
  color: var(--black);
  font-family: 'Roboto', sans-serif;
}

#contact-form-section .overlay {
  background: linear-gradient(to bottom, #d8f9f8, #b6f1ec);
  padding: 60px 20px;
}

/* Centered Form */
#contact-form-section .form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* Form Card */
#contact-form-section .booking-form {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

#contact-form-section .booking-form:hover {
  transform: translateY(-3px);
}

/* Form Fields */
#contact-form-section .form-row {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

#contact-form-section label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
  font-weight: 500;
}

#contact-form-section input,
#contact-form-section select,
#contact-form-section textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ff842d;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#contact-form-section input:focus,
#contact-form-section select:focus,
#contact-form-section textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(54,194,201,0.1);
  outline: none;
}

/* Buttons */
#contact-form-section .form-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  flex-wrap: wrap;
}

#contact-form-section .btn-orange,
#contact-form-section .btn-whatsapp {
  flex: 1;
  text-align: center;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

#contact-form-section .btn-orange {
  background: orangered;
  color: #fff;
}
#contact-form-section .btn-orange:hover { background: #d94d1e; }

/* Consent Text Styling */
.consent-text {
  font-size: 13px;
  color: #444;
  text-align: center;
  margin: 10px 0 15px;
  line-height: 1.4;
}
/* WhatsApp Round Button */
.btn-whatsapp {
  width: 44px;
  height: 44px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: scale(1);
}

/* WhatsApp Icon */
.btn-whatsapp .whatsapp-icons{
  width: 30px;
  height: 30px;
  display: block;
}



/* Responsive Fix */
@media (max-width: 600px) {
  #contact-form-section .form-actions {
    flex-direction: column;
    gap: 10px;
  }
  #contact-form-section .btn-orange,
  #contact-form-section .btn-whatsapp {
    width: 100%;
    flex: unset;
  }
}
#successMessage {
  font-size: 16px;
  color: #36C2C9;
  text-align: center;
  margin-bottom: 20px;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
/* FAQ Section */
.faq-section .accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section .card {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-section .card-header {
  background: var(--white);
  padding: 18px;
  border-bottom: 2px solid #f0f0f0;
}

.faq-section .card-header button {
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  color: var(--black);
  text-align: left;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  transition: color 0.3s ease;
}

.faq-section .card-header button:hover,
.faq-section .card-header button:focus {
  color: var(--teal);
  text-decoration: none;
}

.faq-section .card-body {
  padding: 18px;
  font-family: var(--font-secondary);
  font-size: var(--fs-body);
  color: var(--black);
  background: #f9fbfd;
  line-height: var(--lh-normal);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
   #hero { flex-direction: column; align-items: center;justify-content: center;}
  .service-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
  .testimonials-container { grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); }
}

@media (max-width: 991px) {
  #hero { min-height: 70vh;}
  .hero-content h1 { font-size: calc(var(--fs-h1) * 0.8); }
  .hero-content p { font-size: var(--fs-small); }
  .service-grid, .benefits-list, .process-list, .testimonials-container {
    grid-template-columns: 1fr;
  }
  .pricing-table { width: 100%; }
  .booking-section { padding: 30px; }
  .faq-section .accordion { max-width: 100%; }
}

@media (max-width: 768px) {
  #hero { min-height: 60vh; }
  .hero-content { padding: 20px; }
  .section-title { font-size: calc(var(--fs-h1) * 0.7); }
  .section-paragraph { font-size: var(--fs-small); }
  .service-item, .testimonial-item { padding: 20px; }
  .pricing-table th, .pricing-table td { padding: 12px; }
}

@media (max-width: 576px) {
  #hero { min-height: 50vh; }
  .hero-content { padding: 15px; }
  .hero-content h1 { font-size: calc(var(--fs-h1) * 0.6); }
  .hero-content p { font-size: calc(var(--fs-small) * 0.9); }
  .section-title { font-size: calc(var(--fs-h1) * 0.5); }
  .section-paragraph { font-size: calc(var(--fs-small) * 0.9); }
  .service-item, .testimonial-item { padding: 15px; }
  .booking-form input, .booking-form select, .booking-form textarea { font-size: calc(var(--fs-small) * 0.9); }
  .booking-form button { font-size: calc(var(--fs-small) * 0.9); }
  .faq-section .card-header button { font-size: calc(var(--fs-small) * 0.9); }
  .faq-section .card-body { font-size: calc(var(--fs-small) * 0.9); }
}
@media (max-width:900px) {
  .service-grid{
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}
.flex{
   height: fit-content;
  display: flex;
  flex-direction: row;
  justify-items: center;
  align-items: center;
  gap: 50px;
}
.flex-col{
  display: flex;
  align-items: start;
  flex-direction: column;
  gap:0px;
}
.flex-col-center{
   display: flex;
  align-items: center;
  flex-direction: column;
  gap:0px;
}
@media (max-width:1300px) {
  .flex{
  flex-direction: column;
  align-items: center;
  justify-content: center;

}
}
.center{
  display: flex;
  justify-content: center;
  align-items: center;
}
.care-pricing-table thead th {
  background-color: #ff7340; /* dark teal */
  color: #000000; /* black text */
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px;
  text-align: center;
  border-bottom: 2px solid #c2c2c2; /* subtle grey horizontal line */
  border-right: 2px solid #000000;  /* vertical black line */
}

/* Remove right border for last header cell */
.care-pricing-table thead th:last-child {
  border-right: none;
}

/* Body cells */
.care-pricing-table tbody td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #c2c2c2; /* subtle grey horizontal line */
  border-right: 2px solid #000000;  /* vertical black line */
  background-color: #dffffa;        /* base teal */
}

/* Remove right border for last column */
.care-pricing-table tbody td:last-child {
  border-right: none;
}

/* Alternate row background for readability */
.care-pricing-table tbody tr:nth-child(even) td {
  background-color: #d0f4f1; /* lighter teal */
}

/* Optional: hover effect for modern feel */
.care-pricing-table tbody tr:hover td {
  background-color: #a1e0dc; /* slightly darker teal on hover */
  transition: background 0.3s ease;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 40px;
}

.steps-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50px;
  width: 4px;
  height: 100%;
  background: #F15A22; /* Line color */
  border-radius: 2px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #ffe5e5;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  position: relative;
}

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

.step-icon {
  font-size: 28px;
  background: #F15A22;
  color: #fff;
  padding: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  z-index: 1;
}

.step-content h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.step-content p {
  font-size: 15px;
  margin: 0;
  color: #555;
  font-family: 'Roboto', sans-serif;
}

/* Section Styling */
#service-overview {
  padding: 40px 20px;
  background: white;
  width: 100%;
  margin: 40px auto;
}

/* Title Styling */
#service-overview .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #36C2C9;
  margin-bottom: 15px;
  position: relative;
}
#service-overview .section-title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, var(--teal), var(--orange));
  border-radius: 3px;
  transition: width 0.3s ease;
}
#service-overview .section-title:hover::after {
  width: 80px;
}

/* Paragraph Styling */
#service-overview .section-paragraph {
  width: 100%;
  text-align: center;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

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

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

/* Right Side: Benefits Grid */
#service-overview .service-benefits {
  flex: 1;
  display: flex;
  flex-wrap:wrap ;
  justify-content: center;
  gap: 20px;
}

/* Benefit Cards */
#service-overview .service-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#service-overview .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Benefit Icons */
#service-overview .benefit-icon {
  display: inline-block;
  font-size: 28px;
  margin-bottom: 8px;
  color: #36C2C9;
}

/* Card Titles & Text */
#service-overview .service-item h3 {
  margin: 10px 0 5px;
  color: #36C2C9;
  font-size: 18px;
  font-weight: 600;
}
#service-overview .service-item p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

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