/* ===================================================================
   ARRANGED CSS (SAFE MODE)
   GUARANTEES:
   - NO rules changed
   - NO selectors changed
   - NO values changed
   - NO rule order changed
   - ONLY documentation comments added
   ===================================================================

   CONTENT INDEX (for readability only):
   1) Theme Variables
   2) Reset / Base
   3) Layout / Containers
   4) Header / Navbar
   5) Banner / Hero
   6) Forms
   7) Content Sections
   8) Cards
   9) Buttons & CTAs
   10) Components
   11) Chatbot
   12) Footer
   13) Utilities / Helpers
   14) Animations
   15) Media Queries

=================================================================== */

:root {
  /* ===== BRAND COLORS ===== */
  --primary: #ED3500;        /* CTA / buttons / highlights */
  --primary-light: #F25A2A;  /* hover / soft accent */
  --primary-dark: #B82800;   /* strong emphasis */

  --accent: #BAD7E9;         /* secondary blue */
  --accent-light: #D6E9F5;

  /* ===== BACKGROUNDS ===== */
  --bg: #FCFFE7;             /* page background */
  --bg-soft: #FCFCFC;        /* cards / sections */

  /* ===== TEXT ===== */
  --text-main: #000000;      /* main text */
  --text-muted: #444444;    /* muted text */

  /* ===== BORDERS & SHADOWS ===== */
  --border-soft: rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.12);
}



/* Global reset and base */
*,
*::before,
*::after {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text-main);
}

/* Generic helpers */
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header / Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 18px;
  background: linear-gradient(90deg, #111827, #1f2937);
  color: #f9fafb;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 46px;
  width: auto;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: #e5e7eb;
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger-menu {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-menu .bar {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #f9fafb;
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 60px;
    right: 12px;
    left: 12px;
    background: #111827;
    border-radius: 12px;
    padding: 10px 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: 0.25s ease;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hamburger-menu {
    display: flex;
  }
}

/* Banner (shared) */
.banner {
  background: transparent;
}

.clean-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  align-items: center;
  gap: 26px;
  max-width: 100%;
  margin: 0 auto 40px;
  padding: 26px 18px;
}


.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.banner-text {
  position: absolute;
  inset: 24px 24px auto 24px;
  z-index: 1;
  color: #f9fafb;
  max-width: 420px;
}

.banner-text h1 {
  font-size: 2.15rem;
  margin: 0 0 8px;
}

.banner-text p {
  margin: 0;
  font-size: 0.98rem;
  opacity: 0.95;
}

/* Banner form */
.inquiry-form {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-soft);
}

.inquiry-form h2 {
  font-size: 1.3rem;
  text-align: center;
  margin: 0 0 10px;
  color: var(--text-main);
}

.inquiry-form form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 10px 11px;
  border-radius: 10px;
  border: 1px solid rgba(209, 213, 219, 1);
  font-size: 0.94rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inquiry-form textarea {
  min-height: 80px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.3);
}

.inquiry-form button {
  padding: 11px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.25);
  transition: 0.2s ease;
}

.inquiry-form button:hover {
  transform: translateY(-1px);
  opacity: 0.97;
}

/* Banner responsive */
@media (max-width: 900px) {
  .clean-banner {
    grid-template-columns: minmax(0, 1fr);
    padding: 18px 14px 24px;
  }



  .banner-text {
    inset: 18px 18px auto 18px;
  }
}

/* Content sections */
section {
  padding: 32px 0;
}

.postgraduate-info,
.undergraduate-info {
  background: #accdff;
}

.postgraduate-info h2,
.undergraduate-info h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.postgraduate-info p,
.undergraduate-info p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.info-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(209, 213, 219, 1);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.info-card i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}

/* UG lists from user */
.undergraduate-program-list,
.postgraduate-program-list,
.ug-btech-list,
.ug-partner-universities {
  padding: 28px 0;
}

.undergraduate-program-list h2,
.postgraduate-program-list h2,
.ug-btech-list h2,
.ug-partner-universities h2 {
  font-size: 1.75rem;
  margin-bottom: 6px;
}

.undergraduate-program-list p,
.postgraduate-program-list p,
.ug-btech-list p,
.ug-partner-universities p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.college-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.college-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 14px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.09);
  transition: 0.25s ease;
}

.college-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
}

.college-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

.college-card ul {
  margin: 0;
  padding-left: 16px;
  color: var(--text-muted);
  font-size: 0.94rem;
}

/* Why choose us */
.why-choose-us {
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.why-choose-us-container {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.reason {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  width: min(260px, 100%);
  border: 1px solid rgba(209, 213, 219, 1);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.reason img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 6px;
}

/* Process */
.our-process {
  text-align: center;
}

.process-container {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.step {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 14px;
  width: min(230px, 100%);
  border: 1px solid rgba(209, 213, 219, 1);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary);
}

/* Testimonials */
.testimonials {
  text-align: center;
}

.testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}

.testimonial {
  border-radius: 16px;
  padding: 16px;
  max-width: 280px;
  border: 1px solid rgba(209, 213, 219, 1);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
}

.testimonial img {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 999px;
  margin: 0 auto 8px;
}

/* Universities */
.universities {
  text-align: center;
  background: #333d4c;
}

.university-logos {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.university-logos img {
  height: 40px;
  object-fit: contain;
}

/* Footer */
footer {
  background: #111827;
  color: #e5e7eb;
  padding: 26px 0 16px;
  margin-top: 24px;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 18px;
}

.footer-logo {
  height: 32px;
  margin-bottom: 8px;
}

.footer-section h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.footer-section p,
.footer-section a {
  font-size: 0.9rem;
  color: #d1d5db;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section li {
  margin-bottom: 4px;
}

.social-media a {
  margin-right: 8px;
}

.footer-bottom {
  margin-top: 10px;
  text-align: center;
  font-size: 0.82rem;
  color: #9ca3af;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* Highlights */
.highlights .highlight-grid,
.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.highlight-card,
.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.highlight-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.25);
}

.faq .faq-item {
  margin-bottom: 15px;
  padding: 15px;
  background: #f7f7f7;
  border-radius: 12px;
}

.faq h4 {
  margin: 0;
}



.feature-card:hover,
.highlight-card:hover,
.testimonial-card:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(15, 23, 42, 0.9)) !important;
}

/* COUNTRY BLOCKS */
.country-section {
  padding: 60px 0;
}

.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

/*.country-card {*/
/*  padding: 20px;*/
/*  border-radius: 16px;*/
/*  background: var(--premium-card);*/
/*  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);*/
/*  border: 1px solid rgba(255, 255, 255, 0.06);*/
/*  transition: 0.3s;*/
/*  text-align: center;*/
/*}*/

/*.country-card i {*/
/*  font-size: 32px;*/
/*  color: var(--premium-accent);*/
/*  margin-bottom: 10px;*/
/*}*/

.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(15, 23, 42, 0.9));
}





/* Glassmorphism Form */
.inquiry-form {
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* === GOD-LEVEL PREMIUM EXTRAS === */
/* Floating abstract shapes */
.floating-shapes {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.floating-shapes::before,
.floating-shapes::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, rgba(56, 189, 248, 0.45), transparent 60%);
  filter: blur(2px);
  opacity: 0.55;
  animation: floatBlob 18s infinite alternate ease-in-out;
}

.floating-shapes::after {
  top: auto;
  bottom: -120px;
  right: -160px;
  background: radial-gradient(circle at 70% 70%, rgba(248, 250, 252, 0.16), transparent 60%);
  animation-duration: 22s;
}

@keyframes floatBlob {
  0% {
    transform: translate(-120px, -40px) scale(1);
  }

  50% {
    transform: translate(60px, 80px) scale(1.08);
  }

  100% {
    transform: translate(140px, -60px) scale(1.02);
  }
}

/* Sticky glass header on scroll */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.85));
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

header.header-scrolled {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.55);
  background: linear-gradient(to right, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.92));
}

/* Floating enquiry FAB */
.enquiry-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 0% 0%, rgba(248, 250, 252, 0.32), rgba(15, 23, 42, 0.98));
  color: #e5e7eb;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.6);
  backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  z-index: 9999;

}

.enquiry-fab i {
  font-size: 1.1rem;
}

.enquiry-fab:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.75);
  background: radial-gradient(circle at 0% 0%, rgba(248, 250, 252, 0.44), rgba(15, 23, 42, 1));
}

@media (max-width: 600px) {
  .enquiry-fab span {
    display: none;
  }
}

/* Minor typography polish */
h1,
h2,
h3,
h4 {
  letter-spacing: 0.01em;
}


/* Mega menu */
.has-mega {
  position: relative;
}

.mega-menu {
  position: absolute;
  left: 0;
  top: 100%;
  padding: 18px 22px;
  background: rgba(15, 23, 42, 0.98);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  display: none;
  gap: 24px;
  z-index: 40;
}

.mega-menu .mega-column {
  min-width: 180px;
  display: flex;
  flex-direction: column;
}

.mega-menu .mega-column h4 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #e5e7eb;
}

.mega-menu a {
  font-size: 0.86rem;
  color: #9ca3af;
  text-decoration: none;
  padding: 2px 0;
}

.mega-menu a:hover {
  color: #fbbf24;
}

.has-mega:hover .mega-menu {
  display: grid;
}

/* Mobile support for mega menu */
@media (max-width: 900px) {
  .mega-menu {
    position: static;
    margin-top: 6px;
    box-shadow: none;
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.35);
    display: none;
  }

  .has-mega.open .mega-menu {
    display: block;
  }
}

/* Chatbot */
.chatbot-widget {
  position: fixed;
  right: 120px;
  /* Previously 90px → Increased space */
  bottom: 20px;
  z-index: 9999;
}

.chatbot-toggle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: none;
  background: radial-gradient(circle at 30% 0%, #38BDF8, #0F172A);
  color: #f9fafb;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.chatbot-window {
  position: absolute;
  right: 0;
  bottom: 56px;
  width: 320px;
  max-height: 420px;
  background: rgba(15, 23, 42, 0.98);
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.chatbot-window.open {
  display: flex;
}

.chatbot-header {
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(55, 65, 81, 0.8);
  font-size: 0.9rem;
  color: #e5e7eb;
}

.chatbot-header .chatbot-close {
  border: none;
  background: transparent;
  color: #9ca3af;
  cursor: pointer;
  font-size: 1.1rem;
}

.chatbot-messages {
  flex: 1;
  padding: 10px 12px;
  overflow-y: auto;
  font-size: 0.86rem;
}

.msg {
  padding: 6px 9px;
  border-radius: 12px;
  max-width: 80%;
  margin-bottom: 6px;
}

.msg.bot {
  background: rgba(55, 65, 81, 0.9);
  color: #e5e7eb;
}

.msg.user {
  color: #0f172a;
  margin-left: auto;
   background: var(--primary);
}

.chatbot-input {
  display: flex;
  padding: 8px 10px;
  gap: 6px;
  border-top: 1px solid rgba(55, 65, 81, 0.8);
}

.chatbot-input input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 6px 11px;
  font-size: 0.86rem;
  background: #020617;
  color: #e5e7eb;
}

.chatbot-input button {
  width: 34px;
  border-radius: 999px;
  border: none;
  background: #38BDF8;
  color: #020617;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Chatbot Online Status + Improved Title */
.chatbot-title {
  display: flex;
  flex-direction: column;
}

.chatbot-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.chatbot-status {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
}

/* Typing Animation */
.typing-indicator {
  display: none;
  padding: 8px 12px;
  color: #9ca3af;
}

.typing-indicator span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 3px;
  background: #9ca3af;
  border-radius: 50%;
  animation: typing 1s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typing {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

/* Quick Suggested Questions */
.quick-questions {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.quick-questions button {
  background: rgba(148, 163, 184, 0.20);
  border: none;
  padding: 6px 12px;
  border-radius: 999px;
  color: #e5e7eb;
  cursor: pointer;
  font-size: 0.75rem;
  transition: 0.2s;
}

.quick-questions button:hover {
  background: rgba(148, 163, 184, 0.35);
  transform: translateY(-1px);
}


/* === Extra styling for Medical / Online / Blog sections === */

.section-lead {
  max-width: 720px;
  font-size: 0.98rem;
  color: #9ca3af;
  margin-top: 8px;
}

.pill-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(56, 189, 248, 0.15);
  color: #e5e7eb;
  margin-bottom: 6px;
}

.medical-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin: 20px auto 40px;
}

.medical-column h3 {
  margin-bottom: 8px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.check-list i {
  color: #22c55e;
  margin-top: 2px;
}

.info-note {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.86rem;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.info-note i {
  margin-top: 2px;
}

/* Online page tweaks */
.online-benefits {
  margin: 30px auto 40px;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin: 18px auto 30px;
}



.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.7);
  border-color: rgba(56, 189, 248, 0.8);
}

.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.15);
  color: #e5e7eb;
}

.blog-card h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.blog-card p {
  font-size: 0.9rem;
  color: #9ca3af;
}

.blog-meta {
  display: flex;
  gap: 10px;
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 8px;
}

/* Blog CTA */
.blog-cta {
  margin: 10px auto 40px;
}

.blog-cta-inner {
  padding: 18px 16px;
  border-radius: 18px;
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 1));
  border: 1px solid rgba(148, 163, 184, 0.6);
  text-align: center;
}

.blog-cta-inner p {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 10px;
}

/* === TEXT SYSTEM RESET (balanced for light sections) === */

/* Base: body already uses var(--text-main) (#111827) */
h1,
h2,
h3,
h4 {
  letter-spacing: 0.01em;
  color: var(--text-main);
}

p,
li,
span {
  color: var(--text-muted);
}

/* Keep banner text light over images */
.banner-text,
.banner-text h1,
.banner-text p {
  color: #f9fafb;
}


/* Testimonial paragraph contrast */
.testimonial-card p {
  color: #e5e7eb;
}

/* FAQ items already have dark background; ensure light text */
.faq-item h3,
.faq-item p {
  color: #e5e7eb;
}

/* Ensure university / partner lists on light background use dark text */
.university-list h2,
.university-list h3,
.university-list h4,
.partner-universities h2,
.partner-universities h3,
.partner-universities h4,
.university-list p,
.university-list li,
.partner-universities p,
.partner-universities li {
  color: var(--text-main);
}

/* Undergraduate + Postgraduate intro sections */
.undergraduate-info h2,
.postgraduate-info h2,
.undergraduate-info h3,
.postgraduate-info h3 {
  color: var(--text-main);
}

.undergraduate-info p,
.postgraduate-info p {
  color: var(--text-muted);
}

/* "Top Private Universities" & "Top MBA Colleges" headings */
.ug-btech-list h2,
.ug-btech-list h3,
.pg-mba-list h2,
.pg-mba-list h3 {
  color: var(--text-main);
}

.ug-btech-list p,
.pg-mba-list p,
.ug-btech-list li,
.pg-mba-list li {
  color: var(--text-muted);
}

/* "Why with Sye?" and similar info blocks */
.why-choose-us h2,
.why-choose-us h3,
.why-choose-us h4 {
  color: var(--text-main);
}

.why-choose-us p,
.why-choose-us li {
  color: var(--text-muted);
}

/* "What Our Students Say" generic testimonials section headings on light background */
.testimonials h2,
.testimonials h3,
.testimonials h4 {
  color: var(--text-main);
}

.testimonials p,
.testimonials span {
  color: var(--text-muted);
}



/* === UNIVERSAL TEXT SYSTEM RESET (GOOD LOOKING & SAFE) === */



/* === FIX: Missing structural styles for various sections === */

/* Primary button used in blog, thank-you, etc. */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  border: none;
  color: #F9FAFB;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.5);
  background: linear-gradient(135deg, #4F46E5, #6366F1);
}

/* Footer column layout */
.footer-section {
  margin-bottom: 18px;
}

.footer-section.about,
.footer-section.contact-info,
.footer-section.links {
  flex: 1 1 220px;
}

/* Use flexbox on footer container if not already */
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

/* Social icons row */
.social-media {
  margin-top: 8px;
}

/* About / contact blocks inside footer */
.footer-section.about p,
.footer-section.contact-info p {
  max-width: 320px;
}

/* Image strip galleries */
.image-strip {
  margin: 32px auto;
}

.image-strip h3 {
  text-align: left;
}

.image-strip-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.image-tile {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #020617;
  border: 1px solid rgba(15, 23, 42, 0.8);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.9);
}

.image-tile img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.image-tile span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  right: 10px;
  font-size: 0.86rem;
  color: #e5e7eb;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

.image-tile:hover img {
  transform: scale(1.08);
}

/* Generic feature grid (for program highlights, processes, etc.) */
.feature-grid,
.online-highlights,
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.process {
  margin-top: 24px;
}

.feature-grid .card,
.feature-grid .feature-item,
.online-highlights .card,
.online-highlights .feature-item,
.process-steps .step {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 14px;
  border: 1px solid rgba(209, 213, 219, 1);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

/* Medical columns (two-column layout for medical page) */
.medical-column {
  margin-top: 18px;
}

@media (min-width: 900px) {
  .medical-column {
    display: grid;
    gap: 24px;
    align-items: flex-start;
  }
}

/* Contact info block alignment */
.contact-info p {
  margin-bottom: 4px;
}

.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.links li {
  margin-bottom: 4px;
}




header a {
  color: #ffffff !important;
}

/* Footer */
footer {
  background: var(--primary-dark) !important;
  color: #e5e7eb !important;
}

footer a {
  color: #ffffff !important;
}


/* Key cards & boxes */
.info-card,
.college-card,
.reason,
.step,
.highlight-card,
.testimonial-card,
.testimonial,
.country-card,
.program-card,
.apply-form,
.counter-card,
.blog-card {
  background: var(--bg-soft) !important;
  border: 1px solid var(--border-soft) !important;
  box-shadow: var(--shadow-soft) !important;
  color: var(--text-main) !important;
}


/* Links & nav underline */
a {
  color: var(--primary) !important;
}

a:hover {
  color: var(--accent) !important;
}

.nav-links a::after {
  background: var(--accent) !important;
}

button,
.btn-primary,
.inquiry-form button,
.enquiry-fab {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #ffffff;
  border: none;
}


button:hover,
.btn-primary:hover,
.ultra-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
}

/* Floating enquiry button */
.enquiry-fab {
  background: linear-gradient(135deg, var(--primary), var(--accent)) !important;
  color: #ffffff !important;
  border: none !important;
}

/* Banner text readable */
.banner-text,
.banner-text h1,
.banner-text p {
  color: #ffffff !important;
}




/* ================================
   FAQ SECTION – KKMU LIGHT THEME
   ================================ */
.faq-item {
  background: #FFFFFF !important;
  border: 1px solid #00336640 !important;
  /* soft academic blue border */
  border-radius: 12px !important;
  padding: 18px !important;
  color: #1A1A1A !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
}

.faq-item h4 {
  margin-bottom: 6px;
  color: #003366 !important;
  /* university blue heading */
  font-weight: 600;
}

.faq-item p {
  color: #4A4A4A !important;
  /* muted academic paragraph */
  line-height: 1.55;
}

/* Space between chatbot widget and enquiry FAB */
.chatbot-widget {
  right: 137px !important;
  /* chatbot thoda left */
  bottom: 15px !important;
}

.enquiry-fab {
  right: 20px !important;
  /* enquiry button right side hi rahe */
  bottom: 20px !important;
}

/* Mobile spacing fix */
@media (max-width: 600px) {
  .chatbot-widget {
    right: 70px !important;
    bottom: 16px !important;
  }

  .enquiry-fab {
    right: 16px !important;
    bottom: 16px !important;
  }
}

/* ===========================
   Psychometric Test Section – FINAL FIXED UI
   =========================== */
.psychometric-section {
  padding: 80px 0;
  background: #f5f8fc !important;
}

.psychometric-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* LEFT SIDE TEXT */
.psychometric-copy h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #0f172a;
}

.psychometric-copy p {
  margin-top: 10px;
  color: #475569;
  line-height: 1.6;
}

.psychometric-points {
  list-style: none;
  padding: 0;
  margin: 20px 0 14px;
}

.psychometric-points li {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  color: #1e293b;
}

.psychometric-points i {
  color: #003366;
  margin-top: 4px;
}

.psychometric-note {
  color: #64748b;
  font-size: 0.9rem;
}

/* RIGHT SIDE QUIZ CARD */
.psychometric-quiz {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.psychometric-quiz h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0f172a;
}

.quiz-subtitle {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 18px;
}

.quiz-error {
  display: none;
  color: #b91c1c;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

/* QUESTION */
.quiz-question {
  margin-bottom: 22px;
}

.quiz-question p {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #0f172a;
}

.quiz-question p span {
  color: #003366;
  margin-right: 4px;
}

/* OPTIONS */
.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: 0.2s;
}

.quiz-option input {
  display: none;
}

.quiz-option input:checked+span {
  color: #0f172a;
  font-weight: 600;
}

.quiz-option input:checked+span,
.quiz-option input:checked~span {
  color: #0f172a;
}

.quiz-option:hover {
  border-color: #003366;
}

/* BLUE HIGHLIGHT ON SELECT */
.quiz-option input:checked+span {
  background: #38bdf8;
}

/* SUBMIT BUTTON */
.btn-primary.full-width {
  width: 100%;
  margin-top: 10px;
}

/* OUTPUT BOX */
.psychometric-result {
  margin-top: 16px;
  background: rgba(56, 189, 248, 0.06);
  padding: 14px;
  border-radius: 12px;
  border: 1px solid #bae6fd;
  font-size: 0.92rem;
}

/* RESPONSIVE FIX */
@media (max-width: 900px) {
  .psychometric-layout {
    grid-template-columns: 1fr;
  }

  .psychometric-quiz {
    margin-top: 20px;
  }
}

/* =========================================
   Psychometric Popup – FINAL FIXED UI
========================================= */
.popup-overlay {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.55);
  z-index: 99999;
}

.popup-overlay.active {
  display: flex !important;
}

.popup-box {
  background: #ffffff;
  width: 90%;
  max-width: 430px;
  padding: 28px 24px 24px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  animation: popupIn 0.3s ease-out;
  position: relative;
}

.popup-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.popup-subtitle {
  font-size: 0.92rem;
  text-align: center;
  margin-bottom: 18px;
  color: #64748b;
}

.popup-box form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}

.popup-box form input:focus {
  border-color: #c62828;
  box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.2);
}

.popup-box form button {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: none;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}

.popup-box form button:hover {
  transform: translateY(-2px);
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #475569;
}

.popup-close:hover {
  color: #c62828;
}

@keyframes popupIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}




/* ===========================================
   GLOBAL BANNER FIX — FULL BACKGROUND + L/R
   =========================================== */

.banner.clean-banner {
  position: relative !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 90vh !important;
  padding: 60px 5vw !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

/* Remove container width limitation */
.banner.clean-banner .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Full background image */
.banner-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: -1 !important;
}

.banner-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
}

/* Text left */
.banner-text {
  width: 48% !important;
  color: #ffffff !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Form right */
.inquiry-form {
  width: 32% !important;
  position: relative !important;
  z-index: 2 !important;
  background: rgba(255, 255, 255, 0.95) !important;
  padding: 20px !important;
  border-radius: 14px !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35) !important;
}

/* Overlay */
.banner-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(120deg,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.35)) !important;
  z-index: 0 !important;
}

/* Mobile fixes */
@media (max-width: 900px) {
  .banner.clean-banner {
    flex-direction: column !important;
    padding: 40px 20px !important;
    min-height: auto !important;
  }

  .banner-text,
  .inquiry-form {
    width: 100% !important;
  }
}

/* Your Partner Universities Slider */
.universities {
  padding: 60px 0;
  text-align: center;
}

.universities h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #001a33;
  font-weight: 700;
}

/* Slider Wrapper */
.university-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 120px;
  margin-top: 20px;
}

/* Track */
.slide-track {
  display: flex;
  width: calc(200px * 12);
  /* 12 logos */
  animation: scroll 25s linear infinite;
}

/* Individual Slide */
.slide {
  width: 200px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide img {
  height: 70px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Infinite Scroll Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-200px * 6));
    /* move half track */
  }
}

/* Responsive */
@media (max-width: 768px) {
  .slide {
    width: 150px;
  }

  .slide img {
    height: 55px;
  }
}

/* FIX MEDICAL PROGRAM PAGE GAP + COLORS + GRID */

/* Restore layout spacing */
.medical-section,
.program-overview,
.medical-destinations {
  padding: 50px 0 !important;
}

/* Fix 3-column layout spacing */
.medical-features,
.medical-destinations-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 28px !important;
  align-items: start !important;
}

/* FIX destination card background turning DARK */
.medical-card {
  background: #ffffff !important;
  color: #001A33 !important;
  padding: 22px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1) !important;
}

/* Fix text visibility */
.medical-card h3 {
  color: #001A33 !important;
  font-weight: 600 !important;
}

.medical-card p {
  color: #333 !important;
  opacity: 0.9;
}

/* Fix icon visibility */
.medical-card i {
  color: #003366 !important;
  font-size: 24px !important;
  margin-bottom: 8px !important;
}

/* Remove unwanted banner overlay effect on inner sections */
.medical-section * {
  mix-blend-mode: normal !important;
}

.medical-column {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.feature-card {
  padding: 20px;
  border-radius: 12px;
  height: 100%;
}

.feature-card i {
  font-size: 26px;
  color: var(--primary);
}

.check-list li {
  list-style: none;
  margin-bottom: 12px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.check-list i {
  color: #22c55e;
  font-size: 20px;
  margin-right: 10px;
}

.info-note {
  padding: 18px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.info-note i {
  color: var(--primary);
  font-size: 22px;
}

@media (max-width: 768px) {
  .medical-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}



/* Universities section */
.universities p {
  text-align: center;
  color: #4A4A4A;
  font-size: 1.1rem;
}

/* Responsive Fixes */
@media (max-width: 600px) {
  section h2 {
    font-size: 1.6rem;
  }

  .card {
    font-size: 1rem;
    padding: 14px;
  }
}

/* ==========================================
   STUDY SECTIONS – ANIMATED PREMIUM DESIGN
========================================== */

/* Section Spacing */
section.streams,
section.popular-courses,
section.career-categories,
section.medical-programs,
section.study-abroad,
section.online-courses,
section.universities {
  padding: 60px 0;
  background: #f8f9fc;
  animation: fadeInUp 0.8s ease;
}

section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 700;
  color: #003366;
  animation: fadeIn 1s ease;
}

/* Grid */
.grid {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Cards */


/* HOVER EFFECT */
.card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 0 15px rgba(0, 51, 102, 0.25);
  border-color: #003366;
  background: #fdfdfd;
}

/* KEYFRAMES */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}



/* Universities description */
.universities p {
  text-align: center;
  color: #4A4A4A;
  font-size: 1.1rem;
  animation: fadeIn 1s ease;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
  section h2 {
    font-size: 1.6rem;
  }

  .card {
    padding: 16px;
    font-size: 1rem;
  }
}

.banner-image {
  position: relative;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: zoomFade 12s ease-in-out infinite;
}

@keyframes zoomFade {
  0% {
    transform: scale(1);
    filter: brightness(1);
  }
  50% {
    transform: scale(1.15);
    filter: brightness(0.85);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.about-content h2 {
  margin-bottom: 14px;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}

.about-points li {
  margin-bottom: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-points i {
  color: #22c55e;
  font-size: 16px;
}

/* Mobile fix */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image img {
    height: 260px;
  }
}

.stream-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* CARD FIX */
.stream-card {
  display: flex;
  align-items: center;        /* vertical center */
  gap: 12px;                  /* thoda tight */
  background: #ffffff;
  padding: 14px 16px;         /* vertical padding kam */
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-decoration: none;
  transition: 0.3s ease;
  min-height: unset;          /* ❌ fixed height hatao */
}

/* IMAGE FIX */
.stream-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;             /* image se space nahi badhega */
}

/* TEXT FIX */
.stream-text {
  padding: 0;
  margin: 0;
  line-height: 1.25;          /* 🔥 extra vertical space remove */
}

.stream-text h4 {
  margin: 0;
  font-size: 1rem;
}

.stream-text p {
  margin: 2px 0 0;            /* already tight */
  font-size: 0.85rem;
  color: #555;
}

/* HOVER */
.stream-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}


.why-sye {
  padding: 60px 0;
  background: #f8f9fc;
}

.why-sye h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #003366;
}

/* GRID */
.why-grid {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* CARD */
.why-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

/* ICON */
.why-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
}

/* TEXT */
.why-text h4 {
  margin: 0;
  font-size: 1rem;
  color: #003366;
}

.why-text p {
  margin: 4px 0 0;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.3;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* MOBILE FIX */
@media (max-width: 600px) {
  .why-card {
    padding: 14px;
    gap: 12px;
  }

  .why-text h4 {
    font-size: 0.95rem;
  }

  .why-text p {
    font-size: 0.82rem;
  }
}
.course-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.course-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  color: #003366;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.course-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
}

.course-card span {
  font-size: 0.95rem;
  line-height: 1.2;
}

/* Hover */
.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* Mobile fix */
@media (max-width: 600px) {
  .course-card {
    padding: 14px 16px;
  }

  .course-card img {
    width: 32px;
    height: 32px;
  }

  .course-card span {
    font-size: 0.9rem;
  }
}
/* ===== PROCESS ===== */
.process-grid {
  max-width: 1100px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.process-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.process-card img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex-shrink: 0;
}

.process-card h4 {
  margin: 0;
  font-size: 1rem;
 
}

.process-card p {
  margin: 4px 0 0;
  font-size: 0.88rem;
  color: #555;
}

/* ===== MEDICAL PROGRAMS ===== */
.medical-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.medical-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #ffffff;
  border-radius: 14px;
  text-decoration: none;
  color: #003366;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.medical-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.medical-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 600px) {
  .process-card,
  .medical-card {
    padding: 14px 16px;
  }

  .process-card img,
  .medical-card img {
    width: 32px;
    height: 32px;
  }
}
/* ===== WHO WE HELP ===== */
.help-grid {
  max-width: 1100px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.help-card {
  background: #fff;
  padding: 18px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.help-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.help-card span {
  font-weight: 600;
  color: #003366;
  font-size: 0.95rem;
}

/* ===== STUDY ABROAD ===== */
.abroad-grid {
  max-width: 1100px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.abroad-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border-radius: 14px;
  text-decoration: none;
  color: #003366;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.abroad-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.abroad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.15);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 600px) {
  .help-card,
  .abroad-card {
    padding: 14px 16px;
  }

  .help-card img,
  .abroad-card img {
    width: 30px;
    height: 30px;
  }
}
.card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
}

.card span {
  font-size: 1rem;
  font-weight: 600;
  color: #003366;
}
/* ===== COUNTER SECTION FIX ===== */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.counter-card {
  text-align: center;
}

@media (max-width: 768px) {
  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



h1, h2, h3, h4, h5 {
  color: var(--text-main);
}

.section-title,
.card-title,
.stream-text h4,
.course-card span,
.why-text h4,
.process-card h4,
.help-card span {
  color: var(--primary);
}
section {
  background: var(--bg);
}.card,
.info-card,
.college-card,
.reason,
.step,
.testimonial,
.blog-card {
  background: var(--bg-soft);
}
