body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #0f172a;
    color: white;
  }
  
  header {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
  }
  
  header h1 {
    font-family: 'Poppins', sans-serif;
    color: #38bdf8;
  }
  
  nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
  }
  nav a:hover, nav a.active {
    color: #f43f5e;
  }
  
  .hero, .page-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(120deg, #0f172a, #1e293b);
    padding: 20px;
  }
  .hero h2, .page-hero h2 {
    font-size: 8rem;
    color: #15ff00;
    font-weight: bold;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  }
  .typing {
    color: #ec830a;
    font-family: 'Poppins', sans-serif;
    font-size: 5rem;
  }
  
  .events {
    padding: 100px 50px;
    display: flex;
    justify-content: space-around;
    gap: 30px;
    margin-top: -50px;
  }
  .card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
  }
  .card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 20px #38bdf8;
  }
  .card h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    color: #38bdf8;
  }
  
  .content {
    padding: 50px;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background: #1e293b;
    margin-top: 50px;
  }
  


  .hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url("img.jpg") no-repeat center center/cover;
    color: white;
    position: relative;
  }
  
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
  }
  
  .hero div {
    position: relative; 
    z-index: 1;
  }
  
  .page-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url("img2.jpg") no-repeat center center/cover;
    color: white;
    position: relative;
  }
  
  .page-hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5); 
  }
  
  .page-hero h2, .page-hero p {
    position: relative;
    z-index: 1;
  }
  

.slider {
  position: relative;
  max-width: 900px;
  margin: 50px auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.5);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}


.slide {
  min-width: 100%;
  box-sizing: border-box;
}
.slide img {
  width: 100%;
  border-radius: 15px;
}


.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 15px;
  font-size: 24px;
  color: white;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  transition: 0.3s;
  user-select: none;
}
.prev:hover, .next:hover {
  background: rgba(0,0,0,0.8);
}
.prev { left: 10px; }
.next { right: 10px; }


.slider {
  position: relative;
  width: 600px;
  height: 400px;
  overflow: hidden;
  margin: auto;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  transition: 0.3s ease;
  user-select: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.slider {
  position: relative;
  max-width: 800px;
  margin: auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 16px;
  cursor: pointer;
  font-size: 24px;
  border: none;
  user-select: none;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 0;
}

.next {
  right: 0;
}