#particles-js {
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
        url(images/background\ about.webp);
    height: 200px;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.websiter-banner {
  margin-top: -140px;
  margin-bottom: 90px;
    font-family: sans-serif;
    color: #ffffff;
    text-align: center; /* Ensure text inside is centered */
}

.websiter-banner h1 {
  z-index: 10;
  position: relative;
    font-size: 42px;
    margin: 0;
}

.breadcrumb {
  z-index: 10;
  position: relative;
    font-size: 16px;
    color: #dddddd;
    margin-top: 10px;
}
.about {
  max-width: 1400px;
  margin: 0 auto; 
  text-align: center; 
}

.about h2{
  text-align: center;
  font-size: 32px;
}




.about h3{
  text-align: center;
  font-size: 22px;
  font-weight: 200;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 3px #0F6AE1 ;
 
}

.about-container {
  display: flex;
  align-items: center;  /* Vertically centers the content */
  justify-content: center;  /* Horizontally centers the container */
}

.about-image-column {
  flex: 0 1 40%;  /* Reduce the image column size to 40% */
  padding: 20px;
}

.about-image {
  width: 100%;
  height: auto; /* Ensures image is responsive */
}

.about-text-column {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 60%;  /* Increase the text column size to 60% */
  height: 100%; /* Ensures the text is centered relative to the image */
}

.about-text {
 font-size: 17px;
  text-align: center; /* Centers the text horizontally */
  padding: 20px;
}

.visionmission {
  background-image: url(images/background-visionmission.webp);
  background-size: cover;
  background-position: center;
  padding: 50px 0 0 0; /* Adds consistent padding */
}

.vision-mission-container {
  max-width: 1200px;
  margin: 0 auto;
  color: #fff;
  display: flex;
  justify-content: center; /* Center-align content */
  align-items: stretch; /* Stretch items to equal height */
  flex-wrap: wrap;
  
}

.vision-mission-content {
  flex: 1 1 45%; /* Allows items to adjust size for responsiveness */
  max-width: 45%; /* Ensures consistency */
  text-align: center;
}

.vision-mission-content h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.vision-mission-content p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 auto;
}

.vision-mission-content dotlottie-player {
  max-width: 350px; /* Ensures animations are uniform */
  margin: 0 auto; /* Centers the animations */
}

@media (max-width: 768px) {
  .vision-mission-content {
    flex: 1 1 100%; /* Stacks items on smaller screens */
    max-width: 100%;
  }

  .vision-mission-content dotlottie-player {
    max-width: 200px; /* Adjusts animation size for smaller screens */
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about h2 {
    font-size: 22px;
  }

  .about h3 {
    font-size: 20px;
  }

  .about-container {
    flex-direction: column; /* Stack the image and text vertically */
  }

  .about-image-column, .about-text-column {
    flex: 0 1 100%; /* Full width for both columns */
    padding: 10px;
  }

  .about-text {
    font-size: 17px;
  }
  .remove{
    display: none;
  }
  .visionmission {
    padding-bottom:50px ;
  }
  .animationweb{
    margin-top: 40px;
    margin-bottom: -70px;
  }
}

#Programming{
  padding: 40px 0;
}
.sub-title2{
  font-size: 38px;
}
.carousel-container {
  margin-top: 50px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel {
  display: flex;
  animation: scroll 5s linear infinite;
  will-change: transform;
}
.carousel img {
  max-height: 100px; /* Adjust to your preferred size */
  width: auto;
  margin: 0 10px; /* Space between images */
}

/* Seamless scrolling animation */
@keyframes scroll {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-50%);
  }
}


.languages {
  max-width: 1400px;
  margin: 40px auto; 
  text-align: center; 
  margin-bottom: 50px;
}

.languages h2{
  text-align: left;
  font-size: 32px;
}




.languages h3{
  text-align: left;
  font-size: 18px;
  font-weight: 200;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: solid 3px #0F6AE1 ;
 
}

@media (max-width: 1024px) {
  .languages h2 {
    font-size: 22px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .languages h3 {
    font-size: 20px;
    margin-left: 10px;
    margin-right: 10px;
  }

}