body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a0d2e 50%, #2d1b4e 100%);
  color: white;
  font-family: Arial, sans-serif;
  min-height: 100vh;
}
.navbar {
  background-color: rgba(44, 14, 99, 0.9);
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px solid #6c5ce7;
}
.logo {
  margin-bottom: 15px;
  height: 80px;
  max-width: 300px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
}
.nav-links a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 14px;
}
.nav-links a:hover {
  color: #ff6b9d;
}
.register-btn {
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 0;
  font-weight: bold;
  margin-left: 20px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  transform: skewX(-15deg);
  position: relative;
  overflow: hidden;
}
.register-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #0891b2 100%);
  transform: skewX(-15deg) translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}
.register-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.register-btn:hover::before {
  left: 100%;
}
.hero {
  text-align: center;
  padding: 60px 20px;
  background-image: url("Web_Images/hero_bg.png"), url("Web_Images/bg.jpg");
  background-size: contain, cover;
  background-position: center, center;
  background-repeat: no-repeat, no-repeat;
  position: relative;
  border-bottom: 2px solid #6c5ce7;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-subtitle {
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif; 
  color: hsl(0, 0%, 96%);
  font-size: 16px;
  font-weight: bold;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
}
.hero-subtitle:hover {
  color: #29dbfa;
}
.hero h1 {
  font-family: 'Rajdhani', 'Exo 2', 'Orbitron', 'Roboto Condensed', sans-serif;
  font-size: 50px;
  margin: 20px 0;
  color: white;
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5), 2px 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.hero h1:hover {
  color: #29dbfa;
}
.hero-btn {
   background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 0;
  font-weight: bold;
  margin-left: 20px;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
  transition: all 0.3s ease;
  transform: skewX(-15deg);
  position: relative;
  overflow: hidden;
}
.hero-btn:hover {
  background: linear-gradient(135deg, #7c3aed 0%, #0891b2 100%);
  transform: skewX(-15deg) translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}
.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.hero-btn:hover::before {
  left: 100%;
}
.hero-image {
  position: absolute;
  bottom: 0;
  right: 50px;
  height: 100%;
  width: auto;
  object-fit: contain;
  z-index: 1;
}
.events {
  padding: 60px 20px;
  background-color: rgba(45, 27, 78, 0.8);
  background-image: url('Web_Images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.events h2 {
  font-family: 'Rajdhani', 'Exo 2', 'Orbitron', 'Roboto Condensed', sans-serif;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 40px;
  color: #06b6d4;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.events-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  color: #2d1b4e;
}
.event-card {
  background-color: rgba(45, 27, 78, 0.8);
  padding: 25px;
  border-radius: 15px;
  width: 180px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-card:hover {
  border-color: #6c5ce7;
  background-color: rgba(45, 27, 78, 1);
}
.event-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
  object-fit: contain;
}
.event-card h3 {
  color: white;
  font-size: 16px;
  margin: 15px 0;
  font-weight: bold;
  text-align: center;
}
.event-card button {
  background-color: #340b81;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 15px;
  cursor: pointer;
  font-weight: bold;
  font-size: 12px;
  margin-top: auto;
}
.event-card button:hover {
  background-color: #351bc5;
}
.timeline {
  padding: 60px 20px;
  text-align: center;
  background-color: rgba(45, 27, 78, 0.8);
  background-image: url('Web_Images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.timeline h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #6c5ce7;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.timeline-item {
  background-color: rgba(67, 25, 146, 0.6);
  margin: 20px auto;
  padding: 25px;
  border-radius: 15px;
  max-width: 400px;
  border-left: 4px solid #ff6b9d;
}
.date {
  font-size: 20px;
  color: #87a3dc;
  font-weight: bold;
  margin-bottom: 10px;
}
.event-name {
  font-size: 16px;
  color: white;
  font-weight: bold;
}