*{ box-sizing:border-box; margin:0; padding:0; }

.container{
  width:min(1100px, 92%);
  margin: 36px auto 70px;
}

/* ===== TOP TITLE ===== */
.page-head{
  margin-bottom: 18px;
}
.page-head h1{
  font-size: clamp(22px, 3.2vw, 36px);
  margin-bottom: 8px;
}
.page-head p{
  color:#4b5b74;
  font-size: 15px;
}

/* ===== CAROUSEL CARD ===== */
.carousel-card{
  border-radius: 22px;
  overflow: hidden;
  background: #0b2e5c;
  box-shadow: 0 18px 45px rgba(0,0,0,.16);
  margin: 18px 0 22px;
}

.carousel{
  position: relative;
  height: 460px;
  overflow: hidden;
}

/* 🔥 FIX KRYESOR */
.slides{
  display: flex;
  height: 100%;
  transition: transform .6s ease;
}

.slide{
  flex: 0 0 100%;   /* ⬅️ shumë e rëndësishme */
  height: 100%;
  position: relative;
}

.slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

/* overlay */
.slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.25),
    rgba(0,0,0,.55)
  );
}

/* caption */
.caption{
  position:absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  color:#fff;
  max-width: 80%;
}
.caption h2{
  font-size: clamp(18px, 2.3vw, 28px);
  margin-bottom: 6px;
  font-weight: 700;
}
.caption p{
  font-size: 14px;
  opacity: .92;
}

/* arrows */
.btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.15);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.btn:hover{ background: rgba(0,0,0,.45); }

.btn.prev{ left: 14px; }
.btn.next{ right: 14px; }

/* dots */
.dots{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom: 14px;
  display:flex;
  gap:8px;
  z-index:3;
}

.dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background: rgba(255,255,255,.35);
  cursor:pointer;
  transition:.2s;
}
.dot.active{
  width:20px;
  border-radius:10px;
  background:#fff;
}

/* ===== INFO ===== */
.info-card{
  background:#fff;
  border-radius:22px;
  padding:26px;
  box-shadow:0 14px 35px rgba(0,0,0,.08);
}

.info-card h3{
  font-size:20px;
  margin-bottom:10px;
}

.info-card p{
  font-size:16px;
  color:#1c2b45;
  margin-bottom:14px;
  line-height:1.65;
}

.info-meta{
  display:flex;
  gap:10px;
  margin-bottom:16px;
}
.chip{
  background:#eef3fb;
  border:1px solid #dde7f7;
  color:#0b2e5c;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}

/* ===== MOBILE ===== */
@media (max-width:800px){
  .carousel{ height:320px; }
  .caption{ left:16px; bottom:16px; max-width:92%; }
  .btn{ width:38px; height:38px; }
  .info-card{ padding:20px; }
}
