* {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

section {
  padding: 60px 20px;
}

/* Base styles */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fdf6f0;
  color: #333;
}

/* ===== NAVBAR STYLES ===== */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 14px 20px;
  position: relative;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 50px;
  width: auto;
}

.logo span {
  font-size: 36px;
  font-family: 'Great Vibes', cursive;
  color: #3b82f6;
  font-weight: 400;
  letter-spacing: 1px;
}

/* Navigation */

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  color: #444;
  padding: 6px 12px;
  border-radius: 4px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

.contact-btn {
  background-color: #ff7f50;
  color: #fff;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #e65c2a;
}

/* ===== BURGER MENU STYLES ===== */
.burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 35px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 7px 5px;
  z-index: 1002;
  position: relative;
}

.burger-line {
  width: 100%;
  height: 3px;
  background-color: #3b82f6;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger-menu.open .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.open .burger-line:nth-child(2) {
  opacity: 0;
}

.burger-menu.open .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== MOBILE STYLES ===== */
@media screen and (max-width: 768px) {
  .navbar {
    padding: 12px 15px;
  }
  
  .burger-menu {
    display: flex;
    position: absolute;
    top: 20px;
    right: 15px;
  }
  
  .container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .logo {
    margin-bottom: 10px;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1001;
    padding: 60px 20px 20px;
    margin: 0;
    gap: 0;
    opacity: 0;
  }
  
  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
    margin: 10px 0;
  }
  
  .nav-links a {
    display: block;
    padding: 15px 0;
    color: #333 !important;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  
  .nav-links li:last-child a {
    border-bottom: none;
  }
  
  .contact-btn {
    background-color: #ff7f50;
    color: #fff !important;
    padding: 12px 24px;
    margin-top: 20px;
    width: 200px;
    text-align: center;
  }
  
  /* Overlay for mobile menu */
  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
  }
  
  .nav-overlay.active {
    display: block;
  }
  
  body.menu-open {
    overflow: hidden;
  }
}

/* ===== DESKTOP STYLES ===== */
@media screen and (min-width: 769px) {
  .burger-menu {
    display: none !important;
  }
  
  .nav-links {
    display: flex !important;
    position: static !important;
    height: auto !important;
    width: auto !important;
    background: transparent !important;
    flex-direction: row !important;
    transform: none !important;
    opacity: 1 !important;
    padding: 0 !important;
  }
}

/* ===== REST OF YOUR STYLES (keep these as they are) ===== */
.banner {
  height: 100vh;
  background: url('pictureofkids.jpg.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.banner-content {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
  color: #fff;
  max-width: 800px;
}

.banner-content h1 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner-content p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 15px;
  color: #fff;
  transition: opacity 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

.book {
  background-color: #3b82f6;
}

.contact {
  background-color: #f59e0b;
}

.support-section {
  padding: 60px 20px;
  background-color: #FFF6EC;
  text-align: center;
}

.support-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #333;
}

.support-section .highlight {
  color: #0077cc;
  font-weight: bold;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.support-box {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 30px 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.support-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 119, 204, 0.2);
  border-color: #0077cc;
}

.support-box h3 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.support-box h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #0077cc;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.support-box:hover h3::after {
  transform: scaleX(1);
}

.support-box p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.testimonial-carousel {
  padding: 35px 20px;
  background-color: #fdf6f0;
  text-align: center;
}

.testimonial-carousel h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #333;
}

.carousel {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  height: 190px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.4s ease;
  background-color: #fff;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  text-align: left;
  transform: translateY(10px);
}

.slide.active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
}

.slide h3 {
  font-size: 19px;
  color: #3b82f6;
  margin-bottom: 4px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.slide .grade {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.slide blockquote {
  font-size: 14.5px;
  font-style: italic;
  color: #444;
  line-height: 1.45;
}

.dots {
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.dot:hover {
  transform: scale(1.2);
}

.dot.active {
  background-color: #3b82f6;
}

.testimonial-metrics {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 40px 30px;
  background-color: #fdf6f0;
  text-align: center;
}

.metric-box {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  width: 220px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.metric-box:hover {
  transform: translateY(-6px);
}

.metric-box .icon {
  font-size: 24px;
  display: block;
  margin-bottom: 8px;
}

.metric-box strong {
  font-size: 18px;
  color: #3b82f6;
}

.metric-box p {
  font-size: 13px;
  color: #555;
}

.site-footer {
  background-color: #1f2937;
  color: #f3f4f6;
  padding: 60px 30px 30px;
  font-size: 14px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h3,
.footer-column h4 {
  font-size: 16px;
  margin-bottom: 12px;
  color: #fbbf24;
}

.footer-column p,
.footer-column ul li {
  margin-bottom: 8px;
  color: #d1d5db;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 20px;
  text-align: center;
  color: #9ca3af;
}

.footer-bottom a {
  color: #9ca3af;
  text-decoration: none;
  margin: 0 6px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .banner {
    padding: 40px 15px;
    text-align: center;
  }

  .banner h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    padding-bottom: 15px;
  }

  .buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn {
    width: 90%;
  }

  .support-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .testimonial-metrics,
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .support-box {
    width: 100%;
    margin: 0 auto;
    padding: 25px 15px;
  }

  .metric-box,
  .footer-column {
    width: 90%;
    margin: 0 auto;
  }
}

img {
  max-width: 100%;
  height: auto;
}