
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.about-section {
    z-index: -10;
    padding: 150px 20px;
    background-color: #f9f9f9;
  }
  
  .about-section h1, .about-section h2 {
    text-align: center;
    color: #f57c00;
    margin-bottom: 20px;
  }
  
  .intro {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .intro p {
    font-size: 18px;
    line-height: 1.6;
  }
  
  .achievements .cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .card {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  
  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }
  
  .card h3 {
    color: #333;
    margin: 15px 0;
  }
  
  .card p {
    padding: 0 15px 20px;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  

  /*  history  */



  .card-1:first-child {
    margin-left: 0;
}

.card-1 + .card-1 {
    margin-left: 0px;
}

.image-section {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
    text-align: center;
}

.card-content h3 {
    margin: 0;
    font-size: 1.8rem;
    color: #333;
}

.card-content p {
    margin-top: 10px;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}


/* video cart style */

.videos {
  padding: 50px;
  text-align: center;
  background: #fff;
}

.videos h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #333;
}

.videos p {
  color: #666;
  margin-bottom: 30px;
}

.video-category {
  margin-bottom: 40px;
}

.video-category h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ff7f50;
}

.video-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.video-card {
  width: 500px;
  background: #f4f4f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.video-card iframe {
  width: 100%;
  height: 300px;
  border: none;
}

.video-card p {
  padding: 10px;
  font-size: 1rem;
  color: #333;
  text-align: center;
}

.video-card:hover {
  transform: scale(1.05);
}


/* footer */  

.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: left;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-image {
  width: 160px; /* Adjust size as needed */
  margin-bottom: 10px;
}

.site-name {
  font-size: 28px;
  margin: 5;
}

.footer-links h3,
.footer-contact h3 {
  font-size:170%;
  width:300px;
  font-weight: bolder;
  padding-left:350px;
  margin-bottom: 10px;
}

.footer-links ul {
  padding-left:350px;
  list-style: none;
  padding: 0;
  font-size:150%;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  padding-left:350px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #f90; /* Change to your theme color */
}

.footer-contact p {
  padding-left:350px;
  margin: 5px 0;
}

.footer-text {
  font-weight: bolder;
  padding-left:00px;
  display: block;
  margin-top: 130px;
  width: 100%;
  text-align: center;
  font-style: italic;
}

/* ========== Responsive ========== */
@media (max-width: 992px) {
  .footer {
    flex-direction: column;
    align-items: stretch;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .footer-logo {
    align-items: center;
  }
  .footer-links h3,
  .footer-contact h3 {
    padding-left: 0;
    width: auto;
    max-width: 100%;
  }
  .footer-links ul {
    padding-left: 0;
  }
  .footer-links a {
    padding-left: 0;
  }
  .footer-contact p {
    padding-left: 0;
  }
  .footer-text {
    margin-top: 28px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 120px 16px 40px;
  }
  main.about-section ~ h1 {
    font-size: 2rem !important;
    margin-left: 12px;
    margin-right: 12px;
    line-height: 1.2;
  }
  .card-content {
    padding: 16px;
  }
  .card-content h3 {
    font-size: 1.35rem;
  }
  .image-section {
    height: auto;
    min-height: 200px;
    max-height: 280px;
  }
  .video-card {
    width: 100%;
    max-width: min(500px, 100%);
  }
  .video-card iframe {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 180px;
  }
  .videos {
    padding: 36px 16px;
  }
}