/* ============ BLOG COMPONENTS ============ */

/* Blog Hero Section */
.blog-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y=".9em" font-size="90" opacity="0.03">📚</text></svg>') center/cover;
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.blog-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
  line-height: 1.1;
}

.blog-hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.blog-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.blog-stat {
  text-align: center;
}

.blog-stat .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  display: block;
}

.blog-stat .stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Blog Listing Section */
.blog-listing {
  padding: 80px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 64px;
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.blog-college {
  font-weight: 600;
  color: var(--navy);
}

.blog-date {
  opacity: 0.8;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.3;
  color: var(--text-dark);
}

.blog-excerpt {
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.blog-read-more {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.blog-read-more:hover {
  color: var(--navy);
  gap: 8px;
}

/* Blog Pagination */
.blog-pagination {
  text-align: center;
}

.blog-pagination button {
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}

.newsletter-content h2 {
  margin-bottom: 16px;
}

.newsletter-content p {
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: 14px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.15);
}

/* Blog Post Hero */
.blog-post-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  padding: 120px 0 60px;
}

.blog-breadcrumb {
  margin-bottom: 24px;
  font-size: 0.875rem;
  opacity: 0.8;
}

.blog-breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.blog-breadcrumb a:hover {
  text-decoration: underline;
}

.blog-breadcrumb .current {
  color: var(--white);
  opacity: 0.9;
}

.blog-post-header {
  max-width: 800px;
}

.blog-post-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.blog-post-meta .blog-category {
  position: static;
  background: var(--gold);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-post-meta .blog-date,
.blog-post-meta .blog-read-time {
  opacity: 0.8;
  font-size: 0.875rem;
}

.blog-post-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.blog-post-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.6;
}

.blog-post-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.author-name {
  font-weight: 600;
  color: var(--white);
}

.author-title {
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Blog Post Content */
.blog-post-content {
  padding: 60px 0;
}

.blog-post-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-post-body h2 {
  font-size: 2rem;
  margin: 48px 0 24px;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
}

.blog-post-body h3 {
  font-size: 1.5rem;
  margin: 32px 0 16px;
  color: var(--navy);
}

.blog-post-body p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-mid);
}

.blog-post-body ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-post-body li {
  margin-bottom: 8px;
  line-height: 1.6;
  color: var(--text-mid);
}

/* Table of Contents */
.blog-toc {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}

.blog-toc h3 {
  margin-bottom: 16px;
  color: var(--navy);
}

.blog-toc ul {
  list-style: none;
  padding-left: 0;
}

.blog-toc li {
  margin-bottom: 8px;
}

.blog-toc a {
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.blog-toc a:hover {
  color: var(--gold);
}

/* Blog Intro */
.blog-intro {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 24px;
  margin-bottom: 32px;
  border-radius: var(--radius-sm);
}

.blog-intro p {
  color: var(--text-dark);
  margin-bottom: 12px;
}

.blog-intro p:last-child {
  margin-bottom: 0;
}

/* Process Steps Blog */
.process-steps-blog {
  margin: 32px 0;
}

.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.step-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--navy);
  margin-bottom: 8px;
}

.step-content p,
.step-content ul {
  color: var(--text-mid);
  margin-bottom: 0;
}

/* University Highlights */
.university-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.uni-highlight-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.uni-highlight-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.uni-highlight-card h4 {
  color: var(--navy);
  margin-bottom: 12px;
}

.uni-highlight-card p {
  color: var(--text-mid);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.uni-highlight-card strong {
  color: var(--text-dark);
}

/* Blog CTA */
.blog-cta {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  padding: 48px;
  border-radius: var(--radius-md);
  text-align: center;
  margin: 48px 0;
}

.blog-cta h3 {
  margin-bottom: 16px;
}

.blog-cta p {
  margin-bottom: 32px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
}

.sidebar-widget h4 {
  color: var(--navy);
  margin-bottom: 16px;
  font-size: 1.125rem;
}

.recent-posts li,
.popular-unis li {
  margin-bottom: 12px;
}

.recent-posts a,
.popular-unis a {
  color: var(--text-mid);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
  transition: var(--transition);
}

.recent-posts a:hover,
.popular-unis a:hover {
  color: var(--gold);
}

.sidebar-widget p {
  color: var(--text-mid);
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.875rem;
}

/* Related Posts */
.related-posts {
  background: var(--gray-100);
  padding: 60px 0;
}

.related-posts h3 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--navy);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.related-post-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.related-post-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.related-post-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-post-card h4 {
  padding: 20px 20px 8px;
  color: var(--navy);
  font-size: 1.125rem;
}

.related-post-card p {
  padding: 0 20px 16px;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.5;
}

.related-post-card a {
  display: block;
  padding: 0 20px 20px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.related-post-card a:hover {
  color: var(--navy);
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .blog-post-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .blog-stats {
    gap: 24px;
  }
  
  .blog-post-meta {
    gap: 16px;
  }
  
  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }
  
  .university-highlights {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .step-item {
    flex-direction: column;
    gap: 16px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-hero {
    padding: 100px 0 60px;
  }
  
  .blog-post-hero {
    padding: 100px 0 40px;
  }
  
  .blog-listing {
    padding: 60px 0;
  }
  
  .blog-post-content {
    padding: 40px 0;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-hero-title {
    font-size: 2rem;
  }
  
  .blog-post-title {
    font-size: 1.75rem;
  }
  
  .blog-cta {
    padding: 32px 20px;
  }
  
  .newsletter-section {
    padding: 60px 20px;
  }
}

/* ============================================
   GLOBAL STYLES - trytechcareers.com Tech Careers
   Color Palette: Deep Navy, Saffron Gold, Pure White, Emerald
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #0A1628;
  --navy-mid: #112240;
  --navy-light: #1d3461;
  --gold: #E8A020;
  --gold-light: #F5C55A;
  --gold-pale: #FFF4DC;
  --emerald: #1A7F5A;
  --emerald-light: #22A870;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --gray-100: #F1F3F7;
  --gray-200: #E2E6EF;
  --gray-400: #94A3B8;
  --gray-600: #64748B;
  --gray-800: #334155;
  --text-dark: #0F172A;
  --text-mid: #334155;
  --text-light: #64748B;
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.08);
  --shadow-md: 0 8px 30px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.18);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-wrap: break-word;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* Fix horizontal overflow / white gap on mobile (100vw includes scrollbar → avoid it) */
html, body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  position: relative;
}

/* Ensure all containers respect mobile boundaries */
.container {
  box-sizing: border-box;
}

/* Prevent text overflow in all elements */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ============ UTILITY CLASSES ============ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  color: var(--gold);
  border: 1.5px solid var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--gold);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), #F5A623);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(232,160,32,0.4);
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,160,32,0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 30px;
  border-radius: 100px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

/* ============ NAVIGATION ============ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  z-index: 1000;
  overflow: visible;
  background: rgba(10,22,40,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(10,22,40,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

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

.nav-logo .logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gold), #F5A623);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo .logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.nav-logo .logo-tagline {
  font-size: 11px;
  color: var(--gold-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(232,160,32,0.1);
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Hidden on desktop — shown inside mobile drawer only */
.nav-drawer-only {
  display: none;
}

/* ============ HERO SECTION ============ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0D2137 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,127,90,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
  
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-light);
  margin: 60px 0 24px 0;
  letter-spacing: 0.03em;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title .highlight {
  color: var(--gold);
  position: relative;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 520px;
}

.hero-flags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-flags .flag-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat .number {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat .label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-card-main {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  position: relative;
}

.hero-card-main .card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-card-main .card-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.hero-card-main .card-info h4 {
  font-size: 16px;
  color: var(--white);
  margin-bottom: 2px;
}

.hero-card-main .card-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.university-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.uni-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.06);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.uni-item:hover {
  background: rgba(255,255,255,0.1);
}

.uni-item .uni-name {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.uni-item .uni-badge {
  font-size: 11px;
  background: rgba(26,127,90,0.25);
  color: #4ADE80;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
}

.floating-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
}

.floating-card.card-1 {
  top: -30px; right: -20px;
  animation: float1 4s ease-in-out infinite;
}

.floating-card.card-2 {
  bottom: -25px; left: -20px;
  animation: float2 4.5s ease-in-out infinite;
}

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

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

.floating-card .fc-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.floating-card .fc-icon.green { background: #DCFCE7; }
.floating-card .fc-icon.blue { background: #DBEAFE; }

.floating-card .fc-text p { font-size: 11px; color: var(--text-light); margin-bottom: 1px; }
.floating-card .fc-text strong { font-size: 14px; color: var(--text-dark); }

/* ============ STATS BAR ============ */
.stats-bar {
  background: var(--gold);
  padding: 20px 0;
  overflow: hidden;
  margin-top: 0px;
 
}

.stats-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
 
}

.stats-bar-item {
  display: flex;
  align-items: center;
  gap: 12px;
 
}

.stats-bar-item .sbi-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
}

.stats-bar-item .sbi-label {
  font-size: 13px;
  color: var(--navy-mid);
  font-weight: 600;
  max-width: 100px;
  line-height: 1.3;
}

.stats-bar-divider {
  width: 1px;
  height: 40px;
  background: rgba(10,22,40,0.2);
}

/* ============ WHY INDIA SECTION ============ */
.why-india {
  padding: 20px 0;
  background: var(--off-white);
}

.why-india-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-india-visual {
  position: relative;
}

.india-map-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.india-map-card::before {
  content: '🇮🇳';
  position: absolute;
  font-size: 180px;
  right: -20px;
  bottom: -30px;
  opacity: 0.08;
  line-height: 1;
}

.india-map-card h3 {
  font-size: 28px;
  margin-bottom: 8px;
  color: var(--gold-light);
}

.india-map-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.india-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.india-feature-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 16px;
}

.india-feature-item .feat-icon { font-size: 24px; margin-bottom: 8px; }
.india-feature-item .feat-title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.india-feature-item .feat-desc { font-size: 12px; color: rgba(255,255,255,0.55); }

.why-reasons {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.reason-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.reason-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
}

.reason-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.reason-content p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ============ UNIVERSITIES SECTION ============ */
.universities {
  padding: 45px 0;
  background: var(--white);
}

.universities .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.uni-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch; /* ensures all cards stretch to the same row height */
}

.uni-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%; /* works with grid stretching to keep all cards uniform */
}

.uni-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.uni-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(232,160,32,0.2);
}

.uni-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.uni-card-header::after {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.featured-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.uni-logo-placeholder {
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 12px;
}

.uni-card-title {
  display: block;
  text-align: center;
  margin-bottom: 8px;
  min-height: 60px;
}

.uni-logo {
  width: 400px; height: 75px;
  border-radius: 8px;
  background: rgba(255,255,255,0.98);
  padding: 6px;
  object-fit: contain;
  transition: var(--transition);
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  margin: 0 auto;
  display: block;
}

.uni-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 2px 8px rgba(255,255,255,0.15);
}


.uni-card-header .uni-location {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 4px;
}

.uni-card-body {
  padding: 24px;
  flex: 1; /* pushes footer to the bottom for equal-height cards */
  display: flex;
  flex-direction: column;
}

.uni-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.uni-tag {
  font-size: 11px;
  background: var(--gray-100);
  color: var(--gray-800);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.uni-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.uni-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
}

.uni-highlight .check {
  color: var(--emerald);
  font-size: 14px;
  flex-shrink: 0;
}

.uni-card-footer {
  padding: 16px 24px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--gray-200);
  flex-shrink: 0;
  min-height: 62px; /* keeps fee + button baseline aligned across cards */
}

.uni-fee-range {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  min-height: 18px;
}

.uni-fee-range strong {
  color: var(--emerald);
  font-size: 15px;
}

.uni-apply-btn {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(232,160,32,0.1);
  padding: 8px 16px;
  border-radius: 8px;
  transition: var(--transition);
  border: 1px solid rgba(232,160,32,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 34px;
}

.uni-apply-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============ PROCESS SECTION ============ */
.process {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(232,160,32,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 50%, rgba(26,127,90,0.06) 0%, transparent 60%);
}

.process .section-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}

.process .section-title {
  color: var(--white);
}

.process .section-subtitle {
  color: rgba(255,255,255,0.6);
  margin: 0 auto;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(232,160,32,0.2));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.step-circle {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--gold), #F5A623);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}

.step-num {
  position: absolute;
  top: -4px; right: calc(50% - 48px);
  width: 22px; height: 22px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold);
}

.process-step h4 {
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ============ COST PREVIEW ============ */
.cost-preview {
  padding: 100px 0;
  background: var(--off-white);
}

.cost-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cost-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cost-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.cost-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.cost-card .cost-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.cost-card h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 4px;
}

.cost-card .cost-range {
  font-size: 13px;
  color: var(--emerald);
  font-weight: 700;
}

.cost-card .cost-note {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}

.cost-info h3 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}

.cost-info p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.7;
}

.cost-comparison {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.comparison-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-200);
}

.comparison-row .country {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.comparison-row .comp-cost {
  font-size: 14px;
  font-weight: 700;
}

.comparison-row .comp-cost.india { color: var(--emerald); }
.comparison-row .comp-cost.others { color: var(--text-light); }

/* ============ TESTIMONIALS ============ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials .section-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.testimonial-card {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold-light);
  box-shadow: var(--shadow-md);
}

.testimonial-card .quote-icon {
  font-size: 40px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.testimonial-card .testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.author-info .country {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ============ CTA SECTION ============ */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,160,32,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-inner h2 {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
}

.cta-inner h2 span { color: var(--gold); }

.cta-inner p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-features {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.cta-feature .icon { font-size: 16px; }

/* ============ CONTACT FORM ============ */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 40px;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item .ci-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 14px; color: var(--navy); margin-bottom: 2px; }
.contact-item p { font-size: 14px; color: var(--text-light); }

/* Form Styles */
.lead-form {
  background: var(--off-white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.lead-form h3 {
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 8px;
}

.lead-form .form-subtitle {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}

.form-group textarea { resize: vertical; min-height: 100px; }

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), #F5A623);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  margin-top: 12px;
}

.success-message {
  display: none;
  text-align: center;
  padding: 40px;
}

.success-message .success-icon { font-size: 60px; margin-bottom: 16px; }
.success-message h3 { color: var(--navy); margin-bottom: 8px; }
.success-message p { color: var(--text-light); }

/* ============ FOOTER ============ */
footer {
  background: var(--navy);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.footer-brand .footer-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

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

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

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

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

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

.footer-bottom .footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}

.footer-bottom .footer-links a:hover { color: var(--gold-light); }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.page-hero h1 span { color: var(--gold); }

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
}

.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============ WHY INDIA PAGE SPECIFICS ============ */
.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.benefit-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.benefit-card .benefit-icon {
  width: 72px; height: 72px;
  background: var(--gold-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.benefit-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}

.benefit-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* Cost Page */
.cost-breakdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.cost-breakdown-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.cost-breakdown-card .cb-header {
  background: var(--navy);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cost-breakdown-card .cb-header h3 {
  color: var(--white);
  font-size: 18px;
}

.cost-breakdown-card .cb-body {
  padding: 24px;
}

.cost-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cost-item-row:last-child { border-bottom: none; }

.cost-item-row .item-name {
  font-size: 14px;
  color: var(--text-mid);
}

.cost-item-row .item-cost {
  font-size: 14px;
  font-weight: 700;
  color: var(--emerald);
}

/* Scholarship Table */
.scholarship-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}

.scholarship-table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
}

.scholarship-table td {
  padding: 14px 20px;
  font-size: 13px;
  color: var(--text-mid);
  border-bottom: 1px solid var(--gray-200);
}

.scholarship-table tr:nth-child(even) td {
  background: var(--gray-100);
}

.scholarship-table .s-badge {
  background: rgba(26,127,90,0.15);
  color: var(--emerald);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

/* Sticky WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: float1 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37,211,102,0.6);
}