/*welcome animated here*/
/* Basic reset */
html,
body {
  overflow-x: hidden;
}
.swiper {
  width: 100%;
  max-width: 500px;
  height: 450px;
  margin: 0 auto;
}

.swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.swiper-slide:hover {
  transform: scale(1.02);
}
/* 
body,
h1 {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  padding-top: 70px;
} */
.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; /* Ensures the nav stays on top of other content */
}
/* Background container styling */
/* Hero Section */
.background-container {
  position: relative;
  height: 70vh;
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../images/kerodbackground.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.text-overlay h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 0;
  color: #48f484;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 2.5s ease forwards;
}

/* Fade-in animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.Gallery h1 {
  text-align: center;
  color: #095c22;
  font-family: "Times New Roman", Times, serif;
  font-size: 200%;
  padding-top: 1%;
  margin-bottom: 3%;
  margin-top: 3%;
}
.evetext {
  text-align: center;
  color: #095c22;
  font-family: "Times New Roman", Times, serif;
  font-size: 300%;
  padding-top: 1%;
  z-index: 1;
  margin-top: 2%;
}

/* Basic reset */
/* body,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
} */

/* Footer styling */
.social-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  background-color: #095c22;
}

.social-icon {
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #f9f9f9;
  background-color: #0a2211;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icon:hover {
  background-color: #d17a17; /* Change this to your preferred hover color */
  transform: scale(1.1);
}

/* Specific colors for each icon */
.social-icon.facebook:hover {
  background-color: #d17a17;
}

.social-icon.instagram:hover {
  background-color: d17a17;
}

.social-icon.tiktok:hover {
  background-color: #d17a17;
}

.social-icon.youtube:hover {
  background-color: #d17a17;
}

.social-icon.telegram:hover {
  background-color: #d17a17;
}
.image-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 300px; /* Adjust height as needed */
}

.slides {
  display: flex;
  width: 300%; /* Number of slides multiplied by 100% */
  animation: slide 15s infinite;
  overflow: hidden; /* Hide the scrollbar */
}

.slides img {
  width: 100%;
  height: 300px; /* Ensure image height matches slider height */
  object-fit: cover;
}

/* Keyframes for sliding animation */
@keyframes slide {
  0% {
    transform: translateX(0);
  }
  33% {
    transform: translateX(-25%);
  }
  66% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/*nav css*/
/* Basic reset */
body,
ul,
li,
a {
  margin: 0;
  padding: 0;
  max-width: 100vw;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  font-family: Arial, sans-serif;
}

/* Navbar styling */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f9f9f9;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: 50px;
}

/* Logo and text container */
.logo-text-container {
  display: flex;
  align-items: center;
}

/* Logo styling */
.logo-text-container {
  display: flex;
  align-items: center;
  gap: 10px; /* small spacing between logo + brand */
}

.logo {
  width: 60px;
  height: 60px;
}

/* Text next to the logo */
.brand-name {
  font-size: 24px;
  font-weight: bold;
  color: #0c492b;
}

/* Nav list styling */
.nav-list {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  text-align: center;
}

.nav-list li {
  margin: 0 15px;
}

.nav-list a {
  display: block;
  padding: 10px 20px;
  color: #0c492b;
  font-size: 16px;
  font-weight: bold;
  position: relative;
}

/* Underline effect on hover */
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background-color: orange;
  transition: width 0.3s ease;
}

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

/* Hide nav list on smaller screens */
@media (max-width: 900px) {
  .nav-list {
    display: none;
    flex-direction: column;
    background: #f3f7f4;
    position: absolute;
    top: 60px;
    right: 10px;
    width: 200px;
    margin-right: 30px;
    border-radius: 8px;
    padding: 15px;
  }
  /* Show nav list when toggle is active */
  .nav-list.active {
    display: flex;
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #0c492b;
    border-radius: 3px;
  }

  /* Hamburger menu button */
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    margin-right: 30px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
  }
}

@media (max-width: 899px) {
  .navbar {
    width: 100%;
  }
  .menu-toggle {
    display: flex; /* show hamburger on mobile */
  }
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none; /* show hamburger on mobile */
  }
}

/*container for winners*/
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: -60px auto 60px; /* pulls cards slightly into hero */
}
.animated-separator {
  position: relative;
  width: 100%;
  height: 4px;
  background-color: #11ff00;
  overflow: hidden;
  margin: 20px 0;
}

.animated-separator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle,
    rgba(82, 79, 240, 0.5) 20%,
    transparent 70%
  );
  transform: translateX(-50%);
  animation: slide 4s radial infinite;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.card1 {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #48f484;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  margin-top: 5%;
}

.card1:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  border-top-color: #0c492b;
}

.card1 h2 {
  color: #0c492b;
  font-size: 1.5rem;
  margin: 15px 0;
}

.card1 p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
}

.card-icon {
  font-size: 2.8rem;
  color: #48f484;
  margin-bottom: 12px;
}
/*sponsers*/
/* body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
} */

.sponsors-container {
  width: 80%;
  margin: 50px auto;
  text-align: center;
  margin-top: 5%;
}

.partners-headline {
  font-size: 2.5rem;
  color: #095c22;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(
    auto-fit,
    minmax(200px, 1fr)
  ); /* Ensure equal width */
  gap: 20px; /* Consistent spacing between boxes */
  justify-items: center; /* Center content horizontally */
  align-items: stretch; /* Ensure equal height */
}

.sponsor-box {
  background-color: #f9f9f9;
  width: 80%; /* Ensure boxes fill their grid cells */
  height: 80%;
  padding: 20px;
  border-radius: 15px;
  border: 2px solid #ddd;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-box:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.sponsor-logo {
  width: 100%;
  height: auto;
  max-height: 150px;
  object-fit: contain;
  margin-bottom: 15px;
  border-radius: 15px 15px 0 0;
  border-bottom: 5px solid rgba(13, 95, 36, 0.7); /* Green border at the bottom */
}

.sponsor-name {
  font-size: 1rem;
  font-weight: bold;
  color: #d17a17;
  margin: 0;
  text-transform: uppercase;
}

.sponsor-box::before,
.sponsor-box::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px; /* Height of the colored borders */
  top: 0;
}

.sponsor-box::before {
  left: 0;
  background-color: #095c22; /* Green color */
  border-top-left-radius: 15px; /* Round the left side */
}

.sponsor-box::after {
  right: 0;
  background-color: #d17a17; /* Orange color */
  border-top-right-radius: 15px; /* Round the right side */
}
/* Basic Reset */
/* body,
h2,
form,
input,
textarea,
button,
ul,
li,
a {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
} */

/* Main Content */
.main-content {
  padding: 20px;
}

/* Contact Us Background */
/* --- Modern Contact Us Styling --- */
.modern-contact-section {
  padding: 80px 20px;
  background-color: #f9f9f9; /* Brand Background */
  display: flex;
  justify-content: center;
}

.contact-main-container {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Info Side */
.contact-sub {
  color: #48f484; /* Brand Green */
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1.5px;
  font-size: 0.9rem;
}

.contact-title {
  font-size: 2.8rem;
  color: #0c492b; /* Your dark green */
  margin: 10px 0 20px;
}

.text-green { color: #48f484; }

.contact-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateX(10px);
  border-left: 4px solid #48f484;
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: #f0fdf4;
  color: #0c492b;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
}

.contact-text h4 { margin: 0; color: #0c492b; font-size: 1rem; }
.contact-text p { margin: 0; color: #666; font-size: 0.9rem; }

/* Form Side */
.contact-form-panel {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top: 6px solid #48f484; /* Matches your card1 style */
}

.input-row {
  margin-bottom: 20px;
}

.contact-modern-form input, 
.contact-modern-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  background: #fdfdfd;
  font-family: inherit;
  transition: 0.3s;
}

.contact-modern-form input:focus, 
.contact-modern-form textarea:focus {
  outline: none;
  border-color: #48f484;
  box-shadow: 0 0 0 4px rgba(72, 244, 132, 0.1);
}

.contact-submit-btn {
  width: 100%;
  padding: 15px;
  background: #0c492b;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
}

.contact-submit-btn:hover {
  background: #48f484;
  color: #0c492b;
  transform: translateY(-3px);
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .contact-main-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-title { font-size: 2.2rem; }
}
/* Footer Section Styling */
.footer {
  background-color: #0c492b;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  width: 50px;
  height: 50px;
}

.footer-brand-name {
  font-size: 24px;
  font-weight: bold;
}

.footer-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #ff7e00;
}

.footer-social a {
  color: #fff;
  font-size: 18px;
  margin: 0 10px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #ff7e00;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 14px;
  color: #bbb;
}

.footer-bottom p {
  margin: 0;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

/*upcoming banner */
/* Basic Reset
body,
h1,
h2,
p,
form,
input,
textarea,
button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
} */

/* Event Container */
/* Event Container */
.event-container {
  display: flex;
  align-items: center;
  gap: 30px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.event-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

/* Banner Image */
.banner-image {
  flex: 1;
}

.banner-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Event Details */
.event-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #222;
  padding: 10px;
}

.event-details h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0c492b;
  margin-bottom: 20px;
  border-left: 6px solid #3fb77a;
  padding-left: 12px;
}

.event-details p {
  margin-bottom: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.event-details span {
  font-weight: 600;
  color: #145c38;
}

/* Button */
.event-details .register-btn {
  margin-top: 25px;
  background: linear-gradient(135deg, #0c492b, #3fb77a);
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(20, 92, 56, 0.25);
}

.event-details .register-btn:hover {
  background: linear-gradient(135deg, #145c38, #4fd08a);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(20, 92, 56, 0.35);
}

/* Responsive */
@media (max-width: 900px) {
  .event-container {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .banner-image {
    margin-bottom: 20px;
  }

  .event-details h2 {
    font-size: 1.6rem;
    text-align: center;
    border-left: none;
    padding-left: 0;
  }
}

/* Registration Form Pop-Up */
.form-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.form-popup-content {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  position: relative;
}

.form-popup-content h2 {
  margin-bottom: 15px;
  color: #095c22;
}

.form-popup-content label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

.form-popup-content input,
.form-popup-content textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.form-popup-content button {
  background-color: #095c22;
  color: #f9f9f9;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.form-popup-content button:hover {
  background-color: #074d1d;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  color: #095c22;
}

/* Basic Reset */

/* Events Section */

.timeline {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #0c492b, #145c38, #f0fdf4);
  color: #0c492b;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 70px;
  padding: 50px 20px;
  flex-wrap: wrap;
}

.left-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 300px;
  animation: slideInLeft 1s ease;
}

.texting {
  text-align: left;
  margin-bottom: 20px;
  margin-top: 20px;
}

.texting h1 {
  font-size: 48px;
  color: #fff;
  margin: 0;
  font-weight: 700;
  border-left: 6px solid #ff5c5c;
  padding-left: 10px;
}

.parafin {
  margin-top: 20px;
}

.side-text {
  font-size: 1.2em;
  color: #fff;
  line-height: 1.6;
}

/* Right Section: Swiper Cards */
.sizings {
  flex-grow: 1;
  max-width: 700px;
  padding: 20px;
  animation: slideInRight 1s ease;
}

.swiper-container {
  margin-top: 20px;
}

/* Card Styles */
.card {
  background: #ffffff; /* clean white for readability */
  border-radius: 16px;
  padding: 1.5rem;
  margin: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); /* soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 1rem; /* smooth rounded corners */
  border: 1px solid rgba(12, 73, 43, 0.1); /* subtle green tint */
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 24px;
  margin: 0 0 15px 0;
  font-weight: 600;
  line-height: 1.3;
}
.card p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  flex-grow: 1;
}
.card-text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  /* .timeline {
    flex-direction: column;
    align-items: center;
  } */

  .left-section {
    max-width: 100%; /* Full width on smaller screens */
    margin-left: 0; /* Remove left margin */
    align-items: center; /* Center text in left section */
  }

  .texting h1 {
    font-size: 36px; /* Reduce font size for smaller screens */
  }

  .side-text {
    font-size: 1em; /* Adjust font size for readability */
    text-align: center; /* Center align side text */
  }

  .sizings {
    max-width: 100%; /* Full width on smaller screens */
  }
}

@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .left-section {
    align-items: center;
    max-width: 100%;
  }
  .texting h1 {
    font-size: 36px;
  }
}
/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Parallax sections with improved spacing and best practices */
.parallex {
  position: relative;
  min-height: 60vh;
  margin: 0;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/galleryim2.jpg");
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
  animation: fadeIn 2s ease-in;
}

.parallex2 {
  position: relative;
  min-height: 40vh;
  margin: 0;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("../images/galleryim2.jpg");
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallex3 {
  position: relative;
  min-height: 35vh;
  margin: 0;
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url("../images/galleryim2.jpg");
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Fallback for mobile devices where background-attachment: fixed doesn't work well */
@media (max-width: 768px) {
  .parallex,
  .parallex2,
  .parallex3 {
    background-attachment: scroll;
    min-height: 40vh;
  }
}

/* Content overlay for parallax sections */
.parallax-content {
  text-align: center;
  color: white;
  z-index: 2;
  padding: 40px 20px;
}

.parallax-content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.parallax-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
/* event section end */
.prizes {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0c492b, #1e7d48, #3fb77a);
}

.prize-title {
  font-size: 2.8rem;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 1px;
}

.prize-cards {
  margin: 0 auto;
  width: 65%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
}

/* Base Card Style */
.prize-card {
  text-align: center;
  border-radius: 18px;
  padding: 25px 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prize-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Prize Content */
.rank-number {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.rank-desc {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #145c38;
}

.prize1,
.prize2,
.prize3,
.prize4,
.prize5,
.prize6 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #22774e;
}

/* Color Themes */
.rank1 {
  background: linear-gradient(135deg, #fef9c3, #128a1e); /* soft gold */
}

.rank2 {
  background: linear-gradient(135deg, #f1f5f9, #9ba1a9); /* silver-gray */
}

.rank3 {
  background: linear-gradient(135deg, #fdf2e9, #348417); /* bronze-orange */
}

.rank4 {
  background: linear-gradient(135deg, #ecfdf5, #138859); /* mint green */
}

.rank5 {
  background: linear-gradient(135deg, #f0fdf4, #65ae80); /* soft green */
}

.rank6 {
  background: linear-gradient(135deg, #f8fafc, #95a695); /* neutral gray */
}
