* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #e8f0f9;
    color: #fcfcfc;
    
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    font-size: 5px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    cursor: default;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: .7s;

}

.navbar a {
    display: inline-block;
    font-size: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    margin-left: 35px;
    transition: .3s;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
    padding: 0px 20;   /* reduce top and bottom padding */
    margin-top: 100;     /* remove extra space above navbar */
    position: relative;
}

.navbar a:hover {
    color: #0ef;

}

.home {
    display: flex;
    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
    text-align: center;
    /* Optional: Center text */
    height: 100vh;
    width: 100%;
    padding: 0 10%;
    background: url("bg3.jpg") no-repeat center center/cover;
    position: relative;
}

.home-content {
    max-width: 600px;

}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
}
.countdown-wrapper h5 {
  font-size: 25px;
  font-weight: 200;
  color:#ffffff;
  font-family: 'Georgia';
  
}
.font h6 {
  font-size: 22px;
  font-weight: 200;
  color:#ffffff;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  
  
}

.home-content h4 {
    font-size: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgb(255, 255, 255);
    margin-bottom: 20px;
    text-align: center;
    animation: slideRight 2s ease forwards;
    animation-delay: .1s;
}

.home-content h3:nth-of-type(2) {
    margin-bottom: 30px;
    animation: slideTop 1s ease forwards;
    animation-delay: .7s;
}

.home-content h3 span {
    color: #0ef;

}

.home-content h1 {
    font-size: 45px;
    line-height: 1.7;
    font-weight: 700;
    margin: -0px 0;
}

.home-content p {
    font-size: 20px;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: 1s;
}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: #0ef;
    text-decoration: none;
    transition: .5s ease;
    opacity: 0;
    animation: slideLeft 1s ease forwards;
    animation-delay: calc(.1s * var(--i));
    margin: 30px 15px 30px 0;
}

.home-sci a:hover {
    background: #0ef;
    color: #081b29;
    box-shadow: 0 0 20px #0ef;
}

.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: rgb(171, 223, 226);
    border-radius: 40px;
    font-size: 16px;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 1;
    animation: SlideTop 1s ease forwards;
    animation-delay: 2s;
    box-shadow: 0 0 5px #081b29,
        0 0 25px #081b29;

}

.btn-box:hover {
    box-shadow: 0 0 1px rgb(22, 177, 255),
        0 0 1px rgb(22, 177, 255), 0 0 7px rgb(22, 177, 255),
        0 0 15px rgb(22, 177, 255), 0 0 25px rgb(22, 177, 255)
}



@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }

}
.h2s-mid a{
  color: #caf5f5;

}

@keyframes slideLeft {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }

}

@keyframes slideTop {
  0% {
    transform: translateY(100px); /* Start 100px below */
    opacity: 0;
  }
  100% {
    transform: translateY(0);     /* End at original position */
    opacity: 1;
  }
}

@keyframes slideBottom {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }

}


.logos-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 2px;
}



.logo-img {
    height: 110px;
    width: auto;
    object-fit: contain;
    border-radius: 40px;
}

.logo-x {
    color: rgb(24, 149, 184);
    font-weight: bold;
    font-size: 28px;
}


.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    top: 50px;
    left: 30px;
}

.klird-logo {
    height: 120px;
}

.hackathon-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 15px;
}

h1 {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
  color: #02262c;
  position: relative;
  display: inline-block;
}
h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: hsl(188, 69%, 61%);
  margin: 8px auto 0;
  border-radius: 2px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}
.veda-club {
  grid-column: 2;
}

.card {
  background: #bcf6e9;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(160, 234, 246, 0.847);
  padding: 25px 30px;
  transition: box-shadow 0.3s ease;
  animation: slideBottom 1s ease forwards;
}
.card:hover {
  box-shadow: 0 10px 25px rgba(17, 122, 139, 0.3);
}
.card h2 {
  color: #034416;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3rem;
  border-bottom: 2px solid #094522;
  padding-bottom: 6px;
  width: fit-content;
  border-radius: 3px;
  animation: slideRight 1s ease forwards;
}
.card ul {
  list-style-type: disc;
  padding-left: 20px;
  color: #013161;
  font-size: 0.98rem;
  line-height: 1.5;
}
.card ul li {
  margin-bottom: 8px;
  animation: slideLeft 1s ease forwards;
}
.criteria-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
  color: #02343b;
  animation: slideLeft 1s ease forwards;
}
.criteria-list div {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
.criteria-list div span:first-child {
  color: #021f39;
}
.prizes p {
  margin: 8px 0;
  font-size: 0.95rem;
  color: #08243f;
  animation: slideLeft 1s ease forwards;
}
.prizes strong {
  color: #265961;
}
.clubs {
  grid-column: 1 / -1;
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.club-card {
  flex: 1 1 45%;
  background: #044884cb;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(48, 213, 238, 0.921);
  padding: 20px 25px;
  transition: box-shadow 0.3s ease;
}
.club-card:hover {
  box-shadow: 0 10px 25px rgba(10, 149, 170, 0.3);
}
.club-card h3 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.club-card p {
  font-size: 0.95rem;
  color: #d9d0f7;
  line-height: 1.5;
  
}

.clubs-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.club-center-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
@media (max-width: 600px) {
  .clubs {
    flex-direction: column;
  }
  .club-card {
    flex: 1 1 100%;
  }
}
/* Countdown Timer Styling Scoped */
.home .countdown-wrapper {
  color: #333;
  margin: 2rem auto 1rem;
  text-align: center;
}

.home .countdown-wrapper h6{
  font-weight: normal;
  letter-spacing: 0.125rem;
  color: #ffffff;
  font-size: 2rem;
  font-family: Georgia;
}


.home .countdown-wrapper ul {
  padding: 0;
  margin-top: 10px;
}

.home .countdown-wrapper li {
  display: inline-block;
  font-size: 1.5em;
  list-style-type: none;
  padding: 1em;
  text-transform: uppercase;
  color: #fff;
}

.home .countdown-wrapper li span {
  display: block;
  font-size: 4.5rem;
  color: #00ffff;
}

.home .countdown-wrapper .emoji {
  display: flex;
  justify-content: center;
  padding: 1rem;
  gap: 1rem;
}

.home .countdown-wrapper .emoji span {
  font-size: 3rem;
}

@media all and (max-width: 768px) {
  .home .countdown-wrapper h1 {
    font-size: 1.5rem;
  }

  .home .countdown-wrapper li {
    font-size: 1.1rem;
  }

  .home .countdown-wrapper li span {
    font-size: 3.2rem;
  }
}
#countdown ul {
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

#countdown li {
  display: inline-block;
  font-size: 1rem; /* reduced from 1.5em */
  list-style-type: none;
  padding: 0.5em;   /* reduced padding */
  text-transform: uppercase;
  color: white;
}

#countdown li span {
  display: block;
  font-size: 2.5rem; /* reduced from 4.5rem */
  font-weight: bold;
  color: #00ffff;
}



#about {
  padding: 60px 10%;
  background: url(https://static.vecteezy.com/system/resources/thumbnails/033/537/875/original/animated-particle-background-isolated-on-blackground-sparkle-rain-star-dust-footage-free-video.jpg) no-repeat center center/cover;
}
#events {
  padding: 60px 10%;
  background: url(https://img.freepik.com/premium-photo/night-sky-background-with-planets-stars-vector-illustration-cartoon-style_867442-8846.jpg?w=740) no-repeat center center/cover;
}
.projects {
  padding: 200px 30%;
  background: url(black_and_purple_sky_with_fade_stars_hd_space-1920x1080.jpg) no-repeat center center/cover;
}



.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #98b9db;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  padding: 20px 30px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
  animation: fadeInUp 1s ease both;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item .content {
  padding: 20px;
  background: #e6fbfc;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 6px 20px rgb(147, 184, 190);
}

.timeline-item .content h2 {
  font-size: 1.3rem;
  color: #0a0232;
  margin-bottom: 8px;
  
}

.timeline-item .content p {
  font-size: 0.95rem;
  color: #0d2f10;
}

.timeline-item .content span {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #6c2748;
  font-weight: 600;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 25px;
  height: 25px;
  right: -12.5px;
  background: #ffffff;
  border: 4px solid #ffffff;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.right::before {
  left: -12.5px;
  right: auto;
}

.timeline__item {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.6s ease-out;

  &.visible {
    animation: slideInUp 0.8s ease forwards;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 10px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 40px;
    padding-right: 25px;
  }

  .timeline-item.right {
    left: 0%;
  }

  .timeline-item.left {
    left: 0%;
  }

  .timeline-item::before {
    left: 0px;
  }

  .timeline-item.right::before {
    left: 0px;
  }
}
h1 {
  text-align: center;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
  color: #c0e9ef;
  position: relative;
  display: inline-block;
}
h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #227f8e;
  margin: 8px auto 0;
  border-radius: 2px;
}
.footer-logo {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
  color: #deff07;
}
.highlight {
  color: #ffffff; /* orange */
}
.h2s-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 20px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.h2s-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.h2s-left,
.h2s-mid,
.h2s-right {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  width: 120px;
  margin-bottom: 15px;
}

.footer-tagline {
  font-size: 14px;
  color: #dcdcdc;
  margin-bottom: 20px;
}

.newsletter-box {
  background: linear-gradient(135deg, #444, #666);
  padding: 20px;
  border: 1px solid #999;
  border-radius: 8px;
}

.newsletter-box h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.newsletter-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  border-radius: 4px;
}

.newsletter-box button {
  background-color: #c300ff;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.newsletter-box small {
  font-size: 11px;
  display: block;
  margin-top: 10px;
  color: #ccc;
}

.h2s-mid ul,
.h2s-right p {
  font-size: 14px;
  line-height: 2.5;
  margin: 8px 0;
}

.h2s-mid h2{
  color: white;
}

.h2s-contact {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 14px;
}

.h2s-contact .social a {
  color: white;
  margin: 0 8px;
  font-size: 18px;
}

.h2s-contact .certs img {
  height: 35px;
  margin-right: 5px;
}

.h2s-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #666;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
}

.h2s-bottom .legal a {
  margin-right: 20px;
  color: #ccc;
  text-decoration: none;
}

.h2s-bottom .certs img {
  height: 40px;
  margin-right: 10px;
}


@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-column {
    margin: 15px 0;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
  }
  .footer-bottom-links {
    margin-top: 10px;
  }
}

.pdf-intro {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 2000px;   /* Optimal large width for wide screens */
  width: 120%;          /* Allow it to grow with screen size */
  margin-left: 0.2px;
  margin-right: auto;
  text-align: center;
}


.pdf-catalog {
  display: flex;
  gap: 30px; /* Optional: more spacing between cards */
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px; /* Limits total row width */
  margin: 0 auto;
}



.pdf-card {
  position: relative;
  width: 250px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
  transition: transform 0.3s, box-shadow 0.3s;
  
}
.pdf-card:first-child {
  margin-right: 30px; /* Increase the gap between the two cards */
}

.pdf-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

.pdf-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.pdf-overlay {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  text-align: center;
  padding: 10px;
  color: #00ffff;
  font-weight: bold;
  font-size: 1rem;
}

.hackathon-logo {
  height: 120px; /* adjust as needed */
}

/* CSS */
.competitors-section {
  margin: 0 auto;
  padding: 120px 30%;
  font-family: 'Arial', sans-serif;
  color: #000000;
  text-align: center;
  max-width: 2000px;
  width: 100%;
  background-color: #000000;

}

.competitors-section h1 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.competitors-section body {
      font-family: Arial, sans-serif;
      padding: 40px;
      background-color: #fff;
      color: #003366;
      text-align: center;
    }
    h2 {
      font-weight: bold;
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: #000;
    }
    .sponsors-container {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
    }
    .sponsor-card {
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 20px;
      width: 180px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
      position: relative;
      box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .sponsor-card:hover {
      transform: scale(1.05); 
      box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);

    }
    .sponsor-card img {
      max-width: 140px;
      max-height: 80px;
      object-fit: contain;
    }

.projects h1 {
  font-family: 'Georgia', serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #ffffff;
}

.dropbtn:hover {
    box-shadow: 0 0 1px rgb(22, 177, 255),
        0 0 1px rgb(138, 182, 204), 0 0 7px rgb(37, 99, 131),
        0 0 15px rgb(64, 133, 167), 0 0 25px rgb(3, 56, 82)
}
/* Style the button */
.dropbtn {
  background-color: #a0e9f7;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
}

/* Container */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff;
  min-width: 180px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: rgb(0, 0, 0);
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

/* Hover effect */
.dropdown-content a:hover {
  background-color: #58c6d5;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}




/* Hero Section */
.hero {
  padding: 100px 30px 60px;
  text-align: center;
}

.main-heading {
  font-size: 3rem;
  color: #222;
}



/* Cards Section */
.about-section {
  padding: 60px 30px;
}

.card-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
  box-shadow: 0 6px 15px rgba(160, 234, 246, 0.847);
  padding: 25px 30px;
}

.info-card {
  background-color: #d3f3f7;
  padding: 20px;
  flex: 1;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.info-card h2 {
  color: #065f46;
  margin-bottom: 12px;
}

.info-card li {
  margin: 8px 0;
  list-style-type: disc;
  padding-left: 20px;
}

.info-card li span {
  float: right;
  font-weight: bold;
}

/* Club Section */
.club-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.club-card {
  background-color: #003f5c;
  color: rgb(1, 28, 48);
  flex: 1;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  position: relative;
}

.club-card h3 {
  margin-bottom: 10px;
}


.read-more {
  margin-top: 10px;
  background-color: white;
  color: #003f5c;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.modal-content {
  margin-top: 10px;
  background-color: #ffffff6d;
  color: #333;
  padding: 10px;
  border-radius: 6px;
  display: none;
}

.modal-content.active {
  display: block;
}
.info-card ul li {
  margin-bottom: 0.75rem;
  color: #013161;
}

.info-card p {
  color: #320202;
  margin: 0.75rem 0;
}

.info-card p strong {
  color: #032e27; /* or another bright highlight color */
}


/* ===========================
   Mobile Compatibility Styles
   =========================== */
@media (max-width: 768px) {

  /* General container spacing */
  section {
    margin: 0;
    padding: 20px 5%;
  }

  /* Header & Navbar */
  .header {
    flex-direction: column;
    align-items: center;
    padding: 15px 5%;
    background-color: rgba(0, 0, 0, 0.401);
    /* better contrast for mobile */
  }

  .mobile-menu-toggle {
    display: block;
    font-size: 28px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-top: 10px;
  }

  .navbar {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #111;
    padding: 10px;
    width: 100%;
  }
  .navbar.active {
    display: flex;
  }
  .navbar a {
    font-size: 16px;
    margin: 0;
  }

  /* Logo section */
  .logos-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 10px;
  }
  .logo-img, .klird-logo {
    max-width: 80px;
    height: auto;
  }
  .logo-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    position: static;
  }

  /* Home content */
  .home {
    padding: 20px 5%;
    height: auto;
  }
  .home-content {
    max-width: 90%;
    text-align: center;
    padding-top: 40px;
  }
  .home-content h1 {
    font-size: 28px;
  }
  .home-content h3 {
    font-size: 20px;
  }
  .home-content p {
    font-size: 16px;
  }

  /* Countdown */
  #countdown li {
    font-size: 0.9rem;
    padding: 0.5em;
  }
  #countdown li span {
    font-size: 2rem;
  }

  /* Timeline */
  .timeline::after {
    left: 20px;
  }
  .timeline-item {
    width: 100%;
    left: 0;
    padding-left: 50px;
    margin-bottom: 40px;
  }
  .timeline-item::before {
    left: 5px;
  }

  /* Club cards */
  .clubs {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .club-card {
    width: 100%;
    background: #044884cb;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(48, 213, 238, 0.921);
    padding: 20px;
    text-align: center;
  }
  .club-card h3 {
    font-size: 1.2rem;
  }
  .club-card p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  /* Hackathon images */
  .hackathon-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* Footer */
  .h2s-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .h2s-left, .h2s-mid, .h2s-right {
    min-width: 100%;
    text-align: center;
  }
  

}
