/*  Rest & base  */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Segoe UI', sans-serif;
    background: #0a0a0a;
    color: white;
}

/* Navbar */

.navbar{
    position: fixed;
    z-index: 1000;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    
}

.logo{
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00d4ff;
}

/* ===== HERO SLIDER ===== */

.hero {
  width: 100%;
  height: 100vh;
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}

/* ===== SLIDE CONTENT ===== */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 700px;
}

.slide-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 30px;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  padding: 12px 35px;
  background: #00d4ff;
  color: #000;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* ===== SWIPER ARROWS & DOTS ===== */
.swiper-button-next,
.swiper-button-prev {
  color: #00d4ff !important;
}

.swiper-pagination-bullet-active {
  background: #00d4ff !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    gap: 15px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .slide-content p {
    font-size: 0.9rem;
  }

  .btn {
    padding: 10px 25px;
  }
}

