/* ===============================
   BASE STYLES
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
}

body {
  background: #000000;
}

/* ===============================
   PARTICLE CANVAS
================================ */
#particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ===============================
   PAGE TRANSITION
================================ */
.page-transition {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  pointer-events: none;
  opacity: 1;
}

.page-content {
  position: relative;
  z-index: 1;
}

/* ===============================
   NAVBAR
================================ */
.navbar {
  min-height: 70px;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(71, 160, 184, 0.2);
}

.navbar-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.nav-logo img:hover {
  transform: rotate(360deg) scale(1.1);
  filter: drop-shadow(0 0 20px rgba(71, 160, 184, 0.8));
}

.logo-spin {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.nav-links-ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #02cadc, #47a0b8);
  transition: width 0.3s ease;
}

.nav-links:hover::after,
.nav-links.active::after {
  width: 100%;
}

.nav-links:hover,
.nav-links.active {
  color: #02cadc;
}

.separator {
  color: rgba(255, 255, 255, 0.3);
  user-select: none;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 30px;
  height: 3px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===============================
   HERO SECTION
================================ */
.hero-section {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-layout {
  width: 100%;
  max-width: 1400px;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.home-text {
  flex: 0 0 auto;
}

.home-text-main {
  font-size: 180px;
  font-weight: 900;
  line-height: 0.95;
  background: linear-gradient(135deg, #fff 0%, #47a0b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(71, 160, 184, 0.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(71, 160, 184, 0.6)); }
}

.home-text-sub {
  font-size: 160px;
  font-weight: 900;
  color: #47a0b8;
  line-height: 0.95;
  text-shadow: 0 0 30px rgba(71, 160, 184, 0.5);
}

.socials {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  padding-left: 11px;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border: 2px solid rgba(71, 160, 184, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.socials a i {
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: #47a0b8;
  border-color: #47a0b8;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 30px rgba(71, 160, 184, 0.4);
}

.socials a:hover i {
  color: #000;
  transform: scale(1.2);
}

.home-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.home-logo-img {
  width: 400px;
  height: auto;
  animation: logoFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(71, 160, 184, 0.4));
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-15px) rotate(2deg); }
  75% { transform: translateY(-15px) rotate(-2deg); }
}

/* ===============================
   PAGE HERO (Inner Pages)
================================ */
.page-hero {
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}

/* Glitch Text Effect */
.glitch-text {
  font-size: 4rem;
  font-weight: 900;
  position: relative;
  animation: glitch 2s infinite;
}

.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-text::before {
  color: #02cadc;
  animation: glitch-1 0.5s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  transform: translate(-2px, -2px);
}

.glitch-text::after {
  color: #ff00ff;
  animation: glitch-2 0.5s infinite;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  transform: translate(2px, 2px);
}

@keyframes glitch-1 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(-3px, 3px); }
  40% { transform: translate(-3px, -3px); }
  60% { transform: translate(3px, 3px); }
  80% { transform: translate(3px, -3px); }
}

@keyframes glitch-2 {
  0%, 100% { transform: translate(0); }
  20% { transform: translate(3px, -3px); }
  40% { transform: translate(3px, 3px); }
  60% { transform: translate(-3px, -3px); }
  80% { transform: translate(-3px, 3px); }
}

/* ===============================
   SECTION TITLES
================================ */
.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #47a0b8, transparent);
  border-radius: 2px;
}

/* ===============================
   ABOUT SECTION
================================ */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5vw 10vw;
  gap: 60px;
}

.about-details {
  max-width: 700px;
}

.about-heading {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff, #47a0b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text-sub {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* ===============================
   STATS SECTION
================================ */
.stats-section {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.stat-card {
  background: linear-gradient(135deg, rgba(71, 160, 184, 0.1), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 20px;
  padding: 40px 50px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: #47a0b8;
  box-shadow: 0 20px 40px rgba(71, 160, 184, 0.2);
}

.stat-card i {
  font-size: 3rem;
  color: #47a0b8;
  margin-bottom: 15px;
}

.stat-number {
  display: block;
  font-size: 3.5rem;
  font-weight: 900;
  color: #fff;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 5px;
}

/* ===============================
   TIMELINE
================================ */
.timeline-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #47a0b8, transparent);
  border-radius: 2px;
}

.timeline-item {
  width: 50%;
  padding: 20px 40px;
  position: relative;
}

.timeline-item.left {
  left: 0;
  text-align: right;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 15px;
  padding: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: scale(1.02);
  border-color: #47a0b8;
  box-shadow: 0 10px 30px rgba(71, 160, 184, 0.2);
}

.timeline-content.gold { border-left: 4px solid #ffd700; }
.timeline-content.silver { border-left: 4px solid #c0c0c0; }
.timeline-content.special { border-left: 4px solid #ff6b6b; }
.timeline-content.milestone { border-left: 4px solid #47a0b8; }

.timeline-icon {
  width: 50px;
  height: 50px;
  background: #47a0b8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 25px;
}

.timeline-item.left .timeline-icon {
  right: -65px;
}

.timeline-item.right .timeline-icon {
  left: -65px;
}

.timeline-icon i {
  color: #000;
  font-size: 1.2rem;
}

.timeline-year {
  display: inline-block;
  background: #47a0b8;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.timeline-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ===============================
   CERTIFICATIONS
================================ */
.certifications-section {
  padding: 60px 20px;
  text-align: center;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cert-card {
  background: linear-gradient(135deg, rgba(71, 160, 184, 0.1), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 15px;
  padding: 40px 30px;
  transition: all 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-10px) rotateX(5deg);
  border-color: #47a0b8;
  box-shadow: 0 20px 40px rgba(71, 160, 184, 0.3);
}

.cert-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #47a0b8, #02cadc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.cert-icon i {
  font-size: 2rem;
  color: #000;
}

.cert-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.cert-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}


/* ===============================
   PROJECTS SECTION
================================ */
.filter-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 2px solid rgba(71, 160, 184, 0.5);
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #47a0b8;
  border-color: #47a0b8;
  color: #000;
  transform: scale(1.05);
}

.projects-section {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.project-card {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(71, 160, 184, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 1 !important;
}

.project-card:hover {
  transform: translateY(-15px);
  border-color: #47a0b8;
  box-shadow: 0 30px 60px rgba(71, 160, 184, 0.2);
}

.project-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(0,0,0,0.7), transparent);
}

.project-category {
  background: rgba(71, 160, 184, 0.9);
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.project-status {
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

.project-status.completed {
  background: rgba(46, 204, 113, 0.9);
  color: #000;
}

.project-status.progress {
  background: rgba(241, 196, 15, 0.9);
  color: #000;
}

.project-info {
  padding: 25px;
}

.project-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.project-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tech-tag {
  background: rgba(71, 160, 184, 0.2);
  border: 1px solid rgba(71, 160, 184, 0.4);
  color: #47a0b8;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
}

.view-project-btn {
  background: transparent;
  border: 2px solid #47a0b8;
  color: #47a0b8;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.view-project-btn:hover {
  background: #47a0b8;
  color: #000;
}

.view-project-btn i {
  transition: transform 0.3s ease;
}

.view-project-btn:hover i {
  transform: translateX(5px);
  color: #000;
}

/* Project Modal */
.project-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.project-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: #0f0f0f;
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 20px;
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2rem;
  cursor: pointer;
  color: #fff;
  z-index: 10;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #47a0b8;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.modal-image {
  height: 100%;
  min-height: 400px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

.modal-info {
  padding: 40px 40px 40px 0;
}

.modal-category {
  background: #47a0b8;
  color: #000;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

.modal-info h2 {
  font-size: 2rem;
  margin: 15px 0;
}

.modal-year {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.modal-year i {
  color: #47a0b8;
  margin-right: 8px;
}

.modal-desc {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 25px;
}

.modal-tech h4 {
  margin-bottom: 15px;
  color: #47a0b8;
}

.modal-status {
  margin-top: 25px;
}

.modal-status .completed {
  color: #2ecc71;
}

.modal-status .progress {
  color: #f1c40f;
}

.modal-status i {
  margin-right: 8px;
}

/* ===============================
   EVENTS SECTION
================================ */
.events-section {
  padding: 40px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.events-text {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
}

/* Calendar */
.calendar-container {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 20px;
  padding: 30px;
  max-width: 400px;
  margin: 0 auto 50px;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-header h3 {
  font-size: 1.3rem;
}

.calendar-nav {
  background: transparent;
  border: 1px solid rgba(71, 160, 184, 0.5);
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calendar-nav:hover {
  background: #47a0b8;
  color: #000;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  margin-bottom: 10px;
}

.calendar-days span {
  text-align: center;
  font-size: 0.8rem;
  color: #47a0b8;
  font-weight: bold;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.calendar-day:not(.empty):hover {
  background: rgba(71, 160, 184, 0.2);
}

.calendar-day.has-event {
  background: rgba(71, 160, 184, 0.3);
  cursor: pointer;
}

.event-dot {
  width: 6px;
  height: 6px;
  background: #02cadc;
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
}

/* Event Cards */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event-card {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(71, 160, 184, 0.2);
}

.event-card.workshop { border-left: 4px solid #3498db; }
.event-card.competition { border-left: 4px solid #e74c3c; }
.event-card.bootcamp { border-left: 4px solid #9b59b6; }

.event-date {
  background: linear-gradient(135deg, #47a0b8, #02cadc);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 100px;
}

.event-day {
  font-size: 2.5rem;
  font-weight: 900;
  color: #000;
}

.event-month {
  font-size: 1rem;
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
}

.event-details {
  padding: 25px;
  flex: 1;
}

.event-type {
  background: rgba(71, 160, 184, 0.2);
  color: #47a0b8;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: bold;
}

.event-details h3 {
  font-size: 1.3rem;
  margin: 15px 0 10px;
}

.event-details p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.event-details p i {
  color: #47a0b8;
  margin-right: 8px;
  width: 16px;
}

.event-desc {
  margin-top: 10px !important;
  line-height: 1.5;
}

.event-spots {
  margin: 15px 0;
}

.spots-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 5px;
}

.spots-fill {
  height: 100%;
  background: linear-gradient(90deg, #47a0b8, #02cadc);
  border-radius: 3px;
  transition: width 0.5s ease;
}

.event-spots span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.register-btn {
  background: linear-gradient(135deg, #47a0b8, #02cadc);
  border: none;
  color: #000;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.register-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(71, 160, 184, 0.4);
}

.coming-soon {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

/* Past Events */
.past-events-section {
  margin-top: 80px;
}

.past-event-card {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(71, 160, 184, 0.2);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.past-event-card:hover {
  border-color: #47a0b8;
}

.past-event-image {
  width: 300px;
  min-height: 200px;
}

.past-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.past-event-info {
  padding: 30px;
  flex: 1;
}

.past-event-date {
  color: #47a0b8;
  font-size: 0.9rem;
}

.past-event-info h3 {
  font-size: 1.5rem;
  margin: 10px 0;
}

.past-event-info p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.event-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.highlight-tag {
  background: rgba(71, 160, 184, 0.15);
  border: 1px solid rgba(71, 160, 184, 0.3);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.highlight-tag i {
  color: #2ecc71;
  margin-right: 5px;
}

/* Registration Modal */
.registration-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.registration-modal.active {
  opacity: 1;
  visibility: visible;
}

.reg-modal-content {
  background: #0f0f0f;
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 20px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
}

.reg-modal-close {
  float: right;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.reg-modal-close:hover {
  color: #47a0b8;
}

.reg-modal-content h2 {
  margin-bottom: 10px;
}

.reg-modal-content h3 {
  color: #47a0b8;
  margin-bottom: 25px;
}

.reg-form-group {
  margin-bottom: 20px;
}

.reg-form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.reg-form-group input,
.reg-form-group select {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
}

.reg-form-group input:focus,
.reg-form-group select:focus {
  outline: none;
  border-color: #47a0b8;
}

.reg-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #47a0b8, #02cadc);
  border: none;
  color: #000;
  padding: 15px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reg-submit-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(71, 160, 184, 0.4);
}


/* ===============================
   TEAM SECTION
================================ */
.team-section {
  padding: 40px 20px;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.team-card {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.9), rgba(30, 30, 30, 0.9));
  border: 1px solid rgba(71, 160, 184, 0.2);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(71, 160, 184, 0.1), transparent);
  transition: left 0.5s ease;
}

.team-card:hover::before {
  left: 100%;
}

.team-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: #47a0b8;
  box-shadow: 0 30px 60px rgba(71, 160, 184, 0.3);
}

.team-card img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(71, 160, 184, 0.5);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.team-card:hover img {
  border-color: #47a0b8;
  box-shadow: 0 0 30px rgba(71, 160, 184, 0.5);
}

.team-card h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-card p {
  color: #47a0b8;
  font-weight: 700;
  font-size: 0.95rem;
}

.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(71, 160, 184, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #47a0b8;
  border-color: #47a0b8;
  transform: translateY(-3px);
}

.social-links a:hover i {
  color: #000;
}

/* ===============================
   CONTACT SECTION
================================ */
.contact-section {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 40px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.contact-text {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: left;
}

.contact-form-div {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 20px;
  padding: 40px;
  width: 450px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

input,
textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(71, 160, 184, 0.3);
  padding: 15px 20px;
  border-radius: 12px;
  outline: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  border-color: #47a0b8;
  box-shadow: 0 0 20px rgba(71, 160, 184, 0.2);
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-send-button {
  padding: 15px 30px;
  font-weight: bold;
  font-size: 1rem;
  background: linear-gradient(135deg, #47a0b8, #02cadc);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #000;
}

.contact-send-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(71, 160, 184, 0.4);
}

.contact-info {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 20px;
  padding: 40px;
  width: 350px;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #47a0b8;
}

.contact-info p {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info i {
  color: #47a0b8;
  font-size: 1.2rem;
  width: 25px;
}

/* ===============================
   FOOTER
================================ */
.footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  border-top: 1px solid rgba(71, 160, 184, 0.2);
  background: rgba(0, 0, 0, 0.5);
}

/* ===============================
   ANIMATIONS
================================ */
.reveal {
  opacity: 1;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Typing Effect */
.typing-text {
  overflow: hidden;
  border-right: 3px solid #47a0b8;
  white-space: nowrap;
  animation: typing 3s steps(30) forwards, blink 0.8s infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 1200px) {
  .home-text-main { font-size: 140px; }
  .home-text-sub { font-size: 120px; }
  .home-logo-img { width: 350px; }
}

@media (max-width: 992px) {
  .hamburger { display: flex; }
  
  .nav-links-ul {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    flex-direction: column;
    padding: 30px;
    gap: 0;
    transform: translateY(-150%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid rgba(71, 160, 184, 0.3);
  }
  
  .nav-links-ul.active {
    transform: translateY(0);
  }
  
  .nav-links-ul li {
    padding: 15px 0;
    text-align: center;
  }
  
  .separator { display: none; }
  
  .hero-layout {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    gap: 40px;
  }
  
  .home-text-main { font-size: 80px; }
  .home-text-sub { font-size: 70px; }
  .home-logo-img { width: 280px; }
  
  .socials {
    justify-content: center;
    padding-left: 0;
  }
  
  .timeline::before { left: 20px; }
  
  .timeline-item {
    width: 100%;
    padding-left: 60px;
    padding-right: 20px;
  }
  
  .timeline-item.left,
  .timeline-item.right {
    left: 0;
    text-align: left;
  }
  
  .timeline-item.left .timeline-icon,
  .timeline-item.right .timeline-icon {
    left: -5px;
    right: auto;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
  }
  
  .modal-image {
    min-height: 250px;
  }
  
  .modal-image img {
    border-radius: 20px 20px 0 0;
  }
  
  .modal-info {
    padding: 30px;
  }
  
  .past-event-card {
    flex-direction: column;
  }
  
  .past-event-image {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar-content { padding: 10px 0; }
  
  .home-text-main { font-size: 60px; }
  .home-text-sub { font-size: 50px; }
  
  .glitch-text { font-size: 2.5rem; }
  
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }
  
  .about-heading { font-size: 2rem; }
  
  .stats-section { gap: 20px; }
  .stat-card { padding: 30px; }
  .stat-number { font-size: 2.5rem; }
  
  .contact-section {
    flex-direction: column;
    align-items: center;
  }
  
  .contact-form-div,
  .contact-info {
    width: 100%;
    max-width: 450px;
  }
  
  .event-card {
    flex-direction: column;
  }
  
  .event-date {
    flex-direction: row;
    gap: 10px;
    padding: 15px;
  }
  
  .event-day { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .home-text-main { font-size: 45px; }
  .home-text-sub { font-size: 38px; }
  .home-logo-img { width: 200px; }
  
  .socials { gap: 15px; }
  .socials a { width: 45px; height: 45px; }
  
  .filter-btn { padding: 10px 20px; font-size: 0.9rem; }
  
  .projects-grid { grid-template-columns: 1fr; }
  
  .team-container { grid-template-columns: 1fr; }
}

/* ===============================
   ALUMNI / HALL OF FAME SECTION
================================ */
.alumni-section {
  padding: 60px 20px 80px;
  position: relative;
}

.alumni-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.5), transparent);
}

.alumni-header {
  text-align: center;
  margin-bottom: 50px;
}

.alumni-title {
  font-size: 2.5rem;
  background: linear-gradient(135deg, #ffd700, #ffaa00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.alumni-title i {
  -webkit-text-fill-color: #ffd700;
  animation: crownFloat 2s ease-in-out infinite;
}

@keyframes crownFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-5px) rotate(5deg); }
}

.alumni-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin-top: 10px;
  font-style: italic;
}

.alumni-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.alumni-card {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.95), rgba(40, 40, 40, 0.9));
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  gap: 25px;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.alumni-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 215, 0, 0.1), transparent 30%);
  animation: rotateBorder 4s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.alumni-card:hover::before {
  opacity: 1;
}

@keyframes rotateBorder {
  100% { transform: rotate(360deg); }
}

.alumni-card:hover {
  transform: translateY(-10px);
  border-color: #ffd700;
  box-shadow: 0 20px 50px rgba(255, 215, 0, 0.2);
}

.alumni-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.alumni-badge i {
  color: #000;
  font-size: 1.2rem;
}

.alumni-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(255, 215, 0, 0.5);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.alumni-card:hover img {
  border-color: #ffd700;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
}

.alumni-info {
  flex: 1;
  position: relative;
  z-index: 1;
}

.alumni-info h2 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: #fff;
}

.alumni-role {
  color: #ffd700 !important;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.alumni-batch {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.alumni-batch i {
  color: #ffd700;
  margin-right: 8px;
}

.alumni-contribution {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 2px solid rgba(255, 215, 0, 0.4);
}

.alumni-card .social-links {
  justify-content: flex-start;
  margin-top: 10px;
}

.alumni-card .social-links a {
  border-color: rgba(255, 215, 0, 0.4);
}

.alumni-card .social-links a:hover {
  background: #ffd700;
  border-color: #ffd700;
}

.no-alumni {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  grid-column: 1 / -1;
  padding: 40px;
}

/* Alumni Responsive */
@media (max-width: 768px) {
  .alumni-title { font-size: 2rem; }
  
  .alumni-container {
    grid-template-columns: 1fr;
  }
  
  .alumni-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }
  
  .alumni-badge {
    top: 15px;
    right: 50%;
    transform: translateX(50%);
  }
  
  .alumni-card img {
    margin-top: 20px;
  }
  
  .alumni-contribution {
    border-left: none;
    padding-left: 0;
    border-top: 2px solid rgba(255, 215, 0, 0.4);
    padding-top: 10px;
.hall-of-fame-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
}

.hall-of-fame-btn i {
  color: #000;
  transition: transform 0.3s ease;
}

.hall-of-fame-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.hall-of-fame-btn:hover i {
  transform: rotate(15deg);
}

/* Back to Team Button (Alumni Page) */
.back-to-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid rgba(255, 215, 0, 0.5);
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.back-to-team-btn i {
  color: #ffd700;
  transition: transform 0.3s ease;
}

.back-to-team-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateX(-5px);
}

.back-to-team-btn:hover i {
  color: #000;
  transform: translateX(-5px);
}

/* Alumni Hero Styling */
.alumni-hero .glitch-text::before {
  color: #ffd700;
}

.alumni-hero .glitch-text::after {
  color: #ffaa00;
}


/* ===============================
   LEAVING SOON BADGE
.team-card.leaving-soon {
  border-color: rgba(255, 215, 0, 0.4);
}

.team-card.leaving-soon:hover {
  border-color: #ffd700;
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.25);
}

.leaving-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.leaving-badge i {
  font-size: 0.7rem;
  color: #000;
  animation: crownBounce 2s ease-in-out infinite;
}

@keyframes crownBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}


/* ===============================
   UPCOMING ALUMNI (Ghost Effect)
.alumni-card.upcoming-alumni {
  opacity: 0.5;
  border-style: dashed;
  border-color: rgba(255, 215, 0, 0.3);
  position: relative;
}

.alumni-card.upcoming-alumni::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 215, 0, 0.03) 10px,
    rgba(255, 215, 0, 0.03) 20px
  );
  border-radius: 20px;
  pointer-events: none;
}

.alumni-card.upcoming-alumni:hover {
  opacity: 0.7;
  border-color: rgba(255, 215, 0, 0.5);
}

.alumni-card.upcoming-alumni img {
  filter: grayscale(30%);
}

.alumni-card.upcoming-alumni:hover img {
  filter: grayscale(0%);
}

.upcoming-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 215, 0, 0.2);
  border: 1px dashed rgba(255, 215, 0, 0.5);
  color: #ffd700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.upcoming-badge i {
  color: #ffd700;
  animation: hourglassSpin 2s ease-in-out infinite;
}

@keyframes hourglassSpin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}


/* Remove underline from social links */
.social-links a,
.socials a {
  text-decoration: none;
}


/* Name hover effects */
.team-card:hover h2,
.project-card:hover h3,
.event-card:hover h3,
.past-event-card:hover h3,
.timeline-content:hover h3,
.cert-card:hover h3 {
  color: #02cadc;
  transition: color 0.3s ease;
}

/* Hall of Fame gold hover for leaving soon members */
.team-card.leaving-soon:hover h2 {
  color: #ffd700;
}


/* ===============================
   PAGE TITLE (Replaces Glitch)
.page-title {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #fff 0%, #47a0b8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

/* Alumni Button (Replaces Hall of Fame) */
.alumni-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
}

.alumni-btn i {
  color: #000;
  transition: transform 0.3s ease;
}

.alumni-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.alumni-btn:hover i {
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .page-title { font-size: 2.5rem; }
}

@media (max-width: 480px) {
  .page-title { font-size: 2rem; }
}


/* ===============================
   TEACHER INCHARGE
.teacher-incharge {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(71, 160, 184, 0.2);
}

.teacher-incharge h3 {
  margin-bottom: 15px;
}

.teacher-incharge p {
  margin-bottom: 10px;
}

.teacher-incharge i {
  color: #47a0b8;
}

/* ===============================
   LOCATION SECTION
.location-section {
  padding: 40px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.location-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 25px;
}

.location-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #47a0b8, #02cadc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(71, 160, 184, 0.3);
}

.location-icon i {
  font-size: 2.5rem;
  color: #000;
}

.location-details h3 {
  font-size: 1.5rem;
  color: #47a0b8;
  margin-bottom: 10px;
}

.school-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.school-address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.location-map {
  width: 100%;
  max-width: 600px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .location-card {
    padding: 30px 20px;
  }
  
  .location-icon {
    width: 60px;
    height: 60px;
  }
  
  .location-icon i {
    font-size: 1.8rem;
  }
}

/* ===============================
   NAVBAR SIZE FIX
.navbar {
  min-height: 70px;
  height: 70px;
  padding: 0 60px;
}

.navbar-content {
  height: 100%;
}


/* ===============================
   SCROLL INDICATOR
.scroll-indicator {
  margin-top: 40px;
  cursor: pointer;
}

.scroll-indicator i {
  font-size: 1.5rem;
  color: #47a0b8;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(15px);
  }
  60% {
    transform: translateY(8px);
  }
}

.scroll-indicator:hover i {
  color: #02cadc;
}


/* ===============================
   PROTECTION STYLES
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Allow clicking on logo */
.nav-logo img {
  pointer-events: auto;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow selection in form inputs */
input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}


/* ===============================
   SCROLL BUTTONS
.scroll-btn {
  position: fixed;
  bottom: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #47a0b8, #02cadc);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(71, 160, 184, 0.4);
}

.scroll-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(71, 160, 184, 0.6);
}

.scroll-btn i {
  color: #000;
  font-size: 1.2rem;
  pointer-events: none;
}

.scroll-to-bottom {
  left: 30px;
}

.scroll-to-top {
  right: 30px;
}

@media (max-width: 768px) {
  .scroll-btn {
    width: 45px;
    height: 45px;
    bottom: 20px;
  }
  
  .scroll-to-bottom {
    left: 20px;
  }
  
  .scroll-to-top {
    right: 20px;
  }
}


/* ===============================
   TEACHER SECTION
.teacher-section {
  padding: 60px 20px;
  text-align: center;
}

.teacher-section .section-title {
  display: block;
  margin-bottom: 40px;
}

.teacher-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.teacher-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.9), rgba(30, 30, 30, 0.9));
  border: 1px solid rgba(71, 160, 184, 0.3);
  border-radius: 20px;
  padding: 40px 50px;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 250px;
}

.teacher-card:hover {
  transform: translateY(-10px);
  border-color: #47a0b8;
  box-shadow: 0 20px 40px rgba(71, 160, 184, 0.2);
}

.teacher-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #47a0b8, #02cadc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.teacher-icon i {
  font-size: 2rem;
  color: #000;
}

.teacher-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #fff;
}

.teacher-card p {
  color: #47a0b8;
  font-size: 0.95rem;
}

/* Location Button */
.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 25px;
  background: transparent;
  border: 2px solid #47a0b8;
  color: #47a0b8;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.location-btn i {
  color: #47a0b8;
}

.location-btn:hover {
  background: #47a0b8;
  color: #000;
}

.location-btn:hover i {
  color: #000;
}

@media (max-width: 768px) {
  .teacher-cards {
    flex-direction: column;
    align-items: center;
  }
  
  .teacher-card {
    width: 100%;
    max-width: 300px;
  }
}


/* ===============================
   CALENDAR PAST EVENTS
.calendar-day.has-past-event {
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.event-dot.past {
  background: rgba(255, 255, 255, 0.5);
}


/* ===============================
   MOBILE OPTIMIZATION

/* General Mobile Fixes */
@media (max-width: 768px) {
  /* Page Hero */
  .page-hero {
    min-height: 25vh;
    padding: 40px 15px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  /* Contact Section */
  .contact-section {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }
  
  .contact-form-div,
  .contact-info {
    width: 100%;
    padding: 25px 20px;
  }
  
  .contact-text {
    font-size: 1.5rem;
  }
  
  /* Location Section */
  .location-section {
    padding: 30px 15px 60px;
  }
  
  .location-card {
    padding: 25px 15px;
  }
  
  /* Teacher Section */
  .teacher-section {
    padding: 40px 15px;
  }
  
  .teacher-card {
    padding: 30px 25px;
    min-width: unset;
    width: 100%;
  }
  
  /* Team Section */
  .team-section {
    padding: 30px 15px;
  }
  
  .team-container {
    padding: 1rem;
    gap: 20px;
  }
  
  .team-card {
    padding: 25px 20px;
  }
  
  .team-card img {
    width: 120px;
    height: 120px;
  }
  
  .leaving-badge {
    top: 10px;
    right: 10px;
    padding: 5px 10px;
    font-size: 0.65rem;
  }
  
  /* Projects Section */
  .projects-section {
    padding: 30px 15px;
  }
  
  .filter-container {
    gap: 10px;
    padding: 15px;
  }
  
  .filter-btn {
    padding: 8px 18px;
    font-size: 0.85rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Events Section */
  .events-section {
    padding: 30px 15px;
  }
  
  .events-grid {
    grid-template-columns: 1fr;
  }
  
  .calendar-container {
    padding: 20px 15px;
  }
  
  /* About Section */
  .about-section {
    padding: 30px 15px;
    gap: 30px;
  }
  
  .about-heading {
    font-size: 1.8rem;
  }
  
  .about-text-sub {
    font-size: 1rem;
  }
  
  /* Alumni Section */
  .alumni-section {
    padding: 40px 15px 60px;
  }
  
  .alumni-container {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  
  .alumni-card {
    padding: 25px 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .alumni-card img {
    width: 100px;
    height: 100px;
  }
  
  .alumni-btn,
  .back-to-team-btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  /* Scroll Buttons */
  .scroll-btn {
    width: 45px;
    height: 45px;
    bottom: 15px;
  }
  
  .scroll-to-bottom {
    left: 15px;
  }
  
  .scroll-to-top {
    right: 15px;
  }
  
  /* Scroll Indicator */
  .scroll-indicator {
    margin-top: 25px;
  }
  
  /* Modal */
  .modal-content {
    width: 95%;
    max-height: 85vh;
  }
  
  .modal-body {
    grid-template-columns: 1fr;
  }
  
  .modal-image {
    min-height: 200px;
  }
  
  .modal-image img {
    border-radius: 20px 20px 0 0;
  }
  
  .modal-info {
    padding: 25px 20px;
  }
  
  /* Footer */
  .footer {
    padding: 20px 15px;
    font-size: 12px;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 1.8rem;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .page-title {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .navbar-content {
    padding: 10px 15px;
  }
  
  .nav-logo img {
    height: 40px;
  }
  
  .team-card img {
    width: 100px;
    height: 100px;
  }
  
  .team-card h2 {
    font-size: 1.1rem;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px 15px;
    font-size: 0.9rem;
  }
  
  .contact-send-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .teacher-icon {
    width: 60px;
    height: 60px;
  }
  
  .teacher-icon i {
    font-size: 1.5rem;
  }
  
  .location-icon {
    width: 60px;
    height: 60px;
  }
  
  .location-icon i {
    font-size: 1.8rem;
  }
  
  .school-name {
    font-size: 1.1rem;
  }
  
  .alumni-title {
    font-size: 1.4rem;
  }
  
  .filter-btn {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
  
  .project-info h3 {
    font-size: 1.1rem;
  }
  
  .project-info p {
    font-size: 0.85rem;
  }
  
  .tech-tag {
    font-size: 0.7rem;
    padding: 4px 10px;
  }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
  /* Larger touch targets */
  .nav-links {
    padding: 10px 5px;
  }
  
  .social-links a {
    min-width: 44px;
    min-height: 44px;
  }
  
  .filter-btn {
    min-height: 44px;
  }
  
  .register-btn,
  .view-project-btn,
  .contact-send-button {
    min-height: 48px;
  }
  
  .scroll-btn {
    width: 50px;
    height: 50px;
  }
  
  /* Remove hover effects on touch */
  .team-card:hover,
  .project-card:hover,
  .alumni-card:hover {
    transform: none;
  }
  
  .alumni-card .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .alumni-title { font-size: 1.6rem; }
  .alumni-card img { width: 100px; height: 100px; }
}


/* ===============================
   HALL OF FAME BUTTON (Team Page)
================================ */
.hall-of-fame-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
}

.hall-of-fame-btn i {
  color: #000;
  transition: transform 0.3s ease;
}

.hall-of-fame-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.hall-of-fame-btn:hover i {
  transform: rotate(15deg);
}

/* Back to Team Button (Alumni Page) */
.back-to-team-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 12px 30px;
  background: transparent;
  border: 2px solid rgba(255, 215, 0, 0.5);
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.back-to-team-btn i {
  color: #ffd700;
  transition: transform 0.3s ease;
}

.back-to-team-btn:hover {
  background: #ffd700;
  color: #000;
  transform: translateX(-5px);
}

.back-to-team-btn:hover i {
  color: #000;
  transform: translateX(-5px);
}

/* Alumni Hero Styling */
.alumni-hero .glitch-text::before {
  color: #ffd700;
}

.alumni-hero .glitch-text::after {
  color: #ffaa00;
}


/* ===============================
   LEAVING SOON BADGE
================================ */
.team-card.leaving-soon {
  border-color: rgba(255, 215, 0, 0.4);
}

.team-card.leaving-soon:hover {
  border-color: #ffd700;
  box-shadow: 0 30px 60px rgba(255, 215, 0, 0.25);
}

.leaving-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #ffd700, #ffaa00);
  color: #000;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.leaving-badge i {
  font-size: 0.7rem;
  color: #000;
  animation: crownBounce 2s ease-in-out infinite;
}

@keyframes crownBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-3px) rotate(5deg); }
}


/* ===============================
   UPCOMING ALUMNI (Ghost Effect)
================================ */
.alumni-card.upcoming-alumni {
  opacity: 0.5;
  border-style: dashed;
  border-color: rgba(255, 215, 0, 0.3);
  position: relative;
}

.alumni-card.upcoming-alumni::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 215, 0, 0.03) 10px,
    rgba(255, 215, 0, 0.03) 20px
  );
  border-radius: 20px;
  pointer-events: none;
}

.alumni-card.upcoming-alumni:hover {
  opacity: 0.7;
  border-color: rgba(255, 215, 0, 0.5);
}

.alumni-card.upcoming-alumni img {
  filter: grayscale(30%);
}

.alumni-card.upcoming-alumni:hover img {
  filter: grayscale(0%);
}

.upcoming-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 215, 0, 0.2);
  border: 1px dashed rgba(255, 215, 0, 0.5);
  color: #ffd700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.upcoming-badge i {
  color: #ffd700;
  animation: hourglassSpin 2s ease-in-out infinite;
}

@keyframes hourglassSpin {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(180deg); }
}


/* Remove underline from social links */
.social-links a,
.socials a {
  text-decoration: none;
}


/* Name hover effects */
.team-card:hover h2,
.project-card:hover h3,
.event-card:hover h3,
.past-event-card:hover h3,
.timeline-content:hover h3,
.cert-card:hover h3 {
  color: #02cadc;
  transition: color 0.3s ease;
}

/* Hall of Fame gold hover for leaving soon members */
.team-card.leaving-soon:hover h2 {
  color: #ffd700;
}
