/* =============================================================
   TechSrijan — Custom Design System
   Brand: #e26228 (orange) | Stack: Bootstrap 4
   ============================================================= */

/* ── CSS Variables ───────────────────────────────────────────── */
:root {
  --primary:        #e26228;
  --primary-dark:   #c8541e;
  --primary-light:  #fff5f0;
  --primary-border: #f0d5c8;
  --dark:           #1a1a2e;
  --dark-alt:       #12122080;
  --text:           #495057;
  --text-muted:     #6c757d;
  --bg-light:       #f8f9fa;
  --bg-section:     #f4f6f9;
  --white:          #ffffff;
  --border:         #e9ecef;
  --shadow:         0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:      0 4px 24px rgba(0,0,0,0.12);
  --shadow-hover:   0 8px 30px rgba(226,98,40,0.18);
  --radius:         8px;
  --radius-lg:      12px;
  --transition:     all 0.25s ease;
  --font-display:   'Playfair Display', Georgia, serif;
  --font-body:      'Inter', 'Nunito Sans', sans-serif;
}

/* ── Base Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  color: var(--dark);
}

a { color: var(--primary); transition: var(--transition); }
a:hover { color: var(--primary-dark); text-decoration: none; }

img { max-width: 100%; }

/* ── Typography ──────────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ── Section Spacing ─────────────────────────────────────────── */
.section-py    { padding: 70px 0; }
.section-py-sm { padding: 50px 0; }

.section-dark  { background: var(--dark); color: var(--white); }
.section-light { background: var(--bg-light); }
.section-white { background: var(--white); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn-brand {
  background: var(--primary);
  color: var(--white) !important;
  border: 2px solid var(--primary);
  border-radius: 6px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}
.btn-brand:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226,98,40,0.35);
}

.btn-brand-outline {
  background: transparent;
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  border-radius: 6px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}
.btn-brand-outline:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226,98,40,0.25);
}

.btn-brand-white {
  background: var(--white);
  color: var(--primary) !important;
  border: 2px solid var(--white);
  border-radius: 6px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}
.btn-brand-white:hover {
  background: transparent;
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ── Top Bar ─────────────────────────────────────────────────── */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 14px;
}
.top-bar a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: var(--transition);
}
.top-bar a:hover { color: var(--primary); }
.top-bar .top-phone { color: var(--primary); font-weight: 600; }

.top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.85) !important;
  font-size: 13px;
  margin-left: 6px;
  transition: var(--transition);
}
.top-social a:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
}

/* ── Navbar ──────────────────────────────────────────────────── */
.navbar-custom {
  background: var(--white) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  padding: 0 0;
}
.navbar-custom .navbar-brand img {
  height: 52px;
  width: auto;
}
.navbar-custom .nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 15.5px;
  padding: 22px 12px !important;
  position: relative;
  letter-spacing: 0.1px;
  transition: var(--transition);
}
.navbar-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.navbar-custom .nav-link:hover { color: var(--primary) !important; }
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after { transform: scaleX(1); }
.navbar-custom .nav-link.active { color: var(--primary) !important; }

/* ═══════════════════════════════════════════════════════════════
   TCS Header — Ticker · Top Bar · Navbar  (HRPG-style)
   ═══════════════════════════════════════════════════════════════ */

/* ── Ticker Bar ─────────────────────────────────────────────── */
.tcs-ticker-bar {
  background: #0d1b2a;
  color: rgba(255,255,255,.85);
  height: 34px;
  font-size: 12.5px;
  overflow: hidden;
  position: relative;
  z-index: 1040;
}
.tcs-adm-badge {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
.tcs-pulse-dot { animation: tcsPulse 1.2s infinite; }
@keyframes tcsPulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.tcs-ticker-label { font-weight: 600; color: var(--primary); white-space: nowrap; }
.tcs-ticker-wrap  { overflow: hidden; flex: 1; min-width: 0; }
.tcs-ticker-content {
  white-space: nowrap;
  animation: tcsTicker 30s linear infinite;
  display: inline-block;
}
@keyframes tcsTicker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── Top Bar ────────────────────────────────────────────────── */
.tcs-top-bar {
  background: #1a1a2e;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 12.5px;
  padding: 7px 0;
}
.tcs-topbar-link { color: rgba(255,255,255,.8); text-decoration: none; }
.tcs-topbar-link i { color: var(--primary); }
.tcs-topbar-link:hover { color: #fff; text-decoration: none; }

.tcs-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 12px;
  transition: all .25s;
  text-decoration: none;
}
.tcs-social-icon[aria-label="Facebook"] { background: #1877F2; }
.tcs-social-icon[aria-label="YouTube"]  { background: #FF0000; }
.tcs-social-icon[aria-label="LinkedIn"] { background: #0A66C2; }
.tcs-social-icon[aria-label="Twitter"]  { background: #1DA1F2; }
.tcs-social-icon:hover { opacity: .85; color: #fff !important; text-decoration: none; transform: translateY(-1px); }

.tcs-btn-apply {
  background: var(--primary);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 50px;
  transition: all .25s;
  text-decoration: none;
  display: inline-block;
}
.tcs-btn-apply:hover { background: #c0392b; color: #fff !important; transform: translateY(-1px); text-decoration: none; }

/* ── Google Translate in top bar ────────────────────────────── */
.tcs-gt-topbar { display: flex; align-items: center; }
.goog-te-banner-frame.skiptranslate { display: none !important; }

/* ── Main Navbar ─────────────────────────────────────────────── */
.tcs-main-navbar {
  background: #fff !important;
  box-shadow: 0 2px 12px rgba(27,63,122,.08);
  padding: 0;
  transition: box-shadow .3s ease;
  z-index: 1030;
}
.tcs-main-navbar.tcs-scrolled { box-shadow: 0 4px 22px rgba(0,0,0,.18); }

.tcs-nav-link {
  color: #1e293b !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  padding: 20px 8px !important;
  position: relative;
  transition: color .2s;
  white-space: nowrap;
}
.tcs-nav-link::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: 8px;
  right: 8px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
}
.tcs-nav-link:hover,
.tcs-nav-link.active { color: var(--primary) !important; }
.tcs-nav-link:hover::after,
.tcs-nav-link.active::after { transform: scaleX(1); }

.tcs-btn-nav-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #c0392b 100%);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 20px !important;
  border-radius: 50px;
  transition: all .25s;
  text-decoration: none;
  white-space: nowrap;
}
.tcs-btn-nav-cta:hover { opacity: .9; transform: translateY(-1px); text-decoration: none; color: #fff !important; }
.tcs-btn-nav-cta::after { display: none !important; }

@media (max-width: 991px) {
  .tcs-nav-link { padding: 10px 14px !important; font-size: 14px !important; }
  .tcs-nav-link::after { display: none; }
}

/* ── Scroll-to-top button ────────────────────────────────────── */
#myBtn {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(226,98,40,0.4);
  transition: var(--transition);
}
#myBtn:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ── Page Hero (inner pages) ─────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 55%, #0f3460 100%);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.6;
}
.page-hero h1 {
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 14px;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  margin: 0;
  position: relative;
}
.page-hero .hero-breadcrumb {
  position: relative;
  margin-top: 18px;
}
.page-hero .hero-breadcrumb a { color: var(--primary); }
.page-hero .hero-breadcrumb span { color: rgba(255,255,255,0.5); margin: 0 8px; }
.page-hero .hero-breadcrumb .current { color: rgba(255,255,255,0.8); }
.page-hero-accent {
  display: inline-block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 18px auto 0;
}

/* ── Feature / Course Cards ──────────────────────────────────── */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  transition: var(--transition);
  height: 100%;
  position: relative;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--primary-dark);
}
.feature-card .card-icon {
  margin-bottom: 16px;
}
.feature-card .card-icon img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.feature-card:hover .card-icon img {
  transform: rotate(360deg);
}
.feature-card h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.feature-card .card-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.feature-card .card-link:hover { color: var(--primary-dark); }

/* ── Service Cards ───────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 0;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}
.service-card .svc-icon {
  width: 100%;
  padding: 28px 20px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow: hidden;
  transition: background 0.3s ease;
}
.service-card:hover .svc-icon {
  background: #fde8da;
}
.service-card .svc-icon img {
  height: 120px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  transition: transform 0.35s ease;
}
.service-card:hover .svc-icon img {
  transform: scale(1.12);
}
.service-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 20px 8px;
}
.service-card p {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin: 0 20px 24px;
  line-height: 1.6;
}

/* ── Stats Bar ───────────────────────────────────────────────── */
.stats-bar {
  background: var(--primary);
  padding: 40px 0;
}
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.82);
  font-weight: 500;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.stat-item .stat-icon {
  font-size: 2rem;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
  display: block;
}

/* ── Training Program Cards ──────────────────────────────────── */
.training-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  text-align: center;
}
.training-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.training-card .tc-img-wrap {
  background: var(--primary-light);
  padding: 30px 20px;
}
.training-card .tc-img-wrap img { height: 150px; width: auto; max-width: 100%; object-fit: contain; }
.training-card .tc-body { padding: 24px; }
.training-card h5 {
  font-weight: 700;
  color: var(--dark);
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.training-card p { font-size: 0.87rem; color: var(--text-muted); margin: 0; }

/* ── Accordion (Why Join) ────────────────────────────────────── */
.why-accordion .card {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: none;
}
.why-accordion .card-header {
  background: var(--white);
  border: none;
  padding: 0;
}
.why-accordion .acc-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  border: none;
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}
.why-accordion .acc-btn:hover { color: var(--primary); background: var(--primary-light); }
.why-accordion .acc-btn.active-acc { color: var(--white); background: var(--primary); }
.why-accordion .acc-btn .acc-icon { font-size: 18px; transition: transform 0.25s; flex-shrink: 0; }
.why-accordion .acc-btn.active-acc .acc-icon { transform: rotate(90deg); }
.why-accordion .card-body { padding: 24px; }
.why-accordion .card-body h4 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* ── Testimonials ────────────────────────────────────────────── */
.testimonials-section {
  background: var(--dark);
  padding: 70px 0;
}
.testimonials-section .section-title { color: var(--white); }
.testimonials-section .section-label { color: var(--primary); }

.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
}
.testi-card .quote-icon {
  font-size: 2.5rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.testi-card .testi-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testi-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin-bottom: 12px;
}
.testi-card .testi-name {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 55%;
}

/* ── Client Logos ────────────────────────────────────────────── */
.clients-section { background: var(--bg-light); padding: 60px 0; }
.client-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
}
.client-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.client-card .card-header-custom {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}
.client-card .card-body { padding: 24px; text-align: center; }
.client-card .card-footer-custom {
  background: #28a745;
  text-align: center;
  padding: 12px;
}
.client-card .card-footer-custom a {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

/* ── Footer ──────────────────────────────────────────────────── */
.footer-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #b03c1a 100%);
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3C/g%3E%3C/svg%3E");
}
.footer-cta h3 {
  color: var(--white);
  font-weight: 800;
  font-size: 1.75rem;
  margin-bottom: 10px;
  position: relative;
  letter-spacing: -0.3px;
}
.footer-cta p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 26px;
  font-size: 1.05rem;
  position: relative;
}

.footer-main {
  background: linear-gradient(180deg, #1a1a2e 0%, #13132a 100%);
  padding: 64px 0 36px;
  color: rgba(255,255,255,0.75);
  border-top: 3px solid var(--primary);
}
.footer-main h5 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.footer-main h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}
.footer-main ul { padding: 0; list-style: none; margin: 0; }
.footer-main ul li { margin-bottom: 11px; }
.footer-main ul li a {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-main ul li a::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}
.footer-main ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}
.footer-main ul li a:hover::before { background: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-contact-item .fc-icon {
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  text-align: center;
}
.footer-contact-item a {
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}
.footer-contact-item a:hover { color: var(--primary); }
.footer-contact-item span {
  color: rgba(255,255,255,0.78);
  font-size: 0.97rem;
  line-height: 1.7;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: none;
  color: var(--white) !important;
  font-size: 16px;
  margin: 4px 6px 4px 0;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social a[aria-label="Facebook"] { background: #1877F2; }
.footer-social a[aria-label="YouTube"]  { background: #FF0000; }
.footer-social a[aria-label="LinkedIn"] { background: #0A66C2; }
.footer-social a[aria-label="Twitter"]  { background: #1DA1F2; }
.footer-social a:hover {
  filter: brightness(1.15);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.30);
}

.footer-bottom {
  background: #0d0d1a;
  padding: 18px 0 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(226,98,40,0.30);
}
.footer-bottom a { color: rgba(255,255,255,0.70); text-decoration: none; transition: var(--transition); }
.footer-bottom a:hover { color: var(--primary); }
.footer-counter-row { margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.06); }

/* ── Forms ───────────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 32px;
}
.form-card h4 {
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  text-align: center;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(226,98,40,0.15);
}
.form-label-custom {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Input field (animated label) ───────────────────────────── */
.input-field {
  position: relative;
  height: 54px;
  width: 100%;
  margin-bottom: 24px;
}
.input-field input[type="text"],
.input-field input[type="email"],
.input-field input[type="tel"] {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  border: none;
  border-bottom: 2px solid var(--border);
  background: transparent;
  font-size: 16px;
  color: var(--dark);
  outline: none;
  transition: var(--transition);
}
.input-field input:focus { border-bottom-color: var(--primary); }
.input-field label {
  position: absolute;
  top: 10px;
  left: 0;
  color: var(--text-muted);
  pointer-events: none;
  font-size: 14px;
  transition: 0.3s ease;
}
.input-field input:focus + label,
.input-field input:valid + label {
  top: -8px;
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── About Page ──────────────────────────────────────────────── */
.about-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.about-card .about-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 18px;
}
.about-card h5 { font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.about-card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; margin: 0; }

/* ── Course Page ─────────────────────────────────────────────── */
.course-row {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 28px;
  transition: var(--transition);
}
.course-row:hover { box-shadow: var(--shadow-md); }
.course-row h5 {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 14px;
}
.course-row p { color: var(--text); font-size: 0.92rem; line-height: 1.8; }
.course-table thead th { background: var(--primary); color: var(--white); border: none; }
.course-table { border-radius: var(--radius); overflow: hidden; }
.course-table td { vertical-align: middle; font-size: 0.9rem; }

/* ── Verify Certificate ──────────────────────────────────────── */
.verify-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.verify-card .verify-header {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 22px 24px;
  font-size: 1.15rem;
  font-weight: 700;
}
.verify-card .verify-body { padding: 32px 28px; }

/* ── Contact Page ────────────────────────────────────────────── */
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
}
.contact-info-card h4 { color: var(--white); font-weight: 700; margin-bottom: 28px; }
.ci-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.ci-item .ci-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.ci-item .ci-text { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.6; }
.ci-item .ci-text a { color: var(--white); text-decoration: none; }
.ci-item .ci-text a:hover { color: rgba(255,255,255,0.7); }

/* ── Fee Payment Page ────────────────────────────────────────── */
.student-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--primary);
  padding: 28px 24px;
}
.student-detail-card .sd-row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.student-detail-card .sd-row:last-child { border-bottom: none; }
.student-detail-card .sd-label {
  color: var(--text-muted);
  width: 40%;
  font-weight: 600;
  flex-shrink: 0;
}
.student-detail-card .sd-value { color: var(--dark); font-weight: 500; }

/* ── 404 Page ────────────────────────────────────────────────── */
.page-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
}
.page-404 .err-num {
  font-size: 9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0;
}
.page-404 h2 { color: var(--dark); font-weight: 700; margin-bottom: 14px; }
.page-404 p { color: var(--text-muted); margin-bottom: 28px; }

/* ── Privacy / Terms ─────────────────────────────────────────── */
.policy-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 50px 20px;
}
.policy-body h2, .policy-body h3 {
  color: var(--dark);
  font-weight: 700;
  margin-top: 36px;
}
.policy-body h2 { font-size: 1.5rem; }
.policy-body h3 { font-size: 1.15rem; color: var(--primary); }
.policy-body p, .policy-body li { font-size: 0.95rem; color: var(--text); line-height: 1.8; }
.policy-body hr { border-color: var(--border); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-custom .nav-link {
    padding: 13px 16px !important;
    font-size: 15px !important;
  }
  .navbar-custom .nav-link::after { display: none; }
  .section-title { font-size: 1.6rem; }
  .page-hero h1 { font-size: 1.9rem; }
  .stats-bar .stat-num { font-size: 2rem; }
}

@media (max-width: 767px) {
  .section-py { padding: 50px 0; }
  .section-title { font-size: 1.4rem; }
  .page-hero { padding: 50px 0 40px; }
  .page-hero h1 { font-size: 1.6rem; }
  .form-card { padding: 24px 18px; }
  .contact-info-card { margin-bottom: 24px; }
  .footer-main { padding: 40px 0 20px; }
  .footer-main h5 { font-size: 0.85rem; }
  .stat-item { margin-bottom: 24px; }
  .stats-bar .stat-num { font-size: 1.8rem; }
  .top-bar .top-translate { display: none; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.4rem; }
  .footer-cta h3 { font-size: 1.2rem; }
  .page-404 .err-num { font-size: 6rem; }
}

/* ── Utility Overrides ───────────────────────────────────────── */
.text-brand  { color: var(--primary) !important; }
.bg-brand    { background: var(--primary) !important; }
.border-brand { border-color: var(--primary) !important; }
.fw-700 { font-weight: 700; }
.ls-1   { letter-spacing: 1px; }

/* Remove WOW data attributes from breaking layout */
[data-wow-duration] { opacity: 1 !important; }
