* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.container-box {
  display: flex;
  gap: 20px;
  animation: slideUp 1s ease-in-out;
  margin-right: 50px;
  margin-left: 50px;
}



.text-box {
  flex: 2;
  background: #f8faff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.text-box h2 {
  color: black;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-weight: bolder;
}



.text-box p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.read-more {
  background-color: #4a6cf7;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.read-more:hover {
  background-color: #3c5ed1;
}

.container-box {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.text-box,
.image-box {
  opacity: 0;
  transform: translateY(100px);
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
}

.container-box.active .text-box,
.container-box.active .image-box {
  opacity: 1;
  transform: translateY(0);
}







.image-box {
  overflow: hidden;
  flex: 1;
  transition: transform 0.3s ease-in-out;
}

.image-box img {
  display: block;
  width: 80%;
  height: auto;
  margin-left: 89px;
  margin-top: -18px;
  transition: transform 0.3s ease-in-out;
}

.image-box:hover img {
  transform: scale(1.1);
}




.journey {
 
  display: flex;
      align-items: center;
      gap: 20px;
      margin-right: 50px;
      margin-left: 50px;
}

/* .image-box2 img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  object-fit: cover;
} */

.image-box2 {
  display: inline-block;
  overflow: hidden;
  position: relative;
}

.image-box2 img {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  transform: translateX(-100%);
  transition: transform 1s ease-in-out;
}


.image-box2.active img {
  transform: translateX(0);
}


.h1-heading {
  flex: 1;
}

.h1-heading h1 {
 
  margin-bottom: 10px;
  color: black;
  text-align: justify;
}

.h1-heading p {
 
  line-height: 1.5;
  color: #555;
  text-align: justify;
}

.mission {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  background: linear-gradient(to bottom, #f8f9fe, #eef2ff);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  margin: 20px auto;
  gap: 20px;
  box-sizing: border-box;
}

.mission-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.mission {
  display: flex;
  gap: 20px;
  align-items: center;
  opacity: 0;
  animation: slideUp 1s ease-in-out forwards;
}


.heading {
  flex: 1;
  padding: 0 20px;
}

.heading h1 {
 
  font-weight: bold;
  margin-bottom: 15px;
  color: black;
  text-align: justify;
}

.heading p {
  
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  text-align: justify;
}

.call-now-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(to right, #0d6efd, #6610f2);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
}

.call-now-btn:hover {
  background: linear-gradient(to right, #6610f2, #0d6efd);
}


.team-container {
  text-align: center;
  padding: 40px 20px;
}
.team-container h2 {
  font-size: 28px;
  color: #0B2154;
  margin-bottom: 20px;
}
.team-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.team-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  width: 250px;
  transition: transform 0.3s;
}
.team-card:hover {
  transform: translateY(-10px);
}
.team-card img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.team-card h3 {
  font-size: 18px;
  color: #144789;  ;
  margin: 15px 0 5px;
}
.team-card p {
  font-size: 14px;
  color: #696970;
  margin: 0;
}


 @media (max-width: 768px) {
  .container-box,
  .mission {
    flex-direction: column;
  }

  .journey{
    flex-direction: column-reverse;
  }
  .team-cards {
    flex-direction: column;
    align-items: center;
  }

  .team-card {
    width: 90%;
  }

  .footer .row {
    flex-direction: column;
    
  }

  .container-box {
    font-size: 1rem; 
  }

  .image-box img {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}


@media (max-width: 480px) {
 .display-4 {
        padding:0px 8px;
        line-height:1.2;
    }

  .footer h5 {
    font-size: 1rem;
  }

  .container-box {
    font-size: 1rem; 
  }
  
  .image-box img {
    width: 100%;
    max-width: none; 
    height: auto;
    display: block;
    margin: 11px auto 28px 0px; 
  }



.footer .copyright {
  padding: 25px 0;
  margin-left: -25px!important;
  border-top: 1px solid rgba(256, 256, 256, .1);
}



.nav-item {
  position: relative;
}

.sticky-top{
  top:0px !important;
  
}

.shadow-sm {
  background: black;
}

.nav-link {
font-size: 18px;
font-weight: 600;
color: black;
text-decoration: none;
transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect - Underline and color change */
.nav-link:hover {
color: #2d286b;
}

/* Add underline effect on hover */
.nav-link::after {
content: "";
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background-color: white;
transition: width 0.3s ease;
}


.nav-link:hover::after {
width: 100%;
}

/* Dropdown menu item hover effect */
.dropdown-item:hover {
background-color: #f1f1f1;
color: #2d286b;
transition: background-color 0.3s ease, color 0.3s ease;
}

/* Navbar transition */
.navbar-nav .nav-item {
  transition: all 0.3s ease;
}

