#header .navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: linear-gradient(180deg, #182644, #0f1a33); /* Add gradient background */
  height: 100px; /* Increase height for spacing */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
}

.navbar-brand {
  position: relative;
  display: inline-block;
}

.navbar-brand img {
  max-height: 60px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* Shine effect */
.navbar-brand::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.7), transparent);
  z-index: 2;
  transform: skewX(-25deg);
  animation: shine 3s infinite;
}

/* Animation for the shine effect */
@keyframes shine {
  0% {
      left: -200%;
  }
  50% {
      left: 0;
  }
  100% {
      left: 200%;
  }
}

.navbar-nav {
  margin-left: auto; /* Space between logo and nav links */
  display: flex;
  align-items: center;
}

.navbar-nav .nav-item {
  margin: 0 15px;
}

.navbar-nav .nav-link {
  color: white !important;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
}

.navbar-nav .nav-link.active {
  color: #ffca3a !important;
  border-bottom: 2px solid #ffca3a;
}
/* Footer Styling */
#footer .footer_m {
  background-color: #002855;
  color: white;
}
#footer .footer_1i a {
  color: white;
}
#footer_b {
  background-color: #001a3b;
}
#footer_b p {
  color: white;
  margin: 0;
  padding: 15px 0;
}
.team_1i1 img {
  width: 100%; /* Ensures the image spans the container's width */
  height: 500px; /* Sets a fixed height for all images */
  object-fit: cover; /* Ensures images maintain aspect ratio while filling the container */
  border-radius: 5px; /* Optional: Adds slight rounding for a polished look */
}		
.rounded-circle {
  width: 60px; /* Sets the width of the image */
  height: 100px; /* Ensures the height matches the width for a perfect circle */
  border-radius: 50%; /* Makes the image round */
  object-fit: cover; /* Ensures the image is scaled and cropped proportionally */
  margin: 0 auto; /* Centers the image */
  display: block; /* Ensures proper alignment */
}
#footer .footer_m {
  background-image: url('img/footer.png'); /* Replace with the actual path to your image */
  background-size: cover; /* Ensures the image covers the entire footer */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Prevents the image from repeating */
  color: #fff; /* Adjusts text color to ensure readability */
  padding: 3rem 0; /* Ensures proper spacing */
  }
  /* Team Section Styling */
.team_1i3 ul li a {
  background: #1a2844;
  color: #fff; /* Ensures text is visible on the background */
  transition: background-color 0.3s ease, color 0.3s ease;
}
.team_1i3 {
  width: 90%;
  left: 5%;
  bottom: -120px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for pop-out effect */
}
.team_1i:hover .team_1i3 {
  background: rgb(222, 131, 41) !important;
  color: #fff;
  transform: translateY(-10px); /* Adds a hover lift effect */
}
.team_o {
  padding-bottom: 160px;
}

/* Testimonials Section */
#testim .carousel-indicators {
  bottom: -50px;
}
/* Founder Image Styling with Shiny Border */
.founder-image-wrapper {
  position: relative;
  display: inline-block;
  padding: 10px; /* Space for the shiny border */
  border-radius: 50%; /* Circular border */
  background: linear-gradient(45deg, #ff8c00, #ffd700, #ff8c00); /* Gradient border */
  background-size: 200% 200%;
  animation: shiny-border 3s linear infinite; /* Animation for the shiny effect */
}

/* Style for the Founder Image */
.founder-image-wrapper img {
  border-radius: 50%; /* Circular image */
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* Keyframes for the shiny border animation */
@keyframes shiny-border {
  0% {
      background-position: 0% 50%;
  }
  100% {
      background-position: 100% 50%;
  }
}

/* Mobile Responsive Styling */
@media screen and (max-width: 767px) {
  .about_pg1l h6 {
      text-align: center;
  }
  .about_pg1l {
      margin-bottom: 15px;
  }
  .qual_1i {
      text-align: center;
      margin-top: 8px;
      margin-bottom: 8px;
  }
  .qual_1ir {
      margin-top: 10px;
  }
  .team_1i3 {
      position: static !important;
      width: 100%;
      margin-bottom: 20px;
  }
  .team_o {
      padding-bottom: 30px;
  }
  .testim_1i h3, .testim_1i p {
      text-align: left;
  }
  .testim_1i br {
      display: none;
  }
}

/* Tablet Responsive Styling */
@media (min-width: 576px) and (max-width: 767px) {
  .about_pg1r img {
      min-height: 300px;
  }
}

/* Medium Devices (Tablets and Small Laptops) */
@media (min-width: 768px) and (max-width: 991px) {
  .about_pg1r img {
      min-height: 400px;
  }
  .team_1i3 ul li {
      margin-top: 5px;
      margin-bottom: 5px;
  }
  #testim br {
      display: none;
  }
}

/* Large Devices (Laptops) */
@media (min-width: 992px) and (max-width: 1200px) {
  .about_pg1r img {
      min-height: 400px;
  }
  .team_1i3 ul li {
      margin-top: 5px;
      margin-bottom: 5px;
  }
}

/* Extra Large Devices */
@media (min-width: 1201px) and (max-width: 1330px) {
  /* Specific adjustments for larger screens */
  .team_1o {
      margin-top: 100px;
  }
}
.center_h .slide-content {
  height: 400px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  justify-content: center;  
  align-items: center;      
  text-align: center;       
}


.center_h .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Adds a dark overlay for better readability */
  z-index: 1; /* Ensures it's above the background image but below text */
}


.center_h .carousel-caption h2 {
  width: 100%;            
  text-align: center;     
  margin: 0 auto;         
  display: block;         
}
.center_h .slide-content {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* This aligns items to the start, moving your heading up */
  padding-top: 150px; /* Adjust this value to move the text higher or lower */
  height: 400px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}




