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

body {
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
  color: #222;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  height: 100vh;
    background: url('kohli_bg.jpg') no-repeat center center/cover;
  animation: gradientBG 10s ease infinite;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.glow {
  font-size: 4rem;
  text-transform: uppercase;
  animation: glowPulse 2s ease-in-out infinite;
}

.tagline {
  font-size: 1.5rem;
  margin-top: 1rem;
}

/* Stats Section */
.stats {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.stats h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: #f5f5f5;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s, background 0.3s;
}

.stat-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #eb4d4b;
}

.stat-card p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.stat-card span {
  font-weight: bold;
  font-size: 1.5rem;
  color: #0a3d62;
}

.stat-card:hover {
  transform: scale(1.05);
  background: #ffd6ba;
}

/* Gallery Section */
.gallery {
  padding: 4rem 2rem;
  background: #fff8f0;
  text-align: center;
}

.gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.slider {
  position: relative;
  width: 80%;
  margin: auto;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.slides {
  display: flex;
  width: 400%;
  transition: transform 0.8s ease;
}

.slides img {
  width: 100%;
  border-radius: 15px;
}

/* Hide radio buttons */
input[type="radio"] {
  display: none;
}

/* Navigation dots */
.navigation {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.navigation label {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background: #ccc;
  margin: 0 5px;
  cursor: pointer;
  transition: 0.3s;
}

.navigation label:hover {
  background: #eb4d4b;
}

/* Slide functionality */
#img1:checked ~ .slides { transform: translateX(0%); }
#img2:checked ~ .slides { transform: translateX(-100%); }
#img3:checked ~ .slides { transform: translateX(-200%); }
#img4:checked ~ .slides { transform: translateX(-300%); }

#img1:checked ~ .navigation label[for=img1],
#img2:checked ~ .navigation label[for=img2],
#img3:checked ~ .navigation label[for=img3],
#img4:checked ~ .navigation label[for=img4] {
  background: #eb4d4b;
}

/* Thank You Section */
.thank-you {
  padding: 4rem 2rem;
  background: linear-gradient(120deg, #fff0f5, #ffe4e1);
  text-align: center;
}

.thank-you h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #eb4d4b;
}

.note {
  font-size: 1.4rem;
  font-family: 'Dancing Script', cursive;
  color: #6b4f4f;
  line-height: 2rem;
  animation: fadeIn 3s ease-in-out;
}

/* Footer */
footer {
  background: #0a3d62;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 3rem;
}

/* Animations */
@keyframes gradientBG {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 5px #fff, 0 0 10px #ff0; }
  50% { text-shadow: 0 0 20px #fff, 0 0 40px #f9ca24; }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
