.title-animated-text {
  font-family: "Gemunu Libre", serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

/* .about{
    background-image: url("https://plus.unsplash.com/premium_photo-1725519169515-e421443fdd5f?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OXx8Y3J1bXBsZWQlMjBwYXBlcnxlbnwwfHwwfHx8MA%3D%3D");
} */

.hero-home {
  background-image: url("../assets/hero/hero-final.jpg");
  position: relative;
  background-size: cover;
  /* Ensures the image covers the entire section */
  background-position: center;
  /* Centers the image */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  height: 100vh;
  /* Full viewport height */
  color: white;
  /* Adjust text color as needed */
}


.hero-home:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  z-index: 2;

}

.hero-home .hero-home-fix {
  height: 100%;
  position: relative;
  pointer-events: none;
  z-index: 3;
}

.hero-home .hero-home-fix .container {
  pointer-events: all;
}

.mil-video-frame {
  display: flex;
  justify-content: center;
  /* Center the video horizontally */
  align-items: center;
  /* Center the video vertically if needed */
  position: relative;
  overflow: hidden;
  width: 80%;
  /* You can adjust the width here for larger size */
  max-width: 1200px;
  /* Optional: limit the max size */
  margin: 0 auto;
  /* Center the frame horizontally if needed */
}

.mil-video {
  width: 100%;
  /* Ensures the video fills the container width */
  height: 450px;
  /* Adjust this height to make the video taller */
  border-radius: 8px;
  /* Optional: rounded corners for a nice look */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Optional: shadow for emphasis */
}

/* Ensures all images inside swiper slides have the same width and height */
.swiper-slide img {
  width: 100%;
  height: auto;
  /* Maintains aspect ratio */
  object-fit: contain;
  /* Ensures the image doesn't stretch out */
  max-height: 100px;
  /* You can change this value to your desired height */
  display: block;
}

.logo-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.logo-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  white-space: nowrap;
  overflow-x: auto;
  scroll-behavior: smooth; /* Smooth scrolling */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

.logo-item {
  flex: 0 0 auto; /* Prevent flex items from shrinking */
  min-width: 100px;
  text-align: center;
}

.logo-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

.logo-item-2 img {
  object-fit: contain;
  transition: transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-row {
    gap: 80px;
    justify-content: flex-start; /* Align logos to the start for scrolling */
    padding-bottom: 10px; /* Add some padding to make scrolling more comfortable */
  }

  .logo-item {
    flex: 0 0 120px; /* Fixed width for each logo item */
  }
}

@media (max-width: 480px) {
  .logo-row {
    gap: 80px;
  }

  .logo-item {
    flex: 0 0 100px; /* Fixed width for each logo item */
  }
}

.mil-social-icons a {
  margin: 0 10px;
  font-size: 20px; /* Adjust icon size */
  color: #fff; /* Adjust icon color */
}
.mil-social-icons a:hover {
  color: #ddd; /* Hover effect */
}
