:root {
  --red: #DC143C;
  --red-dark: #a50e2d;
  --red-light: #ff4d6d;
  --white: #ffffff;
  --cream: #fff7f8;
  --dark: #1a0a0d;
  --grey: #6b7280;
  --border: #ffe0e6;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: var(--fixed-header-height, 100px);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
  overflow-x: hidden;
  position: relative;
  max-width: 100%;
  padding-top: var(--fixed-header-height, 100px);
}

/* BACKGROUND MOTION GRAPHICS */
.bg-motion-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.bg-motion-mesh {
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(220,20,60,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 15%, rgba(220,20,60,0.04) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 80%, rgba(220,20,60,0.035) 0%, transparent 42%),
    radial-gradient(ellipse at 30% 75%, rgba(255,247,248,0.9) 0%, transparent 50%);
  animation: meshDrift 22s ease-in-out infinite alternate;
}
#motionCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

/* NAVBAR */
.navbar {
  background: var(--white);
  border-bottom: 2px solid var(--red);
  padding: 10px 0;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: var(--top-info-height, 36px);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(220,20,60,0.1);
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.navbar-scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 28px rgba(220,20,60,0.16);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.site-logo-wrap {
  flex-shrink: 0;
  background: #fff;
  border-radius: 10px;
  padding: 4px;
  line-height: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
}
.site-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  display: block;
}
.site-logo-wrap--footer {
  padding: 5px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.site-logo--footer {
  height: 56px;
  width: 56px;
}
.logo-circle {
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  color: white;
  font-size: 16px;
  letter-spacing: -1px;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-circle img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.brand-text { line-height: 1.15; max-width: 240px; }
.brand-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--red);
  font-weight: 900;
}
.brand-text span {
  display: block;
  white-space: normal;
  font-size: 0.65rem;
  color: var(--grey);
  font-weight: 500;
  letter-spacing: 0.4px;
  text-transform: none;
  line-height: 1.3;
}
.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--red) !important; }
.nav-cta {
  background: var(--red);
  color: white !important;
  border-radius: 6px;
  padding: 8px 18px !important;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.nav-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.25) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: btnShimmer 3s ease-in-out infinite;
}
.nav-cta:hover { background: var(--red-dark); color: white !important; }

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 60%, #6b0020 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero-motion-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%);
  animation: gridPan 28s linear infinite;
}
.hero-motion-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}
.hero-motion-orb--1 {
  width: 280px;
  height: 280px;
  top: -60px;
  left: -40px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 68%);
  animation: orbDrift1 16s ease-in-out infinite;
}
.hero-motion-orb--2 {
  width: 200px;
  height: 200px;
  bottom: 10%;
  right: 8%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: orbDrift2 13s ease-in-out infinite;
}
.hero-motion-orb--3 {
  width: 140px;
  height: 140px;
  top: 35%;
  left: 45%;
  background: radial-gradient(circle, rgba(255,77,109,0.15) 0%, transparent 72%);
  animation: orbDrift3 11s ease-in-out infinite;
}
.hero-motion-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 50%;
  right: -120px;
  transform: translateY(-50%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  animation: ringRotate 30s linear infinite;
}
.hero-motion-ring::before {
  content: '';
  position: absolute;
  inset: 28px;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite reverse;
}
.hero-motion-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
}
.hero-motion-line--1 {
  width: 45%;
  top: 22%;
  left: -10%;
  animation: lineSweep 9s ease-in-out infinite;
}
.hero-motion-line--2 {
  width: 35%;
  bottom: 28%;
  right: -5%;
  animation: lineSweep 11s ease-in-out infinite reverse;
}
.hero-motion-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.45);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,255,255,0.35);
}
.hero-motion-dot--1 { top: 18%; left: 12%; animation: dotFloat 7s ease-in-out infinite; }
.hero-motion-dot--2 { top: 62%; left: 28%; animation: dotFloat 8.5s ease-in-out infinite 1s; }
.hero-motion-dot--3 { top: 40%; right: 22%; animation: dotFloat 6.5s ease-in-out infinite 0.5s; }
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 span { color: rgba(255,255,255,0.6); }
.hero p {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-btn {
  background: white;
  color: var(--red);
  border: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.hero-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: btnShimmer 3.5s ease-in-out infinite;
}
.hero-btn-outline::after {
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  opacity: 0;
  animation: fadeInUp 0.7s ease 0.75s forwards;
}
.hero-trust span {
  font-size: 1.1rem;
  animation: trustBounce 2.4s ease-in-out infinite;
}
.hero-trust span:nth-child(2) { animation-delay: 0.3s; }
.hero-trust span:nth-child(3) { animation-delay: 0.6s; }
.hero-trust p {
  margin: 0;
  font-size: 0.82rem;
  opacity: 0.8;
  max-width: 420px;
  line-height: 1.5;
}
.hero-marquee {
  margin-top: 36px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  position: relative;
  z-index: 2;
}
.hero-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}
.hero-marquee-group {
  display: flex;
  gap: 12px;
  padding-right: 12px;
}
.hero-marquee-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s, transform 0.25s;
}
.hero-marquee-chip:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.04);
}
.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: var(--red);
}
.hero-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.hero-btn-outline:hover { color: white; }
.hero-btn-red {
  background: var(--red);
  color: white;
}
.hero-btn-red:hover { color: white; }
.hero-img-wrap {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
}
.hero-img-single {
  position: relative;
  flex-shrink: 0;
}
.hero-img-single img {
  width: 190px;
  height: 300px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px 16px 60px 16px;
  border: 3px solid rgba(255,255,255,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  display: block;
}
.hero-img-single.img-alt img {
  border-radius: 16px 60px 16px 16px;
}
.hero-img-single.img-main img {
  width: 210px;
  height: 330px;
  border-radius: 16px 16px 80px 16px;
}
.ceo-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--red);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.7rem;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* STATS */
.stats-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  top: -160px;
  left: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,20,60,0.07) 0%, transparent 70%);
  animation: sectionBlob1 16s ease-in-out infinite;
  pointer-events: none;
}
.stats-bar::after {
  content: '';
  position: absolute;
  width: 260px;
  height: 260px;
  bottom: -130px;
  right: -60px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,20,60,0.05) 0%, transparent 70%);
  animation: sectionBlob2 19s ease-in-out infinite;
  pointer-events: none;
}
.stats-bar > .container { position: relative; z-index: 1; }
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: var(--border);
  height: 50px;
  margin: auto;
}

/* SECTION TITLE */
.section-eyebrow {
  color: var(--red);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--dark);
}
.section-title span { color: var(--red); }
.section-sub {
  color: var(--grey);
  font-size: 0.95rem;
  max-width: 500px;
}
.red-line {
  width: 50px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: 12px 0 16px;
}

/* COUNTRIES */
.countries-section {
  padding: 70px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.countries-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(220,20,60,0.04) 0%, transparent 25%),
                    radial-gradient(circle at 90% 80%, rgba(220,20,60,0.035) 0%, transparent 22%);
  animation: meshDrift 24s ease-in-out infinite alternate;
  pointer-events: none;
}
.countries-section > .container { position: relative; z-index: 1; }
.region-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.country-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.country-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  transition: all 0.2s;
}
.country-chip:hover {
  background: var(--red);
  color: white;
  border-color: var(--red);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220,20,60,0.2);
}
.country-chip .flag { font-size: 1.1rem; }

/* DESTINATION REELS */
.destination-reels {
  margin-top: 40px;
  overflow: hidden;
}
.destination-reels-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.destination-reels-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 45s linear infinite;
}
.destination-reels-group {
  display: flex;
  gap: 14px;
  padding-right: 14px;
}
.destination-reel-card {
  flex-shrink: 0;
  width: 180px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.destination-reel-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--red);
  box-shadow: 0 12px 32px rgba(220,20,60,0.14);
}
.destination-reel-card span { font-size: 1.8rem; display: block; margin-bottom: 8px; }
.destination-reel-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.destination-reel-card small {
  font-size: 0.72rem;
  color: var(--grey);
  line-height: 1.4;
}

/* PLACEMENT PROCESS */
.process-section {
  padding: 70px 0;
  background: var(--cream);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(220,20,60,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,20,60,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, transparent, #000 15%, #000 85%, transparent);
  animation: gridPan 35s linear infinite;
  pointer-events: none;
}
.process-section > .container { position: relative; z-index: 1; }
.process-step {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 26px 22px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(220,20,60,0.12);
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.process-step.visible::before,
.process-step:hover::before { transform: scaleX(1); }
.process-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: rgba(220,20,60,0.15);
  line-height: 1;
  margin-bottom: 10px;
  transition: color 0.35s ease, transform 0.35s ease;
}
.process-step.visible .process-num,
.process-step:hover .process-num {
  color: var(--red);
  transform: scale(1.05);
}
.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.process-step p {
  font-size: 0.83rem;
  color: var(--grey);
  line-height: 1.65;
  margin: 0;
}

/* ANNOUNCEMENT TICKER */
.announcement-bar {
  background: var(--dark);
  color: white;
  overflow: hidden;
  border-bottom: 2px solid var(--red);
  position: relative;
  z-index: 1001;
}
.announcement-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}
.announcement-content {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 28px;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 500;
}
.announcement-content a {
  color: var(--red-light);
  text-decoration: none;
  font-weight: 700;
}
.announcement-content a:hover { color: white; }
.ticker-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(220,20,60,0.25);
  border: 1px solid rgba(220,20,60,0.5);
  color: var(--red-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 1px;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  background: var(--red-light);
  border-radius: 50%;
  animation: livePulse 1.4s ease-in-out infinite;
}

/* QUICK CONTACT DOCK */
.quick-contact-dock {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 0;
}
.quick-contact-dock--right {
  left: auto;
  right: 0;
  padding-right: 0;
  gap: 8px;
}
.quick-contact-btn {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--red);
  color: white;
  border: none;
  padding: 12px 14px;
  border-radius: 0 10px 10px 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 2px 2px 16px rgba(220,20,60,0.3);
  transition: padding 0.3s ease, gap 0.3s ease, background 0.2s;
  overflow: hidden;
  white-space: nowrap;
  max-width: 46px;
}
.quick-contact-btn i { font-size: 1.05rem; flex-shrink: 0; }
.quick-contact-btn span {
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.25s, max-width 0.3s ease;
}
.quick-contact-btn:hover {
  max-width: 160px;
  padding-right: 16px;
  gap: 8px;
  background: var(--red-dark);
}
.quick-contact-btn:hover span {
  opacity: 1;
  max-width: 100px;
}

/* COURSES */
.courses-section {
  padding: 70px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.courses-section::before,
.courses-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.courses-section::before {
  width: 400px;
  height: 400px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(220,20,60,0.07) 0%, transparent 68%);
  animation: sectionBlob1 17s ease-in-out infinite;
}
.courses-section::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  left: -90px;
  background: radial-gradient(circle, rgba(220,20,60,0.05) 0%, transparent 70%);
  animation: sectionBlob2 20s ease-in-out infinite;
}
.courses-section > .container { position: relative; z-index: 1; }
.course-card {
  background: white;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  padding: 24px 22px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.course-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(220,20,60,0.06), transparent);
  transition: left 0.55s ease;
  pointer-events: none;
}
.course-card:hover::after { left: 120%; }
.course-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.course-card:hover { box-shadow: 0 10px 40px rgba(220,20,60,0.12); transform: translateY(-4px); }
.course-card:hover::before { transform: scaleX(1); }
.course-icon {
  width: 44px;
  height: 44px;
  background: #fff0f3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.course-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.course-desc {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 14px;
}
.course-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.meta-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  background: #fff0f3;
  color: var(--red);
  border: 1px solid #ffd0da;
}

/* INDIA PLACEMENT */
.india-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #fff7f8 0%, #fff0f3 100%);
  border-top: 3px solid var(--border);
  position: relative;
  overflow: hidden;
}
.india-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220,20,60,0.04) 0%, transparent 65%);
  animation: sectionPulse 12s ease-in-out infinite;
  pointer-events: none;
}
.india-section > .container { position: relative; z-index: 1; }
.india-course-block {
  background: white;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  padding: 24px;
  height: 100%;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.india-course-block:hover {
  box-shadow: 0 10px 36px rgba(220,20,60,0.13);
  transform: translateY(-3px);
}
.india-course-block::after {
  content: '🇮🇳';
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.4rem;
  opacity: 0.15;
}
.india-course-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 12px; color: white;
}
.india-course-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--dark); margin-bottom: 14px;
}
.company-list { display: flex; flex-direction: column; gap: 8px; }
.company-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  background: var(--cream);
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.82rem; font-weight: 600; color: var(--dark);
  transition: all 0.2s;
}
.company-item:hover {
  background: var(--red);
  color: white; border-color: var(--red);
}
.company-dot {
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%; flex-shrink: 0;
  transition: background 0.2s;
}
.company-item:hover .company-dot { background: white; }

/* LOGO GRID */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 6px 8px;
  text-align: center;
  transition: all 0.2s;
  cursor: default;
}
.logo-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 14px rgba(220,20,60,0.12);
  transform: translateY(-2px);
  background: white;
}
.logo-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}
.logo-fallback {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  border-radius: 6px;
  color: white;
  font-weight: 800;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}
.logo-card span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.logo-card:hover span { color: var(--red); }

/* INDIA CTA CARD */
.india-cta-card {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 16px;
  padding: 32px 24px;
  color: white;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.india-cta-icon { font-size: 2.5rem; margin-bottom: 12px; }
.india-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.3;
}
.india-cta-desc {
  font-size: 0.82rem;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 18px;
}
.india-cta-btn {
  background: white;
  color: var(--red);
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.india-cta-btn:hover { color: var(--red-dark); }

/* WHY US */
.why-section {
  padding: 70px 0;
  background: white;
  position: relative;
  overflow: hidden;
}
.why-section::before,
.why-section::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.why-section::before {
  width: 340px;
  height: 340px;
  top: -80px;
  left: -70px;
  background: radial-gradient(circle, rgba(220,20,60,0.06) 0%, transparent 70%);
  animation: sectionBlob2 15s ease-in-out infinite;
}
.why-section::after {
  width: 380px;
  height: 380px;
  bottom: -120px;
  right: -100px;
  background: radial-gradient(circle, rgba(220,20,60,0.04) 0%, transparent 70%);
  animation: sectionBlob1 18s ease-in-out infinite;
}
.why-section > .container { position: relative; z-index: 1; }
.why-card {
  text-align: center;
  padding: 30px 20px;
}
.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  margin: 0 auto 16px;
}
.why-title { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.why-desc { font-size: 0.83rem; color: var(--grey); line-height: 1.6; }

/* FOOTER */
footer {
  background: var(--dark);
  color: white;
  padding: 40px 0 20px;
}
footer .brand-text strong { color: white; }
footer .brand-text span.footer-sub { color: rgba(255,255,255,0.4); }
.footer-desc {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}
.footer-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.footer-link:hover { color: var(--red-light); }
.footer-heading {
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 14px;
}
.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 30px;
  padding-top: 18px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.footer-address {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}

/* WHATSAPP BUTTON */
.wa-float {
  position: fixed;
  bottom: calc(28px + env(safe-area-inset-bottom, 0px));
  right: calc(24px + env(safe-area-inset-right, 0px));
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  animation: waPulse 2.5s infinite;
}
.wa-float i { font-size: 1.3rem; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.7); }
}
.wa-float:hover { background: #1ebe5d; color: white; transform: scale(1.05); }

/* MODAL POPUP */
.modal-header {
  background: var(--red);
  color: white;
  border-radius: 12px 12px 0 0 !important;
  justify-content: space-between;
}
.modal-content { border-radius: 12px !important; border: none; overflow: hidden; }
.modal-title { font-family: 'Playfair Display', serif; font-weight: 700; }
.modal-close-btn {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s;
}
.modal-close-btn:hover { background: rgba(255,255,255,0.35); }
.btn-submit {
  background: var(--red);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  width: 100%;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: var(--red-dark); }
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 0.2rem rgba(220,20,60,0.15); }
.close-later {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  text-align: center;
  margin-top: 10px;
  cursor: pointer;
}
.close-later:hover { color: white; }
.form-label-sm {
  font-size: 0.85rem;
  font-weight: 600;
}
.modal-intro {
  font-size: 0.85rem;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes heroOrb {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  50% { transform: translate(-20px, 20px) scale(1.08); opacity: 0.6; }
}
@keyframes lineGrow {
  from { width: 0; opacity: 0; }
  to { width: 50px; opacity: 1; }
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes btnShimmer {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,77,109,0.6); }
  50% { opacity: 0.7; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(255,77,109,0); }
}
@keyframes trustBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.92) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes meshDrift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(3%, -2%) scale(1.06); }
}
@keyframes gridPan {
  from { background-position: 0 0; }
  to { background-position: 56px 56px; }
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 25px); }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-25px, -20px); }
}
@keyframes orbDrift3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(15px, -18px) scale(1.1); }
}
@keyframes ringRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to { transform: translateY(-50%) rotate(360deg); }
}
@keyframes lineSweep {
  0%, 100% { opacity: 0.2; transform: translateX(0); }
  50% { opacity: 0.7; transform: translateX(8%); }
}
@keyframes dotFloat {
  0%, 100% { transform: translateY(0); opacity: 0.45; }
  50% { transform: translateY(-12px); opacity: 0.9; }
}
@keyframes sectionBlob1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 15px); }
}
@keyframes sectionBlob2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-18px, -12px); }
}
@keyframes sectionPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.12); opacity: 1; }
}
@keyframes section3DReveal {
  from {
    opacity: 0.6;
    transform: perspective(1200px) rotateX(10deg) translateY(24px) translateZ(-60px);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateX(0deg) translateY(0) translateZ(0);
  }
}
@keyframes float3D {
  0%, 100% { transform: translateY(0) translateZ(0) rotateX(0deg); }
  50% { transform: translateY(-8px) translateZ(16px) rotateX(3deg); }
}
@keyframes tilt3DY {
  0%, 100% { transform: rotateY(-3deg) translateZ(0); }
  50% { transform: rotateY(3deg) translateZ(8px); }
}
@keyframes heroPanel3D {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateY(-14deg) rotateX(6deg) translateZ(-120px);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateY(0) rotateX(0) translateZ(0);
  }
}
@keyframes chip3DPop {
  from {
    opacity: 0;
    transform: perspective(800px) rotateX(20deg) scale(0.8) translateZ(-40px);
  }
  to {
    opacity: 1;
    transform: perspective(800px) rotateX(0) scale(1) translateZ(0);
  }
}

.navbar {
  animation: fadeInDown 0.5s ease both;
}

.hero .hero-tag,
.hero h1,
.hero p,
.hero .d-flex {
  opacity: 0;
  animation: fadeInUp 0.7s ease forwards;
}
.hero .hero-tag { animation-delay: 0.15s; }
.hero h1 { animation-delay: 0.3s; }
.hero p { animation-delay: 0.45s; }
.hero .d-flex { animation-delay: 0.6s; }

.hero .hero-img-wrap {
  opacity: 0;
  animation: fadeInRight 0.8s ease 0.35s forwards;
}
.hero-img-single {
  animation: heroFloat 5s ease-in-out infinite;
}
.hero-img-single.img-alt {
  animation-delay: -2.5s;
}

.hero::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  top: -80px;
  right: 5%;
  z-index: 1;
  pointer-events: none;
  animation: heroOrb 10s ease-in-out infinite;
}

.animate-on-scroll {
  opacity: 0;
  transform: perspective(1000px) rotateX(14deg) translateY(32px) translateZ(-70px);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.65s ease;
  will-change: transform, opacity;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: perspective(1000px) rotateX(0deg) translateY(0) translateZ(0);
}
.animate-on-scroll.from-left {
  transform: perspective(1000px) rotateY(-16deg) translateX(-36px) translateZ(-55px);
}
.animate-on-scroll.from-left.visible {
  transform: perspective(1000px) rotateY(0deg) translateX(0) translateZ(0);
}
.animate-on-scroll.from-right {
  transform: perspective(1000px) rotateY(16deg) translateX(36px) translateZ(-55px);
}
.animate-on-scroll.from-right.visible {
  transform: perspective(1000px) rotateY(0deg) translateX(0) translateZ(0);
}
.animate-on-scroll.scale-in {
  transform: perspective(1000px) rotateX(12deg) scale(0.88) translateZ(-45px);
}
.animate-on-scroll.scale-in.visible {
  transform: perspective(1000px) rotateX(0deg) scale(1) translateZ(0);
}

.red-line.animate-on-scroll.visible {
  animation: lineGrow 0.5s ease forwards;
  transform: perspective(1000px) rotateX(0) translateZ(0);
}

.section-animate {
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d;
  overflow: hidden;
}
.section-animate::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(220, 20, 60, 0.06) 0%, transparent 55%);
  pointer-events: none;
  transition: opacity 0.8s ease;
  z-index: 0;
  transform: translateZ(-20px);
}
.section-animate::after {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(220, 20, 60, 0.04) 0%, transparent 70%);
  top: 10%;
  right: -80px;
  pointer-events: none;
  opacity: 0;
  transform: translateZ(-40px) scale(0.8);
  transition: opacity 0.9s ease, transform 0.9s ease;
  z-index: 0;
}
.section-animate.section-visible::before {
  opacity: 1;
}
.section-animate.section-visible::after {
  opacity: 1;
  transform: translateZ(0) scale(1);
  animation: tilt3DY 12s ease-in-out infinite;
}
.section-animate > .container,
.section-animate > .hero-motion {
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}
.section-animate.section-visible > .container {
  animation: section3DReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* 3D card tilt + float */
.card-3d-tilt {
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  will-change: transform;
}
.card-3d-tilt.visible {
  animation: float3D 6s ease-in-out infinite;
}
.card-3d-tilt:nth-child(2n) { animation-delay: -2s; }
.card-3d-tilt:nth-child(3n) { animation-delay: -4s; }
.card-3d-tilt:hover {
  animation-play-state: paused;
  box-shadow: 0 24px 48px rgba(220, 20, 60, 0.18), 0 0 0 1px rgba(220, 20, 60, 0.08);
}

.animate-3d-title.visible {
  animation: section3DReveal 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

footer.section-animate.section-visible > .container {
  animation: section3DReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.apply-bottom.section-visible > .container {
  animation: section3DReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-on-scroll.fade-up {
  transform: perspective(1000px) rotateX(18deg) translateY(40px) translateZ(-60px);
}
.animate-on-scroll.fade-up.visible {
  transform: perspective(1000px) rotateX(0) translateY(0) translateZ(0);
}

.quick-contact-dock {
  opacity: 0;
  transform: translateY(calc(-50% + 20px));
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.45s;
  visibility: hidden;
  pointer-events: none;
}
.quick-contact-dock.dock-visible {
  opacity: 1;
  transform: translateY(-50%);
  visibility: visible;
  pointer-events: auto;
}
.quick-contact-dock--right.dock-visible {
  transform: translateY(-50%);
}

.chat-widget {
  opacity: 0;
  transform: translateY(16px) scale(0.96);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.chat-widget.chat-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.announcement-bar.animate-on-scroll {
  transform: translateY(-100%);
}
.announcement-bar.animate-on-scroll.visible {
  transform: translateY(0);
}

.filter-tab.animate-on-scroll {
  transform: perspective(800px) rotateX(20deg) scale(0.85) translateZ(-30px);
}
.filter-tab.animate-on-scroll.visible {
  transform: perspective(800px) rotateX(0) scale(1) translateZ(0);
}

.featured-card.visible,
.course-card.visible,
.country-portal-card.visible {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14), 0 4px 12px rgba(220, 20, 60, 0.08);
}

.hero-apply-input.animate-on-scroll,
.apply-panel .form-control.animate-on-scroll,
.apply-panel .form-select.animate-on-scroll {
  transform: perspective(800px) rotateY(-8deg) translateX(-20px) translateZ(-25px);
}
.hero-apply-input.animate-on-scroll.visible,
.apply-panel .form-control.animate-on-scroll.visible,
.apply-panel .form-select.animate-on-scroll.visible {
  transform: perspective(800px) rotateY(0) translateX(0) translateZ(0);
}

.stat-num.counting {
  display: inline-block;
  min-width: 2ch;
}

#queryModal.show .modal-dialog {
  animation: modalPop 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.announcement-bar:hover .announcement-track,
.hero-marquee:hover .hero-marquee-track,
.destination-reels:hover .destination-reels-track {
  animation-play-state: paused;
}

.why-icon {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.why-card.visible .why-icon,
.why-card:hover .why-icon {
  transform: scale(1.08) rotate(-4deg);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bg-motion-mesh,
  .hero-motion-grid,
  .hero-motion-orb,
  .hero-motion-ring,
  .hero-motion-ring::before,
  .hero-motion-line,
  .hero-motion-dot,
  .stats-bar::before,
  .stats-bar::after,
  .countries-section::before,
  .courses-section::before,
  .courses-section::after,
  .india-section::before,
  .process-section::before,
  .why-section::before,
  .why-section::after {
    animation: none !important;
  }
  .bg-motion-layer { display: none; }
  .announcement-track,
  .hero-marquee-track,
  .destination-reels-track {
    animation: none;
  }
  .navbar,
  .hero .hero-tag,
  .hero h1,
  .hero p,
  .hero .d-flex,
  .hero .hero-img-wrap,
  .hero-img-single,
  .hero::after,
  .hero-trust,
  .hero-trust span,
  .nav-cta::after,
  .hero-btn::after,
  .pulse-dot {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none !important;
  }
  .section-animate::before,
  .section-animate::after { display: none; }
  .section-animate.section-visible > .container { animation: none; }
  .card-3d-tilt.visible { animation: none; }
  .quick-contact-dock,
  .chat-widget {
    opacity: 1;
    transform: none;
    transition: none;
  }
  #queryModal.show .modal-dialog { animation: none; }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .countries-section,
  .courses-section,
  .india-section,
  .why-section,
  .process-section,
  .success-section,
  .sectors-section,
  .stats-bar {
    padding: 50px 0;
  }
  .logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .stat-divider {
    display: none;
  }
  .wa-float {
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    left: calc(12px + env(safe-area-inset-left, 0px));
    right: auto;
    padding: 14px;
    border-radius: 50%;
    z-index: 996;
  }
  .wa-float span {
    display: none;
  }
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .destination-reel-card {
    width: 155px;
    min-width: 155px;
    padding: 14px 12px;
  }
  .process-step {
    padding: 22px 18px;
  }
  .process-step:hover {
    transform: none;
  }
  .course-card {
    padding: 22px 18px;
  }
  .why-card {
    padding: 22px 16px;
  }
  .india-course-block {
    padding: 18px;
  }
  .company-list {
    max-height: 220px;
  }
  .section-animate::after {
    display: none;
  }
  img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 576px) {
  .wa-float {
    display: none;
  }
  .course-col {
    width: 100%;
  }
  .course-card {
    padding: 20px 16px;
  }
  .india-course-block {
    padding: 16px;
  }
  .why-card {
    padding: 20px 12px;
  }
  .navbar-brand .brand-text strong {
    font-size: 0.88rem;
  }
  .footer .col-md-2.offset-md-1 {
    margin-left: 0;
  }
  .footer-heading {
    margin-top: 8px;
  }
  .hero-btn,
  .hero-btn-outline,
  .hero-btn-red {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  .modal-dialog {
    margin: 12px;
  }
}

@media (max-width: 380px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .logo-card {
    padding: 8px 4px 6px;
  }
  .meta-tag {
    font-size: 0.65rem;
  }
}
