:root {
  /* Primary colors */
  --primary: #20C231; /* Green - primary color */
  --primary-light: #5CC39B; /* Light teal/cyan */
  --primary-gradient-start: #5CC39B; /* Light teal */
  --primary-gradient-end: #20C231; /* Green */
  
  /* Dark gray and Orange */
  --dark-gray: #333333; /* Dark gray */
  --orange: #8A4D2E; /* Orange */
  --orange-dark: #D16C24; /* Darker orange for hover */
  
  /* Neutral colors */
  --dark: #1a1a1a;
  --light: #f6f7fb;
  --gray: #5f6470;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

/* Bootstrap color overrides for consistency */
.btn-primary,
.bg-primary {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end)) !important;
  border: none !important;
  color: #fff !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, var(--primary-gradient-end), var(--primary)) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
  color: #fff !important;
}

.btn-primary:active {
  transform: translateY(0);
}

.text-primary {
  color: var(--primary) !important;
}

.btn-outline-primary {
  color: var(--primary) !important;
  border: 2px solid var(--primary) !important;
  background: transparent !important;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end)) !important;
  border-color: var(--primary) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.btn-review {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 2.75rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff !important;
  background: linear-gradient(120deg, var(--primary-gradient-start), var(--primary-gradient-end));
  border: none;
  box-shadow: 0 12px 30px rgba(32, 194, 49, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-review::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.35), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-review:hover,
.btn-review:focus {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 35px rgba(32, 194, 49, 0.45);
}

.btn-review:hover::before,
.btn-review:focus::before {
  opacity: 1;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--dark);
  background-color: #fff;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.topbar {
  /* background: linear-gradient(135deg, var(--dark-gray) 0%, var(--orange) 100%); */
  background: #5CC39B;
  font-size: 0.9rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.topbar a {
  transition: all 0.3s ease;
  opacity: 0.9;
}

.topbar a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.contact-info a,
.contact-info span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.4;
}

.contact-info i {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Brand-specific backgrounds */
.youtube   { background-color: #FF0000; }
.twitter   { background-color: #1DA1F2; }
.linkedin  { background-color: #0077B5; }
/* .social-links a:hover {
  background-color: #1B5E20;
} */



/* .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
} */

.social-links a i {
  color: inherit;
}

/* .social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
} */

.navbar {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}

.navbar-brand {
  letter-spacing: 0.02em;
  color: var(--primary) !important;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.navbar-logo {
  height: 70px;
  width: 200px;
  display: block;
}

.navbar-brand .brand-text {
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.navbar-brand:hover .brand-text {
  color: var(--orange);
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.nav-link {
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: 8px;
  margin: 0 0.25rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link.active {
  color: var(--orange) !important;
  font-weight: 600;
  background: rgba(255, 152, 0, 0.1);
}

.nav-link:hover {
  color: var(--orange) !important;
  background: rgba(255, 152, 0, 0.05);
}

.hero-section {
  /* background-image: linear-gradient(
      135deg,
      rgba(32, 194, 49, 0.75),
      rgba(92, 195, 155, 0.75)
    ),
    url("assets/care-bg.jpg"); */
    background-image:     url("assets/care-bg.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  position: relative;
  padding: 8rem 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 1;
}

.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(162, 232, 224, 0.2), rgba(76, 175, 80, 0.3));
  z-index: 0;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease;
}

.hero-section .lead {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-section .contact-card {
  border: none;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1.2s ease;
  transition: all 0.3s ease;
}

.hero-section .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.values,
.services,
.about,
.resources,
.gallery,
.contact,
.login-banner,
.footer {
  scroll-margin-top: 80px;
}

.value-card,
.service-card {
  border: 1px solid #e5e7ef;
  background-color: #fff;
  border-radius: 20px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
}

.value-card::before,
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-gradient-start), var(--primary-gradient-end));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover::before,
.service-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover,
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 40px rgba(76, 175, 80, 0.25) !important;
  border-color: var(--primary-light) !important;
}

.resource-card {
  background-color: #fff;
  border: 1px solid #e3e6ef;
}

.resource-link-card {
  background-color: #fff;
  border: 1px solid #e5e7ef;
  border-radius: 16px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.resource-link-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(162, 232, 224, 0.1), transparent);
  transition: left 0.5s;
}

.resource-link-card:hover::after {
  left: 100%;
}

.resource-link-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(76, 175, 80, 0.2) !important;
  border-color: var(--primary-light) !important;
}

.contact-form-card {
  background-color: #fff;
  border: 1px solid #e5e7ef;
  border-radius: 20px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border-radius: 12px;
  border: 2px solid #e5e7ef;
  padding: 0.75rem 1.25rem;
  transition: all 0.3s ease;
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.15);
  transform: translateY(-2px);
}

.testimonial {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  color: #fff;
  border-radius: 20px !important;
  box-shadow: 0 10px 40px rgba(76, 175, 80, 0.3);
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 120px;
  opacity: 0.1;
  font-family: Georgia, serif;
}

.gallery-card {
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card img {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.service-hero-img {
  min-height: 320px;
  object-fit: cover;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: rgba(32, 194, 49, 0.1);
  color: var(--primary);
  font-weight: 600;
  border: 1px solid rgba(32, 194, 49, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.info-pill i {
  color: var(--primary);
}

.contact {
  background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.footer {
  background: linear-gradient(135deg, var(--dark-gray) 0%, #2a2a2a 100%);
  color: #fff;
  position: relative;
  padding: 4rem 0 2rem;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--primary));
}

.footer h5,
.footer h6 {
  color: var(--orange) !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer h5::after,
.footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.footer a {
  color: #e0e0e0 !important;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 0.25rem 0;
}

.footer a:hover {
  color: var(--orange) !important;
  transform: translateX(5px);
}

.footer .text-muted {
  color: #b0b0b0 !important;
}

.phone-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1000;
}

.phone-modal.show {
  display: flex;
}

.phone-modal-content {
  max-width: 420px;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Orange accent buttons */
.btn-orange,
.btn-orange:hover {
  background-color: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
}

.btn-orange:hover {
  background-color: var(--orange-dark) !important;
  border-color: var(--orange-dark) !important;
}

/* Section dividers with orange accent */
.section-divider {
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--primary));
  border: none;
  margin: 2rem 0;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Section spacing */
section {
  padding: 5rem 0;
}

/* Typography enhancements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Rounded corners for images */
img {
  border-radius: 12px;
}

/* Enhanced shadows */
.shadow-sm {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

@media (max-width: 576px) {
  .topbar {
    font-size: 0.8rem;
  }

  .hero-section {
    padding: 4rem 0;
    min-height: 70vh;
    background-attachment: scroll;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section .lead {
    font-size: 1.1rem;
  }

  .contact-card {
    text-align: center;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.75rem;
  }
}


