body {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
   
    background: #fff;
  }
  .header {
    display: flex;
    align-items: center;
    padding: 1rem 2vw 0.5rem 2vw;
    background: #fff;
    box-sizing: border-box;
  }
  .logo {
    width: 100px;
    height: 100px;
    margin-right: 0.5rem;
    object-fit: contain;
  }
  .school-name {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: #535353;
    line-height: 1.2;
  }
  .navbar {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    position: relative;
  }
  .navbar-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    flex: 1;
  }
  .navbar-links a {
    position: relative;
    padding: 0.5rem 0.8rem;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
    text-align: center;
  }
  .navbar-links a::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 3px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
    transform-origin: left;
  }
  .navbar-links a:hover::after,
  .navbar-links a:focus::after {
    transform: scaleX(1);
  }
  .hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    margin-left: auto;
    user-select: none;
    background: none;
    border: none;
    color: #222;
  }
  .mobile-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .mobile-menu a {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid #eee;
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
  }
  .mobile-menu a:last-child {
    border-bottom: none;
  }
  .mobile-menu.show {
    display: flex;
  }
  @media (max-width: 900px) {
    .header {
      flex-direction: column;
      align-items: flex-start;
      gap: 0.5rem;
    }
    .navbar {
      width: 100%;
      justify-content: flex-end;
      margin-top: 0.5rem;
    }
  }
  @media (max-width: 768px) {
    .navbar-links {
      display: none;
    }
    .hamburger {
      display: block;
    }
    .header {
      flex-direction: row;
      align-items: center;
      padding: 1rem 1vw 0.5rem 1vw;
    }
  }

  .hero {
    position: relative;
    width: 100vw;
    min-height: 400px;
    height: 400px;
    background: url('../image/extra\ img.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: scroll;
  }
  .hero-overlay {
    
    background: rgba(0, 0, 0, 0.4);
    border-radius: 18px;
    padding: 1.5rem 2vw;
    text-align: center;
    color: #fff;
    max-width: 700px;
    width: 90vw;
    margin: 0 auto;
  }

  .hero-overlay h1 {
    font-size: 3.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.1;
  }
  @media (max-width: 600px) {
    .hero-overlay h1 {
      font-size: 3rem;
    }
  
    .hero-overlay {
      padding: 1.2rem 2vw;
    }
    .logo {
      width: 40px;
      height: 40px;
    }
  } 

  .hero-text{

    padding: 20px;
    text-align: center;
    padding: 70px;
  }
  .hero-text h1{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: 2px;
    line-height: 1.1;
  }
  .hero-text p{
    font-family: poppins;

color: gray;
  }

.heading-line2 {
    width: 300px;        /* Length of the green line */
    height: 3px;         /* Thickness of the line */
    background-color:#FF8E34;
    margin: 0 auto 10px; /* Center the line and add space below */
  }
  .hero2 {
    position: relative;
    width: 100vw;
    min-height: 100px;
    height: 300px;
    background: url('https://z-p3-scontent.fcmb7-1.fna.fbcdn.net/v/t39.30808-6/465844306_9675555509128067_1850205302801988629_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=cf85f3&_nc_eui2=AeFKkJo4r0fh63nnpqz66WEDw9UmyTw28U7D1SbJPDbxTplNzK4f0sG593-zW0Vwnil9hgOpv5kZN4H22gjxv0LH&_nc_ohc=Xh7NIt0FfLAQ7kNvwGfF3J4&_nc_oc=AdmtrGAQXZI6Pb3EJIjwKtB-g-l7CjprNVJkmKddk7VnDDUxUcKP3hwSaZNf5TX5AMQ&_nc_zt=23&_nc_ht=z-p3-scontent.fcmb7-1.fna&_nc_gid=rVS889jjv-js4DV-a8579g&oh=00_AfMT6twcOwNnUXezAv_a3jozVZjTRKxTJ8j2vhjlK9Gmcw&oe=686D1DF1') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
  }
  .clubs-section {
    padding: 48px 0 0 0;
    min-height: 100vh;
    background: #333;
    text-align: center;
  }
  .clubs-title {
    color: white;
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 32px;
  }
  .clubs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px 36px;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto 36px auto;
  }
  .club-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .club-card:hover {
    transform: translateY(-6px) scale(1.04);
    
  }
  .club-logo {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  }
  .club-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .club-name {
    font-weight: 600;
    font-size: 1.08rem;
    margin-top: 4px;
    color: #fff;
  }
  .clubs-desc {
    margin: 48px auto 0 auto;
    max-width: 700px;
    color: #bdbdbd;
    font-size: 1rem;
    line-height: 1.5;
  }
  /* Modal Styles */
  .club-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(0,0,0,0.65);
    justify-content: center;
    align-items: center;
  }
  .club-modal.show {
    display: flex;
  }
  .club-modal-content {
    background: #232323;
    color: #fff;
    border-radius: 18px;
    max-width: 480px;
    width: 92vw;
    padding: 32px 24px 24px 24px;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    animation: modalPop 0.25s cubic-bezier(.4,0,.2,1);
    max-height: 90vh;
    overflow-y: auto;
  }
  @keyframes modalPop {
    0% { transform: scale(0.85); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
  }
  .club-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.2s;
  }
  .club-modal-close:hover {
    color: #bdbdbd;
  }
  .club-modal-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
  }
  .club-modal-logo {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .club-modal-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .club-modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
  }
  .club-modal-desc {
    font-size: 1.05rem;
    color: #e0e0e0;
    margin-bottom: 18px;
    line-height: 1.6;
    white-space: pre-line;
  }
  .club-modal-images {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .club-modal-images img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  }
  @media (max-width: 900px) {
    .clubs-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 36px 18px;
    }
  }
  @media (max-width: 600px) {
    .clubs-title {
      font-size: 1.3rem;
    }
    .clubs-grid {
      grid-template-columns: 1fr;
      gap: 28px 0;
    }
    .club-logo {
      width: 90px;
      height: 90px;
    }
    .club-modal-content {
      padding: 18px 6vw 18px 6vw;
    }
    .club-modal-logo {
      width: 40px;
      height: 40px;
    }
    .club-modal-title {
      font-size: 1.05rem;
    }
    .club-modal-images img {
      width: 60px;
      height: 60px;
    }
  } 

  .sports-section {
    text-align: center;
    padding: 40px 0 60px 0;
    background: #fff;
  }
  .sports-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #111;
  }
  .sports-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 38px 36px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
  }
  .sport-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.13);
    padding: 32px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .sport-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  }
  .sport-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 18px;
  }
  .sport-label {
    font-size: 0.98rem;
    color: #1976d2;
    margin-bottom: 2px;
  }
  .sport-teacher {
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
  }
  
  @media (max-width: 900px) {
    .sports-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 28px 16px;
    }
  }
  @media (max-width: 600px) {
    .sports-title {
      font-size: 1.3rem;
    }
    .sports-grid {
      grid-template-columns: 1fr;
      gap: 18px 0;
    }
    .sport-card {
      padding: 18px 8px 12px 8px;
    }
    .sport-card img {
      width: 60px;
      height: 60px;
    }
  }

/* Dark Footer */
.footer-dark {
    background: #333;
    color: #fff;
    padding: 0 0 0 0;
    margin-top: 0;
    border-radius: 0;
  }
  .footer-divider-orange {
    height: 3px;
    background: #ff8e34;
    border-radius: 2px 2px 0 0;
    margin-bottom: 0;
  }
  .footer-content-dark {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 30px 20px;
    flex-wrap: wrap;
  }
  .footer-logo-dark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-width: 200px;
  }
  .footer-logo-dark img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  .footer-motto-dark {
    font-size: 1.05rem;
    color: #ff8e34;
    font-style: italic;
    line-height: 1.4;
    text-align: center;
  }
  .footer-links-dark {
    min-width: 180px;
    text-align: center;
  }
  .footer-links-title-dark {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #ff8e34;
  }
  .footer-links-dark ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-links-dark ul li {
    margin-bottom: 8px;
  }
  .footer-links-dark ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
  }
  .footer-links-dark ul li a:hover {
    color: #ff8e34;
  }
  .footer-contact-dark {
    min-width: 200px;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    text-align: center;
  }
  .footer-contact-dark .footer-links-title-dark {
    margin-bottom: 8px;
  }
  @media (max-width: 900px) {
    .footer-content-dark {
      flex-direction: column;
      align-items: center;
      gap: 24px;
      padding: 30px 10vw 20px 10vw;
    }
    .footer-logo-dark {
      align-items: center;
      text-align: center;
    }
  }
  @media (max-width: 600px) {
    .footer-content-dark {
      padding: 20px 4vw 14px 4vw;
      gap: 18px;
    }
    .footer-logo-dark img {
      width: 50px;
      height: 50px;
    }
    .footer-motto-dark {
      font-size: 0.95rem;
    }
    .footer-links-title-dark {
      font-size: 1rem;
    }
    .footer-contact-dark {
      font-size: 0.95rem;
    }
  } 
