body {
    font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
    background-color: #f1f3f6;
}

/* ===========================
   Modern Responsive Topbar
=========================== */
.topbar {
  background: linear-gradient(135deg, #48b8a5, #3aa191);
  color: #fff;
  font-size: 0.95rem;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  max-width: 1200px;
  margin: 1rem auto;
  box-shadow: 0 4px 14px rgba(72, 184, 165, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  backdrop-filter: blur(6px);
}

.topbar a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin-left: 1rem;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.topbar a:hover {
  color: #ffe8eb;
  text-shadow: 0 0 8px rgba(255,255,255,0.4);
}

.topbar i {
  margin-right: 0.4rem;
}

/* Align both sides on desktop */
.topbar-left {
  font-weight: 600;
}

.topbar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ✅ MOBILE VIEW */
@media (max-width: 768px) {
  .topbar {
    flex-direction: row;
    justify-content: space-between;
    border-radius: 20px;
    padding: 0.5rem 1rem;
  }

  /* Hide address and email on mobile */
  .topbar-left,
  .topbar-right a[href^="mailto"] {
    display: none;
  }

  /* Only show phone (left) and Mon–Fri (right) */
  .topbar-right {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .topbar-right a[href^="tel"] {
    display: inline-block;
    margin-left: 0;
  }

  .topbar-days {
    display: inline-block;
  }
}




/* ===========================
   Modern Glassy Navbar
=========================== */
.navbar-custom {
  background: rgba(255, 255, 255, 0.85); /* light glass look */
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  margin: 1rem auto;
  max-width: 1200px;
  padding: 0.8rem 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10;
}

/* Add subtle border at bottom */
.navbar-custom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #48b8a5, transparent);
  opacity: 0.3;
  border-radius: 2px;
}

/* Logo / Brand */
.navbar-brand {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.navbar-brand span.p { color: #48b8a5; }
.navbar-brand span.a { color: #94bade; }
.navbar-brand span.r { color: #bcb0d6; }
.navbar-brand span.e { color: #d82236; }
.navbar-brand span.s { color: #414141; }

/* Nav Links */
.navbar-custom .nav-link {
  color: #222;
  font-weight: 600;
  font-size: 1.05rem;
  margin-right: 1rem;
  position: relative;
  letter-spacing: 0.3px;
  transition: color 0.3s ease-in-out;
}

/* Animated underline */
.navbar-custom .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #48b8a5;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: #48b8a5;
}

.navbar-custom .nav-link:hover::after {
  width: 100%;
}

/* Navbar toggler for mobile */
.navbar-toggler {
  border: none;
  background: none;
  font-size: 1.4rem;
  color: #48b8a5;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

/* ===========================
   Mobile Adjustments
=========================== */
@media (max-width: 992px) {
  .navbar-custom {
    border-radius: 12px;
    margin: 0.5rem 1rem;
  }

  .navbar-custom .nav-link {
    margin: 0.5rem 0;
    text-align: center;
  }

  .navbar-collapse {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
  }
}

/* Hide Feedback button on mobile */
@media (max-width: 768px) {
  .btn-feedback {
    display: none !important;
  }
}
/* ===========================
   Modern Upgraded Buttons
=========================== */

/* Shared base styling */
.btn-feedback,
.btn-book {
  font-weight: 700;
  border-radius: 50px;
  padding: 0.65rem 1.6rem;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* ========== Book Button (Red) ========== */
.btn-book {
  background: linear-gradient(135deg, #d82236, #b31629);
  color: #fff;
  box-shadow: 0 4px 10px rgba(216, 34, 54, 0.3);
}

.btn-book:hover {
  background: linear-gradient(135deg, #e53549, #c01d30);
  transform: translateY(-3px);
    color: #fff;

  box-shadow: 0 6px 14px rgba(216, 34, 54, 0.4);
}

.btn-book:active {
  transform: scale(0.97);
  
  box-shadow: 0 3px 8px rgba(216, 34, 54, 0.3);
}

/* ========== Feedback Button (Teal) ========== */
.btn-feedback {
  background: linear-gradient(135deg, #48b8a5, #3ba290);
  color: #fff;
  box-shadow: 0 4px 10px rgba(72, 184, 165, 0.3);
}

.btn-feedback:hover {
  background: linear-gradient(135deg, #5ed2be, #48b8a5);
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(72, 184, 165, 0.4);
}

.btn-feedback:active {
  transform: scale(0.97);
  box-shadow: 0 3px 8px rgba(72, 184, 165, 0.3);
}

/* Optional subtle glow effect on hover */
.btn-feedback::after,
.btn-book::after {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.25);
  transform: skewX(-25deg);
  transition: left 0.5s ease;
}

.btn-feedback:hover::after,
.btn-book:hover::after {
  left: 125%;
}












/* Hero Section */

/* Hero Section */
.hero-section {
    margin: 1rem auto;
    max-width: 1200px;
    border-radius: 12px;
    padding: 2rem 0;
}



.hero-section .carousel-inner {
    border-radius: 12px;
}

.hero-section .hero-img {
    width: 100%;        /* Full width of the column */
    height: 300px;      /* Fixed rectangular height */
    object-fit: cover;  /* Crops the image properly while filling rectangle */
    border-radius: 12px;
}

/* Hero Section text colors */
.hero-section h1 {
    color: #48b8a5; /* Brand color for heading */
}

.hero-section h1 .brand-color {
    color: #d82236; /* Highlight PARES in red */
}

.hero-section p {
    color: #000000; /* White text for paragraph */
}



/* ===========================

/* ===========================
   Section Red Wave Divider (Extended)
=========================== */
.section-wave {
  width: 70%;              /* keep wave centered (adjust width as needed) */
  margin: 0 auto;          /* center horizontally */
  height: 60px;
  overflow: hidden;
  background: transparent;
}

.section-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.section-wave path {
  fill: none;
  stroke: #d82236; /* PARES red */
  stroke-width: 3; /* Line thickness */
  stroke-linecap: round;
}




/* ===========================
   Services S
   ection (Upgraded)
=========================== */


.services-section h2 {
  color: #1d7c74;
  font-weight: 700;
  position: relative;
}

.services-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #d82236;
  margin: 0.5rem auto 1rem;
  border-radius: 3px;
}

.service-card {
  background-color: #fff;
  border: 1px solid #e5ecec;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 6px 18px rgba(29,124,116,0.15);
  transform: translateY(-3px);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background-color: #e8f5f4;
  color: #1d7c74;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.service-card h5 {
  color: #1d7c74;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  padding: 0;
}

.service-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  color: #444;
}

.service-list li::before {
  content: "✔";
  color: #1d7c74;
  font-weight: bold;
  position: absolute;
  left: 0;
}





/* ===========================
/* ===========================
   Wellness Section (Final)
=========================== */


/* Heading style with underline */
.wellness-section h2 {
  color: #1d7c74;
  font-weight: 700;
  margin-bottom: 1rem;
  text-decoration: underline;
  text-decoration-color: #d82236; /* red underline */
  text-underline-offset: 6px;
}

/* Text */
.wellness-section p {
  color: #555;
}

/* Steps list */
.steps-list {
  margin-top: 1.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.step-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: #e8f5f4;
  color: #1d7c74;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 1rem;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}

.step-content h5 {
  color: #1d7c74;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.step-content p {
  font-size: 0.95rem;
  margin-bottom: 0;
  color: #444;
}

/* Image wrapper to match content height */
.wellness-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image styling */
.wellness-img {
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustment */
@media (max-width: 768px) {
  .wellness-section .row {
    text-align: center;
  }

  .wellness-img {
    height: auto;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .step-item {
    flex-direction: column;
    align-items: center;
  }

  .step-icon {
    margin-bottom: 0.5rem;
  }
}













/* Gallery Section */
.gallery-section {
    background-color: #f1f3f6;
    overflow: hidden;
}

.scroll-gallery {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-track {
    display: flex;
    width: max-content;
    animation: scrollGallery 35s linear infinite;
}

.gallery-item {
    position: relative;
    margin-right: 1rem;
}

.gallery-item img {
    width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Hover Overlay */
.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay i {
    font-size: 2rem;
    color: #48b8a5;
}

/* Scroll Animation */
@keyframes scrollGallery {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}






/* Testimonials Section */
.testimonials-section {
  border-radius: 16px;
  margin: 1rem auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

/* Section title underline */
.section-title {
  color: #48b8a5;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: #d82236;
  bottom: -8px;
  left: 20%;
  border-radius: 2px;
}

.testimonial-card {
  border-radius: 16px;
  border: 1px solid #48b8a5;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(72, 184, 165, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(72, 184, 165, 0.25);
}

.testimonial-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #48b8a5;
  transition: transform 0.3s ease;
}
.testimonial-card:hover .testimonial-img {
  transform: scale(1.05);
}

.testimonial-text {
  font-style: italic;
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* Quote icon */
.quote-icon {
  font-size: 2rem;
  color: #d82236;
  opacity: 0.3;
  display: block;
  margin-bottom: 0.5rem;
}


/* Carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #48b8a5;
  border-radius: 50%;
  padding: 1rem;
  transition: all 0.3s ease;
}
.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #d82236;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

/* Wave divider */
.section-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}
.section-wave path {
  fill: none;
  stroke: #d82236;
  stroke-width: 4;
  stroke-linecap: round;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    text-align: center;
    padding: 1.5rem;
  }
  .testimonial-img {
    width: 120px;
    height: 120px;
  }
  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}






/* Packages Section */
.packages-section {
  border-radius: 12px;
  margin: 1rem auto;
  max-width: 1200px;
}

.section-title {
  color: #48b8a5;
  font-size: 2rem;
}

.section-subtitle {
  color: #d82236;
}

/* Compact Card Style */
.package-card {
  background: linear-gradient(180deg, #ffffff, #f4f8f9);
  border: 2px solid #48b8a5;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 1rem !important;
}

.package-card .btn-book-now {
  margin-top: auto;
  align-self: center;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(72, 184, 165, 0.25);
  border-color: #2c9a8c;
}

.package-card h4 {
  color: #48b8a5;
  font-size: 1.05rem;
  font-weight: 700;
}

.divider {
  width: 50px;
  height: 3px;
  background-color: #48b8a5;
  border-radius: 2px;
}

.package-card .price {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.package-card .price span {
  color: #48b8a5;
  font-weight: 700;
}

.package-card .duration {
  color: #666;
  font-size: 0.9rem;
}

.package-card .desc {
  color: #444;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Highlighted Packages */
/* Highlighted Packages - Same as Normal */
.package-card.highlight {
  background: linear-gradient(180deg, #ffffff, #f4f8f9);
  border: 2px solid #48b8a5;
  color: #333;
}

.package-card.highlight h4,
.package-card.highlight p,
.package-card.highlight .price span {
  color: #000000;
}
/* Button Styling */
.btn-book-now {
  background-color: #48b8a5;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.45rem 1.2rem;
  border: none;
  transition: all 0.3s ease-in-out;
  font-size: 0.9rem;
}

.btn-book-now:hover {
  background-color: #2c9a8c;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(72, 184, 165, 0.3);
}

/* Highlight Button Variation */
.package-card.highlight .btn-book-now {
  background-color: #48b8a5;
  color: #fff;
}

.package-card.highlight .btn-book-now:hover {
  background-color: #2c9a8c;
  color: #fff;
}

/* Icon Box */
.icon-box {
  width: 55px;
  height: 55px;
  background: rgba(72, 184, 165, 0.1);
  color: #48b8a5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Responsive Grid — 4 per row on large screens */
@media (min-width: 992px) {
  .packages-section .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}






/* Achievements / Certifications / Partners Section */
.achievements-section {
  border-radius: 12px;
  margin: 1rem auto;
  max-width: 1200px;
}

.achievements-section .section-title {
  color: #48b8a5;
}

.achievement-card {
  background: #ffffff;
  border: 2px solid #48b8a5;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(72, 184, 165, 0.25);
  border-color: #2c9a8c;
}

.achievement-card img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(20%);
  transition: all 0.3s ease;
}

.achievement-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.achievement-card p {
  font-weight: 600;
  color: #333;
  margin-top: 0.8rem;
  font-size: 0.95rem;
}











/* Contact Section */
.contact-section {
  border-radius: 16px;
  margin: 1rem auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

/* Contact info and form */
.contact-info,
.contact-form {
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #f9fafb; /* light neutral background */
  color: #333; /* dark text for readability */
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  padding: 20px;
}

/* Info box */
.contact-info h4 {
  color: #222; /* dark heading */
}
.contact-info p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #000000;
}
.contact-info i {
  color: #555;
  opacity: 0.8;
}
.contact-info a {
  color: #ce0404; /* accent color for links */
  text-decoration: none;
  transition: color 0.3s;
}
.contact-info a:hover {
  color: #369481;
  text-decoration: underline;
}

/* Social icons */
.social-icons a {
  color: #48b8a5; /* accent color */
  font-size: 1.4rem;
  margin-right: 1rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.social-icons a:hover {
  color: #369481;
  transform: scale(1.15);
}

/* Contact form */
.contact-form {
  border: 1px solid #48b8a5;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  background-color: #fff; /* simple white background */
}

/* Floating labels */
.form-floating > .form-control,
.form-floating > .form-select {
  border-radius: 10px;
  border: 1px solid #ccc;
}
.form-floating > label {
  color: #888;
}
.form-control:focus,
.form-select:focus {
  border-color: #48b8a5;
  box-shadow: 0 0 6px rgba(72, 184, 165, 0.4);
}





/* Contact Section Send Message Button */
.contact-section .btn-book-now {
  background-color: #48b8a5; /* accent color matching contact form */
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
}

.contact-section .btn-book-now:hover {
  background-color: #369481; /* darker accent on hover */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(72, 184, 165, 0.3);
}

.contact-section .btn-book-now:active {
  transform: translateY(0);
  box-shadow: none;
}

.contact-section .btn-book-now:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(72, 184, 165, 0.3);
}

/* Map */
.map-container iframe {
  border-radius: 12px;
}

/* Wave divider */
.section-wave svg {
  width: 100%;
  height: 60px;
  display: block;
}
.section-wave path {
  fill: none;
  stroke: #d82236;
  stroke-width: 4;
  stroke-linecap: round;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info, .contact-form {
    padding: 1.5rem;
  }
  .map-container iframe {
    height: 280px;
  }
}



/* Map */
.map-container iframe {
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}





/* About Section */
/* About Section */
.about-section {
  border-radius: 12px;
  margin: 1rem auto;
  max-width: 1200px;
  padding: 3rem 2rem;
}

.about-logo-wrapper {
  display: flex;
  justify-content: center; /* center horizontally */
  align-items: center;     /* center vertically */
  height: 150px;           /* adjust as needed */
  background-color: transparent; /* optional */
}

.about-logo-wrapper .navbar-brand {
  font-size: 6rem;          /* larger logo text */
  font-weight: 900;          /* extra bold */
  font-family: 'Comic Neue', 'Comic Sans MS', cursive, sans-serif;
  letter-spacing: 0.2rem;   /* space between letters */
  text-transform: uppercase;
  color: #d82236;           /* match text-accent color */
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-logo-wrapper .navbar-brand span {
  display: inline-block;
  margin: 0 2px;           /* spacing between letters */
}

/* About Content */
.about-content .text-accent {
  color: #d82236;
}

.about-content p {
  line-height: 1.7;
  color: #444;
}

/* Footer Section */
.footer-section {
  color: #000000;
  border-radius: 12px;
  margin: 1rem auto;
  max-width: 1200px;
  overflow: hidden;
}




/* Footer Section */
/* 🌿 Footer Section */
.footer-section {
  color: #000000;
  border-radius: 12px;
  margin: 1rem auto;
  max-width: 1200px;
  overflow: hidden;
}

/* Divider Line */
.footer-divider {
  height: 4px;
  background-color: #d82236; /* Brand red accent */
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* Brand Logo Colors */
.footer-section h3 span.p { color: #48b8a5; }
.footer-section h3 span.a { color: #94bade; }
.footer-section h3 span.r { color: #bcb0d6; }
.footer-section h3 span.e { color: #d82236; }
.footer-section h3 span.s { color: #050505; }

/* Footer Links */
.footer-links a {
  color: #000000;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.4rem;
  transition: color 0.3s ease, transform 0.2s ease;
}
.footer-links a:hover {
  color: #d82236;
  transform: translateX(3px);
}

/* Social Icons */
.footer-social a {
  color: #050505;
  font-size: 1.3rem;
  margin-right: 0.7rem;
  transition: color 0.3s ease;
}
.footer-social a:hover {
  color: #d82236;
}

/* Footer Bottom */
.footer-bottom {
  background-color: rgba(0, 0, 0, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-section .col-md-4 {
    text-align: center !important;
  }
  .footer-social {
    margin-bottom: 1rem;
  }
}











/* 🌿 Team Section */
.team-section {
  border-radius: 12px;
  margin: 1rem auto;
  max-width: 1200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Section Title */
.team-section .section-title {
  font-size: 2rem;
  color: #222;
}

/* Team Card */
.team-card {
  background: #f9fafb;
  border-radius: 16px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Team Image */
.team-img img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border: 4px solid #48b8a5;
}

/* Divider */
.team-card .divider {
  width: 60px;
  height: 3px;
  background-color: #48b8a5;
  border-radius: 2px;
}

/* Buttons Container */
.team-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

/* LinkedIn Button */
.btn-linkedin {
  background-color: #0077b5;
  color: #fff;
  border-radius: 30px;
  padding: 6px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-linkedin:hover {
  background-color: #005f8e;
  color: white;
  transform: translateY(-2px);
}

/* Contact Button */
.btn-contact {
  background-color: #48b8a5;
  color: #fff;
  border-radius: 30px;
  padding: 6px 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-contact:hover {
  background-color: #369481;
  transform: translateY(-2px);
    color: white;

}

/* Responsive */
@media (max-width: 768px) {
  .team-card {
    margin-bottom: 1rem;
  }
  .team-img img {
    width: 130px;
    height: 130px;
  }
}




/* Responsive  services-section  dedicated page */

.services-section {
  font-family: 'Comic Neue', sans-serif;
}

.services-section h2 {
  color: #2c3e50;
  font-weight: 700;
}

.service-card {
  background-color: #ffffff;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  border-color: #198754;
}

.service-icon i {
  font-size: 2.5rem;
  color: #48b8a5;
}

.service-title {
  color: #1c2833;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-desc {
  color: #495057;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.service-list {
  list-style: none;
  padding-left: 0;
}

.service-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  color: #495057;
  font-size: 0.92rem;
}

.service-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #48b8a5;
  font-weight: bold;
}




@media (max-width: 768px) {
  .service-card {
    margin-bottom: 1rem;
  }
}



/* Training Section Styling */

.training-section h2 {
  font-family: 'Comic Neue', cursive;
  font-weight: 700;
  color: #333;
}

.training-card {
  background-color: #fff;
  border-radius: 15px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.training-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.training-icon i {
  font-size: 2.5rem;
  color: #48b8a5; /* Blue color for icons */
  transition: all 0.3s ease;
}

.training-card:hover .training-icon i {
  color: #d61515; /* Highlight color on hover */
}

.training-title {
  font-family: 'Comic Neue', cursive;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #333;
}

.training-desc {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}

.training-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.training-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #555;
}

.training-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #48b8a5; /* Bullet color */
  font-weight: bold;
}










/* ==== Booking Modal Styling ==== */
.booking-modal {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  font-family: 'Comic Neue', cursive;
}

.booking-modal h4 {
  color: #333;
}

.booking-form .form-control, 
.booking-form .form-select {
  border-radius: 0.75rem;
  border: 1px solid #ddd;
  padding: 0.75rem;
}

.booking-form .form-control:focus, 
.booking-form .form-select:focus {
  border-color: #d82236;
  box-shadow: 0 0 0 0.2rem rgba(216, 34, 54, 0.2);
}

.booking-form label {
  color: #555;
}

.modal-content.booking-modal {
  animation: fadeInUp 0.5s ease-in-out;
}

@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}



/* ==== Feedback Modal Styling ==== */
.feedback-form .form-control, 
.feedback-form .form-select {
  border-radius: 0.75rem;
  border: 1px solid #ddd;
  padding: 0.75rem;
}

.feedback-form .form-control:focus, 
.feedback-form .form-select:focus {
  border-color: #d82236;
  box-shadow: 0 0 0 0.2rem rgba(216, 34, 54, 0.2);
}

.feedback-form label {
  color: #555;
}

.modal-content.booking-modal {
  background: #fff;
  animation: fadeInUp 0.5s ease-in-out;
  font-family: 'Comic Neue', cursive;
}

@keyframes fadeInUp {
  from { transform: translateY(40px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
