/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
/* Add Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary: #4F8A8B;
  --secondary: #F9A826;
  --accent: #F76E5C;
  --background: #F4F7FA;
  --text: #222;
  --white: #fff;
  --gray: #e0e0e0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

nav {
  background: var(--primary);
  color: var(--white);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(79,138,139,0.08);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s, border-bottom 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}

.nav-links a.active, .nav-links a:focus {
  border-bottom: 2px solid var(--white);
}

.nav-links a:hover {
  color: var(--gray);
  border-bottom: 2px solid var(--gray);
}

/* Hamburger menu for mobile */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hero-section {
  background: linear-gradient(120deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 5rem 0 3rem 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(30,136,229,0.2);
}

.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-btn {
  background: var(--white);
  color: var(--primary);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(30,136,229,0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.cta-btn:hover {
  background: var(--gray);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.04);
}

section {
  padding: 4rem 0 2rem 0;
  background: var(--background);
  animation: fadeIn 1s;
}
section:nth-of-type(even) {
  background: #eaf1fb;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.services-list {
  list-style: disc inside;
  font-size: 1.1rem;
  margin-left: 1rem;
}

/* Font Awesome icons for services */
.services-list li::before {
  content: '\f0c0'; /* fa-users */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  margin-right: 0.7em;
}

.testimonials, .team-members, .past-events-section, .upcoming-trainings-list, .services-list, .featured-opportunities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.testimonials blockquote, .past-event, .team-member, .upcoming-trainings-list li, .services-list li, .featured-opportunities-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.08);
  padding: 1.5rem;
  max-width: 350px;
  min-width: 220px;
  margin: 0.5rem 0;
  font-size: 1.05rem;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonials blockquote:hover, .past-event:hover, .team-member:hover, .upcoming-trainings-list li:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px rgba(30,136,229,0.15);
}

.featured-opportunities-list li::before {
  content: '\f0a1'; /* fa-bullhorn */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--secondary);
  margin-right: 0.7em;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

#contact input,
#contact textarea {
  padding: 0.9rem;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  font-size: 1.05rem;
  resize: none;
  transition: border 0.2s, box-shadow 0.2s;
}
#contact input:focus,
#contact textarea:focus {
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  outline: none;
}
#contact button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
#contact button:hover {
  background: var(--secondary);
  transform: scale(1.04);
}

#form-message {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--primary);
}

footer {
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding: 3rem 0 1.5rem 0;
  margin-top: 2rem;
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  box-shadow: 0 -2px 8px rgba(21,101,192,0.10);
  position: relative;
}
.footer-tagline {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #fff;
  letter-spacing: 1px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.footer-contact, .footer-links, .footer-social {
  flex: 1 1 180px;
  min-width: 180px;
  text-align: left;
}
.footer-contact h4, .footer-links h4, .footer-social h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer-contact p, .footer-links ul, .footer-social {
  font-size: 1rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}
.footer-contact i, .footer-links i {
  color: #fff;
  margin-right: 0.5rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 0.5rem;
}
.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}
.footer-social .social-icons {
  margin: 0.5rem 0 0 0;
}
.footer-social .social-icons a {
  color: #fff;
  margin: 0 0.5rem;
  font-size: 1.5rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.footer-social .social-icons a:hover {
  color: #eaf1fb;
  transform: scale(1.2);
}
.back-to-top {
  position: absolute;
  right: 2rem;
  bottom: 2.5rem;
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.15);
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 10;
}
.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.08);
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    text-align: left;
  }
  .back-to-top {
    right: 1rem;
    bottom: 2rem;
  }
}

.hero-image {
  background-image: linear-gradient(rgba(79,138,139,0.10), rgba(79,138,139,0.10)), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1500&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 400px;
  height: 80vh;
  max-height: 900px;
  display: flex;
  align-items: center;
}

.mission-statement {
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  color: #fff;
  background: rgba(30,136,229,0.7);
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
  display: inline-block;
  font-weight: 500;
}

.register-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  margin-left: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.register-btn:hover {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.quick-stats-section {
  background: #eaf1fb;
  padding: 3rem 0 2rem 0;
}
.quick-stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 180px;
  flex: 1 1 180px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.stat i {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.stat:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px rgba(30,136,229,0.15);
}

.how-it-works-section {
  background: var(--background);
  padding: 3rem 0 2rem 0;
}
.how-steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}
.how-step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 2rem 1.5rem;
  text-align: center;
  min-width: 180px;
  flex: 1 1 180px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-step i {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}
.how-step:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px rgba(21,101,192,0.15);
}

.featured-partners-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
}
.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}
.partner-logo {
  background: #eaf1fb;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.partner-logo:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.newsletter-section {
  background: #eaf1fb;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.newsletter-form input[type="email"] {
  padding: 0.8rem 1.2rem;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  font-size: 1.05rem;
  min-width: 220px;
  transition: border 0.2s, box-shadow 0.2s;
}
.newsletter-form input[type="email"]:focus {
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  outline: none;
}
.newsletter-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 0.8rem 2rem;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.newsletter-form button:hover {
  background: var(--secondary);
  transform: scale(1.04);
}
#newsletter-message {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--primary);
}
@media (max-width: 900px) {
  .quick-stats, .how-steps, .partners-logos {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: var(--primary);
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    box-shadow: 0 2px 8px rgba(30, 136, 229, 0.15);
    border-radius: 0 0 8px 8px;
    z-index: 200;
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .nav-links {
    gap: 1rem;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
  section {
    padding: 2rem 0 1rem 0;
  }
} 

.roadmap-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
}
.roadmap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 2.5rem;
  position: relative;
}
.roadmap-step {
  background: #eaf1fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 2rem 1.2rem 1.5rem 1.2rem;
  text-align: center;
  min-width: 160px;
  flex: 1 1 160px;
  position: relative;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.roadmap-step:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px rgba(30,136,229,0.15);
}
.roadmap-icon {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
}
.roadmap-step h4 {
  margin: 0.7rem 0 0.5rem 0;
  color: var(--secondary);
  font-size: 1.15rem;
}
.roadmap-step p {
  font-size: 1rem;
  color: var(--text);
}
/* Connecting line */
.roadmap::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 7%;
  right: 7%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 0;
}
.roadmap-step {
  background-clip: padding-box;
}
.roadmap-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -1rem;
  width: 2rem;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 2;
  border-radius: 2px;
  transform: translateY(-50%);
}
@media (max-width: 900px) {
  .roadmap {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .roadmap::before {
    top: 0;
    left: 50%;
    right: auto;
    width: 4px;
    height: 90%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    transform: translateX(-50%);
  }
  .roadmap-step {
    min-width: 220px;
    max-width: 350px;
    margin: 0 auto;
  }
  .roadmap-step:not(:last-child)::after {
    top: auto;
    left: 50%;
    right: auto;
    width: 4px;
    height: 2.5rem;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    z-index: 2;
    border-radius: 2px;
    transform: translateX(-50%);
  }
} 

.why-business-section {
  background: #eaf1fb;
  padding: 3rem 0 2rem 0;
}
.why-business-container {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.why-business-image img {
  width: 340px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(30,136,229,0.13);
  object-fit: cover;
  display: block;
}
.why-business-content {
  flex: 1 1 320px;
  min-width: 260px;
}
.why-business-content h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.why-business-content p {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .why-business-container {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .why-business-image img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
} 

.mission-vision-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
}
.mission-vision-container {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}
.mission-vision-card {
  background: #eaf1fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: center;
  min-width: 260px;
  flex: 1 1 320px;
  max-width: 420px;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mission-vision-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px rgba(30,136,229,0.15);
}
.mission-vision-icon {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
}
.mission-vision-card h3 {
  color: var(--secondary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.mission-vision-card p {
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .mission-vision-container {
    flex-direction: column;
    gap: 2rem;
    align-items: stretch;
  }
  .mission-vision-card {
    max-width: 100%;
    margin: 0 auto;
  }
} 

.blog-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
}
.blog-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.blog-card {
  background: #eaf1fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  min-width: 260px;
  max-width: 400px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px rgba(30,136,229,0.15);
}
.blog-card h3 {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.blog-card p {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.blog-readmore {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--primary);
  transition: color 0.2s, border-bottom 0.2s;
}
.blog-readmore:hover {
  color: var(--secondary);
  border-bottom: 2px solid var(--secondary);
}
@media (max-width: 900px) {
  .blog-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .blog-card {
    max-width: 100%;
    margin: 0 auto;
  }
} 

.gallery-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(30,136,229,0.10);
  background: #eaf1fb;
  transition: box-shadow 0.2s;
}
.gallery-item:hover {
  box-shadow: 0 6px 24px rgba(30,136,229,0.18);
}
.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.07);
}
.client-success-section {
  background: #eaf1fb;
  padding: 3rem 0 2rem 0;
}
.client-success-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.client-success-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 2rem 1.5rem;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.client-success-item img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
}
.client-success-item blockquote {
  font-size: 1.05rem;
  color: var(--text);
  margin: 0;
  padding: 0;
}
.client-success-item:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 6px 24px rgba(30,136,229,0.15);
}
.core-values-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
}
.core-values-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.core-value {
  background: #eaf1fb;
  border-radius: 12px;
  padding: 1.2rem 2rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.08);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.core-value i {
  font-size: 1.3rem;
}
.core-value:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
.get-started-section {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 0 2rem 0;
}
.get-started-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.get-started-section p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}
.get-started-section .cta-btn {
  background: #fff;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 1rem 2.5rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}
.get-started-section .cta-btn:hover {
  background: var(--gray);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .gallery-item img {
    height: 180px;
  }
  .client-success-grid {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .core-values-list {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
} 

.about-hero-section {
  background: none;
  padding: 0;
}
.about-hero-bg {
  background-image: linear-gradient(rgba(30,136,229,0.7), rgba(21,101,192,0.7)), url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  display: flex;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}
.about-hero-bg .container {
  z-index: 2;
  position: relative;
}
.about-hero-bg h1 {
  font-size: 2.7rem;
  font-weight: 800;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(30,136,229,0.2);
}
.about-hero-bg p {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0;
}
.our-story-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.our-story-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.our-story-section p {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}
.milestones-section {
  background: #eaf1fb;
  padding: 3rem 0 2rem 0;
}
.milestones-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 800;
  text-align: center;
}
.milestones-timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  margin: 0 auto;
  max-width: 600px;
}
.milestone {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 1.5rem 2rem;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.milestone:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 24px rgba(30,136,229,0.15);
}
.milestone-year {
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
}
.milestone-desc {
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 500;
}
.team-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.team-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 800;
}
.team-members {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.team-member {
  background: #eaf1fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  min-width: 220px;
  max-width: 340px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.team-member img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
}
.team-member h3 {
  color: var(--secondary);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.team-member p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.team-social {
  margin: 0.7rem 0 0.5rem 0;
}
.team-social a {
  color: var(--primary);
  margin: 0 0.4rem;
  font-size: 1.3rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.team-social a:hover {
  color: var(--secondary);
  transform: scale(1.15);
}
.team-fun-fact {
  font-size: 0.98rem;
  color: var(--secondary);
  margin-top: 0.5rem;
  font-style: italic;
}
.why-choose-section {
  background: #eaf1fb;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.why-choose-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  text-align: left;
}
.why-choose-list li {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
.why-choose-list i {
  color: var(--primary);
  font-size: 1.2rem;
}
.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}
.partner-logo {
  background: #fff;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.partner-logo:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
.partners-testimonials {
  margin-top: 2rem;
  text-align: center;
}
.partners-testimonials blockquote {
  background: #eaf1fb;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 1.2rem 2rem;
  font-size: 1.05rem;
  color: var(--text);
  margin: 0 auto;
  max-width: 600px;
}
.about-cta-section {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 0 2rem 0;
  margin-top: 2rem;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(30,136,229,0.10);
  position: relative;
}
.about-cta-section h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 800;
}
.about-cta-section p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.about-cta-section .cta-btn {
  background: #fff;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 1rem 2.5rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
  margin-top: 1rem;
}
.about-cta-section .cta-btn:hover {
  background: var(--gray);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 900px) {
  .about-cta-section {
    padding: 2rem 0 1.5rem 0;
    border-radius: 12px;
  }
  .about-cta-section h2 {
    font-size: 1.4rem;
  }
  .about-cta-section p {
    font-size: 1rem;
  }
  .about-cta-section .cta-btn {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
} 

.section-decor {
  display: inline-block;
  width: 36px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 2px;
  margin-right: 0.7rem;
  vertical-align: middle;
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}
.slide-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.slide-up.visible {
  opacity: 1;
  transform: none;
}
.staggered {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(.4,0,.2,1), transform 0.7s cubic-bezier(.4,0,.2,1);
}
.staggered.visible {
  opacity: 1;
  transform: none;
} 

.programs-hero-section {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 0 2rem 0;
}
.programs-hero-section h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.programs-intro {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0;
}
.programs-main-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
}
.handholding-callout {
  background: #eaf1fb;
  color: var(--primary);
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 600;
  margin: 2rem 0 2.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
}
.handholding-callout i {
  font-size: 1.3rem;
}
.training-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.training-card {
  background: #eaf1fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 2.2rem 1.7rem 1.7rem 1.7rem;
  min-width: 220px;
  max-width: 400px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 1.5rem;
}
.training-card h2 {
  color: var(--secondary);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.training-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.training-card li {
  font-size: 1.08rem;
  color: var(--text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 500;
}
.training-card li i {
  color: var(--primary);
  font-size: 1.1rem;
}
.partners-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.partners-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
}
.partners-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1.5rem;
}
.partner-logo {
  background: #eaf1fb;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(30,136,229,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  display: inline-block;
}
.partner-logo:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .training-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .training-card {
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
  }
  .partners-logos {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
} 

.partners-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.partners-list li {
  font-size: 1.08rem;
  color: var(--text);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #eaf1fb;
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  box-shadow: 0 1px 4px rgba(30,136,229,0.06);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.partners-list li i {
  color: var(--primary);
  font-size: 1.1rem;
}
.partners-list li:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.03);
}
@media (max-width: 900px) {
  .partners-list {
    gap: 0.7rem;
  }
  .partners-list li {
    font-size: 1rem;
    padding: 0.6rem 1rem;
  }
} 

.partners-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(30,136,229,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.partners-table th, .partners-table td {
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-size: 1.05rem;
}
.partners-table th {
  background: #eaf1fb;
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid #e0e0e0;
}
.partners-table tr {
  transition: background 0.2s;
}
.partners-table tbody tr:nth-child(even) {
  background: #f5f7fa;
}
.partners-table tbody tr:hover {
  background: #eaf1fb;
}
.partner-logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(30,136,229,0.08);
  background: #fff;
  margin-right: 0.5rem;
  display: block;
}
@media (max-width: 900px) {
  .partners-table th, .partners-table td {
    padding: 0.7rem 0.7rem;
    font-size: 0.98rem;
  }
} 

.partners-note {
  background: #f5f7fa;
  color: var(--secondary);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin: 1.2rem 0 2rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  box-shadow: 0 1px 4px rgba(30,136,229,0.06);
} 

.training-interest-section {
  background: #eaf1fb;
  padding: 3rem 0 2rem 0;
  text-align: center;
}
.training-interest-section h2 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
}
.interest-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
}
.interest-form input,
.interest-form textarea {
  padding: 0.9rem;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  font-size: 1.05rem;
  resize: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.interest-form input:focus,
.interest-form textarea:focus {
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  outline: none;
}
.interest-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.interest-form button:hover {
  background: var(--secondary);
  transform: scale(1.04);
}
#interest-form-message {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--primary);
} 

.contact-hero-section {
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  text-align: center;
  padding: 3rem 0 2rem 0;
}
.contact-hero-section h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1rem;
}
.contact-hero-section p {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0;
}
.contact-main-section {
  background: #fff;
  padding: 3rem 0 2rem 0;
}
.contact-flex {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-info {
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 350px;
  background: #eaf1fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-info h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-info p {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.contact-info i {
  color: var(--primary);
  font-size: 1.1rem;
}
.contact-social {
  margin: 1rem 0 0.5rem 0;
}
.contact-social a {
  color: var(--primary);
  margin: 0 0.4rem;
  font-size: 1.3rem;
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}
.contact-social a:hover {
  color: var(--secondary);
  transform: scale(1.15);
}
.contact-map {
  width: 100%;
  margin-top: 1rem;
}
.contact-form-container {
  flex: 1 1 340px;
  min-width: 260px;
  max-width: 500px;
  background: #eaf1fb;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  padding: 2rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-form-container h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.contact-form input,
.contact-form textarea {
  padding: 0.9rem;
  border: 1.5px solid var(--gray);
  border-radius: 8px;
  font-size: 1.05rem;
  resize: none;
  transition: border 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(30,136,229,0.10);
  outline: none;
}
.contact-form button {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact-form button:hover {
  background: var(--secondary);
  transform: scale(1.04);
}
#form-message {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--primary);
}
@media (max-width: 900px) {
  .contact-flex {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .contact-info, .contact-form-container {
    max-width: 100%;
    margin: 0 auto 1.5rem auto;
  }
} 