/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #08212E 0%, #1A4A66 100%);
  color: #CFF6F8;
  overflow-x: hidden;
}

/* Banner */
.main-banner img {
   margin-top: 100px;
  width: 100%;
  height: auto;
  filter: brightness(1.1) saturate(1.2);
  border-bottom: 4px solid #00D4FF;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}


/* Countdown */
#countdown {
  margin: 1rem auto;
  padding: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.5rem;
  letter-spacing: 1px;
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.8), 0 0 12px rgba(0, 212, 255, 0.5);
  background: linear-gradient(90deg, #008BCC, #00D4FF);
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 90%;
}

#countdown:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
}

/* Fest Heading */
.fest-heading {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #094C9B 0%, #00D4FF 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.fest-heading::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.6s;
}

.fest-heading:hover::before {
  left: 100%;
}

.fest-heading h1 {
  color: #FFFFFF;
  font-size: 3rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.7), 0 0 15px rgba(0, 212, 255, 0.5);
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.fest-heading h1:hover {
  transform: translateY(-3px);
}

.fest-heading p {
  color: #CFF6F8;
  font-size: 1.5rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
  margin-bottom: 0.5rem;
}

/* Events Section */
.events-section h1 {
  color: #FFFFFF;
  font-size: 2rem;
  padding: 1rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  background: linear-gradient(135deg, #094C9B 0%, #00D4FF 100%);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4), 0 0 8px rgba(0, 212, 255, 0.3);
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.events-section h1:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.6), 0 0 12px rgba(0, 212, 255, 0.5);
}

.events-section h1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: 0.5s;
}

.events-section h1:hover::before {
  left: 100%;
}

.events-section {
  margin: 2rem auto;
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(8, 33, 46, 0.9) 0%, rgba(26, 74, 102, 0.9) 100%);
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  text-align: center;
  max-width: 95%;
}

.events-section p {
  color: #CFF6F8;
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
  margin: 0.5rem 0;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 0.5rem;
  justify-content: center;
  justify-items: center;
}

/* Event Card */
.event-card {
  background: linear-gradient(135deg, rgba(4, 92, 90, 0.9) 0%, rgba(34, 180, 168, 0.8) 50%, rgba(12, 66, 181, 0.6) 100%);
  border: 2px solid #00D4FF;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 320px;
}

.event-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.5);
}

.event-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 0.5rem;
}

.event-body {
  padding: 0.75rem;
}

.event-body h3 {
  padding: 0.3rem 1rem;
  border-radius: 0.5rem;
  margin: 0.5rem 0;
  font-size: 1.2rem;
  font-family: 'Poppins', 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
  color: #1A1A1A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2), 0 0 8px rgba(255, 215, 0, 0.5);
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.event-body h3:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3), 0 0 12px rgba(255, 215, 0, 0.7);
}

.event-body h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.event-body h3:hover::before {
  left: 100%;
}

.badge {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.badge.solo, .badge.team {
  background-color: #0c36b4;
}

.event-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0.5rem 0;
  font-weight: bold;
  font-size: 0.9rem;
}

.event-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  padding: 0.4rem 0.8rem;
  background-color: #300c83;
  color: #fff;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background 0.3s;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
}

.btn:hover {
  background: #055b0d;
}

.btn.secondary {
  background: #ccc;
  color: #333;
}

.btn.secondary:hover {
  background: #c9ef0b;
}

/* Sponsor Section */
.sponsor-section {
  text-align: center;
  padding-top: 5px;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #094C9B 0%, #00D4FF 100%);
  margin: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 12px rgba(0, 212, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.sponsor-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.sponsor-section:hover::before {
  left: 100%;
}

.sponsor-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.7), 0 0 12px rgba(0, 212, 255, 0.5);
  transition: transform 0.3s ease;
}

.sponsor-section h2:hover {
  transform: translateY(-3px);
}

.sponsor-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100px;
  background: rgba(8, 33, 46, 0.9);
  border-radius: 0.5rem;
  box-shadow: inset 0 0 10px rgba(0, 212, 255, 0.3);
}

.sponsor-track {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: scroll-left 20s linear infinite;
  width: max-content;
  will-change: transform;
}

.sponsor-marquee:hover .sponsor-track {
  animation-play-state: paused;
}

.sponsor-track img {
  
  height: 60px;
  width: auto;
  filter: grayscale(70%) brightness(0.9);
  transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0.3rem;
  padding: 0.3rem;
  background: rgba(255, 255, 255, 0.1);
}

.sponsor-track img:hover {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.5);
}

/* Animation */
@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Footer */
footer {
  background: linear-gradient(180deg, #08212E 0%, #1A4A66 100%);
  color: #CFF6F8;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
  border-top: 4px solid #00D4FF;
  box-shadow: 0 -4px 12px rgba(0, 212, 255, 0.4);
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

footer:hover::before {
  left: 100%;
}

.footer-icons {
  margin-bottom: 1rem;
}

.footer-icons a {
  color: #FFFFFF;
  margin: 0 10px;
  font-size: 1.5rem;
  font-family: 'Roboto', sans-serif;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease, text-shadow 0.3s ease;
}

.footer-icons a:hover {
  color: #FFD700;
  transform: scale(1.2);
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
}

.navbar {
            background: rgba(8, 25, 49, 0.85);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(0, 212, 255, 0.2);
            color: #FFFFFF;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.8rem 3rem;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .navbar.scrolled {
            padding: 0.6rem 3rem;
            background: rgba(8, 25, 49, 0.95);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .nav-logo {
            font-size: 1.8rem;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #FFFFFF;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .nav-logo span {
            color: #00D4FF;
            text-shadow: 0 0 15px rgba(0, 212, 255, 0.7);
        }

        .nav-logo::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00D4FF, #094C9B);
            transition: width 0.5s ease;
        }

        .nav-logo:hover::after {
            width: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2.2rem;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links li a {
            color: #FFFFFF;
            text-decoration: none;
            font-size: 1.05rem;
            font-family: 'Roboto', sans-serif;
            font-weight: 500;
            padding: 0.6rem 0.8rem;
            border-radius: 0.4rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .nav-links li a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(9, 76, 155, 0.7), rgba(0, 212, 255, 0.7));
            border-radius: 0.4rem;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s ease;
            z-index: -1;
        }

        .nav-links li a:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        .nav-links li a:hover {
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 212, 255, 0.4);
        }

        .nav-cta {
            background: linear-gradient(135deg, #00D4FF, #094C9B);
            padding: 0.7rem 1.5rem;
            border-radius: 2rem;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
            transition: all 0.3s ease;
        }

        .nav-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
        }

        .mobile-menu {
            font-size: 1.5rem;
            cursor: pointer;
            display: none;
            background: none;
            border: none;
            color: #FFFFFF;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.1);
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .mobile-menu:hover {
            color: #00D4FF;
            transform: scale(1.05);
            background: rgba(255, 255, 255, 0.15);
        }
/* Bootcamp Header */
.bootcamp-header {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #094C9B 0%, #00D4FF 100%);
  border-radius: 0.75rem;
  margin: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 12px rgba(0, 212, 255, 0.4);
  position: relative;
  overflow: hidden;
}

.bootcamp-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.6s;
}

.bootcamp-header:hover::before {
  left: 100%;
}

.bootcamp-header h1 {
  color: #FFFFFF;
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.7);
  margin-bottom: 0.75rem;
  transition: transform 0.3s ease;
}

.bootcamp-header h1:hover {
  transform: translateY(-3px);
}

.bootcamp-header h1 i {
  margin-right: 0.5rem;
  color: #FFD700;
}

.bootcamp-header p {
  color: #CFF6F8;
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  text-shadow: 0 0 6px rgba(0, 212, 255, 0.5);
  margin-bottom: 0.75rem;
}

/* Registration Button */
.reg-button {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  font-size: 1.2rem;
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(90deg, #008BCC, #00D4FF);
  border: 2px solid #00D4FF;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
  margin: 1rem auto;
  width: fit-content;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.reg-button:hover {
  background: linear-gradient(90deg, #00D4FF, #008BCC);
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.5);
}

.reg-button:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.reg-button i {
  margin-right: 0.5rem;
  color: #FFD700;
}

.reg-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.5s;
}

.reg-button:hover::after {
  left: 100%;
  top: 100%;
}

/* Mobile View Adjustments */
@media screen and (max-width: 768px) {
  /* General */
  body {
    font-size: 0.9rem;
  }

  /* Banner */
  .main-banner img {
    height: auto;
  }

  /* Countdown */
  #countdown {
    font-size: 1.2rem;
    padding: 0.5rem;
    max-width: 100%;
  }

  /* Fest Heading */
  .fest-heading {
    padding: 1.5rem 0.75rem;
  }
  .fest-heading h1 {
    font-size: 2rem;
  }
  .fest-heading p {
    font-size: 1.2rem;
  }

  /* Events Section */
  .events-section {
    padding: 1rem;
    margin: 1rem;
  }
  .events-section h1 {
    font-size: 1.5rem;
  }
  .events-section p {
    font-size: 1rem;
  }
  .events-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
  }

  /* Event Card */
  .event-card {
    max-width: 90%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 212, 255, 0.3);
  }
  .event-card img {
    height: 120px;
  }
  .event-body h3 {
    font-size: 1rem;
    padding: 0.2rem 0.75rem;
  }
  .badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
  }
  .event-meta {
    font-size: 0.8rem;
    gap: 0.5rem;
  }
  .btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.8rem;
  }

  /* Sponsor Section */
  .sponsor-section {
    padding: 1.5rem 0.75rem;
    margin: 0.75rem;
  }
  .sponsor-section h2 {
    font-size: 1.5rem;
  }
  .sponsor-marquee {
    height: 80px;
  }
  .sponsor-track img {
    height: 50px;
  }

  /* Footer */
  footer {
    padding: 1.5rem 0.75rem;
  }
  .footer-icons a {
    font-size: 1.2rem;
    margin: 0 8px;
  }

  /* Navbar */
  .navbar {
    padding: 0.75rem 1rem;
  }
  .nav-logo {
    font-size: 1.2rem;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #094C9B 0%, #00D4FF 100%);
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links li {
    margin: 0.5rem 0;
  }
  .nav-links li a {
    font-size: 1rem;
    padding: 0.5rem;
  }
  .mobile-menu {
    display: block;
  }

  /* Bootcamp Header */
  .bootcamp-header {
    padding: 1.5rem 0.75rem;
    margin: 1rem;
  }
  .bootcamp-header h1 {
    font-size: 1.5rem;
  }
  .bootcamp-header p {
    font-size: 1rem;
  }

/* Registration Button */
.reg-button {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem; /* Slightly larger for prominence */
  font-size: 1.5rem; /* Larger for readability */
  font-family: 'Roboto', sans-serif; /* Changed to Roboto for consistency */
  font-weight: 600;
  color: #FFFFFF;
  background: linear-gradient(90deg, #008BCC, #00D4FF); /* Techy gradient */
  border: 2px solid #00D4FF; /* Neon border */
  border-radius: 0.75rem; /* Rounded for elegance */
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3); /* Neon glow */
  margin: 2rem auto;
  width: fit-content;
  position: relative;
  overflow: hidden;
  text-decoration: none; /* For <a> tag */
}

.reg-button:hover {
  background: linear-gradient(90deg, #00D4FF, #008BCC); /* Reverse gradient for hover */
  transform: scale(1.05); /* Zoom instead of lift for consistency */
  box-shadow: 0 6px 16px rgba(0, 212, 255, 0.5); /* Enhanced glow */
}

.reg-button:active {
  transform: scale(0.98); /* Slight press effect */
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.3);
}

.reg-button i {
  margin-right: 0.5rem; /* Space for Font Awesome icon */
  color: #FFD700; /* Gold accent */
}

.reg-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  transition: all 0.5s;
}

.reg-button:hover::after {
  left: 100%;
  top: 100%; /* Sparkle sweep on hover */
}

/* Ensure the navbar is responsive */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #333; /* Adjust to your theme */
  color: white;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
}

.mobile-menu {
  display: none; /* Hidden by default, shown on mobile */
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide nav-links by default on mobile */
    flex-direction: column;
    position: absolute;
    top: 60px; /* Adjust based on navbar height */
    left: 0;
    width: 100%;
    background-color: #333; /* Match navbar background */
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex; /* Show nav-links when active class is added */
  }

  .nav-links li {
    margin: 10px 0;
    text-align: center;
  }

  .mobile-menu {
    display: block; /* Show hamburger menu on mobile */
  }
}
