/* ================================================================
   TUITION INSTITUTE – MAIN STYLESHEET
   Design inspired by e-tuitions.com style education websites
   ================================================================ */

/* ── 1. CSS VARIABLES ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --ti-blue:      #0057a8;
  --ti-blue-dk:   #003d7a;
  --ti-blue-lt:   #e8f1ff;
  --ti-orange:    #ff6b35;
  --ti-orange-dk: #e55a26;
  --ti-yellow:    #ffc107;
  --ti-green:     #28a745;
  --ti-wa:        #25d366;
  --ti-dark:      #1a1a2e;
  --ti-dark2:     #16213e;
  --ti-gray:      #6b7280;
  --ti-gray-lt:   #f4f7ff;
  --ti-white:     #ffffff;

  /* Typography */
  --ti-font:      'Poppins', sans-serif;
  --ti-radius:    12px;
  --ti-radius-lg: 20px;
  --ti-shadow:    0 4px 24px rgba(0,87,168,0.10);
  --ti-shadow-lg: 0 12px 40px rgba(0,87,168,0.18);
  --ti-trans:     all 0.3s ease;
  --ti-max-width: 1200px;
}

/* ── 2. RESET & BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ti-font);
  font-size: 16px;
  color: var(--ti-dark);
  line-height: 1.7;
  background: #fff;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: var(--ti-blue); text-decoration: none; transition: var(--ti-trans); }
a:hover { color: var(--ti-orange); }
ul  { list-style: none; padding: 0; margin: 0; }

h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--ti-dark);
}

/* ── 3. LAYOUT UTILITIES ──────────────────────────────────────── */
.ti-container {
  width: 100%;
  max-width: var(--ti-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.ti-section         { padding: 80px 0; }
.ti-bg-light        { background: var(--ti-gray-lt); }
.ti-two-col         { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.ti-section-cta     { text-align: center; margin-top: 48px; }

/* Section header */
.ti-section-head        { text-align: center; margin-bottom: 56px; }
.ti-section-head h2     { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 16px; color: #1a1a2e; }
.ti-section-head p      { color: var(--ti-gray); font-size: 17px; max-width: 600px; margin: 0 auto; }
.ti-section-badge {
  display: inline-block;
  background: var(--ti-blue-lt);
  color: var(--ti-blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.ti-badge-white { background: rgba(255,255,255,0.2); color: #fff; }
.ti-text-primary { color: var(--ti-blue); }
.ti-text-yellow  { color: var(--ti-yellow); }
.ti-highlight    { color: var(--ti-yellow); }

/* ── 4. BUTTONS ───────────────────────────────────────────────── */
.ti-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--ti-font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--ti-trans);
  text-decoration: none;
}
.ti-btn-primary {
  background: var(--ti-blue);
  color: #fff;
  border-color: var(--ti-blue);
}
.ti-btn-primary:hover {
  background: var(--ti-blue-dk);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,87,168,0.35);
}
.ti-btn-outline {
  background: transparent;
  color: var(--ti-blue);
  border-color: var(--ti-blue);
}
.ti-btn-outline:hover {
  background: var(--ti-blue);
  color: #fff;
  transform: translateY(-2px);
}
.ti-btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.ti-btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.ti-btn-whatsapp {
  background: var(--ti-wa);
  color: #fff;
  border-color: var(--ti-wa);
  padding: 14px 28px;
}
.ti-btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.4);
}
.ti-btn-full { width: 100%; justify-content: center; }
.ti-btn-enroll {
  background: var(--ti-orange);
  color: #fff;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.ti-btn-enroll:hover {
  background: var(--ti-orange-dk);
  color: #fff;
  transform: translateY(-1px);
}

/* ── 5. TOP BAR ───────────────────────────────────────────────── */
.ti-topbar {
  background: var(--ti-dark2);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 8px 0;
}
.ti-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.ti-topbar-left,
.ti-topbar-right   { display: flex; align-items: center; gap: 20px; }
.ti-topbar a       { color: rgba(255,255,255,0.8); font-size: 13px; display: flex; align-items: center; gap: 5px; text-decoration: none; }
.ti-topbar a:hover { color: var(--ti-yellow); }
.ti-topbar-phone   { color: var(--ti-yellow) !important; font-weight: 600; }
.ti-whatsapp-link  { color: var(--ti-wa) !important; }

/* ── 6. HEADER ────────────────────────────────────────────────── */
.ti-header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--ti-trans);
}
.ti-header.ti-scrolled {
  box-shadow: 0 4px 28px rgba(0,87,168,0.15);
}
.ti-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}

/* Logo */
.ti-logo a,
.ti-logo-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--ti-dark);
  text-decoration: none;
}
.ti-logo a:focus,
.ti-logo a:focus-visible,
.ti-logo a:focus-within,
.custom-logo-link,
.custom-logo-link:focus,
.custom-logo-link:focus-visible,
.custom-logo-link:focus-within,
.ti-header .custom-logo-link,
.ti-header .custom-logo-link:focus,
.ti-header .custom-logo-link:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  background: none !important;
}
.ti-logo-text:hover { color: var(--ti-blue); }
.ti-logo-icon       { font-size: 32px; }

/* Logo image — override WordPress hardcoded width/height attributes */
.ti-logo img,
.ti-logo .custom-logo,
.custom-logo-link img {
  display: block !important;
  height: 56px !important;
  width: auto !important;
  max-width: none !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

/* Nav */
.ti-nav { flex: 1; display: flex; justify-content: center; }
.ti-nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ti-nav-menu li a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ti-dark);
  border-radius: 8px;
  white-space: nowrap;
  text-decoration: none;
}
.ti-nav-menu li a:hover,
.ti-nav-menu li.current-menu-item a,
.ti-nav-menu li.current_page_item a {
  color: var(--ti-blue);
  background: var(--ti-blue-lt);
}

/* Dropdown */
.ti-nav-menu li { position: relative; }
.ti-nav-menu .sub-menu {
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: #fff;
  min-width: 220px;
  border-radius: var(--ti-radius);
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
  padding: 6px 0;
  z-index: 9999;
  border-top: 3px solid var(--ti-blue);
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.ti-nav-menu li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.ti-nav-menu .sub-menu li a {
  padding: 10px 20px;
  border-radius: 0;
  font-size: 14px;
  color: var(--ti-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.ti-nav-menu .sub-menu li a:hover {
  background: var(--ti-blue-lt);
  color: var(--ti-blue);
  padding-left: 26px;
}
/* Dropdown arrow indicator on parent */
.ti-nav-menu li.menu-item-has-children > a::after {
  content: '▾';
  font-size: 11px;
  margin-left: 4px;
  display: inline-block;
  transition: transform .2s;
}
.ti-nav-menu li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}
/* Mobile: show sub-menu as stacked list */
@media (max-width: 768px) {
  .ti-nav-menu .sub-menu {
    position: static;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--ti-blue);
    border-radius: 0;
    margin: 4px 0 4px 16px;
    padding: 4px 0;
    background: #f5f8ff;
    display: none;
  }
  .ti-nav-menu li.menu-item-has-children.ti-mega-open > .sub-menu { display: block; }
  .ti-nav-menu .sub-menu li a { padding: 8px 16px; font-size: 13px; }
}

/* Hamburger */
.ti-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.ti-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ti-dark);
  border-radius: 2px;
  transition: var(--ti-trans);
}
.ti-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ti-hamburger.active span:nth-child(2) { opacity: 0; }
.ti-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── 7. HERO SECTION ──────────────────────────────────────────── */
.ti-hero {
  background: linear-gradient(135deg, var(--ti-dark2) 0%, var(--ti-blue) 60%, #5b8dee 100%);
  color: #fff;
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
}
.ti-hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.ti-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.ti-shape-1 { width: 600px; height: 600px; top: -200px; right: -100px; }
.ti-shape-2 { width: 300px; height: 300px; bottom: -80px; left: 10%; }
.ti-shape-3 { width: 150px; height: 150px; top: 20%; left: 30%; background: rgba(255,193,7,0.08); }

.ti-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* Hero content */
.ti-hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
}
.ti-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.ti-hero p {
  font-size: 17px;
  opacity: 0.88;
  margin-bottom: 32px;
  max-width: 520px;
  line-height: 1.8;
}
.ti-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }

.ti-hero-meta        { display: flex; align-items: center; gap: 20px; }
.ti-hero-meta-item   { text-align: center; }
.ti-hero-meta-item strong { display: block; font-size: 26px; font-weight: 800; color: var(--ti-yellow); }
.ti-hero-meta-item span  { font-size: 13px; opacity: 0.75; }
.ti-hero-meta-divider    { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* Hero visual */
.ti-hero-visual { position: relative; display: flex; justify-content: center; }
.ti-hero-blob {
  width: 380px;
  height: 380px;
  background: rgba(255,255,255,0.08);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  animation: ti-blob 8s ease-in-out infinite;
}
@keyframes ti-blob {
  0%, 100% { border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%; }
  50%       { border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%; }
}
.ti-hero-img-wrap {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid rgba(255,255,255,0.2);
  position: relative;
  z-index: 1;
}
.ti-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.ti-hero-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-size: 14px;
  gap: 12px;
}
.ti-hero-placeholder span { font-size: 64px; }

/* ── Hero Image Carousel ──────────────────────────────── */
.ti-hc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
}
.ti-hc-slide.active { opacity: 1; }
.ti-hc-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Prev / Next arrows */
.ti-hc-prev,
.ti-hc-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--ti-blue);
  box-shadow: 0 3px 12px rgba(0,0,0,0.22);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.ti-hc-prev:hover,
.ti-hc-next:hover { background: #fff; transform: translateY(-50%) scale(1.12); }
.ti-hc-prev { left: -2px; }
.ti-hc-next { right: -2px; }

/* Dots */
.ti-hc-dots {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.ti-hc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  display: inline-block;
}
.ti-hc-dot.active {
  background: #fff;
  transform: scale(1.35);
}

/* Floating cards */
.ti-hero-card {
  position: absolute;
  background: #fff;
  border-radius: var(--ti-radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--ti-shadow-lg);
  z-index: 2;
  animation: ti-float 4s ease-in-out infinite;
}
.ti-hero-card-main  { top: 10%; left: -10%; }
.ti-hero-card-sub   { bottom: 10%; right: -10%; animation-delay: 2s; }
.ti-hero-card-icon  { font-size: 28px; }
.ti-hero-card strong { display: block; font-size: 13px; color: var(--ti-dark); font-weight: 700; }
.ti-hero-card span   { font-size: 12px; color: var(--ti-gray); }
@keyframes ti-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Wave divider */
.ti-wave { display: none; }

/* ══════════════════════════════════════════════════════════
   FULL-WIDTH HERO BACKGROUND CAROUSEL
══════════════════════════════════════════════════════════ */

/* Background slide track */
.ti-hbg-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ti-hbg-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.ti-hbg-slide.active { opacity: 1; }
.ti-hbg-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  background: #000;
}

/* Dark overlay */
.ti-hbg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,30,70,0.72) 0%, rgba(0,57,128,0.55) 100%);
  z-index: 1;
}

/* When slider mode: override the 2-col grid to single centred column */
.ti-hero-slider { min-height: 504px; display: flex; align-items: center; }
.ti-hero-slider-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 0;
}
.ti-hero-slider-inner .ti-hero-badge { margin-bottom: 20px; }
.ti-hero-slider-inner h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.ti-hero-slider-inner p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 36px;
  line-height: 1.8;
}
.ti-hero-slider-inner .ti-hero-buttons { justify-content: center; }
.ti-hero-slider-inner .ti-hero-meta   { justify-content: center; }

/* Prev / Next arrows */
.ti-hbg-prev,
.ti-hbg-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 36px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
  line-height: 1;
}
.ti-hbg-prev:hover,
.ti-hbg-next:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-50%) scale(1.1);
}
.ti-hbg-prev { left: 28px; }
.ti-hbg-next { right: 28px; }

/* Navigation dots */
.ti-hbg-dots {
  position: absolute;
  bottom: 68px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.ti-hbg-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.3s;
  display: inline-block;
}
.ti-hbg-dot.active {
  background: #fff;
  border-color: #fff;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 768px) {
  .ti-hero-slider        { min-height: 384px; }
  .ti-hbg-prev           { left: 10px; }
  .ti-hbg-next           { right: 10px; }
  .ti-hbg-prev,
  .ti-hbg-next           { width: 42px; height: 42px; font-size: 28px; }
  .ti-hbg-dots           { bottom: 54px; }
  .ti-hero-slider-inner p { font-size: 15px; }
}
@media (max-width: 480px) {
  .ti-hero-slider        { min-height: 288px; }
  .ti-hero-slider-inner h1 { font-size: 1.75rem; }
  .ti-hbg-dots           { bottom: 46px; }
}

/* ── 8. TRUST STRIP ───────────────────────────────────────────── */
.ti-trust-strip { background: #fff; padding: 32px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.ti-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ti-trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-radius: var(--ti-radius);
  border: 1px solid #eef2ff;
  transition: var(--ti-trans);
}
.ti-trust-item:hover { box-shadow: var(--ti-shadow); transform: translateY(-2px); }
.ti-trust-icon { font-size: 36px; flex-shrink: 0; }
.ti-trust-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ti-trust-item p  { font-size: 13px; color: var(--ti-gray); margin: 0; }

/* ── 9. ABOUT SECTION ─────────────────────────────────────────── */
.ti-about-img-grid { position: relative; }
.ti-about-img-main {
  border-radius: var(--ti-radius-lg);
  overflow: hidden;
  box-shadow: var(--ti-shadow-lg);
  aspect-ratio: 4/3;
}
.ti-about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.ti-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--ti-blue-lt);
  border-radius: var(--ti-radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  color: var(--ti-gray);
  text-align: center;
}
.ti-img-placeholder span { font-size: 64px; }
.ti-about-badge-card {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--ti-blue);
  color: #fff;
  border-radius: var(--ti-radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--ti-shadow-lg);
}
.ti-about-years-num  { display: block; font-size: 36px; font-weight: 800; }
.ti-about-years-text { display: block; font-size: 13px; opacity: 0.85; line-height: 1.4; }

/* About content */
.ti-about-content     { padding: 20px 0; }
.ti-about-content h2  { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 16px; }
.ti-lead-text         { font-size: 17px; color: #444; font-weight: 500; margin-bottom: 16px; line-height: 1.8; }
.ti-about-content p   { color: var(--ti-gray); margin-bottom: 24px; }
.ti-check-list        { margin-bottom: 32px; }
.ti-check-list li     { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 15px; }
.ti-check-list li span { color: var(--ti-blue); font-weight: 700; flex-shrink: 0; }

/* About – chip row (mini stats below image) */
.ti-about-chip-row {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.ti-about-chip {
  flex: 1;
  min-width: 90px;
  background: #fff;
  border: 2px solid var(--ti-blue-lt);
  border-radius: var(--ti-radius);
  padding: 12px 10px;
  text-align: center;
  box-shadow: var(--ti-shadow);
}
.ti-about-chip-num   { display: block; font-size: 22px; font-weight: 800; color: var(--ti-blue); }
.ti-about-chip-label { display: block; font-size: 11px; color: var(--ti-gray); margin-top: 2px; }

/* About – two-column highlights */
.ti-about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  margin-bottom: 28px;
}
.ti-about-highlights .ti-check-list { margin-bottom: 0; }

/* About – faculty strip */
.ti-about-faculty-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ti-blue-lt);
  border-radius: var(--ti-radius);
  padding: 14px 18px;
  margin-bottom: 28px;
}
.ti-about-faculty-avatars { display: flex; }
.ti-about-faculty-av {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.ti-about-faculty-avatars .ti-about-faculty-av:first-child { margin-left: 0; }
.ti-about-faculty-more { background: var(--ti-blue) !important; font-size: 11px; }
.ti-about-faculty-strip p { font-size: 13px; color: var(--ti-dark); margin: 0; line-height: 1.5; }
.ti-about-faculty-strip p strong { color: var(--ti-blue); }

/* About – dual CTA row */
.ti-about-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── 10. COURSES SECTION ──────────────────────────────────────── */
.ti-courses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 16px;
}
.ti-course-card {
  background: #fff;
  border-radius: var(--ti-radius-lg);
  box-shadow: var(--ti-shadow);
  overflow: hidden;
  transition: var(--ti-trans);
  border-top: 4px solid var(--card-color, var(--ti-blue));
}
.ti-course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,87,168,0.18);
}
.ti-course-card-top {
  padding: 28px 24px 20px;
  background: linear-gradient(135deg, var(--card-color, var(--ti-blue))15, #fff 80%);
}
.ti-course-icon { font-size: 40px; display: block; margin-bottom: 14px; }
.ti-course-card-top h3  { font-size: 18px; margin-bottom: 8px; color: var(--ti-dark); }
.ti-course-duration {
  display: inline-block;
  background: rgba(0,87,168,0.1);
  color: var(--ti-blue);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}
.ti-course-card-body { padding: 0 24px 24px; }
.ti-course-card-body p { font-size: 14px; color: var(--ti-gray); margin-bottom: 16px; line-height: 1.7; }
.ti-course-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.ti-course-subjects span {
  background: var(--ti-blue-lt);
  color: var(--ti-blue);
  font-size: 12px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 50px;
}
.ti-course-link {
  display: inline-block;
  color: var(--card-color, var(--ti-blue));
  font-size: 14px;
  font-weight: 600;
}
.ti-course-link:hover { letter-spacing: 0.5px; }

/* ── 11. STATS SECTION ────────────────────────────────────────── */
.ti-stats-section {
  background: linear-gradient(135deg, var(--ti-dark2) 0%, var(--ti-blue) 100%);
  padding: 64px 0;
}
.ti-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}
.ti-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ti-stat-emoji  { font-size: 32px; margin-bottom: 4px; }
.ti-stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--ti-yellow);
  line-height: 1;
}
.ti-stat-label  { font-size: 13px; color: rgba(255,255,255,0.75); }

/* ── 12. WHY CHOOSE US ────────────────────────────────────────── */
.ti-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.ti-why-item {
  background: #fff;
  border-radius: var(--ti-radius);
  padding: 28px 22px;
  box-shadow: var(--ti-shadow);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--ti-trans);
}
.ti-why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--ti-shadow-lg);
  border-left: 4px solid var(--ti-blue);
}
.ti-why-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--ti-blue-lt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}
.ti-why-text h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.ti-why-text p  { font-size: 13px; color: var(--ti-gray); margin: 0; line-height: 1.6; }

/* ── 13. TESTIMONIALS ─────────────────────────────────────────── */
.ti-testimonials-section { background: var(--ti-gray-lt); }
.ti-testimonials-section .ti-section-head h2 { color: var(--ti-dark) !important; }
.ti-testimonials-section .ti-section-head p  { color: var(--ti-gray) !important; }

.ti-testi-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.ti-testi-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: var(--ti-radius-lg);
  padding: 28px;
  transition: var(--ti-trans);
  box-shadow: var(--ti-shadow);
}
.ti-testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ti-shadow-lg);
  border-color: var(--ti-blue);
}
.ti-testi-stars    { font-size: 16px; margin-bottom: 16px; }
.ti-testi-quote    {
  font-size: 15px;
  color: var(--ti-gray);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
}
.ti-testi-quote::before {
  content: '"';
  font-size: 60px;
  color: rgba(0,87,168,0.12);
  font-family: serif;
  position: absolute;
  top: -16px;
  left: -8px;
  line-height: 1;
}
.ti-testi-author        { display: flex; align-items: center; gap: 14px; }
.ti-testi-author img    { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ti-blue-lt); }
.ti-testi-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--ti-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  border: 2px solid var(--ti-blue-lt);
}
.ti-testi-author strong { display: block; font-size: 15px; color: var(--ti-dark); }
.ti-testi-author span   { font-size: 13px; color: var(--ti-gray); }
.ti-testi-author em     { font-size: 12px; color: var(--ti-blue); font-style: normal; }

.ti-testi-dots { display: flex; justify-content: center; gap: 8px; }
.ti-testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: var(--ti-trans);
}
.ti-testi-dot.active { background: var(--ti-blue); width: 28px; border-radius: 5px; }

/* ── 14. GALLERY SECTION ──────────────────────────────────────── */
.ti-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.ti-gallery-item {
  border-radius: var(--ti-radius);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}
.ti-gallery-item:nth-child(1),
.ti-gallery-item:nth-child(6) { grid-column: span 2; aspect-ratio: 2/1; }

.ti-gallery-link  { display: block; width: 100%; height: 100%; position: relative; }
.ti-gallery-link img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.ti-gallery-link:hover img { transform: scale(1.08); }
.ti-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,87,168,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  opacity: 0;
  transition: var(--ti-trans);
}
.ti-gallery-link:hover .ti-gallery-overlay { opacity: 1; }

.ti-gallery-placeholder .ti-gallery-ph-inner {
  width: 100%;
  height: 100%;
  background: var(--ti-blue-lt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 32px;
  color: var(--ti-gray);
  text-align: center;
}
.ti-gallery-ph-inner p { font-size: 12px; line-height: 1.4; }

/* ── 15. CONTACT SECTION ──────────────────────────────────────── */
.ti-contact-section {
  background: linear-gradient(135deg, var(--ti-dark2) 0%, var(--ti-blue-dk) 100%);
  color: #fff;
}
.ti-contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 28px;
  align-items: start;
}
.ti-contact-section .ti-section-head h2 { color: #fff; }
.ti-contact-section .ti-section-head p  { color: rgba(255,255,255,0.8); }
.ti-contact-info h2  { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: #fff; margin-bottom: 16px; }
.ti-contact-info p   { color: rgba(255,255,255,0.8); margin-bottom: 32px; font-size: 16px; }

.ti-contact-details    { margin-bottom: 32px; display: flex; flex-direction: column; gap: 16px; }
.ti-contact-detail-item { display: flex; align-items: flex-start; gap: 14px; }
.ti-cd-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.ti-contact-detail-item strong { display: block; font-size: 13px; color: var(--ti-yellow); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.ti-contact-detail-item span,
.ti-contact-detail-item a { color: rgba(255,255,255,0.85); font-size: 15px; text-decoration: none; }
.ti-contact-detail-item a:hover { color: var(--ti-yellow); }

/* Contact form card */
.ti-contact-form-card {
  background: #fff;
  border-radius: var(--ti-radius-lg);
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.ti-contact-form-card h3 { font-size: 22px; margin-bottom: 6px; color: var(--ti-dark); }
.ti-contact-form-card > p { color: var(--ti-gray); font-size: 14px; margin-bottom: 24px; }

/* Native form styles */
.ti-native-form { display: flex; flex-direction: column; gap: 16px; }
.ti-form-row    { display: flex; gap: 16px; }
.ti-form-row-2  { }
.ti-form-group  { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.ti-form-group label { font-size: 13px; font-weight: 600; color: var(--ti-dark); }
.ti-form-group input,
.ti-form-group select,
.ti-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8edf5;
  border-radius: 10px;
  font-family: var(--ti-font);
  font-size: 14px;
  color: var(--ti-dark);
  transition: var(--ti-trans);
  background: #fff;
}
.ti-form-group input:focus,
.ti-form-group select:focus,
.ti-form-group textarea:focus {
  outline: none;
  border-color: var(--ti-blue);
  box-shadow: 0 0 0 4px rgba(0,87,168,0.08);
}
.ti-form-group textarea { resize: vertical; }

/* ── 16. MAP SECTION ──────────────────────────────────────────── */
.ti-map-section     { }
.ti-map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }
.ti-map-placeholder {
  background: var(--ti-blue-lt);
  padding: 40px;
  text-align: center;
  color: var(--ti-gray);
  font-size: 15px;
}

/* ── 17. FOOTER ───────────────────────────────────────────────── */
.ti-footer { background: var(--ti-dark); color: rgba(255,255,255,0.8); }

/* Newsletter */
.ti-footer-newsletter {
  background: var(--ti-blue);
  padding: 36px 0;
}
.ti-newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ti-newsletter-text h3 { font-size: 20px; color: #fff; margin-bottom: 6px; }
.ti-newsletter-text p  { color: rgba(255,255,255,0.8); font-size: 14px; margin: 0; }
.ti-newsletter-form    { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.ti-newsletter-form input {
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-family: var(--ti-font);
  font-size: 14px;
  min-width: 280px;
}
.ti-newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.ti-newsletter-form input:focus { outline: none; border-color: var(--ti-yellow); }

/* Footer main */
.ti-footer-main   { padding: 64px 0 40px; }
.ti-footer-grid   {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
}
.ti-footer-heading {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.ti-footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--ti-blue);
  border-radius: 2px;
}
.ti-footer-logo   { margin-bottom: 20px; }
.ti-logo-white    { color: #fff !important; }
.ti-logo-white:hover { color: var(--ti-yellow) !important; }
.ti-footer-desc   { font-size: 14px; line-height: 1.8; margin-bottom: 24px; color: rgba(255,255,255,0.65); }

.ti-footer-socials { display: flex; gap: 10px; }
.ti-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  transition: var(--ti-trans);
  border: 1px solid rgba(255,255,255,0.1);
}
.ti-social-btn:hover { background: var(--ti-blue); color: #fff; transform: translateY(-2px); }
.ti-social-wa:hover  { background: var(--ti-wa) !important; }

.ti-footer-links li { margin-bottom: 10px; }
.ti-footer-links a  { color: rgba(255,255,255,0.65); font-size: 14px; display: flex; align-items: center; gap: 6px; }
.ti-footer-links a::before { content: '›'; color: var(--ti-blue); font-size: 18px; }
.ti-footer-links a:hover   { color: var(--ti-yellow); padding-left: 4px; }

.ti-footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.ti-fc-icon                { font-size: 18px; flex-shrink: 0; margin-top: 2px; }
.ti-footer-contact-list a  { color: rgba(255,255,255,0.7); font-size: 14px; }
.ti-footer-contact-list span { font-size: 14px; color: rgba(255,255,255,0.7); }
.ti-footer-contact-list a:hover { color: var(--ti-yellow); }

.ti-footer-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.ti-footer-rating strong { color: var(--ti-yellow); font-size: 18px; font-weight: 800; }

/* Footer bottom bar */
.ti-footer-bottom { background: rgba(0,0,0,0.3); padding: 20px 0; }
.ti-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.ti-footer-bottom p  { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.ti-footer-bottom a  { color: rgba(255,255,255,0.6); }
.ti-footer-bottom a:hover { color: var(--ti-yellow); }

/* ── 18. FLOATING ELEMENTS ────────────────────────────────────── */
.ti-float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--ti-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  z-index: 9998;
  transition: var(--ti-trans);
  animation: ti-wa-pulse 2.5s infinite;
}
.ti-float-wa:hover { transform: scale(1.12); box-shadow: 0 12px 32px rgba(37,211,102,0.6); }
.ti-float-wa:hover .ti-float-wa-tooltip { opacity: 1; transform: translateX(-8px); }
.ti-float-wa-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: #fff;
  color: var(--ti-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: var(--ti-shadow);
  opacity: 0;
  transform: translateX(4px);
  transition: var(--ti-trans);
  pointer-events: none;
}
@keyframes ti-wa-pulse {
  0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 8px 32px rgba(37,211,102,0.7), 0 0 0 14px rgba(37,211,102,0.08); }
}

.ti-scroll-top {
  position: fixed;
  bottom: 96px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--ti-blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--ti-shadow);
  z-index: 9997;
  transition: var(--ti-trans);
}
.ti-scroll-top.visible    { display: flex; }
.ti-scroll-top:hover      { background: var(--ti-blue-dk); transform: translateY(-2px); }

/* ── 19. MOBILE OVERLAY ───────────────────────────────────────── */
.ti-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.ti-mobile-overlay.active { display: block; }

/* ── 20. TWENTY TWENTY-FIVE (FSE) OVERRIDES ───────────────────── */
/* Zero out CSS vars injected by TT25's useRootPaddingAwareAlignments */
:root {
  --wp--style--root--padding-top:    0px !important;
  --wp--style--root--padding-right:  0px !important;
  --wp--style--root--padding-bottom: 0px !important;
  --wp--style--root--padding-left:   0px !important;
  --wp--style--global--content-size: 1200px !important;
  --wp--style--global--wide-size:    1440px !important;
  --wp--style--block-gap:            0px !important;
}

/* Remove body padding injected by TT25's theme.json */
html, body, body.ti-home {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
}

/* Remove .wp-site-blocks injected padding/gap */
.wp-site-blocks {
  padding: 0 !important;
  gap: 0 !important;
  max-width: none !important;
}

/* Kill any block gap between sections */
:where(.wp-site-blocks) > * + * { margin-block-start: 0 !important; }

/* Ensure full-width sections are never constrained */
.ti-topbar,
.ti-header,
.ti-hero,
.ti-trust-strip,
.ti-section,
.ti-stats-section,
.ti-contact-section,
.ti-map-section,
.ti-footer {
  max-width: none !important;
  width: 100% !important;
  box-sizing: border-box;
}

/* ── HERO ILLUSTRATION (missing class fix) ─────────────────────── */
.ti-hero-illustration {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 380px;
}

/* ── ABOUT BADGE – allow overflow so card is not clipped ──────── */
.ti-about-img-grid {
  overflow: visible !important;
  padding-bottom: 32px; /* space for the absolute badge */
}

/* ── 21. AOS ANIMATIONS ───────────────────────────────────────── */
[data-aos] { transition-property: opacity, transform !important; }

/* ── 21. WPCF7 & WPFORMS OVERRIDE ─────────────────────────────── */
.wpcf7-form .wpcf7-form-control-wrap,
.wpforms-field { margin-bottom: 16px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8edf5;
  border-radius: 10px;
  font-family: var(--ti-font);
  font-size: 14px;
  transition: var(--ti-trans);
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--ti-blue);
  box-shadow: 0 0 0 4px rgba(0,87,168,0.08);
}
.wpcf7-form input[type="submit"],
.wpforms-submit {
  background: var(--ti-blue);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--ti-font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: var(--ti-trans);
}
.wpcf7-form input[type="submit"]:hover { background: var(--ti-blue-dk); }

/* ── 22. SINGLE PAGES ─────────────────────────────────────────── */
.ti-page-hero {
  background: linear-gradient(135deg, var(--ti-dark2), var(--ti-blue));
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}
.ti-page-hero h1 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.8rem); }
.ti-page-hero p  { color: rgba(255,255,255,0.8); margin-top: 12px; font-size: 16px; }

/* ══════════════════════════════════════════════════════════════
   ABOUT US PAGE
══════════════════════════════════════════════════════════════ */

/* Hero */
.ti-about-hero { padding: 90px 20px 80px; }
.ti-about-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 12px 0; }
.ti-about-hero p  { font-size: 18px; max-width: 640px; margin: 0 auto 20px; }

/* ── Quick Stats Strip ───────────────────────────────────── */
.ti-about-stats-strip {
  background: linear-gradient(135deg, var(--ti-dark2) 0%, var(--ti-blue) 100%);
  padding: 48px 0;
}
.ti-about-mini-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  text-align: center;
}
.ti-about-mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 12px;
  border-radius: var(--ti-radius);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--ti-trans);
}
.ti-about-mini-stat:hover { background: rgba(255,255,255,0.14); transform: translateY(-3px); }
.ti-about-mini-stat-icon { font-size: 28px; margin-bottom: 4px; }
.ti-about-mini-stat strong {
  font-size: 26px;
  font-weight: 800;
  color: var(--ti-yellow);
  line-height: 1;
}
.ti-about-mini-stat span { font-size: 12px; color: rgba(255,255,255,0.7); }

/* ── Mission & Vision ─────────────────────────────────────── */
.ti-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.ti-mv-card {
  border-radius: var(--ti-radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.ti-mv-mission {
  background: var(--ti-blue);
  color: #fff;
}
.ti-mv-vision {
  background: var(--ti-dark2);
  color: #fff;
}
.ti-mv-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}
.ti-mv-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}
.ti-mv-card p {
  color: rgba(255,255,255,0.82);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.ti-mv-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ti-mv-points li {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding-left: 20px;
  position: relative;
}
.ti-mv-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ti-yellow);
  font-weight: 700;
}

/* ── Faculty Grid ─────────────────────────────────────────── */
.ti-faculty-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ti-faculty-card {
  background: #fff;
  border-radius: var(--ti-radius-lg);
  box-shadow: var(--ti-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--ti-trans);
}
.ti-faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ti-shadow-lg);
}
.ti-faculty-avatar {
  background: linear-gradient(135deg, var(--ti-blue), #6c63ff);
  padding: 32px 20px 20px;
  text-align: center;
}
.ti-faculty-avatar span { font-size: 60px; display: block; }
.ti-faculty-info { padding: 20px 20px 24px; }
.ti-faculty-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; color: var(--ti-dark); }
.ti-faculty-subject { color: var(--ti-blue); font-size: 14px; font-weight: 600; margin-bottom: 4px !important; }
.ti-faculty-qual    { color: var(--ti-gray); font-size: 13px; margin-bottom: 12px !important; }
.ti-faculty-meta    { display: flex; flex-direction: column; gap: 4px; }
.ti-faculty-exp     { font-size: 12px; color: var(--ti-gray); }
.ti-faculty-boards  {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--ti-blue);
  background: var(--ti-blue-lt);
  padding: 3px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

/* ── Timeline ─────────────────────────────────────────────── */
.ti-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.ti-timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--ti-blue), var(--ti-blue-lt));
  transform: translateX(-50%);
  border-radius: 3px;
}
.ti-timeline-item {
  display: flex;
  width: 50%;
  padding-bottom: 40px;
  position: relative;
}
.ti-tl-left  { justify-content: flex-end; padding-right: 52px; align-self: flex-start; }
.ti-tl-right { justify-content: flex-start; padding-left: 52px; align-self: flex-end; margin-top: -40px; }

.ti-timeline-content {
  background: #fff;
  border-radius: var(--ti-radius-lg);
  padding: 24px 28px;
  box-shadow: var(--ti-shadow);
  max-width: 420px;
  position: relative;
  border-top: 3px solid var(--ti-blue);
  transition: var(--ti-trans);
}
.ti-timeline-content:hover { box-shadow: var(--ti-shadow-lg); transform: translateY(-3px); }

/* The dot on the centre line */
.ti-timeline-content::before {
  content: '';
  position: absolute;
  top: 22px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ti-blue);
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--ti-blue);
}
.ti-tl-left  .ti-timeline-content::before { right: -59px; }
.ti-tl-right .ti-timeline-content::before { left: -59px; }

.ti-timeline-year {
  display: inline-block;
  background: var(--ti-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 50px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.ti-timeline-icon {
  font-size: 28px;
  margin-bottom: 8px;
  display: block;
}
.ti-timeline-content h4 { font-size: 16px; margin-bottom: 8px; color: var(--ti-dark); }
.ti-timeline-content p  { font-size: 14px; color: var(--ti-gray); line-height: 1.7; margin: 0; }

/* ── Core Values ──────────────────────────────────────────── */
.ti-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ti-value-card {
  background: #fff;
  border-radius: var(--ti-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--ti-shadow);
  border-top: 4px solid var(--val-color, var(--ti-blue));
  transition: var(--ti-trans);
}
.ti-value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ti-shadow-lg);
}
.ti-value-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--val-color, var(--ti-blue)) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
}
.ti-value-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ti-dark);
}
.ti-value-card p { font-size: 14px; color: var(--ti-gray); line-height: 1.7; margin: 0; }

/* ── Achievements ─────────────────────────────────────────── */
.ti-about-achievements {
  background: linear-gradient(135deg, var(--ti-dark2), var(--ti-blue-dk));
  color: #fff;
}
.ti-about-achievements .ti-section-head h2 { color: #fff; }
.ti-about-achievements .ti-section-head p  { color: rgba(255,255,255,0.75); }
.ti-achievements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ti-achievement-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--ti-radius-lg);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--ti-trans);
}
.ti-achievement-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-5px);
  border-color: var(--ti-yellow);
}
.ti-achievement-icon { font-size: 44px; display: block; margin-bottom: 14px; }
.ti-achievement-card h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ti-achievement-card p  { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.7; margin: 0; }

/* ── About testimonials row ───────────────────────────────── */
.ti-about-testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.ti-about-testi-card {
  background: var(--ti-gray-lt);
  border-radius: var(--ti-radius-lg);
  padding: 28px;
  border-left: 4px solid var(--ti-blue);
  transition: var(--ti-trans);
}
.ti-about-testi-card:hover {
  box-shadow: var(--ti-shadow);
  transform: translateY(-3px);
}

/* ── CTA Banner ───────────────────────────────────────────── */
.ti-about-cta-banner {
  background: linear-gradient(135deg, var(--ti-blue) 0%, var(--ti-dark2) 100%);
  padding: 72px 0;
}
.ti-about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.ti-about-cta-text h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: #fff; margin-bottom: 10px; }
.ti-about-cta-text p  { color: rgba(255,255,255,0.8); font-size: 16px; margin: 0; }
.ti-about-cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }

/* ── About Page Responsive ────────────────────────────────── */
@media (max-width: 1100px) {
  .ti-about-mini-stats  { grid-template-columns: repeat(3, 1fr); }
  .ti-achievements-grid { grid-template-columns: repeat(2, 1fr); }
  .ti-faculty-grid      { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .ti-mv-grid           { grid-template-columns: 1fr; }
  .ti-about-testi-row   { grid-template-columns: 1fr; }
  .ti-values-grid       { grid-template-columns: repeat(2, 1fr); }
  /* Timeline – stack vertically */
  .ti-timeline-line     { left: 20px; }
  .ti-timeline-item     { width: 100%; padding-left: 56px !important; padding-right: 0 !important; justify-content: flex-start !important; margin-top: 0 !important; }
  .ti-tl-left  .ti-timeline-content::before,
  .ti-tl-right .ti-timeline-content::before { left: -43px; right: auto; }
  .ti-about-cta-inner   { flex-direction: column; text-align: center; }
  .ti-about-cta-buttons { justify-content: center; }
}
@media (max-width: 768px) {
  .ti-about-mini-stats  { grid-template-columns: repeat(2, 1fr); }
  .ti-faculty-grid      { grid-template-columns: 1fr; }
  .ti-achievements-grid { grid-template-columns: 1fr; }
  .ti-values-grid       { grid-template-columns: 1fr; }
}

.ti-breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.6); margin-top: 16px; }
.ti-breadcrumb a { color: var(--ti-yellow); }
.ti-breadcrumb a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   MEGA MENU
══════════════════════════════════════════════════════════════ */

/* Make the header the positioning root for the mega panel */
.ti-header { position: relative; }

/* ti-has-mega: use relative so sub-menu anchors to this item */
.ti-nav-menu li.ti-has-mega { position: relative !important; }

/* Let standard sub-menu hover CSS handle show/hide */
.ti-nav-menu li.ti-has-mega > .sub-menu { display: block; }

/* ── Arrow indicator ────────────────────────────── */
.ti-menu-arrow {
  display: inline-block;
  font-size: 10px;
  margin-left: 3px;
  vertical-align: middle;
  transition: transform 0.25s ease;
  line-height: 1;
}
.ti-nav-menu li.ti-has-mega:hover .ti-menu-arrow { transform: rotate(180deg); }

/* ── The mega panel ─────────────────────────────── */
.ti-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--ti-blue);
  border-radius: 0 0 var(--ti-radius-lg) var(--ti-radius-lg);
  box-shadow: 0 20px 56px rgba(0, 87, 168, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 2000;
  pointer-events: none;
}
.ti-nav-menu li.ti-has-mega:hover .ti-mega-menu,
.ti-nav-menu li.ti-has-mega.ti-mega-focus .ti-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Inner padding + max-width ──────────────────── */
.ti-mega-inner {
  max-width: var(--ti-max-width);
  margin: 0 auto;
  padding: 32px 24px 24px;
}

/* ── 4-column grid ──────────────────────────────── */
.ti-mega-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

/* Column separators */
.ti-mega-col + .ti-mega-col {
  border-left: 1px solid #eef2ff;
  padding-left: 24px;
}
.ti-mega-col:not(:last-child) { padding-right: 24px; }

/* ── Column title (linked heading) ─────────────── */
.ti-mega-col-title {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 2px solid var(--ti-blue-lt);
  transition: var(--ti-trans);
}
.ti-mega-col-title:hover { color: inherit; }

.ti-mega-col-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--ti-blue-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: var(--ti-trans);
}
.ti-mega-col-title:hover .ti-mega-col-icon {
  background: var(--ti-blue);
}

.ti-mega-col-title-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ti-dark);
  line-height: 1.3;
}
.ti-mega-col-title-text span {
  display: block;
  font-size: 11px;
  color: var(--ti-gray);
  font-weight: 400;
  margin-top: 2px;
}
.ti-mega-col-title:hover .ti-mega-col-title-text strong { color: var(--ti-blue); }

/* ── Sub-links list ─────────────────────────────── */
.ti-mega-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ti-mega-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--ti-gray);
  font-weight: 500;
  text-decoration: none;
  transition: var(--ti-trans);
  line-height: 1.4;
}
.ti-mega-links li a:hover {
  background: var(--ti-blue-lt);
  color: var(--ti-blue);
  padding-left: 14px;
}
.ti-mega-link-icon {
  font-size: 15px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

/* ── Stream links (2-line: title + sub-note) ────── */
.ti-mega-stream-link {
  display: flex !important;
  align-items: flex-start !important;
  gap: 8px !important;
  padding: 9px 10px !important;
}
.ti-mega-stream-link span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.ti-mega-stream-link strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ti-dark);
  display: block;
}
.ti-mega-stream-link em {
  font-size: 11px;
  color: var(--ti-gray);
  font-style: normal;
}
.ti-mega-links li a.ti-mega-stream-link:hover strong { color: var(--ti-blue); }

/* ── Accent column (Competitive Exams) ─────────── */
.ti-mega-col-accent .ti-mega-col-icon {
  background: rgba(255, 107, 53, 0.1);
}
.ti-mega-col-accent .ti-mega-col-title:hover .ti-mega-col-icon {
  background: var(--ti-orange);
}
.ti-mega-col-accent .ti-mega-col-title:hover .ti-mega-col-title-text strong {
  color: var(--ti-orange);
}
.ti-mega-col-accent .ti-mega-links li a:hover {
  background: rgba(255, 107, 53, 0.07);
  color: var(--ti-orange);
  padding-left: 14px;
}
.ti-mega-col-accent .ti-mega-links li a.ti-mega-stream-link:hover strong {
  color: var(--ti-orange);
}

/* ── Bottom footer strip ────────────────────────── */
.ti-mega-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #eef2ff;
  flex-wrap: wrap;
}
.ti-mega-footer-note {
  font-size: 13px;
  color: var(--ti-gray);
  margin: 0;
}
.ti-mega-footer-note strong { color: var(--ti-blue); }
.ti-mega-cta {
  padding: 9px 22px !important;
  font-size: 13px !important;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Mobile mega menu (accordion) ──────────────── */
@media (max-width: 768px) {
  .ti-nav-menu li.ti-has-mega { position: relative !important; }

  /* Reset desktop absolute panel to a collapsible block */
  .ti-mega-menu {
    position: static;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    background: var(--ti-blue-lt);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
    padding: 0;
  }
  .ti-nav-menu li.ti-has-mega.ti-mega-open .ti-mega-menu {
    max-height: 800px;
  }
  /* Arrow on mobile */
  .ti-nav-menu li.ti-has-mega.ti-mega-open .ti-menu-arrow { transform: rotate(180deg); }

  .ti-mega-inner { padding: 12px 16px 16px; }

  .ti-mega-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .ti-mega-col + .ti-mega-col {
    border-left: none;
    border-top: 1px solid rgba(0, 87, 168, 0.1);
    padding-left: 0;
    margin-top: 10px;
    padding-top: 10px;
  }
  .ti-mega-col:not(:last-child) { padding-right: 0; }
  .ti-mega-col-icon { width: 32px; height: 32px; min-width: 32px; font-size: 16px; }
  .ti-mega-footer { flex-direction: column; align-items: flex-start; }
  .ti-mega-cta { display: none; } /* hide CTA button in mobile accordion */
}

/* ── 23. RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ti-stats-grid    { grid-template-columns: repeat(3, 1fr); }
  .ti-why-grid      { grid-template-columns: repeat(2, 1fr); }
  .ti-footer-grid   { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .ti-hero-inner       { grid-template-columns: 1fr; text-align: center; }
  .ti-hero-content     { order: 1; }
  .ti-hero-visual      { order: 2; display: flex; justify-content: center; margin-top: 32px; }
  .ti-hero-illustration { min-height: 0; }
  .ti-hero-img-wrap    { width: 260px; height: 260px; }
  .ti-hero-card        { display: none; }
  .ti-hero-blob        { width: 260px; height: 260px; }
  .ti-hero-buttons  { justify-content: center; }
  .ti-hero-meta     { justify-content: center; }
  .ti-trust-grid    { grid-template-columns: repeat(2, 1fr); }
  .ti-two-col       { grid-template-columns: 1fr; gap: 40px; }
  .ti-about-badge-card { right: 0; }
  .ti-about-highlights { grid-template-columns: 1fr; }
  .ti-about-chip-row   { justify-content: center; }
  .ti-courses-grid  { grid-template-columns: repeat(2, 1fr); }
  .ti-testi-slider  { grid-template-columns: 1fr; }
  .ti-contact-grid  { grid-template-columns: 1fr; gap: 40px; }
  .ti-gallery-grid  { grid-template-columns: repeat(2, 1fr); }
  .ti-gallery-item:nth-child(1),
  .ti-gallery-item:nth-child(6) { grid-column: span 1; aspect-ratio: 1; }
}

@media (max-width: 768px) {
  .ti-topbar-left   { display: none; }
  .ti-nav           { display: none; position: fixed; top: 0; left: 0; width: 80%; max-width: 300px; height: 100vh; background: #fff; flex-direction: column; align-items: flex-start; padding: 80px 24px 32px; box-shadow: 4px 0 40px rgba(0,0,0,0.2); z-index: 999; transform: translateX(-100%); transition: transform 0.3s ease; }
  .ti-nav.ti-nav-open { display: flex; transform: translateX(0); }
  .ti-nav-menu      { flex-direction: column; width: 100%; gap: 4px; }
  .ti-nav-menu li a { padding: 12px 16px; font-size: 15px; }
  .ti-hamburger     { display: flex; }
  .ti-section       { padding: 56px 0; }
  .ti-courses-grid  { grid-template-columns: 1fr; }
  .ti-stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .ti-stat-number   { font-size: 32px; }
  .ti-why-grid      { grid-template-columns: 1fr; }
  .ti-footer-grid   { grid-template-columns: 1fr; }
  .ti-newsletter-form input { min-width: 100%; }
  .ti-newsletter-inner { flex-direction: column; }
  .ti-footer-bottom-inner { flex-direction: column; text-align: center; }
  .ti-form-row-2    { flex-direction: column; }
  .ti-contact-form-card { padding: 24px; }
  .ti-hero          { padding: 70px 0 100px; }
}

@media (max-width: 480px) {
  .ti-trust-grid    { grid-template-columns: 1fr; }
  .ti-stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .ti-gallery-grid  { grid-template-columns: 1fr; }
  .ti-hero-buttons  { flex-direction: column; align-items: center; }
  .ti-hero-img-wrap { width: 220px; height: 220px; }
  .ti-hero-blob     { width: 220px; height: 220px; }
}

/* ══════════════════════════════════════════════════════════════
   STUDENT RESULTS PAGE
══════════════════════════════════════════════════════════════ */

/* Hero */
.ti-results-hero { padding: 80px 20px 60px; }

/* Stats strip */
.ti-results-stats-strip { background: var(--ti-blue); padding: 0; }
.ti-results-stats-strip .ti-stats-bar {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.ti-results-stats-strip .ti-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.15);
  color: #fff;
}
.ti-results-stats-strip .ti-stat:last-child { border-right: none; }
.ti-results-stats-strip .ti-stat-num   { display: block; font-size: 2rem; font-weight: 800; color: var(--ti-yellow); }
.ti-results-stats-strip .ti-stat-label { display: block; font-size: 13px; opacity: .85; margin-top: 4px; }

/* Toppers grid */
.ti-toppers-section { text-align: center; }
.ti-toppers-heading { font-size: 1.8rem; margin-bottom: 32px; }
.ti-toppers-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.ti-topper-card {
  background: #fff;
  border-radius: var(--ti-radius-lg);
  box-shadow: var(--ti-shadow-lg);
  padding: 32px 24px 24px;
  text-align: center;
  width: 200px;
  position: relative;
  transition: var(--ti-trans);
}
.ti-topper-card:hover { transform: translateY(-6px); }
.ti-topper-card.rank-1 { border-top: 4px solid #ffc107; }
.ti-topper-card.rank-2 { border-top: 4px solid #adb5bd; }
.ti-topper-card.rank-3 { border-top: 4px solid #cd7f32; }
.ti-rank-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ti-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.ti-topper-card.rank-1 .ti-rank-badge { background: #ffc107; color: #000; }
.ti-topper-photo { margin: 8px auto 12px; width: 80px; height: 80px; }
.ti-topper-photo img,
.ti-topper-photo .ti-no-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}
.ti-topper-photo .ti-no-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.ti-topper-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.ti-topper-class { font-size: 13px; color: var(--ti-gray); }
.ti-topper-pct   { font-size: 22px; font-weight: 800; color: var(--ti-blue); margin: 6px 0 2px; }
.ti-topper-year  { font-size: 12px; color: var(--ti-gray); }

/* Results grid */
.ti-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}
.ti-result-card {
  background: #fff;
  border-radius: var(--ti-radius-lg);
  box-shadow: var(--ti-shadow);
  overflow: visible;
  transition: var(--ti-trans);
}
.ti-result-card:hover { transform: translateY(-4px); box-shadow: var(--ti-shadow-lg); }
.ti-card-photo {
  position: relative;
  height: 120px;
  background: var(--ti-blue-lt);
  border-radius: var(--ti-radius-lg) var(--ti-radius-lg) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ti-card-photo .ti-no-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  border: 3px solid #fff;
  box-shadow: var(--ti-shadow);
}
.ti-card-photo img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--ti-shadow);
}
.ti-grade-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ti-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.ti-card-body { padding: 20px; }
.ti-student-name { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.ti-card-body p  { font-size: 13px; color: var(--ti-gray); margin-bottom: 6px; }
.ti-label        { font-weight: 600; color: var(--ti-dark); }
.ti-percentage-bar {
  position: relative;
  background: #eee;
  border-radius: 20px;
  height: 8px;
  margin: 12px 0 6px;
  overflow: hidden;
}
.ti-bar-fill {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: linear-gradient(90deg, var(--ti-blue), var(--ti-orange));
  border-radius: 20px;
  transition: width 1s ease;
}
.ti-pct-label {
  display: block;
  text-align: right;
  font-size: 13px;
  font-weight: 700;
  color: var(--ti-blue);
  margin-top: 4px;
}
.ti-remarks { font-style: italic; color: var(--ti-blue) !important; font-weight: 500; }

/* Filter bar */
.ti-filter-bar { margin-bottom: 24px; }
.ti-year-filter { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.ti-filter-label { font-size: 14px; font-weight: 600; color: var(--ti-dark); }
.ti-year-btn {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  background: #f0f0f0;
  color: var(--ti-dark);
  text-decoration: none;
  transition: var(--ti-trans);
}
.ti-year-btn:hover,
.ti-year-btn.active { background: var(--ti-blue); color: #fff; }

/* Yellow CTA button */
.ti-btn-yellow {
  background: var(--ti-yellow);
  color: #1a1a2e;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--ti-radius);
  text-decoration: none;
  display: inline-block;
  transition: var(--ti-trans);
}
.ti-btn-yellow:hover { background: #e5ac00; transform: translateY(-2px); }

/* No-photo small (table view) */
.ti-no-photo-sm {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--ti-blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

/* Results table */
.ti-results-table-wrap { overflow-x: auto; }
.ti-results-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.ti-results-table th {
  background: var(--ti-blue);
  color: #fff;
  padding: 12px 14px;
  text-align: left;
  font-weight: 600;
}
.ti-results-table td { padding: 12px 14px; border-bottom: 1px solid #f0f0f0; vertical-align: middle; }
.ti-results-table tr:hover td { background: var(--ti-blue-lt); }

@media (max-width: 768px) {
  .ti-results-grid { grid-template-columns: 1fr; }
  .ti-toppers-grid { gap: 16px; }
  .ti-topper-card  { width: 160px; }
  .ti-results-stats-strip .ti-stat { min-width: 100px; padding: 20px 12px; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE  (Bootstrap 5 + ti-cp-* theme overrides)
   page-contact.php — ti-cp-* namespace
   ══════════════════════════════════════════════════════════════ */

/* Bootstrap colour harmony ─────────────────────────────────── */
.page-template-page-contact-php {
  --bs-primary:          #0057a8;
  --bs-primary-rgb:      0, 87, 168;
  --bs-link-color:       #0057a8;
  --bs-link-hover-color: #004080;
  --bs-body-font-family: "Poppins", sans-serif;
}
.page-template-page-contact-php .btn-primary,
.page-template-page-contact-php .btn-primary:focus {
  background-color: #0057a8;
  border-color:     #0057a8;
}
.page-template-page-contact-php .btn-primary:hover {
  background-color: #004080;
  border-color:     #004080;
  color: #fff;
}
.page-template-page-contact-php .form-control:focus,
.page-template-page-contact-php .form-select:focus {
  border-color: #0057a8;
  box-shadow:   0 0 0 0.2rem rgba(0,87,168,0.16);
}

/* Hero ─────────────────────────────────────────────────────── */
.ti-cp-hero {
  background: linear-gradient(135deg, #0057a8 0%, #001e46 100%);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}
.ti-cp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.ti-cp-hero-badge {
  background: rgba(255,255,255,0.14) !important;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff !important;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 20px;
  border-radius: 30px;
  letter-spacing: 0.3px;
}
.ti-cp-hero-title {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.15;
}
.ti-cp-hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

/* Stats bar ─────────────────────────────────────────────────── */
.ti-cp-statsbar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 2px 10px rgba(0,87,168,0.06);
}
.ti-cp-stat        { padding: 18px 12px; }
.ti-cp-stat-num    { display: block; font-size: 22px; font-weight: 800; color: #0057a8; line-height: 1; margin-bottom: 3px; }
.ti-cp-stat-lbl    { display: block; font-size: 12px; color: #6b7280; font-weight: 500; }

/* Section ───────────────────────────────────────────────────── */
.ti-cp-section { background: #f0f4f9; }

/* Card gradient header ─────────────────────────────────────── */
.ti-cp-card-head {
  background: linear-gradient(135deg, #0057a8 0%, #0069cc 100%);
}
.ti-cp-card-head-alt {
  background: linear-gradient(135deg, #ff6b35 0%, #e65c20 100%);
}
.ti-cp-branch-tag,
.ti-cp-branch-tag-alt {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(255,255,255,0.22);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.ti-cp-head-icon,
.ti-cp-head-icon-alt {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.ti-cp-head-sub { color: rgba(255,255,255,0.75); font-size: 12px; }

/* Detail list ──────────────────────────────────────────────── */
.ti-cp-detail-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ti-cp-detail-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #9ca3af;
  margin-bottom: 3px;
}
.ti-cp-detail-value { display: block; font-size: 13.5px; color: #1a1a2e; line-height: 1.55; }
.ti-cp-detail-link  { font-size: 13.5px; color: #0057a8; text-decoration: none; }
.ti-cp-detail-link:hover { color: #ff6b35; }

/* WhatsApp chip ─────────────────────────────────────────────── */
.ti-cp-wa-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #dcfce7;
  color: #15803d;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.ti-cp-wa-chip:hover { background: #22c55e; color: #fff; }

/* Courses badges ────────────────────────────────────────────── */
.ti-cp-courses-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin: 0;
}
.ti-chip        { background: #f0f4f9 !important; color: #1a1a2e !important; font-weight: 500; font-size: 12px !important; }
.ti-chip-blue   { background: #e8f0fe !important; color: #0057a8 !important; font-weight: 500; font-size: 12px !important; }
.ti-chip-orange { background: #fff3e0 !important; color: #c75000 !important; font-weight: 500; font-size: 12px !important; }
.ti-chip-green  { background: #e8f5e9 !important; color: #2e7d32 !important; font-weight: 500; font-size: 12px !important; }

/* WhatsApp CTA button ───────────────────────────────────────── */
.ti-cp-wa-btn {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(37,211,102,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ti-cp-wa-btn:hover {
  background: #128c4e;
  border-color: #128c4e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37,211,102,0.4);
}

/* Form labels ───────────────────────────────────────────────── */
.ti-cp-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
}
.ti-cp-label svg { color: #0057a8; flex-shrink: 0; }

/* Form controls feel ────────────────────────────────────────── */
.page-template-page-contact-php .form-control,
.page-template-page-contact-php .form-select {
  font-size: 14px;
  padding: 10px 14px;
  background-color: #f9fafb;
  border-color: #e5e7eb;
  border-radius: 8px;
  color: #1a1a2e;
  font-family: "Poppins", sans-serif;
}
.page-template-page-contact-php .form-control::placeholder { color: #b0b7c3; font-size: 13px; }
.page-template-page-contact-php textarea.form-control { resize: vertical; min-height: 110px; }

/* Captcha question box ──────────────────────────────────────── */
.ti-cp-captcha-q {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0f4f9;
  border: 1.5px solid #d1e3f6;
  border-radius: 8px;
  padding: 9px 14px;
  font-size: 14px;
  color: #1a1a2e;
  flex-shrink: 0;
}

/* Submit button ─────────────────────────────────────────────── */
.ti-cp-submit-btn {
  background: #0057a8;
  border-color: #0057a8;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
  padding: 14px 24px;
  border-radius: 10px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.ti-cp-submit-btn:hover:not(:disabled) {
  background: #004080;
  border-color: #004080;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,87,168,0.35);
}
.ti-cp-submit-btn:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }
.ti-cp-submit-btn svg { transition: transform 0.22s; }
.ti-cp-submit-btn:hover:not(:disabled) svg { transform: translateX(4px); }

/* Google Map ────────────────────────────────────────────────── */
.ti-cp-map {
  width: 100%;
  height: 420px;
  overflow: hidden;
  display: block;
}
.ti-cp-map iframe {
  width:   100% !important;
  height:  100% !important;
  border:  0 !important;
  display: block;
}

/* Responsive ────────────────────────────────────────────────── */
@media (max-width: 991px) {
  .ti-cp-hero { padding: 56px 0 48px; }
}
@media (max-width: 767px) {
  .ti-cp-hero       { padding: 48px 0 40px; }
  .ti-cp-hero-title { font-size: 1.85rem; }
  .ti-cp-map        { height: 300px; }
  .ti-cp-stat       { padding: 14px 8px; }
  .ti-cp-stat-num   { font-size: 18px; }
}
@media (max-width: 575px) {
  .ti-cp-hero       { padding: 40px 0 32px; }
  .ti-cp-hero-title { font-size: 1.5rem; }
  .ti-cp-hero-sub   { font-size: 14px; }
}

/* ── WhatsApp Enquiry Guard Toast ────────────────────────────── */
#ti-wa-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1a1a2e;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  border-left: 4px solid #ff6b35;
  max-width: 380px;
  width: calc(100% - 40px);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#ti-wa-toast.ti-wa-toast-show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
#ti-wa-toast-icon { font-size: 18px; flex-shrink: 0; }
#ti-wa-toast-msg  { flex: 1; line-height: 1.5; }
#ti-wa-toast-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  cursor: pointer;
  padding: 0 0 0 8px;
  flex-shrink: 0;
  line-height: 1;
}
#ti-wa-toast-close:hover { color: #fff; }
@media (max-width: 480px) {
  #ti-wa-toast { bottom: 80px; font-size: 13px; padding: 12px 16px; }
}

/* ══════════════════════════════════════════════════════════════
   BRANCHES CONTACT SECTION  (ti-br-*)
   ══════════════════════════════════════════════════════════════ */
.ti-br-section {
  background: #f0f4f9;
}

/* Grid: 2 columns on desktop, 1 on mobile */
.ti-br-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 48px;
}
@media (max-width: 767px) {
  .ti-br-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ── Card ─────────────────────────────────────────────────── */
.ti-br-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,87,168,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ti-br-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,87,168,0.13);
}

/* ── Card header ──────────────────────────────────────────── */
.ti-br-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  color: #fff;
}
.ti-br-head--blue   { background: linear-gradient(135deg, #0057a8 0%, #0069cc 100%); }
.ti-br-head--orange { background: linear-gradient(135deg, #ff6b35 0%, #e65c20 100%); }

.ti-br-head-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ti-br-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 4px;
}
.ti-br-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

/* ── Card body ────────────────────────────────────────────── */
.ti-br-body {
  padding: 20px 22px 22px;
}
.ti-br-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.ti-br-row-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ti-br-icon-blue   { background: #e8f0fe; color: #0057a8; }
.ti-br-icon-orange { background: #fff3e0; color: #e65c20; }

.ti-br-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: #9ca3af;
  margin-bottom: 2px;
}
.ti-br-value {
  display: block;
  font-size: 13.5px;
  color: #1a1a2e;
  line-height: 1.55;
}
.ti-br-phone {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #0057a8;
  text-decoration: none;
}
.ti-br-phone--orange        { color: #e65c20; }
.ti-br-phone:hover          { }

/* ── Action buttons ───────────────────────────────────────── */
.ti-br-btns {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.ti-br-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  flex: 1;
  justify-content: center;
  min-width: 110px;
}
.ti-br-btn:hover { transform: translateY(-2px); text-decoration: none; }

/* Call button – blue */
.ti-br-btn-call {
  background: #0057a8;
  color: #fff;
  box-shadow: 0 3px 10px rgba(0,87,168,0.25);
}
.ti-br-btn-call:hover          { background: #004080; color: #fff; box-shadow: 0 6px 18px rgba(0,87,168,0.35); }
.ti-br-btn-call--orange        { background: #ff6b35; box-shadow: 0 3px 10px rgba(255,107,53,0.25); }
.ti-br-btn-call--orange:hover  { background: #e65c20; box-shadow: 0 6px 18px rgba(255,107,53,0.35); }

/* WhatsApp button */
.ti-br-btn-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 3px 10px rgba(37,211,102,0.25);
}
.ti-br-btn-wa:hover { background: #128c4e; color: #fff; box-shadow: 0 6px 18px rgba(37,211,102,0.4); }

/* ══════════════════════════════════════════════════════════════
   HOME CONTACT – Form card  (ti-hc-*)
══════════════════════════════════════════════════════════════ */
.ti-hc-branches { display: flex; flex-direction: column; gap: 20px; }

.ti-hc-form-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.ti-hc-fhead {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: linear-gradient(135deg, #0057a8 0%, #003d7a 100%);
}
.ti-hc-fhead-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; flex-shrink: 0;
}
.ti-hc-fhead-title { color: #fff; font-size: 15px; font-weight: 700; margin: 0; }
.ti-hc-fhead-sub   { color: rgba(255,255,255,0.75); font-size: 12px; }

.ti-hc-fbody { padding: 20px; }

.ti-hc-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.ti-hc-field { margin-bottom: 12px; }

.ti-hc-label {
  display: flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; color: #374151;
  margin-bottom: 5px;
}
.ti-hc-label svg { color: #0057a8; flex-shrink: 0; }
.ti-hc-label .req { color: #dc3545; }

.ti-hc-input,
.ti-hc-select,
.ti-hc-textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: 13.5px;
  font-family: "Poppins", sans-serif;
  color: #1a1a2e;
  background: #f9fafb;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.ti-hc-input:focus, .ti-hc-select:focus, .ti-hc-textarea:focus {
  border-color: #0057a8; background: #fff;
  box-shadow: 0 0 0 3px rgba(0,87,168,0.1);
}
.ti-hc-input.error, .ti-hc-select.error, .ti-hc-textarea.error { border-color: #dc3545; }
.ti-hc-input::placeholder, .ti-hc-textarea::placeholder { color: #b0b7c3; font-size: 13px; }
.ti-hc-textarea { resize: vertical; min-height: 80px; }
.ti-hc-select   { cursor: pointer; }
.ti-hc-error    { font-size: 11.5px; color: #dc3545; margin-top: 4px; }

.ti-hc-captcha-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ti-hc-captcha-q {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f0f4f9; border: 1.5px solid #d1e3f6; border-radius: 8px;
  padding: 8px 14px; font-size: 13.5px; font-weight: 600;
  color: #0057a8; white-space: nowrap;
}
.ti-hc-captcha-input {
  width: 100px; padding: 9px 12px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  font-size: 13.5px; font-family: "Poppins", sans-serif;
  outline: none; background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box;
}
.ti-hc-captcha-input:focus { border-color: #0057a8; background: #fff; box-shadow: 0 0 0 3px rgba(0,87,168,0.1); }
.ti-hc-captcha-input.error { border-color: #dc3545; }

.ti-hc-alert {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 12px 14px; border-radius: 8px; margin-bottom: 16px;
  font-size: 13.5px; line-height: 1.5;
}
.ti-hc-alert svg        { flex-shrink: 0; margin-top: 1px; }
.ti-hc-alert-success    { background: #d1e7dd; color: #0a3622; border: 1px solid #a3cfbb; }
.ti-hc-alert-danger     { background: #f8d7da; color: #58151c; border: 1px solid #f1aeb5; }

.ti-hc-submit-btn {
  width: 100%; padding: 12px;
  background: linear-gradient(135deg, #0057a8 0%, #003d7a 100%);
  color: #fff; border: none; border-radius: 8px;
  font-size: 14px; font-weight: 700; font-family: "Poppins", sans-serif;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-top: 4px;
  transition: opacity 0.2s, transform 0.15s;
}
.ti-hc-submit-btn:hover  { opacity: 0.9; }
.ti-hc-submit-btn:active { transform: scale(0.99); }
.ti-hc-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }

.ti-hc-privacy {
  text-align: center; font-size: 11.5px; color: #9ca3af;
  margin: 10px 0 0; display: flex; align-items: center;
  justify-content: center; gap: 4px;
}

@media (max-width: 480px) {
  .ti-hc-row2 { grid-template-columns: 1fr; }
}

