body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: #222;
}

/* ===== Banner ===== */
.banner {
  text-align: center;
  padding: 10px 10px; /* হাইট আরও কমানো */
  background: linear-gradient(90deg, #ff512f, #dd2476);
  color: white;
}

.banner .logo {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  mix-blend-mode: normal !important;
}


.title {
  margin: 4px 0 2px;
  font-size: 22px;
  font-weight: 700;
}

.title span { color: yellow; }

.subtitle {
  font-size: 12px;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,100%{opacity:1;}
  50%{opacity:0.5;}
}

/* ===== Navbar ===== */
.navbar {
  background: #000;
  text-align: center;
}

.navbar ul {
  margin: 0;
  padding: 5px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.navbar li { list-style: none; }

.navbar a {
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 5px;
}

.navbar a:hover { background: #ff512f; }

/* ===== Slider Section ===== */
.slider-section {
  background: linear-gradient(to right, #111, #222);
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 140px); /* ব্যানার+মেনু বাদে */
}

.slider {
  position: relative;
  width: 90%;
  max-width: 900px;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.slides {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.slides img {
  width: 100%;
  height: 380px; /* হাইট কমানো হয়েছে */
  object-fit: cover;
  border-radius: 15px;
}

/* নতুন slide + fade অ্যানিমেশন */
.fade {
  animation: slideFade 1.5s ease-in-out;
}

@keyframes slideFade {
  0% { opacity: 0; transform: translateX(50px); }
  50% { opacity: 0.7; transform: translateX(-20px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 10px;
  color: white;
  font-weight: bold;
  font-size: 22px;
  border-radius: 50%;
  user-select: none;
  background: rgba(0,0,0,0.4);
  transform: translateY(-50%);
}

.next { right: 10px; }
.prev { left: 10px; }

.prev:hover, .next:hover { background: rgba(0,0,0,0.8); }

/* ===== Footer ===== */
.footer {
  text-align: center;
  padding: 10px;
  background: #fafafa;
  font-size: 14px;
}

.footer a { color: #0078ff; text-decoration: none; }

.footer a:hover { text-decoration: underline; }

/* ===== Responsive ===== */
@media(max-width:768px){
  .title{ font-size: 18px; }
  .slides img{ height: 220px; } /* মোবাইল/ট্যাবে হাইট কমানো */
  .slider-section{ height: calc(100vh - 110px); }
}
