* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }

  /* Navbar */
  
  .logo a img {
  height: 50px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.logo a:hover img {
  transform: scale(1.05);
  opacity: 0.9;
}

body {
    background-color: #f9f9f9;
    margin: 0;
    height: 100vh;
   
  }

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
}

h4 {
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
}

a{
        text-decoration: none;
        
        color: inherit;
    }
    
    a:hover{
    color: #ff6600;
}
  
  .navbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    
  }
  
  .logo img {
    margin-top: 5px;
    width: 80px;
  }
  .menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #333;
  }
  
  .nav-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    transition: max-height 0.4s ease-in-out;
  }
  
  .nav-left,
  .nav-right {
    display: flex;
    gap: 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #333;
    padding: 5px;
    font-size: 0.95rem;
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #FF6600;
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  .menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      flex-direction: column;
      background-color: white;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      padding: 1rem 2rem;
      border-top: 1px solid #eee;
    }
    .nav-links a {
        text-decoration: none;
        color: #333;
        padding: 5px;
        font-size: 0.9rem;
        position: relative;
        display: flex;
        flex-direction: column;
    }
  
    .nav-links.active {
      display: flex;
      flex-direction: column;
    }

    .nav-left, .nav-right{
      display: flex;
      flex-direction: column;
      text-align: center;
    }
  
    .nav-left,
    .nav-right {
     display: flex;
    gap: 15px;
}
  
    .menu-toggle {
      display: block;
    }
  }

  body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .container {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
  }
  
  .apply-btn {
  background: linear-gradient(135deg, #400080, #5a00b3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(64,0,128,0.25);
  transition: transform 0.3s;
  
}

 .apply-btn:hover {
  transform: translateY(-2px);
}

.about-text p:last-of-type{
    margin-bottom:30px;
}
  
  .about-hero {
    background: linear-gradient(to right, #ff8a00, #e52e71);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
  }
  
  .about-section h2 { 
     color: #cc5200;
      margin-bottom: 1rem;
      }
  
  .about-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 3rem;
  }
  
  .about-grid .about-text {
    flex: 1;
    padding: 1rem;
  }
  
  .about-grid .about-img {
    flex: 1;
    padding: 1rem;
  }

  
  
  
  .about-grid .about-img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  .about-core {
    padding: 2rem 0;
  }
  
  .about-core ul {
    padding-left: 1.2rem;
  }
  
  .about-core ul li {
    margin-bottom: 0.5rem;
  }
  
  .about-conclusion {
    text-align: center;
    padding: 2rem 0;
  }
  
  /* Animations */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-in-out forwards;
  }
  
  .fade-in.delay {
    animation-delay: 0.3s;
  }
  
  .slide-in {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInLeft 1s ease forwards;
    margin-bottom: 2rem;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideInLeft {
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-grid {
      flex-direction: column;
    }
  
    .about-img,
    .about-text {
      padding: 0.5rem;
    }
  }
  /* Responsive */
  @media (max-width: 768px) {
    .features-grid {
      grid-template-columns: 1fr;
    }
  }
  .footer {
    background-color: #400080;
    color: #fff;
    padding: 50px 20px 20px;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    border-bottom: 1px solid #222;
  }
  
  .footer-col {
    flex: 1;
    min-width: 220px;
  }
  
  .footer-logo {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #fff;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }

   .accreditation{
  margin-top: 50px;
   font-size: 13px;
   color: #bfbfbf;
 text-align: center;
  
  
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
  }
  
  .footer-col ul li a {
    text-decoration: none;
   color: #dddddd;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #ff6600;
    text-decoration: underline;
  }
  
  .subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .subscribe-form input {
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
  }
  
  .subscribe-form button {
   background-color: #cc4a00;
   color: #ffffff !important;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .subscribe-form button:hover {
   background-color: #a53d00;     
  }
  
  .footer-bottom {
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    margin: 30px 10% 0 10%;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-bottom p {
    margin: 0;
  .footer {
    background-color: #400080;
    color: #fff;
    padding: 50px 20px 20px;
    font-size: 0.95rem;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
    border-bottom: 1px solid #222;
  }
  
  .footer-col {
    flex: 1;
    min-width: 220px;
  }
  
  .footer-logo {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .footer-col h4 {
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #fff;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 8px;
  }
  
  .footer-col ul li a {
    text-decoration: none;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .footer-col ul li a:hover {
    color: #FF6600;
    text-decoration: underline;
  }
  
  .subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  
  .subscribe-form input {
    padding: 8px 10px;
    border: none;
    border-radius: 4px;
  }
  
  .subscribe-form button {
    background-color: #FF6600;
    color: white;
    padding: 8px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
  }
  
  .subscribe-form button:hover {
    background-color: #FF6600;
  }
  
  .footer-bottom {
    padding-top: 15px;
    display: flex;
    flex-wrap: wrap;
    margin: 30px 10% 0 10%;
    justify-content: space-between;
    align-items: center;
  }
  
  .footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
  }
  
  .footer-links a {
    color: #999;
    margin-left: 15px;
    font-size: 0.85rem;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color:#ff6600;
    text-decoration: underline;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    fill: yellow ;
  }
  
   .social-icons a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
   
  .social-icons a:hover {
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-col {
      align-items: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 10px;
      text-align: center;
      border-top: 1px solid #4a1e64;
    }
  
    .footer-links {
      margin-top: 10px;
    }

   
  
  }
  }
  
  .footer-links a {
    color: #999;
    margin-left: 15px;
    font-size: 0.85rem;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color:orangered;
    text-decoration: underline;
  }
  
  /* Social Icons */
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    fill: yellow ;
  }
  
   .social-icons a {
    color: #ccc;
    font-size: 1.2rem;
    transition: color 0.3s;
  }
   
  .social-icons a:hover {
    color: #fff;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-col {
      align-items: center;
    }
  
    .footer-bottom {
      flex-direction: column;
      gap: 10px;
      text-align: center;
      border-top: 1px solid #4a1e64;
    }
  
    .footer-links {
      margin-top: 10px;
    }

   
  
  }
   /* WhatsApp CTA Button */
.whatsapp-cta {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 999;
}

.whatsapp-cta a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #075E54;
  color: #ffffff !important;
  padding: 10px 15px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}

.whatsapp-cta a:hover {
 background-color: #075E54 !important;
}

.whatsapp-cta i {
  font-size: 20px;
}

.about-hero {
  position: relative;
  background: url('https://media.istockphoto.com/id/1310358497/photo/african-team-team.jpg?s=1024x1024&w=is&k=20&c=U_PBG8keRqLv86Z6a27Aaxn6Ep0sf-4q8bXERaRGRig=') center/cover no-repeat;
  height: 35vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(255,138,0,0.8), rgba(229,46,113,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  z-index: 1;
}

.hero-overlay .container {
  position: relative;
  z-index: 2;
}
.about-intro {
  padding: 3rem 1.5rem;
  background-color: #fdf6f9;
  text-align: center;
}

.about-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.about-cards .card {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  max-width: 400px;
  flex: 1 1 300px;
  text-align: center;
}

.about-cards .card img {
  width: 80px;
  height: 80px;
  margin-bottom: 1rem;
}

.about-cards .card h3 {
  margin: 0.5rem 0;
  font-weight: 700;
  color: #4a0072;
}

.about-cards .card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}
 
  
  
  