/* Styles for the top-image section */
.top-image {
  width: 100%; 
  
    height: 40vh; 
    object-fit: cover;
    overflow: hidden; 
    background-color: #f8f8f8; 
}


.top-abt-img img {
    width: 100%!important; 
    height: 50vh!important; 
    object-fit: cover!important; 
    object-position: center!important;

}

/* About Section */
.about-info {
    padding: 50px 0;
    background-color: #fff;
    margin-bottom: 50px;

}

.about-info .container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-info .row {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
}

.about-info .col-lg-6 {
    flex: 1;
    padding: 15px;
}

.abt-img img {
    width: 100%;
    border-radius: 8px;
}

.top-heading {
  text-align: center;
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

.main-heading {
  text-align: center;
    font-size: 36px;
    color: #222;
    font-weight: 700;
    margin-top: 20px;
}

.main-hr {
  margin: 0 auto;
    width: 450px;
    border: 2px solid #ee2323;
    margin-top: 10px;
}

.description {
  text-align: center;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-top: 20px;
}
.vision-mission {
  background-image: url('images/mission-bg.png');
  background-size: cover;
  background-position: center;
  padding: 50px 0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
}
.row {
  display: flex !important;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mission-col {
  border: 2px solid #ddd; 
  border-radius: 8px; 
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8); 
  margin-bottom: 20px;
  text-align: center;
  position: relative;

    border: 1px solid red;
    transition: transform 0.3s ease;
}
.mission-col:hover {
  transform: translateY(-10px);
    transition: transform 0.3s ease;
    box-shadow: 0 1px 1px rgba(236, 214, 8, 0.938); 
}

.mission-icon, .vision-icon, .strategy-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -35px; 
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #E31E24; 
  color: white;
  font-size: 24px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.mission-icon:hover, .vision-icon:hover, .strategy-icon:hover {
  transform: scale(1.1) translateX(-50%);
}
.mission-box{
  padding: 30px;
}
.top-heading {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.section-description {
  font-size: 16px;
  color: #333;
}



@media (max-width: 768px) {
    .top-image {
       width: 100%;
       height: fit-content;
    }

    .about-info{
       margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .top-image {
      width: 100%;
    }
}
@media (max-width: 768px) {
    .vision-mission {
      display: flex;
      flex-direction: row;
      width: 100%;
    }
}



