/* ===========================================================
  GLA UNIVERSITY - OPTIMIZED DESIGN SYSTEM
  Professional Green & Gold Theme
=========================================================== */

/* ===========================================================
  FONTS & CSS VARIABLES
=========================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Primary Green */
  --primary-green-darkest: #0a4011;
  --primary-green-dark: #0d3c0f;
  --primary-green: #1b5e20;
  --primary-green-light: #2e7d32;
  --primary-green-lighter: #43a047;
  --primary-green-subtle: #e8f5e9;
  
  /* Accent Gold/Yellow */
  --accent-gold: #d4af37;
  --accent-yellow: #ffc107;
  --accent-yellow-light: #ffd54f;
  --accent-yellow-dark: #f9a825;
  --accent-yellow-medium: #ffd54f;
  
  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
  
  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.12);
  --shadow-green: 0 8px 24px rgba(27, 94, 32, 0.2);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.3);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
}

/* ===========================================================
  GLOBAL RESET & BASE
=========================================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(135deg, 
    rgba(34, 139, 34, 0.512) 0%, 
    rgba(144, 238, 144, 0.2) 50%, 
    rgba(255, 217, 0, 0.438) 100%
  );
  background-attachment: fixed;
  background-size: cover;
  color: var(--gray-600);
  line-height: 1.625;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

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

/* ===========================================================
  VIDEO BANNER
=========================================================== */

.video-banner {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
}

.video-banner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.video-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(27, 94, 32, 0.5) 0%, 
    rgba(0, 0, 0, 0.4) 50%,
    rgba(27, 94, 32, 0.5) 100%);
  z-index: 1;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.video-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.hero-content {
  text-align: center;
  max-width: 1500px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  font-family: var(--font-heading);
  margin-bottom: 20px;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(27, 94, 32, 0.4);
  animation: fadeInUp 1s ease;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  margin-bottom: 15px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1.2s ease;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.8;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  animation: fadeInUp 1.4s ease;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1.6s ease;
}

/* ===========================================================
  CTA BUTTONS
=========================================================== */

.cta-btn {
  padding: 15px 35px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

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

.cta-btn.primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: var(--white);
  border: 2px solid transparent;
}

.cta-btn.primary:hover {
  background: linear-gradient(135deg, var(--primary-green-light), var(--accent-gold));
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-green);
  border-color: var(--accent-gold);
}

.play-btn {
  padding: 14px 32px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.05);
}

.play-icon {
  font-size: 1.2rem;
}

/* ===========================================================
  DSW SECTION
=========================================================== */
.dsw-section {
  padding: 80px 20px;
  background: transparent;
}

.dsw-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
}

/* Sidebar */
.dsw-sidebar {
  background: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  padding: 20px 0;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 120px;
  height: fit-content;
  border-left: 4px solid var(--primary-green);
}

.sidebar-header {
  padding: 15px 20px;
  border-bottom: 2px solid var(--gray-200);
}

.sidebar-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: var(--font-heading);
  text-align: center;
}

.sidebar-nav {
  padding: 10px 0;
}

.nav-links {
  list-style: none;
}

.dsw-sidebar .nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.dsw-sidebar .nav-link:hover,
.dsw-sidebar .nav-item.active .nav-link {
  background: var(--primary-green-subtle);
  color: var(--primary-green);
  border-left-color: var(--accent-gold);
}

.nav-icon {
  font-size: 1.1rem;
  margin-right: 12px;
  width: 22px;
  text-align: center;
}

/* Main Content */
.dsw-main-content {
  flex: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  animation: fadeInUp 0.8s ease;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-yellow-dark));
  color: var(--white);
  padding: 12px 32px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
  animation: slideInRight 0.6s ease;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--primary-green);
  font-family: var(--font-heading);
  margin-bottom: 18px;
  text-shadow: 2px 2px 6px rgba(27, 94, 32, 0.15);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.title-underline {
  width: 90px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-yellow), var(--accent-gold));
  margin: 0 auto;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-gold);
  animation: shimmer 3s infinite;
  background-size: 200% 100%;
}

/* Mission & Vision */
.mission-vision-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 30px;
}

.mission-box,
.vision-box {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--primary-green);
}

.mission-box h3,
.vision-box h3 {
  color: var(--primary-green);
  font-size: 1.3rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-text,
.vision-text {
  color: var(--gray-600);
  line-height: 1.8;
}

/* Objectives */
.objectives-container {
  background: rgba(255, 255, 255, 0.85);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--accent-gold);
}

.objectives-container h3 {
  color: var(--primary-green);
  font-size: 1.3rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.objectives-list {
  list-style: none;
  display: grid;
  gap: 15px;
}

.objectives-list li {
  padding-left: 30px;
  position: relative;
  color: var(--gray-600);
  line-height: 1.8;
}

.objectives-list li i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* ===========================================================
  GOVERNING BODY SECTION
=========================================================== */
.governing-body-section {
  padding: 80px 20px;
  background: transparent;
}

.governing-body-container {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
  align-items: stretch;
}

.governing-body-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.95) 100%);
  border-radius: var(--radius-xl);
  padding: 25px 20px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.12), 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(45, 80, 22, 0.1);
  border-top: 4px solid var(--primary-green);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  max-height: 396px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.governing-body-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
}

.governing-body-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(27, 94, 32, 0.25),
              0 12px 32px rgba(212, 175, 55, 0.2),
              0 0 0 2px rgba(212, 175, 55, 0.3);
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 240, 0.98) 100%);
}

.member-image-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--primary-green);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.2);
  position: relative;
  background: var(--white);
  flex-shrink: 0;
  padding: 5px;
}

.member-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.member-image-wrapper::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(135deg, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.governing-body-card:hover .member-image-wrapper::after {
  opacity: 0.2;
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
  background: var(--white);
}

.governing-body-card:hover .member-image {
  transform: scale(1.05);
}

.member-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 6px;
}

.member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 4px;
  font-family: var(--font-heading);
  letter-spacing: -0.3px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.member-designation {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.member-email {
  display: none;
}

/* ===========================================================
  DEAN PROFILE SECTION - ENHANCED
=========================================================== */
.enhanced-dean-section {
  padding: 80px 20px;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.enhanced-dean-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent);
  border-radius: 50%;
  z-index: 0;
}

.dean-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.dean-header {
  text-align: center;
  margin-bottom: 40px;
}

.dean-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-green);
  font-family: var(--font-heading);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  letter-spacing: -0.5px;
}

.title-underline-animated {
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-yellow));
  margin: 20px auto;
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

.dean-profile-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.96) 100%);
  border-radius: var(--radius-2xl);
  padding: 50px;
  box-shadow: 0 24px 80px rgba(30, 60, 114, 0.12),
              0 8px 24px rgba(45, 80, 22, 0.08),
              0 0 0 1px rgba(45, 80, 22, 0.05);
  border: 1px solid rgba(45, 80, 22, 0.1);
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dean-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-green), var(--accent-gold));
}

.dean-content-wrapper {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  align-items: start;
}

.dean-image-container {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.dean-image {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid var(--primary-green);
  box-shadow: 0 12px 35px rgba(27, 94, 32, 0.25);
  position: relative;
  background: var(--white);
  padding: 8px;
}

.dean-image::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-xl);
  pointer-events: none;
}

.dean-image::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(135deg, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.dean-image:hover::after {
  opacity: 0.2;
}

.dean-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.dean-info-section h2 {
  font-size: 2.8rem;
  color: var(--primary-green);
  margin-bottom: 15px;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
}

.dean-position {
  color: var(--accent-gold);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
  padding-bottom: 12px;
  font-family: var(--font-heading);
}

.dean-position::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.dean-description {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1rem;
}

.dean-contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.dean-contact-btn {
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dean-contact-btn.primary {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  color: var(--white);
}

.dean-contact-btn.primary:hover {
  background: linear-gradient(135deg, var(--primary-green-light), var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.dean-contact-btn.secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
}

.dean-contact-btn.secondary:hover {
  background: var(--primary-green-subtle);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.dean-contact-btn i {
  font-size: 1rem;
}

/* ===========================================================
  FACULTY COUNCIL SECTION
=========================================================== */
.faculty-council-section {
  padding: 100px 20px;
  background: transparent;
  position: relative;
}

.faculty-grid {
  max-width: 1000px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  min-height: 600px;
  align-items: stretch;
}

.faculty-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 252, 255, 0.95) 100%);
  border-radius: var(--radius-xl);
  padding: 25px 20px 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(30, 60, 114, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(30, 60, 114, 0.08);
  border-left: 4px solid var(--primary-green);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  height: 100%;
  max-height: 396px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.faculty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.faculty-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 72px rgba(27, 94, 32, 0.22),
              0 12px 40px rgba(212, 175, 55, 0.18),
              0 0 0 2px rgba(244, 164, 0, 0.4);
  border-color: var(--accent-gold);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 252, 245, 0.98) 100%);
}

.faculty-card:hover::before {
  transform: scaleX(1);
}

.faculty-image-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--primary-green);
  box-shadow: 0 6px 20px rgba(27, 94, 32, 0.2);
  position: relative;
  background: var(--white);
  flex-shrink: 0;
  padding: 5px;
}

.faculty-image-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.faculty-image-wrapper::after {
  content: '';
  position: absolute;
  top: -2px;
  right: -2px;
  bottom: -2px;
  left: -2px;
  background: linear-gradient(135deg, var(--accent-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.faculty-card:hover .faculty-image-wrapper::after {
  opacity: 0.2;
}

.faculty-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  background: var(--white);
}

.faculty-card:hover .faculty-image {
  transform: scale(1.05);
}

.faculty-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: 4px;
}

.faculty-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 4px;
  font-family: var(--font-heading);
  letter-spacing: -0.3px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.faculty-role {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 6px;
  text-transform: capitalize;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.faculty-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  font-weight: 500;
  margin-top: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 100%;
}

.faculty-email:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(27, 94, 32, 0.2);
  border-color: var(--accent-gold);
}

.faculty-email i {
  font-size: 1rem;
}

/* ===========================================================
  NEWS PANEL
=========================================================== */
#recentNewsBackdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 2000;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

#recentNewsPanel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
  z-index: 2001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
}

#recentNewsPanel.open {
  right: 0;
}

#recentNewsHeader {
  padding: 20px;
  background: var(--primary-green);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#recentNewsHeader h3 {
  font-size: 1.2rem;
  margin: 0;
}

#recentNewsClose {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 5px 10px;
  transition: all 0.3s ease;
}

#recentNewsClose:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
}

.news-list {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.news-item {
  background: var(--gray-50);
  padding: 15px;
  border-radius: var(--radius-lg);
  margin-bottom: 15px;
  border-left: 4px solid var(--primary-green);
  transition: all 0.3s ease;
}

.news-item:hover {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  transform: translateX(-5px);
}

.news-thumb {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 10px;
}

.news-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 8px;
}

.news-desc {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 10px;
}

.news-meta {
  font-size: 0.85rem;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.news-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-600);
}

/* ===========================================================
  RESPONSIVE DESIGN
=========================================================== */
@media (max-width: 1024px) {
  .dsw-container {
    grid-template-columns: 1fr;
  }
  
  .dsw-sidebar {
    position: static;
    border-left: none;
    border-top: 4px solid var(--primary-green);
  }
  
  .dean-content-wrapper {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  
  .dean-image-container {
    position: static;
  }
  
  .governing-body-container,
  .faculty-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
  
  .navbar-nav {
    display: none;
  }
  
  /* Hero section */
  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-btn, .play-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Video banner */
  .video-banner {
    height: 60vh;
    min-height: 400px;
  }
  
  /* Sections */
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  /* DSW Section */
  .dsw-section {
    padding: 40px 15px;
  }
  
  .dsw-container {
    grid-template-columns: 1fr;
  }
  
  .dsw-sidebar {
    position: static;
    border-left: none;
    border-top: 4px solid var(--primary-green);
    margin-bottom: 30px;
  }
  
  .sidebar-nav {
    max-height: none;
  }
  
  .nav-link {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
  
  /* Dean profile */
  .dean-section,
  .enhanced-dean-section {
    padding: 40px 15px;
  }
  
  .dean-profile-card {
    padding: 30px 20px;
  }
  
  .dean-content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .dean-image-container {
    position: static;
  }
  
  .dean-main-title {
    font-size: 2rem;
  }
  
  .dean-info-section h2 {
    font-size: 2rem;
  }
  
  .dean-position {
    font-size: 1.2rem;
  }
  
  .dean-image {
    width: 200px;
    height: 200px;
  }
  
  /* Faculty and Governing Body */
  .faculty-council-section,
  .governing-body-section {
    padding: 50px 15px;
  }
  
  .faculty-grid,
  .governing-body-container {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .faculty-card,
  .governing-body-card {
    padding: 30px 20px;
    min-height: 300px;
  }
  
  .faculty-image-wrapper {
    width: 140px;
    height: 140px;
  }
  
  .member-image-wrapper {
    width: 150px;
    height: 150px;
  }
  
  .faculty-name,
  .member-name {
    font-size: 1.25rem;
  }
  
  .faculty-role,
  .member-designation {
    font-size: 0.95rem;
  }
  
  /* News panel */
  #recentNewsPanel {
    width: 90vw;
    right: -90vw;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  /* Video banner */
  .video-banner {
    height: 50vh;
    min-height: 350px;
  }

  /* Hero content */
  .hero-title {
    font-size: 1.5rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-description {
    font-size: 0.85rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btn,
  .play-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  /* Sections */
  .section-title {
    font-size: 1.5rem;
  }
  
  .section-subtitle {
    font-size: 0.85rem;
  }
  
  /* DSW Section */
  .dsw-section {
    padding: 30px 10px;
  }
  
  .dsw-content {
    padding: 20px 15px;
  }
  
  .stat-card {
    padding: 15px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .stat-label {
    font-size: 0.85rem;
  }
  
  /* Dean profile */
  .dean-section,
  .enhanced-dean-section {
    padding: 30px 10px;
  }
  
  .dean-profile-card {
    padding: 25px 15px;
  }
  
  .dean-main-title {
    font-size: 1.5rem;
  }
  
  .dean-info-section h2 {
    font-size: 1.5rem;
  }
  
  .dean-position {
    font-size: 1rem;
  }
  
  .dean-description {
    font-size: 0.9rem;
  }
  
  .dean-image {
    width: 160px;
    height: 160px;
  }
  
  /* Faculty grid and Governing body */
  .faculty-council-section,
  .governing-body-section {
    padding: 40px 10px;
  }
  
  .faculty-grid,
  .governing-body-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
  
  .faculty-card,
  .governing-body-card {
    padding: 25px 15px;
    min-height: 280px;
  }
  
  .faculty-image-wrapper {
    width: 130px;
    height: 130px;
  }
  
  .member-image-wrapper {
    width: 140px;
    height: 140px;
  }
  
  .faculty-name,
  .member-name {
    font-size: 1.2rem;
  }
  
  .faculty-role,
  .member-designation {
    font-size: 0.9rem;
  }
  
  .faculty-email,
  .member-email {
    font-size: 0.85rem;
    padding: 8px 15px;
  }
  
  /* News panel */
  #recentNewsPanel {
    width: 95vw;
    right: -95vw;
  }
  
  .news-card {
    padding: 15px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    padding: 40px 15px 30px;
  }
  
  .footer-logo {
    height: 50px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    font-size: 0.85rem;
  }
  
  .quick-links {
    gap: 10px;
  }
  
  .quick-link {
    font-size: 0.85rem;
  }
}

/* ===========================================================
  UTILITY CLASSES
=========================================================== */
.fade-in-up {
  animation: fadeInUp 0.8s ease;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--accent-gold);
  border-bottom-color: var(--accent-yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.loading-text {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
  z-index: 10000;
  transition: width 0.2s ease;
}

/* Print Styles */
@media print {
  .video-banner,
  #recentNewsPanel,
  #recentNewsBackdrop,
  .hero-buttons,
  .loading-screen {
    display: none !important;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .section-title,
  .dean-main-title {
    color: black !important;
  }
  
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}

