﻿/* Color palette approximating Srinivas University */
:root {
  --su-blue: #2f2f75;
  --su-blue-dark: #1f204d;
  --su-gold: #cfa44a;
  --su-gold-soft: #e2c16f;
  --su-grey-light: #f2f2f7;
  --su-grey-muted: #e1e4eb;
  --text-main: #111827;
  --text-soft: #6b7280;
  --white: #ffffff;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.18);
  --radius-lg: 18px;
  --radius-pill: 999px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: radial-gradient(circle at top, #edf2ff 0, #f9fafb 45%, #f3f4f6);
  color: var(--text-main);
  scroll-behavior: smooth;
}

.section {
  scroll-margin-top: 140px;
  /* Offset for sticky headers */
}

/* ========================================
   TOP CONTACT BAR
   ======================================== */

.top-contact-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(135deg, #2f2f75 0%, #1f204d 100%);
  color: #ffffff;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 7vw;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-contact-bar-content {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item i {
  font-size: 0.9rem;
}

.contact-item:hover {
  color: var(--su-gold-soft);
}

.contact-item a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--su-gold-soft);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.social-icon {
  color: #ffffff;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: var(--su-gold-soft);
  transform: translateY(-2px);
}

/* Mobile responsiveness for top contact bar */
@media (max-width: 768px) {
  .top-contact-bar {
    height: auto;
    padding: 0.5rem 5vw;
    font-size: 0.75rem;
  }

  .top-contact-bar-content {
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;
    align-items: center;
  }

  .contact-item {
    font-size: 0.75rem;

  }

  .social-icons {
    gap: 0.5rem;
  }
}

/* ========================================
   TOP NAVIGATION
   ======================================== */

/* Top Nav */

.top-nav {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  height: 70px;
  padding: 0 7vw;
  display: flex;
  align-items: center;
  justify-content: space-around;
  backdrop-filter: blur(16px);
  background: #f4f4f4;
  color: var(--white);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 40% 60% 60% 40%;
  background: radial-gradient(circle at 30% 20%, #fffbeb, var(--su-gold));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--su-blue-dark);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  text-transform: uppercase;
}

.logo-subtitle {
  font-size: 0.7rem;
  opacity: 0.9;
}



/* Nav links */

.nav-links {
  display: flex;
  gap: 1.75rem;
  align-items: center;
  font-size: 1rem;
}

.nav-links a {
  position: relative;
  color: #5a607a;
  text-decoration: none;
  padding: 0.25rem 0;
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--su-gold), var(--su-gold-soft));
  border-radius: 999px;
  transition: width 0.25s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 0;
}

.nav-drop-trigger {
  background: none;
  border: none;
  color: #5a607a;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  padding: 0.25rem 0;
  font-family: inherit;
  font-weight: 500;
}

.nav-drop-trigger:hover {
  color: var(--su-blue-dark);
}

.caret {
  font-size: 1.2em;
  transition: transform 0.2s ease;
}

.nav-dropdown:hover .caret {
  transform: rotate(180deg);
}

.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #0f122d;
  border: 1px solid rgba(226, 232, 240, 0.2);
  border-radius: 12px;
  padding: 0.5rem 0.3rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  display: none;
  flex-direction: column;
  z-index: 1200;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-drop-menu a {
  color: #e5e7eb;
  padding: 0.55rem 0.9rem;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.nav-drop-menu a:hover {
  background: rgba(207, 164, 74, 0.16);
  color: var(--white);
}

.nav-dropdown:hover .nav-drop-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.nav-dropdown.open .nav-drop-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Mobile toggle */

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #000000;
  margin: 4px 0;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Mobile Navigation Styles */
@media (max-width: 900px) {
  .nav-drop-trigger:hover {
    color: #fff;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 7vw;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .nav-links.open {
    max-height: 500px;
    opacity: 1;
  }

  .nav-links a {
    padding: 0.9rem 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0;
  }

  .nav-drop-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .nav-drop-menu {
    position: static;
    background: #f8f9fa;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: none;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .nav-dropdown.open .nav-drop-menu {
    max-height: 300px;
    opacity: 1;
    display: flex;
  }

  .nav-drop-menu a {
    color: #334155;
    padding: 0.75rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
  }

  .nav-drop-menu a:hover {
    background: rgba(207, 164, 74, 0.1);
    color: var(--su-blue-dark);
  }

  .nav-dropdown:hover .caret {
    transform: none;
  }

  .nav-dropdown.open .caret {
    transform: rotate(180deg);
  }

  /* Disable hover behavior on mobile */
  .nav-dropdown:hover .nav-drop-menu {
    display: none;
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 85vh;
  padding: 160px 7vw 96px;
  color: var(--white);
  background-image: linear-gradient(to bottom,
      rgba(7, 11, 40, 0.85),
      rgba(7, 11, 40, 0.9)),
    url("images/about-srinivas-university-1.webp");
  background-size: cover;
  background-position: center;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(240, 165, 0, 0.25),
      transparent 55%);
  mix-blend-mode: screen;
}

.hero-content {
  position: relative;
  max-width: 640px;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 2.3rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1rem;
  max-width: 32rem;
  color: rgba(245, 248, 255, 0.9);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease,
    background-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: #e19f21;
  color: #ffffff;

}

.btn-primary:hover {
  transform: translateY(-1px);

}

.btn-outline {
  background: transparent;
  border-color: rgba(248, 250, 252, 0.5);
  color: #e5e7eb;
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 0.65);
}

/* Apply Now Button in Navigation */
.btn-apply-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  background: linear-gradient(135deg, #e19f21 0%, #cfa44a 100%);
  color: #ffffff;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 4px 12px rgba(225, 159, 33, 0.3);
}

.btn-apply-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 159, 33, 0.4);
  background: linear-gradient(135deg, #cfa44a 0%, #e19f21 100%);
}

.btn-apply-now:active {
  transform: translateY(0);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.hero-meta span {
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

/* Credibility Bar */
.credibility-bar {
  display: flex;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  gap: 1.5rem;
  align-items: center;
  justify-content: left;
  max-width: 100%;
}

.credibility-item {
  display: flex;
  align-items: center;
  justify-content: center;
  /* Center the logo */
  gap: 0.75rem;
}

.cred-logo {
  height: 100px;
  width: auto;
  border-radius: 11px;
  object-fit: contain;
}


/* Vertical line separators for desktop */


@media (max-width: 768px) {
  .cred-logo {
    height: 90px;

  }

  .credibility-bar {
    align-items: stretch;
    gap: 1.25rem;

  }

  .credibility-item {
    justify-content: flex-start;
    display: block;
  }

  .credibility-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 0;
    padding-bottom: 1.25rem;
  }
}

/* Banner Features */
.banner-features {
  display: flex;
  gap: 3rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
  font-family: "Libre Franklin", sans-serif;
}

.feature-item p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
  font-family: "Montserrat", sans-serif;
}

@media (max-width: 768px) {
  .banner-features {
    flex-direction: column;
    gap: 2rem;
  }
}

.hero-lead-strip {
  margin-top: 1.4rem;
  padding: 0.7rem 0.9rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.78);
  border: 1px solid rgba(207, 164, 74, 0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
}

.hero-lead-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.lead-label {
  color: rgba(226, 232, 240, 0.78);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.lead-value {
  color: #fef9c3;
  font-weight: 600;
}

.hero-lead-strip a.lead-value {
  color: #fef9c3;
  text-decoration: none;
}

.hero-lead-strip a.lead-value:hover {
  text-decoration: underline;
}

.hero-form-wrap {
  position: relative;
  z-index: 1;
  background: rgba(15, 23, 42, 0.94);
  border-radius: 18px;
  padding: 1.2rem 1.2rem 1rem;
  border: 1px solid rgba(226, 232, 240, 0.18);
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.85);
  max-width: 420px;
  margin-left: auto;
}

.hero-form-wrap h2 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.hero-form-wrap p {
  margin: 0 0 0.8rem;
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.76);
}

.hero-form-wrap .form-group {
  margin-bottom: 0.5rem;
}

.hero-form-wrap .form-control {
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  height: auto;
}

.hero-form-wrap .btn {
  padding: 0.6rem 1rem;
}

.hero-form .form-group label {
  color: #e5e7eb;
}

/* Sections */

.section {
  padding: 60px 5vw;
}

.section-light {
  background: rgba(255, 255, 255, 0.96);
}

.section-dark {
  background: linear-gradient(145deg, var(--su-grey-light), #ffffff);
  color: #e5e7eb;
}

.section-muted {
  background: linear-gradient(145deg, var(--su-grey-light), #ffffff);
}

.section-header {
  text-align: left;
  margin: 1rem 0;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.3rem;
  margin-top: 0px;
  color: #393672;
  font-family: "Libre Franklin", sans-serif;
}

.section-header h3 {
  font-size: 1.8rem;
  color: #393672;
}

.section-header p {
  color: var(--text-soft);
}

.section-header.text-center {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

/* WILP Section Styles */
.wilp-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.wilp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.wilp-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem 1.75rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}

.wilp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.wilp-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fffbeb 0%, #fff7d1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--su-gold);
  margin-bottom: 0.5rem;
  border: 1px solid rgba(207, 164, 74, 0.1);
}

.wilp-card h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--su-blue-dark);
  font-weight: 700;
  font-family: "Libre Franklin", sans-serif;
}

.wilp-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 900px) {
  .wilp-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Target Audience Section Styles (Redesigned) */
.target-audience-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: #ffffff;
  /* Or keep soft background if preferred */
}

.audience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.audience-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.audience-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  /* Optional: Add a subtle shadow or float effect */
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.audience-pattern {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#e0f2fe 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
  border-radius: 20px;
  opacity: 0.6;
}

.audience-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.audience-content .section-header {
  margin-bottom: 1.5rem;
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}

/* Vertical connecting line (optional, like reference) */
.audience-list::before {
  content: '';
  position: absolute;
  left: 24px;
  /* Center of icon (50px width / 2 approx) */
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: #f1f5f9;
  z-index: 0;
}

.audience-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.audience-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--su-blue);
  /* Solid blue circle */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--su-blue);
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(47, 47, 117, 0.1);
}

.audience-text h3 {
  font-size: 1.1rem;
  margin: 0 0 0.35rem 0;
  color: #1e293b;
  font-weight: 700;
  font-family: "Libre Franklin", sans-serif;
}

.audience-text p {
  margin: 0;
  font-size: 1rem;
  color: #1b1b1b;
  line-height: 1.5;
}

/* Simple CTA at bottom */
.audience-cta-simple {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.audience-cta-simple p {
  font-size: 1.05rem;
  color: var(--su-blue-dark);
  font-weight: 600;
  font-style: italic;
  font-family: "Libre Franklin", sans-serif;
}

@media (max-width: 900px) {
  .audience-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .audience-list::before {
    left: 20px;
  }

  .audience-item {
    gap: 1.25rem;
  }
}

/* About section (image + text like reference) */

.about-section {
  padding-top: 64px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: stretch;
}

.about-copy h2 {
  font-size: 2.5rem;
  margin-top: 0.3rem;
  color: #393672;
}

.about-copy p {
  line-height: 30px;
  font-size: 1em;
  font-family: "Montserrat", sans-serif;
}

.about-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.about-highlights {
  margin-top: 1.5rem;
}

.about-icons-full .icon-list {
  max-width: 640px;
}

.about-highlight {
  color: #393672;
}

.about-badges {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.4rem;
}

.badge-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.32);
  font-size: 0.9rem;
}

.badge-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.35rem;
}

.badge-card strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--su-blue-dark);
}

.badge-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.85rem;
}

/* Video section */

.video-section {
  background: linear-gradient(90deg,
      rgba(48, 48, 108, 1) 0%,
      rgb(221, 154, 22) 100%);
  color: #fef2f2;
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.video-wrapper {
  position: relative;
}

.video-thumbnail,
.video-embed {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.video-thumbnail {
  background-image: url("images/srinivas-university-thumbnail.jpg");
  background-size: cover;
  background-position: center;
  cursor: pointer;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-button {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
  cursor: pointer;
}

.video-embed {
  display: none;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  color: #ffe4e6;
}

.video-title {
  margin: 0 0 0.8rem;
  font-size: 2.1rem;
}

.video-text {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  color: #fee2e2;
}

/* Grids */

.grid {
  display: grid;
  gap: 2.5rem;
}

.two-col {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* About */

.icon-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  color: #1b1b1b;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-gold {
  background: var(--su-gold);
}

.stats-card {
  display: grid;
  gap: 1.1rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, #ffffff, #f3f4ff);
  box-shadow: var(--shadow-soft);
}

.stat {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.stat-value {

  font-size: 1rem;
  font-weight: 700;
  color: var(--su-blue);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Cards / Programs */

.cards-grid .card {
  background: #ffffff;
  color: var(--text-main);
  padding: 1.6rem 1.6rem 1.4rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.45);
  width: 353px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  position: relative;
  overflow: hidden;
  /* Slider snap point */
  scroll-snap-align: start;
}

/* Course Slider Implementation */
@media (max-width: 1024px) {
  .course-cards {
    display: flex !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 1.5rem;
    padding: 1rem 0.5rem 2rem;
    margin: 0 -0.5rem;
  }

  /* Hide scrollbar */
  .course-cards::-webkit-scrollbar {
    display: none;
  }

  .course-cards {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .course-cards .card {
    flex: 0 0 calc(33.333% - 1rem);
    min-width: 300px;
  }
}

@media (max-width: 768px) {
  .course-cards .card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: 280px;
  }
}

@media (max-width: 480px) {
  .course-cards .card {
    flex: 0 0 85%;
    min-width: 260px;
  }
}

/* Slider Pagination Dots */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e19f21;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--su-blue);
  transform: scale(1.3);
}

@media (min-width: 1025px) {
  .slider-dots {
    display: none;
  }
}

.cards-grid .card h3 {
  margin: 0;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(226, 232, 240, 0.16);
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.cards-grid .card ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.75rem;
  font-size: 0.85rem;
  color: #111827;
}

.cards-grid .card ul li::before {
  content: "• ";
  color: var(--su-gold);
}

.card-light {
  background: #ffffff;
  color: var(--text-main);
  border: 1px solid var(--su-grey-muted);
}

.card-light .link-button {
  background: var(--su-blue);
  border-color: var(--su-blue);
}

.link-button {
  border-radius: 999px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  padding: 0.45rem 1rem;
  align-self: flex-start;
  font-size: 0.8rem;
  background: #cfa44a;
  color: #ffffff;
  cursor: pointer;
}

.course-cards .card {
  transition: transform 0.18s ease, box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.course-cards .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.18);
  border-color: rgba(47, 47, 117, 0.35);
}

.course-duration {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--su-blue);
  margin: 0.15rem 0 0.45rem;
}

.course-summary {
  font-size: 0.9rem;
  color: #1b1b1b;
  line-height: 22px;
}

.course-fee {
  margin-top: 0.7rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.emi-tag {
  display: inline-flex;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(47, 47, 117, 0.06);
  color: var(--su-blue);
  font-size: 0.78rem;
}

.course-cta-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-ghost,
.btn-solid {
  flex: 1;
  padding: 0.6rem 0.4rem;
  font-size: 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  text-decoration: none;
}

.btn-ghost {
  background: #ffffff;
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--su-blue);
}

.btn-ghost:hover {
  background: rgba(47, 47, 117, 0.04);
}

.btn-solid {
  background: var(--su-blue);
  color: #ffffff;
}

.btn-solid:hover {
  background: var(--su-blue-dark);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.5rem 0 0.8rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(11, 44, 106, 0.08);
  color: var(--text-soft);
  font-size: 0.8rem;
  border: 1px solid rgba(11, 44, 106, 0.12);
}

/* Steps / Admissions */

.steps {
  padding-left: 1.2rem;
  color: var(--text-soft);
}

.admissions-card {
  background: #0b1120;
  color: #e5e7eb;
  padding: 1.8rem 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

/* Form */

.form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.85rem;
}

.form-group label {
  color: #e5e7eb;
}

.form-group input,
.form-group select {
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.85);
  color: #5d5d5d;
  padding: 0.55rem 0.7rem;
  font-size: 0.85rem;
}

.form-group input:focus,
.form-group select:focus {
  outline: 2px solid var(--su-gold);
  outline-offset: 1px;
}

.full-width {
  margin-top: 20px;
  width: 100%;
}

.form-message {
  min-height: 1.2em;
  font-size: 0.8rem;
}

/* Campus Life */

.pill-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 1.4rem 1.5rem;
  border: 1px solid var(--su-grey-muted);
  box-shadow: 0 14px 30px rgba(148, 163, 184, 0.25);
}

.pill-card h3 {
  margin-top: 0;
}

/* Contact */

.contact-grid {
  align-items: center;
}

.socials {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.8rem;
  font-size: 0.85rem;
}

.socials a {
  color: var(--su-gold-soft);
  text-decoration: none;
}

.map-placeholder {
  border-radius: var(--radius-lg);
  background: repeating-linear-gradient(135deg,
      rgba(15, 23, 42, 0.25) 0,
      rgba(15, 23, 42, 0.25) 10px,
      rgba(15, 23, 42, 0.05) 10px,
      rgba(15, 23, 42, 0.05) 20px),
    radial-gradient(circle at center, #1e293b, #020617);
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  font-size: 0.85rem;
}

/* Back to top */

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: none;
  background: #e19f21;
  color: #111827;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.45);
  opacity: 0;
  transform: translateY(15px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 900;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Footer */

.footer {
  padding: 1rem 7vw 1.4rem;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  background: #020617;
  color: #9ca3af;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  background: #020617;
  padding: 1.2rem 7vw;
  text-align: center;
}

.footer-bottom .copyright {
  margin: 0;
  font-size: 0.85rem;
  color: #9ca3af;
  letter-spacing: 0.02em;
}

/* Responsive */

@media (max-width: 900px) {
  .course-cta-row {
    display: block;

  }

  .two-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .three-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-nav {
    padding-inline: 5vw;
  }

  .logo-img {
    height: 46px;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    flex-direction: column;
    background: rgba(7, 11, 40, 0.97);
    padding: 1rem 5vw 1.4rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.4);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease;
  }

  .nav-links.open {
    max-height: 100vh;
    opacity: 1;
    pointer-events: auto;
  }

  .nav-dropdown {
    width: auto;
  }

  .nav-drop-menu {
    position: static;
    box-shadow: none;
    border: 1px solid rgba(226, 232, 240, 0.1);
    background: rgba(7, 11, 40, 0.92);
    display: none;
    margin-top: 0.4rem;
  }

  .nav-dropdown.open .nav-drop-menu {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding-inline: 5vw;
    padding-top: 110px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-form-wrap {
    margin: 1.8rem 0 0;
    max-width: 100%;
  }

  .video-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .video-wrapper {
    order: 1;
  }

  .video-copy {
    order: 2;
  }

  .about-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-badges {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {

  .nav-links a,
  .nav-drop-trigger {
    color: #fff;
  }

  .three-col {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hero-lead-strip {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Campus Life Redesign */

.section-campus {
  background: linear-gradient(309deg, rgba(48, 48, 108, 1) 0%, rgba(0, 0, 0, 1) 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.campus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Side Content */
.campus-content-side {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.campus-header-block h2 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
  color: #ffffff;
  font-weight: 800;
  font-family: "Libre Franklin", sans-serif;
}

.campus-intro {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 90%;
}

.campus-features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.campus-feature {
  position: relative;
}

.campus-feature h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--su-gold);
  font-weight: 700;
}

.campus-feature p {
  margin: 0;
  font-size: 0.95rem;
  color: #e5e7eb;
  line-height: 1.6;
  max-width: 90%;
}

/* Right Side Image */
.campus-image-side {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.campus-img-container {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.campus-main-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
}

@media (max-width: 1024px) {
  .campus-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .campus-header-block h2 {
    font-size: 2.5rem;
  }

  .campus-img-container {
    min-height: 300px;
    order: -1;
    /* Image on top on mobile? Or bottom? Let's keep it bottom for flow, or top for visual. */
  }

  /* Actually standard stacking is usually text first then image or vice versa. 
     Reference seems to have text left. scaling down -> text top. */
}

/* FAQ Section */

.section-faq {
  background: #ffffff;
  padding: 80px 5vw;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.faq-accordion-col {
  display: flex;
  flex-direction: column;
}

.faq-image-col {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.faq-student-img {
  width: auto;
  height: auto;
  display: block;
  object-fit: cover;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.faq-item.active {
  border-color: var(--su-blue);
  box-shadow: 0 10px 25px rgba(47, 47, 117, 0.08);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--su-blue-dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--su-blue);
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--su-gold);
  border-radius: 2px;
}

.faq-icon::before {
  width: 14px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 14px;
  transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  /* Optional: rotate whole icon, or just the cross */
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  /* Turn toggle into minus if we rotate the cross */
}

/* Let's do a simple chevron or plus/minus. 
   Implementation: Plus to Cross (rotate 45deg) */
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  /* Approximate max height */
  padding-bottom: 1.5rem;
}

.faq-answer p {
  margin: 0;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .faq-image-col {
    order: -1;
    /* Image first on mobile, or check specific requirement. Usually text first for FAQs? 
                  Visual hierarchy suggest Image first is nice if it's lateral. 
                  Let's put image after text on mobile to prioritize questions. */
    order: 1;
  }
}

/* Campus Life Tabbed Section */

.section-campus-tabs {
  background: linear-gradient(309deg, rgba(48, 48, 108, 1) 0%, rgba(0, 0, 0, 1) 100%);
  color: #ffffff;
  padding-bottom: 80px;
}

.section-campus-tabs .section-header h2,
.section-campus-tabs .section-header p {
  color: #ffffff;
}

.section-campus-tabs .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.campus-tabs-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Tab Navigation */
.tabs-nav {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1rem;
  justify-content: left;
}

.tab-btn {
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1.2rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 999px;
  font-family: inherit;
}

.tab-btn:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

.tab-btn.active {
  color: #1f204d;
  background: var(--su-gold);
  font-weight: 600;
}

/* Tab Panels */
.tab-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.campus-tab-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 3rem;
  gap: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.tab-icon-oval {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50% / 50%;
  background: var(--su-gold);
  color: var(--su-blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(207, 164, 74, 0.3);
}

.tab-content-text {
  flex: 1;
}

.tab-content-text h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--su-gold);
  font-family: "Libre Franklin", sans-serif;
}

.tab-content-text p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .campus-tab-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .tab-icon-oval {
    width: 100px;
    height: 100px;
    font-size: 2.5rem;
  }

  .tab-content-text h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .tabs-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    margin-inline: -5vw;
    padding-inline: 5vw;
  }
}



/* 4. Events Grid */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
}

.event-date {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.75rem;
  background: var(--su-blue-dark);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.event-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  color: var(--su-blue);
  padding-right: 3rem;
}

.event-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* 5. Clubs Layout */
.clubs-layout {
  display: grid;
  gap: 3rem;
}

.clubs-section h3,
.sports-section h3 {
  color: var(--su-gold);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.club-chip {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.6rem 1.2rem;
  border-radius: 99px;
  font-size: 0.95rem;
  transition: all 0.2s;
}

.club-chip:hover {
  background: var(--su-gold);
  color: var(--su-blue-dark);
  font-weight: 600;
}

.sports-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.sport-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.sport-item span {
  font-size: 2.5rem;
  background: #ffffff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Tabs */
@media (max-width: 768px) {
  .tabs-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1rem;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    margin-inline: -5vw;
    padding-inline: 5vw;
    margin-bottom: 2rem;
  }

  .tab-btn {
    flex-shrink: 0;
  }

  .campus-overview-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .campus-visual {
    height: 250px;
  }
}

/* Credibility to Parents Section */

.section-credibility {
  background: #f9fafb;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.credibility-layout {
  display: grid;
  grid-template-columns: 0.8fr 2fr;
  gap: 4rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.credibility-title h2 {
  font-size: 2.5rem;
  color: var(--su-blue-dark);
  margin-top: 0;
  line-height: 1.2;
  font-family: "Libre Franklin", sans-serif;
}

.credibility-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.credibility-item {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.credibility-item:hover {
  transform: translateY(-5px);
}

.credibility-item h3 {
  font-size: 1.2rem;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 0.8rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.credibility-item h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--su-gold);
}

.credibility-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .credibility-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .credibility-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: "Libre Franklin", sans-serif;
  }

  .credibility-items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* ========================================
   COURSE PAGE - PROFESSIONAL DESIGN
   ======================================== */

/* Base Course Styles */
.section {
  padding: 40px 7vw;
}

.section-light {
  background: #ffffff;
}

.section-muted {
  background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
}

.section-dark {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

.section-header {
  text-align: left;
  margin-bottom: 30px;
}

.content-block p {
  line-height: 30px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #393672;
  letter-spacing: -0.02em;
  text-align: left;
  font-family: "Libre Franklin", sans-serif;
}

.section-dark .section-header h2 {
  color: #fff;
}

.section-header p {
  font-size: 1.2rem;
  color: #1b1b1b;
}

/* Course Container */
.course-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

.text-center {
  text-align: center;
}

/* ========================================
   1. HERO SECTION - PREMIUM REDESIGN
   ======================================== */
.course-hero {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f172a 100%);
  padding: 140px 7vw 100px;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Animated Background Pattern */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(249, 115, 22, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255, 255, 255, 0.03) 2px, rgba(255, 255, 255, 0.03) 4px);
  animation: subtle-pulse 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes subtle-pulse {

  0%,
  100% {
    opacity: 0.9;
  }

  50% {
    opacity: 0.6;
  }
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Hero Typography */
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-tagline {
  font-size: 1.3rem;
  color: #94a3b8;
  margin-bottom: 1.2rem;
  font-weight: 500;
  line-height: 1.6;
}

.course-hero h1 {
  font-size: clamp(2.5rem, 5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 3rem;
}

.hero-bullets li {
  margin-bottom: 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  font-size: 1.15rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.hero-bullets li::before {
  content: "✓";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-orange {
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  border: none;
  padding: 1.1rem 2.8rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.35);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.5);
  filter: brightness(1.15);
  color: #fff;
}

.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 1.1rem 2.8rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
}

.btn-white-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* Glassmorphic Form Card */
.hero-form-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(24px);
  padding: 3rem;
  border-radius: 24px;
  box-shadow:
    0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form-card h3 {
  color: #0f172a;
  font-size: 1.9rem;
  text-align: center;
  margin: 0 0 0.6rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hero-form-card p {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #1b1b1b;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.hero-form-card input,
.hero-form-card select {
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.95rem;
  background: #f8fafc;
  transition: all 0.2s;
  font-family: inherit;
}

.hero-form-card input:focus,
.hero-form-card select:focus {
  outline: none;
  border-color: #3b82f6;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-check {
  display: flex;
  gap: 0.7rem;
  align-items: start;
  font-size: 0.85rem;
  color: #1b1b1b;
  margin-bottom: 1.8rem;
}

.form-check input {
  width: auto;
  margin-top: 0.2rem;
}

.btn-block {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 1rem;
  padding: 1.1rem;
  text-transform: uppercase;
}

/* ========================================
   2. CONTENT SECTIONS - IMPROVED DESIGN
   ======================================== */

/* Work Integration Section Styles */
.work-integration-section {
  padding: 80px 7vw;
  background: #f8f8f8;
}

.wi-layout {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.wi-content {
  flex: 1;
}

.wi-content h2 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 1.5rem 0;
  color: var(--su-blue-dark);
  font-family: "Libre Franklin", sans-serif;
}

.wi-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 2rem;
}

.chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #d6af58;
  /* WhatsApp color */
  color: #070000;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.chat-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
  background: #3c3284;
  color: #ffffff;
}

.chat-btn i {
  font-size: 1.4rem;
}

.wi-visual {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.wi-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive Work Integration */
@media (max-width: 900px) {
  .wi-layout {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .wi-content h2 {
    font-family: "Libre Franklin", sans-serif;
    font-size: 2.2rem;
  }

  .wi-visual {
    width: 100%;
    order: 2;
    /* Image below content on mobile as per common patterns, or keep order if requested */
  }
}

/* Lead Text */
.lead-text {
  font-size: 1.3rem;
  line-height: 1.9;
  color: #475569;
  max-width: 850px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

/* Overview Section - Matching Reference Image */
.section-overview {
  background: #fff;
  padding: 60px 7vw;
}

.overview-content {
  max-width: 1200px;
  margin: 0 auto;
}

.overview-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 15px 0;
  /* margin: 0 0 1.5rem 0; */
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.overview-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--su-gold);
}

.overview-text {
  font-size: 1rem;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.overview-text .highlight {
  color: #000000;
  font-weight: 600;
}

/* ========================================
   3. PROGRAM FEATURES - MODERN DESIGN
   ======================================== */

/* Full-width section with background */
.section-program-features {
  position: relative;
  padding: 80px 7vw;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(16, 7, 71, 1) 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.features-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.section-program-features .section-header {
  position: relative;
  z-index: 2;
  text-align: left;
  margin-bottom: 4rem;
}

.section-program-features .section-header h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  font-family: "Libre Franklin", sans-serif;
  text-align: center;
}

/* Grid layout - 3 cards on top, 2 on bottom */
.program-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

/* Make 4th and 5th cards span to create 2-column bottom row */
.program-features-grid .program-feature-card:nth-child(4) {
  grid-column: 1 / 2;
}



/* Feature Cards */
.program-feature-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.program-feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Circular Icon Container */
.feature-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #f0f4f8, #e2e8f0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #dc2626;
  transition: all 0.3s;
}

.program-feature-card:hover .feature-card-icon {
  background: #d6b26b;
  transform: scale(1.1);
}

.program-feature-card:hover .feature-card-icon svg {
  stroke: #ffffff;
}

.feature-card-icon svg {
  stroke: #4a4284;
  stroke-width: 1;
}

/* Red Title */
.feature-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

/* Description */
.feature-card-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .program-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-features-grid .program-feature-card:nth-child(4),
  .program-features-grid .program-feature-card:nth-child(5) {
    grid-column: auto;
  }
}

/* New Features Hub Layout */
.features-hub-layout {
  display: grid;
  grid-template-columns: 1fr 300px 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.features-side-col {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.left-col {
  text-align: left;
}

.right-col {
  text-align: left;
}

.feature-hub-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.left-col .feature-hub-item {
  flex-direction: initial;
}

.hub-item-icon {
  font-size: 1.8rem;
  color: #e19f21;
  min-width: 50px;
  height: 50px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-hub-item:hover .hub-item-icon {
  background: #686acc;
  color: #ffffff;
  transform: scale(1.1);
}

.hub-item-content h3 {
  font-size: 1.25rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
  margin-top: 0;
}

.hub-item-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  margin: 0;
}

.features-center-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hub-image-mask {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed rgba(255, 215, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotateHub 20s linear infinite;
}

.hub-image-mask img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  animation: counterRotateHub 20s linear infinite;
}

@keyframes rotateHub {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes counterRotateHub {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@media (max-width: 1024px) {
  .features-hub-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .features-center-col {
    display: none;
  }

  .left-col {
    text-align: left;
  }

  .left-col .feature-hub-item {
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .features-hub-layout {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .features-center-col {
    display: flex;
    order: -1;
    margin-bottom: 2rem;
  }

  .hub-image-mask {
    width: 200px;
    height: 200px;
  }

  .features-side-col {
    gap: 2rem;
  }

  .section-program-features {
    padding: 60px 5vw;
    background-attachment: scroll;
  }
}


/* ========================================
   4. WHO IS THIS PROGRAMME FOR - PURPLE GRADIENT DESIGN
   ======================================== */

.advantages-section {
  background: linear-gradient(143deg, rgb(39 37 102) 0%, rgb(210 83 45) 100%);
  height: 100%;
  padding: 30px 0;
}

.advantages-section__image {
  overflow: hidden;
  border-radius: 400px 0 0 400px;
  -webkit-border-radius: 400px 0 0 400px;
  -moz-border-radius: 400px 0 0 400px;
  -ms-border-radius: 400px 0 0 400px;
  -o-border-radius: 400px 0 0 400px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 647px !important;
  top: 37%;
  transform: translateY(-30%);
}

.advantages-section__image img {
  width: 100%;
}

.advantages-section__li .col-sm-6 {
  position: relative;
  font-size: 16px;
}

.advantages-section__li i {
  width: 40px;
  position: absolute;
  left: 9px;
  color: #fff;
  font-size: 38px;
}

.advantages-section__li span {
  padding-left: 55px;
  display: block;
  color: #fff
}

.advantages-section__content {
  padding-right: 50px;
}

.advantages-section__content p {
  font-size: 16px;
  color: #fff
}




.section-who-is-for {
  background: linear-gradient(to bottom, #f8fafc, #f1f5f9);
  padding: 120px 0vw;
  position: relative;
  overflow: hidden;
}

.who-is-for-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Content */
.who-is-for-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #393672;
  margin: 0 0 1rem 0;
  line-height: 1.2;
  font-family: "Libre Franklin", sans-serif;
}

.who-is-for-subtitle {
  font-size: 1.45rem;
  color: rgba(7, 7, 7, 0.9);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.who-is-for-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}

.who-is-for-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.who-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.who-icon svg {
  stroke: #393672;
  stroke-width: 2;
}

.who-is-for-item p {
  color: #141414;
  font-size: 1.1rem;
  margin: 0;
}

/* Right Image */
.who-is-for-image {
  overflow: hidden;
  border-radius: 400px 0 0 400px;
  -webkit-border-radius: 400px 0 0 400px;
  -moz-border-radius: 400px 0 0 400px;
  -ms-border-radius: 400px 0 0 400px;
  -o-border-radius: 400px 0 0 400px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 500px !important;
  top: 31%;
  transform: translateY(-30%);
}

.who-is-for-image img {
  width: 100%;
}

/* Responsive */
@media (max-width: 900px) {
  .who-is-for-image img {
    display: none;
  }

  .who-is-for-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .who-is-for-grid {
    grid-template-columns: 1fr;
  }

  .who-is-for-content h2 {
    font-size: 2rem;
  }

  .who-is-for-image {
    order: 2;
  }
}

.who-is-for-image {
  order: 2;
}


/* ========================================
   5. PROGRAM ADVANTAGES - STATS CARDS
   ======================================== */

.section-program-advantages {
  background: #fff;
  padding: 60px 7vw;
}

.advantages-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #b91c1c;
  margin: 0 0 3rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.title-icon {
  font-size: 2rem;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.advantage-card {
  background: linear-gradient(135deg, #e6f5dc 0%, #d4edcd 100%);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.advantage-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.advantage-icon svg {
  stroke: #4a4a4a;
  stroke-width: 2;
}

.advantage-number {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.advantage-text {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 1024px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .advantages-title {
    font-size: 1.5rem;
    flex-direction: column;
  }
}

.stat-label {
  font-size: 1rem;
  color: #cbd5e1;
  font-weight: 600;
}

/* ========================================
   6. FUTURE-READY SKILLS - CARD DESIGN
   ======================================== */

.section-future-ready {
  background: #fff;
  padding: 80px 7vw;
}

.future-ready-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.future-card {
  background: linear-gradient(rgb(255 255 255 / 0%), #393772), url(https://images.pexels.com/photos/577585/pexels-photo-577585.jpeg?auto=compress&cs=tinysrgb&w=800);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  overflow: hidden;

}

.future-card>* {
  position: relative;
  z-index: 2;
}

.future-card-dark {
  background-image:
    linear-gradient(rgb(255 255 255 / 0%), #393772), url(https://images.pexels.com/photos/577585/pexels-photo-577585.jpeg?auto=compress&cs=tinysrgb&w=800);
  color: #fff;
  border: 1px solid #333;
}

.future-card-light:nth-child(2) {
  background-image:
    linear-gradient(rgb(255 255 255 / 0%), #393772), url(https://images.pexels.com/photos/577585/pexels-photo-577585.jpeg?auto=compress&cs=tinysrgb&w=800);
  color: #333;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.future-card-light:nth-child(3) {
  background-image:
    linear-gradient(rgb(255 255 255 / 0%), #393772), url(https://images.pexels.com/photos/577585/pexels-photo-577585.jpeg?auto=compress&cs=tinysrgb&w=800);
  color: #333;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.future-card-light {
  background: #fff;
  color: #333;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.future-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 1.2rem 0;
  line-height: 1.3;
}

.future-card-dark h3 {
  color: #fff;
}

.future-card-light h3 {
  color: #1e293b;
}

.future-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 auto 0;
  flex-grow: 1;
}

.future-card-dark p {
  color: rgba(255, 255, 255, 0.85);
}

.future-card-light p {
  color: #1b1b1b;
}

.card-arrow {
  font-size: 1.5rem;
  color: #d6b26b;
  margin-top: 1.5rem;
  font-weight: 700;
}

.future-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .future-ready-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.key-details {
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
  width: 100%;
}

.key-details h3 {
  color: var(--text-color-b);
  font-family: var(--font-family-Roboto);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.key-details ul {
  display: flex;
  padding: 1rem 2rem .5rem;
  border-radius: 16px;
  background: #d6b16c;
}

.key-details ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33%;
}

.key-details ul li span {
  font-size: 32px;
  font-weight: 900;
}

.key-details ul li i {
  font-size: 5rem;
  margin-bottom: .5rem;
}

.key-details ul li p {
  color: var(--text-color-b);
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  color: #000;
}

@media (max-width: 768px) {
  .key-details ul {
    display: block;
  }

  .key-details ul li {
    width: 100%;
  }

}

/* ========================================
   6. FUTURE CARDS - PREMIUM STYLE
   ======================================== */
.future-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.future-card {

  padding: 3rem 2.5rem;
  border-radius: 24px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.future-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #d6b26c, #d6b26c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.future-card:hover::before {
  transform: scaleX(1);
}

.future-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
  border-color: #3b82f6;
}

.future-card h3 {
  color: #ffffff;
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
  font-weight: 800;
}

.future-card p {
  color: #ffffff;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ========================================
   7. CURRICULUM & FEES - PROFESSIONAL LAYOUT
   ======================================== */
.curr-fees-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

.accordion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  height: 100%;
}

.acc-head {
  background: #fff;
  padding: 1.5rem 2.5rem;
  border-radius: 14px;
  font-weight: 700;
  color: #334155;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #f1f5f9;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  font-size: 1.05rem;
  flex: 1;
  display: flex;
  align-items: center;
}

.acc-head::after {
  content: "→";
  position: absolute;
  right: 2rem;
  color: #f59e0b;
  font-weight: 900;
  transition: transform 0.3s;
  font-size: x-large;
  top: 15px;
}

.acc-head:hover {
  color: #3b82f6;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(4px);
  border-color: #3b82f6;
}

.acc-head:hover::after {
  transform: translateX(4px);
}

.fee-card {
  background: linear-gradient(145deg, #1e3a8a 0%, #1e293b 100%);
  color: #fff;
  padding: 1rem 3em;
  border-radius: 24px;
  box-shadow:
    0 20px 40px rgba(30, 58, 138, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 100px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.fee-card h3 {
  font-size: 1.4rem;
  margin: 0rem;
  color: #cbd5e1;
  font-weight: 600;
}

.fee-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fbbf24;
  margin: 0.5rem 0 0.8rem;
  text-shadow: 0 2px 8px rgba(251, 191, 36, 0.3);
  line-height: 1;
}

.fee-year {
  font-size: 1.1rem;
  color: #94a3b8;
  font-weight: 500;
}

.fee-note {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-bottom: 10px;
  line-height: 1.6;
}

.fee-breakdown {
  margin-bottom: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 9px;
  border-radius: 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fee-breakdown div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  font-size: 1rem;
}

.fee-breakdown div:last-child {
  border-bottom: none;
}

.full-width {
  width: 100%;
}

/* ========================================
   8. CAREER OPPORTUNITIES - TWO COLUMN STYLE
   ======================================== */

/* Career Opportunities Section */
.section-career-opportunities {
  background: #ffffff;
  padding: 80px 5vw;
}

/* Two-Column Layout */
.career-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1300px;
  margin: 0 auto;
}

/* Left Column - Content */
.career-content {
  padding-right: 2rem;
}

.career-label {
  color: #f59e0b;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 1rem;
  display: block;
}

.career-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  letter-spacing: -0.02em;
}

.career-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #1b1b1b;
  margin: 0 0 2rem;
}

/* CTA Button */
.btn-career-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #3b3574;
  color: #ffffff;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-career-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
  background: #e4bd67;
  color: #000;
}

.btn-career-cta svg {
  transition: transform 0.3s ease;
}

.btn-career-cta:hover svg {
  transform: translateX(4px);
}

/* Right Column - 2x2 Card Grid */
.career-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Individual Career Card */
.career-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

/* Pastel Background Colors for Each Card */
.career-card-1 {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.career-card-2 {
  background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
}

.career-card-3 {
  background: linear-gradient(135deg, #ddd6fe 0%, #c7d2fe 100%);
}

.career-card-4 {
  background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.career-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

/* Career Icon Wrapper */
.career-icon-wrapper {
  width: 80px;
  height: 80px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

.career-icon-wrapper svg {
  color: #f59e0b;
  stroke-width: 2;
}

.career-card:hover .career-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.2);
}

/* Career Card Title */
.career-card-title {
  font-size: 17px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

/* Career Card Description */
/* Career Card Description */
.career-card-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #1b1b1b;
  margin: 0 0 1rem;
}

/* Career Stats */
.career-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.9rem;
}

.stat-icon {
  margin-right: 6px;
  color: #475569;
  width: 16px;
  text-align: center;
}

.career-stat:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.stat-label {
  font-weight: 600;
  color: #1b1b1b;
  text-align: left;
}

.stat-value {
  font-weight: 700;
  color: #0f172a;
  text-align: right;
}

/* Pastel Backgrounds Extended */
.career-card-5 {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
}

.career-card-6 {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .career-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .career-content {
    padding-right: 0;
    text-align: center;
  }

  .career-main-title {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .section-career-opportunities {
    padding: 60px 5vw;
  }

  .career-main-title {
    font-size: 2rem;
  }

  .career-description {
    font-size: 0.95rem;
  }

  .career-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .career-card {
    padding: 1.75rem 1.25rem;
  }

  .career-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .career-card-title {
    font-size: 1.1rem;
  }

}

/* ========================================
   10. STUDENT JOURNEY TIMELINE
   ======================================== */

/* Timeline Section */
.section-journey-timeline {
  background: linear-gradient(145deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 5vw;
}

/* Timeline Header */
.timeline-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.timeline-header h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--su-blue-dark);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  font-family: "Libre Franklin", sans-serif;
}

.timeline-header p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1b1b1b;
  margin: 0;
}

/* Journey Timeline Container - Horizontal Layout for Desktop */
.journey-timeline {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
  position: relative;
  padding: 2rem 0;
}

/* Progress Line (connects all milestones) */
.journey-timeline::before {
  content: "";
  position: absolute;
  top: 4.5rem;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg,
      var(--su-gold) 0%,
      var(--su-gold) 75%,
      #e0e0e0 75%,
      #e0e0e0 100%);
  z-index: 1;
}

/* ========================================
   10. WORK INTEGRATION PROGRAM TIMELINE
   ======================================== */

/* Timeline Section */
.section-wip-timeline {
  background: #ffffff;
  padding: 80px 5vw;
}

/* Timeline Header */
.wip-timeline-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.wip-timeline-header h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--su-blue-dark);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  font-family: "Libre Franklin", sans-serif;
}

.wip-timeline-header p {
  font-size: 1rem;
  color: #1b1b1b;
  margin: 0;
}

/* Timeline Track - Horizontal (4 Sections) */
.wip-timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 3rem;
  padding: 3rem 1rem;
  gap: 2rem;
}

/* Connecting Line */
.wip-timeline-track::before {
  content: "";
  position: absolute;
  top: 4.5rem;
  left: 8%;
  right: 8%;
  height: 3px;
  background: linear-gradient(90deg,
      var(--su-gold) 0%,
      var(--su-gold) 87.5%,
      #e0e0e0 87.5%,
      #e0e0e0 100%);
  z-index: 1;
}

/* Individual Step */
.wip-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  z-index: 2;
}

/* Icon Badge */
.wip-badge {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--su-blue) 0%, var(--su-blue-dark) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(47, 47, 117, 0.25);
  transition: all 0.3s ease;
  border: 3px solid #ffffff;
  outline: 2px solid var(--su-gold);
}

.wip-badge i {
  font-size: 1.75rem;
}

.wip-step:hover .wip-badge {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(47, 47, 117, 0.35);
}

/* Step Title */
.wip-step h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--su-blue-dark);
  margin: 0 0 0.75rem;
  line-height: 1.4;
  max-width: 220px;
}

/* Step Details List */
.step-details {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.step-details li {
  font-size: 0.85rem;
  color: #1b1b1b;
  line-height: 1.6;
  padding: 0.25rem 0;
  position: relative;
  padding-left: 1.25rem;
}

.step-details li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--su-gold);
  border-radius: 50%;
}

/* Timeline CTA */
.wip-timeline-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Responsive Design - Tablet */
@media (max-width: 992px) {
  .wip-timeline-track {
    flex-wrap: wrap;
    gap: 3rem 2rem;
    justify-content: center;
  }

  .wip-timeline-track::before {
    display: none;
  }

  .wip-step {
    flex: 0 0 calc(50% - 2rem);
    min-width: 200px;
  }

  .wip-step h4 {
    font-size: 1rem;
  }

  .step-details li {
    font-size: 0.825rem;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 640px) {
  .section-wip-timeline {
    padding: 60px 5vw;
  }

  .wip-timeline-header h2 {
    font-size: 2rem;
  }

  .wip-timeline-header p {
    font-size: 0.95rem;
  }

  .wip-timeline-track {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    padding: 2rem 1rem;
  }

  .wip-step {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  .wip-badge {
    width: 64px;
    height: 64px;
  }

  .wip-badge i {
    font-size: 1.5rem;
  }

  .wip-step h4 {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .step-details li {
    font-size: 0.9rem;
  }
}

/* ========================================
   11. BOTTOM CTA SECTION
   ======================================== */

/* Bottom CTA Section */
.section-bottom-cta {
  background: #f8f9fa;
  padding: 80px 5vw;
}

/* CTA Cards Wrapper */
.cta-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual CTA Card */
.cta-card {
  position: relative;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 250px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

/* Purple Card */
.cta-card-purple {
  background: linear-gradient(135deg, #393672 0%, #4f46e5 100%);
  color: #ffffff;
}

/* Teal Card */
.cta-card-teal {
  background: linear-gradient(135deg, #d5b16c 0%, #8d6b2d 100%);
  color: #ffffff;
}

/* CTA Card Content */
.cta-card-content {
  flex: 1;
  z-index: 2;
}

.cta-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  color: #ffffff;
}

.cta-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 400px;
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  background: #ffffff;
  color: #1e293b;
  padding: 0.85rem 1rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  background: #f8fafc;
}

/* CTA Card Decoration */
.cta-card-decoration {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.15);
  z-index: 1;
  pointer-events: none;
}

/* Responsive Design - Tablet & Mobile */
@media (max-width: 768px) {
  .section-bottom-cta {
    padding: 60px 5vw;
  }

  .cta-cards-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-card {
    padding: 2.5rem 2rem;
    min-height: 220px;
  }

  .cta-card h3 {
    font-size: 1.5rem;
  }

  .cta-card p {
    font-size: 0.95rem;
  }

  .cta-card-decoration {
    font-size: 6rem;
    right: 1rem;
    bottom: 1rem;
  }
}

/* ========================================
   9. FAQ - ENHANCED ACCORDION
   ======================================== */
.faq-accordion-simple details {
  background: #fff;
  margin-bottom: 1.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-accordion-simple summary {
  padding: 1rem 2rem;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  color: #1e293b;
  list-style: none;
  position: relative;
  transition: all 0.2s;
}

.faq-accordion-simple summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-simple summary::after {
  content: "+";
  position: absolute;
  right: 1rem;
  color: #f59e0b;
  font-weight: 900;
  font-size: 1.5rem;
  transition: transform 0.3s;
  top: 17px;
}

.faq-accordion-simple details[open] summary::after {
  content: "_";
  transform: rotate(180deg);
}

.faq-accordion-simple details[open] {
  border-color: #3b82f6;
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.12);
}

.faq-accordion-simple details[open] summary {
  color: #1e293b;
}

.faq-accordion-simple p {
  padding: 0 2.5rem 2rem;
  margin: 0;
  color: #1b1b1b;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ========================================
   10. TIMELINE - VISUAL JOURNEY
   ======================================== */
.section-timeline {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 100px 5vw;
  text-align: center;
  position: relative;
}

.section-timeline .section-header h2,
.section-timeline .section-header p {
  color: #fff;
}

.timeline-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin: 4rem 0;
  position: relative;
}

/* Desktop Connecting Line */
.timeline-container::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(251, 191, 36, 0.4) 50%,
      rgba(255, 255, 255, 0.1) 100%);
  z-index: 1;
}

.timeline-step {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.step-num {
  width: 75px;
  height: 75px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0f172a;
  font-size: 2rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 8px rgba(251, 191, 36, 0.15),
    0 8px 24px rgba(245, 158, 11, 0.4);
  transition: all 0.3s;
}

.timeline-step:hover .step-num {
  transform: scale(1.1);
  box-shadow:
    0 0 0 12px rgba(251, 191, 36, 0.2),
    0 12px 32px rgba(245, 158, 11, 0.6);
}

.step-content {
  margin-top: 0;
}

.step-content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #fbbf24;
  font-weight: 800;
}

.step-content p {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 220px;
  margin: 0 auto;
  line-height: 1.6;
}

.timeline-cta {
  margin-top: 3rem;
}

.btn-large {
  padding: 1.2rem 3rem;
  font-size: 1.15rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-form-col {
    order: 2;
  }

  .course-hero {
    padding-top: 120px;
    text-align: left;
    min-height: auto;
  }

  .curr-fees-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .fee-card {
    position: static;
  }

  .check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .curr-fees-layout {
    display: block;
  }

  .section {
    padding: 60px 5vw;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn-orange,
  .hero-actions .btn-white-outline {
    width: 100%;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-container::before {
    display: none;
  }

  .timeline-container {
    flex-direction: column;
    gap: 3rem;
  }

  .stats-row {
    flex-direction: column;
    gap: 2rem;
  }
}

/* ========================================
   MOBILE NAVIGATION FIXES
   ======================================== */
@media (max-width: 900px) {

  /* Show mobile toggle button */
  .nav-toggle {
    display: block !important;
  }

  /* Dropdown menu styles for mobile */
  .nav-dropdown .nav-drop-menu {
    position: static;
    display: none;
    background: #f8fafc;
    box-shadow: none;
    padding: 0;
    margin-top: 0.5rem;
  }

  .nav-dropdown.open .nav-drop-menu {
    display: flex;
  }

  .nav-drop-menu a {
    color: #475569 !important;
    padding: 0.75rem 1.5rem;
  }

  .nav-drop-menu a:hover {
    background: #e2e8f0;
    color: #1e293b !important;
  }
}

/* ========================================
   ALL PROGRAMS PAGE
   ======================================== */

.all-programs-page {
  background: var(--su-grey-light);
}

.page-hero {
  background: linear-gradient(135deg, var(--su-blue-dark) 0%, #1a1a40 100%);
  color: var(--white);
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* USPs Section */
.usp-highlight {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--su-grey-muted);
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.usp-item {
  text-align: center;
  padding: 20px;
  background: var(--su-grey-light);
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.usp-item:hover {
  transform: translateY(-5px);
}

.usp-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.usp-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--su-blue-dark);
}

.usp-item p {
  font-size: 0.95rem;
  color: var(--text-soft);
}

/* Programs Main Section */
.programs-main-section {
  padding: 60px 0;
}

.programs-layout {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

@media (max-width: 1024px) {
  .programs-layout {
    grid-template-columns: 1fr;
  }
}

/* Filter Bar */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding: 10px 20px;
}

.filter-btn {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--su-grey-muted);
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--su-gold);
  color: var(--su-blue-dark);
  border-color: var(--su-gold);
}

/* Program Cards */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.program-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

.program-card:hover {
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.program-img-placeholder {
  height: 220px;
}

.program-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.program-details {
  padding: 20px;
}

.program-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--su-grey-light);
  color: var(--su-blue-dark);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.program-card-disabled {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
  overflow: hidden;
  filter: grayscale(0.2);
}

.program-card-disabled::after {
  content: 'Coming Soon';
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translate(-50%, 50%);
  background: #8e8e8e;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 12px;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  pointer-events: none;
}

.program-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 12px;
}

.program-learning-tag {
  display: inline-block;
  background: #f8fafc;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 15px;
  border: 1px solid #e2e8f0;
}

.program-fee {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.program-details h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--su-blue-dark);
}


.program-cta .btn {
  padding: 10px;
  text-decoration: none;
  font-size: 0.8rem;
}

.program-cta .btn-outline:hover {
  color: #fff !important;
  background: rgb(57 54 114);
}

.program-desc {
  color: var(--text-soft);
  margin-bottom: 15px;
  line-height: 1.6;
}

.program-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.program-highlights li {
  background: #fdf2f2;
  color: #2c236f;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.85rem;
  border-left: 3px solid #252553;
}

.program-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.program-meta span strong {
  color: var(--su-blue-dark);
}

@media (max-width: 900px) {
  .program-cta .btn {
    font-size: 0.7rem;
  }

  .programs-content {
    padding: 0 15px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-img-placeholder {
    height: 200px;
  }
}

/* Fees Accordion */
.program-fees {
  margin-bottom: 20px;
  border-top: 1px solid var(--su-grey-muted);
  padding-top: 15px;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 10px 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  color: var(--su-blue-dark);
  font-size: 16px;
}

.accordion-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.program-fees.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.program-fees.active .accordion-content {
  max-height: 500px;
  padding: 15px 0;
}

.fees-table {
  width: 100%;
  border-collapse: collapse;
}

.fees-table td {
  padding: 8px 0;
  border-bottom: 1px dotted var(--su-grey-muted);
}

.total-row {
  font-weight: bold;
  color: var(--su-blue-dark);
}

.scholarship-info {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--su-gold);
}

.info-icon {
  cursor: help;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.75rem;
}

/* Enquiry Sidebar */
.enquiry-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-container {
  background: linear-gradient(178deg, rgba(48, 48, 108, 1) 0%, rgba(0, 0, 0, 1) 100%);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 90px;
}

.form-container h2 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  margin-top: 0;
  color: #fff;
}

.form-container p {
  color: #eaeaea;
  margin-bottom: 20px;
  font-size: 0.9rem;
}


.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--su-grey-muted);
  border-radius: 8px;
  background: var(--su-grey-light);
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--su-gold);
}

.full-width {
  width: 100%;
}

.success-msg {
  margin-top: 15px;
  padding: 10px;
  background: #d4edda;
  color: #155724;
  border-radius: 4px;
  font-size: 0.85rem;
  text-align: center;
}

.quick-contacts {
  background: var(--su-blue-dark);
  color: var(--white);
  padding: 25px;
  border-radius: var(--radius-lg);
}

.quick-contacts h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
  color: var(--su-gold);
}

.quick-contacts p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ========================================
   LIFE AT SRINIVAS UNIVERSITY PAGE
   ======================================== */

.life-at-su-page {
  background: #fff;
}

/* 1. Campus Hero */
.campus-hero {
  position: relative;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.campus-hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.campus-hero-video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campus-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.campus-hero-content {
  max-width: 800px;
  padding: 0 20px;
  z-index: 10;
}

.campus-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.campus-hero-content p {
  font-size: 1.5rem;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.hero-scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  animation: bounce 2s infinite;
}

.hero-scroll-indicator span {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* 2. Video Campus Tours */
.section-video-tours {
  padding: 40px 7vw;
  background: #f8fafc;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.video-item {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: translateY(-10px);
}

.video-thumbnail {
  position: relative;
  height: 320px;
  cursor: pointer;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(43, 35, 111, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.video-item:hover .play-overlay {
  background: #d2532d;
  width: 80px;
  height: 80px;
  font-size: 1.8rem;
}

.video-caption {
  padding: 25px;
}

.video-caption h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2b236f;
}

.video-caption p {
  font-size: 0.95rem;
  color: #1b1b1b;
  line-height: 1.6;
}

/* 3. Campus Facilities */
.section-facilities {
  padding: 0;
}

.facility-split {
  display: flex;
  min-height: 600px;
}

.facility-split.alternate {
  flex-direction: row-reverse;
}

.facility-visual-premium {
  flex: 1.2;
  padding: 60px;
  background: #fff;
  display: flex;
  align-items: center;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 20px;
  width: 100%;
  height: 600px;
}

.grid-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid-stacked {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stacked-img {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stacked-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-content-premium {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px;
  background: #fff;
}

.section-tag-premium {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.diamond-line {
  position: relative;
  display: flex;
  align-items: center;
}

.diamond-line::before {
  content: "";
  width: 10px;
  height: 10px;
  background: #2b236f;
  transform: rotate(45deg);
}

.diamond-line::after {
  content: "";
  width: 50px;
  height: 2px;
  background: #2b236f;
  margin-left: 5px;
}

.section-tag-premium span:last-child {
  color: #2b236f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.facility-content-premium h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #393672;
  margin-bottom: 25px;
  margin-top: 0;
  font-family: "Libre Franklin", sans-serif;
}

.facility-content-premium p {
  font-size: 1.1rem;
  color: #1b1b1b;
  line-height: 1.8;
  margin-bottom: 40px;
}

.premium-features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-feature-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.p-feature-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2b236f;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.p-feature-item:hover .p-feature-icon {
  background: #2b236f;
  color: #fff;
  transform: translateY(-5px);
}

.p-feature-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  margin-top: 0;
}

.p-feature-text p {
  font-size: 0.95rem;
  color: #1b1b1b;
  margin-bottom: 0;
  line-height: 1.5;
}

/* 4. Student Life Experience */
.section-student-life {
  padding: 40px 7vw;
  background: #f8fafc;
}

.masonry-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 250px;
  gap: 20px;
  margin-top: 50px;
}

.masonry-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.masonry-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.masonry-item.tall {
  grid-row: span 2;
}

.masonry-item.wide {
  grid-column: span 2;
}

.masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.masonry-item:hover .masonry-overlay {
  opacity: 1;
}

.masonry-item:hover img {
  transform: scale(1.1);
}

.masonry-overlay span {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
}

/* 5. Media Gallery */
.section-media-gallery {
  padding: 40px 7vw;
  background: #f8fafc;
  color: #393672;
}

.gallery-filters {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
}

.gallery-filter-btn {
  padding: 12px 30px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgb(57 54 114);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-weight: 500;
}

.gallery-filter-btn.active,
.gallery-filter-btn:hover {
  background: #d7b15b;
  border-color: #d7b15b;
}

.media-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-card-item {
  position: relative;
  height: 250px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-card-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.close-lightbox {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #fff;
  font-size: 4rem;
  cursor: pointer;
}

.lightbox-content {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

#lightboxCaption {
  color: #fff;
  margin-top: 20px;
  font-size: 1.2rem;
}

/* Responsive Life at SU */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facility-content,
  .facility-content-premium {
    padding: 40px;
  }

  .facility-visual-premium {
    padding: 30px;
  }

  .facility-content-premium h2 {
    font-size: 2.5rem;
  }

  .campus-hero-content h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .video-thumbnail {
    position: relative;
    height: 216px;
  }

  .top-nav {
    padding: 15px 5vw;
  }

  .logo-img {
    height: 50px;
  }

  .campus-hero-content h1 {
    font-size: 2.2rem;
    letter-spacing: -1px;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }

  .facility-split,
  .facility-split.alternate {
    flex-direction: column;
  }

  .facility-visual,
  .facility-visual-premium {
    height: 400px;
    padding: 15px;
  }

  .premium-grid {
    height: 100%;
  }

  .facility-content-premium {
    padding: 40px 20px;
  }

  .facility-content-premium h2 {
    font-size: 1.8rem;
  }

  .p-feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .masonry-item.wide,
  .masonry-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .masonry-item {
    height: 250px;
  }

  .gallery-filters {
    justify-content: flex-start;
    padding: 0 5vw 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    margin-bottom: 30px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
  }

  .gallery-filter-btn {
    padding: 10px 20px;
    white-space: nowrap;
    font-size: 0.9rem;
  }

  .media-gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card-item {
    height: 300px;
  }

  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

/* ========================================
   WORK-LINKED DEGREE (WLD) PAGE STYLES
   ======================================== */

.wld-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(10, 17, 40, 0.75), rgba(10, 17, 40, 0.85)),
    url('https://images.pexels.com/photos/256381/pexels-photo-256381.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
}

.wld-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center right, rgba(207, 164, 74, 0.2), transparent 70%);
}

.wld-hero-content {
  padding: 2em 0;
  position: relative;
  z-index: 2;
}

.wld-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3rem);
  line-height: 1.1;
  margin: 1.5rem 0;
}

.wld-hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.wld-hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn-solid-gold {
  background: var(--su-gold);
  color: #0c0d1b;
}

.btn-solid-gold:hover {
  background: var(--su-gold-soft);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(207, 164, 74, 0.4);
}

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.highlight-gold {
  color: var(--su-gold);
}

.section-header-centered {
  text-align: center;
  margin: 0 auto 4rem;
}

.premium-title {
  font-size: 2.5rem;
  color: var(--su-blue-dark);
  margin-bottom: 1rem;
}

.premium-subtitle {
  font-size: 1.1rem;
  color: var(--text-soft);
}

/* Benefits Grid */
.wld-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(47, 47, 117, 0.1);
  border-color: rgba(207, 164, 74, 0.3);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: rgba(207, 164, 74, 0.1);
  color: var(--su-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--su-blue-dark);
}

/* NEP Alignment */
.section-nep-alignment {
  background: #f8faff;
  overflow: hidden;
}

.nep-layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.nep-content {
  flex: 1;
}

.nep-checklist {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.nep-checklist li {
  display: flex;
  gap: 1rem;
}

.nep-checklist i {
  color: var(--su-gold);
  font-size: 1.4rem;
  margin-top: 0.2rem;
}

.nep-checklist strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--su-blue-dark);
}

.nep-visual {
  flex: 1;
  position: relative;
}

.nep-img {
  width: 100%;
  border-radius: 30px;
  box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

.nep-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #0c0d1b;
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2px solid var(--su-gold);
}

.badge-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--su-gold);
}

/* Learn and Earn */
.learn-earn-grid {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.learn-earn-visual {
  flex: 1;
  position: relative;
}

.le-img {
  width: 100%;
  border-radius: 30px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 85% 100%, 0 100%);
}

.le-stats {
  position: absolute;
  bottom: -30px;
  right: -20px;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
}

.stat-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--su-blue-dark);
}

.stat-lab {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.stat-plus {
  font-size: 1.2rem;
  color: var(--su-gold);
  font-weight: 700;
}

.learn-earn-content {
  flex: 1;
}

.le-feature-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.le-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #f3f4f6;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.le-feature:hover {
  background: var(--su-gold);
  color: var(--white);
  transform: translateX(10px);
}

.le-feature i {
  font-size: 1.2rem;
}

/* Timeline */
.section-wld-timeline {
  background: #0c0d1b;
  color: var(--white);
  padding: 1rem 0;
}

.section-wld-timeline .premium-title {
  color: var(--white);
}

.timeline-wrapper {
  position: relative;
  padding: 1rem 0;
}

.timeline-line {
  display: none;
}

.timeline-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
  row-gap: 3rem;
}

.timeline-step {
  text-align: center;
  flex: 0 0 25%;
  padding: 0 1rem;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--su-gold);
  color: #0c0d1b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.4rem;
  border: 6px solid #0c0d1b;
  transition: all 0.3s ease;
}

.timeline-step:hover .step-icon {
  transform: scale(1.2);
  box-shadow: 0 0 30px rgba(207, 164, 74, 0.5);
}

.timeline-step h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-step p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Comparison Table */
.comparison-table-wrap {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  margin-top: 2rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem 2rem;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.comparison-table th {
  background: #f8faff;
  color: var(--su-blue-dark);
  font-size: 1.2rem;
}

.comparison-table .highlight-col {
  background: rgba(207, 164, 74, 0.05);
  font-weight: 600;
}

.comparison-table th.highlight-col {
  background: var(--su-gold);
  color: #0c0d1b;
}

.comparison-table i.fa-check {
  color: #22c55e;
  margin-right: 0.5rem;
}

.comparison-table i.fa-times {
  color: #ef4444;
  margin-right: 0.5rem;
}

/* CTA */
.section-wld-cta {
  padding: 6rem 0;
}

.cta-content-box {
  background: linear-gradient(135deg, #0c0d1b 0%, #1f204d 100%);
  padding: 2rem;
  border-radius: 40px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-content-box::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--su-gold);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  opacity: 0.1;
}

.cta-content-box .premium-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.cta-content-box p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* Responsiveness */
@media (max-width: 900px) {

  .nep-layout,
  .learn-earn-grid {
    flex-direction: column;
    gap: 3rem;
  }

  .timeline-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    padding-left: 2rem;
  }

  .timeline-line {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2.7rem;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: none;
  }

  .timeline-step {
    display: flex;
    text-align: left;
    align-items: center;
    gap: 1.5rem;
  }

  .step-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .cta-content-box {
    padding: 3rem 2rem;
  }
}

/* Course Card Tag Styles */
.course-mode {
  font-size: 0.85rem;
  color: var(--su-blue);
  font-weight: 600;
  background: rgba(4, 52, 148, 0.05);
  display: inline-block;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.5rem;
  margin-top: 0.2rem;
}

.course-fee {
  font-weight: 700;
  color: #1b1b1b;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;

  margin-bottom: 1.5rem;
}

.skill-tag {
  font-size: 0.75rem;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 6px;
  border-radius: 99px;
  font-weight: 500;
  border: 1px solid #e2e8f0;
}

.more-tag {
  background: #fff;
  color: var(--su-blue);
  border-color: rgba(4, 52, 148, 0.2);
  font-weight: 600;
}

.course-cards .card {
  display: flex;
  flex-direction: column;
}

/* Slider Wrapper & Buttons */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.slider-btn {
  background: #fff;
  border: 1px solid #e2e8f0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--su-blue);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
  flex-shrink: 0;
}

.slider-btn:hover {
  background: var(--su-blue);
  color: #fff;
  transform: scale(1.1);
}

.prev-btn {
  margin-right: -25px;
  position: relative;
  left: 0px;
}

.next-btn {
  margin-left: -25px;
  position: relative;
  right: 0px;
}

/* Modify Course Cards for Slider */
.course-cards {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 1rem;
  padding: 1rem 0.5rem 2rem 0.5rem;
  /* Padding for shadow */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.course-cards::-webkit-scrollbar {
  display: none;
  /* Safari and Chrome */
}

.course-cards .card {
  min-width: 350px;
  /* Ensure cards have width to trigger scroll */
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .slider-btn {
    display: none;
    /* Hide buttons on mobile, keep touch scroll */
  }

  .slider-wrapper {
    display: block;
    /* Remove flex alignment on mobile */
  }

  .course-cards .card {
    min-width: 300px;
  }
}

/* Programs Page - Hero Enhancements */
.program-info-bar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.program-main-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.program-duration {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.program-mode {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.emi-pill {
  padding: 0.4rem 0rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.emi-pill a {
  text-decoration: none;
  color: #e19f21;
}

/* Hero Skills Section */
.hero-skills-section {
  margin-bottom: 2.5rem;
}

.hero-skills-section h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 700;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.skill-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #ffffff;
  background: rgb(255 255 255 / 15%);
  padding: 0.3rem 0.5rem;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}



/* Remove icon styling as they are removed */
.skill-item i {
  display: none;
}

.more-skills {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed rgba(255, 255, 255, 0.4);
}

.more-skills:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border-color: #fff;
}

@media (max-width: 768px) {
  .program-info-bar {
    flex-direction: column;
  }
}

/* Features Slider Styles */
.features-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 2rem 0;
}

.program-features-grid {
  display: flex;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0.5rem 2rem 0.5rem;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.program-features-grid::-webkit-scrollbar {
  display: none;
}

.program-feature-card {
  background: #0b1120;
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;

  /* Slider properties */
  width: 370px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.program-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.f-card-icon {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.program-feature-card h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.program-feature-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Program Features Slider Mobile Adjustments */
@media (max-width: 768px) {
  .program-features-grid {
    gap: 1rem;
    /* Slightly smaller gap on mobile */
  }

  .program-feature-card {
    min-width: 280px;
    /* Slightly smaller card width on mobile */
  }
}

.Programcontainer {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.course-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Fee/EMI Card & Toggle Styles (Dark Theme) */
.fee-card {
  background: #1e293b;
  /* Dark Slate Blue */
  color: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-card:hover {
  transform: translateY(-5px);
}

.fee-card h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.fee-toggle-container {
  display: flex;
  gap: 1rem;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 2rem;
  margin-top: 0;
}

.fee-toggle-btn {
  flex: 0 1 auto;
  border: none;
  background: transparent;
  padding: 8px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.fee-toggle-btn.active {
  background: #fbbf24;
  /* Gold */
  color: #0f172a;
  /* Dark text */
  box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
}

.fee-toggle-btn:hover:not(.active) {
  color: #fff;
}

.fee-content-section {
  display: none;
  animation: fadeIn 0.3s ease;
}

.fee-content-section.active {
  display: block;
}

.fee-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fbbf24;
  /* Gold */
  margin-bottom: 0.5rem;
  line-height: 1;
}

.fee-year {
  font-size: 1rem;
  font-weight: 400;
  color: #cbd5e1;
}

.fee-note {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.fee-breakdown,
.emi-details {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.25rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-breakdown div,
.emi-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: #e2e8f0;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-breakdown div:last-child,
.emi-row:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.fee-breakdown span:last-child,
.emi-row span:last-child {
  font-weight: 600;
  color: #fff;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Curriculum Accordion (Toggle Style) */
.faq-accordion-simple {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-accordion-simple details {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.faq-accordion-simple summary {
  padding: 1.1rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1e293b;
  /* Dark text */
  cursor: pointer;
  list-style: none;
  /* Remove default triangle */
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

/* Remove default marker for Chrome/Safari */
.faq-accordion-simple summary::-webkit-details-marker {
  display: none;
}

/* Custom Arrow Icon */
.faq-accordion-simple summary::after {
  content: "+";
  /* Long right arrow */
  font-family: inherit;
  font-size: 1.5rem;
  color: #fbbf24;
  /* Gold/Orange */
  transition: transform 0.3s ease;
  line-height: 1;
}

/* Active State Styles */
.faq-accordion-simple details[open] {
  border: 1px solid #3b82f6;
  /* Blue Border */
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.faq-accordion-simple details[open] summary {
  color: #1e293b;
  /* Blue Text */
  border-bottom: 1px solid #f1f5f9;
}

.faq-accordion-simple p {
  padding: 1.5rem;
  margin: 0;
  color: #334155;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Curriculum Table Styles */
.curriculum-table-container {
  width: 100%;
  padding: 1rem 1.5rem 1.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.curriculum-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  color: #121212;

}

.curriculum-table th,
.curriculum-table td {
  padding: 12px 15px;
  text-align: left;
  border: 1px solid #f1f5f9;
}

.curriculum-table th {
  background: #f8fafc;
  color: #1e293b;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.curriculum-table tr:hover {
  background: #f8fafc;
}

.curriculum-table tr.total-row {
  background: #f1f5f9;
  font-weight: 800;
  color: #1e293b;
}

.curriculum-table tr.total-row td:first-child {
  text-align: right;
}

/* Elective Domains Section */
.elective-section {
  padding: 40px 7vw;
  background: #f8fafc;
}

.elective-choice-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.option-box {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.option-badge {
  display: inline-block;
  padding: 8px 20px;
  background-color: var(--su-blue-dark);
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.pools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.pool-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pool-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pool-focus {
  background: #f1f5f9;
  padding: 1rem;
  border-radius: 10px;
  font-size: 0.91rem;
  color: #121212;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.option-b-box {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.option-b-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.option-b-content {
  position: relative;
  z-index: 2;
}

.option-b-box h3 {
  color: #fbbf24;
  margin-bottom: 1rem;
}

.option-b-box p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #cbd5e1;
  max-width: 800px;
}

@media (max-width: 900px) {
  .pools-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .elective-section {
    padding: 30px 15px;
  }

  .option-box {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .option-badge {
    font-size: 1rem;
    padding: 6px 15px;
  }
}

.slider-dots-container .dot:nth-child(6) {
  display: none !important;
}

.slider-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1rem;
}

.slider-dots-container .dot {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots-container .dot.active {
  background: #3b82f6;
  /* Blue active */
  width: 25px;
  border-radius: 12px;
}

.d-none {
  display: none !important;
}

/* ========================================
   CAREER OPPORTUNITIES SECTION STYLES
   ======================================== */

.section-career-opportunities {
  background: #2d2a5f;
  /* Or keep transparent if handled by section-muted */
  padding: 60px 4vw;
  /* Adjusted padding */
}

.career-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  align-items: flex-start;
}

/* Left Column: Content */
.career-content {
  flex: 1;
  /* Takes up 1 part of space */
  min-width: 300px;
  padding-top: 1rem;
  /* Align visual top with cards */
}

.career-main-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  font-family: 'Arimo', sans-serif;
  /* Matching the font usage */
}

.career-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  max-width: 400px;
  /* Limit width for readability similar to design */
}

/* Right Column: Cards Grid */
.career-cards-wrapper {
  flex: 3;
  /* Takes up 2 parts */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Card Styling */
.career-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  /* Soft shadow */
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.career-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.career-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  font-family: 'Arimo', sans-serif;
}

.career-subtitle {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 1.2rem;
  display: block;
  font-weight: 500;
}

/* Stats Styling */
.career-stat-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

.career-stat-row:last-child {
  margin-bottom: 0;
}

.stat-icon {
  font-size: 1rem;
  color: #3b3082;
  /* Blue accent color */
  width: 20px;
  /* Fixed width for alignment */
  text-align: center;
}

.stat-text {
  color: #4b5563;
  font-weight: 500;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
  .career-layout {
    flex-direction: column;
    gap: 3rem;
  }

  .career-content {
    max-width: 100%;
    text-align: center;
    padding-top: 0;
  }

  .career-description {
    margin: 0 auto;
    max-width: 600px;
  }

  .career-main-title {
    font-size: 2.2rem;
  }

  .career-cards-wrapper {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .career-cards-wrapper {
    grid-template-columns: 1fr;
    /* Stack cards on very small screens */
  }
}

/* Who Are These Programs For? New Design */

.target-audience-section {
  background-color: #f7f9fc;
  padding: 80px 0vw;
  overflow: hidden;
}

.audience-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.audience-content-col {
  padding: 0 4rem;
}

.audience-image-col {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.image-mask-wrapper {
  overflow: hidden;
  border-top-left-radius: 200px;
  border-bottom-left-radius: 200px;
  width: 100%;
  max-width: 600px;
  height: auto;
  min-height: 500px;
  position: relative;
  box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.1);
}

.audience-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.audience-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4b5563;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.audience-list-styled {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.audience-item-styled {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.audience-item-styled .icon-box {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--su-blue-dark);
}

.audience-item-styled .text-box p {
  margin: 0;
  font-size: 1rem;
  color: #374151;
  line-height: 1.5;
  font-weight: 500;
}

@media (max-width: 992px) {
  .target-audience-section {
    padding: 80px 5vw;
  }

  .audience-grid-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .audience-content-col {
    padding-right: 0;
  }

  .image-mask-wrapper {
    border-radius: 24px;
    min-height: auto;
    max-height: 400px;
    margin: 0 auto;
  }
}

/* Coming Soon / Inactive Card Styles */
.card-disabled {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
  filter: grayscale(0.8);
}

.card-disabled::after {
  content: 'Coming Soon';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  background: rgba(15, 23, 42, 0.9);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 12px;
  border: 2px solid var(--su-gold);
  z-index: 10;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  pointer-events: auto;
  /* Allow seeing the label clearly even if inactive */
  white-space: nowrap;
}

/* WhatsApp Button Style */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  /* Pill shape */
  padding: 0.6rem 1.2rem;
  font-size: 0.95rem;
  color: #334155;
  /* Slate-700 */
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  /* Subtle shadow for depth */
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #f8fafc;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
  /* Lift effect */
  border-color: #cbd5e1;
}

.btn-whatsapp i.fab.fa-whatsapp {
  color: #25D366;
  /* Official WhatsApp Green */
  font-size: 1.4rem;
}

/* Secondary Navigation Bar (Psychology Page) */
.secondary-nav-bar {
  background: #000000;
  color: #ffffff;
  position: sticky;
  top: 105px;
  /* Offset for the main top nav */
  z-index: 900;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.secondary-nav-bar .course-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1vw;
}

.secondary-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 54px;
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
}

.secondary-nav-links::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.secondary-nav-links li {
  display: flex;
  align-items: center;
  position: relative;
}

.secondary-nav-links li:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.secondary-nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0 1.5rem;
  white-space: nowrap;
  transition: color 0.2s ease;
  font-family: "Montserrat", sans-serif;
  text-transform: capitalize;
}

.secondary-nav-links a:hover {
  color: #cfa44a;
  /* Using --su-gold value directly */
}

@media (max-width: 768px) {
  .secondary-nav-bar {
    top: 100px;
    /* Keep top 70px as per current header height in CSS */
  }

  .secondary-nav-links a {
    padding: 0 1rem;
    font-size: 0.8rem;
  }
}

/* ========================================
   Program Features Slider
   ======================================== */

.section-program-features {
  position: relative;
  padding: 4rem 0;
  /* background removed to match original if needed, or kept generic */
}

.section-program-features .features-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.program-features-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
  padding: 1rem 0 2rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.program-features-grid::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.program-feature-card {
  flex: 0 0 auto;
  text-align: left;
  min-width: 300px;
  /* Use min-width instead of fixed width for responsiveness */
  width: 30%;
  /* Attempt to show ~3 cards on desktop */
  scroll-snap-align: start;
  min-height: 310px;
  /* Retain layout properties but remove visual overrides */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;

  /* Removed: background, border, box-shadow, border-radius */
  /* Added padding only if needed for spacing, else remove */
  padding: 1rem;
}

/* If original had icons, keep this or adjust */
.f-card-icon {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  color: var(--su-gold);
}

.program-feature-card h3 {
  font-size: 1.25rem;
  color: #ffffff;
  /* Keep brand color */
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  font-family: "Libre Franklin", sans-serif;
  line-height: 1.3;
}

.program-feature-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

/* Pagination Dots */
.slider-dots-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1rem;
}

.slider-dots-container .dot {
  width: 10px;
  height: 10px;
  background-color: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots-container .dot:hover {
  background-color: #94a3b8;
}

.slider-dots-container .dot.active {
  background-color: var(--su-gold);
  transform: scale(1.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .program-feature-card {
    width: 85vw;
    /* Almost full width on mobile */
    min-width: 89vw;
  }

  .program-features-grid {
    padding-left: 5vw;
    padding-right: 5vw;
    scroll-snap-align: start;
  }
}

/* Fee Breakdown Table Styles */
.fee-table-container {
  margin-top: 1.5rem;
  overflow-x: auto;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.fee-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: #fff;
}

.fee-breakdown-table th,
.fee-breakdown-table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fee-breakdown-table th {
  background: rgba(255, 255, 255, 0.1);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.fee-breakdown-table td {
  font-weight: 400;
}

.fee-breakdown-table .total-row {
  background: rgba(255, 255, 255, 0.08);
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.fee-breakdown-table .highlight-total {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  font-weight: 700;
}

/* Mobile Responsive Styles for Fee Table */
@media (max-width: 768px) {
  .fee-breakdown-table {
    font-size: 0.8rem;
  }

  .fee-breakdown-table th,
  .fee-breakdown-table td {
    padding: 8px 4px;
  }

  .fee-breakdown-table th {
    font-size: 0.75rem;
  }

  /* Stack table on very small screens */
  @media (max-width: 480px) {
    .fee-table-container {
      overflow-x: scroll;
    }

    .fee-breakdown-table {
      min-width: 500px;
    }
  }
}

/* Ensure the fee amount reflects the total */
.fees-view .fee-amount {
  color: #ffc107;
}

/* WILP Symbol Styles */
.wilp-symbol {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  min-width: 40px;
  flex-shrink: 0;
}

.wilp-symbol .symbol-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--su-blue);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for WILP symbols */
@media (max-width: 768px) {
  .section-program-features .section-header h2 {
    font-size: 2.2rem;
  }

  .section-program-features {
    padding: 1rem;
  }

  .wilp-symbol {
    min-height: 40px;
    min-width: 30px;
  }

  .wilp-symbol .symbol-text {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .wilp-symbol .symbol-text {
    font-size: 1.5rem;
  }
}


.eq-wrap {
  display: flex;
  align-items: stretch;
  gap: 14px;
  flex-wrap: wrap;
  /* mobile: wrap ho jayega */
  padding: 10px 0;
}

.eq-box {
  width: 250px;
  /* red border like your image */
  border-radius: 6px;
  background: transparent;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

.eq-box .wilp-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eq-sign {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  color: #222;
  user-select: none;
  align-self: center;
}

/* Tablet */
@media (max-width:768px) {
  .le-stats {
    display: block;
  }

  .wld-hero-content {
    padding: 2em 1em;
  }

  .eq-box {
    width: 100%;
  }

  .eq-sign {
    font-size: 28px;
  }
}

/* Mobile */
@media (max-width:480px) {
  .eq-wrap {
    gap: 10px;
  }

  .eq-box {
    width: 100%;
    ;
  }

  .eq-sign {
    margin: 0 auto;
    font-size: 26px;
  }
}

/* ========================================
   Comparison Table Styles
   ======================================== */
.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: white;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Montserrat", sans-serif;
  min-width: 600px;
  /* Force scroll on very small screens if not stacked */
}

.comparison-table th,
.comparison-table td {
  padding: 1.25rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.comparison-table th {
  background: #f8fafc;
  font-weight: 700;
  color: var(--su-blue-dark);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.comparison-table td {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

.comparison-table .highlight-col {
  background-color: #fcfcfc;
  /* subtle highlight */
  border-left: 1px solid #f1f5f9;
  border-right: 1px solid #f1f5f9;
}

.comparison-table th.highlight-col {
  background-color: #f7f9fb;
  color: var(--su-blue);
}

.comparison-table td.highlight-col {
  font-weight: 600;
  color: var(--su-blue-dark);
}

.comparison-table i.fa-check {
  color: #10b981;
  /* Green */
  margin-right: 0.5rem;
}

.comparison-table i.fa-times {
  color: #ef4444;
  /* Red */
  margin-right: 0.5rem;
  opacity: 0.6;
}

/* Mobile Responsive Card Layout */
@media (max-width: 768px) {
  .comparison-table-wrap {
    box-shadow: none;
    background: transparent;
    overflow-x: visible;
    /* Allow stacking */
  }

  .comparison-table {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    min-width: 0;
    /* Override min-width */
  }

  .comparison-table thead {
    display: none;
    /* Hide header row */
  }

  .comparison-table tbody {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .comparison-table tr {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
  }

  .comparison-table td {
    display: block;
    padding: 0.5rem 0;
    border-bottom: none;
    text-align: left;
    font-size: 0.9rem;
  }

  /* First cell (Criteria) becomes the card header */
  .comparison-table td:first-child {
    font-weight: 700;
    color: var(--su-blue);
    font-size: 1.05rem;
    padding-bottom: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
    font-family: "Libre Franklin", sans-serif;
  }

  /* Add labels via CSS */
  .comparison-table td:nth-of-type(2)::before {
    content: "New-Gen Degree: ";
    font-weight: 700;
    color: var(--su-gold);
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }

  .comparison-table td:nth-of-type(3)::before {
    content: "Traditional Degree: ";
    font-weight: 600;
    color: #94a3b8;
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
  }

  .comparison-table td.highlight-col {
    background-color: transparent;
    border: none;
  }
}

/* Fix for Fee Section expanding height */
.curr-fees-layout {
  align-items: flex-start;
}

@media (min-width: 768px) {
  .col-md-6 {
    padding: 0 3px;
    flex: 0 0 auto;
    width: 50%;
  }

  .com-flx {
    display: flex;
  }

  .mb-3 {
    margin-bottom: 10px !important;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 10px;
}

.form-control {
  color: #0e0129;
  border: 1px solid #e8e8e8;
  background-color: #f2f9fc;
  border-radius: 0;
  font-size: 14px;
  padding: 3px;
  width: 100%;
  margin-bottom: 20px;
}

/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

.about-hero {
  position: relative;
  min-height: 60vh;
  padding: 120px 7vw 60px;
  color: var(--white);
  background-image: linear-gradient(to right, rgba(7, 11, 40, 0.9), rgba(7, 11, 40, 0.7)), url('images/about-srinivas-university-1.webp');
  /* Assuming same or new image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 0.5rem;
  font-family: "Libre Franklin", sans-serif;
}

.about-hero p {
  font-size: 1.2rem;
  color: #fbbf24;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.about-highlight {
  color: var(--su-gold);
}

/* Vision & Mission */
.vision-mission-section {
  padding: 80px 7vw;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.vm-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  transition: transform 0.3s ease;
}

.vm-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.vm-icon {
  font-size: 2.5rem;
  color: var(--su-gold);
  margin-bottom: 1.5rem;
}

.vm-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.vm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

.vm-list li::before {
  content: "•";
  color: var(--su-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Legacy Section */
.legacy-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 900px) {
  .legacy-layout {
    grid-template-columns: 1fr;
  }
}

.legacy-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

/* Academic Excellence */
.excellence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.excellence-item {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.excellence-item:hover {
  transform: translateY(-5px);
}

.excellence-item i {
  font-size: 2.5rem;
  color: var(--su-blue);
  margin-bottom: 1rem;
}

.excellence-item h4 {
  color: var(--su-blue-dark);
  margin-bottom: 0.5rem;
}

/* Infrastructure */
.infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.infra-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 4px solid var(--su-gold);
}

.infra-icon {
  width: 70px;
  height: 70px;
  background: var(--su-grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--su-blue);
  font-size: 1.5rem;
}

/* Why Choose Section */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
}

.why-item i {
  color: var(--su-gold);
  font-size: 1.25rem;
}

.why-item span {
  color: var(--white);
  font-weight: 500;
}

/* Accreditation */
.accreditation-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  align-items: center;
}

.accreditation-logos img {
  height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.accreditation-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* --- New Vision & Mission Layout --- */
.vm-layout-new {
  display: flex;
  gap: 40px;
}

.vm-text-col {
  flex: 1;
}

.vm-intro-text {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #e0e0e0;
  /* Light text for section-dark */
}

.vm-text-col h2,
.vm-text-col h3 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 15px;
}

.vm-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-list-new li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.vm-list-new li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--su-gold);
  /* Use existing brand color */
  font-weight: bold;
  font-size: 1.2rem;
}

.vm-image-col {
  flex: 1;
}

.vm-img-box {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

@media (max-width: 768px) {
  .vm-layout-new {
    flex-direction: column;
  }
}

/* --- Objectives Section --- */
.objectives-section {
  background-color: #f8f9fa;
}

.objectives-intro {
  font-size: 1.1rem;
  color: var(--su-blue-dark);
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.objectives-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.objective-item {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--su-gold);
  height: 100%;
}

.objective-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* --- Chancellor's Profile Section --- */
.chancellor-profile-section {
  padding: 80px 5vw;
  background-color: #fff;
}

.chancellor-layout {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.chancellor-img-col {
  flex: 0 0 350px;
  position: sticky;
  top: 100px;
}

.chancellor-img-box {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px;
}

.chancellor-photo {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.chancellor-img-box:hover .chancellor-photo {
  transform: scale(1.02);
}

.chancellor-info h3 {
  font-size: 18px;
  color: var(--su-blue-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.chancellor-info p {
  color: #666;
  font-size: 1rem;
}

.chancellor-content-col {
  flex: 1;
}

.chancellor-heading {
  font-size: 2.5rem;
  color: var(--su-blue-dark);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.chancellor-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 4px;
  background-color: var(--su-gold);
  border-radius: 2px;
}

.chancellor-quote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  font-style: italic;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid var(--su-gold);
  background: #f9f9f9;
  padding: 20px 25px;
  border-radius: 0 8px 8px 0;
}

.profile-subheading {
  font-size: 1.5rem;
  color: var(--su-blue-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.chancellor-bio p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 20px;
  text-align: justify;
  font-weight: 300;

}

@media (max-width: 992px) {
  .chancellor-layout {
    flex-direction: column;
    gap: 40px;
  }

  .chancellor-img-col {
    flex: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    position: static;
  }

  .chancellor-heading {
    font-size: 2rem;
    text-align: center;
  }

  .chancellor-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .profile-subheading {
    text-align: center;
  }
}

/* --- Sticky Call Button --- */
/* --- Sticky Call Button --- */
.sticky-call-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #e19f21;
  /* Brand Gold */
  color: #fff;
  display: flex;
  flex-direction: column;
  /* Stack vertically */
  align-items: center;
  padding: 15px 5px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-family: 'Arimo', sans-serif;
  gap: 15px;
}

.sticky-call-btn:hover {
  background-color: #393672;
  transform: translateY(-50%) translateX(0px);
  /* Slide out slightly on hover */
}

.sticky-call-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.sticky-call-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  writing-mode: sideways-lr;
  /* Rotate text vertical */
  text-orientation: mixed;
  transform: rotate(180deg);
  /* correct reading direction if needed */
  align-items: center;
}

.sticky-call-text .call-helper {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-left: 5px;
  /* Adjust spacing after rotation */
}

.sticky-call-text .call-number {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .sticky-call-btn {
    top: auto;
    bottom: 20px;
    left: 0;
    transform: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    flex-direction: row;
  }

  .sticky-call-text {
    display: none;
  }

  .sticky-call-icon {
    width: 30px;
    height: 30px;
    border: none;
    font-size: 24px;
  }

  .sticky-call-btn:hover {
    transform: scale(1.1);
  }
}

/* ========================================
   FOOTER SECTION
   ======================================== */

.footer {
  background: linear-gradient(135deg, #1a1a4d 0%, #2f2f75 100%);
  color: #ffffff;
  padding: 60px 7vw 30px;
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column h3 {
  color: var(--su-gold-soft);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-about p {
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.footer-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.90rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--su-gold-soft);
  transform: translateX(5px);
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.footer-contact-info i {
  color: var(--su-gold-soft);
  margin-top: 3px;
  font-size: 1rem;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--su-gold-soft);
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: var(--su-gold-soft);
  color: #1a1a4d;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(207, 164, 74, 0.3);
}

/* Replaced by consolidated footer styles at L1590 */

.footer-bottom-links {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: var(--su-gold-soft);
}

/* Replaced by consolidated footer styles at L1590 */

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 5vw 20px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-column h3 {
    font-size: 1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem 7vw;
  }

  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
  }
}

/* Form Highlight Animation */
@keyframes formHighlight {
  0% {
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
    transform: scale(1.02);
  }

  100% {
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    transform: scale(1);
  }
}

.form-highlight {
  animation: formHighlight 0.8s ease-in-out;
  border-color: #ff0000 !important;
}

/* Download Brochure Alert Message */
.brochure-alert {
  position: fixed;
  top: 100px;
  right: 30px;
  background: linear-gradient(135deg, rgba(57, 54, 114, 0.95), rgba(47, 47, 117, 0.95));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(225, 159, 33, 0.3);
  border-left: 4px solid #e19f21;
  color: #ffffff;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(225, 159, 33, 0.2);
  z-index: 10000;
  min-width: 320px;
  max-width: 400px;
  animation: slideInRight 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  align-items: center;
  gap: 15px;
}

.brochure-alert.hiding {
  animation: slideOutRight 0.3s ease-in forwards;
}

.brochure-alert-icon {
  font-size: 24px;
  color: #e19f21;
  flex-shrink: 0;
}

.brochure-alert-content {
  flex: 1;
}

.brochure-alert-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #ffffff;
}

.brochure-alert-message {
  font-size: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.brochure-alert-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.brochure-alert-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transform: rotate(90deg);
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(400px);
    opacity: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .brochure-alert {
    top: 80px;
    right: 15px;
    left: 15px;
    min-width: auto;
    max-width: none;
    padding: 16px 20px;
  }

  .brochure-alert-icon {
    font-size: 20px;
  }

  .brochure-alert-title {
    font-size: 15px;
  }

  .brochure-alert-message {
    font-size: 13px;
  }

  @keyframes slideInRight {
    from {
      transform: translateY(-100px);
      opacity: 0;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes slideOutRight {
    from {
      transform: translateY(0);
      opacity: 1;
    }

    to {
      transform: translateY(-100px);
      opacity: 0;
    }
  }
}

/* --- Industry Partners Marquee Section --- */
.su-ipm-section {
  padding: 4rem 0;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.su-ipm-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.su-ipm-header {
  text-align: center;
  margin-bottom: 3rem;
}

.su-ipm-header h2 {
  font-size: 2.2rem;
  color: #333;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.su-ipm-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.su-ipm-track {
  display: flex;
  width: max-content;
  animation: su-ipm-scroll 30s linear infinite;
  will-change: transform;
}

.su-ipm-marquee:hover .su-ipm-track {
  animation-play-state: paused;
}

.su-ipm-logo {
  flex: 0 0 220px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #dedede;
}

.su-ipm-logo img {
  height: auto;
  max-height: 80px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.su-ipm-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes su-ipm-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .su-ipm-section {
    padding: 3rem 0;
  }

  .su-ipm-header h2 {
    font-size: 1.6rem;
  }

  .su-ipm-logo {
    flex: 0 0 200px;
    padding: 0 2rem;
  }

  .su-ipm-logo img {
    max-width: 130px;
  }
}