* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #ffffff;
  color: #333;
}
/* Default nav link style */
.navbar .nav-link {
  position: relative;
  color: #0a3866;
  transition: color 0.3s ease;
}
/* Hover effect */
.navbar .nav-link:hover {
  color: #0a3866; /* Darker blue */
}
/* Underline animation */
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0a3866;
  transition: width 0.3s ease;
}
.navbar .nav-link:hover::after {
  width: 100%;
}
/* ===== HERO / BANNER ===== */
.hero {
  position: relative;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}
/* Background video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.4); /* darken video slightly for readability */
}
/* Hero content */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 15px;
}
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}
.hero p {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #f1f1f1;
}
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
}
/* ===== CLUB SECTION ===== */
.clubs {
  padding: 40px 20px 60px 20px;
  margin: 0 auto;
}
.clubs h2 {
  font-size: 2rem;
  color: #1e3a8a;
}
.club-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.club {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.club:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.club img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.club-content {
  padding: 20px;
}
.club-content h3 {
  color: #111827;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.club-content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}
.club-content a {
  text-decoration: none;
  color: #2563eb;
  font-weight: 600;
}
/* ===== ABOUT SECTION ===== */
.about {
  background: white;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.about h2 {
  font-size: 2rem;
  color: #1e3a8a;
  margin-bottom: 20px;
}
.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}
/* ===== FOOTER ===== */
footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 50px 20px;
  text-align: center;
}
.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.footer-links a {
  color: #9ca3af;
  margin: 0 10px;
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #2563eb;
}
.social-icons {
  margin-top: 15px;
}
.social-icons a {
  margin: 0 8px;
  color: #9ca3af;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #2563eb;
}
.footer-bottom {
  border-top: 1px solid #374151;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #9ca3af;
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .about p {
    font-size: 1rem;
  }
}
/* Mobile responsive adjustments for footer contacts */
@media (max-width: 768px) {
  .footer-contacts .d-flex {
    flex-direction: column;
    /* Stack cards vertically on mobile */
    gap: 20px;
    /* spacing between cards */
  }
  .footer-contacts .card {
    flex: 1 1 100%;
    /* full width */
    text-align: center;
    /* center text on mobile */
  }
  .footer-contacts .footer-email {
    display: inline-block;
    word-break: break-word;
  }
}
/* ===== ABOUT SECTION (2-COLUMN STYLE) ===== */
.about-section {
  background-color: #ffffff;
  padding: 80px 3rem;
}
.about-container {
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.about-text {
  flex: 1 1 55%;
  color: #444;
}
.about-text h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 15px;
  font-weight: 700;
}
.about-text .underline {
  width: 60px;
  height: 3px;
  background-color: #22c55e;
  margin-bottom: 25px;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}
.about-image {
  flex: 1 1 40%;
  text-align: right;
}
.about-image img {
  width: 100%;
  /* max-width: 500px; */
  height: auto;
  border-radius: 10px;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.03);
}
/* Responsive */
@media (max-width: 900px) {
  .about-section {
    padding: 2rem 1rem;
  }
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-text,
  .about-image {
    flex: 1 1 100%;
    text-align: center;
  }
  .about-image img {
    max-width: 90%;
  }
}
/* Footer Dropdown */
.footer-links {
  position: relative;
  display: inline-block;
}
.footer-links .dropdown-toggle {
  color: white;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.footer-links .dropdown-menu {
  display: none;
  position: absolute;
  background-color: #1c1c1c;
  min-width: 180px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 8px 0;
  z-index: 10;
}
.footer-links .dropdown-menu a {
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.2s;
}
.footer-links a:hover {
  color: white;
}
/* Show dropdown on hover */
.footer-links:hover .dropdown-menu {
  display: block;
}
.social-icons {
  gap: 15px;
  align-items: center;
}
.social-icons a {
  color: #ccc;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #fefeff;
  /* blue hover effect */
}
.footer-contacts {
  background-color: #111827;
  color: #ffffff;
}
.footer-contacts p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}
.footer-email {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}
.footer-email:hover {
  color: #ffffff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .underline {
    display: none;
  }
}
.training {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #fff;
  background-image: url("./assets/b1.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 60px 8% 120px;
  flex-wrap: wrap;
  gap: 60px;
  overflow: visible;
}
.training::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 0;
}
.training-left,
.training-grid {
  position: relative;
  z-index: 1;
}
.training-left h5.subtitle {
  font-size: 1rem;
  letter-spacing: 1px;
  color: #ffffffcc;
}
.training-left h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 15px 0;
}
.training-left h2 span {
  color: #00aaff;
}
.training-left p {
  font-size: 1rem;
  /* line-height: 1.7; */
  color: #dddddd;
}
/* Grid section */
.training-grid {
  display: flex;
  gap: 30px;
  position: absolute;
  bottom: -50px;
  left: 8%;
  right: 8%;
  justify-content: center;
  flex-wrap: wrap;
}
.training-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 250px;
  height: 100px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background-color: #f9f9f9;
  color: #1d1c1c;
  border-bottom: 6px solid #09325e;
  display: flex;
  align-items: center;
  justify-content: center;
}
.training-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}
.overlay {
  text-align: center;
}
.btn-learn {
  display: inline-block;
  background: transparent;
  color: #09325e;
  padding: 8px 16px;
  border-radius: 4px;
  /* border: 2px solid #09325e; */
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-learn:hover {
  /* background: #09325e; */
  color: #09325e;
}
.training-grid {
  display: flex;
  gap: 30px;
  position: absolute;
  bottom: -50px;
  left: 8%;
  right: 8%;
  justify-content: center;
  flex-wrap: wrap;
}
.training-card {
  background: white;
  border-radius: 25px;
  width: 300px;
  height: 100px;
  position: relative;
  box-shadow: 0 5px 20px rgba(9, 50, 94, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.training-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(9, 50, 94, 0.2);
}
/* ✅ SVG decorative circles */
.decorative-circle {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 180px;
  height: 180px;
  z-index: 0;
  pointer-events: none;
}
/* Bring overlay on top */
.overlay {
  z-index: 1;
}
.btn-learn {
  /* background: #09325e; */
  color: #09325e;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-learn:hover {
  /* background: #fff; */
  color: #09325e;
  /* border: 2px solid #09325e; */
}
/* 📱 Responsive tweaks */
/* Base styles remain the same — only improvements for smaller screens */
/* 🧩 For tablets and medium screens */
@media (max-width: 992px) {
  .training {
    flex-direction: column;
    text-align: center;
    padding: 60px 5% 180px; /* balanced spacing */
  }
  .training-left h2 {
    font-size: 1.9rem;
    line-height: 1.3;
  }
  .training-left p {
    font-size: 0.95rem;
  }
  .training-grid {
    position: static;
    /* margin-top: 50px; */
    flex-wrap: wrap;
    gap: 25px;
  }
  .training-card {
    width: 100%;
    height: 100px;
  }
  .btn-learn {
    font-size: 1rem;
    padding: 8px 18px;
  }
  .decorative-circle {
    width: 140px;
    height: 140px;
    bottom: -20px;
    right: -20px;
  }
  .event-info {
    text-align: center;
  }
}
/* 📱 For small mobile devices */
@media (max-width: 576px) {
  .training {
    padding: 50px 5% 60px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .training-left h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .training-left p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
  .training-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }
  .training-card {
    width: 100%;
    /* max-width: 320px; */
    height: 90px;
    padding: 10px 70px;
  }
  .btn-learn {
    font-size: 0.9rem;
    padding: 6px 14px;
  }
  .decorative-circle {
    width: 120px;
    height: 120px;
    bottom: -15px;
    right: -15px;
  }
  .event-info {
    text-align: center;
  }
  .clubs {
    text-align: center;
  }
}
/* 📱 Very small phones (like iPhone SE or <400px width) */
@media (max-width: 400px) {
  .training {
    padding: 40px 5% 60px;
  }
  .training-left h2 {
    font-size: 1.3rem;
  }
  .training-left p {
    font-size: 0.85rem;
  }
  .btn-learn {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  .training-card {
    width: 100%;
    height: 85px;
    padding: 10px 70px;
  }
  .event-info {
    text-align: center;
  }
  .event-info ul {
    text-align: left;
  }
}
.events-section {
  /* max-width: 1100px; */
  margin: 3rem auto;
  font-family: "Poppins", sans-serif;
  padding: 0 1rem;
}
.tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
}
.tab {
  background: #f3f3f3;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 20px;
  font-weight: 600;
  transition: all 0.3s;
}
.tab.active {
  background: #003366;
  color: #fff;
}
.tab-content {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}
.tab-content.active {
  display: block;
}
.event-card {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  /* align-items: center; */
}
.event-img {
  width: 100%;
  max-width: 400px;
  height: auto; /* same height for both images */
  object-fit: cover; /* maintain proportion and crop neatly */
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.event-info {
  flex: 1;
  min-width: 280px;
}
.event-info h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.highlight {
  color: #22c55e;
  font-weight: bold;
}
.btn-register {
  display: inline-block;
  margin-top: 5px;
  background: linear-gradient(135deg, #09325e, #00a0e3);
  color: white;
  padding: 7px 15px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
  font-size: 0.8rem;
}
.btn-register:hover {
  background: #205487;
  color: #fff;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.camps-section {
  background-color: #ffffff; /* light grey background */
}
.camp-card {
  background-color: #f8f9fa;
  border-radius: 16px;
  transition: all 0.3s ease;
}
.camp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.15);
}
.camp-icon {
  width: 60px;
  height: 60px;
  /* filter: hue-rotate(180deg) brightness(0.9); */
}
.text-theme-heading {
  /* font-size: 1.8rem; */
  color: #003366;
}
.text-theme {
  color: #003366;
  font-size: 1rem;
}
.camp-subtitle {
  font-size: 0.8rem;
}
.facebook-section {
  background: #f9fafc;
  padding: 3rem 1rem;
  text-align: center;
  width: 100%;
}
.facebook-section .fb-title {
  color: #09325e;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.fb-iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.latest-news .news-card,
.achievements-section .achievement-card {
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
}
.latest-news .news-card:hover,
.achievements-section .achievement-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}
.latest-news img,
.achievements-section img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.text-theme-heading {
  color: #09325e;
}
/* .underline {
  width: 70px;
  height: 3px;
  background-color: #09325e;
  margin: 0 auto;
} */
.highlights-section h2 {
  font-size: 2rem;
}
.highlight-header h2 {
  text-align: left;
}
.highlight-header p {
  text-align: left;
}
/* Equal height cards */
.highlight-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border-radius: 5px;
}
.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* Image styling */
.highlight-card img {
  height: 220px;
  object-fit: cover;
}
/* Limit heading lines (2 lines max) */
.highlight-card h5 {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 48px; /* ensures consistent spacing even if short */
}
/* Limit paragraph lines (3 lines max) */
.highlight-card p {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* number of lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  min-height: 65px; /* adjust based on look */
}
/* Bottom info section spacing */
.highlight-card .d-flex {
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
.badge {
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 6px;
}
.achievement-card {
  height: 100%;
  border-radius: 10px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.achievement-card img {
  height: 170px;
  object-fit: cover;
}
.achievement-card h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Show only 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.achievement-card p {
  font-size: 0.95rem;
  color: #555;
  display: -webkit-box;
  -webkit-line-clamp: 3; /* Limit to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}
/*
.achievements {
  background: linear-gradient(135deg, #f8f9fa, #d5dff0);
} */
/* .underline {
  width: 80px;
  height: 3px;
  background: #1ec5e0;
  border-radius: 2px;
} */
.achievement-item img {
  /* max-width: 85%; */
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.achievement-item img:hover {
  transform: scale(1.03);
}
/* .achievements-card {
  margin-top: 5px;
} */
.badge {
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .achievement-item {
    text-align: center;
  }
  .achievement-item .col-md-6 {
    margin-bottom: 20px;
  }
  .highlight-header h2 {
    text-align: left;
  }
  .highlight-header p {
    text-align: left;
  }
}
@media (max-width: 576px) {
  .highlight-header h2 {
    text-align: center;
  }
  .highlight-header p {
    text-align: center;
  }
  .achievements-card {
    margin-top: 25px;
  }
  .achievement-header {
    text-align: center;
  }
  .highlight-card {
    text-align: center;
  }
}
.facebook-section {
  background: #f9fafc;
  padding: 3rem 1rem;
  text-align: center;
  width: 100%;
}
.facebook-section .fb-title {
  color: #09325e;
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.fb-iframe-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 120%;
  /* Aspect ratio: height/width = 680/500 ~ 1.36 -> 136% */
  height: 0;
  overflow: hidden;
}
.fb-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.facebook-section .row.g-3 img {
  height: 160px; /* You can adjust to 180px or 200px if you want bigger images */
  width: 100%;
  object-fit: cover; /* maintains aspect ratio and crops the overflow */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.facebook-section .row.g-3 img:hover {
  transform: scale(1.05);
}
.highlights-section {
  /* background: linear-gradient(135deg, #f8faff 0%, #eaf3ff 100%); */
  position: relative;
  overflow: hidden;
}
.highlights-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(bg_1.svg);
  background-repeat: no-repeat;
  /* background-size: cover; */
  background-position: bottom;
  z-index: 1;
}
/* .highlights-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("assets/vector-img.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  z-index: 1;
} */
/* Add dark overlay for readability */
/* Ensure content appears above overlay */
.highlights-section .container {
  position: relative;
  z-index: 1;
}
.journey-section {
  background-color: #ffffff;
  overflow: hidden;
}
.journey-section h2 span {
  color: #00a0e3;
}
.journey-section h3 {
  font-size: 2rem;
  line-height: 1.3;
}
.journey-section img {
  object-fit: cover;
  width: 100%;
  border-radius: 0rem;
  margin-top: 5rem;
}
.journey-section .btn {
  border-radius: 25px;
  font-size: 0.95rem;
  transition: 0.3s ease-in-out;
}
.journey-section .btn-success {
  background-color: #00a859;
  border: none;
}
.journey-section .btn-success:hover {
  background-color: #008f4e;
}
.journey-section .btn-outline-dark:hover {
  background-color: #09325e;
  color: #fff;
}
.journey-section .d-flex.gap-3 {
  flex-wrap: wrap;
}
/* -------- Responsive Styles -------- */
@media (max-width: 991px) {
  .journey-section {
    text-align: center;
  }
  .journey-section .col-md-6:first-child {
    order: 2; /* text below images */
  }
  .journey-section .col-md-6:last-child {
    order: 1; /* images first */
    margin-bottom: 2rem;
  }
  .journey-section h3 {
    font-size: 1.6rem;
  }
  .journey-section p {
    font-size: 0.9rem;
  }
  .journey-section .d-flex.gap-3 {
    justify-content: center;
    gap: 0.8rem;
  }
  .journey-section img {
    border-radius: 0rem;
  }
}
@media (max-width: 576px) {
  .journey-section {
    padding: 2rem 1rem !important;
    margin-top: 0px;
  }
  .journey-section h3 {
    font-size: 1.4rem;
  }
  .journey-section .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  .journey-section .row.g-3 {
    gap: 1rem !important;
  }
  .journey-section .col-6 img {
    margin-bottom: 0.6rem;
  }
  .journey-section .col-6:last-child img {
    height: auto !important;
  }
  .journey-section img {
    margin-top: 0rem;
  }
  .achievement-card {
    margin: 0 15px;
  }
  .achievement-card h5 {
    color: #012d5a !important;
    font-size: 1rem;
  }
  .achievement-card .badge {
    background: linear-gradient(135deg, #09325e, #00a0e3);
    color: white !important;
  }
  .achievement-item img {
    height: 100%;
  }
}
.achievement-card {
  /* background: linear-gradient(135deg, #09325e, #00a0e3); */
  background-color: white;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  padding: 20px;
  color: #fff;
  align-items: center;
}
.achievement-card .badge {
  background: linear-gradient(135deg, #09325e, #00a0e3);
}
.achievement-card h5.fw-bold {
  color: #012d5a !important;
}
.achievement-card p {
  color: #393939;
}
.achievement-card img {
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.achievement-card img:hover {
  transform: scale(1.05);
}
.achievement-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 20px;
  padding: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.decorative-circle {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  z-index: 0;
  pointer-events: none;
}
.achievements-card {
  position: relative;
  z-index: 1;
}
.achievement-item h5,
.achievement-item p,
.achievement-item span {
  position: relative;
  z-index: 2;
}

.achievements,
#upcoming-tournament,
.events-section.bg-light,
.camps-section,
.gallery-section {
  display: none; /* JS enable hone ke baad dikhega sirf jab data ho */
}

.highlight-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
