/* AYUSH EDUVIBE - Simplicity & User Friendly Theme */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  /* Color Palette - Clean Light Theme */
  --logo-ayush: #123b8c;
  --logo-eduvibe: #0fb9c8;
  --bg-dark: #f8f9fa;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-glow: rgba(37, 99, 235, 0.3);
  --secondary: #f59e0b;
  --accent: #10b981;

  --text-main: #1f2937;
  --text-muted: #6b7280;

  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --glass: rgba(255, 255, 255, 0.9);

  /* Spacing & Layout — Fluid Tokens */
  --container-width: 1280px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --section-padding: clamp(3rem, 8vw, 6rem);
  --container-padding: clamp(1rem, 5vw, 2.5rem);
  --grid-gap: clamp(1rem, 2.5vw, 2rem);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) skewX(-30deg);
  }

  100% {
    transform: translateX(200%) skewX(-30deg);
  }
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

@keyframes floatElement {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }

  100% {
    transform: translateY(0);
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

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

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  padding-top: 80px;
  /* Spacing for fixed header */
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-weight: 700;
  letter-spacing: -0.025em;
  /* Cleaner heading spacing */
  margin-bottom: 1rem;
  color: #111827;
  /* Almost Black */
}

/* Fluid Typography & Modern Reset */
h1 {
  font-size: clamp(2rem, 5vw + 1rem, 3.5rem);
  line-height: 1.1;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw + 0.5rem, 2.75rem);
  line-height: 1.2;
}

h3 {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  font-weight: 600;
}

p {
  font-size: clamp(0.95rem, 1vw + 0.5rem, 1.05rem);
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

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

/* Layout Utilities */
/* Layout Utilities & Fluid Grids */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--section-padding) 0;
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

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

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

.flex-col {
  display: flex;
  flex-direction: column;
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

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

.mb-2 {
  margin-bottom: 2rem;
}

.mt-2 {
  margin-top: 2rem;
}

/* Components: Buttons - Simple & User Friendly */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  /* Slightly rounded, not full pill */
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition-smooth);
  text-transform: capitalize;
  /* Easier to read than UPPERCASE */
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: #ffffff;
  color: var(--primary);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: #f9fafb;
  border-color: var(--primary);
  color: var(--primary-hover);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Components: Cards */
.card {
  background: var(--bg-card);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.2);
}

.card::after {
  content: "→";
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  color: var(--primary);
  transition: all 0.3s ease;
}

.card:hover .card-icon {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--logo-eduvibe) 100%);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

/* Badge / Tag Styles */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.tag-popular {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

.tag-free {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.tag-paid {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.job-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.job-salary {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
  margin: 1rem 0;
}

/* Navbar/* --- Top Header --- */

/* --- Navigation --- */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgb(255 255 255 / 95%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: none;
  /* Shadow added on scroll */
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 0.6rem 0;
  /* Slightly shrink on scroll */
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--logo-ayush);
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: -0.5px;
  z-index: 1002;
  transition: transform 0.3s ease;
}

.logo span {
  color: var(--logo-eduvibe);
  font-weight: 800;
}

.nav-logo {
  height: 50px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  font-size: 0.95rem;
  padding: 5px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--logo-eduvibe));
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

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

/* Nav User Profile Styles */
.nav-user-profile-container {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
  background: #f3f4f6;
  padding: 5px 15px 5px 5px;
  border-radius: 30px;
  border: 1px solid transparent;
}

.nav-user-avatar {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  font-size: 0.9rem;
}

.mobile-menu-btn {
  display: none;
}

/* ===================================================
   HERO BANNER — Full Width, Edge-to-Edge, No Gaps
   =================================================== */
.hero-banner {
  /* Full-viewport width — overrides body padding */
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

  /* Fixed hero height matching original section */
  height: clamp(320px, 55vw, 620px);

  overflow: hidden;
  display: block;

  /* No padding, no margin top/bottom gap */
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;

  /* Background while image loads */
  background-color: #1a1a2e;
}

.hero-banner-img {
  /* Fill the entire hero-banner */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;

  /* Sharp rendering on high-DPI screens */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Left-side gradient for text contrast only */
.hero-banner-overlay {
  position: absolute;
  inset: 0;
  /* Gradient fades from left (dark) to transparent — protects text readability */
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.25) 45%,
      transparent 75%);
  /* Vertically centered, left-aligned layout */
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 clamp(1.5rem, 6vw, 5rem);
}

/* Text wrapper */
.hero-banner-text {
  max-width: 560px;
}

/* Main headline */
.hero-banner-headline {
  font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(1.5rem, 3.8vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.3px;
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.55),
    0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Second line accent — slightly lighter weight */
.hero-headline-accent {
  font-weight: 600;
  color: #f0f9ff;
  display: block;
  margin-top: 0.15em;
}

/* ── Hero Promo Subtext ── */
.hero-promo-subtext {
  margin-top: clamp(1rem, 2.5vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  animation: promoFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 0.4s;
}

.hero-promo-pill {
  display: inline-flex;
  padding: 6px 16px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-promo-main {
  font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 600;
  color: #fbbf24;
  /* Vibrant brand gold accent */
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero-promo-tc {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.68rem, 1.4vw, 0.8rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  margin-left: 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes promoFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */

/* ===================================================
   ACHIEVEMENT HIGHLIGHTS SECTION
   =================================================== */
.highlights-section {
  background: linear-gradient(135deg, #f8faff 0%, #ffffff 60%, #f0f7ff 100%);
  padding: 3rem 0 2.5rem;
  border-bottom: 1px solid #e8eef8;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #e4edf8;
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  box-shadow:
    0 4px 18px rgba(37, 99, 235, 0.06),
    0 1px 4px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 10px 28px rgba(37, 99, 235, 0.12),
    0 2px 8px rgba(0, 0, 0, 0.06);
}

.highlight-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.highlight-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.highlight-stat {
  font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f1e3d;
  line-height: 1.3;
  margin: 0;
}

.highlight-desc {
  font-family: "Inter", "Poppins", "Segoe UI", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #5a6a82;
  line-height: 1.5;
  margin: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Floating Logo */

/* --- Mobile Responsive Enhancements --- */

/* Tablet (1024px and down) */

/* Mobile (768px and down) */

/* --- New Responsive Footer Styles --- */
.main-footer {
  background-color: #050b14;
  /* Deep Dark Navy */
  color: #ffffff;
  padding: 40px 0 20px;
  margin-top: 4rem;
  font-size: 0.95rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-brand {
  max-width: 400px;
  flex: 1 1 300px;
}

.footer-logo {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--logo-ayush);
  font-family: "Poppins", "Inter", sans-serif;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-logo span {
  color: var(--logo-eduvibe);
  font-weight: 800;
}

.footer-desc {
  color: #9ca3af;
  /* Light grey text */
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 0;
}

.footer-links-wrapper {
  display: flex;
  gap: 2rem;
  flex: 1 1 auto;
  justify-content: flex-start;
}

.footer-column {
  min-width: 150px;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  letter-spacing: 0.05em;
  opacity: 0.9;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.8rem;
}

.footer-column ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column ul li a:hover {
  color: #2563eb;
  /* Hover Blue */
}

/* Contact Column Styles */
.contact-info p {
  margin-bottom: 0.5rem;
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

.whatsapp-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0;
  color: #9ca3af;
  font-size: 0.95rem;
}

.hours {
  color: #d1d5db;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* ── Footer Premium Contact Cards ── */
.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  cursor: pointer;
}

.footer-contact-phone {
  background: rgba(37, 99, 235, 0.1);
  border-color: rgba(37, 99, 235, 0.25);
}

.footer-contact-email {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.25);
}

.footer-contact-card:hover.footer-contact-phone {
  background: rgba(37, 99, 235, 0.2);
  border-color: rgba(37, 99, 235, 0.5);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.footer-contact-card:hover.footer-contact-email {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.5);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2);
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-contact-arrow {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-contact-card:hover .footer-contact-arrow {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(3px);
}

/* Floating WhatsApp Button (Bottom Left) */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

.whatsapp-logo-float {
  width: 35px;
  height: 35px;
  fill: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: #6b7280;
  font-size: 0.9rem;
}

/* Connect With Us Section - Refined */
.footer-social-container {
  margin-top: 1.5rem;
  text-align: left;
}

.footer-social-container h4 {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.social-icons-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.social-icon-link svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
  transition: all 0.3s ease;
}

/* Facebook — always blue */
.social-icon-link.facebook {
  background: #1877f2;
  box-shadow: 0 3px 10px rgba(24, 119, 242, 0.35);
}

/* Instagram — always gradient */
.social-icon-link.instagram {
  background: linear-gradient(45deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  box-shadow: 0 3px 10px rgba(220, 39, 67, 0.35);
}

/* YouTube — always red */
.social-icon-link.youtube {
  background: #ff0000;
  box-shadow: 0 3px 10px rgba(255, 0, 0, 0.35);
}

.social-icon-link:hover {
  transform: translateY(-3px) scale(1.1);
}

.social-icon-link.facebook:hover {
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.55);
}

.social-icon-link.instagram:hover {
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.55);
}

.social-icon-link.youtube:hover {
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.55);
}

/* ── Footer Map Card ── */
.footer-map-card {
  display: block;
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.footer-map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.footer-map-img-wrap {
  position: relative;
  width: 100%;
  height: 180px;
  background: #c8d8e4;
  overflow: hidden;
}

/* No pseudo-element overlays — real photo is used */
.footer-map-img-wrap::before,
.footer-map-img-wrap::after {
  display: none;
}

.footer-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* When static map image fails, show our CSS map */
.map-fallback .footer-map-img {
  display: none;
}

/* Pin overlay hidden — pin is already in the real photo */
.map-pin-overlay {
  display: none;
}

.map-grid-lines {
  display: none;
}

.footer-map-label {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1a2433;
  color: #93c5fd;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.footer-map-card:hover .footer-map-label {
  background: #2563eb;
  color: #ffffff;
}

/* ============ FOOTER AUTO-RESPONSIVENESS (Tabs & Mobiles) ============ */
@media (max-width: 1024px) {
  .footer-content {
    flex-direction: column;
    gap: 3rem;
  }

  .footer-brand {
    max-width: 100%;
    text-align: center;
  }

  .footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
  }

  .footer-map-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .main-footer {
    padding: 30px 0 20px;
    margin-top: 3rem;
  }

  .footer-links-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-logo {
    font-size: 1.5rem;
    text-align: center;
  }

  .footer-social-container {
    text-align: center;
  }

  .footer-social-container h4 {
    text-align: center;
  }

  .social-icons-row {
    justify-content: center;
  }

  .whatsapp-inline {
    justify-content: center;
  }

  .footer-bottom {
    font-size: 0.85rem;
    padding-top: 1.5rem;
    margin-top: 1rem;
    text-align: center;
  }

  /* Floating WhatsApp adjust for mobile */
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-logo-float {
    width: 28px;
    height: 28px;
  }
}

/* ===== Stats Tagline ===== */
.stats-tagline {
  font-family: "Inter", "Poppins", "Segoe UI", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1e3a5f;
  text-align: center;
  letter-spacing: 0.6px;
  margin-top: 2rem;
  margin-bottom: 0;
  line-height: 1.5;
  padding: 0 1rem;
}

/* ===================================================
   TESTIMONIALS SECTION — Infinite Marquee Scroll
   Fully fluid & auto-responsive (no hard breakpoints needed)
   =================================================== */

/* ── CSS Custom Properties (easy tuning) ── */
:root {
  --t-card-width: clamp(270px, 80vw, 420px);
  --t-card-padding-v: clamp(1.2rem, 3vw, 2.2rem);
  --t-card-padding-h: clamp(1.25rem, 3vw, 2.2rem);
  --t-gap: clamp(1rem, 2.5vw, 2.5rem);
  --t-speed: clamp(20s, 4vw + 15s, 40s);
  --t-mask-width: clamp(20px, 8vw, 150px);
}

/* Keyframe: scroll from left to right (seamless loop) */
@keyframes marqueeScroll {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

/* ── Section Wrapper ── */
.testimonials-section {
  background: linear-gradient(135deg, #0b0f1e 0%, #111827 50%, #0d1b2e 100%);
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(1.75rem, 4vw, 3.5rem);
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Edge fade masks — fluid width */
.testimonials-section::before,
.testimonials-section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--t-mask-width);
  z-index: 2;
  pointer-events: none;
}

.testimonials-section::before {
  left: 0;
  background: linear-gradient(to right, #0b0f1e 0%, transparent 100%);
}

.testimonials-section::after {
  right: 0;
  background: linear-gradient(to left, #0b0f1e 0%, transparent 100%);
}

.testimonials-inner {
  width: 100%;
}

/* ── Section Header ── */
.testimonials-header {
  display: flex;
  align-items: flex-start;
  /* buttons align to the top of the title block */
  justify-content: space-between;
  gap: clamp(0.75rem, 2vw, 1.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  padding: 0 clamp(1rem, 5vw, 3rem);
  position: relative;
  /* context for any absolute children if needed */
}

/* Center block that holds stars + title + subheading */
.t-header-center {
  text-align: center;
  flex: 1 1 0;
  min-width: 0;
}

/* ── Testimonial Nav Buttons (Prev / Next) ── */
.t-nav-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: clamp(7px, 1.2vw, 10px) clamp(14px, 2.5vw, 20px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: rgba(255, 255, 255, 0.75);
  font-family: "Inter", "Poppins", sans-serif;
  font-size: clamp(0.75rem, 1.3vw, 0.88rem);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.25s ease;
  white-space: nowrap;
  /* Align button visually with the first line of the title */
  margin-top: clamp(0.25rem, 1vw, 0.6rem);
  user-select: none;
}

.t-nav-btn:hover {
  background: rgba(251, 191, 36, 0.12);
  border-color: rgba(251, 191, 36, 0.45);
  color: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(251, 191, 36, 0.15);
}

.t-nav-btn:active {
  transform: translateY(0) scale(0.97);
}

/* ── Pressed state feedback ── */
.t-nav-btn.pressed {
  background: rgba(251, 191, 36, 0.18);
  border-color: rgba(251, 191, 36, 0.6);
  color: #fbbf24;
}

/* Responsive: smaller buttons on mobile */
@media (max-width: 480px) {
  .testimonials-header {
    align-items: center;
    /* center-align on narrow screens */
    flex-wrap: wrap;
    /* allow wrapping if needed */
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0 1rem;
  }

  .t-header-center {
    order: -1;
    /* title stays above buttons on very tiny screens (optional) */
    width: 100%;
    flex-basis: 100%;
    margin-bottom: 0.5rem;
  }

  .t-nav-btn {
    margin-top: 0;
    font-size: 0.72rem;
    padding: 7px 14px;
  }
}

.testimonials-stars-row {
  font-size: clamp(1.2rem, 3.5vw, 1.8rem);
  color: #fbbf24;
  line-height: 1;
  margin: 0 0 clamp(0.5rem, 1.25vw, 1rem);
  letter-spacing: clamp(2px, 0.5vw, 5px);
  text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.testimonials-heading {
  font-family: "Poppins", "Inter", "Segoe UI", sans-serif;
  font-size: clamp(1.25rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 clamp(0.3rem, 0.8vw, 0.5rem);
  line-height: 1.2;
}

.testimonials-heading-accent {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonials-subheading {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.78rem, 1.8vw, 0.95rem);
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* ── Marquee Wrapper ── */
.testimonials-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

/* Track — width:max-content keeps all cards in a single row */
.testimonials-track {
  display: flex;
  gap: var(--t-gap);
  width: max-content;
  animation: marqueeScroll var(--t-speed) linear infinite;
  will-change: transform;
  padding: 0.5rem 0;
  /* breathing room so card shadows don't clip */
}

/* Pause on hover — desktop only via pointer:fine */
@media (pointer: fine) {
  .testimonials-marquee-wrapper:hover .testimonials-track {
    animation-play-state: paused;
  }
}

/* ── Individual Card ── */
.testimonial-card {
  /* Fluid width */
  width: var(--t-card-width);
  min-width: 0;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: var(--t-card-padding-v) var(--t-card-padding-h);
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

/* Subtle glow effect behind cards */
.testimonial-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 70%);
  border-radius: 50%;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover {
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 50px rgba(251, 191, 36, 0.12),
    0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px);
}

.testimonial-card:hover::before {
  background: radial-gradient(circle,
      rgba(251, 191, 36, 0.15) 0%,
      transparent 70%);
}

/* Gold stars */
.testimonial-stars {
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: #fbbf24;
  letter-spacing: clamp(1.5px, 0.4vw, 2.5px);
  line-height: 1;
  z-index: 1;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
}

/* Quote */
.testimonial-message {
  font-family: "Inter", "Poppins", sans-serif;
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 1;
}

/* Footer row: avatar + name/tag */
.testimonial-footer-row {
  display: flex;
  align-items: center;
  gap: clamp(0.75rem, 1.5vw, 1rem);
  padding-top: clamp(0.8rem, 1.5vw, 1rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
  z-index: 1;
}

/* Circular avatar */
.testimonial-avatar {
  width: clamp(38px, 5.5vw, 48px);
  height: clamp(38px, 5.5vw, 48px);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 1.2vw, 0.9rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.testimonial-name {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 1.05rem);
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.testimonial-tag {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.7rem, 1.1vw, 0.85rem);
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
}

/* Final Polish: Master Media Queries */

/* =========================================
   GUIDANCE TAB SECTION (New)
   ========================================= */
.guidance-section {
  padding: var(--section-padding) 0;
  background: #ffffff;
}

.guidance-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto clamp(2rem, 5vw, 4rem);
}

.guidance-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1.25rem;
}

.guidance-header p {
  line-height: 1.8;
  color: var(--text-muted);
}

.guidance-layout {
  display: flex;
  gap: 0;
  min-height: 450px;
}

.guidance-menu {
  width: 280px;
  flex-shrink: 0;
  border-right: 1px solid #f1f5f9;
  padding: 10px 0;
  background: #fcfdfe;
}

.guidance-item {
  padding: 16px 24px;
  cursor: pointer;
  font-weight: 500;
  color: #64748b;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-bottom: 1px solid #f8fafc;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 12px;
}

.g-icon {
  font-size: 1.25rem;
  filter: grayscale(1);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.guidance-item:hover {
  background: #f1f5f9;
  color: #1e3a5f;
  padding-left: 30px;
}

.guidance-item:hover .g-icon {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.1);
}

.guidance-item.active {
  color: #2563eb;
  font-weight: 700;
  background: #eff6ff;
  border-right: 3px solid #2563eb;
}

.guidance-item.active .g-icon {
  filter: grayscale(0);
  opacity: 1;
}

/* Remove the old arrow */
.guidance-item.active::after {
  display: none;
}

.guidance-display {
  flex-grow: 1;
  position: relative;
  padding-left: 0;
}

.guidance-panel {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.guidance-panel.active {
  display: block;
  opacity: 1;
  height: 100%;
}

/* Specific styling for the Counselors & Application Tabs */
#guidance-panel-0.active,
#guidance-panel-1.active,
#guidance-panel-2.active,
#guidance-panel-3.active,
#guidance-panel-4.active,
#guidance-panel-5.active,
#guidance-panel-6.active,
#guidance-panel-7.active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  /* Text | Image */
  align-items: center;
  position: relative;
  background: white;
  height: 100%;
  overflow: hidden;
}

/* Sphere Animation & Layering */
.sphere-animation {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-image: repeating-linear-gradient(90deg,
      transparent,
      transparent 4px,
      currentColor 4px,
      currentColor 6px);
  animation: sphereRotate 25s linear infinite;
  /* Adjusted for 0.25x (slow) speed */
  opacity: 0.7;
  pointer-events: none;
}

@keyframes sphereRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.sphere-top {
  top: -30px;
  left: 10px;
  color: #0f172a;
  /* Dark Navy Lines */
  z-index: 1;
}

.sphere-bottom {
  bottom: -20px;
  right: -20px;
  color: #f43f5e;
  /* Pink/Red Lines */
  z-index: 5;
  width: 180px;
  /* Slightly larger as per screenshot */
  height: 180px;
}

/* Diamond Animation */
.diamond-animation {
  position: absolute;
  width: 120px;
  height: 120px;
  background-image: repeating-linear-gradient(45deg,
      transparent,
      transparent 4px,
      currentColor 4px,
      currentColor 6px);
  animation: diamondFloat 6s ease-in-out infinite;
  opacity: 0.8;
  pointer-events: none;
  border: 2px solid currentColor;
  transform: rotate(45deg);
}

@keyframes diamondFloat {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(-20px);
  }
}

/* Concentric Circle Animation */
.concentric-container {
  position: absolute;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 5;
}

.concentric-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: concentricPulse 3s infinite ease-in-out;
  opacity: 0.7;
}

.concentric-ring:nth-child(1) {
  width: 100%;
  height: 100%;
  animation-delay: 0s;
}

.concentric-ring:nth-child(2) {
  width: 75%;
  height: 75%;
  animation-delay: 0.2s;
}

.concentric-ring:nth-child(3) {
  width: 50%;
  height: 50%;
  animation-delay: 0.4s;
}

.concentric-ring:nth-child(4) {
  width: 25%;
  height: 25%;
  animation-delay: 0.6s;
}

@keyframes concentricPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.concentric-top {
  top: -40px;
  left: 20%;
  color: #0f172a;
  /* Dark Navy */
  z-index: 1;
}

.concentric-bottom {
  bottom: -20px;
  right: -20px;
  color: #2563eb;
  /* Primary Blue */
  z-index: 5;
}

.diamond-top {
  top: -40px;
  left: 40%;
  color: #0f172a;
  /* Dark Navy */
  z-index: 1;
}

.diamond-bottom {
  bottom: -30px;
  right: -10px;
  color: #ef4444;
  /* Red */
  z-index: 5;
}

/* Rotating Dashed Circle Animation */
.rotating-container {
  position: absolute;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0.6;
}

.rotating-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px dashed currentColor;
  box-sizing: border-box;
}

/* Clockwise Rotation */
.rotate-cw {
  animation: rotateCW 10s linear infinite;
}

/* Counter-Clockwise Rotation */
.rotate-ccw {
  animation: rotateCCW 8s linear infinite;
}

@keyframes rotateCW {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes rotateCCW {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

.rotating-circle:nth-child(1) {
  width: 100%;
  height: 100%;
  border-width: 2px;
}

.rotating-circle:nth-child(2) {
  width: 75%;
  height: 75%;
  border-width: 1px;
  opacity: 0.8;
}

.rotating-circle:nth-child(3) {
  width: 50%;
  height: 50%;
  border-width: 2px;
  opacity: 0.6;
}

.rotating-top {
  top: -30px;
  left: 20%;
  color: #0f172a;
  /* Dark Navy */
  z-index: 1;
}

.rotating-bottom {
  bottom: -30px;
  right: -20px;
  color: #f43f5e;
  /* Pinkish Red from theme */
  z-index: 5;
}

/* Fluid Wave Animation */
.wave-container {
  position: absolute;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 5;
}

.wave-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 10px,
      currentColor 10px,
      currentColor 12px);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation: liquidWave 8s ease-in-out infinite;
  opacity: 0.8;
  border: 2px solid currentColor;
}

.wave-shape:nth-child(2) {
  animation-duration: 10s;
  animation-direction: reverse;
  opacity: 0.5;
}

@keyframes liquidWave {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }

  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }

  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

.wave-top {
  top: -30px;
  left: 20%;
  color: #0f172a;
  /* Dark Navy from theme */
  z-index: 1;
}

.wave-bottom {
  bottom: -30px;
  right: -20px;
  color: #dc2626;
  /* Deep Red */
  z-index: 5;
}

.wave-svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  animation: moveLeftRight 3s linear infinite;
}

@keyframes moveLeftRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* Updated Layering for Guidance Elements */
.blue-circle-bg {
  position: absolute;
  width: 450px;
  height: 450px;
  background: #0ea5e9;
  /* Blue Circle */
  border-radius: 50%;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* Increased to sit above top-sphere */
}

.guidance-text-wrapper {
  position: relative;
  z-index: 6;
  /* Highest priority */
  padding: 40px;
  color: white;
  /* Text on blue circle */
}

.guidance-text-wrapper h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.guidance-text-wrapper p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1rem;
  line-height: 1.7;
}

.guidance-image-wrapper {
  position: relative;
  z-index: 3;
  /* Above blue circle */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guidance-img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.2);
  position: relative;
  right: 30px;
  /* Slight overlap */
  background: #f3f4f6;
  z-index: 4;
  /* Ensure image itself is above wrapper context if necessary */
}

/* Responsive */

/* =========================================
   Universal Blue Card Styling for All Guidance Panels
   ========================================= */

/* =========================================
   Universal Blue Card Styling for All Guidance Panels
   ========================================= */

/* The base active panel style (overrides previous specificity) */
#guidance-panel-0.active,
#guidance-panel-1.active,
#guidance-panel-2.active,
#guidance-panel-3.active,
#guidance-panel-4.active,
#guidance-panel-5.active,
#guidance-panel-6.active,
#guidance-panel-7.active {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  padding: 0;
  color: white;
}

/* --- Individual Panel Colors --- */
#guidance-panel-0.active {
  background: #059669;
  /* Emerald 600 - Research */
}

#guidance-panel-1.active {
  background: #7c3aed;
  /* Violet 600 - Counsellors */
}

#guidance-panel-2.active {
  background: #ea580c;
  /* Orange 600 - Application */
}

#guidance-panel-3.active {
  background: #0ea5e9;
  /* Sky 500 - Financial Support */
}

#guidance-panel-4.active {
  background: #db2777;
  /* Pink 600 - English Skills */
}

#guidance-panel-5.active {
  background: #16a34a;
  /* Green 600 - Getting Accepted */
}

#guidance-panel-6.active {
  background: #4f46e5;
  /* Indigo 600 - Student Visa */
}

#guidance-panel-7.active {
  background: #ca8a04;
  /* Yellow 600 - Live Your Dream */
}

/* Ensure Text is Always White on Colored Backgrounds */
.guidance-panel.active .guidance-text-wrapper,
.guidance-panel.active .guidance-text-wrapper h2,
.guidance-panel.active .guidance-text-wrapper p {
  color: #ffffff;
  z-index: 10;
}

.guidance-panel.active .guidance-text-wrapper p {
  text-align: justify;
}

/* Ensure Images have the White Border & Shadow */
.guidance-panel.active .guidance-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  right: 0;
  /* Reset offset */
  background: #f3f4f6;
  z-index: 5;
  margin: auto;
  /* Center in grid cell */
  display: block;
}

.guidance-panel.active .guidance-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-right: 40px;
}

/* --- Universal Animation Overrides for Colored Backgrounds --- */
/* Make all background animations white/transparent */

.guidance-panel.active .concentric-ring {
  color: rgba(255, 255, 255, 0.2);
  /* Light transparent white */
  opacity: 0.3;
  border-color: rgba(255, 255, 255, 0.3);
}

/* Adjust Positions for rings */
.guidance-panel.active .concentric-top {
  top: -40px;
  left: -20px;
}

.guidance-panel.active .concentric-bottom {
  bottom: -40px;
  right: -20px;
}

/* ============================================================
   AUTO-RESPONSIVE MASTER MEDIA QUERIES (CONSOLIDATED)
   Targeting Smartphones, Phablets, Tablets, and Desktops
   ============================================================ */

/* --- 1. EXTRA WIDE SCREENS (1440px+) --- */
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}

/* --- 2. STANDARD DESKTOPS & LAPTOPS (1025px - 1439px) --- */
@media screen and (max-width: 1439px) {
  .container {
    max-width: 1200px;
  }
}

/* --- 3. TABLETS & SMALL LAPTOPS (769px - 1024px) --- */
@media screen and (max-width: 1024px) {
  :root {
    --section-padding: 4rem 0;
    --container-padding: 2rem;
  }

  .container {
    padding: 0 25px;
  }

  .section {
    padding: 70px 0;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    gap: 1.25rem;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  /* Guidance tablet layout */
  .guidance-layout {
    flex-direction: column;
  }

  .guidance-menu {
    width: 100%;
    display: flex;
    overflow-x: auto;
    border-right: none;
    border-bottom: 2px solid var(--border-color);
    padding: 15px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 16px;
  }

  .guidance-menu::-webkit-scrollbar {
    display: none;
  }

  .guidance-item {
    white-space: nowrap;
    border-bottom: none;
    padding: 12px 24px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid var(--border-color);
  }

  .guidance-item.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
  }

  .guidance-panel.active {
    grid-template-columns: 1fr !important;
    text-align: center;
    padding: 40px 20px;
  }

  .footer-links-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

/* --- 4. LARGE SMARTPHONES & VERTICAL TABLETS (481px - 768px) --- */
@media screen and (max-width: 768px) {
  :root {
    --section-padding: 3rem 0;
    --container-padding: 1.25rem;
  }

  body {
    padding-top: 70px;
  }

  /* Navigation Mobile Overlay */
  .mobile-menu-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    font-size: 1.15rem;
    color: var(--text-main);
    cursor: pointer;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    flex-direction: column;
    padding: 90px 1.5rem 40px;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 15px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    display: flex !important;
    align-items: flex-start;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.05rem;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid #f3f4f6;
  }

  /* Hero adjustments for 768px */
  .hero-main-title {
    font-size: 2.5rem;
  }

  .hero-subtext {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-banner {
    height: 350px;
  }

  /* Grid Reset */
  .grid-2,
  .grid-3,
  .grid-4,
  .highlights-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }

  .cta-buttons-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .eli-cta-btn,
  .explore-colleges-btn {
    width: 100%;
    justify-content: center;
  }

  .highlights-section {
    padding: 2.5rem 0;
  }

  .highlight-card {
    padding: 1.25rem;
  }

  .footer-links-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
  }
}

/* --- 5. SMART MOBILES (Up to 480px) --- */
@media screen and (max-width: 480px) {
  :root {
    --section-padding: 3rem 0;
    --container-padding: 1.25rem;
    --container-width: 100%;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 60px 0;
  }

  h1 {
    font-size: 2.1rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .nav-logo {
    height: 38px;
  }

  .hero-banner {
    height: clamp(200px, 60vw, 320px);
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
    width: 100%;
  }

  .highlight-card {
    padding: 1.25rem 1rem;
  }

  .highlight-icon {
    font-size: 1.75rem;
  }

  .nav-links.active {
    padding: 100px 20px 40px;
    gap: 20px;
  }

  .guidance-img {
    width: 180px;
    height: 180px;
  }

  /* Component specific overrides */
  .eli-country-grid,
  .country-grid {
    grid-template-columns: 1fr !important;
  }
}

/* --- 6. TINY SMARTPHONES (Up to 360px) --- */
@media screen and (max-width: 360px) {
  h1 {
    font-size: 1.85rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .floating-whatsapp {
    width: 46px;
    height: 46px;
    right: 12px;
    bottom: 12px;
  }
}

/* Print Styles */
@media print {

  .navbar,
  .floating-whatsapp,
  .mobile-menu-btn {
    display: none !important;
  }

  body {
    padding-top: 0;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }
}

/* Fix for horizontal scroll & image scaling */
img,
video,
iframe,
canvas {
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* ===================================================
   SCHOLARSHIP ASSESSMENT CARD STYLES
   =================================================== */
.scholarship-assessment-card {
  padding: 32px !important;
  gap: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%) !important;
  border: 1.5px solid rgba(37, 99, 235, 0.12) !important;
  box-shadow: 0 20px 50px -15px rgba(37, 99, 235, 0.08) !important;
  animation: pulseGlow 4s infinite !important;
}

.scholarship-assessment-card:hover {
  transform: translateY(-12px) scale(1.01) !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
  box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.15) !important;
}

@media (max-width: 768px) {
  .scholarship-assessment-card {
    padding: 18px !important;
  }
}

/* Hide default card hover arrow */
.scholarship-assessment-card::after {
  display: none !important;
}

.assessment-header {
  display: flex;
  align-items: center;
  width: 100%;
}

.assessment-title {
  font-weight: 700 !important;
  font-size: 1.25rem !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #123b8c, #0fb9c8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.assessment-title span {
  -webkit-text-fill-color: initial;
  background: none;
  font-size: 1.4rem;
}

.assessment-desc {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0 !important;
  color: #374151;
  font-size: 0.95rem;
}

.assessment-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-badge {
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
}

.list-text {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #4b5563;
  font-weight: 500;
}

.countries-line {
  background: rgba(37, 99, 235, 0.06);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #123b8c;
  margin: 4px 0;
  line-height: 1.4;
  border: 1px solid rgba(18, 59, 140, 0.1);
}

.assessment-cta {
  width: 100%;
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 60%, #ffa500 100%);
  color: white !important;
  padding: clamp(14px, 2.5vw, 18px) clamp(10px, 3vw, 25px);
  border-radius: clamp(12px, 2vw, 16px);
  text-align: center;
  font-weight: 800;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  min-height: clamp(48px, 6vw, 60px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
  margin-top: auto;
  text-transform: none;
  letter-spacing: -0.2px;
  position: relative;
  overflow: hidden;
  white-space: normal;
  /* Allow wrap for long text on tiny screens */
}

.assessment-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.25) 50%,
      transparent 100%);
  animation: shimmer 3s infinite;
}

.scholarship-assessment-card:hover .assessment-cta {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
  background: linear-gradient(135deg, #ff7a00 0%, #ffa500 100%);
}

.scholarship-assessment-card:active .assessment-cta {
  transform: translateY(0);
}

/* ===================================================
   FREE RESOURCE CARDS (STANDARD) & ICONS
   =================================================== */
.card-free-resource {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1;
}

.card-free-resource::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #34d399);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
  border-radius: 24px 24px 0 0;
}

.card-free-resource:hover {
  transform: translateY(-8px);
  border-color: #10b981;
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.1);
}

.card-free-resource:hover::before {
  transform: scaleX(1);
}

.card-free-resource h3 {
  color: #0f172a;
  font-weight: 800;
  font-size: 1.4rem;
}

.card-free-resource p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
}

.resource-icon {
  font-size: 3rem;
  background: #f8fafc;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  margin: 0 auto 1.5rem auto;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f1f5f9;
}

.card-free-resource:hover .resource-icon {
  background: rgba(16, 185, 129, 0.1);
  transform: scale(1.15) rotate(5deg);
  border-color: rgba(16, 185, 129, 0.3);
}

.resource-icon.featured-icon {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.card-featured:hover .resource-icon.featured-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.15) rotate(-5deg);
}

/* ===================================================
   FEATURED CARD HIGHLIGHTING & ANIMATION
   =================================================== */
/* PREMIUM FEATURED CARD EXPEREINCE */
@keyframes smoothGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.card.card-featured {
  background: linear-gradient(-45deg, #0f2027, #203a43, #2c5364);
  background-size: 400% 400%;
  animation: smoothGradient 12s ease infinite;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  position: relative !important;
  transform: scale(1.02) !important;
  z-index: 1 !important;
  box-shadow: 0 20px 40px rgba(15, 32, 39, 0.4) !important;
  color: white !important;
  /* Forces all text inside to be white by default */
}

.card.card-featured::before {
  content: "" !important;
  position: absolute !important;
  top: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background: radial-gradient(circle at top right,
      rgba(255, 255, 255, 0.1),
      transparent 50%) !important;
  border-radius: inherit !important;
  z-index: 0 !important;
  pointer-events: none;
}

.card-featured h3 {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
  color: #ffffff !important;
  font-weight: 800 !important;
  margin-top: 0.5rem !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  z-index: 1;
  position: relative;
}

.card-featured p {
  color: #e2e8f0 !important;
  /* Lighter grey for description text */
  z-index: 1;
  position: relative;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.card-featured .exam-points-list li {
  color: #f8fafc !important;
  /* Ensure list items are readable */
  z-index: 1;
  position: relative;
}

.card-featured .btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #2563eb) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
  font-weight: 700 !important;
  z-index: 1;
  position: relative;
  transition: all 0.3s ease;
}

.card-featured .btn-primary:hover {
  background: linear-gradient(135deg, #38bdf8, #3b82f6) !important;
  box-shadow: 0 8px 25px rgba(56, 189, 248, 0.4) !important;
  transform: translateY(-2px);
}

.card-featured:hover {
  transform: scale(1.04) translateY(-5px) !important;
  box-shadow: 0 30px 60px rgba(15, 32, 39, 0.6) !important;
}

.card-featured .tag-popular {
  background: linear-gradient(90deg, #f59e0b, #ea580c) !important;
  color: white !important;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3) !important;
  border: none !important;
  z-index: 1;
  position: relative;
}

/* ===================================================
   LAYOUT UTILITIES
   =================================================== */
.auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

/* ===================================================
   FLOATING EMOJI CTA BUTTONS
   =================================================== */
.btn-premium-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff !important;
  background: linear-gradient(135deg, #1e3a8a 0%, #06b6d4 100%);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(6, 182, 212, 0.3);
  overflow: hidden;
  z-index: 1;
  font-family: 'Poppins', 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.btn-premium-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: all 0.6s ease;
  z-index: -1;
}

.btn-premium-cta:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.4);
  background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
  color: #ffffff !important;
}

.btn-premium-cta:hover::before {
  left: 100%;
}

.btn-premium-cta .btn-emoji {
  font-size: 1.4rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
}

.btn-premium-cta:hover .btn-emoji {
  transform: scale(1.2) translateX(3px) rotate(-5deg);
}

/* Outline Variant */
.btn-premium-outline {
  background: #ffffff;
  color: #1e3a8a !important;
  border: 2px solid #06b6d4;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-premium-outline:hover {
  background: #f0fdfa;
  color: #06b6d4 !important;
  border-color: #0891b2;
  box-shadow: 0 15px 30px rgba(6, 182, 212, 0.15);
}

/* Auto responsive adjustments */
@media (max-width: 768px) {
  .btn-premium-cta {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.05rem;
    justify-content: center;
  }
}

/* ===================================================
   AUTO-RESPONSIVE REFINEMENTS
   =================================================== */

/* Tablet & Mobile Refinements (992px and down) */
@media screen and (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(auto-fit,
        minmax(min(100%, 300px), 1fr)) !important;
  }

  .grid-4 {
    grid-template-columns: repeat(auto-fit,
        minmax(min(100%, 280px), 1fr)) !important;
  }

  .card.card-featured {
    transform: none !important;
    /* Scale can be tricky on tablets */
  }
}

/* Mobile Specific (768px and down) */
@media screen and (max-width: 768px) {
  .assessment-title {
    font-size: 1.15rem !important;
  }

  .assessment-cta {
    /* Fluid clamp handles this now, keeping it clean */
    letter-spacing: 0;
  }

  .countries-line {
    font-size: 0.8rem !important;
    padding: 8px 10px !important;
  }

  .list-text {
    font-size: 0.88rem !important;
  }
}

/* Tiny Screens (480px and down) */
@media screen and (max-width: 480px) {
  .scholarship-assessment-card {
    padding: 20px 16px !important;
  }

  .assessment-header {
    flex-wrap: wrap;
  }

  .exam-points-list li {
    font-size: 0.85rem !important;
    line-height: 1.3 !important;
  }

  .card-featured {
    margin-bottom: 20px;
  }
}

/* High-DPI Desktop (1440px plus) */
@media screen and (min-width: 1440px) {
  .container {
    max-width: 1320px;
  }
}

/* Ensure all cards are flexible height */
.card {
  height: auto !important;
  min-height: 100%;
}

/* Force better text wrapping for emoji + text combos */
.list-item,
.exam-points-list li {
  word-break: break-word;
}

/* ===== PREMIUM FREE SESSION BUTTON ===== */
/* ===== PREMIUM FREE SESSION BUTTON ===== */
.btn-consultation {
  background: linear-gradient(90deg, #ff7500 0%, #ffb03a 100%);
  color: #ffffff !important;
  padding: clamp(10px, 2vw, 14px) clamp(20px, 4vw, 36px) !important;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem) !important;
  font-weight: 800 !important;
  border-radius: 50px !important;
  border: none !important;
  box-shadow:
    0 8px 16px rgba(255, 120, 0, 0.3),
    inset 0 3px 2px rgba(255, 255, 255, 0.5),
    inset 0 -2px 4px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none !important;
  margin-left: clamp(0px, 2vw, 15px);
  text-transform: none;
  letter-spacing: 0.5px;
  z-index: 1;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-consultation::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.6),
      transparent);
  transition: left 0.9s ease;
  z-index: 2;
}

.btn-consultation:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow:
    0 15px 25px rgba(255, 120, 0, 0.4),
    inset 0 3px 2px rgba(255, 255, 255, 0.6) !important;
  background: linear-gradient(90deg, #ff8119 0%, #ffbb56 100%);
}

.btn-consultation:hover::before {
  left: 100%;
}

.btn-consultation:active {
  transform: translateY(-2px) scale(0.98);
}

@keyframes pulse-orange-premium {
  0% {
    box-shadow:
      0 0 0 0 rgba(255, 107, 0, 0.7),
      0 8px 25px rgba(255, 107, 0, 0.3);
  }

  70% {
    box-shadow:
      0 0 0 20px rgba(255, 107, 0, 0),
      0 8px 25px rgba(255, 107, 0, 0.3);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(255, 107, 0, 0),
      0 8px 25px rgba(255, 107, 0, 0.3);
  }
}

@keyframes float-btn {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  33% {
    transform: translateY(-3px) rotate(0.5deg);
  }

  66% {
    transform: translateY(1px) rotate(-0.5deg);
  }
}

.btn-consultation {
  animation:
    pulse-orange-premium 3s infinite,
    float-btn 5s infinite ease-in-out;
}

/* RESPONSIVE AUTO-ADAPTATION */
@media (max-width: 1100px) {
  .btn-consultation {
    padding: 10px 24px !important;
    font-size: 0.95rem !important;
  }
}

@media (max-width: 768px) {
  .btn-consultation {
    display: flex !important;
    width: calc(100% - 30px) !important;
    margin: 20px auto 10px !important;
    padding: 18px 24px !important;
    font-size: 1.1rem !important;
    border-radius: 18px !important;
    box-shadow: 0 12px 30px rgba(255, 107, 0, 0.35);
    order: 10;
    /* Ensure it stays at the bottom or specific place in flex/grid */
  }

  .nav-links .btn-consultation {
    margin-top: 30px !important;
    margin-bottom: 20px !important;
  }
}

@media (max-width: 480px) {
  .btn-consultation {
    padding: 16px 20px !important;
    font-size: 1rem !important;
    width: 100% !important;
    border-radius: 15px !important;
  }
}

/* HIGH-RES DESKTOP */
@media (min-width: 1600px) {
  .btn-consultation {
    padding: 18px 48px !important;
    font-size: 1.25rem !important;
  }
}

/* ============================================================
   COMPREHENSIVE AUTO-RESPONSIVE OVERHAUL
   Covers: Navigation, Hero, Guidance, Services, Jobs, Footer
   Breakpoints: 1200px | 1024px | 768px | 600px | 480px | 360px
   ============================================================ */

/* ── Global helpers ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video,
iframe,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

/* ── Ensure nav overlay has a dark backdrop on mobile ── */
@media screen and (max-width: 768px) {

  /* Full-screen overlay backdrop when mobile nav is open */
  .nav-links.active::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
    animation: fadeInBackdrop 0.3s ease;
  }

  @keyframes fadeInBackdrop {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  /* Logo size on mobile */
  .logo {
    font-size: 1.3rem;
    gap: 8px;
  }

  .nav-logo {
    height: 38px;
  }
}

/* ── HERO HEADER SECTION ── */
@media screen and (max-width: 768px) {
  .hero-header-section {
    padding: 3rem 1rem 2rem;
    text-align: center;
  }

  .hero-main-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    letter-spacing: -0.03em;
  }

  .hero-subtext {
    font-size: clamp(0.95rem, 3.5vw, 1.1rem);
    margin-bottom: 1.75rem;
  }

  .hero-promo-pill-new {
    padding: 12px 20px;
    min-height: 50px;
  }

  .promo-text-new {
    font-size: 0.95rem;
  }
}

@media screen and (max-width: 480px) {
  .hero-header-section {
    padding: 2.5rem 0.75rem 1.5rem;
  }

  .hero-main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .hero-promo-pill-new {
    border-radius: 50px;
    gap: 10px;
  }
}

/* ── HERO BANNER ── */
@media screen and (max-width: 768px) {
  .hero-banner {
    height: clamp(200px, 55vw, 360px);
  }
}

@media screen and (max-width: 480px) {
  .hero-banner {
    height: clamp(160px, 50vw, 240px);
  }
}

/* ── CTA BUTTONS SECTION ── */
@media screen and (max-width: 768px) {
  .cta-buttons-section {
    padding: 28px 0;
  }

  .cta-buttons-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 0 1rem;
  }

  .eli-cta-btn,
  .explore-colleges-btn {
    width: 100% !important;
    justify-content: center;
    text-align: center;
  }
}

/* ── SERVICES PREMIUM GRID (index.html) ── */
@media screen and (max-width: 960px) {
  .services-premium-grid {
    grid-template-columns: 1fr !important;
    max-width: 480px !important;
    margin: 0 auto !important;
  }
}

@media screen and (max-width: 600px) {
  .services-premium-section {
    padding: 40px 0 !important;
  }

  .svc-card {
    padding: 28px 20px 24px !important;
  }
}

/* ── GUIDANCE SECTION ── */
/* Tablet: stack menu horizontally, hide image */
@media screen and (max-width: 1024px) {
  .guidance-panel.active .guidance-image-wrapper {
    display: none !important;
  }

  #guidance-panel-0.active,
  #guidance-panel-1.active,
  #guidance-panel-2.active,
  #guidance-panel-3.active,
  #guidance-panel-4.active,
  #guidance-panel-5.active,
  #guidance-panel-6.active,
  #guidance-panel-7.active {
    grid-template-columns: 1fr !important;
  }

  .guidance-text-wrapper {
    padding: 32px 24px !important;
  }

  .guidance-text-wrapper h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem) !important;
  }
}

/* Mobile: guidance menu pills wrap */
@media screen and (max-width: 600px) {
  .guidance-menu {
    flex-wrap: nowrap;
    padding: 10px;
    gap: 8px !important;
  }

  .guidance-item {
    font-size: 0.85rem;
    padding: 8px 14px !important;
  }

  .guidance-text-wrapper {
    padding: 24px 16px !important;
  }

  .guidance-text-wrapper h2 {
    font-size: 1.4rem !important;
    margin-bottom: 1rem !important;
  }

  .guidance-text-wrapper p {
    font-size: 0.9rem !important;
  }
}

/* ── HIGHLIGHTS SECTION ── */
@media screen and (max-width: 768px) {
  .highlights-section {
    padding: 2rem 0;
  }

  .highlights-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .highlight-card {
    padding: 1.1rem 1rem;
  }

  .highlight-stat {
    font-size: 0.95rem;
  }

  .highlight-desc {
    font-size: 0.82rem;
  }
}

/* ── STATS SECTION ── */
@media screen and (max-width: 768px) {
  .grid.grid-4.text-center {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .grid.grid-4.text-center {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem;
  }

  .stats-tagline {
    font-size: 0.9rem;
    margin-top: 1.5rem;
  }
}

/* ── TESTIMONIALS HEADER ── */
@media screen and (max-width: 600px) {
  .testimonials-header {
    padding: 0 0.75rem;
    gap: 0.4rem;
  }

  .testimonials-heading {
    font-size: clamp(1.1rem, 5vw, 1.6rem);
  }

  .t-nav-btn {
    padding: 6px 12px;
    font-size: 0.7rem;
  }
}

/* ── JOBS PAGE ── */
@media screen and (max-width: 768px) {
  .jobs-hero {
    padding: 80px 0 50px !important;
  }

  .jobs-hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.8rem) !important;
    margin-bottom: 1rem !important;
  }

  .jobs-hero-content .hero-sub {
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .highlight-checklist {
    padding: 3rem 1.25rem 2.5rem !important;
    border-radius: 24px !important;
    margin: 3rem 0 !important;
  }

  .checklist-grid {
    gap: 1rem !important;
  }

  .check-item {
    font-size: 0.92rem !important;
    padding: 1rem 1.1rem !important;
  }

  .job-category-title {
    font-size: 1.35rem !important;
  }

  .flag-card-text h4 {
    font-size: 1.05rem !important;
  }

  .flag-card-text p {
    font-size: 0.85rem !important;
  }

  .flag-icon-large {
    font-size: 2.5rem !important;
  }

  .career-btn-card {
    padding: 1.75rem 1rem !important;
  }

  .career-icon {
    width: 64px !important;
    height: 64px !important;
    font-size: 2.2rem !important;
  }
}

@media screen and (max-width: 480px) {
  .jobs-hero {
    padding: 70px 0 40px !important;
  }

  .rule-card {
    padding: 1.5rem 1rem !important;
  }

  .rule-icon {
    font-size: 2.2rem !important;
  }

  .rule-card h3 {
    font-size: 1.1rem !important;
  }

  .job-btn-card {
    font-size: 0.9rem !important;
    padding: 1rem 1.1rem !important;
  }

  .job-btn-card span.icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.2rem !important;
  }

  .highlight-checklist {
    padding: 2.5rem 1rem 2rem !important;
    border-radius: 20px !important;
  }
}

/* ── RESUME CTA FORM SECTION (jobs.html) ── */
@media screen and (max-width: 768px) {
  .resume-content {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .resume-form-container {
    padding: 1.5rem !important;
  }
}

@media screen and (max-width: 480px) {
  .resume-section {
    border-radius: 24px !important;
    padding: 2rem 1rem !important;
  }

  .form-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
}

/* ── EXAMS PAGE hero ── */
@media screen and (max-width: 768px) {
  .auto-grid {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
}

/* ── SERVICES PAGE ── */
@media screen and (max-width: 768px) {

  .grid.grid-2,
  .grid.grid-3 {
    grid-template-columns: 1fr !important;
    gap: 1.25rem;
  }
}

/* ── FOOTER RESPONSIVE ── */
@media screen and (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links-wrapper {
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
    text-align: left;
  }

  .footer-map-card {
    max-width: 100%;
  }

  .footer-contact-card {
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .main-footer {
    padding: 28px 0 16px;
  }

  .footer-logo {
    font-size: 1.4rem;
  }

  .footer-bottom {
    font-size: 0.82rem;
    padding-top: 1.25rem;
  }
}

/* ── ELIGIBILITY MODAL FULL RESPONSIVE ── */
@media screen and (max-width: 480px) {
  .eli-modal-card {
    padding: 1.1rem 0.9rem !important;
    border-radius: 16px !important;
  }

  .eli-country-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .eli-flag-card {
    min-height: 90px !important;
  }

  .eli-flag-img-wrap {
    height: 45px !important;
  }

  .eli-flag-label {
    font-size: 0.75rem !important;
    padding: 5px 4px !important;
  }

  .eli-btn-wrapper {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .eli-btn-wrapper .btn {
    width: 100% !important;
  }
}

/* ── CARD COMPONENT ── */
@media screen and (max-width: 768px) {
  .card {
    padding: 1.75rem 1.25rem !important;
  }

  .card-icon {
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }
}

/* ── TOUCH DEVICE HOVER IMPROVEMENTS ── */
@media (hover: none) and (pointer: coarse) {

  /* Disable translateY hover on touch devices for smoother UX */
  .card:hover,
  .highlight-card:hover,
  .svc-card:hover,
  .rule-card:hover,
  .career-btn-card:hover,
  .flag-card-horizontal:hover {
    transform: none;
  }

  /* Keep still important effects */
  .job-btn-card:hover {
    transform: scale(1.02);
  }

  .testimonial-card:hover {
    transform: none;
  }
}

/* ── WIDE DESKTOP (1280px+) refinements ── */
@media screen and (min-width: 1280px) {
  .services-premium-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    max-width: 100% !important;
  }

  .guidance-layout {
    min-height: 500px;
  }

  #guidance-panel-0.active,
  #guidance-panel-1.active,
  #guidance-panel-2.active,
  #guidance-panel-3.active,
  #guidance-panel-4.active,
  #guidance-panel-5.active,
  #guidance-panel-6.active,
  #guidance-panel-7.active {
    grid-template-columns: 1.2fr 1fr !important;
  }

  .guidance-panel.active .guidance-image-wrapper {
    display: flex !important;
  }
}

/* ── ULTRA-WIDE (1600px+) ── */
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1480px;
  }

  .hero-main-title {
    font-size: 4.5rem;
  }
}

/* ── LANDSCAPE MOBILE TWEAKS ── */
@media screen and (max-width: 812px) and (orientation: landscape) {
  .hero-banner {
    height: clamp(180px, 35vw, 280px);
  }

  .jobs-hero {
    padding: 65px 0 35px !important;
  }

  .hero-header-section {
    padding: 2rem 1rem 1.25rem;
  }

  .nav-links {
    padding-top: 70px;
  }
}

/* ── PRINT MEDIA ── */
@media print {

  .navbar,
  .floating-whatsapp,
  .mobile-menu-btn,
  .btn-consultation,
  .ielts-modal-overlay,
  #eligibility-modal-overlay {
    display: none !important;
  }

  body {
    padding-top: 0;
  }

  .container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* ===================================================
   ULTRA-PREMIUM EXAMS UI OVERHAUL 
   =================================================== */

/* 1. Exam Tests Grid (4 columns) */
.premium-exam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.premium-exam-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.premium-exam-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 2px var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.premium-exam-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(15, 185, 200, 0.1);
}

.premium-exam-card:hover::after {
  opacity: 1;
}

.pec-icon-box {
  width: 55px;
  height: 55px;
  background: #f1fefb;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.premium-exam-card:hover .pec-icon-box {
  background: var(--primary);
}

.pec-icon {
  font-size: 1.8rem;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-exam-card:hover .pec-icon {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(2);
}

.pec-info {
  flex-grow: 1;
}

.pec-info h3 {
  font-size: 1.15rem;
  color: #0f172a;
  font-weight: 800;
  margin: 0 0 4px 0;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.pec-info p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
}

.pec-arrow {
  color: #cbd5e1;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.premium-exam-card:hover .pec-arrow {
  color: var(--primary);
  transform: translateX(4px);
}

/* 2. Promo Banners Grid */
.premium-promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

/* Promo Card Base */
.premium-promo-card {
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-promo-card:hover {
  transform: translateY(-8px);
}

/* Featured (Blue Backgound) */
.promo-card-featured {
  background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.promo-card-featured:hover {
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

.promo-card-featured .promo-text-content p {
  color: rgba(255, 255, 255, 0.9);
}

.promo-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(90deg, #f97316, #ea580c);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
  z-index: 2;
  letter-spacing: 0.5px;
}

/* Standard (Light Gray Background) */
.promo-card-standard {
  background: #f4f7f9;
  color: #0f172a;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
  border: 1px solid #e2e8f0;
}

.promo-card-standard:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.promo-card-standard .promo-text-content p {
  color: #475569;
}

/* Inner Layout */
.promo-top-content {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.promo-icon-large {
  font-size: 3rem;
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.promo-card-featured .promo-icon-large {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.promo-card-standard .promo-icon-large {
  background: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.premium-promo-card:hover .promo-icon-large {
  transform: scale(1.1) rotate(5deg);
}

.promo-text-content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  color: inherit;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.promo-text-content p {
  font-size: 1rem;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.premium-promo-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.premium-promo-points li {
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.check-icon {
  background: #10b981;
  color: white;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: bold;
}

.promo-action-area {
  margin-top: auto;
}

.btn-premium-solid {
  background: white;
  color: #2563eb;
  border: none;
  padding: 14px 34px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', 'Inter', sans-serif;
}

.promo-card-standard .btn-premium-solid {
  background: #2563eb;
  color: white;
}

.btn-premium-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.promo-card-standard .btn-premium-solid:hover {
  background: #1d4ed8;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

/* 3. Paid Packages Grid */
.premium-paid-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.premium-paid-card {
  background: #ffffff;
  border: 1px solid #f1f5f9;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.premium-paid-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.paid-card-header {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px dashed rgba(203, 213, 225, 0.5);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}

.price-suffix {
  color: #64748b;
  font-weight: 600;
  font-size: 1.1rem;
}

.pack-title {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.paid-card-body {
  flex-grow: 1;
  margin-bottom: 2.5rem;
}

.paid-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paid-features-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
  color: #334155;
  font-size: 1.1rem;
  font-weight: 500;
}

.feat-check {
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}

.paid-card-action {
  margin-top: auto;
}

.btn-paid-solid {
  border: none;
  padding: 16px 36px;
  border-radius: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', 'Inter', sans-serif;
}

.btn-paid-solid:hover {
  transform: translateY(-4px);
  filter: brightness(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsiveness overrides */
@media (max-width: 768px) {
  .premium-promo-card {
    padding: 2rem;
  }

  .promo-top-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .promo-badge {
    position: relative;
    top: 0;
    right: 0;
    display: inline-block;
    margin-bottom: 2rem;
  }

  .premium-paid-card {
    padding: 2rem 1.75rem;
  }
}

@media (max-width: 480px) {
  .promo-action-area {
    width: 100%;
  }

  .btn-premium-solid,
  .btn-paid-solid {
    width: 100%;
    text-align: center;
  }
}

/* ===================================================
   STUDY ABROAD UI (Premium Auto-Responsive)
   =================================================== */
.premium-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

.premium-country-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #eef2f6;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: left;
  outline: none;
}

.premium-country-card:focus {
  outline: none;
}

.premium-country-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.12);
  border-color: #cbd5e1;
}

.dest-img-wrap {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.premium-country-card:hover .dest-img-wrap img {
  transform: scale(1.08);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0) 60%);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.solid-overlay {
  background: rgba(37, 99, 235, 0.6) !important;
  opacity: 1 !important;
}

.premium-country-card:hover .dest-overlay {
  opacity: 0.8;
}

.dest-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.explore-all-card .dest-content {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.dest-content h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-family: 'Poppins', 'Inter', sans-serif;
}

.dest-flag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid white;
}

.dest-stats {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed #cbd5e1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #64748b;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.dest-arrow {
  color: #cbd5e1;
  font-size: 1.2rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.premium-country-card:hover .dest-stats {
  color: #2563eb;
}

.premium-country-card:hover .dest-arrow {
  color: #2563eb;
  transform: translateX(4px);
}

/* ===================================================
   POST-GRADUATION VISA UI (Premium Auto-Responsive)
   =================================================== */
.premium-visa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 3rem 0;
  width: 100%;
}

.premium-visa-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  text-align: left;
  outline: none;
  gap: 1.5rem;
  position: relative;
}

.premium-visa-card:focus {
  outline: none;
}

.premium-visa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.08);
  border-color: #bfdbfe;
}

/* Simulated Right Blue Accent like the screenshot */
.premium-visa-card::after {
  content: '';
  position: absolute;
  top: 10%;
  bottom: 10%;
  right: 0;
  width: 4px;
  background: #3b82f6;
  border-radius: 4px 0 0 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-visa-card:hover::after {
  opacity: 1;
}

.visa-flag-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #e2e8f0;
  background: #f8fafc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.premium-visa-card:hover .visa-flag-img {
  transform: scale(1.05) rotate(3deg);
}

.visa-card-text {
  display: flex;
  flex-direction: column;
}

.visa-card-text h4 {
  margin: 0 0 6px 0;
  font-size: 1.2rem;
  color: #0f172a;
  font-weight: 800;
  font-family: 'Poppins', 'Inter', sans-serif;
  letter-spacing: -0.2px;
}

.visa-type {
  color: #3b82f6;
  font-size: 0.95rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .premium-visa-card {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .visa-flag-img {
    width: 48px;
    height: 48px;
  }

  .visa-card-text h4 {
    font-size: 1.1rem;
  }

  .visa-type {
    font-size: 0.85rem;
  }
}