/*.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
*/

/* fixe here start fixing here.....

/*body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

/* HEADER */
.header {
  background: #1d1c1c;
  border-bottom: 2px solid #eee;
}
.navbar-nav .nav-link {
  color: #e60518;
  font-weight: 600;
  margin-left: 15px;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #fef3f3;
}

/* HIGHLIGHT BAR */
.highlight-bar {
  background-color: #ff0a1e;
  color: #fff;
  font-weight: 600;
  padding: 15px;
  font-size: 16px;
}

/* VIDEO */
.video-section video {
  border-radius: 8px;
}

/* HOVER EFFECT */
.hover-zoom {
  transition: transform 0.3s ease;
}
.hover-zoom:hover {
  transform: scale(1.05);
}

/* PARTNER BANNER */
.partner-banner img {
  max-height: 250px;
  object-fit: cover;
}

/* APP BANNER */
.app-banner {
  background: #fff;
}
.app-banner .btn {
  font-weight: 700;
  font-size: 18px;
}

/* FOOTER */
.footer {
  background: #1a1a1a;
}
.footer p {
  font-size: 14px;
}
.footer .btn {
  background-color: #da0d1e;
  border: none;
  font-weight: 600;
  padding: 10px 20px;
}
.footer .btn:hover {
  background-color: #d62828;
}

.hero {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero-banner img {
  width: 100%; /* full width */
  height: auto; /* keep aspect ratio */
  display: block; /* removes bottom white gap */
}

.custom-size {
  transform: scale(1); /* Normal size */
  transition: transform 0.3s ease;
}

.custom-size:hover {
  transform: scale(2); /* Zooms when hovered */
}

/* Add this to your CSS file or inside a <style> tag */
.img-fluid.hover-zoom {
  transform: scale(1.2); /* Makes the image 1.5 times bigger */
  transition: transform 0.3s ease; /* Smooth scaling */
  display: block;
  margin: 0 auto; /* Keeps it centered in the column */
  max-width: 100%; /* Ensures it doesn't overflow the column */
}

/* Optional: Zoom effect on hover */
.img-fluid.hover-zoom:hover {
  transform: scale(1.2);
}

@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .img-fluid.hover-zoom {
    transform: scale(1); /* prevent scaling on small screens */
  }
}
section.partner-banner,
section.download-app {
  margin-bottom: 20px; /* Adjust as needed */
}

@media (min-width: 768px) {
  .banner-section {
    margin-bottom: 50px; /* More space on bigger screens */
  }
}
.custom-video {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.video-wrapper {
  position: relative;
  display: inline-block;
}

.custom-video {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 10px;
  transition: opacity 0.5s ease;
}

.overlay.hidden {
  opacity: 0;
  visibility: hidden;
}
