html, body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: black;
    color: white;
    text-align: center; 
    overflow-x: hidden;
}
/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: black;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Logo */
.logo img {
    height: 105px;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 80px;
}

/* Navigation Links Styling */
.nav-links li a {
    text-decoration: none;
    color: white; /* Default color */
    font-size: 18px;
    transition: color 0.3s ease-in-out;
}

.nav-links li a:hover {
    color: red;
}

.nav-links li a.active {
    color: red;
    font-weight: bold;
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown > a { /* Style the 'More' link directly */
    display: flex;
    align-items: center;
    gap: 5px; /* Space between text and icon */
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: black;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    top: 100%;
    left: 0;
    padding: 0;
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content li {
    padding: 10px 15px;
    text-align: left;
}

.dropdown-content li a {
    display: block;
    padding: 0;
    font-size: 16px;
}

.dropdown-content li a:hover {
    background-color: #333;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    margin-right: 28px; /* Add some spacing */
}

/* Media Query for Mobile */
@media screen and (max-width: 768px) {
    .logo img {
        height: 63px;
        margin-left: 25px;
    }
    header {
        padding: 15px 2px;
    }
  .nav-links {
        display: none;
        flex-direction: column;
        position: absolute; /* Keep this */
        top: 70px;
        left: 0;
        width: 100%;
        background: black;
        text-align: center;
        padding: 15px 0;
        transition: all 0.3s ease-in-out;
        z-index: 10;
        overflow-y: auto;
    }


    .nav-links.active {
        display: flex;
    }

   .nav-links li {
        margin: 10px 0;
        position: relative; /* Add this to make .dropdown-content positioned relative to it */
    }

    .nav-links li a {
        font-size: 18px;
    }
    .hamburger {
        display: block;
    }

    .dropdown {
        display: block; /* Ensure dropdown parent is visible in mobile */
    }

  .dropdown-content {
        position: absolute;
        top: 100%; /* Initially position below */
        left: 0;
        background-color: black;
        box-shadow: none;
        width: 100%;
        text-align: center;
        z-index: 11;
        overflow-y: auto;
        max-height: 300px;
    }
    .dropdown.active-mobile .dropdown-content {
        display: block;
    }
 .dropdown > a {
        justify-content: center;
        padding: 10px 0;
    }

    .dropdown-content li a {
        display: block;
        padding: 10px 0;
        font-size: 12px;
    }
}
.hero {
    text-align: center;
    padding: 232px 20px 2px 2px;
    background: url('../assets/tiger.png') no-repeat center center/contain;
    min-height: 10vh;
  }
  
  .hero-content {
    position: relative;
    transform: translateY(-70px);
    text-align: center;
  }
  
  .hero-content h2 {
    font-size: 55px;
    font-weight: 900;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 2px red;
    text-shadow: 2px 2px 0 black, -2px -2px 0 black, 
                 2px -2px 0 black, -2px 2px 0 black;
    letter-spacing: 2px;
  }
  
  .vector-img {
    position: absolute;
    right: 93px;
    bottom: 286px;
    width: 140px;
  }
  
  .cta-btn {
    background: red;
    color: white;
    padding: 17px 34px;
    border: none;
    cursor: pointer;
    border-radius: 27px;
    font-size: 16px;
  }
  
  .gallery {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: -24px;
 margin-left: 355px;
  }
  
  .gallery img {
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }
  
  .gallery img:nth-child(1),
  .gallery img:nth-child(2),
  .gallery img:nth-child(4),
  .gallery img:nth-child(5) {
    width: 150px;
    height: 220px;
  }
  
  .gallery img:nth-child(3) {
    width: 220px;
    height: 280px;
  }
  @media (max-width: 1024px){
    .gallery {
      
     margin-left: 64px;
      }
  }
@media (max-width: 768px) {
    .gallery img:nth-child(1),
    .gallery img:nth-child(2),
    .gallery img:nth-child(4),
    .gallery img:nth-child(5) {
        width: 150px;
        height: 166px;
    }
    .gallery {
     margin-left: -36px;
        overflow: hidden;
        white-space: nowrap;
      }
      .vector-img {
  
        bottom: 211px;}
    }
    @media (max-width: 430px) {
        .gallery img:nth-child(1),
        .gallery img:nth-child(2),
        .gallery img:nth-child(4),
        .gallery img:nth-child(5) {
            width: 150px;
            height: 166px;
        }
        .gallery {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: -24px;
            overflow: hidden;
            white-space: nowrap;
          }
        .vector-img {
            position: absolute;
            right: 32px;
            bottom: 174px;
            width: 55px;
        }
        .hero-content h2 {
            font-size: 34px;
        }
        }


.cheer-groups {
    padding: 50px 20px;
    text-align: center;
    margin-top: -148px;
}

h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

p {
    font-size: 16px;
    color: #bbb;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.tab {
    background: transparent;
    border: 1px solid #FE0000;
    color: white;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 16px;
    transition: 0.3s;
}

.tab.active {
    background-color: #FE0000;
}

.teams {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: auto;
    margin-top: 30px;
}
.rec p {
    max-width: 618px; 
    word-wrap: break-word;
    text-align: center;
    margin: auto;
}

.team-card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.icon {
    font-size: 30px;
    background: #FE0000;
    color: white;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 10px;
}

h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.team-card p {
    font-size: 14px;
    color: #bbb;
}

.arrow {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 20px;
    color: #777;
    transition: 0.3s;
}

.team-card:hover .arrow {
    color: white;
}

.hidden {
    display: none;
}
/* Mission Title */
.mission {
    padding: 40px 20px;
    text-align: center;
}

.mission h2 {
    font-size: 28px;
    margin-bottom: 5px;
}

.mission p {
    font-size: 16px;
    color: #bbb;
}
@media (max-width: 430px ){
    .teams {
   
        grid-template-columns: repeat(1, 1fr);
      
    }
}
/* table section */

    .schedule-section {
      background: #0a0a0a;
      padding: 20px;
      max-width: 800px;
      margin: auto;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
      border: 1px solid red;
      margin-top: 5%;
      color: #bbb;
    }

    .schedule-section h1 {
      font-size: 28px;
      margin-bottom: 5px;
      text-align: center;
      color: #d4d4d4;
    }

    .schedule-section p {
      font-size: 16px;
      margin-bottom: 20px;
      text-align: center;
      color: #979696;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      overflow-x: auto;
    }

    table thead {
      background-color: #3b3b3b;
      color: white;
    }

    table th, table td {
      padding: 12px 10px;
      text-align: center;
      border: 1px solid #ddd;
    }


    @media (max-width: 600px) {
      table th, table td {
        font-size: 14px;
        padding: 10px 5px;
      }
    }
   
/* About Section Grid */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
}

/* About Boxes */
.about-box {
    background: red;
    padding: 40px;
    text-align: left;
    color: white;
    border-radius: 10px;
    position: relative;
}

.about-box h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.about-box p {
    font-size: 14px;
    color: #fff;
}

.btn {
    background: white;
    color: red;
    padding: 10px 20px;
    border: none;
    font-size: 14px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #f2f2f2;
}

/* About Icons */
.about-icon {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 24px;
}

/* Coach Section */
.coach-box {
    background: black;
    border: 2px solid red;
}

.coach-box .btn {
    background: red;
    color: white;
}

.coach-box .btn:hover {
    background: darkred;
}

.coach-icon {
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 24px;
    color: red;
}

/* Image Styling */
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        grid-template-columns: 1fr;
    }
}




/* Timeline Section */
.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.timeline-line {
    position: absolute;
    left: 50%;
    width: 4px;
    height: 87%;
    background: red;
    transform: translateX(-50%);
}

.timeline-line::before,
.timeline-line::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    transform: translateX(-50%);
}

.timeline-line::before {
    top: -10px;
}

.timeline-line::after {
    bottom: -10px;
}

.timeline-item {
    position: relative;
    width: 45%;
    padding: 20px;
    margin: 20px 0;
    background: #111;
    border-radius: 8px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}
.icon {
    background: red;
    color: white;
    font-size: 18px;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.left {
    left: 0;
    margin-left: -4%;
}
.right {
    left: 50%;
    margin-left: 5%;
}
.content {
    font-size: 14px;
}
/* Responsive Design */
@media (max-width: 768px) {
    .timeline-line {
        left: 15px;
    }

    .timeline-item {
        width: 90%;
        left: 15px;
    }

    .left, .right {
        margin-left: 10%;
    }
}
@media (max-width: 430px) {
    .left, .right {
        margin-left: -1%;
    }
    .timeline-item {
        width: 83%;
        left: 15px;
    }
    .icon {width: 41px;
        height: 28px;}
    
}
/* contact */
.box {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 50px 20px;
}

.contact-container {
  display: flex;
  background: #111;
  color: white;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  max-width: 1000px;
  width: 100%;
  flex-wrap: wrap;
}

.contact-form {
  flex: 1;
  padding: 40px;
}

.contact-form h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.contact-form p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 25px;
  border: none;
  background: #222;
  color: white;
  resize: none;
  outline: none;
}

.contact-btn {
  background: transparent;
  color: red;
  border: 2px solid red;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
  width: fit-content;
}

.contact-btn:hover {
  background: red;
  color: white;
}

.contact-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-image {
    max-height: 300px;
  }
}
/* announcmeent */
.announcement-section {
  padding: 70px 20px;
  background-color: #1b1b1b;
  margin-top: 4%;
}

.announcement-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 900px;
  margin: auto;
  flex-wrap: wrap;
  text-align: left;
}

.announcement-icon img {
  width: 80px;
  height: auto;
}

.announcement-text h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ece7e7;
}

.announcement-text p {
  font-size: 16px;
  color: #808080;
  margin: 6px 0;
}

/* Responsive Design */
@media (max-width: 600px) {
  .announcement-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .announcement-icon img {
    width: 60px;
  }
}

/* Footer Styling */
.footer {
    background: black;
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
}

/* Logo Styling */
.footer-logo img {
    width: 120px;
    padding: 10px;
}

/* Footer Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 20px;
    background: black;
    color: white;
}

/* Footer Links */
.footer-links {
    flex: 1;
    text-align: left;
    min-width: 200px;
}

.footer-links h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: red;
}

/* Social Media Icons */
.footer-social {
    flex: 1;
    text-align: center;
    min-width: 200px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
}

.social-icons a {
    color: red;
    font-size: 20px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    background: #111;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-bottom p {
    font-size: 14px;
    margin: 0;
}

.bottom-links a {
    color: white;
    text-decoration: none;
    margin-left: 15px;
    font-size: 14px;
    transition: 0.3s;
}

.bottom-links a:hover {
    color: red;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: row; /* Change from column to row */
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .footer-links, .footer-social {
        flex: 1;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
@media (max-width: 430px) {
    .footer-container {
        flex-direction: column; /* Change from column to row */
        flex-wrap: wrap;
        text-align: center;
        justify-content: center;
    }

    .footer-links, .footer-social {
        flex: 1;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: row;
        text-align: center;
    }
    .footer-bottom p{
        font-size: 8px;
    }
    .bottom-links a {
        font-size: 10px;
    }
}