html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    position: relative;
}

/* Prevent body scroll when mobile menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* ===== NAVBAR STYLES ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(30, 30, 30, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  overflow: visible;
  max-width: 100vw;
  box-sizing: border-box;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  overflow: visible;
}

/* Navbar Brand */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.nav-brand:hover {
  transform: scale(1.05);
}

.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(1.1);
}

.nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Hamburger Menu */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1002;
  overflow: hidden;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hamburger Animation */
.nav-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
  height: 100%;
  overflow: hidden;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  z-index: 1;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.15), transparent);
  transition: left 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.nav-link:hover::before {
  left: 100%;
}

.nav-link:hover {
  background: rgba(255, 0, 0, 0.08);
  color: #ff6666;
  transform: translateY(-1px);
}

.nav-link.active {
  background: linear-gradient(135deg, #ff0000, #ff3333);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
  header {
    height: 70px;
  }
  
  .navbar {
    padding: 1rem;
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: visible;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    overflow: hidden;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  
  .nav-link {
    font-size: 1.1rem;
    padding: 1rem 2rem;
    width: min(200px, 60vw);
    text-align: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
  }
  
  /* Completely disable all hover effects on mobile */
  .nav-link::before {
    display: none !important;
  }
  
  .nav-link:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateX(10px);
    color: #ff6666;
  }
  
  .nav-link:active {
    background: rgba(255, 0, 0, 0.3);
    transform: translateX(5px) scale(0.98);
  }
  
  .nav-title {
    font-size: 1.25rem;
  }
  
  .nav-logo {
    width: 35px;
    height: 35px;
  }
}

@media screen and (max-width: 480px) {
  header {
    height: 65px;
  }
  
  .navbar {
    padding: 0.75rem;
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
    overflow: visible;
  }
  
  .nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(42, 42, 42, 0.95) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1001;
    overflow: hidden;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    display: flex;
  }
  
  .nav-link {
    width: min(250px, 70vw);
    font-size: 1rem;
  }
  
  /* Ensure no hover effects bleed through on small mobile */
  .nav-link::before {
    display: none !important;
  }
  
  .nav-link:hover::before {
    display: none !important;
  }
}

/* Hero Section */
.hero-section {
    background: #1a1a1a;
    padding: 140px 60px 120px 60px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(255, 0, 0, 0.15) 0%, transparent 30%),
        linear-gradient(315deg, rgba(255, 0, 0, 0.1) 0%, transparent 25%),
        linear-gradient(45deg, transparent 60%, rgba(255, 0, 0, 0.08) 100%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-text {
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 30px 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffffff 0%, #ff6666 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 2.2rem;
    color: #ff6666;
    margin: 0 0 40px 0;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.4rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin: 0 auto 50px auto;
    max-width: 800px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff0000;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.cta-button {
    padding: 20px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: white;
    border: 2px solid #ff0000;
}

.cta-button.secondary {
    background: transparent;
    color: #ff6666;
    border: 2px solid #ff6666;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 0, 0, 0.3);
}

.cta-button.primary:hover {
    background: linear-gradient(135deg, #e60000 0%, #aa0000 100%);
}

.cta-button.secondary:hover {
    background: #ff6666;
    color: white;
}


/* Faculty Projects Section */
.faculty-projects-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 102, 102, 0.2);
    position: relative;
}

.faculty-projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ff6666, #ff0000);
}

.section-description {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin: 0 auto 50px auto;
    max-width: 800px;
    text-align: center;
    line-height: 1.6;
}

.faculty-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faculty-project-card {
    background: linear-gradient(145deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 2px solid rgba(255, 102, 102, 0.3);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faculty-project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    height: 4px;
    background: linear-gradient(90deg, #ff6666, #ff9999, #ff6666);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faculty-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 102, 102, 0.2);
    border-color: #ff9999;
}

.faculty-project-card:hover::before {
    opacity: 1;
}

.faculty-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 102, 102, 0.2);
}

.faculty-header h3 {
    color: #ffffff;
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: 1.3;
}

.faculty-rep {
    color: #ff6666;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
}

.project-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-item {
    background: rgba(255, 102, 102, 0.05);
    border: 1px solid rgba(255, 102, 102, 0.1);
    border-radius: 10px;
    padding: 20px;
    transition: all 0.3s ease;
}

.project-item:hover {
    background: rgba(255, 102, 102, 0.1);
    border-color: rgba(255, 102, 102, 0.3);
    transform: translateX(5px);
}

.project-item h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.project-item p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Sections */
section {
    padding: 40px 20px;
    max-width: 100vw;
    margin: 40px auto;
    background: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
    text-align: center;
}
h1 {
    font-size: 2.5em;
    color: #ff0000;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
    letter-spacing: 1px;
}
h2 {
    font-size: 2.2em;
    color: #ff0000;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 0, 0, 0.3);
    letter-spacing: 1px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

.office-bearer {
    color: red;
    font-weight: bold;
    font-size: 1.5em;
}

/* Faculty Representatives Section Styling */
.faculty-representatives-section {
    position: relative;
}

.faculty-representatives-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff6666, transparent);
    margin-top: 20px;
}

.faculty-section-title {
    text-align: center;
    position: relative;
    margin-bottom: 40px;
    color: #ff0000;
    font-size: 2.2em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}



.faculty-section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0000, transparent);
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 0 auto;
    padding: 0;
    justify-items: center;
}

.card-container-OB{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 95vw;
  margin: 0 auto 10px auto;
  padding: 0 15px;
}

.card-container-faculty-representatives {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 0 auto 0px auto;
  padding: 0;
  justify-items: center;
}


.card.faculty-rep {
  background: linear-gradient(145deg, #1e1e1e 0%, #2a2a2a 100%);
  border: 2px solid #ff6666;
  border-radius: 12px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(255, 102, 102, 0.1);
}

.card.faculty-rep::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, #ff6666, #ff9999, #ff6666);
  border-radius: 10px 10px 0 0;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.card.faculty-rep .candidate-img {
  max-width: 250px;
  width: 100%;
  border: 3px solid #ff6666;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.card.faculty-rep:hover .candidate-img {
  transform: scale(1.05);
}

.card.faculty-rep:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(255, 102, 102, 0.25);
  border-color: #ff9999;
}

/* Card Style */
.card {
    background: linear-gradient(145deg, #252525 0%, #2a2a2a 100%);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
    width: 20vw;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    height: 3px;
    background: linear-gradient(90deg, #ff6666, #ff9999, #ff6666);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.candidate-img {
    width: 100%;
    max-width: 25vw;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

.card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 102, 102, 0.3);
    border-color: #ff9999;
}

.card:hover::before {
    opacity: 1;
}

/* Candidate Number Badge */
.candidate-number-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    color: white;
    font-weight: bold;
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 50%;
    min-width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.4);
    z-index: 10;
    border: 2px solid #ffffff;
    font-family: 'Poppins', sans-serif;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: linear-gradient(145deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 0;
    border-radius: 20px;
    max-width: 90vw;
    max-height: 90vh;
    margin: 5% auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(255, 102, 102, 0.3);
    border: 3px solid #ff6666;
    overflow: hidden;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalSlideIn {
    from { 
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #ff6666;
    background: rgba(0, 0, 0, 0.7);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.close:hover {
    background: #ff6666;
    color: white;
    transform: scale(1.1);
}

.modal-img {
    width: 280px;
    height: 280px;
    border-radius: 15px;
    margin-bottom: 20px;
    object-fit: cover;
    border: 4px solid #ff6666;
    box-shadow: 0 10px 30px rgba(255, 102, 102, 0.3);
    transition: transform 0.3s ease;
}

.modal-img:hover {
    transform: scale(1.05);
}

.candidate-profile {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
}

.candidate-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ff6666, #ff9999, #ff6666, #ff0000);
    animation: shimmer 3s ease-in-out infinite;
}

.candidate-details {
    flex: 1;
    min-width: 250px;
}

.candidate-details h3 {
    margin: 0 0 15px 0;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(255, 102, 102, 0.3);
    line-height: 1.2;
}

.candidate-degree {
    color: #cccccc;
    font-size: 1.1em;
    margin: 8px 0;
    font-weight: 500;
    background: rgba(255, 102, 102, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    border-left: 4px solid #ff6666;
}

.candidate-position {
    color: #ff6666;
    font-weight: 700;
    font-size: 1.3em;
    margin: 10px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(135deg, #ff6666, #ff9999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.candidate-bio {
    color: #e0e0e0;
    line-height: 1.7;
    margin: 20px 0 0 0;
    font-size: 1.1em;
    background: rgba(255, 102, 102, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 102, 102, 0.2);
    position: relative;
}

.candidate-bio::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 3rem;
    color: #ff6666;
    font-family: serif;
    opacity: 0.7;
}

/* Contact Details Styling */
.contact-details {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 102, 102, 0.08);
    border-radius: 10px;
    border-left: 4px solid #ff6666;
}

.contact-info {
    color: #e0e0e0;
    margin: 8px 0;
    font-size: 1em;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info:first-child {
    margin-top: 0;
}

.contact-info:last-child {
    margin-bottom: 0;
}


.meetings-section {
  padding: 2rem;
}

.meeting-updates {
  margin-bottom: 2rem;
}

.meeting-post {
  background: #f2f2f2;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}


.project-tabs .tabs {
  display: flex;
  list-style: none;
  padding: 0;
  border-bottom: 2px solid #ccc;
}

.project-tabs .tabs li {
  margin-right: 1rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.project-tabs .tabs li.active {
  border-bottom: 3px solid #007bff;
  font-weight: bold;
}

.tab-content {
  display: none;
  margin-top: 1rem;
}

.tab-content.active {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.project-card {
  width: 250px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.05);
}

.project-card img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Loading indicator */
.loading {
  color: #aaaaaa;
  text-align: center;
  padding: 2rem;
  font-style: italic;
}

.error {
  color: #ff6b6b;
  text-align: center;
  padding: 2rem;
  font-weight: bold;
}

/* Scrollable vertical area */
.scroll-vertical {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 10px;
  margin-top: 1rem;
  border-radius: 8px;
}

/* Scrollable horizontal area */
.scroll-horizontal {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding: 1rem 0;
}

/* Faculty Tabs Styling */
.faculty-tabs .A-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #333;
}

/* Achievements Tabs Styling */
.A-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #333;
  align-content: center;
  justify-content: center;
}

.tab {
  padding: 0.6rem 1.2rem;
  background-color: #252525;
  color: #e0e0e0;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.tab::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #ff0000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab:hover {
  background-color: #333;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
}

.tab:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.tab.active {
  background-color: #ff0000;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.3);
}

.tab.active::before {
  transform: scaleX(1);
  background: white;
}

/* ===================== */
/* Meeting Posts Styling */
/* ===================== */
.meeting-updates {
  margin: 2rem 0;
}

.meeting-post {
  background: #252525;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.05);
  border-left: 4px solid #ff0000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meeting-post:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
}

.meeting-post h4 {
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
}

.meeting-post h4::before {
  content: "📅 ";
}

.post-date {
  color: #aaaaaa;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: block;
}

.post-category {
  display: inline-block;
  background: #ff0000;
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.post-content {
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.post-image {
  max-width: 100%;
  border-radius: 6px;
  margin-top: 1rem;
  border: 1px solid #444;
}

.post-body{
color: #e0e0e0;
  line-height: 1.6;
  font-size: 1rem;
  overflow: break-word;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  flex-grow: 1; /* Takes available space */
    word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  text-align: left;
}

/* ====================== */
/* Achievements Styling */
/* ====================== */
.achievements-list {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0;
  margin-top: 2rem;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.achievements-list::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.achievement-card {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 0.5rem;
  width: 320px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 8px 25px rgba(255, 0, 0, 0.1), 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.achievement-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff0000, #ff4444, #ff0000);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.achievement-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.2), 0 8px 20px rgba(0, 0, 0, 0.4);
  border-color: #ff4444;
}

.achievement-card:hover::before {
  opacity: 1;
}

/* Header with trophy icon */
.achievement-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.achievement-icon {
  color: #FFD700;
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  animation: trophyGlow 2s ease-in-out infinite alternate;
}

@keyframes trophyGlow {
  from {
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
  }
  to {
    filter: drop-shadow(0 2px 8px rgba(255, 215, 0, 0.6));
  }
}
.achievement-card h3 {
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  background: linear-gradient(135deg, #ffffff 0%, #ffcccc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.achievement-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.1);
}

.achievement-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #ff6666;
  margin: 0.3rem 0 1rem;
  font-style: italic;
}

.achievement-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
  line-height: 1.5;
  margin: 0.5rem 0;
}

.achievement-image-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #444;
  margin-bottom: 10px;
}

/* Content styling */
.achievement-content {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Limit to 5 lines */
  -webkit-box-orient: vertical;
  flex-grow: 1; /* Takes available space */
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* See More functionality */
.see-more-btn {
  background: transparent;
  color: #ff6666;
  border: 1px solid #ff6666;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
}

.see-more-btn:hover {
  background: #ff6666;
  color: white;
  transform: translateY(-1px);
}

.full-text {
  color: #e0e0e0;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0.5rem 0;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

/* Achievement image container */
.achievement-image {
  margin: 0.5rem 0;
  text-align: center;
  max-height: 150px; /* Reduced from 200px */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333; /* Fallback background */
  border-radius: 8px;
}

/* Achievement image styling */
.achievement-image img {
  max-width: 25%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #444;
  transition: all 0.3s ease;
  object-fit: contain;
}

/* PDF link button */
.pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  margin-top: auto; /* Pushes to bottom */
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.pdf-link::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 ease;
}

.pdf-link:hover {
  background: linear-gradient(135deg, #e60000 0%, #aa0000 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.4);
}

.pdf-link:hover::before {
  left: 100%;
}

.post-card div, .achievement-card div {
  white-space: pre-line;
}

.contact-section {
  padding: 4rem 2rem;
  background: #121212;
  color: #fff;
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.contact-section p {
  font-size: 1rem;
  color: #bbb;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  background: #1f1f1f;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: #fff;
  font-size: 1rem;
  width: 90%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff1a1a;
}

.contact-button {
  background: #ff1a1a;
  color: #fff;
  padding: 0.75rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-button:hover {
  background: #e60000;
}


/* Under Construction */
.under-construction {
    text-align: center;
    font-size: 1.2em;
    color: #ffcc00;
    font-style: italic;
}
.corner-login-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: none;
  border: none;
  padding: 0;
  opacity: 0.2;
  cursor: pointer;
  z-index: 1000;
  transition: opacity 0.3s, transform 0.3s;
  border-radius: 50%;
}

.corner-login-btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.corner-login-btn:hover {
  opacity: 0.6;
  transform: scale(1.05);
}

/* View Counter Styling */
.view-counter-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
}

.view-counter {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid #ff6666;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 0.5s ease-out;
}

.view-counter:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 102, 102, 0.4);
  border-color: #ff9999;
}

.view-counter i {
  color: #ff6666;
  font-size: 16px;
}

.view-counter-active {
  border-color: #4CAF50;
}

.view-counter-active i {
  color: #4CAF50;
}

.view-counter-error {
  border-color: #f44336;
  background: linear-gradient(135deg, #2a1e1e 0%, #3a2a2a 100%);
}

.view-counter-error i {
  color: #f44336;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile adjustments for view counter */
@media screen and (max-width: 768px) {
  .view-counter-container {
    bottom: 15px;
    left: 15px;
  }
.card-container-OB{
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 95vw;
    margin: 0 auto 10px auto;
    padding: 0 5px;
}
  .view-counter {
    padding: 10px 16px;
    font-size: 12px;
  }

  .view-counter i {
    font-size: 14px;
  }
}
/* Responsive Design */
@media screen and (min-width: 1200px) {
    .card-container-faculty-representatives {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }

    .card-container-OB {
        grid-template-columns: repeat(4, 1fr);
    }

    .card-container {
        grid-template-columns: repeat(4, 1fr);
    }

    .card.faculty-rep {
        min-height: 350px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .card-container-faculty-representatives {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .card-container-OB {
        grid-template-columns: repeat(3, 1fr);
    }

    .card-container {
        grid-template-columns: repeat(3, 1fr);
    }


    .hero-title {
        font-size: 3rem;
    }
}

@media screen and (min-width: 769px) and (max-width: 991px) {
    .card-container-faculty-representatives {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .card-container-OB {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }


    .hero-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 35px;
    }
}

@media screen and (max-width: 1024px) {
    .card-container-faculty-representatives {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .card-container-OB {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-items: center;
    }

    .card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .faculty-section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .faculty-section-title::after {
        right: -35px;
        font-size: 1.3em;
    }

    section {
        width: 100%;
        max-width: 100%;
        padding: 20px 10px;
        margin: 20px auto;
        box-sizing: border-box;
    }

    .card {
        width: auto;
        min-width: 250px;
    }

    .candidate-img {
        max-width: 200px;
    }
    
    .modal-content {
        width: 95%;
        padding: 15px;
    }


    .hero-title {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 768px) {

  /* Hero Section Mobile */
  .hero-section {
    padding: 100px 20px 60px 20px;
    min-height: 70vh;
  }


  .hero-content {
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .hero-cta {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
  }

  .cta-button {
    padding: 16px 24px;
    font-size: 1rem;
  }


  /* Faculty Projects Mobile */
  .faculty-projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .faculty-project-card {
    padding: 20px;
  }

  .faculty-header h3 {
    font-size: 1.2rem;
  }

  .project-item {
    padding: 15px;
  }

  .project-item h4 {
    font-size: 1rem;
  }

  /* Enhanced Modal Mobile Styling */
  .modal-content {
    width: 95%;
    margin: 10% auto;
  }

  .candidate-profile {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
    gap: 20px;
  }

  .modal-img {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px auto;
  }

  .candidate-details h3 {
    font-size: 1.5rem;
  }

  .candidate-degree {
    font-size: 1em;
    padding: 6px 12px;
  }

  .candidate-position {
    font-size: 1.1em;
  }

  .candidate-bio {
    font-size: 1em;
    padding: 15px;
  }

    .card {
        width: calc(50% - 10px);
        min-width: 150px;
        padding: 10px;
        margin: 5px;
    }

    .card p {
        display: none;
    }

    .card .office-bearer {
        display: block !important;
        color: #ff6666;
        font-weight: bold;
        font-size: 16px;
        margin: 5px 0;
    }

    .card .mobile-click-text {
        display: block !important;
        color: #ff6666;
        font-size: 0.9rem;
        font-weight: 600;
        margin-top: 10px;
        text-align: center;
    }

    .candidate-img {
        width: 100%;
        max-width: 150px;
    }

    .card-container-faculty-representatives {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
        padding: 0 15px;
    }

    .card.faculty-rep {
        min-height: 280px;
        padding: 20px;
    }

    .card.faculty-rep .candidate-img {
        max-width: 160px;
    }

    .card.faculty-rep p {
        font-size: 1rem;
    }

    .card.faculty-rep .office-bearer {
        font-size: 1rem;
    }

    /* Upcoming Projects Mobile Text */
    .card h4 {
        font-size: 0.9rem;
    }

    .card p {
        font-size: 0.8rem;
    }

    .modal-content {
        width: 95%;
        padding: 15px;
    }
      .meeting-post {
    padding: 1.2rem;
  }

  .achievements-list {
    gap: 1rem;
  }

  .achievement-card {
    width: 280px;
    min-width: 260px;
    padding: 1.2rem;
  }
  .faculty-tabs .A-tabs {
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.8rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .faculty-tabs .A-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .A-tabs {
    gap: 0.8rem;
    overflow-x: auto;
    padding-bottom: 0.8rem;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .A-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .tab {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    flex: 0 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .meeting-post h4 {
    font-size: 1.1rem;
  }
  
  .achievement-card h3 {
    font-size: 1.1rem;
  }

}



@media screen and (max-width: 480px) {
    header {
        font-size: 1.2em;
        padding: 15px;
        padding-bottom: 0px;
    }

    section {
        width: 100%;
        max-width: 100%;
        padding: 15px 8px;
        margin: 15px auto;
        box-sizing: border-box;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5em;
    }

    .card {
        width: calc(50% - 5px);
        min-width: 140px;
        padding: 8px;
        margin: 2px;
    }

    .card p {
        display: none;
    }

    .card .office-bearer {
        display: block !important;
        color: #ff6666;
        font-weight: bold;
        font-size: 14px;
        margin: 3px 0;
    }

    .card .mobile-click-text {
        display: block !important;
        color: #ff6666;
        font-size: 0.85rem;
        font-weight: 600;
        margin-top: 8px;
        text-align: center;
    }

    .candidate-img {
        width: 100%;
        max-width: 120px;
    }

    .card-container-faculty-representatives {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .card-container-OB {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        justify-items: center;
    }

    .card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 0 8px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .card.faculty-rep {
        min-height: 250px;
        padding: 15px;
    }

    .card.faculty-rep .candidate-img {
        max-width: 140px;
    }

    .card.faculty-rep p {
        font-size: 0.9rem;
    }

    .card.faculty-rep .office-bearer {
        font-size: 0.9rem;
    }

    /* Upcoming Projects Extra Small Mobile Text */
    .card h4 {
        font-size: 0.8rem;
    }

    .card p {
        font-size: 0.7rem;
    }

    .modal-content {
        width: 95%;
        padding: 15px;
    }

    .achievement-card {
        width: 260px;
        min-width: 240px;
        padding: 1rem;
        margin: 0.3rem;
    }

    .achievement-card h3 {
        font-size: 1.1rem;
    }

    .achievement-card h4 {
        font-size: 0.85rem;
    }

    .achievement-card p {
        font-size: 0.9rem;
    }

    .pdf-link {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }

    /* Hero Section Extra Small */
    .hero-section {
        padding: 80px 15px 40px 15px;
        min-height: 60vh;
    }


    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    /* Faculty Projects Extra Small */
    .faculty-projects-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .faculty-project-card {
        padding: 15px;
    }

    .faculty-header h3 {
        font-size: 1.1rem;
    }

    .project-item {
        padding: 12px;
    }

    .project-item h4 {
        font-size: 0.95rem;
    }
}

/* Animation for tab switching */
@keyframes tabActive {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }
}

.tab.active {
  animation: tabActive 0.5s ease-out;
}

/* Footer Styling */
footer {
  background: #0a0a0a;
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.sponsor-link {
  color: #ff6666;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.sponsor-link:hover {
  color: #ff9999;
}