/* ===================== NCC/NSS Specific Styles ===================== */
/* Modern, Professional Design for NCC and NSS Pages */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

/* ===================== Hero Section ===================== */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  animation: fadeInDown 0.8s ease;
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-logo i {
  font-size: 3.5rem;
  color: white;
}

.hero-logo:hover {
  transform: scale(1.05) rotate(5deg);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.hero-title:hover {
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: 3px;
}

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

.hero-description {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.85;
  line-height: 1.8;
}

/* ===================== Main Content ===================== */
.main-content {
  width: 100%;
  margin: 0;
  padding: 2rem 0;
  background: transparent;
  min-height: 100vh;
}

/* ===================== Base Content Styles ===================== */
.content-section {
  padding: 4rem 2rem;
  background: #ffffff;
  margin: 2rem auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 1200px;
  width: 100%;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease;
}

.content-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  animation: fadeInDown 0.8s ease;
  transition: all 0.3s ease;
}

.section-title:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}



/* ===================== Image Gallery Section ===================== */
.image-gallery-section {
  margin: 40px auto;
  background: white;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 1200px;
  position: relative;
}

.image-gallery-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 15px auto;
  border-radius: 2px;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  padding: 0 10px;
}

.swiper-slide {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.swiper-slide:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.swiper-slide-active {
  transform: scale(1.05);
  z-index: 2;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  border-radius: 12px;
  min-height: 250px;
  display: block;
}

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

/* Image overlay for better visual appeal */
.swiper-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.swiper-slide:hover::after {
  opacity: 1;
}

/* Caption styling */
.swiper-slide::before {
  content: attr(data-caption);
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.swiper-slide:hover::before {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive swiper slides */
@media (max-width: 768px) {
  .swiper {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .swiper {
    height: 200px;
    padding: 0 5px;
  }
  
  .swiper-slide {
    margin: 0 2px;
  }
}

/* Handle broken images and loading states */
.swiper-slide img[src*="logo.webp"] {
  padding: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.swiper-slide img:not([src]) {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.swiper-slide img:not([src])::before {
  content: '📷';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: #6c757d;
}

.swiper-button-next,
.swiper-button-prev {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin-top: -22.5px;
}

.swiper-button-next {
  right: 5px;
}

.swiper-button-prev {
  left: 5px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: white;
  transform: scale(1.1);
}

.swiper-pagination {
  bottom: 10px !important;
}

.swiper-pagination-bullet {
  background: #667eea;
  opacity: 0.5;
  transition: all 0.3s ease;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.2);
  background: #764ba2;
}

/* Mobile adjustments for navigation */
@media (max-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    width: 35px;
    height: 35px;
    margin-top: -17.5px;
  }
  
  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 14px;
  }
}

/* ===================== Content Section ===================== */
.content-wrapper {
  max-width: 100%;
}

.content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #555;
  text-align: justify;
}

/* ===================== Programs Section ===================== */
.programs-section {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

/* Responsive programs grid */
@media (max-width: 1200px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 900px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .programs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.program-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e0e0e0;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease;
}

.program-card:nth-child(1) { animation-delay: 0.1s; opacity: 0; animation-fill-mode: forwards; }
.program-card:nth-child(2) { animation-delay: 0.2s; opacity: 0; animation-fill-mode: forwards; }
.program-card:nth-child(3) { animation-delay: 0.3s; opacity: 0; animation-fill-mode: forwards; }
.program-card:nth-child(4) { animation-delay: 0.4s; opacity: 0; animation-fill-mode: forwards; }
.program-card:nth-child(5) { animation-delay: 0.5s; opacity: 0; animation-fill-mode: forwards; }
.program-card:nth-child(6) { animation-delay: 0.6s; opacity: 0; animation-fill-mode: forwards; }
.program-card:nth-child(7) { animation-delay: 0.7s; opacity: 0; animation-fill-mode: forwards; }
.program-card:nth-child(8) { animation-delay: 0.8s; opacity: 0; animation-fill-mode: forwards; }
.program-card:nth-child(9) { animation-delay: 0.9s; opacity: 0; animation-fill-mode: forwards; }

.program-card .program-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #667eea;
  transition: all 0.3s ease;
}

.program-card:hover .program-icon {
  transform: scale(1.1) rotate(5deg);
  color: #764ba2;
}

.program-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.program-card:hover::before {
  opacity: 1;
  top: -60%;
  left: -60%;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3), 0 5px 15px rgba(118, 75, 162, 0.2);
  border-color: #667eea;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.program-card h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  font-weight: 600;
  transition: all 0.3s ease;
}

.program-card:hover h4 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.program-card p {
  color: #666;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ===================== Call to Action ===================== */
.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 60px;
  border-radius: 20px;
  text-align: center;
  color: white;
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  line-height: 1.8;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-size: 200% 200%;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: translateY(-3px) scale(1.05);
  }
  50% {
    transform: translateY(-3px) scale(1.08);
  }
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.cta-button:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5), 0 0 25px rgba(118, 75, 162, 0.4);
  animation: pulse 2s infinite;
}

/* ===================== Additional Content Sections ===================== */
.highlight-section {
  margin: 2.5rem 0;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  border-left: 5px solid #007bff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.highlight-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #007bff20, #007bff10);
  border-radius: 50%;
  transform: translate(30px, -30px);
}

.highlight-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.highlight-section h3 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.highlight-section h3 i {
  color: #667eea;
  font-size: 1.5rem;
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.achievement-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: all 0.3s ease;
}

.achievement-list li i {
  color: #667eea;
  font-size: 1.2rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.achievement-list li:hover i {
  transform: scale(1.2);
  color: #764ba2;
}

.achievement-list li:last-child {
  border-bottom: none;
}

.achievement-list li:hover {
  background-color: rgba(102, 126, 234, 0.08);
  border-radius: 6px;
  margin: 0 -0.5rem;
  padding-left: 1.25rem;
}

.achievement-list li::before {
  display: none;
}

.achievement-list strong {
  color: #667eea;
  font-weight: 600;
}

/* ===================== Responsive Design ===================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-logo {
    width: 100px;
    height: 100px;
    font-size: 50px;
  }
  
  .main-content {
    padding: 40px 15px;
  }
  
  .content-section,
  .programs-section,
  .council-section {
    padding: 30px 20px;
  }
  
  .programs-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .swiper {
    height: 300px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  .highlight-section {
    margin: 1.5rem 0;
    padding: 1rem;
  }
  
  .highlight-section h3 {
    font-size: 1.1rem;
  }
  
  .achievement-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .section-title,
  .hero-title {
    font-size: 2rem;
  }
  
  .cta-title {
    font-size: 1.8rem;
  }
}

/* ===================== Animation Classes ===================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: translateY(-3px) scale(1.05);
  }
  50% {
    transform: translateY(-3px) scale(1.08);
  }
}

/* ===================== Accessibility ===================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .program-card,
  .content-section,
  .programs-section {
    border: 2px solid #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Content text styling */
.content-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.content-section > .content-wrapper > p {
  font-size: 1.2rem;
  color: #444;
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 400;
}



/* ===================== Council Section Styles ===================== */
.council-section {
  background: white;
  border-radius: 20px;
  padding: 50px;
  margin-bottom: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease 0.2s;
  animation-fill-mode: both;
}

.council-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.council-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #e9ecef;
}

.council-tab {
  background: none;
  border: none;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #6c757d;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all 0.3s ease;
  margin: 0 10px;
}

.council-tab.active {
  color: #667eea;
  border-bottom-color: #667eea;
}

.council-tab:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Council Hierarchy Display */
.council-hierarchy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.hierarchy-level {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.council-member-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 280px;
  max-width: 320px;
  border: 2px solid transparent;
}

.council-member-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  border-color: #667eea;
}

.member-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

.member-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.member-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  transition: transform 0.3s ease;
}

.member-img:hover {
  transform: scale(1.1);
}

.member-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.member-designation {
  font-size: 1rem;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.member-course {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
  background: rgba(102, 126, 234, 0.1);
  padding: 5px 10px;
  border-radius: 20px;
  display: inline-block;
}

.member-contact {
  font-size: 0.85rem;
  color: #495057;
}

.member-contact .contact-item {
  display: block;
  margin-bottom: 5px;
}

.member-contact i {
  margin-right: 8px;
  color: #667eea;
  width: 16px;
}

/* Special styling for different positions */
.faculty-coordinator {
  border-color: #dc3545;
  background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 50%);
}

.faculty-coordinator .member-designation {
  color: #dc3545;
}

.president {
  border-color: #ffc107;
  background: linear-gradient(135deg, #fffbf0 0%, #fed7aa 50%);
}

.president .member-designation {
  color: #ffc107;
}

.vice-president {
  border-color: #28a745;
  background: linear-gradient(135deg, #f0fff4 0%, #c6f6d5 50%);
}

.vice-president .member-designation {
  color: #28a745;
}

/* Council Table View */
.council-table {
  overflow-x: auto;
  margin-top: 30px;
}

.council-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.council-table th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 12px;
  font-weight: 600;
  text-align: left;
  border: none;
}

.council-table td {
  padding: 12px;
  border-bottom: 1px solid #e9ecef;
  vertical-align: top;
}

.council-table tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

.council-table tr:last-child td {
  border-bottom: none;
}

.table-name {
  font-weight: 600;
  color: #2c3e50;
}

.table-designation {
  color: #667eea;
  font-weight: 500;
}

.table-contact {
  font-size: 0.9rem;
  color: #6c757d;
}

.table-course {
  font-size: 0.9rem;
  background: rgba(102, 126, 234, 0.1);
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
  color: #667eea;
}
