/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ebe5e5;
 background: url("../assets/images/p1.jpg") no-repeat center center/cover; 
}


/* ===== Top Header ===== */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  color: #fff;
  padding: 8px 30px;
  font-size: 14px;
}

.top-header .contact span {
  margin-right: 15px;
}

.top-header .social a {
  color: #fff;
  margin-left: 12px;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s;
}
.top-header .social a:hover {
  color: #f39c12;
}


/* ===== Navigation ===== */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav .logo {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

nav .nav-links {
  display: flex;
  list-style: none;
}

nav .nav-links li {
  margin-left: 25px;
}

nav .nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: color 0.3s;
}
nav .nav-links a:hover {
  color: #f39c12;
}

/* Hide dropdown by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  z-index: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-content li a {
  display: block;
  padding: 8px 16px;
  text-decoration: none;
  color: #000;
}

.dropdown-content li a:hover {
  background-color: #ddd;
}

/* Optional: style for dropdown button */
.dropbtn {
  cursor: pointer;
  text-decoration: none;
  padding: 10px;
  display: inline-block;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ===== Banner Section ===== */
.banner {
  position: relative;
  background: url("../assets/images/f9.jpg") no-repeat center center/cover; 
  height: 520px;
  width: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  /* text-align: center;
  color: #fff; */
}

.banner-overlay {
  background: rgba(0, 0, 50, 0.65); /* dark overlay */
  padding: 20px;
  border-radius: 12px;
}

.banner-content h1 {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.banner-content p {
  font-size: 28px;
  margin: 8px 0;
}

.banner-content h3 {
  font-size: 30px;
  margin-bottom: 9px;
}

.banner-content .highlight {
  font-size: 20px;
  font-weight: bold;
  color: #ffcc00;
  margin-top: 8px;
}

.banner-content .contact {
  font-size: 16px;
  margin-top: 12px;
  background: #ffcc00;
  color: #000;
  display: inline-block;
  padding: 7px 24px;
  border-radius: 9px;
  font-weight: bold;
}


/* Main Section */
.academy-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  gap: 40px;
}

/* Left side image */
.academy-left {
  position: relative;
  flex: 1;
}

.academy-left img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

/* Top-left blue box */
.blue-box {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #0073c6;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.blue-box span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}

/* Bottom green box */
.green-box {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #4caf50;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
.green-box span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}

/* Right side content */
.academy-right {
  flex: 1;
}

.academy-right h2 {
  font-size: 32px;
  font-weight: bold;
  color: #080808;
  margin-bottom: 20px;
}

.academy-right p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.academy-right a {
  color: #0073c6;
  text-decoration: none;
  font-weight: bold;
}
.academy-right a:hover {
  text-decoration: underline;
}

/* Side tab button */
.side-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #0073c6;
  color: #fff;
  padding: 10px 20px;
  writing-mode: vertical-rl;
  text-align: center;
  font-weight: bold;
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 768px) {
  .academy-section {
    flex-direction: column;
    padding: 20px;
  }

  .academy-left img {
    width: 100%;
  }

  .blue-box, .green-box {
    font-size: 18px;
    padding: 15px;
  }

  .academy-right h2 {
    font-size: 28px;
    margin-top: 20px;
  }
}

/* ========== About Section ========== */
.about-section {
  padding: 60px 10%;
  background: #f8f9fa; /* light background for section */
  text-align: center;
}

.about-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #0073c6;       /* primary blue */
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* Cards container */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;      /* wraps cards on smaller screens */
}

/* Individual card */
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  padding: 20px;
  width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card p:first-of-type {
  font-size: 20px;
  font-weight: bold;
  color: #0073c6;
  margin-bottom: 10px;
}

.card p:last-of-type {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* ========== Responsive Design ========== */
@media (max-width: 992px) {
  .cards-container {
    gap: 20px;
  }
  .card {
    width: 260px;
  }
}

@media (max-width: 768px) {
  .about-section h2 {
    font-size: 30px;
  }

  .cards-container {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
    max-width: 350px;
  }
}


/* ===== Fan Wall Section ===== */
.fanwall {
  padding: 60px 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fanwall-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* Left side text */
.fanwall-text {
  flex: 1;
  min-width: 280px;
}

.fanwall-text h2 {
  font-size: 32px;
  color: #0072bb;
  font-weight: bold;
  margin-bottom: 20px;
}

.testimonial {
  background: #6cbe45;
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial .author {
  margin-top: 15px;
  font-weight: bold;
}

.testimonial .quote {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 40px;
  color: #0059a3;
}

/* Dots for slider */
.dots {
  margin-top: 10px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 4px;
  background: #b0d9f4;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #0072bb;
}

/* Right side image */
.fanwall-image img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .fanwall-container {
    flex-direction: column;
    text-align: center;
  }

  .fanwall-image img {
    max-width: 300px;
    margin-top: 20px;
  }
}


/* Footer */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #4CAF50, #00BCD4);
  color: white;
  padding: 15px 30px;
  font-size: 14px;
}

/* Left section */
.footer-left a {
  color: white;
  text-decoration: underline;
}

/* Center social icons */
.footer-center {
  display: flex;
  gap: 15px;
}

.footer-center a {
  color: #fff;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  border-radius: 4px;
  transition: 0.3s;
}

.footer-center a:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Right section */
.footer-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-right a {
  color: white;
  text-decoration: none;
}

.footer-right a:hover {
  text-decoration: underline;
}

.footer-right span {
  color: white;
}
