body {
  margin: 0;
  font-family: 'Montserrat', 'Nunito', Arial, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f8f4 100%);
  color: #163044;
  line-height: 1.7;
}
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #163044;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
  border-bottom: 1px solid rgba(126, 210, 186, 0.2);
  box-shadow: 0 2px 20px rgba(22, 48, 68, 0.08);
}
.logo {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #163044;
  background: linear-gradient(135deg, #163044, #7ed2ba);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}
nav ul li a {
  text-decoration: none;
  color: #163044;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}
nav ul li a.active, nav ul li a:hover {
  border-bottom: 2px solid #7ed2ba;
  color: #163044;
  background: rgba(126, 210, 186, 0.1);
  transform: translateY(-2px);
}
.hero {
  min-height: 340px;
  background: linear-gradient(135deg, #e0f8f4 0%, #7ed2ba 50%, #163044 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 3.5rem 0 2.5rem 0;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.slider {
  width: 600px;
  max-width: 95vw;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(22, 48, 68, 0.15);
  background: #fff;
  border: 2px solid rgba(126, 210, 186, 0.3);
  position: relative;
  z-index: 1;
}
.slides {
  display: flex;
  width: 1800px;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.77,0,0.18,1);
}
.slides img {
  width: 600px;
  height: 320px;
  object-fit: cover;
  border-radius: 0;
  filter: brightness(0.98) saturate(1.05) contrast(1.05);
}
.intro {
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
  padding: 0 1rem;
}
.intro h1 {
  font-size: 2.8rem;
  color: #163044;
  margin-bottom: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.intro .guide {
  margin: 1.7rem 0 1.2rem 0;
  font-size: 1.18rem;
  color: #163044;
}
.nav-tabs {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 1.5rem 0 0 0;
}
.nav-tabs a {
  background: linear-gradient(135deg, #7ed2ba, #5bb8a0);
  color: #163044;
  padding: 0.8rem 1.6rem;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  box-shadow: 0 4px 15px rgba(126, 210, 186, 0.3);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.nav-tabs a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.nav-tabs a:hover::before {
  left: 100%;
}
.nav-tabs a:hover {
  background: linear-gradient(135deg, #163044, #2a4a5a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 48, 68, 0.3);
}
.about {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  margin: 2.5rem auto 2rem auto;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  max-width: 700px;
  box-shadow: 0 8px 32px rgba(22, 48, 68, 0.1);
  border: 1px solid rgba(126, 210, 186, 0.2);
  text-align: center;
  transition: all 0.3s ease;
}
.about:hover, .hackathon-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(22, 48, 68, 0.15);
}
.about h2 {
  color: #163044;
  margin-bottom: 1.1rem;
  font-size: 2rem;
  font-weight: 800;
}
.hackathon-highlight {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  max-width: 900px;
  margin: 2.5rem auto 2rem auto;
  padding: 2.2rem 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(22, 48, 68, 0.06);
  border-left: 8px solid #7ed2ba;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}
.hackathon-text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hackathon-text h3 {
  color: #163044;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}
.hackathon-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hackathon-img img {
  width: 100%;
  max-width: 340px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(61, 105, 104, 0.08);
  border: 1px solid #e0e0e0;
}
.join-us {
  text-align: center;
  margin: 2.5rem 0 1.5rem 0;
  padding: 1.5rem 1rem;
  background: #7ed2ba;
  color: #fff;
  border-radius: 18px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(61, 105, 104, 0.07);
  font-size: 1.15rem;
  border: none;
}
.join-us .schoology-code {
  font-weight: 700;
  color: #cfa359;
  background: #fff;
  padding: 0.2em 0.7em;
  border-radius: 12px;
  font-size: 1.18rem;
  margin-left: 0.5em;
}
footer {
  background: linear-gradient(135deg, #163044, #2a4a5a);
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
  margin-top: 3rem;
  border-top: 2px solid rgba(126, 210, 186, 0.3);
}
.footer-nav {
  margin-bottom: 0.5rem;
}
.footer-nav a {
  color: #7ed2ba;
  margin: 0 1.1rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}
.footer-nav a:hover {
  color: #cfa359;
  border-bottom: 2px solid #cfa359;
  transform: translateY(-1px);
}
@media (max-width: 900px) {
  .slider {
    width: 100vw;
    max-width: 98vw;
    height: 200px;
  }
  .slides img {
    width: 100vw;
    max-width: 98vw;
    height: 200px;
  }
  .slides {
    width: 300vw;
  }
  .hackathon-highlight {
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.2rem 0.7rem;
  }
  .officer-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .officer-card {
    padding: 1.5rem 1rem;
  }
  
  .officer-card img {
    width: 120px;
    height: 120px;
  }
  
  .hero-alt {
    min-height: 120px;
    padding: 1.5rem 0 1rem 0;
  }
  
  .hero-desc {
    font-size: 1.1rem;
  }
}
@media (max-width: 600px) {
  header {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.7rem 0.5rem;
  }
  .logo {
    font-size: 1.3rem;
  }
  nav ul {
    gap: 1rem;
  }
  .about, .hackathon-highlight, .join-us {
    padding: 1rem 0.5rem;
    border-radius: 8px;
  }
  .slider {
    height: 140px;
  }
  .slides img {
    height: 140px;
  }
  .officer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .officer-card {
    padding: 1.2rem 0.8rem;
  }
  
  .officer-card img {
    width: 100px;
    height: 100px;
  }
  
  .hero-alt {
    min-height: 100px;
    padding: 1rem 0 0.8rem 0;
  }
  
  .hero-desc {
    font-size: 1rem;
  }
}
/* Card styles for officers/meetings */
.officer-grid, .meeting-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem 0;
}
.officer-card, .meeting-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(22, 48, 68, 0.05);
  border: 1px solid #e0e0e0;
  padding: 1.5rem 1.2rem;
  max-width: 320px;
  min-width: 220px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.officer-card:hover, .meeting-item:hover {
  box-shadow: 0 6px 24px rgba(22, 48, 68, 0.10);
  transform: translateY(-4px) scale(1.03);
}
.officer-card img, .meeting-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  filter: brightness(0.97) saturate(1.05);
  box-shadow: 0 2px 8px rgba(126, 210, 186, 0.08);
  border: 1px solid #e0e0e0;
}
.officer-card h2, .meeting-desc h2 {
  font-size: 1.2rem;
  color: #163044;
  margin: 0.5rem 0 0.2rem 0;
  font-weight: 700;
}
.officer-card h3 {
  font-size: 1rem;
  color: #7ed2ba;
  margin: 0.2rem 0 0.7rem 0;
  font-weight: 600;
}
.officer-card p, .meeting-desc p {
  color: #163044;
  font-size: 1rem;
  margin: 0.5rem 0 0 0;
}
.meeting-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.meeting-desc {
  margin-top: 1rem;
}
.social-links a {
  display: inline-block;
  background: #7ed2ba;
  color: #163044;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  margin: 0 0.5rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}
.social-links a:hover {
  background: #cfa359;
  color: #163044;
}
.coming-soon {
  text-align: center;
  margin: 4rem 0 2rem 0;
  color: #163044;
  font-size: 1.3rem;
}
.more {
  text-align: center;
  margin: 3rem 0 2rem 0;
  color: #163044;
}
.more .schoology-code {
  color: #cfa359;
  font-weight: 700;
  font-size: 1.15rem;
} 
/* --- Meetings Alt Layout --- */
.meeting-list-alt {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 2.5rem 0;
}
.meeting-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(22, 48, 68, 0.06);
  border: 1px solid #e0e0e0;
  padding: 2rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.meeting-row.reverse {
  flex-direction: row-reverse;
}
.meeting-info {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
}
.meeting-info h2 {
  color: #163044;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 0 0.2rem 0;
}
.meeting-info h3 {
  color: #7ed2ba;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.7rem 0;
}
.meeting-info p {
  color: #163044;
  font-size: 1.05rem;
  margin: 0;
}
.meeting-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.meeting-img img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(126, 210, 186, 0.08);
  border: 1px solid #e0e0e0;
}
@media (max-width: 900px) {
  .meeting-row, .meeting-row.reverse {
    flex-direction: column !important;
    gap: 1.2rem;
    padding: 1.2rem 0.7rem;
  }
  .meeting-img img {
    max-width: 98vw;
    height: auto;
  }
} 
/* --- Opportunities Filters & Cards --- */
.opportunity-filters {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin: 2.2rem 0 2.5rem 0;
}
.filter-btn {
  background: #e0f8f4;
  color: #163044;
  border: none;
  border-radius: 20px;
  padding: 0.7rem 2.2rem;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(126, 210, 186, 0.07);
}
.filter-btn[data-filter="all"] {
  background: #f7f7f7;
}
.filter-btn.active {
  background: #7ed2ba;
  color: #163044;
}
.filter-btn:not(.active):hover {
  background: #e0f8f4;
  color: #163044;
}
.opportunity-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin: 2.5rem 0;
}
.opportunity-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(22, 48, 68, 0.06);
  border: 1px solid #e0e0e0;
  padding: 2.2rem 2rem 1.7rem 2rem;
  min-width: 240px;
  max-width: 320px;
  min-height: 160px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.opportunity-card:hover {
  box-shadow: 0 6px 24px rgba(22, 48, 68, 0.10);
  transform: translateY(-4px) scale(1.03);
}
.opportunity-card h2 {
  color: #7ed2ba;
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
}
.opportunity-card[data-hidden] {
  display: none !important;
}
@media (max-width: 900px) {
  .opportunity-cards {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .opportunity-card {
    width: 90vw;
    max-width: 98vw;
  }
} 
.hero-alt {
  background: linear-gradient(135deg, #e0f8f4 0%, #7ed2ba 50%, #163044 100%);
  border-radius: 0 0 30px 30px;
  padding: 2rem 0 1.5rem 0;
  min-height: 160px;
  text-align: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 20px rgba(22, 48, 68, 0.1);
  position: relative;
  overflow: hidden;
}
.hero-alt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(126,210,186,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}
.hero-desc {
  color: #163044;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto;
  max-width: 700px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}
@media (max-width: 600px) {
  .hero-alt {
    padding: 0.7rem 0 0.7rem 0;
    min-height: 70px;
    border-radius: 0 0 2px 2px;
  }
  .hero-desc {
    font-size: 1.05rem;
  }
} 
/* Enhanced Officer Cards with High-Tech Styling */
.officer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  margin: 3rem 0;
  padding: 0 1rem;
}

.officer-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(22, 48, 68, 0.12);
  border: 1px solid rgba(126, 210, 186, 0.2);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.officer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(126, 210, 186, 0.1), transparent);
  transition: left 0.5s;
}

.officer-card:hover::before {
  left: 100%;
}

.officer-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(22, 48, 68, 0.15);
  border-color: rgba(126, 210, 186, 0.4);
}

.officer-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  filter: brightness(0.98) saturate(1.05);
  box-shadow: 0 8px 24px rgba(126, 210, 186, 0.15);
  border: 4px solid rgba(126, 210, 186, 0.3);
  transition: all 0.3s ease;
}

.officer-card:hover img {
  transform: scale(1.05);
  border-color: rgba(126, 210, 186, 0.6);
  box-shadow: 0 12px 32px rgba(126, 210, 186, 0.25);
}

.officer-card h2 {
  font-size: 1.4rem;
  color: #163044;
  margin: 0.5rem 0 0.3rem 0;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.officer-card h3 {
  font-size: 1.1rem;
  color: #7ed2ba;
  margin: 0.3rem 0 1rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.officer-card p {
  color: #163044;
  font-size: 0.95rem;
  margin: 0.8rem 0 0 0;
  line-height: 1.6;
} 
/* Enhanced Meeting Cards */
.meeting-list-alt {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin: 3rem 0;
}

.meeting-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(22, 48, 68, 0.12);
  border: 1px solid rgba(126, 210, 186, 0.2);
  padding: 2.5rem 2.5rem;
  max-width: 900px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.meeting-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(126, 210, 186, 0.05), transparent);
  transition: left 0.5s;
}

.meeting-row:hover::before {
  left: 100%;
}

.meeting-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(22, 48, 68, 0.15);
  border-color: rgba(126, 210, 186, 0.4);
}

.meeting-row.reverse {
  flex-direction: row-reverse;
}

.meeting-info h2 {
  color: #163044;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 0 0.3rem 0;
  letter-spacing: 0.5px;
}

.meeting-info h3 {
  color: #7ed2ba;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.meeting-info p {
  color: #163044;
  font-size: 1.05rem;
  margin: 0;
  line-height: 1.6;
}

.meeting-img img {
  width: 100%;
  max-width: 320px;
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(126, 210, 186, 0.15);
  border: 2px solid rgba(126, 210, 186, 0.3);
  transition: all 0.3s ease;
}

.meeting-row:hover .meeting-img img {
  transform: scale(1.03);
  border-color: rgba(126, 210, 186, 0.6);
  box-shadow: 0 12px 32px rgba(126, 210, 186, 0.25);
}

/* Enhanced Opportunity Cards */
.opportunity-filters {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0 3rem 0;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(224, 248, 244, 0.8);
  backdrop-filter: blur(10px);
  color: #163044;
  border: 2px solid rgba(126, 210, 186, 0.3);
  border-radius: 25px;
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(126, 210, 186, 0.1);
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(126, 210, 186, 0.2), transparent);
  transition: left 0.5s;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn[data-filter="all"] {
  background: rgba(247, 247, 247, 0.8);
}

.filter-btn.active {
  background: linear-gradient(135deg, #7ed2ba, #5bb8a0);
  color: #163044;
  border-color: rgba(126, 210, 186, 0.6);
  box-shadow: 0 6px 20px rgba(126, 210, 186, 0.3);
  transform: translateY(-2px);
}

.filter-btn:not(.active):hover {
  background: rgba(224, 248, 244, 0.9);
  color: #163044;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(126, 210, 186, 0.2);
}

.opportunity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  margin: 3rem 0;
  padding: 0 1rem;
}

.opportunity-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(22, 48, 68, 0.12);
  border: 1px solid rgba(126, 210, 186, 0.2);
  padding: 2.5rem 2rem;
  min-width: 240px;
  max-width: 320px;
  min-height: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.opportunity-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(126, 210, 186, 0.1), transparent);
  transition: left 0.5s;
}

.opportunity-card:hover::before {
  left: 100%;
}

.opportunity-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(22, 48, 68, 0.15);
  border-color: rgba(126, 210, 186, 0.4);
}

.opportunity-card h2 {
  color: #7ed2ba;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.opportunity-card[data-hidden] {
  display: none !important;
}

/* Enhanced More Page */
.more {
  text-align: center;
  margin: 4rem 0 3rem 0;
  padding: 3rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 32px rgba(22, 48, 68, 0.12);
  border: 1px solid rgba(126, 210, 186, 0.2);
  transition: all 0.3s ease;
}

.more:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(22, 48, 68, 0.15);
}

.more h1 {
  color: #163044;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.more p {
  color: #163044;
  font-size: 1.1rem;
  margin: 1rem 0;
  line-height: 1.6;
}

.more .schoology-code {
  color: #cfa359;
  font-weight: 700;
  font-size: 1.2rem;
  background: rgba(207, 163, 89, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 2px solid rgba(207, 163, 89, 0.3);
}

.social-links {
  margin-top: 2rem;
}

.social-links a {
  display: inline-block;
  background: linear-gradient(135deg, #7ed2ba, #5bb8a0);
  color: #163044;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  margin: 0 0.8rem;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(126, 210, 186, 0.3);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.social-links a:hover::before {
  left: 100%;
}

.social-links a:hover {
  background: linear-gradient(135deg, #163044, #2a4a5a);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(22, 48, 68, 0.3);
}

/* Responsive Design for Enhanced Components */
@media (max-width: 900px) {
  .meeting-row, .meeting-row.reverse {
    flex-direction: column !important;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  
  .meeting-img img {
    max-width: 98vw;
    height: auto;
  }
  
  .opportunity-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 0.5rem;
  }
  
  .opportunity-card {
    padding: 2rem 1.5rem;
  }
  
  .filter-btn {
    padding: 0.7rem 2rem;
    font-size: 1rem;
  }
  
  .more {
    padding: 2rem 1.5rem;
    margin: 3rem 1rem;
  }
  
  .more h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .meeting-row, .meeting-row.reverse {
    padding: 1.5rem 1rem;
  }
  
  .opportunity-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .opportunity-card {
    padding: 1.5rem 1rem;
  }
  
  .filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
  }
  
  .more {
    padding: 1.5rem 1rem;
  }
  
  .more h1 {
    font-size: 1.8rem;
  }
  
  .social-links a {
    padding: 0.7rem 1.5rem;
    margin: 0.5rem;
  }
} 