.py-5 {
  padding: 50px 0;
}

.hero {
  position: relative;
}

.hero-img-holder img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center center;
}

.hero-content-holder {
  position: absolute;
  width: 60%;
  margin: 0 auto;
  top: 25%;
  left: 10%;
  padding: 10px;
  background-color: #00000042;
  border-radius: 4px;
}

.banner-heading {
  font-size: 5rem;
  color: white;
  text-transform: uppercase;
  line-height: 1.2;
}

.banner-subheading {
  font-size: 2rem;
  color: white;
  text-transform: capitalize;
}

.text-blue {
  color: var(--blue-color);
}

.text-white {
  color: var(--white-color);
}

.interactive {
  padding: 4px 10px;
  border-radius: 999px;
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.interactive:hover {
  background-color: color-mix(in srgb, var(--blue-color) 15%, transparent);
  transform: translateY(-1px);
}

/* Banner end  */

.video {
  width: 100%;
  height: auto;
}

.video-content {
  position: absolute;
  top: 25%;
  left: 0;
  right: 0;
  width: fit-content;
  margin: 0 auto;
}

.video-heading {
  width: 90%;
  margin: 0 auto;
  font-size: clamp(2rem, 6vw, 5rem);
  text-align: center;
  align-items: center;
  color: var(--white-color);
}

.video-subheading {
  font-size: clamp(1.2rem, 4vw, 3rem);
  text-align: center;
  align-items: center;
  color: var(--white-color);
}

.video-btn {
  position: absolute;
  bottom: 20%;
  right: 10%;
}

/* explore the world  */
.explore-section {
  padding: 50px 0;
}

.overlay {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 1%;
  background: #00000036;
}

.explore-the-world {
  max-width: 1920px;
  width: 90%;
  margin: 0 auto;
}

.etw-heading {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}

.etw-para {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 10px;
}

/* GRID ITEM */
.grid-inner {
  background: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, .08);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #003173 !important;
}

.grid-inner:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgb(22 47 148 / 46%);
}



/* content with left image start */

/* content-with-left-image */

.content-with-left-image,
.content-with-right-image {
  width: 100%;
  background-color: #f9f0e063;
}

.cwli-header {
  padding: 20px;
}

.cwli,
.cwri {
  display: flex;
  align-items: stretch;
}

.right {
  padding: 50px 30px;
}

.cwli .left,
.cwri .left,
.cwli .right,
.cwri .right {
  flex: 1;
}

/* Image container fills full column height */
.img-holder {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Image fills available space */
.img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content spacing */
.content-holder {
  padding: 10px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .right {
    padding: 30px 20px;
  }

  .reverse-right {
    order: 2;
  }

  .reverse-left {
    order: 1;
  }

  .cwli,
  .cwri {
    flex-direction: column;
  }

  .img-holder {
    height: 300px;
  }
}

/* content with left image end */











@media (max-width: 1024px) {
  .banner-heading {
    font-size: 3.5rem;
  }

  .hero-img-holder img {
    height: 85vh;
  }

  .banner-subheading {
    font-size: 1.5rem;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-content-holder {
    top: 20%;
  }

  .grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .content-holder {
    top: 30%
  }

}

@media (max-width: 480px) {
  .hero-content-holder {
    position: absolute;
    width: 80%;
  }

  .hero-img-holder img {
    height: 80vh;
  }

  .banner-heading {
    font-size: 2.5rem;
  }

  .banner-subheading {
    font-size: 1.5rem;
  }

  .grid {
    grid-template-columns: 1fr;
  }

}