
    :root {
      --primary: #ff4e00;
      --dark: #111;
      --light: #f8f9fa;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Outfit', sans-serif;
      line-height: 1.6;
      background: var(--light);
      color: #333;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    header {
      position: sticky;
      top: 0;
      background: var(--dark);
      z-index: 1000;
    }

    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      max-width: 1200px;
      margin: auto;
    }

  .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
}

.logo-text span {
  color: var(--primary);
}

@media (max-width: 768px) {
  .logo-img {
    width: 30px;
  }

  .logo-text {
    font-size: 1.2rem;
  }
}



    .nav-links {
      list-style: none;
      display: flex;
      gap: 1.5rem;
    }

    .nav-links li a {
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
    }

    .nav-links li a:hover {
      color: var(--primary);
    }

    .menu-icon {
      display: none;
      font-size: 26px;
      color: white;
      cursor: pointer;
    }


  
   .hero-slider {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

/* Slide setup */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-color: #000;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

/* Active Slide */
.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

/* Gradient overlay using ::after */
.hero-slide::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(230, 67, 54, 0.7), rgba(0, 0, 0, 0.4));
  z-index: 0;
}

/* Content Styling */
.hero-content {
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 2;
  color: white;
  max-width: 600px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-content h2 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content h2 span {
  color: #f44336;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.hero-content p b {
  color: #fff;
}

/* Button Styling */
.explore-btn {
  position: absolute;
  bottom: 60px;
  right: 60px;
  background: #f44336;
  color: white;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  z-index: 2;
}

.explore-btn:hover {
  background: #d32f2f;
}

/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background: #ffffffaa;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background: #f44336;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .hero-slide {
    background-size: contain !important;
    background-position: center top;
    background-repeat: no-repeat;
    height: 100%;
    aspect-ratio: auto;
    min-height: 100%;
  }
  
  .hero-slide {
    min-height: 300px;   /* Further reduce min-height for very small screens */
  }

  .hero-content {
    left: 20px;
    bottom: 60px;
    padding: 10px;
    backdrop-filter: blur(1.2px);
  }

  .hero-content h1 {
    font-size: 1.5rem;
    margin-top: 20px;
  }

  .hero-content h2 {
    font-size: 2rem;
    margin-top: 10px;
  }

  .hero-content p {
    display: none;
  }

  .explore-btn {
    right: 20px;
    bottom: 40px;
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}


@media (max-width: 468px) {

  .hero-slider {
      background-size: contain !important;
    background-position: center top;
    background-repeat: no-repeat;
    height: 25vh;
  }

  .hero-slide {
    min-height: 180px;   /* Further reduce min-height for very small screens */
  }

  .hero-content {
    left: 8px;
    bottom: 15px;
    padding: 8px;
  }

  .hero-content h1 {
    font-size: 0.7rem;
    margin-top: 3px;
  }

  .hero-content h2 {
    font-size: 1.2rem;
    margin-top: 3px;
  }

  .explore-btn {
    right: 8px;
    bottom: 15px;
    padding: 6px 12px;
    font-size: 0.75rem;
  }

  .slider-dots .dot {
    width: 8px;
    height: 8px;
  }
}















    .section {
      padding: 6px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .section h2 {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 40px;
      color: #222;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .card {
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .team-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
    }

    .team-member {
      background: white;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
      width: 200px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }

    .team-member img {
      width: 100px;
      border-radius: 50%;
      margin-bottom: 10px;
    }

    footer {
      background: var(--dark);
      color: white;
      padding: 40px 20px;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1200px;
      margin: auto;
      gap: 20px;
    }

    .footer-section h3 {
      color: var(--primary);
      margin-bottom: 10px;
    }

    .footer-section ul {
      list-style: none;
      padding: 0;
    }

    .footer-section ul li {
      margin: 6px 0;
    }
    .footer-section ul li a:hover{
      color: red;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 20px;
      border-top: 1px solid #444;
      padding-top: 10px;
      font-size: 0.9rem;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background: var(--dark);
        position: absolute;
        right: 0;
        top: 60px;
        width: 200px;
        padding: 10px;
      }

      .nav-links.active {
        display: flex;
      }

      .menu-icon {
        display: block;
      }
    }

/* shortcut */

  #shortcut-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
}

.shortcut-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 25px 20px;
  width: 220px;
  min-height: 320px; /* Allows flexibility */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
  transition: transform 0.3s ease;
}

.shortcut-card:hover {
  transform: translateY(-6px);
}

.shortcut-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #e74c3c;
}

.shortcut-card p {
  font-size: 0.95rem;
  color: #555;
  flex-grow: 1;
  margin-bottom: 15px;
}

.shortcut-card a {
  display: inline-block;
  padding: 10px 16px;
  background-color: #e74c3c;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shortcut-card a:hover {
  background-color: #c0392b;
}

/* Desktop - 5 cards per row */
@media (min-width: 1200px) {
  .shortcut-card {
    flex: 0 0 calc(20% - 24px);
  }
}

/* Tablet - 3 cards per row */
@media (max-width: 768px) {
  .shortcut-card {
    flex: 0 0 calc(33.33% - 20px);
  }
}

/* Mobile - 2 cards per row */
@media (max-width: 480px) {
  .shortcut-card {
    flex: 0 0 calc(50% - 15px);
    padding: 20px 15px;
  }

  .shortcut-card h2 {
    font-size: 1rem;
  }

  .shortcut-card p {
    font-size: 0.85rem;
  }

  .shortcut-card a {
    font-size: 0.85rem;
    padding: 8px 14px;
  }
}

.sponsor-section {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.sponsor-header h2 {
  font-size: 2.2rem;
  color: #111;
  margin-bottom: 10px;
}

.sponsor-header h2 span {
  color: #ff4e00;
}

.sponsor-header p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  max-width: 700px;
  margin: 0 auto 40px auto;
  padding: 0 10px;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 40px;
}

.sponsor-card {
  background: #f9f9f9;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.sponsor-sub {
  font-size: 0.85rem;
  color: #ff4e00;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sponsor-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 3px solid #ff4e00;
}

.sponsor-card h3 {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  text-align: center;
}

.sponsor-contact {
  margin-top: 30px;
}

.sponsor-btn {
  background: #ff4e00;
  color: white;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.sponsor-btn:hover {
  background: #e34300;
}

/* Tablets */
@media (max-width: 768px) {
  .sponsor-header h2 {
    font-size: 1.8rem;
  }

  .sponsor-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  .sponsor-card img {
    width: 100px;
    height: 100px;
  }
}

/* Small screens */
@media (max-width: 480px) {
  .sponsor-header h2 {
    font-size: 1.6rem;
  }

  .sponsor-header p {
    font-size: 0.9rem;
  }

  .sponsor-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .sponsor-card {
    padding: 20px 15px;
  }

  .sponsor-card img {
    width: 80px;
    height: 80px;
  }

  .sponsor-card h3 {
    font-size: 0.9rem;
  }

  .sponsor-sub {
    font-size: 0.75rem;
  }

  .sponsor-btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}
