/* ================= KITS CONNECT GLOBAL STYLES & THEMING ================= */
:root {
  --primary-color: #0F2A4A;       /* Deep Classic Navy Blue */
  --secondary-color: #C5A25D;     /* Warm Antique Gold */
  --secondary-light: #E2C88F;     /* Light Gold Accent */
  --logo-blue: #0E5AA7;           /* KITS Logo Royal Blue */
  --logo-red: #E31E24;            /* KITS Logo Vibrant Red */
  --text-dark: #1A2530;           /* Charcoal Ink */
  --text-muted: #5A6B7C;          /* Slate Grey */
  --bg-light: #F8F9FA;            /* Off-white */
  --bg-white: #FFFFFF;            /* White */
  --accent-green: #1E5A3C;        /* Emerald Success */
  --accent-blue: #1C4E80;         /* Royal Opportunity */
  --accent-red: #D32F2F;          /* Active Alert */
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', Helvetica, Arial, sans-serif;
  --font-display: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-subtle: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 10px 30px rgba(15, 42, 74, 0.08);
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  --header-height: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: auto;
  min-width: 1280px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

input, select, textarea, button {
  font-family: inherit;
  outline: none;
  border: none;
}

button {
  cursor: pointer;
  background: none;
}

/* Common Section Components */
.section-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary-color);
  margin-bottom: 12px;
  position: relative;
}

.section-badge::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--secondary-color);
  margin: 6px auto 0 auto;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--bg-white);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--bg-white);
  transform: translateY(-2px);
}

/* ================= 0. HEADER & NAVIGATION (COMPLETELY TRANSPARENT & SLEEK) ================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-bottom: none;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-container {
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-area .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-logo {
  height: 44px;
  width: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.accent-gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.header-search-container {
  flex-grow: 1;
  max-width: 500px;
  margin: 0 40px;
}

.header-search-bar {
  width: 100%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header-search-bar:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.header-search-bar i {
  color: rgba(255, 255, 255, 0.85);
  margin-right: 12px;
  font-size: 1rem;
}

.header-search-bar span {
  flex-grow: 1;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.header-search-bar kbd {
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.8rem;
  color: #ffffff;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.btn-login-dark {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  padding: 8px 14px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: all 0.2s ease;
}

.btn-login-dark:hover {
  color: #3b82f6;
}

.btn-cta-gradient {
  background: linear-gradient(90deg, #2563eb 0%, #a855f7 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
  transition: all 0.3s ease;
}

.btn-cta-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(168, 85, 247, 0.55);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Mobile Nav Drawer Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 42, 74, 0.98);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  justify-content: flex-end;
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-nav-content {
  width: 320px;
  height: 100%;
  background-color: var(--bg-white);
  padding: 40px 30px;
  position: relative;
  box-shadow: -10px 0 30px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
}

.close-mobile-menu {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 1.8rem;
  color: var(--primary-color);
}

.mobile-links {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-links a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  display: block;
}

.mobile-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-actions .btn-login {
  text-align: center;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-sm);
  padding: 12px;
}

.mobile-actions .btn-cta {
  text-align: center;
  padding: 12px;
}

/* ================= 1. HERO SLIDESHOW / TOP PACKAGES HERO ================= */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(8, 12, 22, 0.7) 0%, rgba(10, 14, 26, 0.5) 40%, rgba(8, 11, 20, 0.88) 100%), url('image.png') no-repeat center center / cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: var(--header-height);
  padding-bottom: 40px;
  overflow: hidden;
}

.hero-main-container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 32px 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-top-content {
  max-width: 650px;
  margin-top: 20px;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.badge-accent-line {
  width: 24px;
  height: 3px;
  background-color: #3b82f6;
  border-radius: 2px;
}

.hero-badge-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
}

.hero-main-title {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.gradient-text-pink {
  background: linear-gradient(135deg, #3b82f6 0%, #d946ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.hero-main-subtext {
  font-size: 1.15rem;
  color: #cbd5e1;
  line-height: 1.5;
  margin-bottom: 32px;
  font-weight: 400;
}

.btn-hero-gradient {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(90deg, #3b82f6 0%, #ec4899 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 14px 12px 28px;
  border-radius: 999px;
  box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-hero-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(236, 72, 153, 0.5);
}

.btn-hero-gradient .arrow-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #ffffff;
}

/* CAROUSEL / SLIDE CARDS SECTION (BELOW HERO IMAGE) */
.hero-packages-section {
  background-color: #080c16;
  padding: 50px 32px 60px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.packages-slide-container {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

.hero-cards-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero-nav-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  backdrop-filter: blur(8px);
}

.hero-nav-arrow:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.hero-carousel-viewport {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

.hero-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 260px;
  background: rgba(18, 24, 38, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.hero-card.active-google-card {
  border: 2px solid #3b82f6;
  background: linear-gradient(180deg, rgba(24, 32, 54, 0.88) 0%, rgba(16, 22, 38, 0.88) 100%);
  box-shadow: 0 0 30px rgba(59, 130, 246, 0.4), inset 0 0 20px rgba(59, 130, 246, 0.1);
}

.highest-ctc-pill {
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, #a855f7 0%, #d946ef 100%);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.4);
}

.hero-card-brand {
  margin-bottom: 12px;
  height: 36px;
  display: flex;
  align-items: center;
}

.hero-card-company {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.hero-card-salary {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.hero-card-salary .lpa {
  font-size: 0.95rem;
  font-weight: 700;
  color: #a855f7;
}

.hero-card-role {
  font-size: 0.85rem;
  color: #94a3b8;
  line-height: 1.35;
  margin-bottom: 20px;
  flex-grow: 1;
}

.hero-card-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.hero-tag-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.75rem;
  color: #cbd5e1;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hero Slideshow Navigation Dots */
.slide-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background-color: var(--secondary-color);
  width: 28px;
  border-radius: 5px;
}

/* Mouse Scroll Down Indicator */
.scroll-down {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
}

.scroll-down p {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-down .mouse {
  width: 22px;
  height: 38px;
  border: 2px solid var(--bg-white);
  border-radius: 20px;
  position: relative;
}

.scroll-down .wheel {
  width: 4px;
  height: 8px;
  background-color: var(--bg-white);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 18px; }
}

/* ================= 2. LIVE STATISTICS ================= */
.stats-section {
  background-color: var(--bg-light);
  border-bottom: 1px solid rgba(15, 42, 74, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}

.stat-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(15, 42, 74, 0.05);
  border-radius: var(--border-radius-md);
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary-color);
}

.stat-card.highlighted {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}

.stat-card.highlighted .stat-label {
  color: var(--secondary-color);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin-bottom: 14px;
}

.stat-card.highlighted .stat-icon {
  color: var(--secondary-light);
}

.stat-number, .stat-number-text {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 6px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.stat-card.highlighted .stat-number-text {
  color: var(--bg-white);
}

.stat-number::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-left: 2px;
}

.stat-number[data-target="98"]::after {
  content: "%";
}

.stat-number-text .suffix {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--secondary-light);
  margin-left: 4px;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* ================= 3. TOP PACKAGES OF THIS YEAR ================= */
.packages-section {
  background-color: var(--bg-white);
}

.packages-container {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.packages-side-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
}

.package-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(14, 90, 167, 0.08);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--secondary-color);
  transition: var(--transition-smooth);
  z-index: 5;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(227, 30, 36, 0.2);
}

.package-card:hover::before {
  height: 10px;
}

.google-card::before { background-color: #4285F4; }
.microsoft-card::before { background-color: #00A4EF; }
.amazon-card::before { background-color: #FF9900; }
.adobe-card::before { background-color: #FF0000; }
.uber-card::before { background-color: #000000; }

.company-logo-badge {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.google-card .company-logo-badge { color: #4285F4; }
.microsoft-card .company-logo-badge { color: #00A4EF; }
.amazon-card .company-logo-badge { color: #FF9900; }
.adobe-card .company-logo-badge { color: #FF0000; }
.uber-card .company-logo-badge { color: #000000; }

.company-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.salary-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
}

.salary-value .lpa {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-left: 4px;
}

.package-details {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.4;
}

.card-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 14px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
}

.card-footer .tag {
  color: var(--primary-color);
  background-color: rgba(14, 90, 167, 0.05);
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
}

.card-footer .year {
  color: var(--secondary-color);
}

/* Center Highlight Card Specific Styling */
.center-card {
  grid-column: 2;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 15px 40px rgba(227, 30, 36, 0.08);
  padding: 0;
  display: flex;
  flex-direction: column;
}

.center-card::before {
  height: 8px;
}

.highlight-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--secondary-color);
  color: var(--bg-white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 10;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(227, 30, 36, 0.3);
}

.student-placement-photo {
  height: 250px;
  background-size: cover;
  background-position: center top;
  position: relative;
  width: 100%;
}

.student-placement-photo::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(255, 255, 255, 1), transparent);
}

.center-card-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.center-card .company-logo-badge {
  font-size: 2rem;
  margin-bottom: 10px;
}

.center-card .salary-value {
  font-size: 2.8rem;
  margin-bottom: 8px;
}

.center-card .package-details {
  margin-bottom: 20px;
}

.placed-student-info {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--bg-light);
  padding: 12px 16px;
  border-radius: var(--border-radius-md);
  margin-bottom: 24px;
  border: 1px solid rgba(14, 90, 167, 0.05);
}

.student-avatar-mini {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--primary-color);
}

.student-name-meta h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.student-name-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ================= 4. HALL OF FAME ================= */
.hall-of-fame-section {
  background-color: var(--bg-light);
  overflow: hidden;
  position: relative;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: -20px;
  margin-bottom: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(15, 42, 74, 0.1);
  background-color: var(--bg-white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.slider-btn:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}

.fame-carousel-container {
  width: 100%;
  cursor: grab;
}

.fame-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fame-card {
  flex: 0 0 280px;
  background-color: var(--bg-white);
  border: 1px solid rgba(15, 42, 74, 0.05);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.fame-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary-light);
}

.fame-card-header {
  position: relative;
  height: 180px;
  background-color: #EEEEEE;
}

.student-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
}

.linkedin-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background-color: #0077B5;
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.linkedin-badge:hover {
  transform: scale(1.1);
}

.fame-card-body {
  padding: 24px;
  text-align: center;
}

.student-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.student-branch {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 16px;
}

.placement-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid rgba(0,0,0,0.04);
  padding-top: 14px;
}

.company-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
}

.package-tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-green);
  background-color: rgba(30, 90, 60, 0.08);
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
}

.icon-inline {
  margin-right: 4px;
}

/* ================= 5. EXPLORE BRANCH WISE ================= */
.branch-section {
  background-color: var(--bg-white);
}

.campus-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.campus-card {
  position: relative;
  height: 150px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.campus-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
}

.campus-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 42, 74, 0.9) 20%, rgba(15, 42, 74, 0.4));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: var(--bg-white);
}

.campus-card-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.campus-card-overlay p {
  font-size: 0.85rem;
  opacity: 0.8;
}

.campus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary-light);
}

.campus-card:hover .campus-card-img {
  transform: scale(1.05);
}

.campus-card.active {
  border-color: var(--secondary-color);
  box-shadow: 0 0 15px rgba(197, 162, 93, 0.3);
}

.campus-card.active .campus-card-overlay {
  background: linear-gradient(to top, rgba(197, 162, 93, 0.85) 10%, rgba(15, 42, 74, 0.5));
}

#campus-content-akshar .branch-nav-grid {
  grid-template-columns: repeat(5, 1fr);
}

.branch-nav-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}

.branch-nav-btn {
  background-color: var(--bg-light);
  border: 1px solid rgba(15, 42, 74, 0.05);
  border-radius: var(--border-radius-sm);
  padding: 16px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: var(--transition-smooth);
}

.branch-nav-btn .icon {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.branch-nav-btn .title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
}

.branch-nav-btn:hover {
  background-color: var(--bg-white);
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-subtle);
  transform: translateY(-2px);
}

.branch-nav-btn:hover .icon {
  color: var(--secondary-color);
}

.branch-nav-btn.active {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--bg-white);
}

.branch-nav-btn.active .icon {
  color: var(--secondary-color);
}

.branch-nav-btn.active .title {
  color: var(--bg-white);
}

.branch-panels-container {
  position: relative;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(15, 42, 74, 0.05);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.branch-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.branch-panel.active {
  display: block;
  opacity: 1;
}

.panel-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  min-height: 420px;
}

.panel-text {
  padding: 50px;
}

.panel-text h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.panel-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.5;
}

.panel-sub-tabs {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.sub-tab-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.sub-tab-btn:hover {
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.03);
}

.sub-tab-btn.active {
  color: var(--primary-color);
  background-color: rgba(197, 162, 93, 0.15);
}

.sub-panel-content {
  min-height: 100px;
}

.btn-branch-view-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--primary-color);
  transition: var(--transition-smooth);
  cursor: pointer;
  text-decoration: none;
}

.btn-branch-view-more:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-subtle);
}

.sub-panel {
  display: none;
  font-size: 0.95rem;
  line-height: 1.6;
  animation: fadeIn 0.4s ease-out forwards;
}

.sub-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-graphic {
  background-size: cover;
  background-position: center;
  position: relative;
}

.panel-graphic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-light), transparent);
}

/* ================= 6. RECRUITING COMPANIES ================= */
.recruiters-section {
  padding: 40px 0;
  background-color: var(--bg-white);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.ticker-header {
  text-align: center;
  margin-bottom: 24px;
}

.ticker-header h4 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-white), transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-white), transparent);
}

.logo-slide-track {
  display: flex;
  width: calc(240px * 20);
  animation: scrollMarquee 30s linear infinite;
}

.logo-slide-track:hover {
  animation-play-state: paused;
}

@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-240px * 10)); }
}

.slide-logo {
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--logo-blue);
  opacity: 0.6;
  transition: var(--transition-smooth);
}

.slide-logo:hover {
  opacity: 1;
  color: var(--logo-red);
}

.font-logo {
  font-size: 1.6rem;
}

.animate-adobe {
  color: #FF0000;
}

/* ================= 7. ALUMNI AROUND THE WORLD 🌍 ================= */
.world-map-section {
  background-color: var(--bg-white);
}

.map-interactive-wrapper {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid rgba(15, 42, 74, 0.05);
}

.svg-map-container {
  position: relative;
  width: 100%;
  background-color: var(--primary-color);
  border-radius: var(--border-radius-md);
  padding: 10px;
  box-shadow: var(--shadow-premium);
}

.world-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Custom interactive map pins styling */
.map-pin {
  cursor: pointer;
}

.pulse-ring {
  fill: var(--secondary-color);
  fill-opacity: 0;
  stroke: var(--secondary-color);
  stroke-width: 2px;
  animation: pulseBeacon 2s infinite ease-out;
  transform-origin: center;
}

@keyframes pulseBeacon {
  0% { r: 5px; opacity: 1; stroke-width: 2px; }
  100% { r: 25px; opacity: 0; stroke-width: 0.5px; }
}

.pin-point {
  fill: var(--secondary-color);
  stroke: var(--bg-white);
  stroke-width: 1.5px;
  transition: var(--transition-smooth);
}

.map-pin:hover .pin-point {
  fill: var(--bg-white);
  stroke: var(--secondary-color);
  r: 8px;
}

.pin-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  fill: rgba(255, 255, 255, 0.85);
  text-anchor: middle;
  pointer-events: none;
}

/* Details Card Panel */
.map-details-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(15, 42, 74, 0.08);
  box-shadow: var(--shadow-premium);
  min-height: 350px;
  display: flex;
  flex-direction: column;
}

.map-details-header {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 24px 30px;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.map-details-header h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
}

.alumni-count {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 4px 10px;
  border-radius: 20px;
}

.map-details-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.placeholder-text {
  color: var(--text-muted);
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Specific Alumni List items styling inside Map Details */
.map-alumni-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-alumni-item:last-child {
  border-bottom: none;
}

.map-alumni-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

.map-alumni-meta h5 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
}

.map-alumni-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================= 8. WALL OF PRIDE ⭐ ================= */
.wall-of-pride {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 20px 0;
  overflow: hidden;
  border-top: 2px solid var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}

.pride-header {
  text-align: center;
  margin-bottom: 12px;
}

.pride-header h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--secondary-color);
}

.pride-scroll-container {
  width: 100%;
  overflow: hidden;
}

.pride-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 20px;
  width: max-content;
  animation: scrollPride 25s linear infinite;
}

@keyframes scrollPride {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.pride-item {
  font-size: 0.95rem;
  font-weight: 500;
}

.divider {
  color: var(--secondary-color);
  opacity: 0.5;
}

/* ================= 9. ALUMNI SUCCESS STORIES ================= */
.success-stories-section {
  background-color: var(--bg-white);
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.story-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(15, 42, 74, 0.05);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
}

.story-card-graphic {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.story-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.story-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.story-card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 16px;
  line-height: 1.3;
}

.story-card-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  font-style: italic;
}

.story-author {
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
}

.story-author strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-color);
}

.story-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ================= 10. DREAM COMPANIES & PLACEMENT NETWORK ================= */
.dream-companies-section {
  background-color: var(--bg-light);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.dream-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.dream-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(15, 42, 74, 0.05);
  border-radius: var(--border-radius-md);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
}

.dream-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary-color);
}

.dream-logo {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.dream-card:hover .dream-logo {
  color: var(--secondary-color);
}

.dream-card h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary-color);
}

.dream-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.dream-link {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.dream-card:hover .dream-link {
  color: var(--secondary-color);
}

/* ================= 11. JOBS & OPPORTUNITIES ================= */
.opp-section {
  background-color: var(--bg-white);
}

.opp-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: var(--bg-light);
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(15, 42, 74, 0.05);
  transition: var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--secondary-color);
  background-color: var(--bg-white);
}

.filter-btn.active {
  background-color: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
}

.opp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.opp-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(15, 42, 74, 0.06);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.opp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary-color);
}

.opp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.opp-badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--border-radius-sm);
}

.opp-badge.job {
  background-color: rgba(28, 78, 128, 0.1);
  color: var(--accent-blue);
}

.opp-badge.internship {
  background-color: rgba(30, 90, 60, 0.1);
  color: var(--accent-green);
}

.opp-badge.hackathon {
  background-color: rgba(197, 162, 93, 0.15);
  color: var(--secondary-color);
}

.opp-badge.studies {
  background-color: rgba(15, 42, 74, 0.08);
  color: var(--primary-color);
}

.post-time {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.opp-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 6px;
}

.opp-company {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 14px;
}

.opp-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 24px;
  flex-grow: 1;
}

.opp-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.opp-author {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
}

.btn-opp {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bg-white);
  background-color: var(--primary-color);
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.btn-opp:hover {
  background-color: var(--secondary-color);
}

/* ================= 12. MENTORS ================= */
.mentors-section {
  background-color: var(--bg-light);
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.mentor-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(15, 42, 74, 0.05);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.mentor-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary-color);
}

.mentor-header {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.mentor-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  border: 2px solid var(--secondary-color);
}

.mentor-meta h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
}

.mentor-job {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary-color);
}

.mentor-exp {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.mentor-body {
  flex-grow: 1;
}

.mentor-bio {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 16px;
}

.mentor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}

.mentor-tags span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-color);
  background-color: rgba(15, 42, 74, 0.05);
  padding: 4px 8px;
  border-radius: var(--border-radius-sm);
}

.btn-mentor-book {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 10px;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
}

.btn-mentor-book:hover {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

/* ================= 13. KITS GALLERY ================= */
.gallery-section {
  background-color: var(--bg-white);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.gallery-filter-btn {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 16px;
  border-radius: 4px;
  transition: var(--transition-smooth);
}

.gallery-filter-btn:hover {
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.03);
}

.gallery-filter-btn.active {
  color: var(--primary-color);
  font-weight: 700;
  background-color: rgba(197, 162, 93, 0.18);
}

/* Masonry Grid */
.masonry-gallery {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-subtle);
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 42, 74, 0.9), transparent 80%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition-smooth);
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  pointer-events: auto;
}

.gallery-overlay h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 4px;
}

.gallery-overlay span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-color);
}

/* ================= 14. UPCOMING EVENTS ================= */
.events-section {
  background-color: var(--bg-light);
}

.events-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.events-timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background-color: rgba(15, 42, 74, 0.1);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
  box-sizing: border-box;
}

/* Circle design on timeline center line */
.timeline-item::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  right: -8px;
  background-color: var(--bg-white);
  border: 4px solid var(--secondary-color);
  top: 25px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -8px;
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.timeline-content {
  padding: 24px;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(15, 42, 74, 0.03);
}

.timeline-item:hover .timeline-content {
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary-light);
}

.event-type {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 6px;
  border-radius: var(--border-radius-sm);
  margin-bottom: 10px;
}

.event-type.type-meet { background-color: rgba(197, 162, 93, 0.15); color: var(--secondary-color); }
.event-type.type-hack { background-color: rgba(30, 90, 60, 0.1); color: var(--accent-green); }
.event-type.type-web { background-color: rgba(28, 78, 128, 0.1); color: var(--accent-blue); }
.event-type.type-drive { background-color: rgba(15, 42, 74, 0.08); color: var(--primary-color); }

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 18px;
}

.btn-rsvp {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-block;
}

.btn-rsvp:hover {
  color: var(--secondary-color);
}

/* ================= 15. STUDENT TESTIMONIALS ================= */
.testimonials-section {
  background-color: var(--bg-white);
}

.testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 0 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
  text-align: center;
}

.testimonial-slide.active {
  opacity: 1;
}

.quote-symbol {
  font-size: 3rem;
  color: var(--secondary-light);
  opacity: 0.3;
  margin-bottom: 10px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--primary-color);
  font-style: italic;
  margin-bottom: 30px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary-color);
}

.author-meta {
  text-align: left;
}

.author-meta h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.author-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.tdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(15, 42, 74, 0.15);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.tdot.active {
  background-color: var(--secondary-color);
  transform: scale(1.2);
}

/* ================= 16. INTERACTIVE CAMPUS MAP ================= */
.campus-map-section {
  background-color: var(--bg-white);
}

.campus-map-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: stretch;
  background-color: var(--bg-light);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  border: 1px solid rgba(15, 42, 74, 0.05);
}

.campus-vector-container {
  background-color: var(--primary-color);
  border-radius: var(--border-radius-md);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-premium);
}

.campus-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Campus buildings hover shapes styling */
.campus-block {
  cursor: pointer;
}

.block-shape {
  fill: var(--bg-white);
  fill-opacity: 0.1;
  stroke: var(--secondary-color);
  stroke-width: 1.5px;
  transition: var(--transition-smooth);
}

.campus-block:hover .block-shape,
.campus-block.active .block-shape {
  fill: var(--secondary-color);
  fill-opacity: 0.25;
  stroke: var(--bg-white);
  stroke-width: 2px;
}

.block-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  fill: var(--bg-white);
  text-anchor: middle;
  pointer-events: none;
}

/* Detail Card Panel */
.campus-detail-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(15, 42, 74, 0.08);
  box-shadow: var(--shadow-premium);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.detail-img-box {
  height: 200px;
  background-size: cover;
  background-position: center;
  transition: var(--transition-smooth);
}

.detail-content-box {
  padding: 30px;
}

.detail-content-box h4 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.detail-content-box p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ================= 17. LATEST NEWS ================= */
.news-section {
  background-color: var(--bg-light);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(15, 42, 74, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary-light);
}

.news-image {
  height: 200px;
  background-size: cover;
  background-position: center;
}

.news-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.news-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 10px;
}

.news-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.4;
  height: 50px;
  overflow: hidden;
}

.news-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.read-more:hover {
  color: var(--secondary-color);
}

/* ================= 18. PARALLAX QUOTE BANNER ================= */
.quote-banner {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1541339907198-e08756dedf3f?q=80&w=1600');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 380px;
}

.quote-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 37, 69, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.quote-content-wrapper {
  max-width: 800px;
}

.quote-large-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  opacity: 0.6;
}

.quote-banner h2 {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--bg-white);
  margin-bottom: 16px;
  font-weight: 700;
}

.quote-banner p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--secondary-light);
  font-weight: 500;
}

/* ================= 19. JOIN KITS CONNECT ================= */
/* ================= 19. CONTACT / CONNECT SECTION ================= */
.contact-connect-section {
  background: #f7f8fc;
  padding: 80px 0 0 0;
}

.contact-connect-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* --- LEFT PANEL --- */
.contact-left-panel {
  position: relative;
  padding-top: 16px;
}

.contact-badge-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #c5a25d;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-heading-accent {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.contact-subtext {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 36px;
}

/* Floating decorative elements */
.contact-floating-dots {
  position: absolute;
  top: 0;
  right: 80px;
  display: flex;
  gap: 6px;
  font-size: 0.9rem;
  color: #7c3aed;
  opacity: 0.7;
  animation: floatBob 3s ease-in-out infinite;
}

.contact-floating-envelope {
  position: absolute;
  top: 80px;
  right: 40px;
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #c5a25d;
  animation: floatBob 4s ease-in-out infinite reverse;
}

.contact-floating-plane {
  position: absolute;
  top: 160px;
  right: 120px;
  font-size: 2rem;
  color: #7c3aed;
  opacity: 0.6;
  transform: rotate(-30deg);
  animation: floatBob 5s ease-in-out infinite;
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Campus building image */
.contact-campus-img-wrap {
  width: 200px;
  height: 150px;
  border-radius: 20px 50% 20px 20px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.contact-campus-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.contact-campus-img-wrap:hover .contact-campus-img {
  transform: scale(1.06);
}

/* Contact info cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-card {
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  cursor: pointer;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  border: 1px solid #f0f0f0;
}

.contact-info-card:hover {
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.12);
  transform: translateX(4px);
}

.cic-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.cic-icon.purple { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
.cic-icon.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.cic-icon.green  { background: rgba(16, 185, 129, 0.1); color: #10b981; }

.cic-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cic-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #111827;
}

.cic-value {
  font-size: 0.82rem;
  color: #6b7280;
}

.cic-arrow {
  font-size: 0.8rem;
  color: #9ca3af;
  transition: color 0.2s, transform 0.2s;
}

.contact-info-card:hover .cic-arrow {
  color: #7c3aed;
  transform: translateX(3px);
}

/* --- RIGHT PANEL --- */
.contact-right-panel {
  position: sticky;
  top: 100px;
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border: 1px solid #f0f0f0;
}

.contact-form-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 2px solid #f5f5f5;
}

.cfh-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(168,85,247,0.12));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #7c3aed;
  flex-shrink: 0;
}

.contact-form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.contact-form-header p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}

/* Form fields */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cf-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cf-field {
  position: relative;
  display: flex;
  align-items: center;
}

.cf-field-icon {
  position: absolute;
  left: 16px;
  color: #9ca3af;
  font-size: 0.85rem;
  z-index: 1;
  pointer-events: none;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 14px 16px 14px 42px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 0.9rem;
  color: #111827;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--font-display);
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.08);
  background: #fff;
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: #9ca3af;
}

.cf-select-wrap {
  position: relative;
}

.cf-select-wrap select {
  appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.cf-select-arrow {
  position: absolute;
  right: 16px;
  color: #9ca3af;
  font-size: 0.8rem;
  pointer-events: none;
}

.cf-textarea-wrap {
  align-items: flex-start;
}

.cf-ta-icon {
  top: 16px !important;
  bottom: auto;
  align-self: flex-start;
  margin-top: 4px;
}

.cf-textarea-wrap textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 14px;
}

.btn-send-message {
  width: 100%;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: var(--font-display);
  cursor: pointer;
  border: none;
  margin-top: 4px;
}

.btn-send-message:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(124, 58, 237, 0.45);
}

/* --- BOTTOM TRUST BAR --- */
.contact-trust-bar {
  background: #fff;
  border-top: 1px solid #f0f0f0;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 100%;
}

.ctb-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ctb-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ctb-icon.purple { background: rgba(124, 58, 237, 0.1); color: #7c3aed; }
.ctb-icon.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.ctb-icon.green  { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.ctb-icon.pink   { background: rgba(244, 63, 94, 0.1);  color: #f43f5e; }

.ctb-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ctb-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.ctb-text span {
  font-size: 0.82rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-connect-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    gap: 40px;
  }

  .contact-right-panel {
    position: static;
  }

  .contact-trust-bar {
    grid-template-columns: 1fr 1fr;
    padding: 32px 24px;
  }

  .cf-row-2 {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    font-size: 2.2rem;
  }
}

@media (max-width: 500px) {
  .contact-trust-bar {
    grid-template-columns: 1fr;
  }
}



/* ================= 20. FOOTER ================= */
.site-footer {
  background-color: #121212;      /* Pure Matte Black */
  color: #CCCCCC;                 /* Clean Light Grey words */
  border-top: 1px solid #222222;
}

.footer-top {
  border-bottom: 1px solid #222222;
}

.footer-top .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFFFFF;                 /* White Title */
  margin-bottom: 24px;
  position: relative;
}

.brand-col .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #FFFFFF;                 /* White logo text */
  margin-bottom: 20px;
}

.footer-site-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.brand-col .logo-text {
  color: #FFFFFF;
}

.brand-col .logo-text .accent-text {
  color: var(--logo-red);
}

.brand-bio {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #AAAAAA;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #222222;
  border: 1px solid #333333;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.social-links a:hover {
  background-color: #FFFFFF;
  color: #121212;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.links-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links-col a {
  font-size: 0.85rem;
  color: #AAAAAA;                 /* Muted link color */
}

.links-col a:hover {
  color: #FFFFFF;                 /* Hover to white */
  padding-left: 4px;
}

.contact-col .contact-info {
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  line-height: 1.4;
  color: #AAAAAA;
}

.contact-info i {
  color: #FFFFFF;                 /* White icon */
  margin-top: 3px;
  font-size: 0.95rem;
}

.newsletter-box {
  margin-top: 30px;
}

.newsletter-box h5 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #FFFFFF;                 /* White */
}

.newsletter-form {
  display: flex;
  background-color: #1A1A1A;
  border: 1px solid #333333;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.newsletter-form input {
  flex-grow: 1;
  background: transparent;
  color: #FFFFFF;
  padding: 10px 14px;
  font-size: 0.85rem;
}

.newsletter-form input::placeholder {
  color: #666666;
}

.newsletter-form button {
  background-color: #FFFFFF;      /* White button */
  color: #121212;                 /* Black text */
  padding: 0 16px;
  font-size: 0.9rem;
  font-weight: 700;
}

.newsletter-form button:hover {
  background-color: #E0E0E0;
}

#newsletter-feedback {
  margin-top: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.footer-bottom {
  background-color: #0A0A0A;      /* Darker black for copyright */
  padding: 24px 0;
  font-size: 0.8rem;
  color: #888888;
}

.footer-bottom .footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.policy-links {
  display: flex;
  gap: 20px;
}

.policy-links a {
  color: #888888;
}

/* ================= 12.5 RECENT ALUMNI GALLERY ================= */
.recent-alumni-gallery-section {
  background-color: var(--bg-light);
  border-top: 1px solid rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  padding: 80px 0;
}

.alumni-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.alumni-gallery-card {
  background-color: var(--bg-white);
  border: 1px solid rgba(14, 90, 167, 0.05);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.alumni-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-premium);
  border-color: var(--secondary-color);
}

.alumni-gallery-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.alumni-gallery-info {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.alumni-gallery-date {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.alumni-gallery-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.alumni-gallery-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ================= RESPONSIVE LAYOUT MEDIA QUERIES ================= */

/* Medium Desktops & Tablets Landscape */
@media screen and (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .packages-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .center-card {
    grid-column: 1;
    order: -1;
  }
  .packages-side-column {
    gap: 30px;
  }
  .branch-nav-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .map-interactive-wrapper {
    grid-template-columns: 1fr;
  }
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .dream-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .opp-grid {
    grid-template-columns: 1fr;
  }
  .mentors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .masonry-gallery {
    column-count: 2;
  }
  .campus-map-wrapper {
    grid-template-columns: 1fr;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .alumni-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .btn-login {
    display: none;
  }
  .hero-title {
    font-size: 2.4rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .hero-buttons a {
    width: 100%;
    justify-content: center;
  }
  .scroll-down {
    display: none;
  }
  .section-title {
    font-size: 2rem;
  }
  .panel-layout {
    grid-template-columns: 1fr;
  }
  .panel-graphic {
    height: 250px;
    order: -1;
  }
  .panel-graphic::before {
    background: linear-gradient(to top, var(--bg-light), transparent);
  }
  .panel-text {
    padding: 30px 20px;
  }
  .branch-nav-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .campus-selector {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .events-timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
  }
  .timeline-item.right {
    left: 0;
  }
  .timeline-item::after {
    left: 22px;
    right: auto;
  }
  .timeline-item.right::after {
    left: 22px;
  }
  .stories-grid, .news-grid, .mentors-grid {
    grid-template-columns: 1fr;
  }
  .join-card {
    padding: 30px;
  }
  .form-group-row {
    flex-direction: column;
    gap: 16px;
  }
  .footer-bottom .footer-container {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .alumni-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile Phones */
@media screen and (max-width: 480px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-container, .dream-grid {
    grid-template-columns: 1fr;
  }
  .branch-nav-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .branch-nav-btn {
    padding: 10px;
  }
  .masonry-gallery {
    column-count: 1;
  }
  .footer-top .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ================= HEADER SEARCH BAR & MODAL ================= */
.header-search-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  max-width: 400px;
  margin: 0 20px;
}

.header-search-bar {
  background-color: var(--bg-light);
  border: 1px solid rgba(15, 42, 74, 0.08);
  border-radius: 20px;
  padding: 8px 16px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  transition: var(--transition-smooth);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
}

.header-search-bar i {
  font-size: 0.85rem;
  color: var(--primary-color);
}

.header-search-bar kbd {
  background-color: rgba(15, 42, 74, 0.08);
  color: var(--primary-color);
  font-family: inherit;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: auto;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.header-search-bar:hover {
  background-color: var(--bg-white);
  border-color: var(--secondary-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-subtle);
}

/* Search Modal Overlay */
.search-modal-overlay {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 42, 74, 0.6);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-modal-overlay.active {
  display: flex;
  opacity: 1;
}

.search-modal-box {
  background-color: var(--bg-white);
  width: 90%;
  max-width: 500px;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(14, 90, 167, 0.1);
  box-shadow: 0 15px 40px rgba(15, 42, 74, 0.3);
  overflow: hidden;
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal-overlay.active .search-modal-box {
  transform: translateY(0);
}

.search-modal-header {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid var(--secondary-color);
}

.search-modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-modal-header h3 i {
  color: var(--secondary-color);
}

.close-search-modal {
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-smooth);
}

.close-search-modal:hover {
  color: var(--secondary-color);
}

.search-modal-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.search-step {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.step-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

.search-campus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.search-campus-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--bg-light);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--border-radius-md);
  padding: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--text-dark);
}

.search-campus-option i {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.search-campus-option span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.search-campus-option:hover {
  border-color: var(--secondary-color);
  background-color: var(--bg-white);
  transform: translateY(-2px);
}

.search-campus-option.active {
  background-color: rgba(197, 162, 93, 0.08);
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(197, 162, 93, 0.2);
}

.search-campus-option.active i {
  color: var(--secondary-color);
}

.search-select-input {
  width: 100%;
  background-color: var(--bg-light);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--border-radius-sm);
  padding: 12px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.search-select-input:focus {
  outline: none;
  border-color: var(--secondary-color);
  background-color: var(--bg-white);
  box-shadow: 0 0 10px rgba(197, 162, 93, 0.15);
}

.search-modal-footer {
  padding: 16px 24px;
  background-color: var(--bg-light);
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: flex-end;
}

.btn-search-locate {
  background-color: var(--primary-color);
  color: var(--bg-white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--primary-color);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
}

.btn-search-locate:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* Mobile search responsive rule */
@media screen and (max-width: 768px) {
  .header-search-container {
    max-width: 44px;
    margin: 0 10px;
  }
  .header-search-bar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
  .header-search-bar span,
  .header-search-bar kbd {
    display: none;
  }
}

/* ================= REDESIGNED HALL OF FAME & LIVE METRICS BAR ================= */
.hall-of-fame-redesigned-section {
  background-color: #060913;
  padding: 80px 32px 0 32px;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.section-container-wide {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.fame-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.fame-header-text {
  max-width: 700px;
}

.fame-badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fbbf24;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.fame-badge-gold .wheat-icon {
  font-size: 1rem;
}

.fame-main-title {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.purple-gradient-text {
  background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.fame-subtext {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.5;
  font-weight: 400;
}

.fame-nav-arrows {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fame-carousel-viewport {
  overflow: hidden;
  padding: 15px 0 25px 0;
}

.fame-carousel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.fame-student-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 250px;
  background: rgba(15, 20, 34, 0.8);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fame-student-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
}

.fame-student-card.highlighted-highest {
  border: 2px solid #a855f7;
  box-shadow: 0 0 30px rgba(168, 85, 247, 0.35), inset 0 0 20px rgba(168, 85, 247, 0.1);
}

.highest-pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(245, 158, 11, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid #f59e0b;
  color: #fbbf24;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.student-card-image-wrap {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center top;
  position: relative;
}

.card-social-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card-social-badge.linkedin {
  background: #0077b5;
}

.card-social-badge.adobe {
  background: #ff0000;
}

.student-card-details {
  padding: 20px 18px;
  background: rgba(12, 16, 28, 0.95);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.student-card-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.student-card-branch {
  font-size: 0.82rem;
  color: #94a3b8;
  margin-bottom: 16px;
  font-weight: 500;
}

.student-company-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.company-brand-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.lpa-green-tag {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 8px;
}

.student-card-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: #94a3b8;
}

.student-card-footer .dot-separator {
  color: #475569;
}

.student-card-footer .arrow-mini {
  margin-left: auto;
  font-size: 0.75rem;
  color: #475569;
  transition: transform 0.2s ease;
}

.fame-student-card:hover .arrow-mini {
  transform: translateX(3px);
  color: #3b82f6;
}

/* Fame Bottom Controls */
.fame-bottom-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 24px;
  margin-bottom: 50px;
}

.fame-dots-indicator {
  display: flex;
  gap: 8px;
  align-items: center;
}

.fdot {
  width: 28px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.fdot.active {
  background: linear-gradient(90deg, #a855f7 0%, #3b82f6 100%);
  width: 44px;
}

.btn-view-all-achievers {
  position: absolute;
  right: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 10px 22px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.btn-view-all-achievers:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* LIVE METRICS BAR (BELOW HALL OF FAME) */
.live-metrics-bar {
  background: rgba(13, 18, 32, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}

.metric-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.metric-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.metric-icon-circle.purple {
  background: rgba(168, 85, 247, 0.15);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.metric-icon-circle.gold {
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

.metric-icon-circle.blue {
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
}

.metric-icon-circle.green {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

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

.metric-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 4px;
  display: flex;
  align-items: baseline;
}

.metric-value .lpa-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fbbf24;
  margin-left: 4px;
}

.metric-label {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.25;
  font-weight: 500;
}

/* ================= REDESIGNED DREAM COMPANIES SECTION ================= */
.dream-companies-redesigned-section {
  background-color: #f8fafc;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
  color: #0f172a;
}

.dream-header-widget-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 30px;
  flex-wrap: wrap;
}

.dream-headline-group {
  max-width: 550px;
}

.dream-badge-purple {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #7c3aed;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.dream-section-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.dream-purple-gradient {
  background: linear-gradient(135deg, #4f46e5 0%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.dream-section-subtitle {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
}

/* Dream Stats Box (Right Side Widget) */
.dream-stats-box {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f5f9;
}

.dream-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.stat-icon-circle.yellow {
  background: #fef3c7;
  color: #d97706;
}

.stat-icon-circle.blue {
  background: #dbeafe;
  color: #2563eb;
}

.stat-icon-circle.green {
  background: #dcfce7;
  color: #16a34a;
}

.stat-icon-circle.purple {
  background: #f3e8ff;
  color: #9333ea;
}

.stat-text h4 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.stat-text p {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

/* Filter Nav Row */
.dream-filter-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 20px;
}

.dream-tabs-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.dream-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 18px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.dream-tab-pill:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.dream-tab-pill.active {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

.dream-nav-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dream-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.dream-arrow-btn.active,
.dream-arrow-btn:hover {
  background: #6366f1;
  color: #ffffff;
  border-color: #6366f1;
}

/* 4 Columns Dream Cards Grid */
.dream-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.dream-company-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 190px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  position: relative;
}

.dream-company-card:hover {
  transform: translateY(-5px);
  border-color: #cbd5e1;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

.dream-company-card.highlighted-active {
  border: 2px solid #8b5cf6;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
}

.company-logo-header {
  margin-bottom: 20px;
}

.brand-logo-img {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
}

.tcs-text {
  color: #e11d48;
  font-weight: 900;
  letter-spacing: -1px;
}

.infosys-text {
  color: #0284c7;
  font-weight: 700;
}

.accenture-text {
  color: #0f172a;
  font-weight: 900;
}

.accenture-text .gt-symbol {
  color: #a855f7;
  margin-left: 2px;
}

.cognizant-logo .icon-teal {
  color: #0284c7;
}

.cognizant-text {
  color: #0f172a;
  font-weight: 800;
}

.hcl-text {
  color: #1d4ed8;
  font-weight: 900;
}

.wipro-logo .icon-multi {
  color: #0284c7;
}

.wipro-text {
  color: #0f172a;
  font-weight: 800;
}

.capgemini-text {
  color: #0284c7;
  font-weight: 800;
}

.capgemini-text .icon-spade {
  color: #0284c7;
  font-size: 1rem;
}

.tm-red {
  color: #e11d48;
  font-weight: 900;
}

.tm-gray {
  color: #64748b;
  font-weight: 600;
}

.company-full-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
}

.company-metrics-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.metric-block h5 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.metric-block p {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 600;
  margin-top: 2px;
}

.card-action-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #6366f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.card-action-arrow.active,
.dream-company-card:hover .card-action-arrow {
  background: #6366f1;
  color: #ffffff;
  border-color: #6366f1;
}

/* Bottom Banner CTA */
.dream-bottom-cta-banner {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.cta-banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.star-badge-square {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #8b5cf6;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cta-banner-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}

.cta-banner-text p {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.btn-explore-all-companies {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #c084fc;
  color: #7c3aed;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-explore-all-companies:hover {
  background: #7c3aed;
  color: #ffffff;
  border-color: #7c3aed;
  transform: translateY(-2px);
}

.company-svg-logo {
  height: 34px;
  max-width: 150px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
}

.company-sub-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  margin-top: 4px;
}

/* ================= REDESIGNED BENTO ALUMNI GALLERY SECTION ================= */
.alumni-gallery-redesigned-section {
  background-color: #ffffff;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
  color: #0f172a;
}

.gallery-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 30px;
  flex-wrap: wrap;
}

.gallery-header-left {
  max-width: 550px;
}

.gallery-badge-purple {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #7c3aed;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gallery-main-title {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}

.gallery-subtext {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
}

/* Gallery Right Quote Bubble & Timeline Button */
.gallery-header-right {
  display: flex;
  align-items: center;
  gap: 28px;
}

.quote-speech-bubble {
  position: relative;
  background: #ffffff;
  border: 1px dashed #c084fc;
  border-radius: 999px;
  padding: 14px 28px;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.05);
}

.handwritten-quote {
  font-family: 'Caveat', 'Brush Script MT', cursive, var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #6366f1;
  line-height: 1.25;
  text-align: center;
  font-style: italic;
}

.quote-speech-bubble .sparkle {
  position: absolute;
  font-size: 0.9rem;
}

.quote-speech-bubble .sparkle.top-left {
  top: -8px;
  left: 12px;
}

.quote-speech-bubble .sparkle.bottom-right {
  bottom: -8px;
  right: 12px;
}

.btn-view-timeline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #c084fc;
  color: #7c3aed;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.06);
  transition: all 0.25s ease;
}

.btn-view-timeline:hover {
  background: #7c3aed;
  color: #ffffff;
  border-color: #7c3aed;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.2);
}

/* Gallery Filter Tabs */
.gallery-filter-tabs-row {
  margin-bottom: 32px;
}

.gallery-tabs-scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.gallery-tab-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 20px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.gallery-tab-pill:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.gallery-tab-pill.active {
  background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
}

/* BENTO GALLERY GRID LAYOUT (4 Columns precisely proportioned) */
.bento-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
  gap: 16px;
  height: 520px;
  margin-bottom: 40px;
}

.bento-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.35s ease;
}

.bento-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

.bento-bg-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.bento-card:hover .bento-bg-img {
  transform: scale(1.06);
}

.expand-icon-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  z-index: 5;
  transition: all 0.25s ease;
}

.bento-card:hover .expand-icon-btn {
  background: #ffffff;
  transform: scale(1.1);
  color: #6366f1;
}

.bento-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 16px 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.88) 100%);
  color: #ffffff;
  z-index: 4;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
  line-height: 1.25;
}

.bento-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: #cbd5e1;
  font-weight: 500;
}

.bento-photo-count {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #94a3b8;
}

/* Bento Column 1 (Left Tall Card) */
.card-tall-left {
  height: 100%;
}

/* Bento Column 2 (3 Stacked Cards) */
.bento-col-middle-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.bento-col-middle-left .bento-card {
  flex: 1;
}

/* Bento Column 3 (Tall Middle + Short Convocation) */
.bento-col-middle-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.card-tall-middle {
  flex: 2;
}

.card-short-convocation {
  flex: 1;
}

/* Bento Column 4 (2 Wide Stacked Cards Right) */
.bento-col-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.card-wide-top {
  flex: 1;
}

.card-wide-bottom {
  flex: 1;
}

/* Bottom Stats Bar Widget */
.gallery-bottom-stats-bar {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #f1f5f9;
  padding: 22px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.gallery-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.gallery-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.gallery-icon-box.purple {
  background: #f3e8ff;
  color: #9333ea;
}

.gallery-icon-box.blue {
  background: #dbeafe;
  color: #2563eb;
}

.gallery-icon-box.gold {
  background: #fef3c7;
  color: #d97706;
}

.gallery-stat-info h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.gallery-stat-info p {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 2px;
}

/* ================= KITS GUNTUR CAMPUS GALLERY SLIDESHOW ================= */
.clg-gallery-slideshow-section {
  background-color: #f8fafc;
  padding: 80px 32px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #f1f5f9;
}

.clg-gallery-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 24px;
}

.clg-badge-purple {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #7c3aed;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.clg-gallery-main-title {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.clg-gallery-subtext {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.5;
  font-weight: 500;
  max-width: 650px;
}

.clg-gallery-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clg-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.clg-nav-btn:hover {
  background: #6366f1;
  color: #ffffff;
  border-color: #6366f1;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
}

.clg-autoplay-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid #c084fc;
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.clg-autoplay-btn:hover {
  background: #7c3aed;
  color: #ffffff;
}

/* Slideshow Viewport */
.clg-slideshow-viewport {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 24px;
}

.clg-slideshow-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.clg-slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%) scale(0.96);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, visibility 0.5s;
  z-index: 1;
}

.clg-slide-item.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.clg-slide-item.prev-slide {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%) scale(0.96);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s ease, visibility 0.5s;
  z-index: 1;
}

.slide-image-wrapper {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.6s ease;
}

.clg-slide-item.active .slide-image-wrapper {
  animation: zoomSubtle 4s ease infinite alternate;
}

@keyframes zoomSubtle {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.slide-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.clg-slide-item .slide-top-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fbbf24;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.clg-slide-item.active .slide-top-badge {
  opacity: 1;
  transform: translateY(0);
}

.clg-slide-item .slide-caption-box {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  z-index: 5;
  color: #ffffff;
  max-width: 750px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.clg-slide-item.active .slide-caption-box {
  opacity: 1;
  transform: translateY(0);
}

.slide-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #a855f7;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.slide-caption-box h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 8px;
}

.slide-caption-box p {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.5;
}

/* Bottom Thumbnails Navigation Bar */
.clg-thumb-indicator-bar {
  display: flex;
  justify-content: center;
}

.clg-thumbs-list {
  display: flex;
  align-items: center;
  gap: 16px;
}

.clg-thumb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 6px 14px 6px 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.clg-thumb-item span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #475569;
  white-space: nowrap;
}

.thumb-img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.clg-thumb-item:hover {
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

.clg-thumb-item.active {
  background: #ffffff;
  border: 2px solid #8b5cf6;
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.2);
}

.clg-thumb-item.active span {
  color: #7c3aed;
  font-weight: 800;
}

/* ================= REDESIGNED INTERACTIVE CAMPUS EXPLORER ================= */
.campus-explorer-redesigned-section {
  background-color: #ffffff;
  padding: 90px 32px;
  position: relative;
  overflow: hidden;
}

#branch-explorer {
  background-color: #ffffff;
  padding: 80px 32px;
  position: relative;
}

.campus-main-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}

/* Left Column */
.campus-badge-gold {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #b45309;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.campus-main-title {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.12;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.campus-subtext {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.55;
  font-weight: 500;
  margin-bottom: 36px;
}

/* Timeline Feature Items List */
.campus-features-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 8px;
}

.timeline-connector-line {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 27px;
  width: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.campus-feature-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  z-index: 2;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.campus-feature-item:hover,
.campus-feature-item.active {
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.feature-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.campus-feature-item:hover .feature-icon-circle,
.campus-feature-item.active .feature-icon-circle {
  transform: scale(1.1);
}

.feature-icon-circle.purple {
  background: #f3e8ff;
  color: #9333ea;
}

.feature-icon-circle.gold {
  background: #fef3c7;
  color: #d97706;
}

.feature-icon-circle.green {
  background: #dcfce7;
  color: #16a34a;
}

.feature-icon-circle.soft-purple {
  background: #ede9fe;
  color: #7c3aed;
}

.feature-text h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 3px;
}

.feature-text p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.4;
}

/* RIGHT COLUMN: 5 SLANTED DIAGONAL ACCORDION SLICES */
.campus-right-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.diagonal-accordion-container {
  display: flex;
  height: 490px;
  width: 100%;
  gap: 12px;
  border-radius: 28px;
  overflow: hidden;
}

.diagonal-slice {
  position: relative;
  flex: 1;
  height: 100%;
  background-size: cover;
  background-position: center;
  clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  margin-left: -2.5%;
  cursor: pointer;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.4s ease;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.diagonal-slice:first-child {
  margin-left: 0;
  clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
}

.diagonal-slice:last-child {
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.diagonal-slice.active {
  flex: 3.2;
}

.diagonal-slice:hover {
  filter: brightness(1.08);
}

.slice-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
  transition: background 0.4s ease;
}

.diagonal-slice.active .slice-overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.88) 100%);
}

.slice-content {
  position: absolute;
  bottom: 24px;
  left: 28px;
  right: 20px;
  z-index: 5;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.slice-icon-glass {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.diagonal-slice.active .slice-icon-glass {
  background: #ffffff;
  color: #7c3aed;
  transform: scale(1.08);
}

.slice-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
}

.slice-title-row h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.slice-title-row i {
  font-size: 0.9rem;
  color: #cbd5e1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.diagonal-slice.active .slice-title-row i {
  transform: translateX(4px);
  color: #ffffff;
}

/* Accordion Dots Bar */
.accordion-dots-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.dot-bar {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-bar.active {
  width: 32px;
  background: #b45309;
}

/* BOTTOM WHITE STATS & VIDEO BANNER */
.campus-bottom-stats-banner {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.03);
  gap: 20px;
  flex-wrap: wrap;
}

.campus-video-widget {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding-right: 28px;
  border-right: 1px solid #f1f5f9;
}

.play-btn-pulse {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ede9fe;
  color: #7c3aed;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(124, 58, 237, 0.15);
  transition: all 0.3s ease;
}

.campus-video-widget:hover .play-btn-pulse {
  background: #7c3aed;
  color: #ffffff;
  transform: scale(1.1);
}

.video-widget-text h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.video-widget-text p {
  font-size: 0.78rem;
  color: #6366f1;
  font-weight: 600;
}

.campus-stat-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.stat-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.stat-icon-circle.gold {
  background: #fef3c7;
  color: #d97706;
}

.stat-icon-circle.blue {
  background: #dbeafe;
  color: #2563eb;
}

.stat-icon-circle.green {
  background: #dcfce7;
  color: #16a34a;
}

.stat-icon-circle.purple {
  background: #f3e8ff;
  color: #9333ea;
}

.stat-number-info h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.1;
}

.stat-number-info p {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 1px;
}

/* ================= ACCURATE NEW LIGHT FOOTER UI ================= */
.site-footer {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top: none;
  color: #0f172a;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#cbd5e1 0.8px, transparent 0.8px);
  background-size: 24px 24px;
  opacity: 0.3;
  pointer-events: none;
}

.footer-top {
  padding: 60px 0 40px 0;
  position: relative;
  z-index: 2;
}

.footer-container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid-4col {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.35fr;
  width: 100%;
  gap: 0;
}

.footer-col-item {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* Column 1: Brand Column */
.footer-col-item:nth-child(1) {
  padding-right: 40px;
}

/* Column 2: Portal Links */
.footer-col-item:nth-child(2) {
  border-left: 1px solid #e2e8f0;
  padding-left: 44px;
  padding-right: 36px;
}

/* Column 3: Ecosystem */
.footer-col-item:nth-child(3) {
  border-left: 1px solid #e2e8f0;
  padding-left: 44px;
  padding-right: 44px;
}

/* Column 4: Contact Desk */
.footer-col-item:nth-child(4) {
  border-left: 1px solid #e2e8f0;
  padding-left: 52px;
}

/* Brand Column 1 */
.footer-logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
  text-decoration: none;
}

.footer-site-logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #0f172a;
}

.footer-logo-text span {
  color: #6366f1;
}

.footer-tagline-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 14px;
}

.footer-brand-bio {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-social-btn.facebook { color: #1877f2; }
.footer-social-btn.linkedin { color: #0a66c2; }
.footer-social-btn.instagram { color: #e4405f; }
.footer-social-btn.youtube { color: #ff0000; }
.footer-social-btn.x-twitter { color: #0f172a; }

.footer-social-btn:hover {
  background: #6366f1;
  color: #ffffff !important;
  border-color: #6366f1;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(99, 102, 241, 0.35);
}

.footer-callout-banner {
  background: #edf2fe;
  border-left: 3px solid #6366f1;
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  max-width: 340px;
}

.footer-callout-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.footer-callout-text {
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.45;
}

/* Header with Soft Circle Icon */
.footer-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  position: relative;
}

.footer-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.footer-icon-circle.blue { background: #dbeafe; color: #2563eb; }
.footer-icon-circle.purple { background: #f3e8ff; color: #9333ea; }
.footer-icon-circle.green { background: #dcfce7; color: #16a34a; }

.footer-col-title-group h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.title-underline-bar {
  width: 28px;
  height: 3px;
  background: #6366f1;
  border-radius: 2px;
  margin-top: 4px;
}

.title-underline-bar.green {
  background: #16a34a;
}

/* Links Lists */
.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer-links-list li a {
  font-size: 0.9rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.footer-links-list li a i {
  font-size: 0.75rem;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.footer-links-list li a:hover {
  color: #6366f1;
}

.footer-links-list li a:hover i {
  color: #6366f1;
  transform: translateX(4px);
}

/* Contact List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.5;
}

.contact-icon-bubble {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #edf2fe;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* Newsletter Box */
.stay-connected-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.stay-connected-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.stay-connected-desc {
  font-size: 0.78rem;
  color: #64748b;
  margin-bottom: 12px;
  line-height: 1.4;
}

.newsletter-input-group {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  padding: 3px 3px 3px 14px;
}

.newsletter-input-group input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 0.82rem;
  color: #0f172a;
  flex-grow: 1;
}

.newsletter-input-group button {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
  transition: all 0.2s ease;
}

.newsletter-input-group button:hover {
  transform: scale(1.04);
}

/* Footer Bottom Bar */
.footer-bottom-row {
  border-top: 1px solid #e2e8f0;
  padding: 24px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.copyright-text-new {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

.legal-links-group {
  display: flex;
  align-items: center;
  gap: 18px;
}

.legal-link-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-link-item:hover {
  color: #6366f1;
}

.btn-scroll-top-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-left: 12px;
}

.btn-scroll-top-circle:hover {
  background: #6366f1;
  color: #ffffff;
  border-color: #6366f1;
  transform: translateY(-3px);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-grid-4col {
    grid-template-columns: 1fr 1fr;
  }
  .footer-col-item {
    border-right: none !important;
    padding-right: 0 !important;
  }
}

@media (max-width: 640px) {
  .footer-grid-4col {
    grid-template-columns: 1fr;
  }
  .footer-bottom-flex {
    flex-direction: column;
    text-align: center;
  }
}

/* ================= 21. SEPARATE VINTOPIK FOOTER PORTION BOX ================= */
.vintopik-footer-box-wrapper {
  background: #0f172a;
  border-top: 1px solid #1e293b;
  padding: 24px 0;
  position: relative;
  overflow: hidden;
}

.vintopik-footer-box-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1);
  background-size: 300% 100%;
  animation: vintopikGlowFlow 6s linear infinite;
}

@keyframes vintopikGlowFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.vintopik-footer-card {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.vintopik-left-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.vintopik-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
  border: 1px solid rgba(99, 102, 241, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #818cf8;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.vintopik-text-group h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vintopik-badge {
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #6366f1, #a855f7);
  color: #ffffff;
  padding: 2px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.vintopik-text-group p {
  font-size: 0.82rem;
  color: #94a3b8;
  margin: 0;
}

.portal-gateways-buttons-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-gateway-pill {
  font-family: 'Outfit', sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
}

.btn-gateway-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.btn-gateway-pill.admin:hover {
  background: #6366f1;
  border-color: #6366f1;
  color: #ffffff;
}

.btn-gateway-pill.chairman:hover {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #ffffff;
}

.btn-gateway-pill.office:hover {
  background: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

.btn-gateway-pill.branch:hover {
  background: #10b981;
  border-color: #10b981;
  color: #ffffff;
}

.btn-know-about-us {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #ffffff !important;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.35);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-know-about-us:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
  color: #ffffff !important;
}

.btn-know-about-us i {
  transition: transform 0.2s ease;
}

.btn-know-about-us:hover i {
  transform: translateX(4px);
}

/* Modal for VinTopik & Institutional Gateways Hub */
.vintopik-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
}

.vintopik-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.vintopik-modal-box {
  background: #ffffff;
  border-radius: 26px;
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  box-shadow: 0 30px 80px -15px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(226, 232, 240, 0.8);
  overflow-y: auto;
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  scrollbar-width: thin;
}

.vintopik-modal-overlay.active .vintopik-modal-box {
  transform: scale(1);
}

.vintopik-modal-header {
  background: linear-gradient(135deg, #090e24 0%, #0f1a42 50%, #1a164a 100%);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 0;
  z-index: 10;
}

.vintopik-modal-title {
  display: flex;
  align-items: center;
  gap: 14px;
}

.vintopik-modal-title i {
  font-size: 1.4rem;
  color: #818cf8;
}

.vintopik-modal-title h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
}

.vintopik-modal-title p {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 2px;
}

.close-vintopik-modal {
  font-size: 1.8rem;
  color: #94a3b8;
  cursor: pointer;
  line-height: 1;
  transition: all 0.2s ease;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}

.close-vintopik-modal:hover {
  color: #ffffff;
  background: rgba(239, 68, 68, 0.3);
}

.vintopik-modal-body {
  padding: 28px 32px;
}

/* Live Institutional Metrics Strip inside Modal */
.hub-live-metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.hub-metric-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 14px;
  text-align: center;
}

.hub-metric-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
  margin-bottom: 2px;
}

.hub-metric-lbl {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

/* 4 Institutional Portal Launch Cards */
.hub-portals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.hub-portal-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.hub-portal-card:hover {
  transform: translateY(-3px);
  border-color: #6366f1;
  box-shadow: 0 10px 24px -4px rgba(99, 102, 241, 0.15);
}

.hub-portal-card.admin:hover { border-color: #6366f1; }
.hub-portal-card.chairman:hover { border-color: #f59e0b; }
.hub-portal-card.office:hover { border-color: #2563eb; }
.hub-portal-card.branch:hover { border-color: #10b981; }

.hub-portal-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.hub-portal-icon.indigo { background: #e0e7ff; color: #4338ca; }
.hub-portal-icon.gold { background: #fef3c7; color: #b45309; }
.hub-portal-icon.blue { background: #dbeafe; color: #1d4ed8; }
.hub-portal-icon.green { background: #dcfce7; color: #15803d; }

.hub-portal-info h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hub-portal-info p {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 6px;
}

.hub-portal-link-arrow {
  font-size: 0.76rem;
  font-weight: 800;
  color: #4f46e5;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* About Team VinTopik Mini Card */
.hub-vintopik-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hub-vintopik-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
  border: 1px solid rgba(99, 102, 241, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6366f1;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hub-vintopik-text h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.hub-vintopik-text p {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.45;
  margin: 0;
}

.vintopik-modal-footer {
  padding: 16px 32px 24px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #f1f5f9;
}

.btn-close-vintopik-modal {
  background: #0f172a;
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 9px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-close-vintopik-modal:hover {
  background: #4f46e5;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .hub-live-metrics-strip {
    grid-template-columns: 1fr 1fr;
  }
  .hub-portals-grid {
    grid-template-columns: 1fr;
  }
}

.vintopik-feat-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.vintopik-feat-icon.blue { background: #dbeafe; color: #2563eb; }
.vintopik-feat-icon.purple { background: #f3e8ff; color: #9333ea; }
.vintopik-feat-icon.green { background: #dcfce7; color: #16a34a; }

.vintopik-feat-item h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 3px;
}

.vintopik-feat-item p {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.vintopik-modal-footer {
  padding: 16px 30px 24px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #f1f5f9;
}

.btn-close-vintopik-modal {
  background: #e2e8f0;
  color: #334155;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 8px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-close-vintopik-modal:hover {
  background: #cbd5e1;
  color: #0f172a;
}

/* =========================================================================
   FLUID DESKTOP-PARITY ENGINE (100% VISUAL INTEGRITY ON ALL DEVICES)
   ========================================================================= */

@media (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
  }
  .header-search-container {
    max-width: 380px;
    margin: 0 16px;
  }
}

@media (max-width: 860px) {
  .header-container {
    padding: 0 14px;
  }
  .logo-text {
    font-size: 1.35rem;
  }
  .site-logo {
    height: 36px;
    width: 36px;
  }
  .header-search-container {
    max-width: 240px;
    margin: 0 8px;
  }
  .header-search-bar {
    padding: 6px 14px;
    font-size: 0.82rem;
  }
  .header-search-bar kbd {
    display: none;
  }
  .header-actions {
    gap: 10px;
  }
  .btn-login-dark {
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  .btn-cta-gradient {
    font-size: 0.82rem;
    padding: 8px 18px;
  }
  .mobile-menu-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 72px;
  }

  /* Preserve Desktop Card Carousel Grid Layout */
  .hero-carousel-viewport,
  .fame-carousel-viewport {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-behavior: smooth;
    padding: 10px 0;
  }

  .hero-carousel-track,
  .fame-carousel-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 18px !important;
  }

  .hero-card,
  .fame-card-item {
    flex: 0 0 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
  }

  .hero-main-title {
    font-size: clamp(2.2rem, 6vw, 3.8rem) !important;
  }

  .metrics-redesigned-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 14px !important;
    justify-content: center !important;
  }

  .metric-card-box {
    flex: 1 1 180px !important;
    min-width: 150px !important;
  }

  #dream-companies-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)) !important;
    gap: 16px !important;
  }

  .footer-content-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    gap: 28px !important;
  }
}

@media (max-width: 520px) {
  .header-search-container {
    display: flex;
  }
  .header-search-bar span {
    display: inline-block;
    font-size: 0.78rem;
  }
  .btn-cta-gradient {
    padding: 6px 14px;
    font-size: 0.78rem;
  }
}

