/* * style.css */
body {
  font-family: 'Montserrat', sans-serif;
  background-color: white;
  color: #FEBA17;
  height: 100%;
  margin: 0;
  padding: 0;
}
.font {
  font-family: "Righteous", sans-serif;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: linear-gradient(to right, #f7f3de, #4ED7F1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
  
.logo a {
  color:  #4ED7F1;
  font-size: 1.5rem;
  text-decoration: none;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
  
.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
  
.nav-links li a:hover {
  color: black;
}
.toggle-btn {
  display: none;
  font-size: 1.5rem;
  color: #e7e7e7;
  cursor: pointer;
}

.certificates-section {
  background-color: white;
  padding: 60px 20px;
  text-align: center;
  }
  
  .certificates-section .section-title {
  font-family: "Righteous", sans-serif;
  font-size: 36px;
  color: #4ED7F1;
  margin-bottom: 40px;
  display: inline-block;
  padding-bottom: 10px;
  }
  
  .certificate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  }
  
.certificate-card {
  background-color: #e7e7e7;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #4ED7F1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
  
.certificate-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px #4ED7F1;
}
  
  .certificate-card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 15px;
  border: 2px solid #4ED7F1;
  }
  
  .certificate-card h4 {
  color: #4ED7F1;
  font-size: 18px;
  margin-bottom: 5px;
  }
  
.certificate-card p {
  color: black;
  font-size: 14px;
}
 
 
  /* Responsive */
@media (max-width: 768px) {
 .nav-links {
    display: none;
    flex-direction: column;
    background-color: #4ED7F1;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    padding: 1rem;
    border-radius: 10px;
}    
.nav-links.active {
    display: flex;
}    
.toggle-btn {
    display: block;
  }
 }
 .nav-links li a {
  color: #F5F5F5;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding: 0.5rem 0;
  transition: transform 0.3s ease, color 0.3s ease;
  }
  
 .nav-links li a:hover {
  color: #f0eacf;
  transform: translateX(5px); 
  }
  @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');
    
  @keyframes slideInFromLeft {
    from {
      transform: translateX(-100px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes fillProgress {
    from {
      width: 0;
    }
    to {
      width: var(--progress-width);
    }
  }
  .footer-bottom{
    background: linear-gradient(to right, #f7f3de, #4ED7F1 , #f7f3de);
    color: black;
    padding: 14px;
    text-align: center;
  }
  