body { margin:0; font-family:'Poppins',sans-serif; box-sizing:border-box; }

/* Slideshow Container */
.slideshow-container {
  position:relative; width:100%; height:100vh; overflow:hidden; background:#333;
}

/* Slide */
.slide {
  position:absolute; inset:0; background-size:cover; background-position:center;
  display:flex; align-items:center; justify-content:center; opacity:0;
  transition:opacity 1s ease-in-out;
}
.slide.active { opacity:1; }

/* Content */
.slide-content { display:flex; align-items:center; justify-content:space-between;
  width:100%; max-width:1200px; padding:0 50px; position:relative; z-index:2; }
.text-content { color:#fff; max-width:50%; text-shadow:1px 1px 3px rgba(0,0,0,.3); }
.text-content .tag { background:#ff6b6b; padding:8px 15px; display:inline-block; font-size:14px; font-weight:700; margin-bottom:20px; }
.text-content h1 { font-size:4rem; margin:0; line-height:1.2; font-weight:700; color: #ffff; }
.text-content p { font-size:1rem; margin:20px 0 30px; max-width:450px; }
.btn-main { background:#ff6b6b; color:#fff; padding:15px 35px; text-decoration:none; font-weight:700; border-radius:5px; transition:background-color .3s ease; display:inline-block; }
.btn-main:hover { background:#e65a5a; }

/* Image */
.image-content { flex-shrink:0; position:relative; right:-50px; bottom:-80px; }
.image-content img { max-width:450px; height:auto; }

/* Arrows */
.prev,.next{
  cursor:pointer; position:absolute; top:50%; transform:translateY(-50%);
  width:auto; padding:16px; color:#fff; font-weight:700; font-size:24px;
  transition:.3s ease; border-radius:0 3px 3px 0; user-select:none;
  background:rgba(0,0,0,.3); z-index:3; border:none;
}
.next{ right:0; border-radius:3px 0 0 3px; }
.prev{ left:0; }
.prev:hover,.next:hover{ background:rgba(0,0,0,.8); }

/* Dots */
.slide-navigation{ position:absolute; bottom:30px; left:50%; transform:translateX(-50%); display:flex; z-index:3; }
.nav-dot{ height:12px; width:12px; margin:0 5px; background:rgba(255,255,255,.5); border-radius:50%; cursor:pointer; transition:background-color .3s ease; }
.nav-dot.active{ background:transparent; border:2px solid #fff; }

/* Responsive */
@media (max-width: 992px){
  .text-content h1{ font-size:3rem; }
  .image-content{ display:none; }
  .text-content{ max-width:100%; text-align:center; }
  .slide-content{ justify-content:center; }
}
@media (max-width: 768px){
  .text-content h1{ font-size:2.5rem; }
  .text-content p{ font-size:.95rem; }
  .btn-main{ padding:12px 28px; }
}
