/* about top banner start ---------------------------------------------------------*/
.top-banner{
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.top-banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CENTER TEXT OVER IMAGE */
.top-banner-content{
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,0.45); /* optional overlay */
  top:15%;
}

.top-banner-content h1{
  color: #fff;
  font-size: 35px;
  font-weight: 700;
}

.top-banner-content p{
  color: #f1f1f1;
  font-size: 18px;
}

/* MOBILE */
@media (max-width:768px){
  .top-banner{
    height: 250px;
  }
  .top-banner-content{
  position: absolute;
  top:25%;
}
  .top-banner-content h1{
    font-size: 20px;
  }
}
/* end------------------------------------------------------------ */

/* collection page start */
 .collection-section {
  padding: 20px 0;
  background: #f7f7f7;
}

/* ===== FORCE 5 PER ROW ===== */
@media (min-width: 992px) {
  .custom-col {
    flex: 0 0 20% !important;
    max-width: 20% !important;
  }
}

/* ===== SPACING FIX ===== */
.row {
  margin-left: -6px;
  margin-right: -6px;
}

.card-item {
  padding: 6px;
}

.collection-card {
  background: #fff;
  /* border-radius: 10px; */
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border: 2px solid #00adad;
  width: 100%;
}

.collection-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.3s;
}

.card-content {
  padding: 8px;
  text-align: center;
}

.card-content h5 {
  color: #0a3d62;
  margin: 0;
  font-size: 15px !important;
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.collection-card:hover img {
  transform: scale(1.05);
}
@media (min-width: 992px) {
  .five-col {
    flex: 0 0 20% !important;
    max-width: 20% !important;
  }
}
/* Load More Button */
.load-more-btn {
  background: linear-gradient(90deg, #00adad, #005083);
  border: none;
  color: #fff;
  padding: 12px 35px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.load-more-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Hide cards initially */
.card-item {
  display: none;
}
.arrow-icon {
  font-size: 20px;
  margin-left: 8px;
  vertical-align: middle;
  animation: bounceDown 1.2s infinite;
}

/* Animation */
@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* Hover Effect */
.load-more-btn:hover .arrow-icon {
  animation: none;
  transform: translateY(4px);
}
/* end-------------------------------------------------- */

