/* Extra small devices (phones, <576px) */
@media (max-width: 575.98px) {
/*Banner 3*/
 .part-10 .banner-font h1{
    font-size: 60px;
}
.all-search {
    display: none;
}
}

/* Small devices (≥576px) */
@media (min-width: 576px) and (max-width: 767.98px) {

/*Banner*/
.banner .banner-font h1{
    font-size: 75px;
}

/*Banner 2*/
.banner2 .banner-font h1{
    font-size: 70px;
}

/*Banner 3*/
 .part-10 .banner-font h1{
    font-size: 70px;
}


  /* ========== Search Bar ========== */
  .all-search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 9px 20px;
    width: 100%;
    background-color: #000;
    z-index: 9999; /* keep it on top */
  }
  .thirdheader-search input{
    padding-inline: 10px;
  }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  /* ========== Search Bar ========== */
  .all-search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px 43px;
    width: 100%;
    background-color: #000;
    z-index: 9999; /* keep it on top */
  }
}

/* Large devices (≥992px) */
@media (min-width: 992px) and (max-width: 1430px) {

  /* ========== Logo ========== */
  .thirdheader-logo img {
    width: 150px;
  }

  /* ========== Navigation ========== */
  .menu-nav .nav-link {
    color: #ffffff !important;
    margin: 0 8px;
    transition: color 0.3s;
    font-size: 20px;
    font-weight: 500;
  }

  /* ========== Search Bar ========== */
  .all-search {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px 60px;
    width: 100%;
    background-color: #000;
    z-index: 9999; /* keep it on top */
  }

  .thirdheader-search input{
    padding-inline: 180px;
  }

}




/* Extra large devices (≥1200px) */
@media (min-width: 1430px) and (max-width: 1650px){
  /* ========== Logo ========== */
.thirdheader-logo img {
  width: 150px;
}

/* ========== Navigation ========== */
.menu-nav .nav-link {
  color: #ffffff !important;
  margin: 0 8px;
  transition: color 0.3s;
  font-size: 15px;
  font-weight: 500;
}




.all-search{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
}




/*Well come*/
/* Splash Screen */
#splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* black background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  animation: fadeIn 1s ease-in;
}

.splash-title {
  color: #ff6600;
  font-family: 'Poppins', sans-serif;
  font-size: 2rem;
  animation: popUp 1s ease-in-out infinite alternate;
}

/* Fade out effect */
.fade-out {
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
  to { opacity: 0; visibility: hidden; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes popUp {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

