/* General */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #000000;
  line-height: 1.6;
  text-align: center;
  background: #f9f9f9;
}

/* Logo */
.header {
  background: linear-gradient(90deg, #175e8d, #152b84);
  padding: 60px;
}
.logo {
  max-width: 620px;
  width: 100%;
}

/* Buttons */
.button {
  padding: 12px 25px;
  background-color: #00e4ab;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  display: inline-block;
  margin: 15px 10px;
  transition: 0.3s ease;}
.button-primary:hover {
  background-color: #00e4ab;
}

/* Global Section Styling */
section {
  padding: 50px 20px;
  margin: 20px auto;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Individual Sections */
.why {
  background: #ffffff; /* changeable */
}
.why h2 {
  color: #00a1e4;
}

.programcreate {
  background: #1877ca; /* changeable */
}
.programcreate h2 {
  color: #b9eaff;
}

.programjr {
  background: #9d0bdc; /* changeable */
}
.programjr h2 {
  color: #b9eaff;
}

.programcamps {
    background: #0bdcb9;
     /* changeable */
}
.programcamps h2 {
  color: #b9eaff;
}

.video {
  background: #fafafa; /* changeable */
}
.video h2 {
  color: #00a1e4;
}
.video iframe {
  max-width: 100%;
  border-radius: 10px;
}

.testimonials {
  background: #547ce0; /* changeable */
}
.testimonials h2 {
  color: #000000;
}


/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
}
.testimonial-card span {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #000000;
}

/* Footer */
.footer {
  background: #222;
  color: #fff;
  padding: 40px 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: center;
}
.footer-logo img {
  max-width: 150px;
}
.footer-links h4, .footer-social h4 {
  margin-bottom: 10px;
  color: #4cc89f;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 5px;
}
.footer-links a {
  color: #00a1e4;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.social-icons img {
  width: 32px;
  margin: 0 5px;
}
