:root {
  --primary: #F47A24;
  --primary-dark: #d66e04;
  /* --secondary: #4BB4A5; */
  --secondary: #1A8C8C;
  --accent: #4CAF50;
  --accent-dark: #45a049;
  --bg-light: #F7F7F7;
  --text-main: #333333;
  --text-muted: #718096;
  --card-bg: #ffffff;
  --radius: 12px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  /* border: 1px solid red; */
}
.btn-white:hover {
    color: var(--primary);
}
.btn i {
    padding-right: 5px;
}
/* PAGE LOADER */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: var(--primary); */
      background: #9333ea;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-content img {
  animation: sproutGrow 1.5s ease-out infinite;
  transform-origin: bottom center;
}

@keyframes sproutGrow {
  0% {
    transform: translateY(30px) scale(0.3);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  70% {
    transform: translateY(0) scale(1.05);
  }
  85% {
    transform: translateY(-5px) scale(0.98);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

.loader-icon {
      width: 60px;
    height: 60px;
    border: 4px solid rgb(234 119 255 / 30%);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

#why .section-label::after {
    left: calc(50% - 20px);
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.loader-text {
  font-family: 'Nunito', sans-serif;
  color: #F78105;
  font-weight: 400;
  font-size: 28px;
  letter-spacing: 2px;
}

/* KEYFRAME ANIMATIONS */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

/* TOP BAR */
.top-bar {
  background: var(--primary);
  color: #ffffff;
  padding: 5px 0;
  font-size: 13px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1031;
  animation: slideDown 0.5s ease;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar-link {
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease;
  font-weight: 500;
}

.top-bar-link:hover {
  color: #ffffff;
  opacity: 0.8;
}

.top-bar-link i {
  font-size: 12px;
}

.top-bar-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.social-label {
  font-weight: 500;
  margin-right: 5px;
  color: #ffffff;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.social-link:hover {
  background: #ffffff;
  color: var(--primary);
  transform: translateY(-2px);
}

/* Top bar hide/show animation */
.top-bar {
  transition: transform 0.3s ease;
}

.top-bar.top-bar-hidden {
  transform: translateY(-100%);
}

/* Adjust header to account for top bar */
.site-header {
  top: 33px;
  transition: top 0.3s ease;
}

.site-header.top-bar-hidden {
  top: 0;
}

/* HEADER */
.navbar-brand {
  line-height: 4px;
}
.navbar-brand span {
  font-size: 12px;
  letter-spacing: 1px;
}
.site-header {
  background: #ffffff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.5s ease;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  margin: 0 auto;
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
}

.navbar-nav .nav-link:hover::after {
  width: 80%;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-item .nav-link.active {
  color: var(--primary) !important;
  font-weight: 700;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-item .nav-link.active::after {
  width: 80%;
  background: var(--primary);
}

/* Dropdown Menu Styling */
.navbar-nav .dropdown-menu {
  background: #ffffff;
  border: 1px solid rgba(247, 129, 5, 0.15);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 200px;
}

/* Show dropdown on hover for desktop */
@media (min-width: 992px) {
  .navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
  }
  
  .navbar-nav .dropdown-menu {
    margin-top: 0;
  }
}

.navbar-nav .dropdown-item {
  padding: 0.75rem 1.5rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover {
  background: rgba(247, 129, 5, 0.1);
  color: var(--primary);
  padding-left: 1.75rem;
}

.navbar-nav .dropdown-item:focus {
  background: rgba(247, 129, 5, 0.1);
  color: var(--primary);
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 0;
  vertical-align: 0.15em;
}
.dropdown-toggle::after {
    display: none;
}
a.dropdown-toggle i {
    font-size: 12px;
    margin-left: 5px;
}
.nav-btn {
  padding: 10px 24px;
  background: var(--primary);
  color: #fff !important;
  border: 2px solid var(--primary);
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 1rem;
}

.nav-btn:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff !important;
}
a.dropdown-item.active {
    background-color: #387d80 !important;
    color: white;
}
a.dropdown-item.active:hover {
    color: white;
}
.navbar-toggler {
  border: 2px solid var(--primary);
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(247, 129, 5, 0.25);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28247, 129, 5, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  /* Hide top bar on mobile */
  .top-bar {
    display: none;
  }

  .site-header {
    top: 0 !important;
  }

  .hero {
    padding: 130px 0 80px;
  }

  .navbar {
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 40px;
  }

  .navbar-brand span {
    font-size: 10px;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
    /* padding: 80px 20px 20px; */
    padding: 25px 20px 20px;
    margin-top: 0;
    z-index: 1050;
    overflow-y: auto;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .navbar-collapse.show {
    left: 0;
  }

  .navbar-collapse.collapsing {
    left: -100%;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100vh;
  }

  .navbar-collapse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 280px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    z-index: 0;
    display: none;
  }

  .navbar-nav {
    gap: 5px;
  }

  .navbar-nav .nav-link {
    padding: 12px 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
    color: var(--text-main);
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active,
  .navbar-nav .nav-item .nav-link.active {
    background: rgba(247, 129, 5, 0.1);
    color: var(--primary) !important;
    font-weight: 700;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }

  /* Mobile Dropdown Styling */
  .navbar-nav .dropdown-menu {
    border: none;
    box-shadow: none;
    background: rgba(247, 129, 5, 0.05);
    margin: 0;
    padding: 0;
    position: static !important;
    transform: none !important;
    border-radius: 6px;
    margin-top: 5px;
  }

  .navbar-nav .dropdown-item {
    padding: 10px 15px 10px 30px;
    font-size: 13px;
    border-radius: 6px;
  }

  .navbar-nav .dropdown-item:hover {
    padding-left: 35px;
  }

  .navbar-nav .dropdown-toggle::after {
    float: right;
    margin-top: 5px;
  }

  .nav-btn {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
  }

  /* Mobile contact section */
  .mobile-contact-section {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
  }

  .mobile-contact-divider {
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin-bottom: 20px;
    border-radius: 2px;
  }

  .mobile-contact-title {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .mobile-contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
  }

  .mobile-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: rgba(247, 129, 5, 0.05);
    border-radius: 6px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 13px;
  }

  .mobile-contact-link:hover {
    background: rgba(247, 129, 5, 0.1);
    color: var(--primary);
    transform: translateX(5px);
  }

  .mobile-contact-link i {
    width: 20px;
    text-align: center;
    color: var(--primary);
    font-size: 14px;
  }

  .mobile-social {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
  }

  .mobile-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
  }

  .mobile-social-link:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(247, 129, 5, 0.3);
  }

  /* Mobile menu overlay */
  .navbar-collapse::after {
    content: '';
    position: fixed;
    top: 0;
    left: 280px;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -2;
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .navbar-collapse.show::after {
    opacity: 1;
    pointer-events: auto;
  }
}

/* Hide mobile contact section on desktop */
@media (min-width: 992px) {
  .mobile-contact-section {
    display: none;
  }
}

/* HERO */
.hero {
  color: #fff;
  padding: 173px 0 120px;
  position: relative;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-repeat: no-repeat;
}

.hero-bg-slide.active {
  opacity: 1;
}

.hero-bg-slide:nth-child(1) {
  background-image: url('imgs/hero-slider.jpeg');
}

.hero-bg-slide:nth-child(2) {
  background-image: url('imgs/children-with-toys.png');
}
.hero-bg-slide:nth-child(3) {
  background-image: url('imgs/super-hero-therapy.webp');
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(26, 61, 92, 0.95), rgba(42, 85, 119, 0.4));
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(212, 166, 69, 0.1) 0%, transparent 50%);
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-text {
  text-align: left;
  max-width: 750px;
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(32px, 6vw, 50px);
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
  animation: fadeInUp 1s ease 0.3s backwards;
}

.hero .subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  opacity: 0.95;
  animation: fadeInUp 1s ease 0.5s backwards;
}

.hero-subtext {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  max-width: 600px;
  animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-description {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.7s backwards;
}

.hero-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.9s backwards;
}

.hero-service-item {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  animation: slideInLeft 0.5s ease backwards;
      text-align: left;
}

.hero-service-item:nth-child(1) { animation-delay: 1s; }
.hero-service-item:nth-child(2) { animation-delay: 1.1s; }
.hero-service-item:nth-child(3) { animation-delay: 1.2s; }
.hero-service-item:nth-child(4) { animation-delay: 1.3s; }

.hero-service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-service-item i {
  font-size: 24px;
  color: #1A8C8C;
  flex-shrink: 0;
}

.hero-service-item h3 {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .hero-services {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  #developmental-support, #family-community-support, #premium-add-ons {
    scroll-margin-top: 97px;
  }
  .hero-service-item {
    padding: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  
  .hero-service-item i {
    font-size: 28px;
  }
  
  .hero-service-item h3 {
    font-size: 12px;
  }
}

.hero-contact {
  margin-top: 30px;
  animation: fadeInUp 1s ease 1.1s backwards;
}

.hero-contact p {
  margin-bottom: 8px;
  font-size: 14px;
}

.hero-contact i {
  color: var(--accent);
  margin-right: 10px;
  width: 20px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 35px;
  animation: fadeInUp 1s ease 1s backwards;
}

@media (max-width: 576px) {
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 576px) {
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: var(--accent-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(212, 166, 69, 0.4);
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--bg-light);
}

.btn-secondary-teal {
  background: #1A8C8C;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
}

.btn-secondary-teal:hover {
  background: #F47A24;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(244, 122, 36, 0.4);
  color: #fff;
}

.btn-primary-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #4CAF50;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}

.btn-primary-green:hover {
  background: #1A8C8C;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 140, 140, 0.3);
  color: #fff;
}

.btn-tertiary-teal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: transparent;
  color: #1A8C8C;
  border: 2px solid #1A8C8C;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}

.btn-tertiary-teal:hover {
  background: #1A8C8C;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 140, 140, 0.3);
}

.hero-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.hero-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  object-fit: cover;
  height: 280px;
}

.hero-img:first-child {
  align-self: flex-start;
}

.hero-img:last-child {
  align-self: flex-end;
}

#service-stat {
    margin-top: -70px;
    z-index: 1;
    position: relative;
}
/* ABOUT SECTION */
.about-section {
  padding: 40px 0;
  background: #fff;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  animation: fadeIn 0.8s ease;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
}

.services-title {
  color: #1A8C8C !important;
}

.about-image-wrapper {
  background: linear-gradient(135deg, var(--accent) 0%, #e6b85c 100%);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991px) {
  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* About Carousel Styles */
.about-image-carousel-wrapper {
  position: relative;
  background: linear-gradient(135deg, var(--accent) 0%, #e6b85c 100%);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.about-carousel-inner {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: calc(var(--radius) - 4px);
  overflow: hidden;
}

.about-carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  top: 0;
  left: 0;
}

.about-carousel-item.active {
  opacity: 1;
}

.about-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}

.about-carousel-control {
  display: none;
}

.about-carousel-indicators {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.about-carousel-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  font-size: 0;
}

.about-carousel-indicators .indicator.active {
  background: white;
  transform: scale(1.2);
}

.about-carousel-indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 991px) {
  .about-image-carousel-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .about-carousel-inner {
    height: 450px;
  }

  .about-carousel-control {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

.why-image,
.services-image,
.insights-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
#why .container > p {
    background: rgb(255 255 255 / 69%);
    padding: 20px;
    border-radius: 5px;
        font-size: 14px;
    color: var(--text-muted);
}
.about-text h3 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 15px;
}

.education-item h4 {
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 5px;
  font-weight: 600;
}

.education-item p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

.certifications {
  /* margin-top: 30px; */
}
.certifications p {
    font-size: 14px;
    color: var(--text-muted);
}
.certifications h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.cert-list {
  list-style: none;
      padding: 0;
}

.cert-list li {
  padding-left: 28px;
  margin-bottom: 10px;
  position: relative;
  font-size: 14px;
  color: var(--text-muted);
}

.cert-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.learn-more-btn {
  margin-top: 25px;
}

/* WHY CHOOSE ME */
.why-section {
  padding: 60px 0;
  background: #F7F7F7;
  text-align: center;
}

.why-section .section-label,
.why-section .section-title {
  text-align: center;
}
section#why:after {
    content: "";
    background-image: url(imgs/child-with-paint-full.PNG);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    z-index: -1;
        background-size: contain;
    background-position: bottom right;
}
.why-intro-title {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

.why-card {
  background: var(--card-bg);
  /* background: rgb(255 255 255 / 90%); */
  padding: 25px 15px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* .why-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
} */

.why-card-icon {
  width: 70px;
  height: 70px;
  /* background: linear-gradient(135deg, var(--primary), var(--primary-dark)); */
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 30px;
  color: white;
}

.why-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0;
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-content {
  font-size: 16px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.why-list {
  list-style: none;
  padding-left: 0;
}

.why-list li {
  padding-left: 30px;
  margin-bottom: 15px;
  position: relative;
  font-size: 15px;
  color: var(--text-muted);
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 18px;
}

.stats-wrapper {
  /* background: var(--secondary); */
  /* padding: 40px; */
  border-radius: var(--radius);
  margin-top: 30px;
  animation: scaleIn 0.8s ease;
}

.stat-item {
  text-align: center;
  color: #fff;
  animation: scaleIn 0.6s ease backwards;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 30px 20px;
  background: var(--secondary);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:nth-child(1) { animation-delay: 0.2s; }
.stat-item:nth-child(2) { animation-delay: 0.3s; }
.stat-item:nth-child(3) { animation-delay: 0.4s; }

.stat-icon {
  font-size: 48px;
  color: #FFF;
  /* margin-bottom: 20px; */
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.5;
  margin-top: 5px;
}

.why-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* SERVICES */
.services-section {
  padding: 60px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

/* Animated Background Shapes */
.services-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.services-shape {
  position: absolute;
  border-radius: 50%;
  /* opacity: 0.08; */
  opacity: 0.05;
  animation: floatShape 20s infinite ease-in-out;
}

.services-shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  top: 10%;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.services-shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  top: 60%;
  right: 10%;
  animation-delay: 2s;
  animation-duration: 20s;
}

.services-shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
  animation-duration: 22s;
}

.services-shape-4 {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  top: 35%;
  right: 25%;
  animation-delay: 1s;
  animation-duration: 18s;
}

.services-shape-5 {
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  bottom: 40%;
  left: 40%;
  animation-delay: 3s;
  animation-duration: 24s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(-20px, 40px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translate(40px, 20px) rotate(270deg) scale(1.05);
  }
}

.parallax-clip {
  height: 100%;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  clip: rect(auto, auto, auto, auto);
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}

.fixed-parallax {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  opacity: 0.7;
}

.fixed-parallax::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.1);
  content: "";
  z-index: 1;
}

.services-section .container {
  position: relative;
  z-index: 1;
      background: rgb(255 255 255 / 45%);
}

/* Service Card Modern Styles */
.service-card-modern {
  padding: 2.5rem;
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.service-card-modern:nth-child(odd) {
  background: linear-gradient(135deg, #fff7f0 0%, #ffe8d6 100%);
  box-shadow: 0 4px 15px rgba(247, 129, 5, 0.1);
}
.service-card-modern a {
    display: block;
    width: max-content;
    margin: 0 auto;
}
.service-card-modern:nth-child(even) {
  background: linear-gradient(135deg, #f9f5ee 0%, #f0e8dd 100%);
  box-shadow: 0 4px 15px rgba(247, 129, 5, 0.08);
}
section#services {
    overflow: hidden;
}s
.service-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(247, 129, 5, 0.15);
}

/* Ensure service card columns stretch to equal height */
.services-section .row.g-4 {
  align-items: stretch;
}

.services-section .row.g-4 > [class*="col-"] {
  display: flex;
}

/* Services Section Support Intro */
.support-intro-card {
  background: linear-gradient(135deg, rgba(146, 208, 47, 0.08), rgba(75, 180, 165, 0.05));
  /* border-left: 5px solid var(--accent); */
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease;
}

.support-intro-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-intro-card h3::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
}

.support-intro-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.support-highlights {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-highlights li {
  font-size: 14px;
  color: var(--text-main);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.support-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.support-highlights strong {
  color: var(--primary);
  font-weight: 700;
}

/* Bootstrap Accordion Styling for Services */
#servicesAccordion .accordion-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 5px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 15px;
  border: none;
  animation: fadeInUp 0.6s ease backwards;
}

#servicesAccordion .accordion-item:nth-child(1) { animation-delay: 0.1s; }
#servicesAccordion .accordion-item:nth-child(2) { animation-delay: 0.2s; }
#servicesAccordion .accordion-item:nth-child(3) { animation-delay: 0.3s; }
#servicesAccordion .accordion-item:nth-child(4) { animation-delay: 0.4s; }
#servicesAccordion .accordion-item:nth-child(5) { animation-delay: 0.5s; }

#servicesAccordion .accordion-button {
  background: white;
  border: 1px solid #10b981;
  padding: 30px;
  font-size: 18px;
  font-weight: 600;
  color: #008080;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  border-radius: var(--radius) !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#servicesAccordion .accordion-button:hover {
  background: rgba(146, 208, 47, 0.05);
  color: #008080;
}

#servicesAccordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

#servicesAccordion .accordion-button:not(.collapsed) {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}

#servicesAccordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#servicesAccordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F78105'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}

#servicesAccordion .accordion-button.collapsed::after {
  transform: rotate(0deg);
}

/* Ensure arrow displays for all accordion buttons */
#servicesAccordion .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
}

#servicesAccordion .accordion-body {
  padding: 30px 30px 30px 30px;
  border-top: 1px solid #e0e0e0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
}

#servicesAccordion .accordion-collapse {
  border-radius: 0 0 var(--radius) var(--radius);
}

#servicesAccordion .rate {
  color: #3FA66B;
  display: inline-block;
  white-space: nowrap;
  vertical-align: middle;
}

.services-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
}

/* Services Theme Groups */
.services-theme-group {
  margin-bottom: 40px;
}

.theme-title {
  font-size: 22px;
  font-weight: 700;
  color: #008080;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #10b981;
  display: inline-block;
}

/* Service Category Styling */
.service-category {
  margin-bottom: 30px;
  padding: 30px;
  background: linear-gradient(135deg, rgba(146, 208, 47, 0.05), rgba(75, 180, 165, 0.05));
  border-radius: var(--radius);
  /* border: 2px solid rgba(146, 208, 47, 0.2); */
  height: 100%;
}

.category-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.6s ease backwards;
}

.category-title i {
  font-size: 28px;
  color: var(--accent);
}

.service-category .accordion {
  background: transparent;
}

.service-category .accordion-item {
  background: white !important;
}

button.accordion-button h5 span {
    font-size: 14px;
    display: block;
}
/* #servicesAccordion ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;

} */

@media (max-width: 991px) {
  .services-image {
    position: relative;
    top: auto;
  }

  #servicesAccordion .accordion-button {
    padding: 25px;
  }

  #servicesAccordion .accordion-body {
    padding: 25px 25px 25px 25px;
  }
}
.policy-content h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
      margin-top: 28px;
      margin-bottom: 14px;
      padding-bottom: 8px;
      border-bottom: 2px solid var(--accent);
      display: inline-block;
    }

    .policy-content h4:first-child {
      margin-top: 0;
    }

    .policy-content ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .policy-content li {
      padding: 10px 0 10px 28px;
      position: relative;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.7;
      letter-spacing: 0.3px;
    }

    .policy-content li::before {
      content: "✓";
      position: absolute;
      left: 0;
      color: var(--accent);
      font-weight: 700;
      font-size: 16px;
    }

    .modal-content {
      border: none;
      border-radius: 12px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    }

    .modal-header {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: #fff;
      border: none;
      border-radius: 12px 12px 0 0;
      padding: 28px 30px;
    }

    .modal-title {
      font-weight: 700;
      font-size: 24px;
      letter-spacing: 0.5px;
    }

    .modal-header .btn-close {
      filter: brightness(0) invert(1);
      opacity: 0.8;
      transition: opacity 0.2s ease;
    }

    .modal-header .btn-close:hover {
      opacity: 1;
    }

    .modal-body {
      padding: 32px 35px;
      background: #fff;
    }

    .modal-footer {
      background: #f5f5f5;
      border-top: 1px solid #e8e8e8;
      padding: 20px 35px;
    }

    .modal-footer .btn-secondary {
      background-color: var(--primary);
      border-color: var(--primary);
      font-weight: 600;
      padding: 8px 24px;
    }

    .modal-footer .btn-secondary:hover {
      background-color: var(--primary-dark);
      border-color: var(--primary-dark);
    }
/* PRICING & ADD-ONS SECTION */
.pricing-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 60px 0 40px 0;
  animation: fadeInUp 0.8s ease;
}

.pricing-section-title {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.pricing-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  /* border-left: 5px solid var(--accent); */
  animation: fadeInUp 0.8s ease backwards;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.pricing-card:nth-child(1) { animation-delay: 0.3s; }
.pricing-card:nth-child(2) { animation-delay: 0.4s; }
.pricing-card:nth-child(3) { animation-delay: 0.5s; }
.pricing-card:nth-child(4) { animation-delay: 0.6s; }
.pricing-card:nth-child(5) { animation-delay: 0.7s; }

.pricing-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-subtitle::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
}

.pricing-description {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* HTML Table Styling */
.pricing-table-html {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  /* border: 1px solid #e0e0e0; */
  background: var(--card-bg);
  box-shadow: 0px 0px 0px 1px #e0e0e0;
}

.pricing-table-html thead {
  background: linear-gradient(135deg, rgba(247, 129, 5, 0.1), rgba(146, 208, 47, 0.1));
}

.pricing-table-html thead th {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  text-align: left;
  border-bottom: 2px solid #e0e0e0;
}

.pricing-table-html tbody td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-main);
  border-bottom: 1px solid #e0e0e0;
}

.pricing-table-html tbody tr {
  transition: background 0.3s ease;
}

.pricing-table-html tbody tr:last-child td {
  border-bottom: none;
}

.pricing-table-html tbody tr:hover {
  background: rgba(146, 208, 47, 0.03);
}

.pricing-table-html tbody td:last-child {
  font-weight: 600;
  color: var(--primary);
  text-align: right;
}

/* Table Wrapper for Scrolling */
.table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}

.table-wrapper::-webkit-scrollbar {
  height: 6px;
}

.table-wrapper::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}

.table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Reimbursement Grid */
.reimbursement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.reimbursement-item {
  background: linear-gradient(135deg, rgba(146, 208, 47, 0.08), rgba(75, 180, 165, 0.05));
  padding: 20px;
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
  transition: all 0.3s ease;
}

.reimbursement-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, rgba(146, 208, 47, 0.12), rgba(75, 180, 165, 0.1));
}

.reimbursement-item strong {
  display: block;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 8px;
  font-weight: 700;
}

.reimbursement-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Philosophy Card */
.philosophy-card {
  background: linear-gradient(135deg, rgba(247, 129, 5, 0.08), rgba(146, 208, 47, 0.08));
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 50px;
  border: 2px solid rgba(146, 208, 47, 0.3);
  animation: fadeInUp 0.8s ease 0.8s backwards;
}

.philosophy-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.philosophy-title::before {
  content: '✦';
  color: var(--accent);
  font-size: 28px;
}

.philosophy-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
  font-style: italic;
}

/* Funding Support Text */
.funding-support-text {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(247, 129, 5, 0.2);
}

.funding-support-text h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.funding-support-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Care Philosophy Subsection */
.care-philosophy-text {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(146, 208, 47, 0.3);
}

.care-philosophy-text h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.care-philosophy-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
  .pricing-card {
    padding: 25px;
  }

  .pricing-subtitle {
    font-size: 18px;
  }

  .pricing-col {
    padding: 12px 15px;
    font-size: 13px;
  }

  .reimbursement-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }

  .philosophy-card {
    padding: 30px 20px;
  }

  .philosophy-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .support-intro-card {
    padding: 20px;
    margin-bottom: 30px;
  }
  

  .support-intro-card h3 {
    font-size: 18px;
  }

  .support-intro-card p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .support-highlights li {
    font-size: 13px;
    padding-left: 24px;
  }

  .pricing-divider {
    margin: 50px 0 30px 0;
  }

  .pricing-section-title {
    font-size: 28px;
  }

  .pricing-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .pricing-card {
    padding: 20px;
    margin-bottom: 20px;
  }

  /* Mobile table layout */
  .pricing-table-html {
    border: none;
    background: transparent;
  }

  .pricing-table-html thead {
    display: none;
  }

  .pricing-table-html tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pricing-table-html tbody tr {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(146, 208, 47, 0.02);
  }

  .pricing-table-html tbody td {
    padding: 6px 0;
    border: none;
    border-bottom: none;
    font-size: 13px;
  }

  .pricing-table-html tbody td:first-child {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(247, 129, 5, 0.2);
  }

  .pricing-table-html tbody td:last-child {
    text-align: left;
    margin-top: 8px;
  }

  .reimbursement-grid {
    grid-template-columns: 1fr;
  }

  .reimbursement-item {
    padding: 15px;
  }

  .philosophy-card {
    padding: 20px;
    margin-top: 40px;
  }

  .philosophy-title {
    font-size: 18px;
  }
  .footer-brand img {
    margin: 0 auto;
  }
  .social-links {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .pricing-card {
    padding: 18px;
  }
  

  .pricing-table-html tbody td {
    font-size: 12px;
    padding: 5px 0;
  }

  .pricing-subtitle {
    font-size: 18px;
  }

  .pricing-description {
    font-size: 13px;
  }
}

/* GALLERY SECTION */
.gallery-section {
  padding: 60px 0;
  background: var(--secondary);
}

.gallery-section .section-label {
  color: rgba(255, 255, 255, 0.9);
}

.gallery-section .section-label::after {
  background: rgba(255, 255, 255, 0.3);
  left: calc(50% - 20px);
}

.gallery-section .section-title {
  color: #ffffff;
}

.gallery-intro {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
  line-height: 1.7;
  text-align: center;
}

/* Bootstrap Carousel Gallery Styles */
#galleryCarousel {
  margin-top: 20px;
}

#galleryCarousel .carousel-inner {
  padding: 20px 0;
}

#galleryCarousel .carousel-item {
  transition: transform 0.6s ease-in-out;
}

#galleryCarousel a {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

#galleryCarousel img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

#galleryCarousel a:hover img {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Carousel Controls - Hidden on Desktop, Visible on Tablet/Mobile */
#galleryCarousel .carousel-control-prev,
#galleryCarousel .carousel-control-next {
  display: none;
}

/* Carousel Indicators - Hidden on Desktop, Visible on Tablet/Mobile */
#galleryCarousel .carousel-indicators {
  display: none;
}

/* Show controls and indicators on tablet and mobile only */
@media (max-width: 991px) {
  #galleryCarousel .carousel-control-prev,
  #galleryCarousel .carousel-control-next {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
  }

  #galleryCarousel .carousel-control-prev {
    left: -25px;
  }

  #galleryCarousel .carousel-control-next {
    right: -25px;
  }

  #galleryCarousel .carousel-control-prev:hover,
  #galleryCarousel .carousel-control-next:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.1);
  }

  #galleryCarousel .carousel-control-prev-icon,
  #galleryCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-size: 100%;
    filter: invert(1);
  }

  #galleryCarousel .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23006064'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
  }

  #galleryCarousel .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23006064'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  }
}

/* Lity Lightbox */
.lity-content img {
  max-width: 1200px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  #galleryCarousel img {
    height: 300px;
  }
}

@media (max-width: 768px) {
  #galleryCarousel img {
    height: 280px;
  }

  #galleryCarousel .carousel-control-prev,
  #galleryCarousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  #galleryCarousel .carousel-control-prev {
    left: 10px;
  }

  #galleryCarousel .carousel-control-next {
    right: 10px;
  }

  #galleryCarousel .carousel-control-prev-icon,
  #galleryCarousel .carousel-control-next-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 576px) {
  #galleryCarousel img {
    height: 250px;
  }

  .gallery-section {
    padding: 60px 0;
  }

  .gallery-intro {
    margin-bottom: 30px;
  }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 60px 0;
  background: #F7F7F7;
  overflow: hidden;
}

.testimonials-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 50px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.testimonials-carousel-wrapper {
  position: relative;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.carousel-inner {
  border-radius: var(--radius);
  overflow: hidden;
}

.carousel-item {
  padding: 0;
  transition: opacity 0.6s ease-in-out;
}

.testimonial-card {
  background: var(--secondary);
  border-radius: 20px;
  padding: 80px 60px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  display: none;
}

.testimonial-icon {
  display: none;
}

.testimonial-theme {
  display: none;
}

.testimonial-context {
  display: none;
}

.testimonial-text {
  font-size: 32px;
  color: #ffffff;
  line-height: 1.5;
  margin-bottom: 40px;
  font-style: normal;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.testimonial-attribution {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin: 0;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
  width: 60px;
  height: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--accent);
  transform: translateY(-50%) scale(1.05);
}

.carousel-control-prev {
  left: -80px;
}

.carousel-control-next {
  right: -80px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
  display: flex;
  justify-content: center;
  margin: 0;
}

.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d0d0d0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.carousel-indicators [data-bs-target].active {
  background: var(--accent);
  opacity: 1;
  width: 14px;
  height: 14px;
}

.carousel-indicators [data-bs-target]:hover {
  opacity: 0.8;
  border-color: var(--primary);
}

/* Testimonials Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive Testimonials */
@media (max-width: 991px) {
  .testimonial-card {
    padding: 40px 30px;
    min-height: 420px;
  }

  .carousel-control-prev {
    left: -40px;
  }

  .carousel-control-next {
    right: -40px;
  }

  .testimonial-theme {
    font-size: 18px;
  }

  .testimonial-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 20px !important;
  }
  .testimonials-section {
    padding: 60px 0;
  }



  .testimonial-card {
    padding: 30px 25px;
    min-height: 420px;
  }

  .testimonial-icon {
    font-size: 40px;
    margin-bottom: 15px;
  }
.services-section .row.justify-content-center{
    display: flex;
    align-items: center;
    /* gap: 40px; */
    flex-direction: row;
}
  .testimonial-theme {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .testimonial-context {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .testimonial-text {
    font-size: 23px;
    margin-bottom: 15px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 40px;
    height: 40px;
  }

  .carousel-control-prev {
    left: -30px;
  }

  .carousel-control-next {
    right: -30px;
  }

  .carousel-indicators {
    bottom: -50px;
  }
}

@media (max-width: 576px) {
  .testimonials-section {
    padding: 50px 0;
  }

  .testimonials-intro {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .testimonial-card {
    padding: 25px 20px;
    min-height: 380px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }

  .testimonial-icon {
    font-size: 36px;
    margin-bottom: 12px;
  }

  .testimonial-theme {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .testimonial-context {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 12px;
  }

  .testimonial-attribution {
    font-size: 12px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
    top: 50%;
  }

  .carousel-control-prev {
    left: -20px;
  }

  .carousel-control-next {
    right: -20px;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 16px;
    height: 16px;
  }

  .carousel-indicators {
    bottom: -40px;
    gap: 8px;
  }

  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
  }

  .carousel-indicators [data-bs-target].active {
    width: 12px;
    height: 12px;
  }
}

/* GETTING STARTED SECTION */
.getting-started-section {
  padding: 60px 0;
  background: #fff;
}
#getting-started:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* background-image: url(imgs/child-therapy.jpg); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right center;
    z-index: -1;
    opacity: .2;
}
.getting-started-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.getting-started-step {
  background: linear-gradient(135deg, rgba(146, 208, 47, 0.08), rgba(75, 180, 165, 0.05));
  /* border-left: 5px solid var(--accent); */
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  animation: fadeInUp 0.8s ease backwards;
  transition: all 0.3s ease;
}
.slick-track {
  gap: 20px;
  display: flex;
}
.getting-started-step:hover, .getting-started-slide.slick-current .getting-started-step {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: teal;
  color: #fff;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 20px;
  font-weight: 900;
  margin-bottom: 20px;
}

.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.step-description {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.btn-getting-started {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(247, 129, 5, 0.3);
  margin-top: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-getting-started::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.5s ease;
}

.btn-getting-started:hover::before {
  left: 100%;
}

.btn-getting-started:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(247, 129, 5, 0.4);
  color: #fff;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Info Cards */
.getting-started-info {
  background: linear-gradient(135deg, rgba(247, 129, 5, 0.08), rgba(146, 208, 47, 0.08));
  /* border-left: 5px solid var(--accent); */
  border-radius: var(--radius);
  padding: 30px;
  height: 100%;
  animation: fadeInUp 0.8s ease backwards;
}

.getting-started-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.getting-started-info h4::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 2px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  line-height: 1.6;
}

.info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

/* App Info Card */
.app-info-card {
  background: linear-gradient(135deg, rgba(146, 208, 47, 0.12), rgba(75, 180, 165, 0.08));
  border: 2px solid rgba(146, 208, 47, 0.3);
  border-radius: var(--radius);
  padding: 40px;
  animation: fadeInUp 0.8s ease 0.3s backwards;
}

.app-info-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.app-info-card h3::before {
  content: '📱';
  font-size: 28px;
}

.app-info-card > p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.app-info-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  margin-top: 25px;
}

.app-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}

.app-benefits li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.app-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.app-closing {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.7;
  margin: 0;
}

/* Slick Slider for Getting Started */
.getting-started-slider-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.slider {
  position: relative;
}

/* Navigation Slider Styles */
.slider-nav {
  margin-bottom: 40px;
}

.slider-nav-item {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(146, 208, 47, 0.08);
  border-radius: 8px;
  border: 2px solid transparent;
  min-height: 140px;
}

.slider-nav-item:hover {
  background: rgba(146, 208, 47, 0.15);
  transform: translateY(-2px);
}

.slider-nav-item.slick-current {
  background: linear-gradient(135deg, var(--accent), rgba(146, 208, 47, 0.8));
  border-color: var(--accent);
}

.nav-step-number {
  width: 50px;
  height: 50px;
  /* background: var(--primary); */
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.slider-nav-item.slick-current .nav-step-number {
  background: #fff;
  color: var(--primary);
  /* box-shadow: 0 4px 12px rgba(247, 129, 5, 0.3); */
}

.slider-nav-item h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
}

.slider-nav-item.slick-current h4 {
  color: #fff;
}

/* Main Content Slider Styles */
.slider-for {
  background: #fff;
}

.getting-started-slide {
  display: flex !important;
  /* padding: 0 20px; */
}

.getting-started-slide:not(.step-6) .getting-started-step {
  width: 100%;
  animation: fadeInUp 0.6s ease;
}

.inline-info {
  margin-top: 25px;
  margin-bottom: 25px;
}

/* Slick Slider Arrow Customization */
.slick-prev, .slick-next {
  width: 40px;
  height: 40px;
  background: var(--primary) !important;
  border-radius: 50%;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.slick-prev:hover, .slick-next:hover {
  background: var(--primary-dark) !important;
  box-shadow: 0 4px 12px rgba(247, 129, 5, 0.3);
}

.slick-prev::before, .slick-next::before {
  color: #fff !important;
  font-size: 16px;
}

.slick-prev {
  left: 0px;
}

.slick-next {
  right: 0px;
}

.slick-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Slick Dots */
.slick-dots {
  bottom: -50px;
}

.slick-dots li {
  width: auto;
  margin: 0 6px;
}

.slick-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(247, 129, 5, 0.3);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots li.slick-active button {
  width: 30px;
  background: var(--primary);
  border-radius: 5px;
}

/* Responsive Getting Started */
@media (max-width: 991px) {
  .getting-started-step,
  .getting-started-info {
    padding: 25px;
  }

  .step-title {
    font-size: 16px;
  }

  .app-info-card {
    padding: 30px;
  }

  .app-info-card h3 {
    font-size: 20px;
  }

  .app-benefits {
    grid-template-columns: 1fr;
  }

  .slider-nav-item {
    padding: 15px 10px;
    min-height: 130px;
  }

  .nav-step-number {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .slider-nav-item h4 {
    font-size: 12px;
  }

  .slick-prev {
    left: 0px;
  }

  .slick-next {
    right: 0px;
  }
}

@media (max-width: 768px) {
  .getting-started-section {
    padding: 60px 0;
  }

  .getting-started-step,
  .getting-started-info {
    padding: 20px;
  }

  .step-number {
    width: 45px;
    height: 45px;
    font-size: 16px;
    margin-bottom: 15px;
  }

  .step-title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .step-description {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .btn-getting-started {
    padding: 10px 20px;
    font-size: 12px;
  }

  .getting-started-info h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .info-list li {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .app-info-card {
    padding: 25px;
  }

  .app-info-card h3 {
    font-size: 18px;
  }

  .app-info-card h4 {
    font-size: 14px;
  }

  .app-benefits li {
    font-size: 13px;
  }

  .slider-nav-item {
    padding: 12px 8px;
    min-height: 120px;
  }

  .nav-step-number {
    width: 42px;
    height: 42px;
    font-size: 16px;
    margin-bottom: 8px;
  }

  .slider-nav-item h4 {
    font-size: 11px;
  }

  .slick-prev {
    left: 0px;
  }

  .slick-next {
    right: 0px;
  }

  .slick-prev, .slick-next {
    width: 35px;
    height: 35px;
  }

  .slick-prev::before, .slick-next::before {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .getting-started-intro {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .getting-started-step,
  .getting-started-info {
    padding: 18px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .step-title {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .step-description {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .btn-getting-started {
    padding: 8px 16px;
    font-size: 11px;
  }

  .getting-started-info h4 {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .info-list li {
    font-size: 11px;
    padding-left: 24px;
    margin-bottom: 8px;
  }

  .app-info-card {
    padding: 20px;
  }

  .app-info-card h3 {
    font-size: 16px;
  }

  .app-info-card h3::before {
    font-size: 24px;
  }

  .app-info-card > p {
    font-size: 13px;
  }

  .app-info-card h4 {
    font-size: 13px;
    margin-top: 18px;
  }

  .app-benefits {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .app-benefits li {
    font-size: 12px;
    padding-left: 22px;
  }

  .app-closing {
    font-size: 12px;
  }

  .slider-nav-item {
    padding: 10px 6px;
    min-height: 110px;
    min-width: 80px;
  }

  .nav-step-number {
    width: 38px;
    height: 38px;
    font-size: 14px;
    margin-bottom: 6px;
  }

  .slider-nav-item h4 {
    font-size: 10px;
  }

  .slick-prev {
    left: 0px;
  }

  .slick-next {
    right: 0px;
  }

  .slick-prev, .slick-next {
    width: 30px;
    height: 30px;
  }

  .slick-prev::before, .slick-next::before {
    font-size: 12px;
  }
}

/* CTA */
.cta-section {
  padding: 60px 0;
  background: #F47A24;
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: clamp(32px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.cta-section p {
  max-width: 700px;
  margin: 0 auto 35px;
  font-size: 16px;
  color: #fff;
  line-height: 1.7;
}

.cta-section .btn-cta-white {
  background: #fff;
  color: #F47A24;
  border: 2px solid #fff;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.cta-section .btn-cta-white:hover {
  background: #F47A24;
  color: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* PODCAST/INSIGHTS */
.insights-section {
  padding: 60px 0;
  background: #fff;
}

.insights-image {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.insights-text h3 {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 700;
}

.insights-text p {
  color: var(--text-muted);
  margin-bottom: 25px;
  line-height: 1.8;
}

.episode-thumb {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* FOR STAFF SECTION */
.for-staff-section {
  padding: 60px 0;
  /* background: #fff; */
  background-image: url(imgs/ot-bg.jpg);
      background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.for-staff-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(255 255 255 / 85%);
    z-index: -1;
}
.staff-intro {
  margin-bottom: 40px;
  padding: 25px;
  background: linear-gradient(135deg, var(--secondary) 0%, #5dc9b8 100%);
  border-radius: var(--radius);
  color: #fff;
}

.staff-intro p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* Bootstrap Accordion Styling */
#staffAccordion .accordion-item {
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 5px solid var(--accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  border: none;
  animation: fadeInUp 0.6s ease backwards;
}

#staffAccordion .accordion-item:nth-child(1) { animation-delay: 0.1s; }
#staffAccordion .accordion-item:nth-child(2) { animation-delay: 0.2s; }
#staffAccordion .accordion-item:nth-child(3) { animation-delay: 0.3s; }

#staffAccordion .accordion-button {
  background: transparent;
  border: none;
  padding: 35px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  border-radius: var(--radius) var(--radius) 0 0 !important;
}

#staffAccordion .accordion-button:hover {
  background: rgba(146, 208, 47, 0.05);
  color: var(--primary);
}

#staffAccordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

#staffAccordion .accordion-button:not(.collapsed) {
  background: var(--accent);
  color: #fff;
  box-shadow: none;
}

#staffAccordion .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#staffAccordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F78105'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-90deg);
  transition: transform 0.3s ease;
}

#staffAccordion .accordion-button.collapsed::after {
  transform: rotate(0deg);
}

#staffAccordion .accordion-body {
  padding: 0 35px 35px 35px;
  border-top: 1px solid #e0e0e0;
}

#staffAccordion .accordion-collapse {
  border-radius: 0 0 var(--radius) var(--radius);
}

.staff-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.staff-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid #e0e0e0;
}

.staff-list li:last-child {
  border-bottom: none;
}

.staff-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 16px;
}

.staff-note {
  margin-top: 15px;
  padding: 15px;
  background: #fff;
  border-radius: 8px;
  font-style: italic;
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
  border-left: 3px solid var(--accent);
}

.staff-cta {
  background: #f0f8f0;
  padding: 45px 40px;
  border-radius: var(--radius);
  color: #333333;
  text-align: center;
  margin-top: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(26, 140, 140, 0.1);
}

.staff-cta h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #F47A24;
  line-height: 1.3;
}

.staff-cta p {
  margin: 12px 0;
  font-size: 14px;
  color: #333333;
  line-height: 1.6;
    color: var(--text-muted);
}

.staff-cta-list {
  list-style: none;
  padding: 0;
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}

.staff-cta-list li {
  padding: 5px 0 0px 30px;
  position: relative;
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
      font-size: 14px;
    color: var(--text-muted);
}

.staff-cta-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A8C8C;
  font-weight: 700;
  font-size: 18px;
}

.staff-email-link {
  color: #1A8C8C;
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 16px;
  display: inline-block;
}

.staff-email-link:hover {
  color: #167d7d;
  text-decoration: none;
}

.staff-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.staff-highlight {
  background: linear-gradient(135deg, var(--accent) 0%, #9fd92e 100%);
  padding: 35px;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: 0 10px 40px rgba(146, 208, 47, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: sticky;
  top: 120px;
}

.staff-highlight h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.3;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.staff-highlight h5 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 25px;
  margin-bottom: 15px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
}

.staff-highlight h5::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}

.staff-highlight p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.95);
}

.staff-highlight a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  transition: all 0.3s ease;
}

.staff-highlight a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}

.highlight-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.highlight-list li:last-child {
  border-bottom: none;
}

.highlight-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 10px;
}

@media (max-width: 991px) {
  .staff-highlight {
    position: relative;
    top: auto;
  }

  #staffAccordion .accordion-button {
    padding: 25px;
  }

  #staffAccordion .accordion-body {
    padding: 0 25px 25px 25px;
  }
}

/* CONTACT */
.contact-section {
  padding: 80px 0;
  background: var(--bg-light);
}
#contact iframe {
    width: 150%;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}
#contact:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FCFCFC;
    background: linear-gradient(90deg, rgba(252, 252, 252, 1) 0%, rgba(252, 252, 252, 1) 53%, rgba(252, 252, 252, 0) 70%);
    z-index: -1;
}
.contact-info h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 24px;
  font-weight: 600;
}

.contact-details {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  animation: scaleIn 0.5s ease backwards;
}
.contact-item em {
  font-size: 12px;
}
.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

.contact-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-item:hover .contact-icon {
  transform: scale(1.2) rotate(5deg);
  color: var(--primary);
}

.contact-icon {
  color: var(--accent);
  font-size: 20px;
  width: 24px;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.contact-text strong {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-text span {
  color: var(--text-muted);
  font-size: 15px;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 25px;
  font-weight: 600;
}

.form-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  text-transform: capitalize;
}

.form-input {
  padding: 12px 15px;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-main);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(247, 129, 5, 0.1);
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-checkbox-group {
  margin-top: 10px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-main);
  gap: 8px;
}

.form-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--primary);
}

.form-checkbox:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.form-container .btn {
  align-self: flex-start;
  margin-top: 10px;
}

.map-container {
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-main);
  font-weight: 500;
  font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212, 166, 69, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  padding: 16px 32px;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.3px;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 166, 69, 0.3);
}

#contactForm .form-check label {
  font-weight: 600;
  font-size: 14px;
}

/* FOOTER */
.site-footer {
  background: #1A8C8C;
  color: #fff;
  padding: 60px 0 30px;
}

.footer-brand {
  font-family: 'Nunito', sans-serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 12px;
  font-size: 14px;
  opacity: 0.9;
}

.footer-contact i {
  color: #fff;
  margin-right: 10px;
  width: 20px;
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  /* justify-content: center; */
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  opacity: 0.8;
}
#footer-app .app-logo-icon {
  border-radius: 12px;
  width: 72px;
}
.app-links {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
}

.app-links img {
    width: 130px;
}

#footer-app > div {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: flex-end;
    margin-bottom: 10px;
}

#footer-app > span {
    font-size: 13px;
    line-height: 1.4em;
    display: block;
    letter-spacing: .5px;
}
/* GO TO TOP BUTTON */
@keyframes float-animation {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

.go-to-top {
  position: fixed;
  bottom: 70px;
  right: 7px;
  width: 50px;
  height: 50px;
  background: #9333ea;
  color: var(--primary);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.go-to-top.visible {
  opacity: 1;
  visibility: visible;
  animation: float-animation 3s ease-in-out infinite;
}

.go-to-top:hover {
  background: #7e22ce;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.5);
  animation: none;
}
#goToTop img {
  width: 30px;
}
.go-to-top:active {
  transform: translateY(-2px);
}

.go-to-top i {
  color: #98FF98;
}

/*SERVICES IMAGE AND STATS POSITIONING */
.services-section .row {
  display: flex;
  align-items: flex-start;
  /* gap: 40px; */
}

#banner-page {
  background-image: url("imgs/family.jpg") !important;
  background-size: cover;
  background-position: center center;
  height: 400px;
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.8s, transform 0.8s;
  padding: 150px 0 100px;
  position: relative;
}

#banner-page:before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

#banner-page h2{
font-family: 'Nunito', sans-serif;
  font-size: 36px;
  color: #fff;
  position: relative;
  z-index: 1;
  font-weight: 900;
}


p.banner-subtitle{
  font-size: 16px;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-top: 10px !important;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 991px) {
  .hero {
    padding: 100px 0 85px;
  }

  .section-title {
    font-size: 28px;
  }

  .services-image {
    position: static;
    margin-top: 30px;
  }

  .stats-wrapper {
    margin-top: 30px;
  }

  .why-text h3 {
    font-size: 24px;
  }

  .insights-text h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 80px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero .subtitle {
    font-size: 12px;
  }

  .hero-subtext {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .hero-description {
    font-size: 14px;
  }

  .about-section,
  .why-section,
  .services-section,
  .contact-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .service-item {
    padding: 20px;
  }

  .contact-item {
    padding: 15px;
  }

  .map-container {
    height: 350px;
  }
  #servicesAccordion {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  #contact {
    padding-bottom: 300px;
  }
  #contact:after {
    background: linear-gradient(180deg, rgba(252, 252, 252, 1) 0%, rgba(252, 252, 252, 1) 53%, rgba(252, 252, 252, 0) 70%);
  }
  #contact iframe {
    height: 400px;
    top: auto;
    bottom: 0;
    width: 100%;
  }
  #footer-app > div {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 10px;
    flex-direction: column;
  }
  
}

@media (max-width: 576px) {
  .navbar {
    padding: 10px 0;
  }

  .navbar-brand img {
    height: 40px;
  }

  .hero {
    padding: 70px 0 85px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero-subtext {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-contact p {
    font-size: 13px;
  }

  .section-label {
    font-size: 11px;
  }

  .section-title {
    font-size: 22px;
  }

  .about-text b {
    font-size: 14px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .footer-brand img {
    height: 50px !important;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
}

/* Connect Modal Styling */
.connect-content .card {
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.connect-content .card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.connect-content .card-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.connect-content .card-title::before {
  content: '🌱';
  font-size: 20px;
}

.connect-content h6 {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.connect-content ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.connect-content li {
  color: var(--text-muted);
  margin-bottom: 8px;
  line-height: 1.5;
}

.connect-content p {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.connect-content strong {
  color: var(--primary);
  font-weight: 600;
}

.connect-content a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.connect-content a:hover {
  text-decoration: underline;
  color: var(--primary);
}

.connect-content .card-body {
  padding: 25px;
}

/* Responsive adjustments for connect modal */
@media (max-width: 768px) {
  .connect-content .row > div {
    margin-bottom: 20px;
  }
  
  .connect-content .card-body {
    padding: 20px;
  }
  
  .connect-content .card-title {
    font-size: 16px;
  }

  /* Top bar responsive */
  .top-bar {
    padding: 5px 0;
    font-size: 11px;
  }

  .top-bar-contact {
    gap: 10px;
    justify-content: center;
    margin-bottom: 8px;
  }

  .top-bar-social {
    justify-content: center;
  }

  .social-label {
    font-size: 11px;
  }

  .social-link {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }

  .site-header {
    top: 64px;
  }

  .site-header.top-bar-hidden {
    top: 10px;
  }

  .hero {
    padding: 146px 0 80px;
  }
}
