 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", Arial, sans-serif;
    }

    body {
      background: #000;
      color: #fff;
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    h1, h2, h3 {
      font-weight: 600;
    }

    /* ================= HERO SLIDER ================= */
    .hero {
      height: 100vh;
      overflow: hidden;
      position: relative;
    }

    .slider {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
      position: absolute;
      inset: 0;
      transform: translateX(100%);
      transition: transform 1s ease-in-out;
    }

    .slide.active {
      transform: translateX(0);
      z-index: 2;
    }

    .slide.exit {
      transform: translateX(-100%);
      z-index: 1;
    }

    .slide img {
      width: 100%;
      height: 139%;
      object-fit: cover;
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,0,0,.6), rgba(0,0,0,.2));
    }

    figcaption {
      position: absolute;
      bottom: 18%;
      left: 8%;
      z-index: 3;
      max-width: 600px;
    }

    figcaption h1 {
      font-size: 72px;
      letter-spacing: 6px;
      color: #7ddcff;
    }

    figcaption p {
      font-size: 18px;
      margin-top: 10px;
      opacity: .9;
    }

    /* ================= MAIN SECTIONS ================= */
    main {
      background: #000;
    }

    section {
      padding: 80px 8%;
    }

    section h2 {
      font-size: 36px;
      margin-bottom: 20px;
      color: #7ddcff;
    }


/* ================= ABOUT – MODERN STACK STYLE ================= */

.about {
  padding: 110px 8%;
  background: linear-gradient(180deg, #050505, #000);
  text-align: center;
}

/* HEADING */
.about h2 {
  font-size: 44px;
  margin-bottom: 40px;
  color: #7ddcff;
  letter-spacing: 3px;
  position: relative;
}

.about h2::after {
  content: "";
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #7ddcff, #5aa9ff);
  display: block;
  margin: 18px auto 0;
  border-radius: 20px;
}

/* IMAGE */
.about figure {
  margin: 0 auto 50px;
  max-width: 900px;
}

.about img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 
    0 30px 90px rgba(0,0,0,0.8),
    0 0 0 1px rgba(255,255,255,0.06);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about img:hover {
  transform: scale(1.03);
  box-shadow: 0 40px 120px rgba(125,220,255,0.28);
}

/* TEXT */
.about p {
  max-width: 760px;
  margin: auto;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.05);
  padding: 36px 44px;
  border-radius: 22px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 25px 70px rgba(0,0,0,0.65);
}

/* MOBILE */
@media (max-width: 768px) {
  .about {
    padding: 80px 6%;
  }

  .about h2 {
    font-size: 32px;
  }

  .about img {
    height: 260px;
    border-radius: 18px;
  }

  .about p {
    font-size: 16px;
    padding: 28px 24px;
  }
}

    /* ================= CLASSES ================= */
    .class-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .class-card {
      background: #111;
      padding: 20px;
      border-radius: 16px;
      transition: transform .3s;
    }

    .class-card:hover {
      transform: translateY(-8px);
    }

    .class-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
      margin-bottom: 15px;
    }

    .class-card h3 {
      margin-bottom: 10px;
      color: #7ddcff;
    }

/* ================= EVENTS SECTION ================= */

.events {
  padding: 80px 20px;
  background: #090909;
  color: #fff;
}

/* title */
.events h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* container */
.event-content {
  max-width: 1000px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 40px;

  background: #141414;
  padding: 30px;
  border-radius: 14px;

  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}

/* ================= IMAGE ================= */

.event-image {
  flex: 1;
  overflow: hidden; /* crop zoom */
  border-radius: 12px;
}

.event-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;

  border-radius: 12px;
  transition: transform 0.4s ease;
}

/* zoom effect */
.event-image:hover img {
  transform: scale(1.1);
}


/* ================= TEXT ================= */

.event-text {
  flex: 1;
}

.event-text p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {

  .event-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .event-image img {
    height: 220px;
  }

}


    /* ================= FOOTER ================= */
    .site-footer {
      background: #0b0b0b;
      padding: 60px 8%;
      text-align: center;
    }

    .site-footer h2 {
      margin-bottom: 20px;
    }

    address p {
      font-style: normal;
      opacity: .9;
      margin-bottom: 6px;
    }

    .copyright {
      margin-top: 25px;
      font-size: 14px;
      opacity: .6;
    }


/* ================= SOCIAL CONTACT BUTTONS ================= */

.social-contact {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.contact-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  border-radius: 40px;
  font-weight: 600;
  transition: 0.3s ease;
  color: #000;
}

.contact-btn img {
  width: 26px;
  height: 26px;
}

/* Colors */
.contact-btn.whatsapp {
  background: #25D366;
}

.contact-btn.instagram {
  background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff;
}

.contact-btn.email {
  background: #7ddcff;
}

/* Hover */
.contact-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}


    /* ================= RESPONSIVE ================= */
    @media (max-width: 768px) {
      figcaption h1 {
        font-size: 46px;
      }

      .hero-content {
        position: static;
        margin: 20px;
      }
    }

/* ================= ULTRA MODERN NAVBAR ================= */

html {
  scroll-behavior: smooth;
}

/* NAVBAR WRAPPER */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: rgba(6, 6, 6, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s ease;
}

/* NAVBAR ON SCROLL (Optional JS hook) */
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.85);
  padding: 12px 8%;
}

/* LOGO */
.logo img {
  height: 64px;
  width: auto;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.logo img:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 6px 18px rgba(125, 220, 255, 0.35));
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 42px;
}

.nav-links a {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 6px 0;
  transition: all 0.3s ease;
}

/* Gradient underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7ddcff, #5aa9ff);
  border-radius: 10px;
  transform: translateX(-50%);
  transition: width 0.35s ease;
}

/* Hover */
.nav-links a:hover {
  color: #ffffff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ACTIVE LINK */
.nav-links a.active {
  color: #7ddcff;
}

.nav-links a.active::after {
  width: 100%;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .navbar {
    padding: 14px 6%;
  }

  .nav-links {
    display: none;
  }
}