html, body {
  background: #111 !important;
  color: #fff;
  min-height: 100%;
}

/* Global Styles */
:root {
    --primary-color: #0a7e2c;
    --secondary-color: #f7d300;
    --text-color: #333;
    --light-text: #fff;
    --dark-bg: #022008;
    --gray-bg: #f5f5f5;
    --border-color: #e1e1e1;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  section {
    padding: 80px 0;
  }
  
  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
  }
  
  p {
    margin-bottom: 20px;
  }
  
  a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  a:hover {
    color: var(--secondary-color);
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 15px;
    position: relative;
  }
  
  .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
  }
  
  ul {
    list-style: none;
  }
  
  button {
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
  }
  
  img {
    max-width: 100%;
    height: auto;
  }
  
  .hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    color: var(--light-text);
    overflow: hidden;
    background-color: var(--dark-bg);
    background-image: url('drive-download-20250610T101656Z-1-001/9H9A0808-1.jpg'); /* Path to your new image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay for better text visibility */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
    z-index: 1;
}

/* Ensure all hero content is above the overlay */
.hero > * {
    position: relative;
    z-index: 2;
}

/* Mobile responsive adjustments */
@media screen and (max-width: 768px) {
    .hero {
        background-position: 50% 30%; /* Focus on upper portion of image on mobile */
        min-height: 600px; /* Slightly reduced minimum height for mobile */
    }
     .navbar {
    /* Keep the navbar itself transparent */
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    /* Adjust padding for mobile */
    padding: 10px 20px;
    width: 95%;
    top: 10px;
  }
    .hero-content {
        padding-top: 60px; /* Space for mobile navigation */
    }
}
  
  .football-field {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.15;
    z-index: 0;
    overflow: hidden;
  }
  
  .center-circle {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50px; /* Full pill shape */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2); /* Optional: subtle border for definition */
}

.navbar.scrolled {
  padding: 12px 40px;
  background-color: rgba(0, 0, 0, 0.2); /* More transparent on scroll */
}

.navbar:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 40px rgba(196, 192, 192, 0.15);
  background: rgba(255, 255, 255, 0.15); /* Slightly more visible on hover */
}
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
  }
  
  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--light-text);
    border-radius: 3px;
    transition: var(--transition);
  }
  
  .nav-links {
    display: flex;
    gap: 30px;
  }
  
  .nav-links li a {
    color: var(--light-text);
    font-weight: 600;
    position: relative;
  }
  
  .nav-links li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
  }
  
  .nav-links li a:hover:after {
    width: 100%;
  }
  
  .tooltip {
    position: absolute;
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 100;
    pointer-events: none;
  }
  
  /* Hero Content */
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 150px;
    text-align: center;
  }
  
  .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
  }
  
  
  .primary-btn {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
  }
  
  .primary-btn:hover {
    background-color: #e7c500;
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
  }
  
  .secondary-btn {
    background-color: transparent;
    color: var(--light-text);
    border: 2px solid var(--light-text);
  }
  
  .secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
  }
  
  /* Skills Highlight */
  .skills-highlight {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  
  .skill-tag {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    cursor: pointer;
  }
  
  .skill-tag:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    transform: translateY(-3px);
  }
  
  /* Interactive Ball */
  .interactive-ball-area {
    position: absolute;
    bottom: 100px;
    right: 50px;
    width: 100px;
    height: 100px;
    z-index: 1;
  }
  
  
  
  /* Player Silhouette */
  .player-silhouette {
    position: absolute;
    bottom: 0;
    right: 5%;
    height: 90%;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
  }
  
  /* Footer */
  .footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 70px 0 20px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  
  .footer-logo {
    max-width: 300px;
  }
  
  .footer-logo .logo {
    margin-bottom: 20px;
  }
  
  .footer-links {
    display: flex;
    gap: 50px;
  }
  
  .footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    display: inline-block;
  }
  
  .footer-column h4:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -8px;
    left: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 10px;
  }
  
  .footer-column ul li a {
    color: #ccc;
    transition: var(--transition);
  }
  
  .footer-column ul li a:hover {
    color: var(--secondary-color);
  }
  
  .social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .social-link {
    color: #ccc;
    transition: var(--transition);
  }
  
  .social-link:hover {
    color: var(--secondary-color);
  }
  
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.9rem;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-bottom-links a {
    color: #ccc;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0) translateX(-50%);
    }
    40% {
      transform: translateY(-15px) translateX(-50%);
    }
    60% {
      transform: translateY(-7px) translateX(-50%);
    }
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Media Queries */
  @media (max-width: 1024px) {
    .hero-title {
      font-size: 3rem;
    }
    
    .facilities-showcase {
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
    
    .player-silhouette {
      opacity: 0.3;
    }
    
    .contact-container {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
    
    .hero-subtitle {
      font-size: 1rem;
    }
    
    .menu-toggle {
      display: flex;
    }
    
    .nav-links {
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      flex-direction: column;
      gap: 0;
      height: 0;
      overflow: hidden;
      transition: var(--transition);
    }
    
    .nav-links.active {
      height: calc(100vh - 80px);
      overflow-y: auto;
    }
    
    .nav-links li {
      opacity: 0;
      transform: translateY(20px);
      transition: var(--transition);
    }
    
    .nav-links.active li {
      opacity: 1;
      transform: translateY(0);
    }
    
    .nav-links li a {
      display: block;
      padding: 20px;
      text-align: center;
      font-size: 1.2rem;
    }
    
    .nav-links li a:after {
      display: none;
    }
    
    .cta-buttons {
      flex-direction: column;
    }
    
    .interactive-ball-area {
      display: none;
    }
    
    .stats-container {
      position: relative;
      left: 0;
      bottom: 0;
      justify-content: center;
      padding: 30px 0;
      flex-wrap: wrap;
    }
    
    .footer-content {
      flex-direction: column;
      gap: 50px;
    }
    
    .footer-links {
      flex-direction: column;
      gap: 30px;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  }
  
  @media (max-width: 576px) {
    .hero-title {
      font-size: 2rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .navbar {
      padding: 15px 20px;
    }
    
    .skills-highlight {
      display: none;
    }
    
    .scroll-indicator {
      display: none;
    }
    
    .stat-item {
      width: 45%;
    }
    
    .facilities-showcase {
      grid-template-columns: 1fr;
    }
    
    .testimonial-text {
      font-size: 0.9rem;
    }
    
    .contact-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
  /* Mobile Menu Fixes */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    position: relative;
    z-index: 101;
  }
  
  .menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--light-text);
    border-radius: 3px;
    transition: var(--transition);
  }
  

  
  /* Media Queries */
  @media (max-width: 768px) {
    .menu-toggle {
      display: flex;
    }
    
    .nav-links {
      display: none;
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      background-color: rgba(0, 0, 0, 0.9);
      flex-direction: column;
      gap: 0;
      height: 0;
      overflow: hidden;
      transition: var(--transition);
    }
    
    .nav-links.active {
       display: flex !important;
      flex-direction: column;
      height: calc(100vh - 80px);
      overflow-y: auto;
      padding: 20px 0;
      background-color: rgba(0, 0, 0, 0.9);
      position: fixed;
      top: 80px;
      left: 0;
      width: 100%;
      z-index: 100;
    }
    
    .nav-links li {
      opacity: 0;
      transform: translateY(20px);
      transition: var(--transition);
    }
    
    .nav-links.active li {
      opacity: 1;
      transform: translateY(0);
    }
    
    .nav-links li a {
      display: block;
      padding: 15px 20px;
      text-align: center;
      font-size: 1.1rem;
    }
    
    .nav-links li a:after {
      display: none;
    }
    
    .cta-buttons {
      flex-direction: column;
      max-width: 250px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .cta-btn {
      padding: 10px 20px;
      font-size: 0.9rem;
      width: 100%;
    }
  }
  
  @media (max-width: 576px) {
    .cta-btn {
      padding: 8px 15px;
      font-size: 0.85rem;
    }
    
    .hero-title {
      font-size: 2rem;
    }
    
    .hero-subtitle {
      font-size: 0.9rem;
      margin-bottom: 30px;
    }
    
    .navbar {
      padding: 15px;
    }
    
    .navbar.scrolled {
      padding: 10px 15px;
    }
  }
  

/* Sliding Images Container */
.sliding-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Individual Sliding Images */
.sliding-image {
  position: absolute;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: slideRightToLeft 16s infinite linear;
}

/* Gallery Grid */
.gallery-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.8), rgba(0, 204, 255, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    padding: 1rem;
}

.gallery-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #00ff88;
}

.gallery-info p {
    opacity: 0.8;
    line-height: 1.6;
}

.gallery-date {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.95);
    height: 0;
    opacity: 0;
    pointer-events: none;
    transition: height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s;
    overflow: hidden;
    z-index: 100;
  }
  .nav-links.active {
    height: calc(100vh - 80px);
    opacity: 1;
    pointer-events: auto;
    padding: 20px 0;
  }
  .nav-links li {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .nav-links.active li {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  /* Hamburger animation */
  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }

    .sliding-image {
        animation-duration: 12s;
    }

    .progress-bar {
        animation-duration: 12s;
    }

    .image-label {
        animation-duration: 12s;
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }

    .slide-progress {
        width: 150px;
    }


@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
}
.page-transition {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
}
.page-transition.fade-out {
  opacity: 0;
}
#transition-overlay {
  position: fixed;
  inset: 0;
  background: #111; /* or your brand color */
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(.4,0,.2,1);
}

#transition-overlay.active {
  opacity: 1;
  pointer-events: all;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-hero .hero-content h1,
.gallery-hero .hero-content p {
  opacity: 0;
  animation: fadeSlideUp 1s forwards;
}

.gallery-hero .hero-content h1 {
  animation-delay: 0.2s;
}

.gallery-hero .hero-content p {
  animation-delay: 0.6s;
}
.typewriter-cursor {
  display: inline-block;
  width: 1ch;
  animation: blink 0.8s steps(1) infinite;
  color: #00ff88; /* or your accent color */
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}
.navbar {
    position: relative;
    z-index: 1000;
    background: transparent; /* or remove black background */
}
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #2c3e50;
            font-weight: 700;
            font-size: 18px;
        }

        .logo-img {
            height: 70px;
            width: auto;
            display: block;
        }
      
/* Stats Section Styling */
.stats-section {
  background: transparent;
  padding: 4rem 2rem 2rem 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.stats-section h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #00ff88;
  margin-bottom: 2.5rem;
  letter-spacing: 1px;
  animation: fadeSlideUp 1s 0.1s both;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.stat-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,255,136,0.08);
  padding: 2.2rem 2.5rem 1.5rem 2.5rem;
  min-width: 180px;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeSlideUp 0.8s forwards;
}

.stat-card:nth-child(1) { animation-delay: 0.2s; }
.stat-card:nth-child(2) { animation-delay: 0.4s; }
.stat-card:nth-child(3) { animation-delay: 0.6s; }
.stat-card:nth-child(4) { animation-delay: 0.8s; }

.stat-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 16px 40px rgba(0,255,136,0.18);
}

.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: #f7d300;
  margin-bottom: 0.7rem;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px rgba(0,255,136,0.12);
  animation: popIn 0.7s;
}

.stat-label {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.85;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .stat-card {
    min-width: 0;
    width: 100%;
    padding: 1.5rem 1rem;
  }
}

/* Pop-in animation for numbers */
@keyframes popIn {
  0% { transform: scale(0.7); opacity: 0; }
  60% { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}
.download-cv-btn {
  background: linear-gradient(135deg, #00ff88, #f7d300);
  color: #111;
  border: none;
  border-radius: 30px;
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}
.download-cv-btn:hover {
  background: linear-gradient(135deg, #f7d300, #00ff88);
}
.player-profile img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1rem auto;
  box-shadow: 0 4px 16px rgba(0,255,136,0.15);
}