/* ==========================================================================
   SHISHYAKULAM MASTER UI/UX STYLESHEET
   Master Design Tokens, Hero, Difference, Ecosystem, Tech, Masters, Campus, Achievement, Journey, CTA & Footer Sections
   All Accents styled with Official Logo Crimson Wine Red (#A31621)
   ========================================================================== */

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

:root {
  /* Official Logo Crimson Wine Red Palette */
  --primary-color: #A31621;        /* Crimson Wine Red (Matches Official Logo) */
  --primary-hover: #83101A;        /* Darker Wine Red Hover */
  --primary-light: #B82449;        /* Brighter Crimson Accent */
  --secondary-color: #FFF3F4;      /* Soft Pink/Red Surface */
  --text-main: #0E172C;            /* Dark Navy Headings */
  --text-muted: #64748B;           /* Muted Slate Body Text */
  --bg-color: #F8F9FC;             /* Soft Lavender Page BG */

  /* Navy & Wine Red Accents */
  --navy-dark: #0E172C;            /* Dark Navy Tag Badge */
  --gold-highlight: #A31621;       /* Primary Accent (Wine Red) */
  --gold-button: #A31621;          /* Primary Button Fill */
  --gold-button-hover: #83101A;
  --white: #FFFFFF;
  --border-dark: #1A1A1A;
  --neon-green: #34D399;           /* Green Accent */

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Radius & Elevation */
  --radius-pill: 50px;
  --radius-card: 24px;
  --shadow-subtle: 0 10px 30px rgba(14, 23, 44, 0.04);
  --shadow-card-elevated: 0 25px 55px -10px rgba(14, 23, 44, 0.09), 0 12px 24px -12px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 35px 70px -12px rgba(14, 23, 44, 0.15), 0 16px 30px -10px rgba(163, 22, 33, 0.25);
  --shadow-hero-frame: 0 30px 70px -10px rgba(14, 23, 44, 0.12), 0 15px 30px -10px rgba(0, 0, 0, 0.06);

  /* Modern Animation Timing & Curves (0.6s - 1.0s, cubic-bezier) */
  --bezier-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --bezier-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-card: transform 0.4s var(--bezier-smooth), box-shadow 0.4s var(--bezier-smooth);
  --transition-img: transform 0.7s var(--bezier-smooth);
}

/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-muted);
  background-color: var(--bg-color);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

.text-gold, .text-wine {
  color: var(--primary-color) !important; /* Logo Crimson Wine Red (#A31621) */
  font-weight: 600;
}

.text-black {
  color: var(--text-main) !important;
}

.text-muted-slate {
  color: var(--text-muted) !important;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5.5rem 0;
}

/* HEADER NAVIGATION */
.header-spec {
  background: rgba(248, 249, 252, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-spec {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.logo-spec span {
  color: var(--primary-color);
}

.nav-links-spec {
  display: flex;
  gap: 2.25rem;
  align-items: center;
}

.nav-link-spec {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link-spec:hover, .nav-link-spec.active {
  color: var(--primary-color);
}

/* NAV DROPDOWN FOR PROGRAMS */
.nav-dropdown-spec {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle-spec {
  cursor: pointer;
}

.nav-dropdown-icon {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
  margin-left: 2px;
}

.nav-dropdown-spec:hover .nav-dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 0.75rem;
  box-shadow: 0 20px 45px rgba(14, 23, 44, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.9);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Invisible bridge so hover is not lost when moving mouse */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 0;
  width: 100%;
  height: 15px;
}

.nav-dropdown-spec:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item-spec {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.dropdown-item-spec:hover {
  background: #F8F9FE;
}

.dropdown-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #FCE8EB;
  color: #7E1528;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.dropdown-item-spec:hover .dropdown-icon-box {
  background: #7E1528;
  color: #FFFFFF;
}

.dropdown-item-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: #0E172C;
  line-height: 1.25;
}

.dropdown-item-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: #64748B;
  margin-top: 2px;
}

/* PRIMARY WINE RED ACTION BUTTONS */
.btn-pill-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  min-height: 48px;
  padding: 0.75rem 2.25rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(163, 22, 33, 0.35);
  transition: all 0.25s var(--bezier-smooth);
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-pill-gold:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(163, 22, 33, 0.45);
}

.btn-pill-gold:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 12px rgba(163, 22, 33, 0.35);
}

.btn-pill-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--primary-color);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.925rem;
  min-height: 44px;
  padding: 0.65rem 1.85rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: all 0.25s var(--bezier-smooth);
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-pill-white:hover {
  background-color: #F8F9FA;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-pill-white:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-pill-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  min-height: 48px;
  padding: 0.75rem 2.25rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-dark);
  cursor: pointer;
  transition: all 0.25s var(--bezier-smooth);
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
}

.btn-pill-outline-dark:hover {
  background: var(--text-main);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
}

.btn-pill-outline-dark:active {
  transform: translateY(0) scale(0.97);
}

/* HERO SECTION */
.hero-spec-section {
  padding: 3.5rem 0 5.5rem 0;
  background: var(--bg-color);
}

.hero-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.tag-badge-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--navy-dark);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  box-shadow: 0 6px 18px rgba(14, 23, 44, 0.2);
}

.tag-badge-navy i {
  color: var(--primary-light);
  font-size: 0.85rem;
}

.hero-title-spec {
  font-family: var(--font-heading);
  font-size: 3.85rem;
  font-weight: 500;
  color: var(--text-main);
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
}

.hero-subhead-spec {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-btn-group {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

/* HERO RIGHT IMAGE FRAME */
.hero-frame-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.hero-image-outer-frame {
  position: relative;
  background: var(--white);
  padding: 16px 16px 20px 16px;
  border-radius: 90px 90px 40px 90px;
  box-shadow: var(--shadow-hero-frame);
  overflow: visible;
}

.hero-image-tilt-wrapper {
  position: relative;
  border-radius: 75px 75px 30px 75px;
  overflow: hidden;
  transform: rotate(3.5deg) scale(1.02);
  transform-origin: center center;
  transition: transform 0.4s ease;
}

.hero-image-tilt-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transform: rotate(-3.5deg) scale(1.08);
}

/* TOP-LEFT GLASSMORPHISM CRIMSON BADGE */
.badge-glass-top {
  position: absolute;
  top: 65px;
  left: -32px;
  background: linear-gradient(135deg, rgba(184, 36, 73, 0.95) 0%, rgba(140, 16, 26, 0.95) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 35px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 16px 36px rgba(163, 22, 33, 0.3);
  z-index: 20;
}

.badge-icon-circle-gold {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
}

/* BOTTOM-RIGHT GLASSMORPHISM DARK BADGE */
.badge-glass-bottom {
  position: absolute;
  bottom: 45px;
  right: -25px;
  background: rgba(22, 28, 40, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  z-index: 20;
}

.badge-icon-circle-dark {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-light);
}

.badge-text-group {
  display: flex;
  flex-direction: column;
}

.badge-label-small {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

.badge-value-large {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

/* RESTORED PILL SHAPE STATS BANNER - RICH WINE RED TO DARK CHARCOAL SLATE */
.stats-banner-gradient {
  background: linear-gradient(135deg, #7E1528 0%, #68111E 40%, #3D0A14 75%, #0E172C 100%);
  border-radius: 90px !important;
  padding: 1.75rem 2.5rem;
  margin-top: 4.5rem;
  box-shadow: 0 20px 50px rgba(104, 17, 30, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.stats-grid-exact {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  text-align: center;
  align-items: center;
}

.stat-item-exact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.65rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stat-item-exact:hover .stat-icon-wrapper {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

.stat-icon-wrapper svg {
  stroke: #FFFFFF;
  width: 24px;
  height: 24px;
}

.stat-num-white {
  font-family: var(--font-body);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.stat-num-green {
  font-family: var(--font-body);
  font-size: 2.1rem;
  font-weight: 600;
  color: #34D399;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.stat-label-exact {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-top: 0.35rem;
  white-space: nowrap;
}

/* SECTION 2: THE SHISHYAKULAM DIFFERENCE */
.diff-header-container {
  text-align: center !important;
  margin: 0 auto 1.25rem auto;
  max-width: 980px;
}

.diff-header-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 500;
  color: #0E172C;
  line-height: 1.15;
  margin-bottom: 0.5rem;
  text-align: center !important;
}

.diff-header-title .text-wine {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.diff-header-subtitle {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #64748B;
  line-height: 1.6;
  text-align: center !important;
  max-width: 680px;
  margin: 0 auto;
}

.mobile-only-br {
  display: none;
}

.diff-section-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1160px;
  margin: 0 auto;
  padding-top: 0.25rem;
}

.diff-card-left {
  flex: 1;
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.85);
  border-radius: 55px;
  padding: 3.25rem 2.75rem 3.25rem 2.75rem;
  box-shadow: var(--shadow-card-elevated);
  z-index: 1;
  margin-right: -85px;
  text-align: left;
}

.diff-card-title-left {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  color: #5A6A85;
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid #E2E8F0;
}

.diff-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.diff-item-left-text {
  color: #64748B;
}

.icon-circle-red {
  width: 24px;
  height: 24px;
  border: 2px solid #EF4444;
  border-radius: 50%;
  color: #EF4444;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-center-student {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -30px;
  pointer-events: none;
}

.diff-center-student img {
  height: 580px;
  object-fit: contain;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.14));
}

.diff-center-vs-badge {
  display: none;
}

/* WINE RED ECOSYSTEM RIGHT CARD */
.diff-card-right {
  flex: 1;
  background: linear-gradient(140deg, #B82449 0%, #A31621 45%, #6A1017 100%);
  border-radius: 55px;
  padding: 3.25rem 2.75rem 3.25rem 2.75rem;
  box-shadow: 0 25px 60px rgba(163, 22, 33, 0.28);
  color: var(--white);
  z-index: 1;
  margin-left: -85px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.diff-card-title-right {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--white);
  padding-bottom: 1.25rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.diff-item-right-text {
  color: var(--white);
}

.icon-circle-green {
  width: 24px;
  height: 24px;
  border: 2px solid var(--neon-green);
  border-radius: 50%;
  color: var(--neon-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

/* SECTION 3: INTEGRATED LEARNING ECOSYSTEM */
.eco-header-container {
  text-align: center !important;
  margin: 0 auto 2.75rem auto;
  max-width: 760px;
}

.eco-header-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 500;
  color: #0E172C;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-align: center !important;
}

.eco-header-title .text-wine {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.eco-header-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
  text-align: center !important;
}

.eco-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 544px);
  gap: 2.25rem;
  max-width: 1140px;
  margin: 2.5rem auto 0 auto;
  justify-content: center;
  text-align: left;
}

.eco-card-white {
  width: 544px;
  height: 626px;
  background: var(--white);
  border-radius: 55px;
  overflow: hidden;
  box-shadow: var(--shadow-card-elevated);
  border: 1px solid rgba(226, 232, 240, 0.85);
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-card-white:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.eco-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 285px;
  overflow: hidden;
}

.eco-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-card-white:hover .eco-card-img-wrapper img {
  transform: scale(1.05);
}

.eco-card-body {
  padding: 2.5rem 2.5rem 2.75rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.eco-icon-badge-gold {
  width: 44px;
  height: 44px;
  background: #FFF3F4;
  border: 1px solid rgba(163, 22, 33, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(163, 22, 33, 0.12);
}

.eco-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: #0E172C;
  margin-bottom: 0.65rem;
}

.eco-card-desc {
  font-family: var(--font-body);
  font-size: 0.975rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex: 1;
}

.eco-card-gold-gradient {
  width: 544px;
  height: 626px;
  background: linear-gradient(165deg, #B82449 0%, #A31621 45%, #6A1017 100%);
  border-radius: 55px;
  overflow: hidden;
  box-shadow: 0 28px 65px -12px rgba(163, 22, 33, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  flex-direction: column;
  color: var(--white);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-card-gold-gradient:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 80px -15px rgba(163, 22, 33, 0.55);
}

.eco-card-gold-gradient .eco-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 285px;
  overflow: hidden;
}

.eco-card-gold-gradient .eco-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.88;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.eco-card-gold-gradient:hover .eco-card-img-wrapper img {
  transform: scale(1.05);
}

.eco-card-gold-gradient .eco-card-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, rgba(163, 22, 33, 0) 0%, rgba(163, 22, 33, 0.6) 60%, #A31621 100%);
}

.eco-card-gold-gradient .eco-icon-badge-gold {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.eco-card-gold-gradient .eco-card-title {
  color: var(--white);
}

.eco-card-gold-gradient .eco-card-desc {
  color: rgba(255, 255, 255, 0.92);
}

/* ==========================================================================
   SECTION 4: TECHNOLOGY THAT POWERS SUCCESS (EXACT 1:1 REFERENCE MATCH)
   ========================================================================== */
.tech-section-spec {
  position: relative;
  width: 100%;
  min-height: 888px;
  background: radial-gradient(circle at 50% 35%, #182236 0%, #0E172C 55%, #080D18 100%);
  padding: 5.5rem 0 6rem 0;
  overflow: hidden;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Blueprint Circuit Board Background Pattern Overlay */
.tech-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/tech_bg_circuit.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Header Text */
.tech-tag-gold {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #C5942B;
  margin-bottom: 0.75rem;
  text-align: center;
}

.tech-title {
  font-family: var(--font-heading);
  font-size: 3.1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-align: center;
}

.tech-title .text-gold, .tech-title .text-wine {
  color: #E24B60 !important;
  font-weight: 600;
}

.tech-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #CBD5E1;
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

/* Clean Frameless Container for Technology Visual */
.tech-outer-frame {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.tech-inner-image-wrapper {
  position: relative;
  width: 100%;
  height: 490px;
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.tech-inner-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tech-image-vignette-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 14, 28, 0.1) 0%, rgba(5, 10, 20, 0.45) 100%);
  pointer-events: none;
}

/* Top-Left Floating Glass Card */
.tech-glass-card-left {
  position: absolute;
  top: 38px;
  left: -32px;
  background: linear-gradient(135deg, rgba(24, 34, 52, 0.9) 0%, rgba(14, 23, 44, 0.94) 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 26px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 320px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  z-index: 30;
  animation: techFloatTop 5s ease-in-out infinite alternate;
  will-change: transform;
}

.tech-glass-icon-blue {
  width: 44px;
  height: 44px;
  background: rgba(197, 148, 43, 0.2);
  border: 1px solid rgba(197, 148, 43, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #C5942B;
  font-size: 1.1rem;
}

/* Bottom-Right Floating Glass Card */
.tech-glass-card-right {
  position: absolute;
  bottom: 38px;
  right: -32px;
  background: linear-gradient(135deg, rgba(50, 18, 26, 0.9) 0%, rgba(25, 8, 14, 0.94) 100%);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 26px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 320px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  z-index: 30;
  animation: techFloatBottom 5.2s ease-in-out infinite alternate;
  animation-delay: 0.8s;
  will-change: transform;
}

.tech-glass-icon-gold {
  width: 44px;
  height: 44px;
  background: rgba(184, 36, 73, 0.25);
  border: 1px solid rgba(184, 36, 73, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #B82449;
  font-size: 1.1rem;
}

.tech-glass-tag {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #C5942B;
  margin-bottom: 2px;
}

.tech-glass-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 2px;
}

.tech-glass-desc {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

/* Subtle Gentle Floating Animation */
@keyframes techFloatTop {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes techFloatBottom {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

/* ==========================================================================
   SECTION 5: LEARN FROM THE MASTERS (FACULTY SECTION EXACT MATCH)
   ========================================================================== */
.masters-header-container {
  text-align: center !important;
  margin: 0 auto 3rem auto;
  max-width: 760px;
}

.masters-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 500;
  color: #0E172C;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-align: center !important;
}

.masters-title .text-wine {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.masters-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
  text-align: center !important;
}

/* ============================================================
   SHARED CAROUSEL COMPONENT SYSTEM (PREMIUM 3D STAGE)
   ============================================================ */
.carousel-wrapper-spec {
  position: relative;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 3.5rem;
}

.carousel-viewport-spec {
  overflow: hidden;
  width: 100%;
  padding: 4rem 0.5rem 3rem 0.5rem;
  perspective: 1200px;
}

.carousel-track-spec {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.35, 1);
  will-change: transform;
  gap: 2rem;
  align-items: center;
}

.carousel-slide-spec {
  flex: 0 0 calc((100% - (2 * 2rem)) / 3);
  box-sizing: border-box;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.35, 1);
}

/* Side Slides (Slightly Scaled Down with Soft Depth) */
.carousel-slide-spec:not(.is-center-slide) {
  opacity: 0.85;
  transform: scale(0.94);
  cursor: pointer;
}

.carousel-slide-spec:not(.is-center-slide):hover {
  opacity: 0.98;
  transform: scale(0.97);
}

/* Center Slide (Prominently Elevated & In Front) */
.carousel-slide-spec.is-center-slide {
  opacity: 1;
  transform: scale(1.06) translateY(-10px);
  z-index: 10;
}

/* Floating Frosted Glass Arrow Buttons */
.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 10px 25px -4px rgba(14, 23, 44, 0.12), 0 4px 10px -2px rgba(14, 23, 44, 0.06);
  color: #0E172C;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.35, 1);
  outline: none;
}

.carousel-nav-btn:hover {
  background: #7E1528;
  color: #FFFFFF;
  border-color: #7E1528;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 14px 30px rgba(126, 21, 40, 0.35);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn.prev-btn {
  left: 0;
}

.carousel-nav-btn.next-btn {
  right: 0;
}

.carousel-dots-spec {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.75rem;
}

.carousel-dot-spec {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #CBD5E1;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.35, 1);
  padding: 0;
}

.carousel-dot-spec.active {
  width: 32px;
  border-radius: 12px;
  background: linear-gradient(90deg, #B82449 0%, #A31621 100%);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   SECTION 5: LEARN FROM THE MASTERS CARDS (PREMIUM BESPOKE)
   ============================================================ */
.masters-card {
  background: #FFFFFF;
  border-radius: 46px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.85);
  display: flex;
  flex-direction: column;
  height: 530px;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.35, 1);
  user-select: none;
  position: relative;
}

.masters-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.masters-card-img-wrapper {
  position: relative;
  width: 100%;
  height: 290px;
  overflow: hidden;
  background: #0E172C;
}

.masters-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.35, 1);
}

.masters-card:hover .masters-card-img-wrapper img {
  transform: scale(1.04);
}

.masters-card-body {
  padding: 1.75rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.masters-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #C5942B;
  margin-bottom: 0.25rem;
  transition: color 0.4s ease;
}

.masters-role {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #701422;
  margin-bottom: 1.15rem;
  transition: color 0.4s ease;
}

.masters-info-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.masters-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #64748B;
  transition: color 0.4s ease;
}

.masters-info-item i {
  color: #64748B;
  font-size: 0.92rem;
  width: 18px;
  text-align: center;
  transition: color 0.4s ease;
}

/* CENTER HIGHLIGHTED WINE RED CARD FOR MASTERS (1 OUT OF 3 ON DESKTOP) */
.masters-card.is-center-card {
  background: #701422 !important;
  background: linear-gradient(165deg, #7E1528 0%, #68111E 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 24px 60px rgba(14, 23, 44, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.masters-card.is-center-card .masters-name {
  color: #FFFFFF !important;
}

.masters-card.is-center-card .masters-role {
  color: rgba(255, 255, 255, 0.9) !important;
}

.masters-card.is-center-card .masters-info-item {
  color: #FFFFFF !important;
}

.masters-card.is-center-card .masters-info-item i {
  color: #FFFFFF !important;
}

.masters-card-gold .masters-info-item i {
  color: var(--white);
}

/* ==========================================================================
   SECTION 6: EXPERIENCE OUR CAMPUS (FLUID ASPECT RATIO 1440 / 800)
   ========================================================================== */
.campus-tour-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 520px;
  padding: 5.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: #061122;
  clear: both;
}

.campus-tour-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.campus-tour-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.campus-tour-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 30, 55, 0.72) 0%, rgba(8, 20, 42, 0.85) 100%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

.campus-tour-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.campus-tour-content.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.95);
}

.play-btn-gold {
  width: clamp(64px, 5.5vw, 84px);
  height: clamp(64px, 5.5vw, 84px);
  background: linear-gradient(135deg, #B82449 0%, #A31621 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  border: none;
  cursor: pointer;
  margin-bottom: 1.75rem;
  box-shadow: 0 12px 35px rgba(163, 22, 33, 0.55), 0 0 0 16px rgba(184, 36, 73, 0.25);
  transition: all 0.3s ease;
  outline: none;
  padding-left: 6px;
}

.play-btn-gold:hover {
  transform: scale(1.12);
  box-shadow: 0 18px 50px rgba(163, 22, 33, 0.7), 0 0 0 22px rgba(184, 36, 73, 0.35);
}

.campus-tour-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.campus-tour-title .text-gold, .campus-tour-title .text-wine {
  color: var(--primary-light) !important;
  font-weight: 500;
}

.campus-tour-subhead {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #CBD5E1;
  line-height: 1.65;
  max-width: 640px;
  margin: 0 auto;
}

/* Inline Video Player Container */
.campus-inline-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  background: #000;
}

.campus-inline-video-container.active {
  opacity: 1;
  visibility: visible;
}

.campus-inline-video-container video,
.campus-inline-video-container iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

/* ==========================================================================
   SECTION 7: ACHIEVEMENT WALL (FLUID ASPECT RATIO 1440 / 1095)
   ========================================================================== */
.achievement-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: auto;
  background: #F8F9FE;
  padding: 5.5rem 0;
  display: block;
  clear: both;
}

.achievement-header-container {
  text-align: center !important;
  margin: 0 auto 2.75rem auto;
  max-width: 760px;
}

.achievement-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 500;
  color: #0E172C;
  line-height: 1.15;
  margin-bottom: 0.65rem;
  text-align: center !important;
}

.achievement-title .text-wine {
  color: #701422 !important;
  font-weight: 600;
}

.achievement-title .text-gold {
  color: #C5942B !important;
  font-weight: 600;
}

.achievement-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
  text-align: center !important;
}

/* ============================================================
   SECTION 7: ACHIEVEMENT WALL CAROUSEL & CARDS
   ============================================================ */
.topper-card {
  background: #FFFFFF;
  border-radius: 46px;
  padding: 2.75rem 1.5rem 2.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.85);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.35, 1);
  user-select: none;
  min-height: 290px;
  justify-content: center;
  position: relative;
}

.topper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.topper-avatar-circle {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}

.topper-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.topper-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: #C5942B;
  margin-bottom: 0.25rem;
  transition: color 0.4s ease;
}

.topper-exam {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #8E9DAE;
  margin-bottom: 0.95rem;
  transition: color 0.4s ease;
}

.topper-rank {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #701422;
  letter-spacing: 0.5px;
  transition: color 0.4s ease;
}

/* CENTER HIGHLIGHTED WINE RED CARD FOR TOPPERS (1 OUT OF 3 ON DESKTOP) */
.topper-card.is-center-card {
  background: #701422 !important;
  background: linear-gradient(165deg, #7E1528 0%, #68111E 100%) !important;
  color: #FFFFFF !important;
  box-shadow: 0 24px 60px rgba(14, 23, 44, 0.18) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.topper-card.is-center-card .topper-avatar-circle {
  border: 2.5px solid rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25) !important;
}

.topper-card.is-center-card .topper-name {
  color: #FFFFFF !important;
}

.topper-card.is-center-card .topper-exam {
  color: rgba(255, 255, 255, 0.85) !important;
}

.topper-card.is-center-card .topper-rank {
  color: #FFFFFF !important;
}

/* Dark Navy Featured Testimonial Banner */
.testimonial-banner-navy {
  width: 100%;
  max-width: 1140px;
  background: linear-gradient(135deg, #111A30 0%, #0E172C 50%, #090F1D 100%);
  border-radius: 65px;
  padding: 3rem 3.5rem;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: center;
  box-shadow: 0 30px 70px rgba(14, 23, 44, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 4.75rem auto 0 auto;
}

.testimonial-student-img-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
  border-radius: 45px;
  overflow: hidden;
}

.testimonial-student-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.testimonial-content-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.testimonial-quote-icon {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  line-height: 0.8;
  color: #C5942B;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.5;
  margin-bottom: 1.75rem;
}

.testimonial-text .text-gold, .testimonial-text .text-wine {
  color: #E24B60 !important;
  font-weight: 600;
}

.testimonial-author-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.testimonial-author-sub {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #94A3B8;
}

/* ==========================================================================
   SECTION 8: YOUR JOURNEY STARTS HERE (ADMISSION PROCESS - ASPECT RATIO 1440 / 508)
   ========================================================================== */
.journey-section {
  position: relative;
  width: 100%;
  height: auto;
  min-height: auto;
  background: var(--white);
  padding: 5.5rem 0;
  display: block;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  clear: both;
}

.journey-header-container {
  text-align: center !important;
  margin: 0 auto 3.5rem auto;
  max-width: 760px;
}

.journey-title {
  font-family: var(--font-heading);
  font-size: 2.85rem;
  font-weight: 500;
  color: #0E172C;
  line-height: 1.15;
  margin-bottom: 0.65rem;
  text-align: center !important;
}

.journey-title .text-wine {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.journey-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #64748B;
  line-height: 1.6;
  text-align: center !important;
}

/* 5-Step Process Timeline Wrapper */
.journey-timeline-wrapper {
  position: relative;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

/* Background Connecting Line */
.journey-connecting-line {
  position: absolute;
  top: 22px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #E5D5BC;
  z-index: 1;
}

/* 5-Step Nodes Grid */
.journey-steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
}

.journey-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Step Node Circles */
.journey-step-item.active-step .journey-node-circle-gray {
  background: linear-gradient(135deg, #D4A338 0%, #C5942B 100%);
  color: #FFFFFF !important;
}

.journey-node-circle-wine {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #7E1528;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(126, 21, 40, 0.3);
  position: relative;
  z-index: 5;
}

.journey-node-circle-ochre {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A338 0%, #C5942B 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(197, 148, 43, 0.35);
  position: relative;
  z-index: 5;
}

.journey-node-circle-gold {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #7E1528;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(126, 21, 40, 0.3);
  position: relative;
  z-index: 5;
}

.journey-node-circle-gray {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4A338 0%, #C5942B 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 6px 16px rgba(197, 148, 43, 0.35);
  position: relative;
  z-index: 5;
}

.journey-step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: #0E172C;
  margin-bottom: 0.35rem;
}

.journey-step-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.45;
  max-width: 170px;
}

/* ==========================================================================
   SECTION 9: CALL TO ACTION BANNER (YOUR FUTURE STARTS HERE - EXACT MATCH)
   ========================================================================== */
.cta-banner-spec {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 480px;
  padding: 5.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  background: #0E172C;
  clear: both;
}

.cta-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-bg-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(14, 23, 44, 0.95) 0%, rgba(30, 20, 35, 0.93) 50%, rgba(104, 17, 30, 0.92) 100%);
  z-index: 2;
}

.cta-content-container {
  position: relative;
  z-index: 10;
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-title-spec {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.cta-title-spec .text-gold, .cta-title-spec .text-wine {
  color: var(--primary-light) !important;
  font-weight: 500;
}

.cta-subhead-spec {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: #CBD5E1;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 2.5rem auto;
}

.cta-btn-group {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
}

.btn-cta-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #B82449 0%, #A31621 100%);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 52px;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(163, 22, 33, 0.45);
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(163, 22, 33, 0.6);
}

.btn-cta-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 53, 78, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #E2E8F0;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  min-height: 52px;
  padding: 0.85rem 2.5rem;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-cta-glass:hover {
  background: rgba(45, 68, 100, 0.95);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ==========================================================================
   SECTION 10: MASTER FOOTER (1440px x 394px FLUID ASPECT RATIO - EXACT MATCH)
   ========================================================================== */
/* ==========================================================================
   SECTION 10: MASTER FOOTER (RESPONSIVE 4-COLUMN DESIGN SYSTEM)
   ========================================================================== */
.master-footer-spec {
  position: relative;
  width: 100%;
  aspect-ratio: auto;
  height: auto;
  min-height: auto;
  background: #F8F9FD;
  padding: 4.5rem 0 2.5rem 0;
  display: block;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.footer-brand-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.65;
  max-width: 360px;
}

.footer-contact-mini {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #556477;
  font-weight: 500;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #0E172C;
  margin-bottom: 1.25rem;
  letter-spacing: -0.2px;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
}

.footer-nav-link {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-link:hover {
  color: #7E1528;
}

/* Bottom Copyright Row */
.footer-bottom-divider {
  width: 100%;
  max-width: 1200px;
  margin: 3.5rem auto 0 auto;
  border-top: 1px solid #E2E8F0;
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy-text {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #64748B;
}

.footer-legal-links {
  display: flex;
  gap: 2rem;
}

.footer-legal-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #64748B;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal-link:hover {
  color: #0E172C;
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .footer-bottom-divider {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ============================================================
   MOBILE NAVIGATION TOGGLE & DRAWER SYSTEM
   ============================================================ */
.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--bezier-smooth);
}

.mobile-nav-toggle:hover {
  color: var(--primary-color);
  background: rgba(163, 22, 33, 0.08);
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(14, 23, 44, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s var(--bezier-smooth);
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 380px);
  height: 100vh;
  background: #FFFFFF;
  z-index: 1999;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--bezier-smooth);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-drawer.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #E2E8F0;
}

.mobile-nav-close {
  background: #F1F5F9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #334155;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.mobile-nav-close:hover {
  background: #7E1528;
  color: #FFFFFF;
  border-color: #7E1528;
}

.mobile-nav-body {
  padding: 1.5rem 1.25rem 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-group-title {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #7E1528;
  margin-bottom: 0.75rem;
  padding-left: 0.25rem;
}

/* Rich Card-Feel Program Links */
.mobile-nav-program-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.1rem;
  background: #FAF8F5;
  border: 1px solid rgba(229, 213, 188, 0.6);
  border-radius: 18px;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-bottom: 0.65rem;
}

.mobile-nav-program-card:hover, .mobile-nav-program-card.active {
  background: #FFFFFF;
  border-color: #7E1528;
  box-shadow: 0 8px 24px rgba(126, 21, 40, 0.08);
  transform: translateX(4px);
}

.mobile-nav-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: #FCE8EB;
  color: #7E1528;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mobile-nav-program-info {
  flex: 1;
}

.mobile-nav-program-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #0E172C;
  line-height: 1.25;
}

.mobile-nav-program-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #64748B;
  margin-top: 0.15rem;
}

.mobile-nav-arrow {
  font-size: 0.85rem;
  color: #C5942B;
  transition: transform 0.25s ease;
}

.mobile-nav-program-card:hover .mobile-nav-arrow,
.mobile-nav-item:hover .mobile-nav-arrow {
  transform: translateX(3px);
  color: #7E1528;
}

/* Explore Link Item */
.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.95rem;
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 600;
  color: #0E172C;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.25s ease;
  margin-bottom: 0.35rem;
}

.mobile-nav-item-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.mobile-nav-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #F8F9FE;
  color: #7E1528;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  background: #FCE8EB;
  color: #7E1528;
  padding-left: 1.15rem;
}

.mobile-nav-cta-box {
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #E2E8F0;
}

.mobile-nav-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: linear-gradient(135deg, #7E1528 0%, #68111E 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(126, 21, 40, 0.3);
  transition: all 0.25s ease;
}

.mobile-nav-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(126, 21, 40, 0.45);
}

.mobile-nav-support-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #64748B;
  margin-top: 1rem;
  text-align: center;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS (Desktop, Tablet, Mobile)
   ============================================================ */

/* 1. Large Desktop (1440px+) */
@media (min-width: 1440px) {
  .container {
    max-width: 1280px;
  }
}

/* 2. Standard Desktop (1180px - 1439px) */
@media (max-width: 1180px) {
  .eco-grid-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1000px;
  }

  .eco-card-white, .eco-card-gold-gradient {
    width: 100%;
    height: auto;
    min-height: 580px;
  }

  .masters-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .toppers-grid-container {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .stats-banner-gradient {
    padding: 1.5rem 1.75rem;
  }
}

/* 3. Tablet & Small Desktop (993px - 1024px) */
@media (max-width: 1024px) {
  .nav-links-spec {
    gap: 1.5rem;
  }

  .hero-title-spec {
    font-size: clamp(2.6rem, 4.2vw, 3.4rem);
  }

  .masters-grid-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

/* 4. Tablet Portrait (768px - 992px) */
@media (max-width: 992px) {
  .nav-links-spec {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .carousel-wrapper-spec {
    padding: 0 2rem;
  }

  .carousel-slide-spec {
    flex: 0 0 100% !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .achievement-section {
    background: #FFFFFF !important;
    padding: 3.5rem 0 !important;
  }

  .carousel-viewport-spec {
    padding: 1.25rem 0.25rem !important;
    background: transparent !important;
  }

  .masters-card {
    height: auto;
    min-height: 490px;
  }

  .topper-card {
    min-height: 250px;
  }

  .hero-spec-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    text-align: center;
  }

  .tag-badge-navy {
    margin: 0 auto 1.5rem auto;
  }

  .hero-subhead-spec {
    margin: 0 auto 2rem auto;
  }

  .hero-btn-group {
    justify-content: center;
  }

  /* Difference Section: Hide student cutout image & show clean VS badge */
  .diff-section-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }

  .diff-card-left, .diff-card-right {
    margin: 0;
    width: 100%;
    border-radius: 40px;
    padding: 2.5rem 2rem;
  }

  .diff-center-student {
    display: none !important;
  }

  .diff-center-vs-badge {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0.5rem auto;
    z-index: 10;
  }

  .diff-vs-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #B82449 0%, #A31621 100%);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(163, 22, 33, 0.35), 0 0 0 6px #F8F9FC;
    border: 2px solid rgba(255, 255, 255, 0.7);
  }

  .eco-grid-container {
    grid-template-columns: 1fr;
    max-width: 540px;
  }

  .stats-grid-exact {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .tech-outer-frame {
    padding: 14px;
    border-radius: 45px;
  }

  .tech-glass-card-left, .tech-glass-card-right {
    position: static;
    transform: none !important;
    margin: 1.25rem auto;
    max-width: 100%;
  }

  .masters-grid-container {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
    margin: 2rem auto 0 auto;
  }

  /* Campus Section: Auto height, no aspect-ratio collapse */
  .campus-tour-section {
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 480px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5rem 1.5rem !important;
    position: relative !important;
    overflow: hidden !important;
    clear: both !important;
  }

  /* Achievement Section: Auto height, block layout */
  .achievement-section {
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    position: relative !important;
    padding: 5rem 0 !important;
    background: #F8F9FE !important;
    overflow: visible !important;
    clear: both !important;
  }

  .toppers-grid-container {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 600px !important;
    gap: 1.5rem !important;
    margin: 0 auto 3rem auto !important;
  }

  .testimonial-banner-navy {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
    padding: 2.5rem 2rem !important;
    text-align: center !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    border-radius: 40px !important;
  }

  .testimonial-student-img-wrapper {
    margin: 0 auto !important;
    max-width: 260px !important;
    height: 220px !important;
    border-radius: 30px !important;
  }

  .testimonial-text {
    font-size: 1.2rem !important;
    text-align: center !important;
  }

  .testimonial-author-name, .testimonial-author-sub {
    text-align: center !important;
  }

  /* Journey Section: Responsive Vertical Timeline with Connected Circles */
  .journey-section {
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: auto !important;
    display: block !important;
    position: relative !important;
    padding: 4.5rem 1rem !important;
    background: #FFFFFF !important;
    overflow: visible !important;
    clear: both !important;
  }

  .journey-timeline-wrapper {
    position: relative !important;
    max-width: 480px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 1rem 0 1.25rem !important;
    box-sizing: border-box !important;
  }

  .journey-timeline-section {
    background-color: #F8F9FE !important;
    padding: 5.5rem 0;
  }

  .journey-connecting-line {
    display: block !important;
    position: absolute !important;
    top: 22px !important;
    bottom: 22px !important;
    left: calc(1.25rem + 22px) !important;
    right: auto !important;
    width: 2px !important;
    height: auto !important;
    background: #E5D5BC !important;
    z-index: 1 !important;
    transform: translateX(-50%) !important;
  }

  .journey-steps-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .journey-step-item {
    display: grid !important;
    grid-template-columns: 44px 1fr !important;
    grid-template-rows: auto auto !important;
    column-gap: 1.15rem !important;
    row-gap: 0.2rem !important;
    align-items: start !important;
    text-align: left !important;
    position: relative !important;
    width: 100% !important;
  }

  .journey-step-item .journey-node-circle-gold,
  .journey-step-item .journey-node-circle-gray,
  .journey-step-item .journey-node-circle-wine,
  .journey-step-item .journey-node-circle-ochre {
    grid-row: 1 / 3 !important;
    grid-column: 1 !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 5 !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--font-heading) !important;
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
  }

  .journey-step-item .journey-node-circle-wine {
    background: #7E1528 !important;
    box-shadow: 0 6px 16px rgba(126, 21, 40, 0.3) !important;
  }

  .journey-step-item .journey-node-circle-ochre {
    background: linear-gradient(135deg, #D4A338 0%, #C5942B 100%) !important;
    box-shadow: 0 6px 16px rgba(197, 148, 43, 0.35) !important;
  }

  .journey-step-item .journey-step-title {
    grid-column: 2 !important;
    grid-row: 1 !important;
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    margin-bottom: 0 !important;
    text-align: left !important;
    color: #0E172C !important;
    line-height: 1.25 !important;
  }

  .journey-step-item .journey-step-desc {
    grid-column: 2 !important;
    grid-row: 2 !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    max-width: 100% !important;
    text-align: left !important;
    color: #64748B !important;
    margin: 0 !important;
  }

  /* CTA Section: Auto height */
  .cta-banner-spec {
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 440px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 5rem 1.5rem !important;
    position: relative !important;
    overflow: hidden !important;
    clear: both !important;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* 5. Mobile Phone (320px - 767px) */
@media (max-width: 767px) {
  .section-padding {
    padding: clamp(3rem, 7vw, 4.5rem) 0;
  }

  .hero-spec-section {
    padding: 2.5rem 0 4rem 0;
  }

  /* Section 3: Historic Milestones Timeline Mobile View (Matching Screenshot) */
  .journey-timeline-section {
    background-color: #F8F9FE !important;
  }

  .rc-why-header {
    max-width: 100% !important;
  }

  .journey-timeline-section .rc-why-header {
    text-align: center !important;
    margin-bottom: 2.5rem !important;
    max-width: 100% !important;
  }

  .journey-timeline-section .rc-why-title,
  .journey-timeline-section .rc-why-subtitle {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .journey-timeline-card-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    position: relative !important;
    padding-left: 3.25rem !important;
    padding-right: 0.25rem !important;
  }

  .journey-timeline-card-grid::before {
    content: '' !important;
    position: absolute !important;
    left: 1.35rem !important;
    top: 1rem !important;
    bottom: 1rem !important;
    width: 2px !important;
    background: #E5D5BC !important;
    z-index: 1 !important;
  }

  .timeline-node-card {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .timeline-year-bubble {
    position: absolute !important;
    left: -1.9rem !important;
    top: 1.15rem !important;
    transform: translateX(-50%) !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    border-radius: 50% !important;
    background: #7E1528 !important;
    color: #FFFFFF !important;
    font-family: var(--font-heading) !important;
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 12px rgba(126, 21, 40, 0.25) !important;
    z-index: 5 !important;
    border: 2px solid #FFFFFF !important;
  }

  .timeline-year-bubble.gold {
    background: linear-gradient(135deg, #D4A338 0%, #C5942B 100%) !important;
    box-shadow: 0 4px 12px rgba(197, 148, 43, 0.3) !important;
  }

  .timeline-content-bubble {
    background: #FFFFFF !important;
    border: 1.5px solid #F1E8DC !important;
    border-radius: 24px !important;
    padding: 1.25rem 1.15rem !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03) !important;
    text-align: left !important;
    position: relative !important;
    z-index: 2 !important;
  }

  .timeline-milestone-tag {
    display: inline-block !important;
    padding: 0.25rem 0.75rem !important;
    background: #FCE8EB !important;
    color: #7E1528 !important;
    border-radius: 20px !important;
    font-size: 0.68rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.6px !important;
    text-transform: uppercase !important;
    margin-bottom: 0.6rem !important;
  }

  .timeline-milestone-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #0E172C !important;
    margin-bottom: 0.35rem !important;
    line-height: 1.3 !important;
  }

  .timeline-milestone-desc {
    font-size: 0.85rem !important;
    color: #64748B !important;
    line-height: 1.55 !important;
    margin: 0 !important;
  }

  .hero-title-spec {
    font-size: clamp(1.95rem, 7.5vw, 2.75rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 1.15rem !important;
  }

  .hero-subhead-spec {
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.75rem !important;
  }

  .hero-btn-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.5rem !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
  }

  .hero-btn-group .btn-pill-gold,
  .hero-btn-group .btn-pill-outline-dark {
    flex: 1 1 0% !important;
    width: 50% !important;
    padding: 0.75rem 0.4rem !important;
    font-size: 0.85rem !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    min-height: 44px !important;
  }



  .hero-image-outer-frame {
    padding: 10px 10px 14px 10px;
    border-radius: 50px 50px 25px 50px;
  }

  .hero-image-tilt-wrapper {
    border-radius: 42px 42px 20px 42px;
  }

  .hero-image-tilt-wrapper img {
    height: 380px;
  }

  .badge-glass-top {
    top: 25px;
    left: -12px;
    padding: 8px 14px;
    border-radius: 25px;
  }

  .badge-glass-bottom {
    bottom: 20px;
    right: -10px;
    padding: 8px 14px;
    border-radius: 25px;
  }

  .rc-badge-top {
    left: -5px !important;
    top: 15px !important;
    padding: 8px 12px !important;
    border-radius: 25px !important;
  }

  .rc-badge-bottom {
    right: -5px !important;
    bottom: 15px !important;
    padding: 8px 12px !important;
    border-radius: 25px !important;
  }

  .rc-badge-icon {
    width: 34px !important;
    height: 34px !important;
    font-size: 0.85rem !important;
  }

  .rc-badge-value {
    font-size: 1rem !important;
  }

  .rc-badge-label {
    font-size: 0.58rem !important;
    letter-spacing: 0.8px !important;
  }

  .rc-hero-title {
    font-size: clamp(1.95rem, 7.5vw, 2.75rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.5px !important;
    margin-bottom: 1.15rem !important;
  }

  .rc-hero-title .rc-title-wine,
  .rc-hero-title .rc-title-gold {
    display: inline !important;
  }

  .rc-hero-desc {
    font-size: 0.94rem !important;
    line-height: 1.6 !important;
    margin-bottom: 1.75rem !important;
  }

  .rc-hero-section .rc-btn-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0.4rem !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
  }

  .rc-hero-section .rc-btn-primary,
  .rc-hero-section .rc-btn-outline {
    flex: 1 1 0% !important;
    width: 50% !important;
    padding: 0.65rem 0.35rem !important;
    font-size: clamp(0.72rem, 3.1vw, 0.82rem) !important;
    letter-spacing: -0.2px !important;
    text-align: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    white-space: nowrap !important;
    min-height: 42px !important;
  }

  /* Eliminate Extra White Space Under Hero Image on Mobile */
  .rc-image-outer-frame {
    padding: 10px !important;
    border-radius: 40px 40px 22px 40px !important;
  }

  .rc-image-inner {
    aspect-ratio: 471 / 460 !important;
    border-radius: 32px 32px 16px 32px !important;
    width: 100% !important;
  }

  .rc-image-inner img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
  }

  .badge-value-large {
    font-size: 1rem;
  }

  .stats-banner-gradient {
    border-radius: 35px !important;
    padding: 1.75rem 1rem !important;
    margin-top: 3rem !important;
  }

  .stats-grid-exact {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem 0.75rem !important;
  }

  .stat-icon-wrapper {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.16) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 0.6rem !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
  }

  .stat-icon-wrapper svg {
    stroke: #FFFFFF !important;
    width: 22px !important;
    height: 22px !important;
  }

  .stat-icon-wrapper svg path[fill="#B82449"] {
    fill: #FFFFFF !important;
  }

  .stat-icon-wrapper svg polygon[fill="#34D399"] {
    fill: #34D399 !important;
  }

  .stat-num-white {
    font-weight: 600 !important;
    font-size: 1.85rem !important;
    color: #FFFFFF !important;
  }

  .stat-num-green {
    font-weight: 600 !important;
    font-size: 1.85rem !important;
    color: #34D399 !important;
  }

  .stat-label-exact {
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-size: 0.65rem !important;
    letter-spacing: 1px !important;
  }

  .diff-header-container {
    padding: 0 1rem !important;
    margin-bottom: 2rem !important;
  }

  .diff-header-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.4rem, 6.2vw, 1.95rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.4px !important;
    white-space: nowrap !important;
    line-height: 1.25 !important;
    color: #0E172C !important;
    margin-bottom: 0.6rem !important;
  }

  .diff-header-title .text-wine {
    color: #7E1528 !important;
    font-weight: 700 !important;
  }

  .diff-header-subtitle {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    max-width: 330px !important;
    margin: 0 auto !important;
    color: #556477 !important;
  }

  .eco-header-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.4rem, 6.2vw, 1.95rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.4px !important;
    white-space: nowrap !important;
    line-height: 1.25 !important;
    color: #0E172C !important;
    margin-bottom: 0.6rem !important;
  }

  .eco-header-title .text-wine {
    color: #7E1528 !important;
    font-weight: 700 !important;
  }

  .mobile-only-br {
    display: block !important;
  }

  .eco-header-subtitle {
    font-family: var(--font-body) !important;
    font-size: 0.88rem !important;
    line-height: 1.48 !important;
    color: #556477 !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    text-align: center !important;
  }

  .achievement-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.4rem, 6.2vw, 1.95rem) !important;
    font-weight: 700 !important;
    letter-spacing: -0.4px !important;
    white-space: nowrap !important;
    line-height: 1.25 !important;
    color: #0E172C !important;
    margin-bottom: 0.6rem !important;
  }

  .diff-card-left, .diff-card-right {
    padding: 2rem 1.5rem;
    border-radius: 30px;
  }

  .eco-grid-container {
    gap: 1.5rem !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  .eco-card-white, .eco-card-gold-gradient {
    border-radius: 28px !important;
    min-height: auto !important;
    height: auto !important;
  }

  .eco-card-img-wrapper,
  .eco-card-gold-gradient .eco-card-img-wrapper {
    height: 195px !important;
  }

  .eco-card-body {
    padding: 1.35rem 1.25rem 1.5rem 1.25rem !important;
  }

  .eco-icon-badge-gold {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
    margin-bottom: 0.85rem !important;
    border-radius: 12px !important;
  }

  .eco-card-title {
    font-size: 1.28rem !important;
    margin-bottom: 0.45rem !important;
    line-height: 1.25 !important;
  }

  .eco-card-desc {
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.25rem !important;
  }

  .tech-section-spec {
    min-height: auto !important;
    padding: 4rem 1rem !important;
  }

  .tech-title {
    font-size: 2.15rem !important;
  }

  .tech-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 2.5rem !important;
  }

  .tech-outer-frame {
    border-radius: 0 !important;
    padding: 0 !important;
    max-width: 340px !important;
    margin: 0 auto !important;
    overflow: visible !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .tech-inner-image-wrapper {
    height: 380px !important;
    border-radius: 36px !important;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.45) !important;
  }

  .tech-glass-card-left {
    top: 22px !important;
    left: -14px !important;
    transform: none !important;
    background: linear-gradient(135deg, rgba(184, 36, 73, 0.95) 0%, rgba(140, 16, 26, 0.95) 100%) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 35px !important;
    padding: 8px 16px 8px 10px !important;
    gap: 0.7rem !important;
    max-width: 220px !important;
    box-shadow: 0 14px 35px rgba(163, 22, 33, 0.4) !important;
    z-index: 25 !important;
    animation: techFloatTopMobile 4.5s ease-in-out infinite alternate !important;
  }

  .tech-glass-card-left .tech-glass-icon-blue {
    width: 36px !important;
    height: 36px !important;
    background: rgba(255, 255, 255, 0.28) !important;
    border-radius: 50% !important;
    border: none !important;
    color: #FFFFFF !important;
    font-size: 0.95rem !important;
  }

  .tech-glass-card-left .tech-glass-tag {
    font-size: 0.62rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 1px !important;
  }

  .tech-glass-card-left .tech-glass-title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 1.1 !important;
  }

  .tech-glass-card-left .tech-glass-desc {
    display: none !important;
  }

  .tech-glass-card-right {
    bottom: 22px !important;
    right: -12px !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    background: rgba(22, 28, 40, 0.88) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 35px !important;
    padding: 8px 16px 8px 10px !important;
    gap: 0.7rem !important;
    max-width: 240px !important;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.5) !important;
    z-index: 25 !important;
    animation: techFloatBottomMobile 4.8s ease-in-out infinite alternate !important;
    animation-delay: 0.7s !important;
  }

  .tech-glass-card-right .tech-glass-icon-gold {
    width: 36px !important;
    height: 36px !important;
    background: rgba(184, 36, 73, 0.35) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(184, 36, 73, 0.5) !important;
    color: #FF708F !important;
    font-size: 0.95rem !important;
  }

  .tech-glass-card-right .tech-glass-tag {
    font-size: 0.62rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    letter-spacing: 0.8px !important;
    margin-bottom: 1px !important;
  }

  .tech-glass-card-right .tech-glass-title {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    line-height: 1.1 !important;
  }

  .tech-glass-card-right .tech-glass-desc {
    display: none !important;
  }

  @keyframes techFloatTopMobile {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-6px);
    }
  }

  @keyframes techFloatBottomMobile {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(6px);
    }
  }

  .masters-grid-container {
    grid-template-columns: 1fr;
    max-width: 360px;
  }

  .campus-tour-section {
    aspect-ratio: auto !important;
    min-height: 420px !important;
    padding: 4rem 1rem !important;
  }

  .toppers-grid-container {
    grid-template-columns: 1fr !important;
    max-width: 320px !important;
    margin: 0 auto 2.5rem auto !important;
    gap: 1.25rem !important;
  }

  .topper-card {
    border-radius: 36px !important;
    min-height: 260px !important;
    padding: 2.25rem 1.25rem !important;
  }

  .testimonial-banner-navy {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 2.5rem 1.6rem 2.25rem 1.6rem !important;
    border-radius: 38px !important;
    max-width: 340px !important;
    margin: 4.25rem auto 0 auto !important;
    background: linear-gradient(160deg, #14203A 0%, #0E172C 65%, #080D1A 100%) !important;
    box-shadow: 0 20px 50px rgba(14, 23, 44, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
  }

  .testimonial-student-img-wrapper {
    width: 105px !important;
    height: 105px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    margin: 0 auto 1.25rem auto !important;
    border: 3px solid #C5942B !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35), 0 0 0 5px rgba(197, 148, 43, 0.18) !important;
  }

  .testimonial-student-img-wrapper img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
  }

  .testimonial-content-block {
    text-align: center !important;
    align-items: center !important;
  }

  .testimonial-quote-icon {
    font-size: 2.75rem !important;
    margin-bottom: 0.5rem !important;
    color: #C5942B !important;
  }

  .testimonial-text {
    font-size: 1.05rem !important;
    line-height: 1.65 !important;
    color: #F8FAFC !important;
    margin-bottom: 1.25rem !important;
    text-align: center !important;
  }

  .testimonial-author-name {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin-bottom: 0.25rem !important;
  }

  .testimonial-author-sub {
    font-size: 0.85rem !important;
    color: #94A3B8 !important;
  }

  .journey-timeline-wrapper {
    position: relative !important;
    max-width: 380px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 0.5rem 0 1rem !important;
    box-sizing: border-box !important;
  }

  .journey-connecting-line {
    display: block !important;
    position: absolute !important;
    top: 22px !important;
    bottom: 22px !important;
    left: calc(1rem + 22px) !important;
    right: auto !important;
    width: 2px !important;
    height: auto !important;
    background: #E2E8F0 !important;
    border-radius: 3px !important;
    z-index: 1 !important;
    transform-origin: top center !important;
    transform: translateX(-50%) scaleY(0) !important;
    transition: transform 1.2s var(--bezier-smooth) !important;
  }

  .journey-connecting-line.active {
    transform: translateX(-50%) scaleY(1) !important;
  }

  .journey-steps-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .journey-step-item {
    display: grid !important;
    grid-template-columns: 44px 1fr !important;
    grid-template-rows: auto auto !important;
    column-gap: 1.15rem !important;
    row-gap: 0.2rem !important;
    align-items: start !important;
    text-align: left !important;
    position: relative !important;
    width: 100% !important;
  }

  .cta-banner-spec {
    aspect-ratio: auto !important;
    min-height: 400px !important;
    padding: 4rem 1rem !important;
  }

  .carousel-wrapper-spec {
    padding: 0 0.75rem !important;
    max-width: 100% !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    position: relative !important;
  }

  .carousel-viewport-spec {
    padding: 1.5rem 0 !important;
    overflow: hidden !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .carousel-track-spec {
    display: flex !important;
    gap: 1.5rem !important;
    align-items: stretch !important;
  }

  .carousel-slide-spec {
    flex: 0 0 100% !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
  }

  .carousel-slide-spec:not(.is-center-slide) {
    opacity: 1 !important;
    transform: none !important;
  }

  .carousel-slide-spec.is-center-slide {
    transform: none !important;
  }

  .carousel-nav-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 0.9rem !important;
    background: #FFFFFF !important;
    color: #0E172C !important;
    border-radius: 50% !important;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    box-shadow: 0 8px 20px rgba(14, 23, 44, 0.14) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 25 !important;
  }

  .carousel-nav-btn.prev-btn {
    left: -6px !important;
  }

  .carousel-nav-btn.next-btn {
    right: -6px !important;
  }

  .topper-card {
    border-radius: 38px !important;
    padding: 2.25rem 1.25rem 1.85rem 1.25rem !important;
    min-height: 260px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }

  .masters-card {
    height: auto !important;
    border-radius: 34px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 auto !important;
  }

  .masters-card-img-wrapper {
    height: 280px !important;
    width: 100% !important;
  }

  .masters-card-body {
    padding: 1.5rem 1.35rem 1.75rem 1.35rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .cta-btn-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-gold, .btn-cta-glass {
    width: 100%;
    min-height: 48px;
  }

  .footer-bottom-divider {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-legal-links {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 1.5rem !important;
    white-space: nowrap !important;
  }
}

/* 6. Ultra-Small Mobile (320px - 380px) */
@media (max-width: 380px) {
  .stats-grid-exact {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  
  .badge-glass-top, .badge-glass-bottom {
    position: static;
    margin: 8px auto;
    width: 90%;
    justify-content: center;
  }
}

/* ============================================================
   GLOBAL MOTION & INTERACTION ANIMATION SYSTEM
   ============================================================ */

/* 1. Page Load Keyframes */
@keyframes navSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroTitleLineReveal {
  0% {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes heroImageEntrance {
  0% {
    opacity: 0;
    transform: scale(0.92) translateY(30px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes badgeTopPop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes badgeBottomPop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes floatGentle {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulseGoldGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 148, 43, 0.6);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(197, 148, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 148, 43, 0);
  }
}

@keyframes pulseWineGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(126, 21, 40, 0.55);
  }
  70% {
    box-shadow: 0 0 0 22px rgba(126, 21, 40, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(126, 21, 40, 0);
  }
}

@keyframes nodePulseRipple {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(197, 148, 43, 0.6);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 14px rgba(197, 148, 43, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(197, 148, 43, 0);
  }
}

/* Page Load Animation Bindings */
.header-spec {
  animation: navSlideDown 0.8s var(--bezier-smooth) forwards;
}

.hero-spec-section .tag-badge-navy {
  animation: heroFadeUp 0.8s 0.15s var(--bezier-smooth) both;
}

.hero-title-spec {
  animation: heroTitleLineReveal 0.95s 0.25s var(--bezier-smooth) both;
}

.hero-subhead-spec {
  animation: heroFadeUp 0.85s 0.45s var(--bezier-smooth) both;
}

.hero-btn-group {
  animation: heroFadeUp 0.85s 0.6s var(--bezier-smooth) both;
}

.hero-image-outer-frame {
  animation: heroImageEntrance 1s 0.35s var(--bezier-smooth) both;
}

.badge-glass-top {
  animation: badgeTopPop 0.8s 0.7s var(--bezier-smooth) both, floatGentle 4.5s 1.5s ease-in-out infinite;
}

.badge-glass-bottom {
  animation: badgeBottomPop 0.8s 0.85s var(--bezier-smooth) both, floatGentle 5s 1.7s ease-in-out infinite;
}

/* 2. Scroll Reveal Utilities */
.reveal-item {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s var(--bezier-smooth), transform 0.75s var(--bezier-smooth);
  will-change: opacity, transform;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--bezier-smooth), transform 0.8s var(--bezier-smooth);
}

.reveal-slide-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--bezier-smooth), transform 0.8s var(--bezier-smooth);
}

.reveal-slide-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.88) translateY(20px);
  transition: opacity 0.8s var(--bezier-smooth), transform 0.8s var(--bezier-smooth);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* Stagger Delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* Card Hover Lift (-6px) & Image Zoom (scale 1.05) */
.eco-card-white, .eco-card-gold-gradient,
.masters-card-white, .masters-card-gold,
.topper-card-white, .topper-card-gold,
.diff-card-left, .diff-card-right {
  transition: transform 0.4s var(--bezier-smooth), box-shadow 0.4s var(--bezier-smooth);
}

.eco-card-white:hover, .eco-card-gold-gradient:hover,
.masters-card-white:hover, .masters-card-gold:hover,
.topper-card-white:hover, .topper-card-gold:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(14, 23, 44, 0.1);
}

.eco-card-img-wrapper img,
.masters-card-img-wrapper img,
.tech-inner-image-wrapper img {
  transition: transform 0.7s var(--bezier-smooth);
}

.eco-card-white:hover .eco-card-img-wrapper img,
.eco-card-gold-gradient:hover .eco-card-img-wrapper img,
.masters-card-white:hover .masters-card-img-wrapper img,
.masters-card-gold:hover .masters-card-img-wrapper img {
  transform: scale(1.05);
}

.stat-item-exact:hover {
  transform: translateY(-4px);
}

/* Dark Technology Section Parallax & 3D Depth */
.tech-outer-frame {
  transition: transform 0.3s var(--bezier-smooth), box-shadow 0.4s ease;
  transform-style: preserve-3d;
}

.tech-outer-frame:hover .tech-inner-image-wrapper img {
  transform: scale(1.04);
}

.tech-glass-card-left, .tech-glass-card-right {
  transition: transform 0.4s var(--bezier-smooth), box-shadow 0.4s ease;
}

.tech-glass-card-left:hover {
  transform: translateY(-50%) translateX(-6px) scale(1.03);
}

.tech-glass-card-right:hover {
  transform: translateY(-50%) translateX(6px) scale(1.03);
}

/* Campus Play Button Pulse Glow & Video Parallax */
.play-btn-gold {
  animation: pulseWineGlow 2.5s infinite;
  transition: transform 0.3s ease, background 0.3s ease;
}

.play-btn-gold:hover {
  transform: scale(1.12);
}

.campus-tour-bg-img {
  transition: transform 0.2s ease-out;
  will-change: transform;
}

/* Journey Timeline Animation */
.journey-connecting-line {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 1.2s var(--bezier-smooth);
}

.journey-connecting-line.active {
  transform: scaleX(1);
}

.journey-step-item .journey-node-circle-gold,
.journey-step-item .journey-node-circle-gray {
  transition: transform 0.4s var(--bezier-smooth), box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.journey-step-item.active-step .journey-node-circle-gold {
  animation: nodePulseRipple 1.8s infinite;
}

.journey-step-item.active-step .journey-node-circle-gray {
  background: #C5942B !important;
  color: #FFFFFF !important;
  box-shadow: 0 8px 22px rgba(197, 148, 43, 0.35);
}

.journey-step-item:hover .journey-node-circle-gold,
.journey-step-item:hover .journey-node-circle-gray {
  transform: scale(1.15);
}

/* CTA Banner Background Zoom */
.cta-bg-wrapper img {
  transition: transform 1.4s var(--bezier-smooth);
}

.cta-banner-spec.revealed .cta-bg-wrapper img {
  transform: scale(1.06);
}

.cta-content-container {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.9s 0.2s var(--bezier-smooth), transform 0.9s 0.2s var(--bezier-smooth);
}

.cta-banner-spec.revealed .cta-content-container {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-item, .reveal-slide-left, .reveal-slide-right, .reveal-scale,
  .cta-content-container, .journey-connecting-line {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   CLEAN PAGE HERO BANNER (1520 / 450 ASPECT RATIO)
   ============================================================ */
.page-hero-banner-clean {
  width: 100%;
  aspect-ratio: 1520 / 450;
  min-height: 360px;
  background: linear-gradient(135deg, #0E172C 0%, #151020 45%, #68111E 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  box-sizing: border-box;
  border-bottom: 1px solid rgba(197, 148, 43, 0.3);
}

.page-hero-banner-bg {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.page-hero-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

.page-hero-banner-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 850px;
  margin: 0 auto;
}

/* Line 1: Breadcrumb */
.page-banner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.05vw, 0.95rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-banner-breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-banner-breadcrumb a:hover {
  color: #C5942B;
}

.page-banner-breadcrumb i {
  font-size: 0.7rem;
  color: #C5942B;
}

.page-banner-breadcrumb .current-page {
  color: #FFFFFF;
  font-weight: 600;
}

/* Line 2: Large Page Name */
.page-banner-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 0.9rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-banner-main-title .text-wine-span {
  color: #F8B4BD;
}

.page-banner-main-title .text-gold-span {
  color: #C5942B;
}

/* Line 3: Small Tagline Below */
.page-banner-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: 0.3px;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .page-hero-banner-clean {
    min-height: 230px;
    padding: 2.25rem 1rem;
    aspect-ratio: auto;
  }

  .page-banner-breadcrumb {
    font-size: 0.78rem;
    padding: 5px 14px;
    margin-bottom: 0.85rem;
  }

  .page-banner-main-title {
    font-size: clamp(1.6rem, 6.5vw, 2.4rem);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 0.65rem;
  }

  .page-banner-tagline {
    font-size: 0.88rem;
    line-height: 1.45;
    padding: 0 0.5rem;
  }
}

/* ============================================================
   PAGE INDICATOR HEADER BANNER & BREADCRUMB SWITCHER
   ============================================================ */
.page-indicator-banner {
  width: 100%;
  background: linear-gradient(135deg, #0A1122 0%, #151020 50%, #2A0912 100%);
  position: relative;
  overflow: hidden;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(197, 148, 43, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-indicator-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  mix-blend-mode: luminosity;
  pointer-events: none;
}

.page-indicator-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1);
}

.page-indicator-flex {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.page-indicator-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.page-breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-breadcrumb-nav a:hover {
  color: #C5942B;
}

.page-breadcrumb-divider {
  font-size: 0.65rem;
  color: #C5942B;
}

.page-breadcrumb-current {
  color: #FFFFFF;
  font-weight: 600;
}

.page-indicator-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
}

.badge-dot-live {
  width: 9px;
  height: 9px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
  display: inline-block;
  flex-shrink: 0;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.page-indicator-title-text {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
}

.page-indicator-title-text i {
  color: #C5942B;
  font-size: 1.1rem;
}

.page-indicator-sub {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}

/* Page Switcher Pill Group */
.page-switcher-group {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 4px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.page-switch-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 7px 18px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.page-switch-pill i {
  font-size: 0.8rem;
}

.page-switch-pill:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.12);
}

.page-switch-pill.active {
  background: #7E1528;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(126, 21, 40, 0.4);
}

.page-switch-pill.active-gold {
  background: #C5942B;
  color: #FFFFFF;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(197, 148, 43, 0.4);
}

@media (max-width: 768px) {
  .page-indicator-banner {
    padding: 1.25rem 0;
  }
  .page-indicator-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .page-switcher-group {
    width: 100%;
    justify-content: space-between;
  }
  .page-switch-pill {
    flex: 1;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.78rem;
  }
}

/* ============================================================
   INVESTOR PAGE TOP SECTIONS & COMPARISON CARDS
   ============================================================ */

/* Stats Bar Section */
.inv-stats-section {
  width: 100%;
  background: #FFFFFF;
  padding: 3rem 1.5rem;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.inv-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.inv-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s var(--bezier-smooth);
}

.inv-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(226, 232, 240, 0.9);
}

.inv-stat-item:hover {
  transform: translateY(-3px);
}

.inv-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  font-weight: 700;
  color: #7E1528;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.inv-stat-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748B;
}

/* Vision Section */
.inv-vision-section {
  width: 100%;
  background: #F8F9FE;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.inv-vision-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.inv-vision-img-frame {
  position: relative;
  border-radius: clamp(65px, 5vw, 90px) clamp(65px, 5vw, 90px) clamp(30px, 2.5vw, 45px) clamp(65px, 5vw, 90px);
  overflow: hidden;
  aspect-ratio: 1 / 1.1;
  box-shadow: 0 30px 70px rgba(14, 23, 44, 0.12);
  width: 100%;
}

.inv-vision-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--bezier-smooth);
}

.inv-vision-img-frame:hover img {
  transform: scale(1.05);
}

/* Comparison Section */
.inv-diff-section {
  width: 100%;
  background: #FFFFFF;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.inv-diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.diff-card-traditional {
  background: #FAF5EF;
  border: 1px solid #EFE6DA;
  border-radius: 32px;
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card-traditional:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.07);
}

.diff-card-shishyakulam {
  background: #68111E;
  border-radius: 32px;
  padding: 2.75rem 2.25rem;
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(104, 17, 30, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card-shishyakulam:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(104, 17, 30, 0.35);
}

.diff-card-header {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.diff-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.diff-list-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #5C5248;
  line-height: 1.55;
}

.diff-list-item i {
  color: #DC2626;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.diff-list-item-wine {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
}

.diff-list-item-wine i {
  color: #C5942B;
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .inv-vision-inner, .inv-diff-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

@media (max-width: 768px) {
  .inv-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .inv-stat-item:not(:last-child)::after {
    display: none;
  }
  .inv-diff-section, .inv-vision-section {
    padding: 3.5rem 1rem !important;
  }
}

@media (max-width: 480px) {
  .inv-stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   INVESTOR PAGE SECTIONS 5, 6, 7 (PHILOSOPHY, MARKET & GAP)
   ============================================================ */

/* Philosophy Banner */
.inv-philosophy-banner {
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, rgba(160, 115, 25, 0.92) 0%, rgba(130, 90, 15, 0.95) 100%),
              url('assets/circuit_board_bg.jpg') center/cover no-repeat;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
  color: #FFFFFF;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.inv-phil-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4.5rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.inv-phil-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
}

.inv-phil-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.2vw, 3.8rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.inv-phil-desc {
  font-family: var(--font-body);
  font-size: 1.025rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  max-width: 540px;
  margin: 0;
}

.inv-phil-glass-card {
  background: rgba(50, 38, 10, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.inv-phil-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
}

.inv-phil-left-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
}

.inv-phil-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.1rem;
}

.inv-phil-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0.5rem 0;
}

.inv-phil-subtext {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  margin-top: 1.5rem;
  letter-spacing: 0.2px;
}

/* Market Section */
.inv-market-section {
  width: 100%;
  background: #F8F9FE;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.inv-market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.market-card {
  background: #FAF8F5;
  border: 1px solid #EFE8DD;
  border-radius: 32px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s var(--bezier-smooth), box-shadow 0.35s var(--bezier-smooth);
}

.market-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(14, 23, 44, 0.08);
}

.market-icon-badge {
  width: 52px;
  height: 52px;
  background: #FCE8EB;
  color: #7E1528;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.market-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  font-weight: 700;
  color: #7E1528;
  line-height: 1.1;
  margin-bottom: 0.6rem;
}

.market-stat-label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #64748B;
}

/* Gap Section */
.inv-gap-section {
  width: 100%;
  background: #FFFFFF;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.inv-gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

.gap-card-neutral {
  background: #FAF8F5;
  border: 1px solid #EFE8DD;
  border-radius: 32px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s var(--bezier-smooth), box-shadow 0.35s var(--bezier-smooth);
}

.gap-card-neutral:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(14, 23, 44, 0.08);
}

.gap-card-shishyakulam {
  background: #68111E;
  border-radius: 32px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(104, 17, 30, 0.25);
  transition: transform 0.35s var(--bezier-smooth), box-shadow 0.35s var(--bezier-smooth);
}

.gap-card-shishyakulam:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(104, 17, 30, 0.35);
}

.gap-icon-circle-gray {
  width: 52px;
  height: 52px;
  background: #EFE8DD;
  color: #64748B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1.5rem;
}

.gap-icon-circle-gold {
  width: 52px;
  height: 52px;
  background: rgba(197, 148, 43, 0.22);
  color: #C5942B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.gap-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #0E172C;
  margin-bottom: 1rem;
}

.gap-card-title-wine {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.gap-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #556477;
  line-height: 1.6;
  margin: 0;
}

.gap-card-desc-wine {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .inv-phil-inner, .inv-market-grid, .inv-gap-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ============================================================
   INVESTOR PAGE SECTIONS 9, 10, 11 (BUSINESS MODEL, TECH, OPS)
   ============================================================ */

/* Business Model Hierarchy Diagram */
.inv-biz-section {
  width: 100%;
  background: #FFFFFF;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.biz-diagram-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 3.5rem auto 0 auto;
  position: relative;
}

.biz-core-badge {
  background: #C5942B;
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 50px;
  box-shadow: 0 8px 22px rgba(197, 148, 43, 0.35);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.biz-line-connector {
  position: relative;
  width: 85%;
  height: 2px;
  background: #E5D5BC;
  margin-bottom: 2.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.biz-line-connector::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 2rem;
  background: #E5D5BC;
}

.biz-node-dot {
  width: 10px;
  height: 10px;
  background: #7E1528;
  border-radius: 50%;
  box-shadow: 0 0 0 4px #FFFFFF, 0 0 0 6px #7E1528;
}

.biz-streams-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.biz-stream-card {
  background: #FAF8F5;
  border: 1px solid #EFE8DD;
  border-radius: 20px;
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s var(--bezier-smooth), box-shadow 0.3s var(--bezier-smooth);
}

.biz-stream-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(14, 23, 44, 0.08);
}

.biz-stream-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0E172C;
  margin-bottom: 0.35rem;
}

.biz-stream-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.35;
}

/* Technology Interactive Mockup */
.inv-tech-section {
  width: 100%;
  background: #F8F9FE;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.inv-tech-mockup-frame {
  position: relative;
  width: 100%;
  max-width: 1020px;
  margin: 3.5rem auto 0 auto;
  border-radius: 40px;
  box-shadow: 0 35px 80px rgba(14, 23, 44, 0.15);
  background: #FFFFFF;
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, 0.9);
}

.inv-tech-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.inv-tech-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inv-tech-glass-card-left {
  position: absolute;
  top: 38%;
  left: -25px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1.15rem 1.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(14, 23, 44, 0.14);
  max-width: 310px;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  z-index: 10;
  transition: transform 0.3s ease;
}

.inv-tech-glass-card-left:hover {
  transform: translateY(-4px) scale(1.02);
}

.inv-tech-glass-card-right {
  position: absolute;
  bottom: 12%;
  right: -25px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 1.15rem 1.5rem;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(14, 23, 44, 0.14);
  max-width: 310px;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  z-index: 10;
  transition: transform 0.3s ease;
}

.inv-tech-glass-card-right:hover {
  transform: translateY(-4px) scale(1.02);
}

.inv-tech-glass-icon {
  width: 38px;
  height: 38px;
  background: #FCE8EB;
  color: #7E1528;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.inv-tech-glass-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0E172C;
  margin-bottom: 0.2rem;
}

.inv-tech-glass-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.4;
}

/* Operations Excellence Section */
.inv-ops-section {
  width: 100%;
  background: #FFFFFF;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.inv-ops-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 3.5rem auto 0 auto;
}

.ops-feature-list {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.ops-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.ops-icon-badge {
  width: 48px;
  height: 48px;
  background: #FCE8EB;
  color: #7E1528;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(126, 21, 40, 0.12);
}

.ops-feature-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #0E172C;
  margin-bottom: 0.35rem;
}

.ops-feature-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #556477;
  line-height: 1.6;
  margin: 0;
}

.ops-img-frame {
  position: relative;
  border-radius: clamp(65px, 5vw, 90px) clamp(65px, 5vw, 90px) clamp(30px, 2.5vw, 45px) clamp(65px, 5vw, 90px);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 30px 70px rgba(14, 23, 44, 0.12);
  width: 100%;
}

.ops-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--bezier-smooth);
}

.ops-img-frame:hover img {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .biz-streams-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .inv-ops-inner {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .inv-tech-glass-card-left, .inv-tech-glass-card-right {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .biz-streams-grid {
    grid-template-columns: 1fr;
  }
  .biz-line-connector {
    display: none;
  }
}

/* ============================================================
   INVESTOR PAGE SECTIONS 12, 13, 14, 15 (LEADERSHIP, GROWTH, IMPACT, WHY INVEST)
   ============================================================ */

/* Leadership Section */
.inv-leaders-section {
  width: 100%;
  background: #F8F9FE;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.inv-leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
  max-width: 1050px;
  margin: 3.5rem auto 0 auto;
}

.leader-card-exact {
  background: #FFFFFF;
  border-radius: 32px;
  padding: 3rem 2.25rem 2.25rem 2.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 12px 36px rgba(14, 23, 44, 0.05);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: transform 0.35s var(--bezier-smooth), box-shadow 0.35s var(--bezier-smooth);
}

.leader-card-exact:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(14, 23, 44, 0.1);
}

.leader-avatar-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(14, 23, 44, 0.12);
  border: 3px solid #FFFFFF;
}

.leader-avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.leader-name-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  color: #0E172C;
  margin-bottom: 0.25rem;
}

.leader-role-badge {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: #7E1528;
  margin-bottom: 1rem;
}

.leader-bio-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #556477;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.leader-stats-pill {
  width: 100%;
  background: #FAF5EF;
  border: 1px solid #EFE6DA;
  border-radius: 50px;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-around;
  box-sizing: border-box;
}

.leader-stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.leader-stat-val {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #7E1528;
}

.leader-stat-lbl {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #64748B;
}

/* Growth Plan Timeline Section */
.inv-growth-section {
  width: 100%;
  background: #FFFFFF;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.growth-roadmap-wrap {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 4rem auto 0 auto;
}

.growth-roadmap-line {
  position: absolute;
  top: 12px;
  left: 12.5%;
  width: 75%;
  height: 2px;
  background: #E5D5BC;
  z-index: 1;
}

.growth-roadmap-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.growth-milestone-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.growth-node-badge {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EFE8DD;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.growth-node-badge.active {
  background: #7E1528;
  box-shadow: 0 0 0 6px rgba(126, 21, 40, 0.2);
}

.growth-node-badge:hover {
  transform: scale(1.15);
}

.growth-year-lbl {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #7E1528;
  margin-bottom: 0.35rem;
}

.growth-subhead {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #0E172C;
  margin-bottom: 0.5rem;
}

.growth-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.5;
  max-width: 210px;
}

/* Impact Section */
.inv-impact-section {
  width: 100%;
  background: #F8F9FE;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.inv-impact-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4.5rem;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.impact-bullet-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.impact-bullet-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: #0E172C;
  font-weight: 500;
}

.impact-bullet-item i {
  color: #7E1528;
  font-size: 1.1rem;
  width: 24px;
}

/* Why Invest Now Section */
.inv-whyinvest-section {
  width: 100%;
  background: #FFFFFF;
  padding: 5.5rem 1.5rem;
  box-sizing: border-box;
}

.inv-whyinvest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 1140px;
  margin: 3.5rem auto 0 auto;
}

.whyinvest-card {
  background: #FAF8F5;
  border: 1px solid #EFE8DD;
  border-radius: 32px;
  padding: 2.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.35s var(--bezier-smooth), box-shadow 0.35s var(--bezier-smooth);
}

.whyinvest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(14, 23, 44, 0.08);
}

.whyinvest-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: #0E172C;
  margin-bottom: 0.85rem;
}

.whyinvest-card-desc {
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #556477;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 1024px) {
  .inv-leaders-grid, .inv-impact-inner, .inv-whyinvest-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .growth-roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  .growth-roadmap-line {
    display: none;
  }
}

/* ============================================================
   INVESTOR PAGE SECTIONS 16 & 17 (THE ASK & INVESTOR RESOURCES)
   ============================================================ */

/* Section 16: The Ask Card */
.inv-ask-section {
  width: 100%;
  background: #FFFFFF;
  padding: 4.5rem 1.5rem;
  box-sizing: border-box;
}

.inv-ask-card {
  background: linear-gradient(135deg, #D4A338 0%, #C5942B 60%, #B08020 100%);
  border-radius: 44px;
  padding: 4rem 3rem;
  color: #FFFFFF;
  text-align: center;
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  box-shadow: 0 25px 65px rgba(197, 148, 43, 0.35);
  box-sizing: border-box;
}

.inv-ask-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.65rem;
}

.inv-ask-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 3.8rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.inv-ask-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  max-width: 680px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

.inv-ask-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  width: 100%;
}

.inv-ask-metric-pill {
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-sizing: border-box;
}

.inv-ask-metric-lbl {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.35rem;
}

.inv-ask-metric-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Section 17: Investor Resources */
.inv-resources-section {
  width: 100%;
  background: #FFFFFF;
  padding: 4rem 1.5rem 6rem 1.5rem;
  box-sizing: border-box;
}

.inv-resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  width: 100%;
  max-width: 1100px;
  margin: 3rem auto 0 auto;
}

.inv-resource-card {
  background: #FFFFFF;
  border: 1.5px solid #F1E8DC;
  border-radius: 28px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  cursor: pointer;
  transition: transform 0.3s var(--bezier-smooth), box-shadow 0.3s var(--bezier-smooth), border-color 0.3s ease;
}

.inv-resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(14, 23, 44, 0.08);
  border-color: #C5942B;
}

.inv-resource-left {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.inv-resource-icon {
  width: 48px;
  height: 48px;
  background: #FCE8EB;
  color: #7E1528;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.inv-resource-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #0E172C;
  margin-bottom: 0.2rem;
}

.inv-resource-meta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #64748B;
}

.inv-resource-action {
  color: #64748B;
  font-size: 1.1rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.inv-resource-card:hover .inv-resource-action {
  color: #7E1528;
  transform: scale(1.15);
}

@media (max-width: 1024px) {
  .inv-ask-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .inv-resources-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .inv-ask-metrics-grid {
    grid-template-columns: 1fr;
  }
  .inv-ask-card {
    padding: 2.5rem 1.5rem;
  }
}

