body {
  overflow-x: hidden;
}


.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}


.navbar.scrolled,
.navbar.vis {
    background-color: #333333b9 !important; 
    transition: background-color 0.3s ease; 
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }

.navbar-brand {
  color: white !important;
  font-weight: bolder;
}

.navbar-nav .nav-link {
  color: white !important;
}

.navbar-nav .nav-link:hover {
  color: #2565ae !important;
}

.navbar-nav .nav-link.active {
  color: #3c99dc !important;
}

.social-icons {
  margin-left: auto;
}

.social-icons a i {
  color: #3c99dc;
  font-size: 18px;
}

.social-icons a i:hover {
  color: white;
}

.btn-primary {
  background-color: #2565ae;
  border-color: #2565ae;
}

.btn-primary:hover {
  background-color: #ffffff;
  border: 2px solid white;
  color: #2565ae;
}

.btn-primary:active {
  background-color: #ffffff !important;
  border: 2px solid white !important;
  color: #2565ae !important;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  color: #2565ae !important;
}

.carousel-caption {
  position: absolute;
  top: 58%;
  transform: translateY(-50%);
  color: white;
  text-align: center;
}

.carousel-caption h3 {
  font-size: 3em;
}

.carousel-caption p {
  font-size: 30px;
}

.carousel-item {
  height: 650px; /* Adjust height as needed */
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.636); /* Semi-transparent black */
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%; /* Adjust the width of the navigation buttons */
  z-index: 9999;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  /* Customize navigation arrow icons */
  padding: 15px;
  z-index: 9999;
}

.carousel-control-prev-icon:before,
.carousel-control-next-icon:before {
  /* Hide default arrow icons */
  display: none;
  z-index: 9999;
}

.carousel-caption img {
  max-width: 200%;
  height: auto;
  margin-top: -128px;
  width: 1200px;
}

.carousel-caption h1 {
  font-size: 75px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
  margin-top: -100px;
}
.navbar {
  background-color: rgba(255, 255, 255, 0.5); /* Transparent white */
}

.carousel-item:nth-child(2) img {
  width: 1200px; /* Set width to 100% */
  height: auto; /* Maintain aspect ratio */
  margin-top: -150px;
  bottom: 0%;
}

.carousel-item:nth-child(3) img {
  width: 2000px; /* Set width to 100% */
  height: auto; /* Maintain aspect ratio */
  margin-top: -120px;
}

.carousel-item:nth-child(2) h1 {
  font-size: 75px;
  padding: 0px 100px;
}

.chat-icon-container {
  position: fixed;
  bottom: 20px; /* Adjust as needed */
  right: 20px; /* Adjust as needed */
  z-index: 9999; /* Ensure it's above other content */
  background-color: #3c99dc; /* Change to your preferred color */
  color: #fff; /* Text color */
  width: 60px; /* Icon container width */
  height: 60px; /* Icon container height */
  border-radius: 50%; /* Rounded corners for circle shape */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s; /* Smooth transition for box shadow and transform */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.645); /* Add a shadow */
}

.chat-icon-container:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); /* Increase shadow on hover */
  transform: translateY(-5px); /* Move icon slightly upwards on hover */
}

.chat-icon {
  font-size: 24px; /* Icon size */
}

.carousel-item:nth-child(3) h1 {
  font-size: 75px;
  padding: 0px 100px;
}

.about .row .col-md-6 {
  background-color: white;
  color: #031d38;
  border: 5px solid #031d38;
  padding: 30px;
  padding-right: 0px;
  margin: 10px;
  margin-right: 0px;
  border-top: transparent;
  border-right: transparent;
  border-bottom: transparent;
  margin-left: auto;
}

.about .row {
  gap: 50px;
}
.about {
  padding: 70px 0px;
}

.section {
  background-color: #031d38;
  padding: 100px 0;
  color: #fff;
  margin-top: -10px;
}

.section-header h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 40px;
}

.section-header p {
  font-size: 18px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.container .row .box {
  border: 1px solid #3c99dc5d;
  padding: 30px;
}

.icon {
  font-size: 36px;
  margin-right: 10px;
}

.icon i {
  color: #fff;
  border: 5px solid #3c99dc;
  background-color: #031d38;
  padding: 10px;
  border-radius: 50%;
}

.content {
  display: flex; /* Make the content section a flex container */
  flex-direction: column; /* Arrange items in a column */
}

.feature h3 {
  margin: 0; /* Remove default margin for h3 */
}

.gallery-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.gallery {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-slide {
  flex: 0 0 25%;
  max-width: 25%;
}

.gallery-slide img {
  width: 100%;
  height: auto;
}

.move-left,
.move-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.move-left {
  left: 0;
}

.move-right {
  right: 0;
}

.card-heading {
  background-color: #031d38;
  color: white;
  padding: 20px;
}
.card-content {
  color: #031d38;
  font-weight: 500;
}

.card-location {
  color: #031d38;
}

.sub {
  padding: 20px 0px;
}

.section .row .col-md-3 {
  border: 1px solid #3c99dc52;
}

.gallery-section {
  padding: 50px 0;
}

.gallery-item {
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.1);
}

.footer {
  background-color: #031d38;
  padding: 50px 0;
  margin-top: 50px;
}

.footer h1 {
  color: rgb(202, 225, 202);
  padding: 30px;
}

.footer p {
  color: rgb(202, 225, 202);
  padding: 30px;
  justify-items: center;
  text-align: center;
}

.footer p:hover {
  color: white;
}

@media (max-width: 768px) {
  .icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .icon i {
    font-size: 24px;
  }
}

/* Custom animation */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animation to elements */
.animate__animated {
  animation-duration: 2s;
  animation-fill-mode: both;
}

.animate__fadeInLeft {
  animation-name: fadeInLeft;
}

.animate__fadeInRight {
  animation-name: fadeInRight;
}

/* Media Queries for responsiveness */
@media (max-width: 768px) {
  .social-icons {
    display: none;
  }
}

/* Media query for large screens and desktops */
@media (min-width: 1200px) {
  /* Navbar styles */
 

  /* Carousel caption styles */
  /* .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
  }

  .carousel-caption h1 {
    font-size: 3rem;
    margin-top: -60px;
  }

  .carousel-caption p {
    font-size: 1.5rem;
  } */

  /* About section styles */
  .about .row .col-md-7 {
    padding: 50px;
  }

  /* Section header styles */
  .section-header h2 {
    font-size: 2.5rem;
  }

  .section-header p {
    font-size: 1.2rem;
  }

  /* Feature box styles */
  .box {
    padding: 40px;
  }

  .feature h3 {
    font-size: 1.5rem;
  }

  /* Gallery section styles */
  .gallery-section {
    padding: 100px 0;
  }

  .gallery-item img {
    transition: transform 0.3s ease;
  }

  .gallery-item img:hover {
    transform: scale(1.1);
  }

  /* Footer styles */
  .footer h1,
  .footer p {
    padding: 20px;
    font-size: 1.2rem;
  }
}

/* Media query for smaller laptop screens and tablets */
@media (max-width: 1280px) {
  /* Navbar styles */


  /* Carousel caption styles */
  .carousel-item:nth-child(2) img {
    margin-top: -26px;
  }

  /* About section styles */
  .about .row .col-md-7 {
    padding: 30px;
  }

  /* Section header styles */
  .section-header h2 {
    font-size: 2rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Feature box styles */
  .box {
    padding: 30px;
  }

  .feature h3 {
    font-size: 1.3rem;
  }

  /* Gallery section styles */
  .gallery-section {
    padding: 80px 0;
  }

  .gallery-item img {
    transition: transform 0.3s ease;
  }

  .gallery-item img:hover {
    transform: scale(1.1);
  }

  /* Footer styles */
  .footer h1,
  .footer p {
    padding: 15px;
    font-size: 1rem;
  }
}

@media only screen and (min-width: 320px) and (max-width: 932px) {

  body {
    overflow-x: hidden;
}
.feature .content{
  margin-left: 10px;
}
.carousel-caption .col-md-6 img{
  display: none;
}
.carousel-caption .col-md-6 h1{
  font-size: 70px;
  margin-top: -150px;
}
.carousel-item:nth-child(2) h1 {
  font-size: 60px;
  margin-top: -150px;
}

.carousel-item:nth-child(3) h1 {
  font-size: 60px;
  margin-top: -150px;
}
#img{
  height: 100%;
}
.hero-overlay {
  width: 100%;
  height: 100%;
}
.carousel-item:nth-child(2) #img {
  height: 120%; /* Maintain aspect ratio */
}

.carousel-item:nth-child(3) #img {

  height: 130%; /* Maintain aspect ratio */
 
}

}

