/* Add CSS styles for the banners here */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  /* Set the background color to white */
}

/* .navTopBar {
  position: sticky;
  top: 0px;
  z-index: 2;
} */
.navTopBar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  /* background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px; */
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 9999;
}

.navTopBar.show {
  opacity: 1;
}

.homePage-viwList {
  margin-top: 20px;
  padding: 0px 55px;
  display: flow-root;
}

.homePage-viewAll {
  float: right;
}

.homePage-viewAll a {
  text-decoration: none;
}

.homePage-newLaunch {
  float: left;
  font-size: 18px;
  font-weight: 600;
}

.homePage-banner1,
.homePage-banner2,
.homePage-banner3 {
  width: 100%;
}

.homePage-banner1 img,
.homePage-banner2 img,
.homePage-banner3 img {
  width: 100%;
  height: auto;
  display: block;
}

.homePage-banner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  /* Set the background color to white */
}

.homePage-sub-banner {
  text-align: center;
  padding: 0px 20px 20px 20px;
  flex: 1;
}

.homePage-sub-banner img:hover {
  opacity: 0.8;
}

.homePage-sub-banner img {
  max-width: 100%;
  height: auto;
}

.homePage-banner3 {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 0 10px 0px;
  background-color: #202123;
}

.homePage-banner3-sub1 {
  text-align: center;
  padding: 20px 10px 20px 50px;
  flex: 1;
}

.homePage-banner3-sub2 {
  text-align: center;
  padding: 20px 50px 20px 10px;
  flex: 1;
}

.homePage-banner3-sub1 img,
.homePage-banner3-sub2 img {
  max-width: 100%;
  height: auto;
}

.homePage-banner3-sub1 p,
.homePage-banner3-sub2 p {
  color: white;
  text-align: left;
}

.homePage-head1 {
  color: white;
  padding: 20px 20px 0px 30px;
  background-color: #202123;
}

.homePage-subHead1 {
  font-size: 18px;
  margin: 20px;
  font-weight: 600;
}

.homePage-banner3-sub1 a {
  text-decoration: none;
}

.homePage-banner3-sub2 a {
  text-decoration: none;
}

/* Media queries for responsiveness */
@media only screen and (max-width: 768px) {

  /* For screens smaller than 768px (e.g., mobile devices) */
  .homePage-head1 {
    text-align: center;

  }

  .homePage-viwList {
    padding: 0 15px;
  }

  .homePage-banner {
    flex-direction: column;
    /* Stack the sub-banners vertically */
  }

  .homePage-sub-banner {
    padding: 10px;
    /* Reduce padding for mobile */
  }

  .homePage-banner3 {
    flex-direction: column;
    /* Stack the sub-banners vertically */
  }

  .homePage-banner3-sub1,
  .homePage-banner3-sub2 {
    padding: 10px;
    /* Reduce padding for mobile */
  }
}

.homePage-banner1 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.homePage-banner1.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.homePage-head1,
.homePage-viwList,
.homePage-banner .homePage-sub-banner,
.homePage-banner2,
.homePage-banner3 {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.homePage-head1.active,
.homePage-viwList.active,
.homePage-banner .homePage-sub-banner.active,
.homePage-banner2.active,
.homePage-banner3.active {
  opacity: 1;
  transform: translateY(0);
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-image {
  width: 100%;
  display: none;
}

