.fun-fact .bg{
    background-color:#00215B!important;
}


@media (min-width: 1024px) {
  
  .hero{
      margin-top:120px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Hero Image with Zoom Animation */
.hero-image {
  background: url('https://i.ibb.co/fNFc5kJ/hero-image.jpg') no-repeat center center/cover;
  width: 100%;
  height: 100%;
  animation: zoomEffect 10s infinite alternate ease-in-out;
}

/* Black Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Hero Content */
.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  text-align: left;
  color: #fff;
  z-index: 2;
  width: 90%;
  max-width: 1200px;
}

/* Row System */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* Column Structure */
.col-xl-7, .col-lg-8, .col-md-7 {
  flex: 0 0 60%;
  max-width: 60%;
}

@media (max-width: 992px) {
  .col-xl-7, .col-lg-8 {
    flex: 0 0 70%;
    max-width: 70%;
  }
}

@media (max-width: 768px) {
  .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
  }
  
    .hero {
    height: 500px; /* Fixed height for mobile devices */
    overflow: hidden;
  }

  .hero-content {
    left: 0%;
    width: 100%;
  }
}

/* Banner Text */
.fix-banner-txt h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.fix-banner-txt p {
  font-size: 1.2rem;
}

/* Responsive Design for Smaller Devices */
@media (max-width: 768px) {
  .fix-banner-txt h1 {
    font-size: 2rem;
  }

  .fix-banner-txt p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .fix-banner-txt h1 {
    font-size: 1.5rem;
  }

  .fix-banner-txt p {
    font-size: 0.9rem;
  }
}

/* Animation */
@keyframes zoomEffect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}