/* ============================================================
   CVRM DEGREE COLLEGE — Homepage Styles
   Luxury Storytelling Experience
   ============================================================ */

/* ============================================================
   HERO VIDEO SECTION
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video-wrapper video,
.hero-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 18, 0.3) 0%,
    rgba(10, 10, 18, 0.1) 30%,
    rgba(10, 10, 18, 0.4) 70%,
    rgba(10, 10, 18, 0.95) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 var(--container-padding);
}

.hero-label {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-gold);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-lg);
  font-family: var(--font-body);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: var(--fw-bold);
  line-height: 1.15;
  max-width: 900px;
  margin-bottom: var(--space-lg);
  color: var(--color-white);
}

.hero-title .highlight {
  color: var(--color-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: var(--fs-body-lg);
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gray);
  font-size: var(--fs-caption);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 1;
    height: 40px;
  }

  50% {
    opacity: 0.3;
    height: 25px;
  }
}

/* ============================================================
   HERO PINNED VIDEO ZOOM (ScrollTrigger section)
   ============================================================ */
.hero-zoom-section {
  position: relative;
  height: 100vh;
  /* exact viewport height — image fills the screen */
}

.hero-zoom-pin {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-zoom-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  /* Brighter image — overlay handles text contrast */
  filter: brightness(0.65);
  will-change: transform;
}

.hero-zoom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 8, 20, 0.45) 0%,
    rgba(5, 8, 20, 0.25) 30%,
    rgba(5, 8, 20, 0.55) 70%,
    rgba(5, 8, 20, 0.9) 100%
  );
  z-index: 2;
}

.hero-zoom-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(var(--nav-height) + 2rem) var(--container-padding) 4rem;
}

/* Hero text must be white — sits on dark overlay */
.hero-zoom-content .hero-label {
  color: var(--color-gold);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.6);
}

.hero-zoom-content .hero-title {
  color: #ffffff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.hero-zoom-content .hero-title .highlight {
  color: var(--color-gold-light);
  font-style: italic;
}

.hero-zoom-content .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

/* ============================================================
   ABOUT PREVIEW — Split Screen
   ============================================================ */
.about-preview {
  background: var(--color-bg);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-preview-content {
  padding-right: var(--space-2xl);
}

.about-preview-content .label-text {
  margin-bottom: var(--space-md);
  display: block;
}

.about-preview-content h2 {
  margin-bottom: var(--space-lg);
}

.about-preview-content p {
  margin-bottom: var(--space-lg);
}

.about-preview-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: auto;
}

.about-preview-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform var(--duration-slowest) var(--ease-out-expo);
}
.about-preview-image:hover img {
  transform: scale(1.05);
}

.about-preview-image .image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(10, 10, 18, 0.5) 100%
  );
}

/* Gold accent decoration */
.about-preview-image::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -10px;
  width: 100px;
  height: 100px;
  border-top: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
  z-index: 2;
  opacity: 0.5;
}

.about-preview-image::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 100px;
  height: 100px;
  border-bottom: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
  z-index: 2;
  opacity: 0.5;
}

/* ============================================================
   PROGRAMS PREVIEW — Large Typography Panels
   ============================================================ */
.programs-preview {
  background: var(--color-bg);
  overflow: hidden;
}

.program-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-glass-border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease-out-expo);
}

.program-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(201, 168, 76, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

.program-panel:hover::before {
  opacity: 1;
}

.program-panel:first-child {
  border-top: 1px solid var(--color-glass-border);
}

.program-panel-left {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex: 1;
}

.program-number {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  color: var(--color-gray-dark);
  min-width: 50px;
  transition: color var(--duration-normal) ease;
}

.program-panel:hover .program-number {
  color: var(--color-gold);
}

.program-name {
  font-family: var(--font-display);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--color-white);
  transition: all var(--duration-normal) var(--ease-out-expo);
  white-space: nowrap;
}

.program-panel:hover .program-name {
  transform: translateX(15px);
  color: var(--color-gold);
}

.program-panel-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  opacity: 0;
  transform: translateX(20px);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.program-panel:hover .program-panel-right {
  opacity: 1;
  transform: translateX(0);
}

.program-tag {
  font-size: var(--fs-caption);
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.program-arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.25rem;
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.program-panel:hover .program-arrow {
  background: var(--color-gold);
  color: var(--color-bg);
  border-color: var(--color-gold);
}

/* ============================================================
   DEPARTMENTS PREVIEW — Floating Glass Panels
   ============================================================ */
.departments-preview {
  background: var(--color-bg-elevated);
  position: relative;
}

.departments-preview::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.departments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.dept-card {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-slow) var(--ease-out-expo);
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.dept-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(201, 168, 76, 0.3) 50%,
    transparent 100%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--duration-normal) ease;
}

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

.dept-card:hover {
  transform: translateY(-10px);
  background: var(--color-glass-hover);
  box-shadow:
    var(--shadow-lg),
    0 0 40px rgba(201, 168, 76, 0.08);
}

.dept-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-gold);
  background: rgba(201, 168, 76, 0.1);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.dept-card:hover .dept-icon {
  transform: scale(1.1) rotate(5deg);
  background: rgba(201, 168, 76, 0.15);
}

.dept-card h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
  transition: color var(--duration-normal) ease;
}

.dept-card:hover h3 {
  color: var(--color-gold);
}

.dept-card p {
  font-size: var(--fs-small);
  color: var(--color-gray);
  margin: 0 auto;
}

/* ============================================================
   FACILITIES — Horizontal Scroll
   ============================================================ */
.facilities-section {
  overflow: hidden;
  background: var(--color-bg);
}

.facilities-header {
  padding: var(--space-section) 0 var(--space-2xl);
}

.facilities-scroll-wrapper {
  position: relative;
  overflow: hidden;
}

.facilities-track {
  display: flex;
  width: fit-content;
  will-change: transform;
}

.facility-slide {
  width: 75vw;
  /* was 85vw */
  max-width: 750px;
  /* was 900px */
  flex-shrink: 0;
  margin-right: var(--space-lg);
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-glass-border);
}

.facility-slide:last-child {
  margin-right: var(--container-padding);
}

.facility-image {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slowest) var(--ease-out-expo);
}

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

.facility-image .facility-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(10, 10, 18, 0.8) 100%
  );
}

.facility-content {
  padding: var(--space-xl);
}

.facility-content h3 {
  font-size: var(--fs-h4);
  margin-bottom: var(--space-sm);
  color: var(--color-white);
}

.facility-content p {
  font-size: var(--fs-small);
  color: var(--color-gray);
}

.facility-number {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-display);
  font-size: var(--fs-h3);
  color: rgba(255, 255, 255, 0.1);
  font-weight: var(--fw-bold);
  z-index: 2;
}

/* ============================================================
   PLACEMENTS — Statistics
   ============================================================ */
.placements-preview {
  background: var(--color-bg-elevated);
  position: relative;
  overflow: hidden;
}

.placements-preview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-gold),
    transparent
  );
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.stat-item {
  text-align: center;
  padding: var(--space-xl);
  position: relative;
}

.stat-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-glass-border);
}

.stat-item:last-child::after {
  display: none;
}

.stat-number {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: var(--fw-bold);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-suffix {
  font-size: 0.5em;
  color: var(--color-gold-light);
}

.stat-label {
  font-size: var(--fs-small);
  color: var(--color-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Timeline */
.placement-timeline {
  position: relative;
  padding-left: var(--space-3xl);
  max-width: 700px;
  margin: 0 auto;
}

.placement-timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-glass-border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--space-2xl);
  padding-left: var(--space-lg);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-3xl) + 14px);
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  background: var(--color-bg-elevated);
  border: 2px solid var(--color-gold);
  z-index: 2;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: var(--fs-h5);
  color: var(--color-gold);
  margin-bottom: var(--space-xs);
}

.timeline-content h4 {
  font-family: var(--font-body);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
  color: var(--color-white);
}

.timeline-content p {
  font-size: var(--fs-small);
}

/* ============================================================
   PLACEMENTS RESPONSIVE
   ============================================================ */

/* Large Tablets */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .stat-item:nth-child(odd)::after {
    display: block;
  }

  .stat-item:nth-child(even)::after {
    display: none;
  }

  .placement-timeline {
    padding-left: 2.5rem;
  }

  .placement-timeline::before {
    left: 15px;
  }

  .timeline-item::before {
    left: -31px;
  }

  .stat-number {
    font-size: calc(var(--fs-display) * 0.8);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
  }

  .stat-item {
    padding: var(--space-lg);
  }

  .stat-item::after {
    display: none;
  }

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

  .stat-label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
  }

  .placement-timeline {
    padding-left: 2rem;
  }

  .placement-timeline::before {
    left: 10px;
  }

  .timeline-item {
    padding-left: 1rem;
    padding-bottom: var(--space-xl);
  }

  .timeline-item::before {
    left: -26px;
    width: 12px;
    height: 12px;
  }

  .timeline-year {
    font-size: 1.25rem;
  }

  .timeline-content h4 {
    font-size: 1.1rem;
  }

  .timeline-content p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .placements-preview {
    padding: 4rem 1rem;
  }

  .stats-grid {
    gap: 1rem;
  }

  .stat-item {
    padding: 1.25rem;
  }

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

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

  .placement-timeline {
    padding-left: 1.5rem;
  }

  .placement-timeline::before {
    left: 8px;
  }

  .timeline-item {
    padding-left: 0.75rem;
  }

  .timeline-item::before {
    left: -20px;
    width: 10px;
    height: 10px;
  }

  .timeline-year {
    font-size: 1.1rem;
  }

  .timeline-content h4 {
    font-size: 1rem;
  }

  .timeline-content p {
    font-size: 0.9rem;
  }
}

/* ============================================================
   LEADERSHIP PREVIEW
   ============================================================ */
.leadership-preview {
  background: var(--color-bg);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.leader-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: leader;
}

.leader-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  --img-scale: 1;
  --img-translate-y: 0%;
  transform: scale(var(--img-scale)) translateY(var(--img-translate-y));
  transition:
    all var(--duration-slowest) var(--ease-out-expo),
    filter var(--duration-slowest) var(--ease-out-expo);
}

.leader-card:hover .leader-image img {
  filter: grayscale(0%);
  transform: scale(calc(var(--img-scale) * 1.05))
    translateY(var(--img-translate-y));
}

/* Individual leader image alignments to match head levels and scale */
.leader-card img[src*="chairman dhamodhar reddy.webp"] {
  --img-scale: 1.15;
  --img-translate-y: 5%;
}

.leader-card img[src*="secretary - c v ganesh.webp"] {
  --img-scale: 1.25;
  --img-translate-y: 12%;
}

.leader-card img[src*="cvrm principalv.webp"] {
  --img-scale: 1.15;
  --img-translate-y: 7.5%;
}

.leader-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(10, 10, 18, 0.9) 100%
  );
}

/* Gold frame */
.leader-image::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(201, 168, 76, 0);
  border-radius: var(--radius-md);
  z-index: 2;
  transition: all var(--duration-slow) var(--ease-out-expo);
}

.leader-card:hover .leader-image::before {
  border-color: rgba(201, 168, 76, 0.4);
  inset: 15px;
}

.leader-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 3;
  transform: translateY(20px);
  transition: transform var(--duration-normal) var(--ease-out-expo);
}

.leader-card:hover .leader-info {
  transform: translateY(0);
}

.leader-role {
  font-size: var(--fs-label);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-gold);
  /* gold */
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
  font-family: var(--font-body);
}

.leader-name {
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: #ffffff;
  /* white */
  text-shadow: 0 1px 8px rgba(201, 168, 76, 0.35);
  margin-bottom: var(--space-xs);
}

.leader-bio {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.75);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all var(--duration-slow) var(--ease-out-expo);
}

.leader-card:hover .leader-bio {
  max-height: 100px;
  opacity: 1;
  margin-top: var(--space-sm);
}

/* ============================================================
   CONTACT PREVIEW
   ============================================================ */
.contact-preview {
  background: var(--color-bg-elevated);
}

.contact-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.contact-info-card {
  background: var(--color-glass);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--duration-normal) var(--ease-out-expo);
}

.contact-info-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-3px);
}

.contact-info-card .card-icon {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  color: var(--color-gold);
}

.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
  color: var(--color-white);
}

.contact-info-card p {
  font-size: var(--fs-small);
  color: var(--color-gray);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-glass-border);
  aspect-ratio: 1/1;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--color-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.cta-section p {
  margin: 0 auto var(--space-xl);
}

/* ============================================================
   VIDEO SECTIONS
   ============================================================ */
.campus-videos {
  background: var(--color-bg);
} /* Video Grid */
.videos-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
} /* Video Card */
.video-card {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-glass-border);
} /* Video Container */
.video-card .video-placeholder {
  width: 100%;
  border: none;
  border-radius: 0;
  overflow: hidden;
  background: #000;
} /* Video */
.video-card .video-placeholder video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
} /* Video Information */
.video-card-info {
  padding: var(--space-md);
} /* Video Title */
.video-card-info h4 {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  line-height: 1.4;
  color: var(--color-white);
}

/* ============================================================
   RESPONSIVE — Homepage
   ============================================================ */
@media (max-width: 1024px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .about-preview-content {
    padding-right: 0;
  }

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

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }

  .contact-preview-grid {
    grid-template-columns: 1fr;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-zoom-section {
    height: 200vh;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .program-panel-left {
    gap: var(--space-md);
  }

  .program-name {
    font-size: var(--fs-h3);
  }

  .program-panel-right {
    display: none;
  }

  .departments-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    max-width: 400px;
    margin: 0 auto;
  }

  .facility-slide {
    width: 90vw;
  }

  .contact-info-cards {
    grid-template-columns: 1fr;
  }
}




