/* Global Styles */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #e74c3c;
  --accent-color: #3498db;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
  --text-color: #333;
  --text-light: #777;
  --white: #fff;
  --black: #000;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Playfair Display", serif;
  --transition: all 0.3s ease;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --border-radius: 5px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 12px 25px;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: var(--transition);
  border: 2px solid var(--secondary-color);
}

.btn:hover {
  background: transparent;
  color: var(--secondary-color);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--secondary-color);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: var(--primary-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
}

.section-title p {
  color: var(--text-light);
  font-size: 18px;
}

/* Logo Image */
.logo-img {
  height: 50px;
  margin-right: 15px;
  vertical-align: middle;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo h1 {
  font-size: 28px;
  color: var(--primary-color);
}

.logo h1 span {
  color: var(--secondary-color);
}

.navbar ul {
  display: flex;
}

.navbar ul li {
  margin-left: 30px;
}

.navbar ul li a {
  font-weight: 500;
  position: relative;
}

.navbar ul li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
}

.navbar ul li a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  font-size: 24px;
  color: var(--primary-color);
  cursor: pointer;
  display: none;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease;
}

.hero-content p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
  animation: fadeInUp 1s ease;
}

.hero-btns {
  animation: fadeIn 1.5s ease;
}

.hero-btns .btn {
  margin: 0 10px;
}

/* About Section */
.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-img {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-img img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-top: 20px;
  position: relative;
  padding-bottom: 10px;
}

.about-text h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--secondary-color);
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Requirements Section */
.requirements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.requirement-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.requirement-card:hover {
  transform: translateY(-10px);
}

.requirement-icon {
  width: 80px;
  height: 80px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: var(--secondary-color);
}

.requirement-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.requirement-card ul {
  text-align: left;
  margin-top: 15px;
}

.requirement-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.requirement-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* Courses Section */
.courses-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.tab-btn {
  padding: 10px 25px;
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn.active {
  background: var(--secondary-color);
  color: var(--white);
}

.tab-btn:hover:not(.active) {
  background: rgba(231, 76, 60, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.course-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.course-card:hover {
  transform: translateY(-10px);
}

.course-img {
  height: 200px;
  overflow: hidden;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.course-card:hover .course-img img {
  transform: scale(1.1);
}

.course-details {
  padding: 20px;
}

.course-details h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.course-details p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  color: var(--secondary-color);
  font-weight: 500;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-member {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-member:hover .member-img img {
  transform: scale(1.1);
}

.social-links {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background: rgba(231, 76, 60, 0.8);
  padding: 15px 0;
  transition: var(--transition);
}

.team-member:hover .social-links {
  bottom: 0;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.member-info {
  padding: 20px;
}

.member-info h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

.member-info p {
  color: var(--text-light);
  font-style: italic;
}

/* Soccer Club Section */
.soccer-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.soccer-text {
  flex: 1;
}

.soccer-text h3 {
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.soccer-text p {
  margin-bottom: 20px;
}

.soccer-text ul {
  margin-bottom: 30px;
}

.soccer-text ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.soccer-text ul li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

.soccer-img {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.soccer-img img {
  width: 100%;
  height: auto;
  transition: var(--transition);
}

.soccer-img:hover img {
  transform: scale(1.05);
}

/* Gallery Section */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 62, 80, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h3 {
  color: var(--white);
  font-size: 22px;
  text-align: center;
}

/* Testimonials Section */
.testimonials {
  background: var(--light-color);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  display: none;
}

.testimonial.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-content {
  position: relative;
}

.quote-icon {
  font-size: 40px;
  color: var(--secondary-color);
  opacity: 0.2;
  margin-bottom: 20px;
}

.testimonial p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 30px;
}

.student-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.student-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid var(--secondary-color);
}

.student-info h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.student-info span {
  color: var(--text-light);
  font-size: 14px;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.prev-btn,
.next-btn {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: none;
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  margin-bottom: 15px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background: rgba(231, 76, 60, 0.1);
}

.faq-question h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.faq-question i {
  color: var(--secondary-color);
  transition: var(--transition);
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-color);
  color: var(--white);
  padding: 10px 15px;
  border-radius: var(--border-radius);
  text-align: center;
  line-height: 1.2;
}

.blog-date span:first-child {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-content h3 a {
  color: var(--primary-color);
  transition: var(--transition);
}

.blog-content h3 a:hover {
  color: var(--secondary-color);
}

.blog-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.read-more {
  color: var(--secondary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

.blog-cta {
  text-align: center;
  margin-top: 40px;
}

/* Contact Section */
.contact-content {
  display: flex;
  gap: 40px;
}

.contact-info {
  flex: 1;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--secondary-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-form {
  flex: 1;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--secondary-color);
  outline: none;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row .form-group {
  flex: 1;
}

.checkbox {
  display: flex;
  align-items: center;
}

.checkbox input {
  width: auto;
  margin-right: 10px;
}

.checkbox label {
  margin-bottom: 0;
}

/* Application Section */
.apply-content {
  display: flex;
  gap: 40px;
}

.apply-steps {
  flex: 1;
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.apply-steps h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.apply-steps ul {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.apply-steps li {
  display: flex;
  gap: 20px;
}

.apply-steps li span {
  width: 40px;
  height: 40px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.apply-steps h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.apply-steps p {
  color: var(--text-light);
  font-size: 14px;
}

.apply-form {
  flex: 1;
}

/* Map Section */
.map {
  height: 450px;
}

.map iframe {
  filter: grayscale(100%) invert(92%) contrast(83%);
}

/* Footer */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 22px;
  color: var(--white);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--secondary-color);
}

.footer-col p {
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

.footer-col ul li {
  margin-bottom: 15px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 15px;
  color: var(--secondary-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary-color);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary-color);
  transform: translateY(-5px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content,
  .soccer-content,
  .contact-content,
  .apply-content {
    flex-direction: column;
  }

  .about-img,
  .soccer-img {
    margin-bottom: 30px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 18px;
  }

  .navbar {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    transition: var(--transition);
  }

  .navbar.active {
    left: 0;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
  }

  .navbar ul li {
    margin: 15px 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .courses-grid,
  .team-grid,
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 576px) {
  .section-padding {
    padding: 50px 0;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-btns .btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }

  .courses-grid,
  .team-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* whatsapp float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 90px;
  right: 30px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 1.8rem;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float 2s ease-in-out infinite;
  text-decoration: none;
}
/* Page Hero Sections */
.page-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/background.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--white);
  padding-top: 80px;
}

.page-hero .container {
  width: 100%;
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 20px;
}

/* Specific hero backgrounds */
.graduation-hero {
  background-image: linear-gradient(
      rgba(44, 62, 80, 0.8),
      rgba(44, 62, 80, 0.8)
    ),
    url("../images/background.jpg");
}

.soccer-hero {
  background-image: linear-gradient(
      rgba(44, 62, 80, 0.8),
      rgba(44, 62, 80, 0.8)
    ),
    url("../images/background.jpg");
}

.courses-hero {
  background-image: linear-gradient(
      rgba(44, 62, 80, 0.8),
      rgba(44, 62, 80, 0.8)
    ),
    url("../images/background.jpg");
}

.blog-hero {
  background-image: linear-gradient(
      rgba(44, 62, 80, 0.8),
      rgba(44, 62, 80, 0.8)
    ),
    url("../images/background.jpg");
}

/* Graduation Page Styles */
.graduation-info {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.graduation-details,
.graduation-video {
  flex: 1;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.info-item i {
  font-size: 24px;
  color: var(--secondary-color);
  margin-right: 15px;
  margin-top: 5px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 20px;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
}

/* Soccer Club Styles */
.about-club {
  display: flex;
  gap: 40px;
  align-items: center;
}

.club-text {
  flex: 1;
}

.club-image {
  flex: 1;
}

.club-image img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.club-stats {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
  background: var(--light-color);
  padding: 20px;
  border-radius: var(--border-radius);
  flex: 1;
}

.stat-item h3 {
  font-size: 36px;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.schedule-item {
  display: flex;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 15px;
  align-items: center;
  padding: 15px;
}

.schedule-date {
  text-align: center;
  padding: 10px 20px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: var(--border-radius);
  margin-right: 20px;
}

.schedule-date .day {
  font-size: 24px;
  font-weight: 700;
  display: block;
}

.schedule-date .month {
  font-size: 14px;
  display: block;
}

.schedule-details {
  flex: 1;
}

.schedule-details h3 {
  margin-bottom: 5px;
}

.schedule-details p {
  margin-bottom: 5px;
  color: var(--text-light);
}

.schedule-details i {
  margin-right: 5px;
  color: var(--secondary-color);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.partner-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  height: 150px;
}

.partner-card:hover {
  transform: translateY(-5px);
}

.partner-card img {
  max-width: 100%;
  max-height: 100%;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition);
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

.registration-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  max-width: 800px;
  margin: 0 auto;
}

/* Courses Page Styles */
.courses-table {
  overflow-x: auto;
}

.courses-table table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 30px;
}

.courses-table th,
.courses-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--light-color);
}

.courses-table th {
  background: var(--primary-color);
  color: var(--white);
}

.courses-table tr:hover {
  background: rgba(231, 76, 60, 0.05);
}

.btn-small {
  padding: 8px 15px;
  font-size: 14px;
}

.apply-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  text-align: center;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--secondary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

/* Blog Page Styles */
.blog-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.category-btn {
  padding: 8px 20px;
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.category-btn.active,
.category-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.featured-post {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
}

.featured-image {
  flex: 1;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-content {
  flex: 1;
}

.post-category {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  margin-bottom: 15px;
}

.post-excerpt {
  margin-bottom: 20px;
  color: var(--text-light);
}

.post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: var(--text-light);
  font-size: 14px;
}

.post-meta i {
  margin-right: 5px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.post-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.post-card:hover {
  transform: translateY(-10px);
}

.post-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.post-card:hover .post-image img {
  transform: scale(1.1);
}

.post-content {
  padding: 20px;
}

.read-more {
  color: var(--secondary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.read-more i {
  margin-left: 5px;
  transition: var(--transition);
}

.read-more:hover i {
  transform: translateX(5px);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-link {
  display: inline-block;
  padding: 8px 15px;
  margin: 0 5px;
  border-radius: var(--border-radius);
  color: var(--primary-color);
  transition: var(--transition);
}

.page-link:hover,
.page-link.active {
  background: var(--secondary-color);
  color: var(--white);
}

.newsletter {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
}

.newsletter-content {
  flex: 1;
}

.newsletter h2 {
  color: var(--white);
}

.newsletter-form {
  flex: 1;
}

.newsletter-form form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.newsletter-form button {
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .graduation-info,
  .about-club,
  .featured-post {
    flex-direction: column;
  }

  .graduation-video,
  .club-image,
  .featured-image {
    margin-top: 30px;
  }

  .newsletter {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .schedule-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .schedule-date {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .schedule-actions {
    margin-top: 15px;
    width: 100%;
  }

  .schedule-actions .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero p {
    font-size: 18px;
  }

  .club-stats {
    flex-direction: column;
  }

  .apply-steps {
    grid-template-columns: 1fr;
  }
}
.video-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 20px auto;
}

.video-thumbnail {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.video-thumbnail-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .video-thumbnail-image {
  transform: scale(1.03);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 20%;
  transition: all 0.2s ease;
}

.play-button-shape {
  width: 100%;
  height: 100%;
}

.video-thumbnail:hover .play-button {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}
