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

    body {
      font-family: 'Poppins', sans-serif;
      color: #1e293b;
      background: #f8fafc;
      line-height: 1.6;
    }

    .container {
      width: 90%;
      max-width: 1400px;
      margin: auto;
    }
    
    /* ================= HEADER ================= */
    .header {
      position: fixed;
      top: 0;
      width: 100%;
      height: 80px;
      background: #0f172a;
      z-index: 1000;
    }

    .header-inner {
      height: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo img {
      height: 45px;
      width: auto;
    }

    .nav {
      display: flex;
      gap: 30px;
      align-items: center;
      letter-spacing: 0.5px;
    }

    .nav a {
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      position: relative;
      transition: 0.3s ease;
    }

    .nav a:hover {
      opacity: 0.7;
    }
    
    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0%;
      height: 2px;
      background: #ffffff;
      transition: 0.3s ease;
    }

    .nav a:hover::after {
      width: 100%;
    }

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

    .events-hero {
      background: linear-gradient(135deg, #0f172a, #1e293b);
      color: #fff;
      text-align: center;
      padding: 90px 20px;
    }

    .events-hero h1 {
      font-size: 40px;
      margin-bottom: 15px;
    }

    .events-hero p {
      font-size: 18px;
      opacity: 0.9;
    }

    /* ================= EVENTS SECTION ================= */

    .events-section {
      padding: 100px 0;
      background: linear-gradient(to bottom, #f8fafc, #ffffff);
    }

    .section-title {
      font-size: 28px;
      font-weight: 600;
      text-align: center;
      margin-bottom: 60px;
    }

    .events-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }

    .event-card {
      background: #ffffff;
      padding: 45px 35px;
      border-radius: 22px;
      box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
      transition: 0.3s ease;
    }

    .event-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
    }

    .event-card h2 {
      font-size: 22px;
      margin-bottom: 15px;
      color: #0f172a;
    }

    .event-card p {
      font-size: 14px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 25px;
    }

    .event-btn {
      display: inline-block;
      padding: 12px 26px;
      background: #0f172a;
      color: #ffffff;
      text-decoration: none;
      border-radius: 30px;
      font-size: 14px;
      transition: 0.3s ease;
    }

    .event-btn:hover {
      background: #1e293b;
      transform: translateY(-3px);
    }

    /* ================= FOOTER ================= */

    footer {
      background: #0f172a;
      color: white;
      text-align: center;
      padding: 25px 0;
      font-size: 14px;
    }

    /* ================= MOBILE ================= */

    .hamburger {
      display: none;
      font-size: 26px;
      color: #fff;
      cursor: pointer;
    }

    @media(max-width:768px) {

      .hamburger {
        display: block;
      }

      .nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0f172a;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        display: none;
        z-index: 2000; 
      }

      .nav.active {
        display: flex;
      }

      .events-hero h1 {
        font-size: 28px;
      }
      /* ===== MOBILE SLIDER ARROW FIX ===== */

.slider-arrow {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

/* Left arrow */
.slider-arrow.prev {
  left: 8px;        /* move slightly inside */
}

/* Right arrow */
.slider-arrow.next {
  right: 8px;       /* move slightly inside */
}

/* Perfect vertical centering */
.slider-arrow {
  top: 90%;
  transform: translateY(-50%);
}

    }