:root {
  --primary-saffron: #e65100;
  --royal-blue: #1297e4;
  --golden-yellow: #ffb300;
  --cream-base: #fffdf7;
  --dark-text: #2c3e50;
  --steel-dark: #686c6e; /* Secondary Dark */
  --footer-bg: #1a1a1a; /* Deep Neutral */
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #444;
}

/* Top Bar */
.top-bar {
  background-color: var(--primary-saffron);
  color: white;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 500;
}

.top-bar a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}

.top-bar a:hover {
  opacity: 0.8;
}

/* Navbar */
.navbar {
  background-color: white !important;
  padding: 10px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.brand-container {
  display: flex;
  align-items: center;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-text);
  letter-spacing: 0.5px;
}

.brand-sub {
  font-size: 22px;
  color: var(--royal-saffron);
  font-weight: 700;
  letter-spacing: 1px;
}

/* Nav Links */
.nav-link {
  color: var(--dark-text) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 15px !important;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary-saffron) !important;
}

/* Aligning FA icons in navigation */
.nav-link i {
  font-size: 14px;
  vertical-align: middle;
}

/* Dropdown Icon Colors & Spacing */
.dropdown-item i {
  width: 20px; /* Ensures icons align vertically in a straight line */
  text-align: center;
}

/* Keep the dropdown visible slightly longer for better UX */
.dropdown:hover > .dropdown-menu {
  display: block;
  margin-top: 0; /* Smooth transition */
}

/* Hover effect for dropdown items to change icon color */
.dropdown-item:hover i {
  color: var(--royal-saffron) !important;
}

/* Booking Button */
.btn-book {
  background-color: var(--royal-blue);
  color: white !important;
  border-radius: 50px;
  padding: 10px 25px !important;
  margin-left: 10px;
  box-shadow: 0 4px 6px rgba(255, 111, 0, 0.2);
}

.btn-book:hover {
  background-color: #000;
  transform: translateY(-1px);
}

/* --- Attractive Social Icons --- */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-left: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icons a:hover {
  background: #fff;
  color: var(--primary-saffron) !important;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* --- Navbar Menu Hover Effect (Underline) --- */
.navbar-nav .nav-link {
  position: relative;
  padding: 10px 15px;
}

/* Create the animated line */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 15px;
  background-color: var(--primary-saffron);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: calc(100% - 30px);
}

/* Remove underline from the Booking Button */
.navbar-nav .btn-book::after {
  display: none;
}

/* --- Dropdown Customization --- */
.dropdown-menu {
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 10px !important;
  animation: fadeInUp 0.3s ease-in-out;
}

.dropdown-item {
  font-weight: 500;
  padding: 8px 20px;
  font-size: 14px;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: var(--cream-base);
  color: var(--royal-saffron);
  padding-left: 25px; /* Slight slide effect on hover */
}

/* Home Main Page Carousel Section Styles */
.hero-carousel-section {
  padding: 0;
  margin: 0;
  background-color: var(--footer-bg);
}

#rjkCarousel {
  width: 100%;
  max-height: 768px; /* Adjust height as needed */
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 768px;
  object-fit: cover; /* Ensures images fill the area without distortion */
  filter: brightness(0.9); /* Subtle darkening for a premium feel */
}

/* Customizing Navigation Arrows to match your brand */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--royal-blue);
  border-radius: 50%;
  padding: 20px;
  background-size: 50% 50%;
}

.carousel-control-next-icon {
  background-color: var(--primary-saffron); /* Saffron on the right */
}

/* Indicators (Dots at the bottom) */
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--golden-yellow);
  border: 2px solid white;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .carousel-item img {
    height: 350px;
  }
}

/* Homae Page About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--cream-base);
}

.section-tag {
  color: var(--primary-saffron);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.about-title {
  color: var(--dark-text);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.about-title span {
  color: var(--royal-blue);
}

.highlight-box {
  border-left: 5px solid var(--golden-yellow);
  padding: 15px 25px;
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  border-radius: 0 8px 8px 0;
}

.reg-date {
  font-weight: 600;
  color: var(--primary-saffron);
}

.about-text {
  line-height: 1.8;
  color: var(--steel-dark);
}

.img-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.img-container img {
  width: 100% !important;
}
.experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--royal-blue);
  color: white;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
}

/* Leadership Members Section Specific Styles */
.leadership-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.leader-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  height: 100%;
}

.leader-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.leader-img-wrapper {
  padding: 30px 30px 10px 30px;
}

.leader-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--cream-base);
  outline: 2px solid var(--royal-blue);
  margin: 0 auto;
}

.leader-name {
  color: var(--dark-text);
  font-weight: 700;
  font-size: 1.25rem;
  margin-top: 15px;
  margin-bottom: 5px;
}

.leader-designation {
  color: var(--royal-blue);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-divider {
  width: 40px;
  height: 3px;
  background: var(--golden-yellow);
  margin: 15px auto;
}

.leadership-intro {
  max-width: 700px;
  margin: 0 auto 50px auto;
  color: var(--steel-dark);
  line-height: 1.7;
}

/* Goals Section Specific Styles */
.goals-section {
  padding: 100px 0;
  background-color: var(--cream-base);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background element */
.goals-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(230, 81, 0, 0.05) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  border-radius: 50%;
}

.goal-card {
  background: #ffffff;
  border: none;
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-bottom: 5px solid transparent;
}

.goal-card:hover {
  transform: translateY(-12px);
  border-bottom: 5px solid var(--primary-saffron);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.goal-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
}

.icon-sports {
  background: rgba(230, 81, 0, 0.1);
  color: var(--primary-saffron);
}
.icon-training {
  background: rgba(18, 151, 228, 0.1);
  color: var(--royal-blue);
}
.icon-unity {
  background: rgba(255, 179, 0, 0.1);
  color: var(--golden-yellow);
}

.goal-card h4 {
  color: var(--dark-text);
  font-weight: 700;
  margin-bottom: 15px;
}

.goal-card p {
  color: var(--steel-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.main-goal-text {
  max-width: 800px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  color: var(--dark-text);
  line-height: 1.8;
}

/* Event Section Specific Styles */
.event-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, var(--cream-base) 100%);
}

.event-badge {
  background-color: var(--primary-saffron);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

/* Info Sidebar */
.info-list {
  list-style: none;
  padding: 0;
}

.info-item {
  display: flex;
  align-items: center;
  background: white;
  margin-bottom: 12px;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border-left: 4px solid var(--royal-blue);
}

.info-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  width: 40px;
  text-align: center;
}

.info-text {
  font-weight: 600;
  color: var(--dark-text);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

/* Audience Section */
.audience-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 15px;
  padding: 25px;
  height: 100%;
  transition: 0.3s;
}

.audience-card:hover {
  border-color: var(--golden-yellow);
  background-color: var(--cream-base);
}

.audience-title {
  color: var(--royal-blue);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-tag {
  background: #f0f2f5;
  color: var(--steel-dark);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid transparent;
}

.govt-tag {
  background: rgba(18, 151, 228, 0.1);
  color: var(--royal-blue);
  border-color: rgba(18, 151, 228, 0.2);
}

/* Tournament Section Styles */
.tournament-section {
  padding: 100px 0;
  background-color: #ffffff;
}

.flow-container {
  position: relative;
  padding-left: 20px;
}

/* Vertical Line for Timeline */
.flow-container::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary-saffron),
    var(--royal-blue)
  );
}

.flow-step {
  position: relative;
  margin-bottom: 30px;
  padding-left: 30px;
}

.flow-step::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: white;
  border: 3px solid var(--royal-blue);
  border-radius: 50%;
}

.flow-number {
  font-weight: 700;
  color: var(--royal-blue);
  margin-right: 10px;
}

.flow-content {
  color: var(--steel-dark);
  font-size: 1rem;
}

/* Prize Cards */
.prize-card {
  text-align: center;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  transition: 0.3s;
  border: 1px solid #eee;
  height: 100%;
}

.prize-card.gold {
  border-top: 5px solid var(--golden-yellow);
  background: var(--cream-base);
}
.prize-card.silver {
  border-top: 5px solid #c0c0c0;
}
.prize-card.bronze {
  border-top: 5px solid #cd7f32;
}

.prize-icon {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.prize-title {
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.prize-detail {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
}

/* Promotion Section Styles */
.promo-section {
  padding: 100px 0;
  background-color: var(--cream-base);
}

.promo-card {
  background: #ffffff;
  border: none;
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.promo-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 4px;
  height: 100%;
  background: var(--golden-yellow);
}

.promo-icon-circle {
  width: 55px;
  height: 55px;
  background: rgba(18, 151, 228, 0.1); /* Royal Blue Light */
  color: var(--royal-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.promo-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.promo-desc {
  font-size: 0.9rem;
  color: var(--steel-dark);
  line-height: 1.6;
  margin-bottom: 0;
}

.festive-banner {
  background: linear-gradient(
    90deg,
    var(--primary-saffron),
    var(--golden-yellow)
  );
  color: white;
  padding: 30px;
  border-radius: 20px;
  margin-top: 50px;
  box-shadow: 0 15px 30px rgba(230, 81, 0, 0.2);
}

/* Countdown Section */

.countdown-section {
  background: linear-gradient(135deg, #0f172a, #1e293b);
}

.time-box {
  background: #ffffff10;
  padding: 25px;
  border-radius: 10px;
  margin: 10px;
  backdrop-filter: blur(5px);
}

.time-box h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-saffron);
}

.time-box p {
  margin: 0;
  font-size: 16px;
}

/* footer section */
.common-hero {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  background-image: url("images/common-bg.jpg"); /* Replace per page */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Parallax effect */
  overflow: hidden;
}

/* Gradient Overlay for Text Readability */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(26, 26, 26, 0.8) 0%,
    rgba(26, 26, 26, 0.4) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10%;
}

/* Breadcrumb Styling */
.breadcrumb-nav {
  margin-bottom: 20px;
}

.breadcrumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumbs li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.8;
  transition: 0.3s;
}

.breadcrumbs li a:hover {
  color: var(--primary-saffron);
  opacity: 1;
}

.separator {
  color: var(--golden-yellow);
  font-size: 0.8rem;
}

.active-page {
  color: var(--primary-saffron);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Registration form */
.form-container {
  background: #ffffff;
  border-top: 8px solid var(--primary-saffron);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 40px;
  max-width: 800px;
  margin: auto;
}

.header-section {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #eee;
  padding-bottom: 20px;
}

h2 {
  color: var(--primary-saffron);
  font-weight: 600;
}
h5 {
  color: var(--royal-blue);
  margin-bottom: 0;
}

.form-label {
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 15px;
}

.btn-submit {
  background-color: var(--royal-blue);
  color: white;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
  margin-top: 30px;
}

.btn-submit:hover {
  background-color: var(--primary-saffron);
  color: white;
}

.form-check-input:checked {
  background-color: var(--primary-saffron);
  border-color: var(--primary-saffron);
}

.section-title {
  background-color: #f8f9fa;
  padding: 8px 15px;
  border-left: 5px solid var(--golden-yellow);
  margin: 25px 0 15px 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact page CSS */
/* ================= INFO CARDS ================= */
.info-box {
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s;
  border: 1px solid #f1f5f9;
}
.info-box:hover {
  transform: translateY(-5px);
  border-color: var(--golden-yellow);
}
.icon-circle {
  width: 60px;
  height: 60px;
  background: var(--golden-yellow);
  color: var(--footer-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* Photo Gallery */
.gallery-title {
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

/* Image Hover Effects */
.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.gallery-item:hover {
  transform: scale(1.03);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

/* Modal Image Styling */
#gallery-modal .modal-body {
  padding: 0;
}
#full-image {
  width: 100%;
  border-radius: 0;
}
/* About Page Section */

.section-card {
  background: #fff;
  border-radius: 15px;
  padding: 35px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  border-bottom: 4px solid var(--royal-blue);
  transition: transform 0.3s ease;
}

.section-card:hover {
  transform: translateY(-5px);
}

.highlight-text {
  color: var(--primary-saffron);
  font-weight: 700;
}

.stats-box {
  background: var(--royal-blue);
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  margin-top: 20px;
}

.tax-benefit-tag {
  background: #d4edda;
  color: #155724;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  display: inline-block;
  font-weight: 600;
}

.director-label {
  font-size: 0.9rem;
  color: var(--steel-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partnership-badge {
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  margin: 5px;
  display: inline-block;
  background: white;
}
/* Our Sponsors */
.sponsor-header {
  background: linear-gradient(
    135deg,
    var(--royal-blue),
    var(--primary-saffron)
  );
  color: white;
  padding: 60px 0;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

.tier-title {
  text-align: center;
  margin: 50px 0 30px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.tier-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--golden-yellow);
  margin: 10px auto;
}

.sponsor-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eee;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.sponsor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--royal-blue);
}

.sponsor-placeholder {
  font-weight: 600;
  color: var(--steel-dark);
  font-size: 1.2rem;
}

/* Tier Specifics */
.platinum {
  border-top: 5px solid #e5e4e2;
}
.gold {
  border-top: 5px solid var(--golden-yellow);
}
.collaborator {
  border-top: 5px solid var(--royal-blue);
}

.cta-section {
  background-color: white;
  padding: 40px;
  border-radius: 20px;
  margin-top: 60px;
  border: 2px dashed var(--primary-saffron);
}

.btn-sponsor {
  background-color: var(--primary-saffron);
  color: white;
  padding: 12px 35px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* Volunteer Join */
.volunteer-hero {
  background:
    linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.8)),
    url("https://images.unsplash.com/photo-1559027615-cd4451d131e2?auto=format&fit=crop&q=80&w=1200");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.form-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 40px;
  margin-top: -50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid var(--golden-yellow);
}

.benefit-icon {
  font-size: 2rem;
  color: var(--primary-saffron);
  margin-bottom: 15px;
}

.btn-join {
  background-color: var(--primary-saffron);
  border: none;
  color: white;
  padding: 12px 40px;
  font-weight: 600;
  border-radius: 5px;
  transition: 0.3s;
  width: 100%;
}

.btn-join:hover {
  background-color: var(--royal-blue);
  transform: translateY(-2px);
}

.form-label {
  font-weight: 600;
  color: var(--dark-text);
}

.info-badge {
  background: #e3f2fd;
  color: var(--royal-blue);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 20px;
}

/* championship Style CSS */
.section-padding {
  padding: 60px 0;
}

.objective-card {
  border: none;
  border-left: 4px solid var(--primary-saffron);
  background: var(--cream-base);
  transition: 0.3s;
}

.objective-card:hover {
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateX(10px);
}

.category-box {
  background: white;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  height: 100%;
  transition: 0.3s;
}

.category-box i {
  font-size: 2.5rem;
  color: var(--royal-blue);
  margin-bottom: 15px;
  display: block;
}

.category-box:hover {
  border-color: var(--royal-blue);
  background-color: var(--cream-base);
}

.event-details-table {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.table thead {
  background-color: var(--dark-text);
  color: white;
}

.highlight-bar {
  height: 5px;
  width: 100px;
  background: var(--golden-yellow);
  margin: 15px 0;
}

.btn-register-fixed {
  background-color: var(--primary-saffron);
  color: white;
  font-weight: 600;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
}
/* Facilities & Impact */
.header-banner {
  background-color: var(--royal-blue);
  color: white;
  padding: 50px 0;
  text-align: center;
  border-bottom: 5px solid var(--golden-yellow);
}

.facility-card {
  background: white;
  border: none;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-5px);
  border-bottom: 4px solid var(--primary-saffron);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--royal-blue);
}

.impact-section {
  background-color: var(--dark-text);
  color: white;
  padding: 70px 0;
  margin-top: 60px;
}

.outcome-item {
  border-left: 3px solid var(--golden-yellow);
  padding-left: 20px;
  margin-bottom: 30px;
}

.outcome-title {
  color: var(--golden-yellow);
  font-weight: 600;
  font-size: 1.2rem;
}

.badge-importance {
  background-color: rgba(230, 81, 0, 0.1);
  color: var(--primary-saffron);
  border: 1px solid var(--primary-saffron);
  padding: 8px 15px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 15px;
  font-weight: 600;
}
/* Sponsorship CSS */
.hero-sponsorship {
  background: linear-gradient(45deg, #1a1a1a, var(--dark-text));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.tier-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  border: 1px solid #ddd;
}

.tier-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.tier-header {
  padding: 20px;
  text-align: center;
  color: white;
  font-weight: 700;
  text-transform: uppercase;
}

.bg-title {
  background: var(--primary-saffron);
}
.bg-powered {
  background: var(--royal-blue);
}
.bg-copowered {
  background: var(--dark-text);
}
.bg-associate {
  background: var(--steel-dark, #686c6e);
}

.benefit-list {
  padding: 25px;
  list-style: none;
  font-size: 0.9rem;
}

.benefit-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--royal-blue);
  font-weight: bold;
}

.benefit-category {
  font-weight: 700;
  color: var(--dark-text);
  margin-top: 15px;
  display: block;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.csr-tag {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  margin: 20px;
  border: 1px solid #c8e6c9;
}
/* ================= FORM STYLING ================= */
.contact-form-container {
  background: #fff;
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.form-control {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  margin-bottom: 15px;
}
.form-control:focus {
  box-shadow: none;
  border-color: var(--golden-yellow);
}

.map-container {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 450px;
}

.btn-send {
  background: var(--footer-bg);
  color: #fff;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  border: none;
  width: 100%;
  transition: 0.3s;
}
.btn-send:hover {
  background: var(--golden-yellow);
  color: var(--footer-bg);
}

.gyh-footer {
  background-color: var(--footer-bg);
  color: #e0e0e0;
  font-family: "Poppins", sans-serif;
  border-top: 4px solid var(--primary-saffron);
}

.footer-section-title {
  color: var(--primary-saffron);
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 35px;
  height: 3px;
  background-color: var(--royal-saffron);
}

.brand-name {
  color: var(--royal-saffron);
  font-weight: 900;
}

.brand-text {
  font-size: 14px;
  line-height: 1.7;
  color: #b0b0b0;
}

/* Footer Navigation Animation */
.footer-nav {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-nav a {
  color: #b0b0b0;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 14px;
}

.footer-nav a i {
  font-size: 10px;
  color: var(--royal-saffron);
  margin-right: 8px;
}

.footer-nav a:hover {
  color: var(--royal-saffron);
  padding-left: 10px;
}

/* Contact Info Styling */
.contact-info-list {
  list-style: none;
  padding: 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 14px;
}

.contact-info-list i {
  color: var(--royal-saffron);
  margin-right: 15px;
  margin-top: 4px;
}

/* QR Code & Badges */
.qr-image {
  width: 150px;
  height: 150px;
}

.qr-label {
  color: #333;
  font-weight: 600;
  font-size: 12px;
}

/* Footer Bottom Bar */
.footer-bottom {
  background: #000;
  padding: 20px 0;
  border-top: 1px solid #333;
  font-size: 13px;
}

/* Social Icons (Circle Style) */
.social-circle-links a {
  width: 35px;
  height: 35px;
  background: var(--royal-saffron);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.social-circle-links a:hover {
  background: var(--golden-yellow);
  transform: translateY(-3px);
}
/* Policy Links Styling */
.policy-links {
  padding: 0;
}

.policy-links li {
  font-size: 13px;
  color: var(--steel-dark); /* Using your secondary dark color */
}

.policy-links a {
  color: #b0b0b0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-links a:hover {
  color: var(--sky-blue); /* Sky Blue from your preferences on hover */
  text-decoration: underline;
}

.developer-name {
  color: #ffffff;
  font-weight: 600;
}

/* Adjusting the bottom bar for better spacing */
.footer-bottom {
  background: #000;
  padding: 25px 0;
  border-top: 1px solid #333;
  font-size: 13px;
  color: #888;
}

/* Container Styles */
.footer-contact-stack {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.footer-icon-left {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
}

/* Common Icon Styling */
.footer-contact-stack a,
.back-to-top {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

/* Individual Colors */
.icon-whatsapp {
  background-color: #25d366;
  animation: pulse-green 2s infinite;
}
.icon-call {
  background-color: #34b3f1;
} /* Sky Blue */
.icon-email {
  background-color: #f15412;
} /* Orange */
.back-to-top {
  background-color: #6e6a68;
} /* Steel Dark */

/* Hover Effects */
.footer-contact-stack a:hover {
  transform: scale(1.1) translateX(-5px);
}

.back-to-top:hover {
  background-color: #c8231f; /* Red on hover */
  transform: translateY(-5px);
}
/* Initial state: hidden and transparent */
.back-to-top {
  background-color: #6e6a68;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  transform: translateY(20px); /* Starts slightly lower */
}

/* State when the user scrolls down */
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0); /* Pops up into place */
}

.sponsor-section {
  background: #f8fafc;
}

.sponsor-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.sponsor-box:hover {
  transform: translateY(-8px);
}

.gold {
  border-top: 5px solid gold;
}

.silver {
  border-top: 5px solid silver;
}

.bronze {
  border-top: 5px solid #cd7f32;
}

.sponsor-box img {
  max-height: 80px;
}

.sponsor-carousel {
  display: flex;
  overflow: hidden;
  gap: 40px;
  justify-content: center;
  align-items: center;
  animation: scrollSponsor 20s linear infinite;
}

.sponsor-carousel img {
  height: 70px;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: 0.3s;
}

.sponsor-carousel img:hover {
  filter: none;
  opacity: 1;
}

.championship-highlights {
  background: #f8fafc;
}

.gallery-card {
  overflow: hidden;
  border-radius: 10px;
}

.gallery-card img {
  transition: 0.4s;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.winner-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.winner-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

.media-card {
  background: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
  color: #111827;
}

.accordion-button {
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-saffron);
  color: #000;
}

.organizers-section {
  background: #f8fafc;
}

.team-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border: 4px solid var(--primary-saffron);
}

.contact-section {
  background: #f8fafc;
}

.contact-section h4 {
  margin-bottom: 15px;
}

.contact-section .btn-success {
  margin-top: 10px;
}

.map-section iframe {
  border-radius: 10px;
}

.about-championship {
  background: #ffffff;
}

.about-championship h2 {
  color: #111827;
}

.about-championship p {
  color: #374151;
  line-height: 1.7;
}

.about-championship ul li {
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  color: white;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.event-badge {
  background: var(--primary-saffron);
  color: #000;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
}

.btn-warning {
  padding: 12px 28px;
  font-weight: 600;
}

@keyframes scrollSponsor {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive CTA */
@media (max-width: 768px) {
  .cta-title {
    font-size: 2rem;
  }
  .btn-cta-main,
  .btn-cta-whatsapp {
    width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .secondary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .featured-grid,
  .secondary-grid {
    grid-template-columns: 1fr;
  }
  .tour-item {
    height: 250px;
  }
}

/* WhatsApp Pulse Animation */
@keyframes pulse-green {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 991px) {
  .policy-links {
    margin: 10px 0 !important;
  }
}
/* Animation for dropdown appearance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-nav {
    padding: 20px 0;
  }
  .btn-book {
    margin-left: 0;
    margin-top: 10px;
    display: inline-block;
  }
}
