/* ========== BASE ========== */
body {
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: #fff;
  scroll-behavior: smooth;
}

.section {
  padding: 80px 20px;
}

.section-title span {
  color: red;
}

.btn-danger, .btn-primary {
  border-radius: 8px;
  padding: 10px 20px;
}



/* ========== NAVBAR ========== */
.header {
  background: rgba(0, 0, 0, .9);
  padding: 12px 0;
}

.logo span {
  color: red;
  font-weight: bold;
}

.nav-menu li {
  list-style: none;
  margin: 0 15px;
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.nav-menu a:hover {
  color: red;
}


/* ========== HERO ========== */
.hero {
  background: url('banner.jpg') center/cover no-repeat;
  height: 100vh;
  text-shadow: 2px 2px 8px #000;
}

.title {
  font-size: 48px;
  font-weight: 700;
}

.subtitle{
    font-size:22px;
}

.title span {
  color: red;
}

.btn-cta {
  background: red;
  color: white;
  padding: 14px 28px;
  font-size: 22px;
  border-radius: 10px;
  text-decoration: none;
  transition: .3s;
}

.btn-cta:hover {
  background: #b30000;
  transform: scale(1.05);
}


/* ========== FEATURES ========== */
.feature-box {
  background: #1a1a1a;
  padding: 30px;
  border-radius: 12px;
  transition: .4s;
}

.feature-box i {
  font-size: 40px;
  color: red;
  margin-bottom: 10px;
}

.feature-box:hover {
  transform: scale(1.05);
}


/* ========== PRICING ========== */
.price-card {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 14px;
  transition: .4s;
}

.price-card h2 {
  color: red;
  font-size: 32px;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.best {
  border: 2px solid red;
}

.badge {
  background: red;
  padding: 5px 10px;
  border-radius: 5px;
}


/* ========== CLASSES ========== */
.class-box {
  background: #222;
  padding: 25px;
  border-radius: 12px;
  transition: .4s;
}

.class-box i {
  font-size: 45px;
  color: red;
}

.class-box:hover {
  transform: scale(1.05);
}


/* ========== FOOTER ========== */
.footer {
  background: #000;
  font-size: 14px;
  color: gray;
}

/* Social Icons Footer */
.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 28px;
  transition: .3s;
}

.social-icons a:hover {
  color: red;
  transform: scale(1.2);
}


/* Floating WhatsApp Button */
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  transition: .3s;
}

.wa-float:hover {
  transform: scale(1.15);
  background: #20b558;
}
