/* Sports Page Styles */
:root {
    --sports-primary: #059669;
    --sports-secondary: #10b981;
    --sports-accent: #34d399;
    --sports-light: #d1fae5;
    --sports-dark: #064e3b;
    --sports-gradient: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    --sports-gradient-light: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  }
  
  /* Hero Section */
  .sports-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    background: var(--sports-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  
  .sports-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("/placeholder.svg?height=800&width=1200&text=Sports+Excellence") center / cover;
    opacity: 0.2;
    z-index: 1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: rgba(5, 150, 105, 0.8);*/
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
  }
  
  .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
  }
  
  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    animation: fadeInUp 1s ease-out 0.4s both;
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--sports-accent);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  /* Section Styles */
  .sports-programs-section,
  .sports-facilities-section,
  .sports-faculty-section,
  .sports-achievements-section,
  .sports-philosophy-section {
    padding: 5rem 0;
  }
  
  .sports-facilities-section,
  .sports-faculty-section {
    background: #f8fafc;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--sports-dark);
    margin-bottom: 1rem;
    position: relative;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--sports-gradient);
    border-radius: 2px;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  /* Programs Grid */
  .programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .program-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
  }
  
  .program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sports-gradient);
  }
  
  .program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
  }
  
  .program-icon {
    width: 80px;
    height: 80px;
    background: var(--sports-gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
  }
  
  .program-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sports-dark);
    margin-bottom: 1rem;
  }
  
  .program-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .program-details {
    margin-bottom: 2rem;
  }
  
  .detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #475569;
  }
  
  .detail-item i {
    color: var(--sports-primary);
    width: 16px;
  }
  
  .program-btn {
    background: var(--sports-gradient);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    justify-content: center;
  }
  
  .program-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
  }
  
  /* Facilities Grid */
  .facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .facility-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
  }
  
  .facility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
  }
  
  .facility-image {
    position: relative;
    height: 250px;
    overflow: hidden;
  }
  
  .facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }
  
  .facility-card:hover .facility-image img {
    transform: scale(1.05);
  }
  
  .facility-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 150, 105, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .facility-card:hover .facility-overlay {
    opacity: 1;
  }
  
  .facility-overlay i {
    color: white;
    font-size: 2rem;
  }
  
  .facility-content {
    padding: 2rem;
  }
  
  .facility-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sports-dark);
    margin-bottom: 1rem;
  }
  
  .facility-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  
  .facility-features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sports-primary);
    margin-bottom: 0.5rem;
  }
  
  .facility-features p {
    color: #64748b;
    font-size: 0.9rem;
  }
  
  /* Faculty Grid */
  .faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .faculty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
  }
  
  .faculty-image {
    height: 300px;
    overflow: hidden;
    position: relative;
  }
  
  .faculty-image::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(transparent, rgba(5, 150, 105, 0.1));
  }
  
  .faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: 15px;
  }
  
  .faculty-content {
    padding: 2rem;
  }
  
  .faculty-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--sports-dark);
    margin-bottom: 0.5rem;
  }
  
  .faculty-designation {
    color: var(--sports-primary);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }
  
  .faculty-details {
    text-align: left;
  }
  
  .detail-row {
    display: flex;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
  }
  
  .detail-label {
    font-weight: 600;
    color: var(--sports-dark);
    min-width: 120px;
  }
  
  .detail-value {
    color: #64748b;
    flex: 1;
  }
  
  /* Achievements Grid */
  .achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
  }
  
  .achievement-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--sports-primary);
  }
  
  .achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.15);
  }
  
  .achievement-icon {
    width: 60px;
    height: 60px;
    background: var(--sports-gradient-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .achievement-icon i {
    color: var(--sports-primary);
    font-size: 1.5rem;
  }
  
  .achievement-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sports-dark);
    margin-bottom: 1rem;
  }
  
  .achievement-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  
  .achievement-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
  }
  
  .achievement-category,
  .achievement-level,
  .achievement-date {
    background: var(--sports-light);
    color: var(--sports-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
  }
  
  /* Philosophy Section */
  .sports-philosophy-section {
    background: var(--sports-gradient-light);
  }
  
  .philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .philosophy-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--sports-dark);
    margin-bottom: 1.5rem;
  }
  
  .philosophy-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
  }
  
  .philosophy-list {
    list-style: none;
    padding: 0;
  }
  
  .philosophy-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #475569;
    font-size: 1.05rem;
  }
  
  .philosophy-list i {
    color: var(--sports-primary);
    font-size: 1.2rem;
  }
  
  .philosophy-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(5, 150, 105, 0.2);
  }
  
  /* CTA Section */
  .sports-cta-section {
    background: var(--sports-gradient);
    color: white;
    padding: 5rem 0;
    text-align: center;
  }
  
  .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .cta-btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
  }
  
  .cta-btn.primary {
    background: white;
    color: var(--sports-primary);
    border: none;
    cursor: pointer;
  }
  
  .cta-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
  }
  
  .cta-btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
  }
  
  .cta-btn.secondary:hover {
    background: white;
    color: var(--sports-primary);
    transform: translateY(-2px);
  }
  
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
  }
  
  .modal-content {
    background-color: white;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  
  .modal-header {
    background: var(--sports-gradient);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
  }
  
  .close {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
  }
  
  .close:hover {
    opacity: 0.7;
  }
  
  .modal-body {
    padding: 2rem;
  }
  
  .enrollment-form {
    display: grid;
    gap: 1.5rem;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-weight: 600;
    color: var(--sports-dark);
    margin-bottom: 0.5rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.75rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--sports-primary);
  }
  
  .form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
  }
  
  .btn-primary {
    background: var(--sports-gradient);
    color: white;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(5, 150, 105, 0.3);
  }
  
  .btn-secondary {
    background: #f1f5f9;
    color: #64748b;
  }
  
  .btn-secondary:hover {
    background: #e2e8f0;
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animate-in {
    animation: fadeInUp 0.6s ease-out;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  
    .hero-subtitle {
      font-size: 1.2rem;
    }
  
    .hero-stats {
      gap: 2rem;
    }
  
    .stat-number {
      font-size: 2rem;
    }
  
    .programs-grid,
    .facilities-grid,
    .faculty-grid,
    .achievements-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .philosophy-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .cta-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .modal-content {
      width: 95%;
      margin: 5% auto;
    }
  
    .form-actions {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .sports-hero {
      height: 60vh;
      min-height: 500px;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .hero-stats {
      flex-direction: column;
      gap: 1.5rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .programs-grid {
      grid-template-columns: 1fr;
    }
  
    .program-card,
    .facility-card,
    .faculty-card,
    .achievement-card {
      margin: 0 1rem;
    }
  }
  