@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&family=Noto+Sans+Devanagari:wght@400;500;600&display=swap');

:root {
  --primary: #2B2B9B;
  --primary-dark: #1E1E78;
  --primary-light: #3D3DB8;
  --accent-gold: #C9A227;
  --accent-gold-light: #E8C547;
  --white: #ffffff;
  --light-gray: #f5f5f8;
  --mid-gray: #eeeef5;
  --text-dark: #12122e;
  --text-gray: #4a4a6a;
  --border-gray: #dddde8;
  --success-green: #22c55e;
  --error-red: #ef4444;
  --shadow-sm: 0 1px 3px rgba(43, 43, 155, 0.08);
  --shadow-md: 0 4px 12px rgba(43, 43, 155, 0.12);
  --shadow-lg: 0 10px 30px rgba(43, 43, 155, 0.15);
  --shadow-xl: 0 20px 50px rgba(43, 43, 155, 0.2);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;
  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-lg: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--primary-dark);
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  border-bottom: 2px solid var(--accent-gold);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 20px;
}

.top-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.top-link:hover {
  color: var(--accent-gold);
}

.top-link svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  gap: 10px;
  align-items: center;
}

.social-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-4px) scale(1.1);
  border-color: var(--accent-gold);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon:hover svg {
  transform: rotate(10deg);
}

/* Footer Specific Social Icons */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-socials .social-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials .social-icon:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  box-shadow: 0 8px 15px rgba(201, 162, 39, 0.3);
}

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  padding: 12px 0;
  position: fixed;
  top: 38px;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  padding: 8px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 58px;
  width: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .l1 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.logo-text .l2 {
  font-size: 11px;
  color: var(--text-gray);
  font-weight: 500;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 5px;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 8px;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(43, 43, 155, 0.07);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

/* ── DROPDOWN ── */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  list-style: none;
  z-index: 1002;
  border: 1px solid var(--border-gray);
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background: rgba(43, 43, 155, 0.05);
  color: var(--primary);
  padding-left: 24px;
}

.nav-link svg {
  width: 12px;
  height: 12px;
  transition: var(--transition);
}

.has-dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--font-body);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::after {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: var(--accent-gold);
  color: var(--text-dark);
  border-color: var(--accent-gold);
}

.btn-gold:hover {
  background: #b8911f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #128C7E;
  border-color: #128C7E;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  transition: var(--transition);
  margin-left: auto;
  z-index: 1001;
}

.hamburger:hover {
  background: rgba(26, 43, 109, 0.08);
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5.5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5.5px);
}

body.menu-open {
  overflow: hidden;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 104px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 20px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  border-top: 3px solid var(--primary);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-nav-menu a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-gray);
  display: block;
  transition: var(--transition);
}

.mobile-nav-menu a:hover {
  color: var(--primary);
  padding-left: 8px;
}

.mobile-nav-submenu {
  list-style: none;
  padding-left: 20px;
  background: rgba(43, 43, 155, 0.03);
}

.mobile-nav-submenu a {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-menu li:last-child a {
  border-bottom: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(rgba(30, 30, 120, 0.85), rgba(43, 43, 155, 0.8)), url('../assets/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 162, 39, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.hero-left {
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-gold);
  color: var(--text-dark);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.badge::before {
  content: '●';
  font-size: 8px;
  animation: blink 1s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 162, 39, 0);
  }
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent-gold);
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.88;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 14px 10px;
  text-align: center;
  transition: var(--transition);
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.stat-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  color: var(--accent-gold);
}

.stat-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── ENQUIRY FORM (PREMIUM ENHANCEMENT) ── */
.form-container.form-ban {
  width: 450px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 40px 25px;
  border-radius: 24px;
  box-shadow:
    0 4px 6px -1px rgba(43, 43, 155, 0.05),
    0 20px 40px -10px rgba(43, 43, 155, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(43, 43, 155, 0.1);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.form-container.form-ban:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 15px -3px rgba(43, 43, 155, 0.08),
    0 30px 60px -15px rgba(43, 43, 155, 0.25);
}

.form-container.form-ban::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--accent-gold), var(--primary-light));
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.form-title {
  text-align: center;
  margin-bottom: 32px;
}

.form-title h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.form-title h2 strong {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.form-title p {
  font-size: 15px;
  color: var(--text-gray);
  opacity: 0.9;
  font-weight: 500;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact .form-grid {
  grid-template-columns: 1fr;
}

.form-group {
  position: relative;
}

.form-group.icon-group .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--text-gray);
  pointer-events: none;
  transition: color 0.3s ease;
  opacity: 0.7;
}

.form-group.icon-group input,
.form-group.icon-group select {
  padding-left: 46px;
}

.form-control {
  width: 100%;
  height: 38px;
  padding: 0 18px;
  border: 1.5px solid var(--border-gray);
  border-radius: 12px;
  font-size: 14px;
  font-family: var(--font-body);
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
  color: var(--text-dark);
}

.form-control::placeholder {
  color: #a0a0c0;
  font-weight: 400;
}

.form-control:hover {
  border-color: #b0b0d0;
  background: #fafafc;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(43, 43, 155, 0.12);
  background: var(--white);
  transform: scale(1.01);
}

.form-group:focus-within .input-icon {
  color: var(--primary);
  opacity: 1;
}

.checkbox-container {
  grid-column: 1 / -1;
  margin: 15px 0;
  background: rgba(43, 43, 155, 0.03);
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(43, 43, 155, 0.05);
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 12px;
  margin-top: 2px;
  accent-color: var(--primary);
  cursor: pointer;
}

.checkbox-group label {
  font-size: 11px;
  color: var(--text-gray);
  line-height: 1.5;
  cursor: pointer;
  user-select: none;
}

.checkbox-group label a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.form-submit-wrapper {
  grid-column: span 2;
  margin-top: 10px;
}

.btn-cta-submit {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  background-size: 200% auto;
  color: var(--white);
  border: none;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px -5px rgba(43, 43, 155, 0.4);
}

.btn-cta-submit:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 30px -5px rgba(43, 43, 155, 0.5);
}

.btn-cta-submit:active {
  transform: translateY(0) scale(0.98);
}

.btn-cta-submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-cta-submit:hover svg {
  transform: translateX(5px);
}

@media (max-width: 600px) {
  .form-container.form-ban {
    padding: 30px 20px;
    border-radius: 20px;
    width: 100%;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .checkbox-container,
  .form-submit-wrapper {
    grid-column: span 1;
  }

  .form-title h2 {
    font-size: 24px;
  }
}

/* ── SEATS FILLED PROGRESS BAR (INSIDE FORM AT BOTTOM) ── */
.seats-filled-badge {
  width: 100%;
  background: #f4f6fc;
  border-radius: 50px;
  padding: 8px 16px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(43, 43, 155, 0.12);
  box-sizing: border-box;
}

.seats-progress-track {
  flex: 1;
  height: 12px;
  background: #e2e6f5;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.seats-progress-bar {
  height: 100%;
  border-radius: 50px;
  background: repeating-linear-gradient(
    45deg,
    var(--primary, #2B2B9B),
    var(--primary, #2B2B9B) 7px,
    var(--primary-light, #4444c2) 7px,
    var(--primary-light, #4444c2) 14px
  );
  background-size: 28px 28px;
  animation: progressStripes 2s linear infinite;
}

@keyframes progressStripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 28px 0;
  }
}

.seats-filled-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary, #2B2B9B);
  white-space: nowrap;
  letter-spacing: -0.2px;
}

@media (max-width: 600px) {
  .seats-filled-badge {
    padding: 7px 12px;
    gap: 10px;
    margin-top: 12px;
  }

  .seats-filled-text {
    font-size: 12px;
  }
}

/* ── HERO SHARE BUTTON ── */
.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid var(--accent-gold, #C9A227);
  background: rgba(201, 162, 39, 0.1);
  color: var(--accent-gold-light, #E8C547);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: inherit;
  outline: none;
  backdrop-filter: blur(8px);
}

.btn-share svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.btn-share:hover {
  background: linear-gradient(135deg, var(--accent-gold, #C9A227) 0%, var(--accent-gold-light, #E8C547) 100%);
  color: var(--primary-dark, #1E1E78);
  border-color: var(--accent-gold, #C9A227);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.btn-share:hover svg {
  transform: scale(1.15);
}

.btn-share:active {
  transform: translateY(0);
}

/* ── SHARE MODAL POPUP ── */
.share-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 53, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.share-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.share-modal-card {
  background: #ffffff;
  border-radius: 24px;
  width: 100%;
  max-width: 470px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(43, 43, 155, 0.35);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(43, 43, 155, 0.1);
}

.share-modal-overlay.active .share-modal-card {
  transform: scale(1) translateY(0);
}

.share-modal-header {
  background: linear-gradient(135deg, var(--primary-dark, #1E1E78) 0%, var(--primary, #2B2B9B) 100%);
  padding: 28px 24px 22px;
  text-align: center;
  position: relative;
}

.share-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.share-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.share-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--accent-gold, #C9A227);
  background: rgba(201, 162, 39, 0.15);
  color: var(--accent-gold-light, #E8C547);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.share-tag-badge svg {
  width: 12px;
  height: 12px;
}

.share-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  margin-bottom: 6px;
}

.share-modal-program {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-gold-light, #E8C547);
  line-height: 1.4;
  padding: 0 10px;
}

.share-modal-body {
  background: #ffffff;
  padding: 24px 24px 28px;
}

.share-modal-instructions {
  color: var(--text-gray, #4a4a6a);
  font-size: 13.5px;
  text-align: center;
  margin-bottom: 22px;
  line-height: 1.5;
}

.share-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.share-item {
  background: #ffffff;
  border: 1px solid var(--border-gray, #dddde8);
  border-radius: 16px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.share-item:hover {
  border-color: var(--primary, #2B2B9B);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(43, 43, 155, 0.12);
}

.share-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: transform 0.25s ease;
}

.share-item:hover .share-icon-circle {
  transform: scale(1.08);
}

.share-icon-circle.whatsapp { background: #25D366; }
.share-icon-circle.linkedin { background: #0A66C2; }
.share-icon-circle.twitter { background: #000000; }
.share-icon-circle.facebook { background: #1877F2; }
.share-icon-circle.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.share-icon-circle.other { background: var(--primary-dark, #1E1E78); }

.share-item-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark, #12122e);
  text-align: center;
}

.share-copy-box {
  background: var(--light-gray, #f5f5f8);
  border: 1px solid var(--border-gray, #dddde8);
  border-radius: 14px;
  padding: 6px 6px 6px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.share-url-text {
  font-size: 13px;
  color: var(--text-gray, #4a4a6a);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
}

.btn-copy-link {
  background: var(--primary, #2B2B9B);
  color: var(--accent-gold-light, #E8C547);
  border: none;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-copy-link:hover {
  background: var(--primary-dark, #1E1E78);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(43, 43, 155, 0.3);
}

.btn-copy-link.copied {
  background: #15803d;
  color: #ffffff;
}

@media (max-width: 480px) {
  .share-grid {
    gap: 10px;
  }
  .share-item {
    padding: 12px 6px;
  }
  .share-icon-circle {
    width: 42px;
    height: 42px;
  }
  .share-icon-circle svg {
    width: 20px;
    height: 20px;
  }
  .share-item-label {
    font-size: 12px;
  }
  .share-modal-title {
    font-size: 20px;
  }
}

/* ── EXIT INTENT POPUP MODAL ── */
.exit-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 53, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.exit-modal-card {
  background: #ffffff;
  border-radius: 26px;
  width: 100%;
  max-width: 520px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(43, 43, 155, 0.4);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(43, 43, 155, 0.1);
}

.exit-modal-overlay.active .exit-modal-card {
  transform: scale(1) translateY(0);
}

.exit-modal-header {
  background: linear-gradient(135deg, var(--primary-dark, #1E1E78) 0%, var(--primary, #2B2B9B) 100%);
  padding: 30px 24px 24px;
  text-align: center;
  position: relative;
}

.exit-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.exit-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.exit-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 50px;
  border: 1px solid var(--accent-gold, #C9A227);
  background: rgba(201, 162, 39, 0.15);
  color: var(--accent-gold-light, #E8C547);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.exit-tag-badge svg {
  width: 13px;
  height: 13px;
  color: var(--accent-gold-light, #E8C547);
}

.exit-modal-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading, 'Poppins', sans-serif);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.exit-modal-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.exit-modal-body {
  background: #ffffff;
  padding: 24px 28px 30px;
  text-align: center;
}

.exit-seats-badge {
  width: 100%;
  background: #f4f6fc;
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(43, 43, 155, 0.12);
  box-sizing: border-box;
  box-shadow: 0 4px 12px rgba(43, 43, 155, 0.05);
}

.exit-seats-track {
  flex: 1;
  height: 12px;
  background: #e2e6f5;
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.exit-seats-bar {
  height: 100%;
  width: 75%;
  border-radius: 50px;
  background: repeating-linear-gradient(
    45deg,
    var(--primary, #2B2B9B),
    var(--primary, #2B2B9B) 7px,
    var(--primary-light, #4444c2) 7px,
    var(--primary-light, #4444c2) 14px
  );
  background-size: 28px 28px;
  animation: progressStripes 2s linear infinite;
}

.exit-seats-text {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary, #2B2B9B);
  white-space: nowrap;
  letter-spacing: -0.2px;
}

.exit-modal-desc {
  color: var(--text-gray, #4a4a6a);
  font-size: 14px;
  line-height: 1.6;
  margin: 18px 0 24px;
}

.exit-actions-row {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-exit-callback {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent-gold-light, #E8C547);
  border: none;
  border-radius: 14px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(43, 43, 155, 0.35);
  font-family: inherit;
}

.btn-exit-callback:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(43, 43, 155, 0.45);
  color: #ffffff;
}

.btn-exit-callback svg {
  width: 17px;
  height: 17px;
}

.btn-exit-close {
  background: transparent;
  border: 1.5px solid var(--border-gray, #dddde8);
  color: var(--text-gray, #4a4a6a);
  border-radius: 14px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-exit-close:hover {
  background: var(--light-gray, #f5f5f8);
  border-color: var(--text-dark, #12122e);
  color: var(--text-dark, #12122e);
}

@media (max-width: 500px) {
  .exit-modal-card {
    border-radius: 20px;
  }
  .exit-modal-header {
    padding: 24px 18px 20px;
  }
  .exit-modal-title {
    font-size: 22px;
  }
  .exit-modal-body {
    padding: 20px 18px 24px;
  }
  .exit-actions-row {
    flex-direction: column;
    width: 100%;
  }
  .btn-exit-callback,
  .btn-exit-close {
    width: 100%;
    justify-content: center;
  }
}

/* ── SECTION COMMONS ── */
.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--text-dark);
  margin: 8px 0 12px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 17px;
}

.section-header.light .section-label {
  color: var(--accent-gold);
}

.section-header.light h2,
.section-header.light p {
  color: var(--white);
}

/* ── ABOUT ── */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  background: var(--primary);
  color: var(--white);
  padding: 22px 28px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--accent-gold);
}

.experience-badge .years {
  display: block;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.experience-badge .text {
  font-size: 13px;
  margin-top: 4px;
  opacity: 0.9;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.about-subtitle {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 18px;
  font-weight: 500;
}

.about-text {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 15px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--light-gray);
  border-radius: var(--radius);
  transition: var(--transition);
  border: 1px solid transparent;
}

.highlight-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gray);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.highlight-icon svg {
  width: 22px;
  height: 22px;
}

.highlight-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.highlight-content p {
  font-size: 12px;
  color: var(--text-gray);
}

/* ── WHY CHOOSE ── */
.why-choose {
  padding: 100px 0;
  background: var(--light-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(43, 43, 155, 0.1);
}

.feature-icon {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent-gold);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.6;
}

/* ── PROGRAMS ── */
.programs {
  padding: 50px 0;
  background: var(--white);
}

.program-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 11px 28px;
  border: 2px solid var(--border-gray);
  background: var(--white);
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  font-family: var(--font-body);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.course-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-gray);
  position: relative;
  display: flex;
  flex-direction: column;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.course-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 20px 20px 16px;
  position: relative;
  overflow: hidden;
}

.course-card-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
}

.course-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.course-badge.online {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.course-badge.odl {
  background: rgba(201, 162, 39, 0.2);
  color: var(--accent-gold-light);
  border: 1px solid rgba(201, 162, 39, 0.3);
}

.course-card-header h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
}

.course-card-header .course-full {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
}

.course-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.course-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-gray);
  font-size: 13px;
  margin-bottom: 14px;
}

.course-meta svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
  flex-shrink: 0;
}

.course-fee {
  background: linear-gradient(135deg, var(--light-gray), var(--mid-gray));
  padding: 14px;
  border-radius: 10px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fee-total {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.fee-label {
  font-size: 11px;
  color: var(--text-gray);
}

.fee-annual {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.course-features {
  list-style: none;
  margin-bottom: 18px;
  flex: 1;
}

.course-features li {
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 7px;
}



.course-actions {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.course-actions .btn {
  flex: 1;
  text-align: center;
  padding: 9px 12px;
  font-size: 13px;
}

/* ── STATS BANNER ── */
.stats-banner {
  background: var(--primary);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stats-item {
  text-align: center;
  color: var(--white);
}

.stats-number {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
}

.stats-label {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 6px;
}

/* ── FEES ── */
.fees {
  padding: 100px 0;
  background: var(--light-gray);
}

.fee-table-wrapper {
  overflow-x: auto;
  margin-bottom: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  min-width: 850px;
}

.fee-table thead {
  background: var(--primary);
  color: var(--white);
}

.fee-table th {
  padding: 16px 14px;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
}

.fee-table th:first-child {
  border-radius: 0;
}

.fee-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border-gray);
  font-size: 14px;
}

.fee-table tbody tr:hover {
  background: rgba(43, 43, 155, 0.04);
}

.fee-table tbody tr:last-child td {
  border-bottom: none;
}

.fee-highlight {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
}

.fee-notes {
  background: #fef9e7;
  padding: 14px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-gold);
}

.fee-note {
  color: #7a5a00;
  font-size: 14px;
}

.additional-fees {
  margin-bottom: 40px;
}

.additional-fees h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.fee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.fee-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--primary);
  transition: var(--transition);
}

.fee-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.fee-amount {
  display: block;
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
}

.fee-name {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin: 8px 0 4px;
  font-size: 15px;
}

.fee-desc {
  font-size: 13px;
  color: var(--text-gray);
}

.payment-options {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.payment-options h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 22px;
  color: var(--text-dark);
}

.payment-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.payment-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-gray);
  font-size: 13px;
  font-weight: 500;
}

.payment-icon svg {
  width: 38px;
  height: 38px;
  color: var(--primary);
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 0;
  background: var(--white);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.step-line {
  position: absolute;
  top: 55px;
  left: 12.5%;
  right: 12.5%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-gold) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.step-number {
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  margin: 0 auto 16px;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--primary);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--primary);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.step:hover .step-icon {
  background: var(--primary);
  color: var(--accent-gold);
  transform: scale(1.08);
}

.step-icon svg {
  width: 34px;
  height: 34px;
}

.step h3 {
  font-family: var(--font-heading);
  font-size: 17px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.step p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.6;
  max-width: 160px;
  margin: 0 auto;
}

/* ── ACCREDITATIONS ── */
.accreditations {
  padding: 80px 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.accreditations::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 162, 39, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.accreditation-logos {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.accreditation-item {
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: var(--white);
  border: none;
  border-radius: 20px;
  padding: 32px 24px;
  min-width: 140px;
  flex: 0 1 180px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.accreditation-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.accreditation-item img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.accreditation-item:hover img {
  transform: scale(1.15);
}

.accreditation-item span {
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── FAQs ── */
.faqs {
  padding: 100px 0;
  background: var(--light-gray);
}

.faqs .container {
  max-width: 860px;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-tab {
  padding: 9px 20px;
  border: 1.5px solid var(--border-gray);
  background: var(--white);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 500;
}

.faq-tab:hover,
.faq-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-gray);
}

.faq-question {
  width: 100%;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  font-family: var(--font-body);
}

.faq-question:hover {
  background: rgba(43, 43, 155, 0.04);
  color: var(--primary);
}

.faq-icon {
  width: 26px;
  height: 26px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  color: var(--white);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--accent-gold);
}

.faq-item.active .faq-icon svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 14px;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
}

/* ── CONTACT ── */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--light-gray);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(43, 43, 155, 0.08);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -5px rgba(43, 43, 155, 0.1);
  border-color: rgba(43, 43, 155, 0.2);
}

.info-card:hover::before {
  opacity: 1;
}

.info-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(43, 43, 155, 0.1), rgba(43, 43, 155, 0.03));
  border: 1px solid rgba(43, 43, 155, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.info-card:hover .info-icon {
  background: var(--primary);
  color: var(--accent-gold);
  transform: scale(1.05) rotate(5deg);
}

.info-icon svg {
  width: 24px;
  height: 24px;
}

.info-content h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.info-content p {
  color: var(--text-gray);
  font-size: 13px;
  line-height: 1.6;
}

.info-content a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.info-content a:hover {
  text-decoration: underline;
}

.info-note {
  font-size: 12px;
  color: var(--text-gray);
  display: block;
  margin-top: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-3px);
}

/* ── FOOTER ── */
.footer {
  background: #0e0e35;
  padding: 80px 0 0;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 18px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: background 0.3s;
}

.footer-logo-lockup:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 54px;
  width: auto;
  flex-shrink: 0;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-logo-l1 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer-logo-l2 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.3;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}

.motto {
  font-family: var(--font-hindi);
  font-size: 20px;
  color: var(--accent-gold);
  margin: 14px 0 4px;
}

.motto-trans {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  margin-bottom: 22px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a::before {
  content: '›';
  color: var(--accent-gold);
  font-size: 16px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* ── SCROLL TOP & FLOAT BTNS ── */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 9994;
  box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent-gold);
  color: var(--text-dark);
  transform: translateY(-4px);
}

.scroll-top svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .scroll-top {
    bottom: 75px;
    right: 14px;
    width: 38px;
    height: 38px;
  }
  .mobile-cta-bar {
    display: none !important;
  }
}

/* ── MODERN FLOATING ACTION WIDGET (Right Side Mid-Height - Eye Level) ── */
.floating-action-widget {
  position: fixed;
  top: 45%;
  right: 16px;
  transform: translateY(-50%);
  z-index: 9995;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 18px 0 12px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  color: #ffffff !important;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
  cursor: pointer;
  border: none;
  outline: none;
}

.float-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.float-btn-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.float-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  animation: pulse-whatsapp 2.5s infinite;
}

.float-enquire {
  background: linear-gradient(135deg, #1b2668 0%, #2e3b8b 100%);
  box-shadow: 0 6px 18px rgba(27, 38, 104, 0.35);
}

.float-call {
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.35);
}

.float-btn:hover {
  transform: translateX(-6px) scale(1.04);
  filter: brightness(1.1);
  color: #ffffff !important;
}

.float-whatsapp:hover {
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

.float-enquire:hover {
  box-shadow: 0 10px 25px rgba(27, 38, 104, 0.5);
}

.float-call:hover {
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.5);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Mobile Responsive Floating Action Widget */
@media (max-width: 768px) {
  .floating-action-widget {
    position: fixed;
    top: 45%;
    right: 10px;
    left: auto;
    width: auto;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    z-index: 9990;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    box-shadow: none;
  }

  .float-btn {
    height: 38px;
    padding: 0 12px 0 8px;
    font-size: 11.5px;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.18) !important;
  }

  .float-btn:hover {
    transform: none;
  }

  .float-btn-icon {
    width: 20px;
    height: 20px;
  }

  .float-btn-icon svg {
    width: 15px;
    height: 15px;
  }
}



/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #1a1a5b);
  background-size: 200% 200%;
  animation: bgGradient 10s ease infinite;
  padding: 160px 0 80px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

@keyframes bgGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100px;
  opacity: 0.8;
  animation: slowMove 20s linear infinite;
}

@keyframes slowMove {
  0% { background-position: 0 0; }
  100% { background-position: 100px 100px; }
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 17px;
  opacity: 0.88;
  max-width: 620px;
  line-height: 1.7;
}

.page-hero-glow {
  position: absolute;
  top: -80px;
  right: -100px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  opacity: 0.75;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent-gold);
}

.breadcrumb span {
  color: var(--accent-gold);
}

/* ── CONTACT FORM ENHANCEMENT ── */
.contact-form-wrapper {
  background: var(--white);
  padding: 45px;
  border-radius: 24px;
  box-shadow:
    0 10px 30px rgba(43, 43, 155, 0.08),
    0 30px 60px rgba(43, 43, 155, 0.12);
  border: 1px solid rgba(43, 43, 155, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 100% 0%, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-control,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-gray);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  background: #fafafc;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(43, 43, 155, 0.1);
  transform: translateY(-1px);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn-primary {
  height: 56px;
  font-size: 16px;
  border-radius: 12px;
  margin-top: 10px;
}

.error-message {
  font-size: 12px;
  color: var(--error-red);
  margin-top: 4px;
  display: block;
  min-height: 18px;
}

/* ── PAGE HERO (inner pages) ── */
.form-success {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.form-success h4 {
  color: #166534;
  font-size: 16px;
  margin-bottom: 6px;
}

.form-success p {
  color: #15803d;
  font-size: 14px;
}

/* ── MAP EMBED PLACEHOLDER ── */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(43, 43, 155, 0.1);
  border: 1px solid rgba(43, 43, 155, 0.1);
  height: 350px;
  background: var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(43, 43, 155, 0.15);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(10%) contrast(1.05);
}

/* ==========================================================================
   ENHANCED FEE STRUCTURE (FOR COURSE DETAIL PAGES)
   ========================================================================== */
.fee-highlight-card {
  background: var(--white);
  border-radius: 24px;
  padding: 50px;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  background-image: radial-gradient(at 0% 0%, rgba(201, 162, 39, 0.05) 0%, transparent 50%);
}

.fee-left .fee-price-tag {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: var(--primary);
  font-family: var(--font-heading);
  margin-bottom: 5px;
}

.fee-left .fee-price-tag span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-gray);
}

.fee-subtext {
  margin-top: 10px;
  color: var(--text-gray);
  font-size: 15px;
  max-width: 450px;
  line-height: 1.6;
}

.fee-feature-cards {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.fee-f-card {
  padding: 18px 25px;
  border-radius: 12px;
  flex: 1;
  min-width: 200px;
}

.fee-f-card.emi {
  background: #eef2ff;
  color: var(--primary);
  border: 1px solid rgba(43, 43, 155, 0.1);
}

.fee-f-card.scholarship {
  background: #fff9e6;
  color: #856404;
  border: 1px solid rgba(201, 162, 39, 0.2);
}

.fee-f-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.fee-f-card p {
  font-size: 11px;
  opacity: 0.8;
  margin: 0;
}

.fee-right {
  background: var(--primary);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.fee-right::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.15) 0%, transparent 70%);
  z-index: 0;
}

.payment-title {
  margin-bottom: 25px;
  color: var(--accent-gold);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
}

.payment-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.payment-row:last-of-type {
  border-bottom: none;
  margin-bottom: 25px;
}

.payment-row strong {
  color: var(--white);
  font-size: 17px;
}

@media (max-width: 991px) {
  .fee-highlight-card {
    grid-template-columns: 1fr;
    padding: 30px;
    gap: 30px;
  }
}


/* ── STATUS PAGES (404 & THANK YOU) ── */
.status-section {
  padding: 220px 0 100px;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
}

.status-card {
  max-width: 600px;
  width: 100%;
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  margin: 0 auto;
}

.status-icon-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.status-icon-box.success {
  background: #f0fdf4;
  color: var(--success-green);
}

.status-icon-box.error {
  background: #fef2f2;
  color: var(--error-red);
}

.status-code {
  font-size: 100px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 15px;
  font-family: var(--font-heading);
}

.status-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.status-text {
  color: var(--text-gray);
  font-size: 16px;
  margin-bottom: 35px;
  line-height: 1.7;
}

.status-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 768px) {
  .status-section {
    padding-top: 140px;
  }

  .status-actions {
    flex-direction: column;
  }

  .status-card {
    padding: 40px 25px;
  }

  .status-code {
    font-size: 80px;
  }
}

/* ── MODERN SYLLABUS SECTION ── */
.syllabus-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.semester-box {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-gray);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 16px;
}

.sem-header {
  background: var(--primary);
  padding: 16px 20px;
  text-align: center;
  border-bottom: 5px solid var(--accent-gold);
}

.sem-header h4 {
  color: var(--white) !important;
  font-size: 24px;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.sem-total-badge {
  display: none; /* Removed for cleaner look per user image */
}

.sy-subject {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
  border-bottom: 1px solid #f2f4f7;
  background: var(--white);
  transition: all 0.3s ease;
}

.sy-subject:hover {
  background: #f8fbff;
  padding-left: 32px;
}

.sy-subject:last-of-type {
  border-bottom: none;
}

.sy-name {
  font-weight: 700;
  color: #1a1a37;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.sy-name::before {
  content: '';
  width: 14px;
  height: 14px;
  background: #4facfe; /* Distinct sky blue squares from user image */
  border-radius: 3px;
  flex-shrink: 0;
}

.sy-code {
  color: #856404;
  font-size: 13px;
  font-weight: 800;
  background: #fff3cd; /* High visibility credit pills */
  padding: 6px 16px;
  border-radius: 50px;
  border: 1px solid #ffeeba;
  white-space: nowrap;
}

.sem-total-summary {
  background: #f8faff;
  color: var(--primary);
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 800;
  font-size: 17px;
  border-top: 2px dashed #e2e8f0;
  margin-top: auto;
}

.sem-total-summary span {
  color: var(--primary);
  font-size: 22px;
  background: var(--accent-gold);
  padding: 4px 15px;
  border-radius: 8px;
  color: var(--text-dark);
}

@media (max-width: 1100px) {
  .syllabus-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sy-subject {
    padding: 15px 20px;
  }
  .sy-name {
    font-size: 14px;
  }
  .sy-code {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ── SYLLABUS TABS ── */
.syllabus-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.sy-tab-btn {
  padding: 12px 35px;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 50px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  min-width: 130px;
  text-align: center;
}

.sy-tab-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  color: var(--primary);
}

.sy-tab-btn.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(43, 43, 155, 0.3);
}

.sy-tab-btn.active:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .syllabus-tabs {
    gap: 10px;
  }
  .sy-tab-btn {
    padding: 10px 20px;
    font-size: 14px;
    min-width: 100px;
  }
}
/* New Fee Layout */
.fee-new-wrapper { display: flex; gap: 2rem; align-items: stretch; margin-top: 2rem; }
.fee-new-left { flex: 0 0 250px; background-size: cover; background-position: center; border-radius: 12px; position: relative; display: flex; align-items: center; justify-content: center; min-height: 250px; }
.fee-new-left::before { content: ''; position: absolute; top: 20%; left: -5%; width: 110%; height: 60%; background:#2b2b9b; border-radius: 12px; z-index: 1; }
.fee-new-left h3 { position: relative; z-index: 2; color: #fff; font-size: 2.2rem; margin: 0; font-weight: 700; text-align: left; width: 100%; padding-left: 10%; line-height: 1.2; }
.fee-new-right { flex: 1; overflow-x: auto; }
.fee-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid #e2e8f0; }
.fee-table th, .fee-table td { padding: 1.2rem 1rem; border: 1px solid #e2e8f0; text-align: left; font-size: 0.95rem; }
.fee-table th { font-weight: 700; color: #0f172a; }
.fee-table td { color: #475569; }
.fee-table tr:last-child td { font-weight: 700; color: #0f172a; }
@media (max-width: 768px) { .fee-new-wrapper { flex-direction: column; } .fee-new-left { min-height: 200px; flex: auto; } .fee-new-left::before { left: 5%; width: 90%; top: 10%; height: 80%; } }

.mobile-cta-bar { display: none !important; }
