/**
 * ============================================================
 * FILE: css/style.css
 * Riddhima Online Solution Point - Main Stylesheet v3.5
 * ============================================================
 * Complete redesign with glass effects, professional hover,
 * improved responsive, creative components.
 * ============================================================
 */

/* ── CSS Variables ── */
:root {
  --topbar-height: 54px;
  --navbar-height: 64px;
  --contact-bar-height: 36px;
  --brand-1: #0d6efd;
  --brand-2: #6610f2;
  --accent: #ff6b6b;
  --nav-cta-start: #0f172a;
  --nav-cta-end: #334155;
  --nav-capsule-bg: rgba(255, 255, 255, 0.74);
  --nav-capsule-border: rgba(99, 102, 241, 0.2);
  --glass-bg: rgba(255,255,255,0.15);
  --glass-border: rgba(255,255,255,0.2);
  --glass-shadow: 0 8px 32px rgba(31,38,135,0.15);
  --card-radius: 16px;
  --transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
}

/* ── Page Loader ── */
#page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  position: relative;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  animation: pulse 1.5s infinite ease-in-out;
  z-index: 2;
}

.loader-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 4px solid transparent;
  border-top: 4px solid var(--brand-1);
  border-right: 4px solid var(--brand-2);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 1;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* ── Base ── */
html, body { height: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, #f0f7ff 0%, #f8fbff 100%);
  color: #222;
  padding-top: calc(var(--contact-bar-height) + var(--topbar-height) + var(--navbar-height));
  scroll-behavior: smooth;
}

/* ── Glass Effect Utility ── */
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(31,38,135,0.1);
}
.glass-hover:hover {
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(25px);
  box-shadow: 0 15px 40px rgba(31,38,135,0.18) !important;
  transform: translateY(-6px) !important;
}

/* ── Contact Info Bar ── */
.contact-info-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--contact-bar-height);
  background: linear-gradient(90deg, #0f172a, #1e293b);
  color: #e5e7eb; display: flex; align-items: center;
  z-index: 1060; font-size: 0.78rem; padding: 0;
  overflow: hidden;
}
.contact-bar-item {
  color: #e5e7eb; text-decoration: none; transition: var(--transition);
  white-space: nowrap;
}
.contact-bar-item:hover { color: #60a5fa; }
.contact-bar-item i { color: #94a3b8; margin-right: 4px; }
.contact-info-bar a.contact-bar-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 3px 10px 3px 6px;
  line-height: 1;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(148,163,184,0.14));
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), inset 0 -2px 5px rgba(15,23,42,0.35), 0 2px 8px rgba(2,6,23,0.25);
  overflow: hidden;
  animation: none;
}
.contact-info-bar a.contact-bar-item:hover {
  color: #ffffff;
  border-color: rgba(125,211,252,0.65);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.38), inset 0 -2px 6px rgba(30,41,59,0.45), 0 4px 12px rgba(2,6,23,0.35);
}
.contact-info-bar a.contact-bar-item > i {
  margin-right: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.45);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), inset 0 -2px 4px rgba(15,23,42,0.45), 0 2px 6px rgba(2,6,23,0.35);
}
.contact-info-bar a.contact-bar-item > i.fa-phone-alt {
  background: linear-gradient(180deg, #34d399, #059669);
  border-color: rgba(110,231,183,0.75);
}
.contact-info-bar a.contact-bar-item > i.fa-envelope {
  background: linear-gradient(180deg, #60a5fa, #2563eb);
  border-color: rgba(147,197,253,0.75);
}

/* Verify Certificate Button - Blinking */
.verify-cert-btn {
  background: linear-gradient(90deg, #25D366, #128C7E);
  color: white !important; text-decoration: none;
  padding: 3px 14px; border-radius: 20px;
  font-size: 0.72rem; font-weight: 700;
  margin-left: 6px;
  transition: var(--transition);
  animation: certBlink 1.4s ease-in-out infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  position: relative;
  overflow: visible;
  isolation: isolate;
}
.verify-cert-btn:hover {
  background: linear-gradient(90deg, #1ebe5d, #0f7a6f);
  color: white !important; transform: scale(1.08);
  animation: none;
}
.verify-cert-btn::before {
  content: none;
}
.verify-cert-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -45%;
  width: 38%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.55), rgba(255,255,255,0));
  transform: skewX(-20deg);
  animation: certShine 2.2s linear infinite;
  pointer-events: none;
}
@keyframes certBlink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), 0 0 0 rgba(255,255,255,0);
    filter: saturate(1) brightness(1);
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38), 0 0 22px rgba(255,255,255,0.75);
    filter: saturate(1.35) brightness(1.08);
    transform: translateY(-2px) scale(1.02);
  }
}
@keyframes certRing {
  0% { opacity: 0.7; transform: scale(0.9); }
  70% { opacity: 0.15; transform: scale(1.22); }
  100% { opacity: 0; transform: scale(1.28); }
}
@keyframes certShine {
  0% { left: -45%; opacity: 0; }
  8% { opacity: 1; }
  22% { left: 115%; opacity: 0; }
  100% { left: 115%; opacity: 0; }
}

/* ── Top Date/Time Bar ── */
.top-datetime {
  position: fixed; top: var(--contact-bar-height); left: 0; right: 0;
  height: var(--topbar-height);
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  z-index: 1050; display: flex; align-items: center;
  justify-content: center; padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 2px 10px rgba(13,110,253,0.2);
}
.top-datetime-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-datetime-left {
  flex: 1 1 auto;
  min-width: 0;
}
.top-datetime-right {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.top-datetime-text {
  font-size: 0.82rem; color: rgba(255,255,255,0.95); font-weight: 500;
  min-width: 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.top-social-icons {
  display: flex; gap: 8px;
  align-items: center; justify-content: flex-end;
  flex: 0 0 auto;
}
.top-social-icons a {
  width: 32px; height: 32px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: white;
  font-size: 0.75rem; transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.top-social-icons .facebook { background: #1877F2; }
.top-social-icons .instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.top-social-icons .youtube { background: #FF0000; }
.top-social-icons .twitter { background: #1DA1F2; }
.top-social-icons a:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 6px 15px rgba(0,0,0,0.2); }
.top-social-icons a { text-decoration: none !important; }

/* ── Main Navbar ── */
.main-navbar {
  position: fixed;
  top: calc(var(--contact-bar-height) + var(--topbar-height));
  left: 0; right: 0; z-index: 1040;
  height: var(--navbar-height);
  background: linear-gradient(120deg, rgba(255,255,255,0.92), rgba(239,246,255,0.85));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  padding: 0;
  border-bottom: 1px solid rgba(99, 102, 241, 0.12);
}
.main-navbar .container { position: relative; }
.nav-layout-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: var(--navbar-height);
  position: relative;
}
.nav-layout-shell::before {
  content: '';
  position: absolute;
  inset: 7px 210px 7px 180px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(59,130,246,0.14), rgba(139,92,246,0.15), rgba(56,189,248,0.14));
  filter: blur(16px);
  pointer-events: none;
  z-index: -1;
}
.main-navbar .brand-block {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #0f172a;
  font-weight: 700;
}
.brand-logo-wrap.logo-hero {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ffffff, #e2e8f0);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 10px 18px rgba(15,23,42,0.12);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  animation: logoHeroGlow 3s ease-in-out infinite;
}

.logo-hero-glow {
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: radial-gradient(circle, rgba(13,110,253,0.3) 0%, rgba(13,110,253,0) 70%);
  opacity: 0;
  animation: logoHeroPulse 3s ease-in-out infinite;
}

@keyframes logoHeroGlow {
  0%, 100% { 
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 10px 18px rgba(15,23,42,0.12);
    transform: translateY(0) rotate(0deg);
  }
  25% { transform: translateY(-2px) rotate(-2deg); }
  50% { 
    box-shadow: inset 0 1px 0 rgba(255,255,255,1), 0 16px 28px rgba(13,110,253,0.25);
    transform: translateY(-4px) rotate(1deg) scale(1.02);
  }
  75% { transform: translateY(-1px) rotate(1deg); }
}

@keyframes logoHeroPulse {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  30% { opacity: 0.6; transform: scale(1.1); }
  50% { opacity: 1; transform: scale(1.25); }
  70% { opacity: 0.3; transform: scale(1.4); }
  100% { opacity: 0; transform: scale(1.5); }
}
.brand-logo { width: 40px; height: 40px; object-fit: cover; border-radius: 10px; }
.brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  gap: 4px;
}
.brand-title { font-size: 0.95rem; font-weight: 800; letter-spacing: 0.01em; }
.brand-subtitle {
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.kanpur-nagar-text { color: #ea580c; font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.main-navbar .brand-block:hover .brand-logo-wrap {
  transform: translateY(-2px) rotate(-3deg);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 14px 22px rgba(37,99,235,0.2);
}
.main-navbar .navbar-collapse {
  flex-grow: 0;
  align-items: center;
  margin-left: auto;
  gap: 10px;
}
.nav-menu-capsule {
  background: var(--nav-capsule-bg);
  border: 1px solid var(--nav-capsule-border);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 18px rgba(14, 116, 255, 0.1);
  padding: 6px 12px;
  margin-left: 10px;
}
.main-navbar .navbar-nav { gap: 8px; }
.main-navbar .nav-link {
  font-weight: 700; color: #334155; font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 10px 16px;
  border-radius: 999px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
}
.main-navbar .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -110%;
  width: 42%;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.5), rgba(255,255,255,0));
  transform: skewX(-20deg);
  transition: left 0.45s ease;
  pointer-events: none;
}
.main-navbar .nav-link:hover, .main-navbar .nav-link.active {
  color: #ffffff;
  background: linear-gradient(120deg, var(--brand-1), var(--brand-2));
  box-shadow: 0 8px 18px rgba(99, 102, 241, 0.32);
}
.main-navbar .nav-link:hover::before { left: 130%; }
.main-navbar .dropdown-menu {
  border: 1px solid rgba(148,163,184,0.3); border-radius: 14px;
  box-shadow: 0 15px 36px rgba(15,23,42,0.14);
  padding: 8px;
  margin-top: 10px;
}
.main-navbar .dropdown-toggle::after { transition: transform 0.25s ease; }
.main-navbar .dropdown:hover .dropdown-toggle::after,
.main-navbar .dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}
.main-navbar .dropdown-item {
  border-radius: 8px; padding: 8px 16px; font-size: 0.88rem; font-weight: 500;
  transition: var(--transition);
}
.main-navbar .dropdown-item:hover, .main-navbar .dropdown-item.active {
  background: rgba(13,110,253,0.08); color: var(--brand-1);
}
@media (min-width: 992px) {
  .main-navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }
  .main-navbar .dropdown:hover > .dropdown-menu,
  .main-navbar .dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.main-navbar .navbar-toggler {
  border: 1px solid rgba(99, 102, 241, 0.3);
  border-radius: 12px;
  padding: 6px 10px;
  box-shadow: 0 6px 14px rgba(59,130,246,0.18);
}
.main-navbar .navbar-toggler:focus { box-shadow: 0 0 0 0.18rem rgba(59,130,246,0.18); }
.main-navbar .navbar-toggler-icon {
  width: 1.2em;
  height: 1.2em;
}
.nav-cta-wrap {
  display: flex;
  align-items: center;
}
.nav-meta-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-city-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f172a;
  border: 1px solid rgba(148,163,184,0.4);
  background: linear-gradient(140deg, rgba(255,255,255,0.95), rgba(241,245,249,0.92));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 6px 14px rgba(15,23,42,0.09);
  white-space: nowrap;
}
.nav-city-pill i { color: #f97316; }

/* Admin Dashboard Button */
.btn-admin-dashboard {
  background: linear-gradient(135deg, var(--nav-cta-start), var(--nav-cta-end));
  color: white !important; border: none; border-radius: 999px;
  font-weight: 700; font-size: 0.75rem; padding: 9px 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 10px 18px rgba(15,23,42,0.26);
}
.btn-admin-dashboard:hover {
  background: linear-gradient(135deg, #1e293b, #475569);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(15,23,42,0.34);
}

@media (max-width: 991px) {
  .main-navbar { height: auto; min-height: var(--navbar-height); }
  .nav-layout-shell { min-height: var(--navbar-height); flex-wrap: wrap; padding: 6px 0; }
  .nav-layout-shell::before { display: none; }
  .main-navbar .navbar-collapse {
    width: 100%;
    margin-top: 8px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(148,163,184,0.3);
    box-shadow: 0 16px 32px rgba(15,23,42,0.16);
  }
  .nav-menu-capsule {
    width: 100%;
    border-radius: 16px;
    background: rgba(248,250,252,0.96);
    padding: 8px;
  }
  .main-navbar .navbar-nav { width: 100%; }
  .main-navbar .nav-link {
    border-radius: 10px;
    text-transform: none;
    font-size: 0.88rem;
  }
  .nav-meta-wrap {
    width: 100%;
    margin-top: 10px;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-city-pill {
    width: 100%;
    justify-content: center;
    font-size: 0.76rem;
  }
  .btn-admin-dashboard { width: 100%; justify-content: center; display: inline-flex; }
  .carousel-caption { left: 50% !important; transform: translateX(-50%); width: 90%; text-align: center; }
  .carousel-caption h3 { font-size: 1.4rem; }
  .carousel-caption p { font-size: 0.95rem; }
  .whats-new-label { padding: 8px 12px; font-size: 0.72rem; }
  .whats-new-item { padding: 8px 12px; font-size: 0.9rem; }
  .contact-info-bar { position: static; height: auto; padding: 8px 12px; }
  .contact-info-bar .container { gap: 10px; justify-content: center !important; }
  .contact-info-bar a.contact-bar-item { font-size: 0.9rem; padding: 6px 10px; border-radius: 10px; background: rgba(255,255,255,0.06); }
  .verify-cert-btn { padding: 8px 12px; font-size: 0.85rem; }
}

/* ── Buttons (Global) ── */
.btn-brand {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; border: none; border-radius: 10px;
  font-weight: 600; padding: 10px 24px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-brand::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.btn-brand:hover {
  color: white; transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13,110,253,0.35);
}
.btn-brand:hover::before { opacity: 1; }
.btn-outline-brand {
  border: 2px solid var(--brand-1); color: var(--brand-1);
  border-radius: 10px; font-weight: 600; padding: 9px 24px;
  transition: var(--transition); background: transparent;
}
.btn-outline-brand:hover {
  background: var(--brand-1); color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13,110,253,0.25);
}

/* RazorPay Button */
.btn-razorpay-pay {
  background: linear-gradient(135deg, #2f54eb, #1890ff);
  color: white; border: none; border-radius: 8px; font-weight: 600;
  transition: var(--transition);
}
.btn-razorpay-pay:hover {
  color: white; transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47,84,235,0.35);
}

/* YouTube Watch Now Button */
.btn-youtube-watch {
  background: linear-gradient(135deg, #ff0000, #cc0000);
  color: white; border: none; border-radius: 8px; font-weight: 600;
  transition: var(--transition);
}
.btn-youtube-watch:hover {
  color: white; transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255,0,0,0.35);
}

/* Submit Button */
.btn-submit {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; border: none; border-radius: 10px;
  font-weight: 700; padding: 12px 30px; font-size: 1rem;
  transition: var(--transition);
}
.btn-submit:hover {
  color: white; transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(13,110,253,0.35);
}

/* ── Section Title ── */
.section-title {
  font-weight: 800; color: #0f172a;
  position: relative; display: inline-block;
  margin: 0 0 clamp(16px, 2.6vw, 26px) 0;
}
.section-title[data-icon]::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: attr(data-icon);
  color: var(--brand-2);
  margin-right: 10px;
  display: inline-block;
  transform: translateY(-1px);
}
.text-center .section-title { display: block; }
.section-title::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  border-radius: 10px; margin: 10px auto 0;
}
.section-title[data-icon]::after { margin-top: 14px; }
.section-title + p { margin-top: 6px; }

section {
  margin-top: clamp(32px, 5vw, 64px);
}
section:first-of-type {
  margin-top: 0;
}

@media (max-width: 991px) {
  .section-title { margin-bottom: clamp(12px, 3vw, 20px); }
  section {
    margin-top: clamp(24px, 6vw, 44px);
  }
}

/* ── Carousel / Hero ── */
.carousel-item img { max-height: 520px; object-fit: cover; }
.carousel-caption {
  pointer-events: auto;
  z-index: 3;
}
.carousel-caption h3 { font-size: 1.8rem; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.carousel-caption p { text-shadow: 0 1px 5px rgba(0,0,0,0.3); }
.carousel-caption .btn { position: relative; z-index: 4; }
.carousel-control-prev, .carousel-control-next { width: 48px; z-index: 2; }

@media (max-width: 991px) {
  .carousel-caption {
    left: 8% !important;
    right: 8% !important;
    bottom: 14%;
    text-align: center;
  }
  .carousel-caption h3 { font-size: 1.55rem; }
  .carousel-caption p { font-size: 1rem; }
  .carousel-caption .btn { margin-top: 10px; }
}
@media (max-width: 767px) {
  .carousel-caption {
    left: 6% !important;
    right: 6% !important;
    bottom: 16%;
    text-align: center;
  }
  .carousel-caption h3 { font-size: 1.35rem; }
  .carousel-caption p { font-size: 0.98rem; }
  .carousel-caption .btn { width: auto; padding: 10px 18px; font-weight: 800; }
}

/* ── Whats New Marquee ── */
.whats-new-bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(15,23,42,0.08);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.25);
  overflow: hidden;
}
.whats-new-label {
  padding: 10px 14px;
  background: rgba(15,23,42,0.82);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.whats-new-label::before {
  content: '';
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  display: inline-block;
  margin-right: 8px;
}
.whats-new-track {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.whats-new-item {
  display: inline-block;
  padding: 10px 20px;
  min-width: 100%;
  animation: whatsNewScroll 22s linear infinite;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.whats-new-track:hover .whats-new-item { animation-play-state: paused; }
@keyframes whatsNewScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ── Quick Help Cards ── */
.quick-help-cards {
  margin-top: clamp(24px, 4vw, 48px);
}
.quick-help-card {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(148,163,184,0.22);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
  transition: var(--transition);
}
.quick-help-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15,23,42,0.12);
}
.quick-help-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(99,102,241,0.12);
  font-size: 1.2rem;
}
.quick-help-body h5 {
  margin: 0 0 6px;
  font-weight: 800;
  color: #0f172a;
}
.quick-help-body a {
  font-weight: 700;
  color: var(--brand-2);
  text-decoration: none;
}
.quick-help-body a:hover {
  color: var(--brand-1);
  text-decoration: underline;
}

/* ── Operating Hours Tile ── */
.operating-hours-tile {
  margin-top: clamp(20px, 4vw, 40px);
  margin-bottom: clamp(24px, 5vw, 48px);
}
.operating-hours-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}
.oh-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.oh-body h5 { margin: 0; font-weight: 800; }
.oh-body p { margin: 0; color: #ffffff; font-weight: 700; }
.operating-hours-card,
.operating-hours-card * {
  color: #ffffff !important;
}
.oh-link {
  margin-left: auto;
  color: #c7d2fe;
  font-weight: 700;
  text-decoration: none;
}
.oh-link:hover { color: #e0e7ff; text-decoration: underline; }

/* ── Service Quick Links ── */
.service-quick-links {
  margin-top: clamp(56px, 7vw, 96px);
  margin-bottom: clamp(28px, 5vw, 56px);
}
.sq-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(148,163,184,0.25);
  box-shadow: 0 12px 28px rgba(15,23,42,0.07);
  text-decoration: none;
  color: #0f172a;
  transition: var(--transition);
}
.sq-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(15,23,42,0.12);
}
.sq-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sq-text { font-weight: 700; font-size: 0.98rem; }

/* ── FAQ Snippets ── */
.faq-snippets {
  margin-top: clamp(56px, 7vw, 96px);
}
.faq-snippet-card {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(148,163,184,0.24);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15,23,42,0.08);
  transition: var(--transition);
  height: 100%;
}
.faq-snippet-card:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(15,23,42,0.12); }
.faq-bullet {
  color: var(--brand-2);
  font-size: 0.65rem;
  padding-top: 4px;
}
.faq-body h6 { margin: 0 0 6px; font-weight: 800; }
.faq-body p { font-size: 0.9rem; }

/* ── Info Strip / Announcements ── */
.info-strip { padding: 25px 0; }
.badge-new {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: white; padding: 3px 10px; border-radius: 4px; font-size: 0.72rem;
  font-weight: 700; margin-right: 8px; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.6; } }

.announcement-marquee-wrapper {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  padding: 12px 20px; border-radius: 12px;
  border: 1px solid rgba(234,179,8,0.2);
  overflow: hidden;
}
.announcement-marquee-wrapper i { color: #d97706; font-size: 1.1rem; flex-shrink:0; }
.announcement-marquee { overflow: hidden; flex: 1; }
.announcement-track {
  display: flex; gap: 60px; animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.announcement-item { font-size: 0.88rem; color: #92400e; }

/* Notice Board */
.notice-board {
  background: white; border-radius: 12px; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04); overflow: hidden;
  height: 350px; display: flex; flex-direction: column;
}
.notice-board-header {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  padding: 10px 15px; display: flex; justify-content: space-between;
  align-items: center; border-bottom: 1px solid rgba(234,179,8,0.15);
  font-weight: 700; font-size: 0.85rem; color: #92400e;
}
.notice-board-body {
  padding: 15px;
  font-size: 0.9rem;
  color: #44403c;
  line-height: 1.6;
  background: #fff9ec;
  border: 2px dotted #f59e0b;
  border-radius: 10px;
  flex: 1;
  overflow-y: auto;
}

/* ── Welcome Section ── */
.welcome { padding: 50px 0; position: relative; }
.welcome::before,
.welcome::after {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  border: 12px solid #d62828;
}
.welcome::before {
  top: 12px; left: 12px;
  border-right: 0; border-bottom: 0;
}
.welcome::after {
  bottom: 12px; right: 12px;
  border-left: 0; border-top: 0;
}
.welcome h1 { font-weight: 800; font-size: 2rem; color: #0f172a; line-height: 1.3; }
.welcome .lead { font-size: 1.05rem; color: #475569; line-height: 1.7; }

@media (max-width: 767px) {
  .welcome::before, .welcome::after { width: 30px; height: 30px; border-width: 6px; }
  .welcome::before { top: 10px; left: 10px; }
  .welcome::after { bottom: 10px; right: 10px; }
}

/* ── Card Global Styles (Glass Hover Effect) ── */
.hover-card, .service-card, .govt-full-card, .event-card,
.testimonial-card, .value-card, .process-card, .opening-card,
.support-card, .highlight-card, .research-card, .circular-card {
  transition: var(--transition);
  border-radius: var(--card-radius);
}
.hover-card:hover, .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
/* Glass effect on hover for ALL cards */
.service-card:hover, .govt-full-card:hover, .event-card:hover,
.testimonial-card:hover, .value-card:hover, .process-card:hover,
.opening-card:hover, .support-card:hover, .highlight-card:hover {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(31,38,135,0.12);
}

/* ── Government Website Cards (Full Cards) ── */
.govt-full-card {
  display: block; background: white; border-radius: var(--card-radius);
  padding: 0; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: var(--transition); height: 100%;
}
.govt-full-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  border-color: rgba(13,110,253,0.2);
}
.govt-full-card.featured { border: 2px solid rgba(255,107,107,0.3); }
.govt-full-card.featured:hover { border-color: var(--accent); }
.govt-card-inner { padding: 26px 20px; text-align: center; }
.govt-card-logo {
  width: 96px; height: 96px; margin: 0 auto 16px;
  border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
  background: #f8fafc;
}
.govt-card-logo img { width: 74px; height: 74px; object-fit: contain; }
.govt-card-title {
  font-weight: 700; color: #1e293b; font-size: 0.9rem;
  margin-bottom: 8px; line-height: 1.3;
}
.govt-card-desc {
  font-size: 0.8rem; color: #64748b; margin-bottom: 12px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.govt-card-btn {
  display: inline-block; padding: 5px 16px; border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; font-size: 0.75rem; font-weight: 700;
  transition: var(--transition);
}
.govt-full-card:hover .govt-card-btn {
  box-shadow: 0 4px 12px rgba(13,110,253,0.3);
}

/* ── Government Page - Website Cards (Old Style Compatible) ── */
.website-card, .blinking-website-card {
  display: block; text-decoration: none; background: white;
  border-radius: var(--card-radius); padding: 25px 20px;
  text-align: center; border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: var(--transition); height: 100%;
  color: #1e293b;
}
.website-card:hover, .blinking-website-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  color: var(--brand-1);
}
.blinking-website-card {
  border: 2px solid rgba(255,107,107,0.3);
  animation: cardGlow 2s ease-in-out infinite;
}
@keyframes cardGlow {
  0%,100% { border-color: rgba(255,107,107,0.3); box-shadow: 0 4px 15px rgba(0,0,0,0.04); }
  50% { border-color: rgba(255,107,107,0.6); box-shadow: 0 4px 20px rgba(255,107,107,0.15); }
}
.website-logo { width: 65px; height: 65px; margin: 0 auto 12px; }
.website-logo img { width: 100%; height: 100%; object-fit: contain; }
.website-details h5 { font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
.website-details p { font-size: 0.8rem; color: #64748b; margin-bottom: 10px; }
.btn-visit {
  display: inline-block; padding: 5px 16px; border-radius: 20px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; font-size: 0.75rem; font-weight: 700;
  transition: var(--transition);
}

/* ── Research & Circular Cards (Government Page) ── */
.research-card, .circular-card {
  background: white; border-radius: var(--card-radius); padding: 30px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  height: 100%; transition: var(--transition);
}
.research-card:hover, .circular-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.research-card h4, .circular-card h4 {
  font-weight: 700; color: #1e293b; margin-bottom: 20px; font-size: 1.1rem;
}
.research-list, .circular-list { list-style: none; padding: 0; margin: 0; }
.research-list li, .circular-list li { margin-bottom: 12px; }
.research-list li a, .circular-list li a {
  display: flex; align-items: center; gap: 10px;
  color: #475569; text-decoration: none; padding: 8px 12px;
  border-radius: 8px; transition: var(--transition);
  font-size: 0.9rem; font-weight: 500;
}
.research-list li a:hover, .circular-list li a:hover {
  background: rgba(13,110,253,0.06); color: var(--brand-1);
  transform: translateX(5px);
}
.research-list li a i, .circular-list li a i {
  color: var(--brand-1); width: 18px; text-align: center;
}

/* ── Announcement Section (Government Page - Vertical Marquee) ── */
.announcement-vertical-wrapper {
  background: white; border-radius: var(--card-radius); padding: 0;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  overflow: hidden; height: 350px;
}
.announcement-vertical-header {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; padding: 14px 20px; font-weight: 700; font-size: 0.95rem;
}
.announcement-vertical-body {
  height: calc(100% - 50px); overflow: hidden; position: relative;
}
.announcement-vertical-track {
  animation: scrollUp 20s linear infinite;
}
@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
.announcement-vertical-track:hover { animation-play-state: paused; }
.announcement-v-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}
.announcement-v-item:hover { background: rgba(13,110,253,0.03); }
.announcement-v-item .ann-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--brand-1); flex-shrink: 0;
  animation: pulse 2s infinite;
}
.announcement-v-item .ann-text {
  flex: 1; font-size: 0.85rem; color: #334155; font-weight: 500;
}
.announcement-v-item .ann-link {
  flex-shrink: 0; font-size: 0.75rem; font-weight: 600;
  color: var(--brand-1); text-decoration: none;
  padding: 3px 10px; border-radius: 15px;
  background: rgba(13,110,253,0.08);
  transition: var(--transition);
}
.announcement-v-item .ann-link:hover {
  background: var(--brand-1); color: white;
}

/* ── Services Carousel ── */
.services-carousel { position: relative; padding: 0 56px; overflow: hidden; }
.services-viewport { overflow-x: auto; overflow-y: hidden; padding: 10px 0; scrollbar-width: none; }
.services-viewport::-webkit-scrollbar { display: none; }
.services-track {
  display: flex; gap: 8px; transition: transform 0.5s ease;
  width: max-content;
}
.service-slide { flex-shrink: 0; width: 320px; }
.services-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,0.95); border: 2px solid rgba(13,110,253,0.15);
  color: var(--brand-1); font-size: 20px; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.services-arrow:hover {
  background: var(--brand-1); color: white;
  box-shadow: 0 8px 25px rgba(13,110,253,0.3);
  border-color: var(--brand-1);
}
.services-prev { left: 6px; }
.services-next { right: 6px; }

/* Service Card */
.service-card {
  border: 1px solid rgba(0,0,0,0.06); border-radius: var(--card-radius);
  overflow: hidden; background: white;
}
.service-card .card-img-top { height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .card-img-top { transform: scale(1.05); }
.service-card .card-title { font-weight: 700; color: #1e293b; }
.service-card .card-text { color: #64748b; font-size: 0.9rem; }

/* ── Team Avatars with Dotted Moving Circle ── */
.team-avatar-wrap {
  position: relative; display: inline-block; margin-bottom: 15px;
  isolation: isolate;
}
.team-avatar {
  width: 130px; height: 130px; border-radius: 50%; object-fit: cover;
  border: 4px solid rgba(13,110,253,0.15);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative; z-index: 2;
}
.team-dotted-circle {
  position: absolute; top: -10px; left: -10px;
  width: calc(100% + 20px); height: calc(100% + 20px);
  border-radius: 50%;
  border: 2px dotted rgba(13,110,253,0.55);
  animation: rotateCircle 8s linear infinite;
  box-shadow: 0 0 0 3px rgba(13,110,253,0.08) inset;
  z-index: 1;
  pointer-events: none;
}
.team-dotted-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(102,16,242,0.35);
  animation: rotateCircleReverse 11s linear infinite;
}
.team-dotted-circle::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  margin-left: -5px;
  margin-top: -5px;
  background: radial-gradient(circle, #60a5fa 0%, #0d6efd 60%, rgba(13,110,253,0) 100%);
  box-shadow: 0 0 10px rgba(13,110,253,0.7);
  transform: rotate(0deg) translateY(-78px);
  animation: orbitDotLead 3.8s linear infinite;
  will-change: transform;
}
.team-avatar-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,110,253,0.16) 0%, rgba(102,16,242,0.10) 35%, rgba(13,110,253,0) 70%);
  z-index: 0;
  animation: avatarAuraPulse 2.8s ease-in-out infinite;
  pointer-events: none;
}
.team-member-card:hover .team-dotted-circle {
  border-color: rgba(13,110,253,0.85);
  box-shadow: 0 0 0 4px rgba(13,110,253,0.12) inset, 0 0 18px rgba(13,110,253,0.22);
}
.team-member-card:hover .team-dotted-circle::before {
  border-color: rgba(102,16,242,0.65);
}
.team-member-card:hover .team-dotted-circle::after {
  animation-duration: 2.4s;
}
/* Leadership Team specific dotted animation */
.team-member-card .team-avatar-wrap::before {
  background: radial-gradient(circle, rgba(13,110,253,0.16) 0%, rgba(102,16,242,0.10) 35%, rgba(13,110,253,0) 70%);
}
.team-member-card .team-dotted-circle {
  border-color: rgba(13,110,253,0.55);
  box-shadow: 0 0 0 3px rgba(13,110,253,0.08) inset;
}
.team-member-card .team-dotted-circle::before {
  border-color: rgba(102,16,242,0.35);
  animation: rotateCircleReverse 11s linear infinite;
}
.team-member-card .team-dotted-circle::after {
  background: radial-gradient(circle, #60a5fa 0%, #0d6efd 60%, rgba(13,110,253,0) 100%);
  box-shadow: 0 0 10px rgba(13,110,253,0.7);
  transform: rotate(0deg) translateY(-78px);
  animation: orbitDotLead 3.8s linear infinite;
}

/* Support Team specific dotted animation */
.support-card .team-avatar-wrap::before {
  background: radial-gradient(circle, rgba(16,185,129,0.20) 0%, rgba(245,158,11,0.14) 36%, rgba(16,185,129,0) 72%);
  animation: avatarAuraPulseSupport 2.2s ease-in-out infinite;
}
.support-card .team-dotted-circle {
  border: 2px dashed rgba(16,185,129,0.65);
  box-shadow: 0 0 0 3px rgba(16,185,129,0.10) inset;
  animation: rotateCircleSupport 6.5s linear infinite;
}
.support-card .team-dotted-circle::before {
  inset: -7px;
  border: 2px dotted rgba(245,158,11,0.50);
  animation: rotateCircleSupportReverse 8.5s linear infinite;
}
.support-card .team-dotted-circle::after {
  width: 9px;
  height: 9px;
  margin-left: -4.5px;
  margin-top: -4.5px;
  background: radial-gradient(circle, #86efac 0%, #10b981 65%, rgba(16,185,129,0) 100%);
  box-shadow: 0 0 10px rgba(16,185,129,0.75);
  transform: rotate(0deg) translateY(-58px);
  animation: orbitDotSupport 3.1s linear infinite;
}
.support-card:hover .team-dotted-circle {
  border-color: rgba(16,185,129,0.9);
  box-shadow: 0 0 0 4px rgba(16,185,129,0.14) inset, 0 0 18px rgba(16,185,129,0.25);
}
@keyframes rotateCircleSupport { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateCircleSupportReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes orbitDotLead {
  from { transform: rotate(0deg) translateY(-78px); }
  to { transform: rotate(360deg) translateY(-78px); }
}
@keyframes orbitDotSupport {
  from { transform: rotate(0deg) translateY(-58px); }
  to { transform: rotate(360deg) translateY(-58px); }
}
@keyframes avatarAuraPulseSupport {
  0%, 100% { transform: scale(0.97); opacity: 0.5; }
  50% { transform: scale(1.08); opacity: 1; }
}
@keyframes rotateCircle { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotateCircleReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes avatarAuraPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.55; }
  50% { transform: scale(1.05); opacity: 0.95; }
}
@keyframes leadershipRingSweep {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Team Card Enhanced */
.team-member-card {
  background: white; border-radius: var(--card-radius);
  padding: 30px 20px; text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: var(--transition); cursor: pointer;
  position: relative; overflow: hidden;
}
.team-member-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
}
.team-member-card::after {
  content: '';
  position: absolute;
  inset: auto -25% -55% -25%;
  height: 60%;
  background: radial-gradient(circle, rgba(13,110,253,0.10) 0%, rgba(13,110,253,0) 65%);
  pointer-events: none;
  transition: transform .35s ease, opacity .35s ease;
  opacity: .65;
}
.team-member-card .team-avatar-wrap {
  filter: drop-shadow(0 8px 16px rgba(13,110,253,0.18));
}
.team-member-card .team-avatar-wrap::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(13,110,253,0), rgba(13,110,253,0.32), rgba(102,16,242,0.34), rgba(13,110,253,0));
  animation: leadershipRingSweep 4.2s linear infinite;
  z-index: -1;
  opacity: .8;
}
.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(13,110,253,0.15);
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-color: rgba(13,110,253,0.22);
}
.team-member-card:hover::after {
  transform: translateY(-8px) scale(1.05);
  opacity: 1;
}
.team-member-card h5 {
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  letter-spacing: .01em;
}
.team-member-card .role-text {
  color: #2563eb;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.team-member-card .bio-text {
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.55;
}
.team-member-card .btn {
  border-radius: 10px;
  font-weight: 700;
}
.team-action-row {
  padding-top: 2px;
  flex-wrap: wrap;
}
.team-btn-about {
  color: #334155;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  border-color: rgba(148,163,184,0.35) !important;
}
.team-btn-about:hover {
  color: #0d6efd;
  border-color: rgba(13,110,253,0.35) !important;
  box-shadow: 0 6px 16px rgba(13,110,253,0.16);
}
.team-about-overlay {
  position: absolute; inset: 0; background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); display: flex; flex-direction: column;
  align-items: center; justify-content: center; padding: 25px;
  opacity: 0; pointer-events: none; transition: all 0.4s ease;
  z-index: 5;
}
.team-member-card.show-about .team-about-overlay {
  opacity: 1; pointer-events: all;
}
.team-about-overlay .close-about {
  position: absolute; top: 10px; right: 12px;
  background: none; border: none; font-size: 1.3rem;
  color: #475569; cursor: pointer; transition: var(--transition);
}
.team-about-overlay .close-about:hover { color: #ef4444; transform: scale(1.2); }
.team-meta-badges {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.team-mini-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #0d6efd;
  background: rgba(13,110,253,0.09);
  border: 1px solid rgba(13,110,253,0.18);
  border-radius: 999px;
  padding: 4px 10px;
}


/* ── Testimonials (Auto-scrolling Cards) ── */
.testimonial-card {
  background: white; border-radius: var(--card-radius); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}
.testimonial-card-body { padding: 25px; }
.testimonial-stars {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(245,158,11,0.12), rgba(245,158,11,0.03));
  border: 1px solid rgba(245,158,11,0.24);
}
.testimonial-star {
  display: inline-block;
  font-size: 0.95rem;
  line-height: 1;
  transform-origin: center;
  animation: testimonialStarWave 1.6s ease-in-out infinite;
  animation-delay: var(--star-delay, 0s);
}
.testimonial-star.is-active {
  color: #f59e0b;
  text-shadow: 0 1px 0 rgba(255,255,255,0.55);
}
.testimonial-star.is-inactive {
  color: #d1d5db;
}
.testimonial-quote {
  font-style: italic; color: #475569; font-size: 0.92rem;
  line-height: 1.7; position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem;
}
.testimonial-name { font-weight: 700; color: #1e293b; font-size: 0.9rem; }
.testimonial-role { color: #94a3b8; font-size: 0.8rem; }

/* Auto-scroll testimonials wrapper */
.testimonials-scroll-wrapper {
  overflow: hidden; position: relative;
}
.testimonials-scroll-track {
  display: flex; gap: 20px;
  animation: testimonialScroll 25s linear infinite;
}
.testimonials-scroll-track:hover { animation-play-state: paused; }
.testimonials-scroll-item { flex-shrink: 0; width: 380px; }
@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes testimonialStarWave {
  0%, 100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-3px) scale(1.08); }
  65% { transform: translateY(0) scale(1); }
}

/* ── Partners Slider ── */
.partners-section { background: #f8f9ff; }
.partners-slider { overflow: hidden; }
.partners-track {
  display: flex; gap: 30px; animation: partnersScroll 20s linear infinite;
}
@keyframes partnersScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partner-card {
  flex-shrink: 0; width: 140px; text-align: center;
  text-decoration: none; color: #475569;
  padding: 15px; border-radius: 12px;
  transition: var(--transition);
  background: white; border: 1px solid rgba(0,0,0,0.06);
}
.partner-card:hover {
  transform: translateY(-5px); color: var(--brand-1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.partner-card img { width: 70px; height: 50px; object-fit: contain; margin-bottom: 8px; }
.partner-name { font-size: 0.75rem; font-weight: 600; display: block; }

/* ── Highlights Section ── */
#highlights { padding: 60px 0; background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.highlights-container { max-width: 1200px; margin: 0 auto; padding: 0 15px; }
.highlight-card {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(10px);
  border: 1px solid rgba(245,124,0,0.2);
  border-radius: var(--card-radius); padding: 30px 20px; text-align: center;
  color: #3e2723; transition: var(--transition); height: 100%;
}
.highlight-card:hover {
  background: #ffffff;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(230,124,0,0.2);
}
.highlight-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, #ef6c00, #f57c00);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin: 0 auto 15px;
}
.highlight-card h5 { font-weight: 700; }
.highlight-card p { color: #6d4c41; font-size: 0.85rem; }
.highlight-link {
  color: #e65100; text-decoration: none; font-weight: 700;
  font-size: 0.85rem; transition: var(--transition);
}
.highlight-link:hover { color: #bf360c; }

/* Index section background containment */
#important-websites,
#blinking-websites,
#services {
  border-radius: 18px;
  overflow: hidden;
}
#important-websites { background: linear-gradient(180deg, #ffffff 0%, #f9fcff 100%); }
#blinking-websites { background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%); }
#services { background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%); }

/* ── Disclaimer Section ── */
.full-disclaimer-section {
  background: linear-gradient(135deg, #fef3c7, #fffbeb);
  padding: 40px 0; border-top: 3px solid #f59e0b;
}
.full-disclaimer-card {
  text-align: center; padding: 20px;
}
.disclaimer-icon-wrap { font-size: 2.5rem; color: #d97706; margin-bottom: 10px; }
.full-disclaimer-card h3 { color: #92400e; }
.full-disclaimer-card p { color: #78350f; font-size: 0.95rem; line-height: 1.7; }

/* ── Page Banner (for non-home pages) ── */
.page-banner {
  padding: 50px 0 40px;
  background: linear-gradient(135deg, rgba(13,110,253,0.08), rgba(102,16,242,0.05));
  background-size: cover; background-position: center;
  position: relative;
}
.page-banner-overlay {
  position: relative; z-index: 2;
}
.page-banner[style*="background-image"] .page-banner-overlay {
  background: rgba(15,23,42,0.7); padding: 50px 0 40px;
  margin: -50px 0 -40px; color: white;
}
.page-banner[style*="background-image"] .page-banner-overlay .section-title { color: white; }
.page-banner[style*="background-image"] .page-banner-overlay .text-muted { color: rgba(255,255,255,0.7) !important; }
.page-banner[style*="background-image"] .breadcrumb-item a { color: rgba(255,255,255,0.7); }
.page-banner[style*="background-image"] .breadcrumb-item.active { color: white; }
.breadcrumb-item a { color: var(--brand-1); text-decoration: none; }

/* ── About Page ── */
.about-badge {
  display: inline-flex; align-items: center; padding: 8px 18px;
  background: linear-gradient(135deg, rgba(13,110,253,0.08), rgba(102,16,242,0.08));
  border-radius: 25px; font-size: 0.82rem; font-weight: 700;
  color: var(--brand-1); border: 1px solid rgba(13,110,253,0.15);
}
.about-image-wrapper { position: relative; }
.about-main-img { border-radius: 20px; }
.about-experience-badge {
  position: absolute; bottom: -20px; left: -20px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; padding: 20px; border-radius: 16px;
  text-align: center; box-shadow: 0 10px 30px rgba(13,110,253,0.4);
}
.about-exp-number { font-size: 2.5rem; font-weight: 800; display: block; line-height: 1; }
.about-exp-text { font-size: 0.8rem; font-weight: 600; opacity: 0.9; }
.about-feature-item { transition: var(--transition); padding: 6px 12px; border-radius: 10px; }
.about-feature-item:hover { background: rgba(13,110,253,0.04); transform: translateX(5px); }
.about-feature-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0;
}
.why-choose-card {
  background: white; border-radius: var(--card-radius);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transition: var(--transition);
}
.why-choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.why-choose-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  display: flex; align-items: center; justify-content: center;
}

/* ── Journey Timeline (Creative Redesign) ── */
.journey-section {
  background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%);
  position: relative;
}
.journey-timeline {
  position: relative; padding: 20px 0;
}
.journey-timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 4px; background: linear-gradient(180deg, var(--brand-1), var(--brand-2), var(--accent));
  transform: translateX(-50%); border-radius: 10px;
}
.journey-item {
  display: flex; margin-bottom: 40px;
  position: relative;
}
.journey-item.left { justify-content: flex-start; padding-right: calc(50% + 30px); }
.journey-item.right { justify-content: flex-end; padding-left: calc(50% + 30px); }
.journey-content {
  background: white; border-radius: 16px; padding: 25px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative; max-width: 400px;
  transition: var(--transition);
}
.journey-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(13,110,253,0.12);
}
.journey-icon {
  position: absolute; top: 50%; width: 50px; height: 50px;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: white; font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 3; animation: float 3s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(-50%); } 50% { transform: translateY(calc(-50% - 6px)); } }
.journey-item.left .journey-icon { right: -55px; transform: translateY(-50%); }
.journey-item.right .journey-icon { left: -55px; transform: translateY(-50%); }
.journey-year {
  display: inline-block; padding: 3px 14px; border-radius: 20px;
  background: linear-gradient(135deg, rgba(13,110,253,0.1), rgba(102,16,242,0.1));
  color: var(--brand-1); font-weight: 800; font-size: 0.85rem;
  margin-bottom: 8px;
}
.journey-title { font-weight: 700; color: #1e293b; margin-bottom: 6px; }
.journey-desc { color: #64748b; font-size: 0.9rem; margin-bottom: 0; }

/* ── Vision & Mission ── */
.vision-mission-section { background: linear-gradient(135deg, #f8f9ff, #f0f4ff); }
.vm-card {
  background: white; border-radius: 20px; padding: 40px 30px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
  position: relative; overflow: hidden; transition: var(--transition);
}
.vm-card:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(0,0,0,0.12); }
.vm-icon-wrap { margin-bottom: 20px; }
.vm-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
}
.vision-card .vm-icon { background: linear-gradient(135deg, #0ea5e9, #06b6d4); }
.mission-card .vm-icon { background: linear-gradient(135deg, #f59e0b, #f97316); }
.vm-card h3 { font-weight: 800; color: #1e293b; margin-bottom: 12px; }
.vm-card p { color: #64748b; line-height: 1.7; }
.vm-decoration {
  position: absolute; bottom: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,110,253,0.05), rgba(102,16,242,0.05));
}

/* ── Core Values ── */
.value-card {
  background: white; border-radius: var(--card-radius); padding: 30px 20px;
  text-align: center; transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.value-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.value-icon {
  width: 65px; height: 65px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem; margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.value-card h5 { font-weight: 700; color: #1e293b; margin-bottom: 10px; }
.value-card p { color: #64748b; font-size: 0.9rem; margin-bottom: 0; }

/* ── Statistics Counters ── */
.stats-section {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative; overflow: hidden;
  padding: 80px 0;
}
.stats-section::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.05'%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.5;
}
.stat-card {
  background: rgba(255,255,255,0.12); border-radius: 16px; padding: 30px 20px;
  backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.15);
  transition: var(--transition);
}
.stat-card:hover { transform: translateY(-5px); background: rgba(255,255,255,0.18); }
.stat-icon { font-size: 2.5rem; margin-bottom: 10px; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: white; line-height: 1; display: inline; }
.stat-suffix { display: inline; font-size: 2rem; font-weight: 700; color: rgba(255,255,255,0.8); }
.stat-label { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 600; margin-top: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── Process Section (Fixed Arrows) ── */
.process-section { background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%); }
.process-card {
  background: white; border-radius: 16px; padding: 30px 20px; position: relative;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
}
.process-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(13,110,253,0.15); }
.process-number {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  width: 35px; height: 35px; background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.9rem; box-shadow: 0 4px 15px rgba(13,110,253,0.4);
}
.process-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(13,110,253,0.1), rgba(102,16,242,0.1));
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--brand-1); margin: 10px auto 15px;
}
.process-title { font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.process-desc { color: #64748b; font-size: 0.9rem; margin-bottom: 0; }
.process-connector {
  position: absolute; top: 50%; right: -22px;
  width: 40px; height: 40px; display: flex;
  align-items: center; justify-content: center;
  z-index: 5; transform: translateY(-50%);
}
.process-connector i {
  color: var(--brand-1); font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(13,110,253,0.3));
  animation: arrowPulse 1.5s ease-in-out infinite;
}
@keyframes arrowPulse {
  0%, 100% { transform: translateX(0); opacity: 1; }
  50% { transform: translateX(4px); opacity: 0.6; }
}

/* ── FAQ Accordion ── */
.faq-item {
  border: 1px solid rgba(0,0,0,0.08) !important; border-radius: 12px !important;
  margin-bottom: 12px !important; overflow: hidden;
}
.faq-item .accordion-button {
  font-weight: 600; color: #1e293b; background: white; font-size: 0.95rem; padding: 18px 20px;
}
.faq-item .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(13,110,253,0.05), rgba(102,16,242,0.05));
  color: var(--brand-1); box-shadow: none;
}
.faq-item .accordion-body {
  padding: 15px 20px 20px; color: #4b5563; font-size: 0.95rem; line-height: 1.7; background: #fafbfc;
}

/* ── Support Team ── */
.support-card {
  background: white; border-radius: 16px; padding: 30px 20px;
  border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.support-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #f59e0b);
}
.support-card::after {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  right: -45px;
  top: -45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.15), rgba(16,185,129,0));
  pointer-events: none;
}
.support-card .team-avatar-wrap {
  filter: drop-shadow(0 8px 14px rgba(16,185,129,0.2));
}
.support-card .team-avatar-wrap::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(16,185,129,0.22);
  box-shadow: 0 0 0 6px rgba(16,185,129,0.06);
  z-index: -1;
}
.support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(16,185,129,0.16);
  border-color: rgba(16,185,129,0.25);
}
.support-avatar {
  width: 90px; height: 90px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(13,110,253,0.2); box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.support-avatar-placeholder {
  width: 90px; height: 90px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(13,110,253,0.1), rgba(102,16,242,0.1));
  display: inline-flex; align-items: center; justify-content: center; font-size: 2rem; color: var(--brand-1);
}
.support-role-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .72rem !important;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-weight: 700 !important;
  background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(245,158,11,0.14));
  border: 1px solid rgba(16,185,129,0.2);
  color: #047857 !important;
}
.support-bio-text {
  line-height: 1.6;
  min-height: 42px;
}

/* ── Join Team CTA ── */
.join-team-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 20px; padding: 50px 40px; position: relative; overflow: hidden;
}
.join-team-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px; background: radial-gradient(circle, rgba(13,110,253,0.3), transparent); border-radius: 50%;
}
.join-team-illustration { font-size: 5rem; color: rgba(255,255,255,0.15); }

/* ── Current Openings ── */
.opening-card {
  background: white; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(0,0,0,0.05); box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: var(--transition); display: flex; flex-direction: column;
}
.opening-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.opening-header { padding: 25px 25px 15px; border-bottom: 1px solid rgba(0,0,0,0.05); }
.opening-title { font-weight: 700; color: var(--brand-2); margin-bottom: 10px; }
.opening-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.opening-badge { font-size: 0.78rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; }
.opening-badge.type { background: rgba(13,110,253,0.1); color: var(--brand-1); }
.opening-badge.location { background: rgba(102,16,242,0.1); color: var(--brand-2); }
.opening-body { padding: 20px 25px; flex: 1; }
.opening-salary { color: #059669; font-size: 0.95rem; margin-bottom: 10px; }
.opening-footer { padding: 15px 25px 20px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Events & YouTube ── */
.events-section { background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%); }
.event-card {
  background: white; border-radius: 16px; overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.event-card:hover { transform: translateY(-8px); box-shadow: 0 15px 40px rgba(0,0,0,0.12); }
.event-thumbnail { position: relative; overflow: hidden; }
.event-thumb-img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; }
.event-card:hover .event-thumb-img { transform: scale(1.05); }
.event-video-wrap { position: relative; cursor: pointer; }
.event-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 60px; height: 60px; background: rgba(255,0,0,0.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white;
  font-size: 1.2rem; transition: var(--transition); box-shadow: 0 4px 15px rgba(255,0,0,0.4);
}
.event-video-wrap:hover .event-play-btn { background: #ff0000; transform: translate(-50%, -50%) scale(1.15); }
.event-body { padding: 20px; }
.event-title { font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.event-desc { color: #64748b; font-size: 0.9rem; margin-bottom: 0; }
.btn-youtube-channel {
  background: #ff0000; color: white; border: none; font-weight: 700;
  padding: 12px 35px; border-radius: 50px; font-size: 1rem;
  transition: var(--transition); box-shadow: 0 4px 15px rgba(255,0,0,0.3);
}
.btn-youtube-channel:hover {
  background: #cc0000; color: white; transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255,0,0,0.4);
}

/* ── Social Hub Section ── */
.social-hub {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 50px 0; color: white;
}
.social-icons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.social-icons .social-btn {
  width: 55px; height: 55px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem; transition: var(--transition);
  text-decoration: none;
}
.social-icons .facebook { background: #1877F2; }
.social-icons .instagram { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social-icons .youtube { background: #FF0000; }
.social-icons .twitter { background: #1DA1F2; }
.social-icons .whatsapp { background: #25D366; }
.social-icons .social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ── Footer (with hover effects on links) ── */
.footer-no-hover {
  background: linear-gradient(180deg, #1e293b, #0f172a);
  color: rgba(255,255,255,0.7); padding: 50px 0 0;
  display: block;
  position: relative;
  z-index: 1;
}
.footer-column-static h6, .footer-heading-static {
  color: white; font-weight: 700; font-size: 1rem; margin-bottom: 20px;
  position: relative; padding-bottom: 10px;
}
.footer-heading-static::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 35px; height: 3px; background: var(--brand-1); border-radius: 10px;
}
.footer-text { font-size: 0.88rem; line-height: 1.7; }

/* Quick Links & Popular Services - WITH hover effects */
.quick-link-static {
  display: block; color: rgba(255,255,255,0.6); text-decoration: none;
  padding: 5px 0; font-size: 0.88rem; transition: var(--transition);
  position: relative; padding-left: 0;
}
.quick-link-static:hover {
  color: #60a5fa; padding-left: 8px;
}
.quick-link-static::before {
  content: '→'; margin-right: 8px; opacity: 0;
  transition: var(--transition);
}
.quick-link-static:hover::before { opacity: 1; }

/* MSME Bar + Visitor Counter (Centered) */
.msme-visitor-row {
  background: rgba(13, 110, 253, 0.05);
  padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.08);
}
.msme-visitor-row .container {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; text-align: center;
}
.visitor-counter-text {
  color: rgba(255,255,255,0.5); font-size: 0.8rem; font-weight: 500;
}
.visitor-counter-text strong { color: rgba(255,255,255,0.8); }

/* Legacy MSME/Visitor bars (hidden if new row exists) */
.msme-bar, .visitor-counter-bar {
  background: rgba(255,255,255,0.05);
  padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

/* Designed By */
.designed-by-text { color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.designed-by-text strong { color: rgba(255,255,255,0.6); }

/* Footer Bottom */
.footer-bottom {
  background: rgba(0,0,0,0.2); padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 20px;
}

/* ── Floating Social Buttons ── */
.floating-text-button {
  position: fixed; left: 20px; right: auto; color: white;
  padding: 8px 12px; border-radius: 25px; text-align: center;
  font-size: 12px; z-index: 9999; text-decoration: none;
  font-family: Arial, sans-serif; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  transition: var(--transition); display: inline-flex; align-items: center; font-weight: 700;
  animation: floatingBlink 1.4s ease-in-out infinite;
  overflow: visible;
  isolation: isolate;
}
.floating-text-button::before,
.floating-text-button::after { display: none; }
.floating-text-button:hover { opacity: 1; color: white; transform: scale(1.08); }
.floating-text-button.whatsapp { background-color: #25D366; bottom: 120px; animation-delay: 0s; }
.floating-text-button.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  bottom: 75px;
  animation-delay: .45s;
}
@keyframes floatingBlink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35), 0 0 0 rgba(255,255,255,0);
    filter: saturate(1) brightness(1);
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.38), 0 0 22px rgba(255,255,255,0.75);
    filter: saturate(1.35) brightness(1.08);
    transform: translateY(-2px) scale(1.02);
  }
}
@keyframes floatingRing {
  0% { opacity: 0.7; transform: scale(0.9); }
  70% { opacity: 0.15; transform: scale(1.22); }
  100% { opacity: 0; transform: scale(1.28); }
}
@keyframes floatingShine {
  0% { left: -45%; opacity: 0; }
  8% { opacity: 1; }
  22% { left: 115%; opacity: 0; }
  100% { left: 115%; opacity: 0; }
}

/* ── Chat Floating Button ── */
.floating-chat-btn {
  position: fixed; bottom: 90px; right: 20px; z-index: 9999;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; border: none; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem;
  box-shadow: 0 6px 20px rgba(13,110,253,0.4);
  cursor: pointer; transition: var(--transition);
  text-decoration: none;
  animation: chatPulse 2s infinite;
}
.floating-chat-btn:hover {
  transform: scale(1.1); animation: none;
  box-shadow: 0 8px 30px rgba(13,110,253,0.5);
  text-decoration: none;
}
.floating-chat-btn i { text-decoration: none; }
@keyframes chatPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(13,110,253,0.4); }
  50% { box-shadow: 0 6px 30px rgba(13,110,253,0.7); }
}
.chat-badge {
  position: absolute; top: -5px; right: -5px;
  background: #ef4444; color: white; font-size: 0.65rem;
  font-weight: 700; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}

/* ── Back to Top ── */
#backToTopBtn {
  display: none; position: fixed; bottom: 24px; right: 24px; z-index: 99;
  border: none; outline: none; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2)); color: #fff;
  cursor: pointer; font-size: 20px; align-items: center; justify-content: center;
  box-shadow: 0 10px 25px rgba(15,23,42,0.4); transition: var(--transition);
}
#backToTopBtn:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 18px 35px rgba(15,23,42,0.55); }

/* ── Contact Section ── */
#contact { background: transparent !important; color: #333333; padding: 60px 0; }
.contact-form-box {
  background: white; border-radius: 20px; padding: 40px;
  box-shadow: 0 15px 50px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.05); height: 100%;
  position: relative;
  padding-left: 78px;
}
.contact-form-box h3 { color: var(--brand-2); margin-bottom: 25px; font-weight: 700; }
.contact-form-box .form-control {
  border: 2px solid #e5e7eb; border-radius: 12px; padding: 12px 18px;
  margin-bottom: 16px; transition: var(--transition);
  background: #fafbfc;
}
.contact-form-box .form-control:focus {
  border-color: var(--brand-1); box-shadow: 0 0 0 4px rgba(13,110,253,0.1);
  background: white;
}
.contact-info-box {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  border-radius: 20px; padding: 40px; color: white; height: 100%;
}
.contact-info-box h3 { color: white; margin-bottom: 30px; font-weight: 700; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 25px; }
.contact-info-icon {
  width: 50px; height: 50px; border-radius: 14px;
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.32), rgba(59,130,246,0.16) 38%, rgba(255,255,255,0.08) 100%);
  display: flex;
  align-items: center; justify-content: center;
  font-size: 1.1rem; color: #93c5fd; flex-shrink: 0;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(147,197,253,0.34);
  box-shadow: 0 8px 18px rgba(15,23,42,0.35);
  animation: contactNeonFloat 2.2s ease-in-out infinite;
}
.contact-info-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 18px;
  background: conic-gradient(from 180deg, rgba(56,189,248,0.15), rgba(99,102,241,0.62), rgba(56,189,248,0.15));
  z-index: -2;
  animation: contactHaloRotate 2.8s linear infinite;
}
.contact-info-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 17px;
  border: 2px solid rgba(147,197,253,0.62);
  opacity: 0;
  transform: scale(0.9);
  z-index: -1;
  animation: contactNeonPulse 2.2s ease-out infinite;
}
.contact-info-content h5 { font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-content p { margin-bottom: 2px; font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.contact-info-content a { color: rgba(255,255,255,0.7); transition: var(--transition); }
.contact-info-content a:hover { color: white; }
.contact-social-links { display: flex; gap: 10px; margin-top: 15px; }
.contact-social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; transition: var(--transition); font-size: 0.95rem;
}
.contact-social-links .facebook { background: #1877F2; }
.contact-social-links .instagram { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
.contact-social-links .whatsapp { background: #25D366; }
.contact-social-links .youtube { background: #FF0000; }
.contact-social-links a:hover { transform: translateY(-3px) scale(1.1); }
.contact-connect-quote {
  color: rgba(255,255,255,0.95);
  line-height: 1.75;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.96rem;
  letter-spacing: 0.2px;
  padding: 12px 14px;
  border-left: 3px solid rgba(96,165,250,0.65);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(148,163,184,0.08));
  text-shadow: none;
  animation: quoteOutBreath 3.2s ease-in-out infinite;
}
@keyframes quoteOutBreath {
  0%, 100% {
    transform: translateZ(0) scale(1);
  }
  50% {
    transform: translateZ(0) scale(1.02);
  }
}
.contact-map {
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.06);
}
.contact-map iframe { width: 100%; height: 350px; border: none; }

/* ── Certificate Verification ── */
.cert-verify-card {
  background: white; border-radius: 20px; padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.06);
}
.cert-verify-header { text-align: center; margin-bottom: 30px; }
.cert-icon-wrap {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  display: inline-flex; align-items: center; justify-content: center;
  color: white; font-size: 1.5rem; margin-bottom: 15px;
  box-shadow: 0 6px 20px rgba(13,110,253,0.3);
}
.cert-result { border-radius: 16px; padding: 30px; margin-top: 20px; }
.cert-valid {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border: 2px solid #10b981;
}
.cert-invalid {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 2px solid #ef4444;
}
.cert-result-header { text-align: center; margin-bottom: 20px; }
.cert-result-body { background: rgba(255,255,255,0.8); border-radius: 12px; padding: 20px; }
/* Verified Stamp */
.verified-stamp {
  position: relative; display: inline-block;
}
.verified-stamp::after {
  content: 'VERIFIED'; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(-15deg);
  font-size: 3rem; font-weight: 900; color: rgba(16,185,129,0.18);
  letter-spacing: 8px; white-space: nowrap;
  border: 6px solid rgba(16,185,129,0.18);
  padding: 10px 30px; border-radius: 20px;
  pointer-events: none;
  animation: stampAppear 0.6s ease-out;
}
@keyframes stampAppear {
  0% { opacity: 0; transform: translate(-50%,-50%) rotate(-15deg) scale(2); }
  60% { opacity: 1; transform: translate(-50%,-50%) rotate(-15deg) scale(0.9); }
  100% { opacity: 1; transform: translate(-50%,-50%) rotate(-15deg) scale(1); }
}
/* Certificate Request Button */
.cert-request-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white !important; border: none; padding: 10px 24px;
  border-radius: 12px; font-weight: 700; transition: var(--transition);
}
.cert-request-btn:hover {
  transform: translateY(-3px); color: white;
  box-shadow: 0 10px 25px rgba(245,158,11,0.35);
}
/* Certificate View (Landscape) */
.certificate-landscape {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  border: 3px solid #d4a855; border-radius: 16px;
  padding: 40px; position: relative; overflow: hidden;
}
.certificate-landscape::before {
  content: ''; position: absolute; inset: 8px;
  border: 2px dashed rgba(212,168,85,0.3); border-radius: 12px;
  pointer-events: none;
}
.certificate-landscape .cert-header-row { text-align: center; margin-bottom: 25px; }
.certificate-landscape .cert-body-row { text-align: center; }
.certificate-landscape .cert-footer-row {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-top: 30px; padding-top: 20px;
  border-top: 1px dashed rgba(212,168,85,0.3);
}

/* ── Gallery ── */
.gallery-card {
  background: white; border-radius: var(--card-radius);
  overflow: hidden; box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.06); transition: var(--transition);
}
.gallery-card:hover { transform: translateY(-8px); box-shadow: 0 18px 45px rgba(0,0,0,0.12); }

/* Gallery page specific layout fixes */
.gallery-album-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.gallery-album-cover {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f3f4f6;
}
.gallery-album-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-album-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
}
.gallery-album-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(15, 23, 42, 0.8);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
.gallery-album-info {
  padding: 14px 16px 16px;
}
.gallery-album-info h5 {
  margin-bottom: 6px;
  color: #0f172a;
}
.gallery-album-info p {
  margin-bottom: 10px;
  color: #64748b;
  font-size: 0.9rem;
}
.gallery-view-more {
  color: var(--brand-1);
  font-weight: 700;
  font-size: 0.85rem;
}

.gallery-photo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: #e5e7eb;
}
.gallery-photo-img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.gallery-photo-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #fff;
  padding: 8px 12px;
  font-size: 0.82rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
}
.gallery-photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(15, 23, 42, 0.45);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 3;
}
.gallery-photo-card:hover .gallery-photo-overlay {
  opacity: 1;
  visibility: visible;
}

/* ── Blog ── */
.blog-card-img { height: 180px; object-fit: cover; transition: transform 0.5s ease; }

/* ── Watch Video Page ── */
.watch-video-wrapper { border-radius: 16px; overflow: hidden; }

/* ── Live Social Media Feeds Section ── */
.social-feeds-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(34, 197, 94, 0.08) 0, rgba(34, 197, 94, 0) 35%),
    radial-gradient(circle at 90% 15%, rgba(59, 130, 246, 0.08) 0, rgba(59, 130, 246, 0) 40%),
    linear-gradient(180deg, #f0f4ff 0%, #f8f9ff 40%, #ffffff 100%);
  position: relative; overflow: hidden;
}
.social-section-head { max-width: 860px; margin: 0 auto; }
.social-feed-col { max-width: 470px; }
.social-live-toolbar {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: center;
  background: rgba(255,255,255,0.86); border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 999px; padding: 8px 12px; box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.social-live-badge {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; border-radius: 999px;
  background: rgba(16, 185, 129, 0.13); color: #047857; font-size: 0.74rem; font-weight: 700;
}
.social-live-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #10b981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); animation: socialPulse 1.8s infinite;
}
@keyframes socialPulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.social-sync-text { font-size: 0.76rem; color: #64748b; font-weight: 600; }
@keyframes socialSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.social-feed-card {
  background: #ffffff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition); display: flex;
  flex-direction: column; position: relative;
}
.social-feed-card:hover { transform: translateY(-7px); box-shadow: 0 22px 55px rgba(15, 23, 42, 0.14); }
.social-feed-header {
  padding: 18px 20px 14px; display: flex;
  align-items: flex-start; gap: 12px; position: relative; justify-content: space-between;
}
.social-feed-header-main { display: flex; align-items: flex-start; gap: 12px; min-width: 0; }
.social-feed-header-text { min-width: 0; flex: 1; }
.social-feed-tools {
  display: inline-flex; flex-direction: column; align-items: flex-end; gap: 4px; min-width: 78px;
}
.social-card-refresh-btn {
  width: 32px; height: 32px; border: none; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; color: #334155; background: #eef2f7;
  transition: transform .2s ease, background .2s ease;
}
.social-card-refresh-btn:hover { background: #dbe4ef; transform: translateY(-1px); }
.social-card-refresh-btn.is-refreshing i { animation: socialSpin .8s linear infinite; }
.social-card-sync { font-size: 0.63rem; color: #94a3b8; font-weight: 600; letter-spacing: .01em; }
.social-feed-header::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.instagram-header::before { background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.facebook-header::before { background: linear-gradient(90deg, #1877F2, #42a5f5, #1565c0); }
.youtube-header::before { background: linear-gradient(90deg, #FF0000, #ff4444, #cc0000); }
.social-feed-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; flex-shrink: 0;
}
.instagram-feed-card .social-feed-icon { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); }
.facebook-feed-card .social-feed-icon { background: linear-gradient(135deg, #1877F2, #42a5f5); }
.youtube-feed-card .social-feed-icon { background: linear-gradient(135deg, #FF0000, #ff4444); }
.social-feed-title { font-weight: 700; font-size: 0.95rem; color: #1e293b; margin-bottom: 2px; }
.social-feed-desc { font-size: 0.78rem; color: #94a3b8; margin-bottom: 0; }
.social-feed-body { padding: 0 14px 10px; flex: 1; display: flex; flex-direction: column; }
.social-embed-container {
  border-radius: 14px; overflow: hidden; background: #fafbfc;
  border: 1px solid rgba(0,0,0,0.06); flex: 1; min-height: 420px;
}
.social-feed-iframe { width: 100%; height: 420px; border: none; display: block; }
.ig-iframe, .fb-iframe { min-height: 420px; }
.yt-video-player {
  position: relative; border-radius: 12px; overflow: hidden;
  cursor: pointer; background: #000; aspect-ratio: 16/9;
}
.yt-player-thumb { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s ease; }
.yt-video-player:hover .yt-player-thumb { transform: scale(1.05); filter: brightness(0.7); }
.yt-player-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: rgba(0,0,0,0.25); transition: background 0.3s;
}
.yt-video-player:hover .yt-player-overlay { background: rgba(0,0,0,0.45); }
.yt-play-icon {
  width: 60px; height: 60px; background: rgba(255,0,0,0.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: white;
  font-size: 1.2rem; transition: var(--transition);
  box-shadow: 0 6px 20px rgba(255,0,0,0.45);
}
.yt-video-player:hover .yt-play-icon { transform: scale(1.15); }
.yt-play-text {
  color: white; font-size: 0.8rem; font-weight: 700; margin-top: 8px;
  opacity: 0; transition: opacity 0.3s;
}
.yt-video-player:hover .yt-play-text { opacity: 1; }
.yt-video-list {
  margin-top: 8px; display: flex; flex-direction: column; gap: 4px;
  max-height: 140px; overflow-y: auto;
}
.yt-video-list::-webkit-scrollbar { width: 3px; }
.yt-video-list::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
.yt-video-list-item {
  display: flex; align-items: center; gap: 8px; padding: 5px 8px;
  border-radius: 8px; cursor: pointer; transition: all 0.2s; background: #f8fafc;
}
.yt-video-list-item:hover, .yt-video-list-item.active { background: #fff1f1; }
.yt-list-thumb { width: 44px; height: 28px; border-radius: 4px; object-fit: cover; flex-shrink: 0; }
.yt-list-title { font-size: 0.72rem; font-weight: 600; color: #334155; }
.yt-video-player iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.social-feed-footer { padding: 14px 20px 18px; text-align: center; }
.social-feed-card.is-refreshing .social-embed-container { opacity: 0.58; filter: grayscale(0.1); }
.ig-fallback {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, #fff7fb 0%, #f9fafb 100%);
}
.ig-fallback-inner {
  text-align: center; color: #475569; padding: 20px 12px;
}
.ig-fallback-inner i {
  font-size: 1.9rem; color: #e1306c; margin-bottom: 8px;
}
.ig-meta-row {
  display: flex; gap: 8px; flex-wrap: wrap; align-items: center;
  margin-top: 8px; padding: 0 1px;
}
.ig-meta-chip {
  display: inline-flex; align-items: center; border-radius: 999px;
  background: #f1f5f9; color: #475569; font-size: 0.7rem;
  font-weight: 600; padding: 4px 9px; border: 1px solid #e2e8f0;
}
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 16px; border-radius: 25px; font-weight: 700;
  font-size: 0.72rem; color: white !important; border: none;
  transition: var(--transition); text-decoration: none;
}
.social-btn:hover { transform: translateY(-2px); color: white !important; }
.instagram-btn { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); box-shadow: 0 4px 12px rgba(225,48,108,0.3); }
.facebook-btn { background: linear-gradient(135deg, #1877F2, #42a5f5); box-shadow: 0 4px 12px rgba(24,119,242,0.3); }
.youtube-btn { background: linear-gradient(135deg, #FF0000, #cc0000); box-shadow: 0 4px 12px rgba(255,0,0,0.3); }

/* ── Focus State ── */
:focus { outline-offset: 3px; outline: 2px solid var(--brand-1); }

/* ── PDF Preview Modal ── */
.pdf-preview-frame { width: 100%; height: 75vh; border: none; border-radius: 8px; }

/* ── Responsive ── */
@media (max-width: 992px) {
  .about-experience-badge { bottom: -10px; left: -10px; padding: 15px; }
  .about-exp-number { font-size: 2rem; }
  .journey-timeline::before { left: 20px; }
  .journey-item.left, .journey-item.right {
    padding-left: 50px; padding-right: 0; justify-content: flex-start;
  }
  .journey-item.left .journey-icon, .journey-item.right .journey-icon {
    left: -5px; right: auto;
  }
  .social-feed-iframe { height: 340px; }
  .ig-iframe, .fb-iframe { min-height: 340px; }
  .social-embed-container { min-height: 340px; }
  .social-feed-col { max-width: 520px; }
}
@media (max-width: 768px) {
  .services-carousel { padding: 0 46px; }
  .services-arrow { width: 44px; height: 44px; font-size: 16px; }
  .services-prev { left: 5px; }
  .services-next { right: 5px; }
  .service-slide { width: 270px; }
  .govt-full-card { margin-bottom: 10px; }
  .highlight-card { margin-bottom: 20px; }
  .testimonials-scroll-item { width: 300px; }
  .testimonial-card-body { padding: 20px; }
  .testimonial-stars { padding: 4px 7px; gap: 2px; }
  .testimonial-star { font-size: 0.9rem; }
  .social-feed-iframe { height: 300px; }
  .ig-iframe, .fb-iframe { min-height: 300px; }
  .social-embed-container { min-height: 300px; }
  .social-feed-col { max-width: 100%; }
}
@media (max-width: 576px) {
  .services-carousel { padding: 0 40px; }
  .services-arrow { width: 38px; height: 38px; font-size: 14px; }
  .service-slide { width: 250px; }
  .services-track { gap: 6px; }
  .contact-info-bar {
    display: flex;
    position: fixed;
    height: var(--contact-bar-height);
    padding: 6px 10px;
    z-index: 1060;
  }
  body { padding-top: calc(var(--contact-bar-height) + var(--topbar-height) + var(--navbar-height)); }
  .top-datetime { top: 0; }
  .top-datetime .top-datetime-inner { padding: 0 10px; gap: 8px; }
  .top-datetime-text { font-size: 0.74rem; }
  .top-social-icons { gap: 6px; }
  .top-social-icons a { width: 28px; height: 28px; font-size: 0.7rem; }
  .main-navbar { top: var(--topbar-height); }
  .cert-verify-card { padding: 20px; }
  .about-experience-badge { display: none; }
  .page-banner { padding: 40px 0 30px; }
  .testimonials-scroll-item { width: 280px; }
  .testimonial-card-body { padding: 18px; }
  .testimonial-stars { padding: 3px 6px; gap: 2px; }
  .testimonial-star { font-size: 0.84rem; }
  .social-feed-iframe { height: 260px; }
  .ig-iframe, .fb-iframe { min-height: 260px; }
  .social-embed-container { min-height: 260px; }
  .social-feed-header { flex-direction: column; gap: 8px; }
  .social-feed-tools {
    width: 100%; flex-direction: row; justify-content: space-between; align-items: center;
  }
  .journey-timeline::before { left: 15px; }
  .journey-item.left, .journey-item.right { padding-left: 40px; }
  .journey-icon { width: 36px !important; height: 36px !important; font-size: 0.8rem !important; }
  .floating-text-button { font-size: 0; padding: 10px; border-radius: 50%; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center; }
  .floating-text-button i { font-size: 1rem; margin: 0 !important; }
  .certificate-landscape { padding: 20px; }
}

/* ── Floating Chat Popup ── */
.chat-popup-overlay {
  display: none; position: fixed; bottom: 90px; right: 84px;
  width: 340px; max-height: 420px; z-index: 10000;
  background: white; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  flex-direction: column; overflow: hidden;
  animation: chatSlideUp 0.35s ease-out;
}
.chat-popup-overlay.active { display: flex; }
@keyframes chatSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 576px) {
  .chat-popup-overlay {
    right: 10px;
    left: 10px;
    width: auto;
    bottom: 85px;
  }
}
.chat-popup-header {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; padding: 14px 18px; display: flex;
  align-items: center; justify-content: space-between;
}
.chat-popup-header h6 { margin: 0; font-weight: 700; font-size: 0.9rem; }
.chat-popup-close {
  background: none; border: none; color: white;
  font-size: 1.2rem; cursor: pointer; opacity: 0.8;
  transition: var(--transition);
}
.chat-popup-close:hover { opacity: 1; transform: scale(1.2); }
.chat-popup-body {
  flex: 1; padding: 16px; overflow-y: auto;
  min-height: 200px; max-height: 280px;
  background: #f8fafc;
}
.chat-bubble {
  padding: 10px 14px; border-radius: 16px;
  font-size: 0.85rem; max-width: 85%; margin-bottom: 10px;
  line-height: 1.5; animation: fadeInUp 0.3s ease;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-bubble.bot {
  background: white; color: #334155;
  border: 1px solid rgba(0,0,0,0.06); border-bottom-left-radius: 4px;
}
.chat-bubble.user {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; margin-left: auto; border-bottom-right-radius: 4px;
}
.chat-popup-footer {
  padding: 12px; border-top: 1px solid rgba(0,0,0,0.06);
  display: flex; gap: 8px; background: white;
}
.chat-popup-footer input {
  flex: 1; border: 1.5px solid #e5e7eb; border-radius: 20px;
  padding: 8px 16px; font-size: 0.85rem; outline: none;
  transition: border-color 0.2s;
}
.chat-popup-footer input:focus { border-color: var(--brand-1); }
.chat-popup-footer button {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: white; border: none; border-radius: 50%;
  width: 36px; height: 36px; display: flex;
  align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); flex-shrink: 0;
}
.chat-popup-footer button:hover { transform: scale(1.1); }

/* ── Admin Panel Enhanced Styles ── */
.admin-datetime-badge {
  background: rgba(13,110,253,0.08); padding: 4px 12px;
  border-radius: 20px; font-size: 0.75rem; color: var(--brand-1);
  font-weight: 600; white-space: nowrap;
}
.admin-welcome-text {
  font-size: 0.85rem; color: #64748b; font-weight: 500;
}
.admin-welcome-text strong {
  color: #1e293b; font-weight: 700;
}

/* ── Print Styles ── */
@media print {
  .contact-info-bar, .top-datetime, .main-navbar,
  .floating-text-button, .floating-chat-btn, #backToTopBtn,
  .chat-popup-overlay, .social-hub, footer { display: none !important; }
  body { padding-top: 0 !important; }
  main { padding: 0 !important; }
  .certificate-landscape { border: 3px solid #333; page-break-inside: avoid; }
}

/* ══════════════════════════════════════
   CREATIVE SERVICE CARDS v5.0
   ══════════════════════════════════════ */
.service-card-creative {
  border-radius: 16px;
  border: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25,0.8,0.25,1);
  position: relative;
}
.service-card-creative:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12) !important;
}
.service-card-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}
.service-card-img-wrap img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}
.service-card-creative:hover .service-card-img-wrap img {
  transform: scale(1.08);
}
.service-card-gradient-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height 0.3s ease;
}
.service-card-creative:hover .service-card-gradient-border {
  height: 6px;
}
/* Animated dotted border effect */
.service-card-creative::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 18px;
  border: 2px dashed transparent;
  transition: all 0.4s ease;
  z-index: -1;
}
.service-card-creative:hover::before {
  border-color: rgba(13,110,253,0.3);
  animation: rotateBorder 4s linear infinite;
}
@keyframes rotateBorder {
  0% { border-color: rgba(13,110,253,0.3); }
  25% { border-color: rgba(102,16,242,0.3); }
  50% { border-color: rgba(240,83,110,0.3); }
  75% { border-color: rgba(79,172,254,0.3); }
  100% { border-color: rgba(13,110,253,0.3); }
}

/* ══════════════════════════════════════
   CONTACT QUICK CARDS
   ══════════════════════════════════════ */
.contact-quick-card {
  border-radius: 14px !important;
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-quick-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1) !important;
}
.contact-quick-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(167,139,250,0.4);
  background: radial-gradient(circle at 30% 25%, rgba(255,255,255,0.34), rgba(99,102,241,0.16) 42%, rgba(255,255,255,0.08) 100%);
  box-shadow: 0 8px 18px rgba(15,23,42,0.18);
  animation: contactNeonFloat 2.2s ease-in-out infinite;
}
.contact-quick-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(from 120deg, rgba(139,92,246,0.14), rgba(99,102,241,0.56), rgba(139,92,246,0.14));
  z-index: -2;
  animation: contactHaloRotate 2.9s linear infinite;
}
.contact-quick-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(167,139,250,0.62);
  opacity: 0;
  transform: scale(0.9);
  z-index: -1;
  animation: contactNeonPulse 2.2s ease-out infinite;
}

@keyframes contactNeonFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  25% { transform: translateY(-2px) scale(1.03); }
  50% { transform: translateY(-4px) scale(1.06); }
  75% { transform: translateY(-1px) scale(1.02); }
}
@keyframes contactHaloRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes contactNeonPulse {
  0% { opacity: 0.72; transform: scale(0.9); }
  65% { opacity: 0.14; transform: scale(1.28); }
  100% { opacity: 0; transform: scale(1.36); }
}


/* ══════════════════════════════════════
   GALLERY SCROLL ITEMS
   ══════════════════════════════════════ */
.gallery-album-scroll {
  max-height: 80vh;
  overflow-y: auto;
  padding-right: 4px;
  scroll-behavior: smooth;
}
.gallery-album-scroll::-webkit-scrollbar { width: 6px; }
.gallery-album-scroll::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.gallery-album-scroll::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 10px; }
.gallery-album-scroll::-webkit-scrollbar-thumb:hover { background: #999; }
.gallery-scroll-item {
  transition: all 0.3s ease;
  cursor: pointer;
}
.gallery-scroll-item:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  border-radius: 12px;
}

/* ══════════════════════════════════════
   SOCIAL ICON NO-UNDERLINE FIX
   ══════════════════════════════════════ */
.top-social-icons a,
.social-icons a,
.social-btn,
.contact-social-links a {
  text-decoration: none !important;
}

/* ══════════════════════════════════════
   ANNOUNCEMENT ENHANCEMENTS
   ══════════════════════════════════════ */
.announcement-v-item .ann-link {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  margin-left: 6px;
  white-space: nowrap;
}
.ann-link { background: rgba(13,110,253,0.1); color: #0d6efd; }
.ann-link:hover { background: #0d6efd; color: white; }

/* ══════════════════════════════════════
   RESPONSIVE UPDATES
   ══════════════════════════════════════ */
@media (max-width: 576px) {
  .contact-quick-card { padding: 12px !important; }
  .contact-quick-icon { width: 40px; height: 40px; font-size: 1rem; }
  .service-card-creative .card-title { font-size: 1rem; }
  .gallery-album-scroll { max-height: none; }
}

/* Gallery Albums Redesign */
.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.gallery-toolbar-tabs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 16px;
}
.gallery-toolbar-tabs span {
  font-weight: 600;
  color: #334155;
  min-width: 76px;
}
.gallery-search-input {
  max-width: 520px;
  border-radius: 12px;
  border: 1px solid #dbe3ee;
  background: #f8fafc;
  padding: 10px 16px;
}
.gallery-event-card {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce5ef;
  box-shadow: 0 10px 24px rgba(15,23,42,0.08);
  transition: all .25s ease;
}
.gallery-event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 34px rgba(30,64,175,0.16);
}
.gallery-event-cover {
  border-bottom: 1px solid #e2e8f0;
}
.gallery-event-cover img {
  height: 230px;
  object-fit: cover;
}
.gallery-event-info-wrap {
  display: flex;
  gap: 12px;
  padding: 14px 14px 10px;
}
.gallery-event-datebox {
  flex: 0 0 78px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
  background: #f8fafc;
}
.gallery-event-datebox .year {
  display: block;
  background: #064e3b;
  color: #ffffff;
  font-weight: 800;
  padding: 4px 0;
}
.gallery-event-datebox .day {
  display: block;
  color: #ca8a04;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 2px;
}
.gallery-event-datebox .mon {
  display: block;
  color: #1e3a8a;
  font-size: 0.95rem;
  font-weight: 700;
  padding-bottom: 4px;
}
.gallery-event-main h5 {
  color: #052e16;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.gallery-event-meta {
  border-top: 1px solid #e2e8f0;
  padding-top: 8px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.74rem;
  color: #334155;
}
.gallery-event-action {
  padding: 8px 14px 14px;
}
.gallery-event-action .gallery-view-more {
  display: block;
  width: 100%;
  text-align: center;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 8px 10px;
  color: #0f172a;
  font-weight: 700;
}
.gallery-event-action .gallery-view-more:hover {
  background: #0d6efd;
  color: #ffffff;
  border-color: #0d6efd;
}
@media (max-width: 768px) {
  .gallery-toolbar { gap: 10px; }
  .gallery-toolbar-tabs { width: 100%; justify-content: space-between; }
  .gallery-search-input { max-width: 100%; width: 100%; }
  .gallery-event-cover img { height: 210px; }
}
@media (max-width: 576px) {
  .gallery-toolbar-tabs span { min-width: auto; font-size: 0.86rem; }
  .gallery-event-info-wrap { flex-direction: column; }
  .gallery-event-datebox { width: 92px; }
}

/* Team Cards Redesign (Reference Style) */
.team-member-card,
.support-card {
  background: linear-gradient(180deg, #eef6ff 0%, #f8fcff 56%, #ffffff 100%);
  border: 1px solid rgba(96,165,250,0.24);
  border-radius: 24px;
  box-shadow: 0 16px 42px rgba(37,99,235,0.12);
}
.team-member-card::before,
.support-card::before {
  height: 0 !important;
  background: none !important;
}
.team-member-card::after,
.support-card::after {
  content: '';
  position: absolute;
  inset: -28% -20% auto -20%;
  height: 65%;
  background:
    radial-gradient(circle at 50% 58%, rgba(59,130,246,0.22) 0%, rgba(59,130,246,0.04) 56%, rgba(59,130,246,0) 74%),
    radial-gradient(circle at 20% 24%, rgba(125,211,252,0.3) 0%, rgba(125,211,252,0) 48%),
    radial-gradient(circle at 80% 18%, rgba(147,197,253,0.26) 0%, rgba(147,197,253,0) 46%);
  pointer-events: none;
}
.team-member-card .team-avatar-wrap,
.support-card .team-avatar-wrap {
  width: 228px;
  height: 228px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  background: linear-gradient(180deg, #d9ebff 0%, #ebf5ff 100%);
  border: 1px solid rgba(96,165,250,0.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.82), 0 14px 30px rgba(37,99,235,0.14);
  position: relative;
}
.team-member-card .team-avatar-wrap::before,
.support-card .team-avatar-wrap::before {
  content: '';
  position: absolute;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255,255,255,0.96), rgba(186,220,255,0.85) 58%, rgba(147,197,253,0.42) 100%);
  z-index: 0;
  animation: teamCorePulse 3.4s ease-in-out infinite;
}
.team-member-card .team-avatar,
.support-card .support-avatar,
.support-card .support-avatar-placeholder {
  width: 150px !important;
  height: 150px !important;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.96);
  box-shadow: 0 12px 24px rgba(29,78,216,0.24);
  position: relative;
  z-index: 2;
}
.team-member-card .team-dotted-circle,
.support-card .team-dotted-circle {
  position: absolute;
  inset: 16px;
  width: auto;
  height: auto;
  border-radius: 50%;
  border: 1.8px dashed rgba(59,130,246,0.34);
  box-shadow: none;
  animation: teamHaloSpin 14s linear infinite;
  z-index: 1;
}
.team-member-card .team-dotted-circle::before,
.support-card .team-dotted-circle::before {
  content: '';
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1.4px dashed rgba(59,130,246,0.24);
  animation: teamHaloSpinReverse 18s linear infinite;
}
.team-member-card .team-dotted-circle::after,
.support-card .team-dotted-circle::after {
  display: none;
}
.team-orbit-icons {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.team-orbit-icon {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3b82f6, #1d4ed8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  box-shadow: 0 8px 16px rgba(29,78,216,0.35), inset 0 1px 0 rgba(255,255,255,0.35);
  animation: teamIconFloat 2.8s ease-in-out infinite;
}
.team-orbit-icon:nth-child(1) { top: 10px; left: 18px; animation-delay: .05s; }
.team-orbit-icon:nth-child(2) { top: -6px; left: calc(50% - 20px); animation-delay: .2s; }
.team-orbit-icon:nth-child(3) { top: 20px; right: 16px; animation-delay: .35s; }
.team-orbit-icon:nth-child(4) { bottom: 18px; right: 20px; animation-delay: .5s; }
.team-orbit-icon:nth-child(5) { bottom: 10px; left: calc(50% - 20px); animation-delay: .65s; }
.team-orbit-icon:nth-child(6) { bottom: 22px; left: 14px; animation-delay: .8s; }
.support-orbits .team-orbit-icon {
  width: 34px;
  height: 34px;
  font-size: 0.82rem;
}
.support-orbits .team-orbit-icon:nth-child(1) { top: 14px; left: 22px; }
.support-orbits .team-orbit-icon:nth-child(2) { top: 10px; right: 22px; }
.support-orbits .team-orbit-icon:nth-child(3) { bottom: 16px; right: 20px; }
.support-orbits .team-orbit-icon:nth-child(4) { bottom: 16px; left: 20px; }
.team-signal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.team-signal-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  line-height: 1.35;
  color: #1e293b;
  margin-bottom: 7px;
}
.team-signal-list li i {
  color: #2563eb;
  margin-top: 2px;
}
.support-signal-list li {
  font-size: 0.8rem;
  margin-bottom: 6px;
}
.team-member-card .team-signal-list {
  text-align: center;
}
.team-member-card .team-signal-list li {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.team-member-card .btn,
.support-card .btn {
  border-radius: 999px;
  font-weight: 700;
  padding-left: 14px;
  padding-right: 14px;
}
.team-member-card:hover,
.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 26px 50px rgba(30,64,175,0.2);
  border-color: rgba(59,130,246,0.38);
}
@keyframes teamCorePulse {
  0%, 100% { transform: scale(1); opacity: 0.92; }
  50% { transform: scale(1.05); opacity: 1; }
}
@keyframes teamHaloSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes teamHaloSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}
@keyframes teamIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (max-width: 992px) {
  .team-member-card .team-avatar-wrap,
  .support-card .team-avatar-wrap {
    width: 208px;
    height: 208px;
  }
  .team-member-card .team-avatar,
  .support-card .support-avatar,
  .support-card .support-avatar-placeholder {
    width: 136px !important;
    height: 136px !important;
  }
}
@media (max-width: 576px) {
  .team-member-card .team-avatar-wrap,
  .support-card .team-avatar-wrap {
    width: 188px;
    height: 188px;
  }
  .team-member-card .team-avatar,
  .support-card .support-avatar,
  .support-card .support-avatar-placeholder {
    width: 122px !important;
    height: 122px !important;
  }
  .team-orbit-icon {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }
  .team-signal-list li {
    font-size: 0.78rem;
  }
}

/* Phase 17 UI foundation */
.site-shell {
  min-height: 100%;
}
.ui-surface {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(203, 213, 225, 0.65);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.ui-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.ui-section-head h2,
.ui-section-head h3,
.ui-section-head h4 {
  margin: 0;
  color: #0f172a;
  font-weight: 800;
}
.ui-section-head p {
  margin: 6px 0 0;
  color: #64748b;
}
.ui-inline-alert {
  border: 1px solid rgba(191, 219, 254, 0.9);
  border-radius: 18px;
  background: linear-gradient(180deg, #eff6ff, #f8fbff);
  color: #1e3a8a;
  padding: 14px 16px;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.08);
}
.ui-inline-alert.is-success {
  background: linear-gradient(180deg, #ecfdf5, #f7fff9);
  border-color: rgba(167, 243, 208, 0.9);
  color: #166534;
}
.ui-inline-alert.is-warning {
  background: linear-gradient(180deg, #fffbeb, #fffef7);
  border-color: rgba(253, 230, 138, 0.9);
  color: #92400e;
}
.ui-inline-alert.is-danger {
  background: linear-gradient(180deg, #fef2f2, #fff8f8);
  border-color: rgba(254, 202, 202, 0.95);
  color: #991b1b;
}
.ui-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #eef2ff;
  color: #3730a3;
  font-size: 0.78rem;
  font-weight: 700;
}
.ui-badge-pill.is-success {
  background: #dcfce7;
  color: #166534;
}
.ui-badge-pill.is-warning {
  background: #fef3c7;
  color: #92400e;
}
.ui-badge-pill.is-danger {
  background: #fee2e2;
  color: #991b1b;
}
.ui-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(226, 232, 240, 0.9);
}
.ui-filter-bar .form-control,
.ui-filter-bar .form-select,
.ui-filter-bar .btn {
  min-height: 46px;
  border-radius: 14px;
}
.ui-data-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  background: #fff;
}
.ui-data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.ui-data-table thead th {
  background: #f8fafc;
  color: #475569;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 16px;
  border-bottom: 1px solid #e2e8f0;
}
.ui-data-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #eef2f7;
  vertical-align: middle;
}
.ui-data-table tbody tr:last-child td {
  border-bottom: none;
}
.ui-empty-state {
  text-align: center;
  padding: 32px 22px;
  border-radius: 22px;
  border: 1px dashed rgba(148, 163, 184, 0.6);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  color: #64748b;
}
.ui-empty-state i {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #eef2ff;
  color: #4f46e5;
  margin-bottom: 14px;
}
.ui-tablist {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px;
  background: rgba(241, 245, 249, 0.95);
  border-radius: 999px;
}
.ui-tab {
  border: none;
  border-radius: 999px;
  padding: 10px 16px;
  background: transparent;
  color: #334155;
  font-weight: 700;
}
.ui-tab[aria-selected="true"] {
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  color: #fff;
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.18);
}
.ui-modal-shell .modal-content {
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
}
.ui-modal-shell .modal-header,
.ui-modal-shell .modal-footer {
  border-color: #eef2f7;
}
.ui-live-region {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
@media (max-width: 768px) {
  .ui-section-head {
    flex-direction: column;
  }
  .ui-filter-bar {
    padding: 14px;
  }
  .ui-tablist {
    width: 100%;
    border-radius: 22px;
  }
  .ui-tab {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
}

/* Phase 21 public discovery/conversion layer */
.trust-block-section {
  background:
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.09), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}
.trust-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.trust-stat-card {
  position: relative;
  padding: 22px 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid rgba(226, 232, 240, 0.9);
  overflow: hidden;
}
.trust-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
}
.trust-stat-card strong {
  display: inline-block;
  font-size: 2rem;
  color: #0f172a;
}
.trust-stat-suffix {
  font-size: 1.25rem;
  color: #0d6efd;
  font-weight: 800;
  margin-left: 2px;
}
.trust-stat-card p {
  margin: 10px 0 0;
  color: #475569;
  font-weight: 600;
}
.trust-proof-panel {
  height: 100%;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #fff;
}
.trust-proof-panel h3 {
  font-weight: 800;
  margin-bottom: 18px;
}
.trust-proof-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.trust-proof-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.85);
}
.trust-proof-list i {
  color: #7dd3fc;
  margin-top: 4px;
}
.trust-quote {
  position: relative;
  padding: 18px 18px 16px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.trust-quote .quote-mark {
  position: absolute;
  top: 10px;
  left: 12px;
  font-size: 2.2rem;
  color: rgba(125, 211, 252, 0.4);
}
.trust-quote p {
  margin: 0 0 8px;
  color: #e2e8f0;
}
.process-story-section {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.process-story-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.process-story-card,
.process-card {
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  cursor: pointer;
}
.process-story-card {
  padding: 24px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}
.process-story-card.is-active,
.process-card.is-active {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(13, 110, 253, 0.16);
  border-color: rgba(13, 110, 253, 0.35);
}
.process-story-number {
  font-size: 0.9rem;
  font-weight: 800;
  color: #0d6efd;
  margin-bottom: 12px;
}
.process-story-icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe, #eef2ff);
  color: #1d4ed8;
  font-size: 1.25rem;
  margin-bottom: 16px;
}
.process-story-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}
.process-story-card p {
  color: #64748b;
  margin-bottom: 14px;
}
.process-story-time,
.process-time-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 0.78rem;
  font-weight: 700;
}
.service-finder-shell {
  margin-bottom: -24px;
}
.service-finder-toolbar {
  display: grid;
  gap: 14px;
}
.service-finder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-chip {
  border: 1px solid #dbe3ef;
  background: #fff;
  color: #334155;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 700;
}
.service-chip.is-active {
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  border-color: transparent;
  color: #fff;
}
.faq-group-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
}
.mobile-cta-strip {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1055;
  display: flex;
  gap: 10px;
  padding: 10px;
  border-radius: 22px;
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(12px);
}
.mobile-cta-btn {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-height: 54px;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
}
.mobile-cta-btn.is-call { background: linear-gradient(135deg, #1d4ed8, #2563eb); }
.mobile-cta-btn.is-whatsapp { background: linear-gradient(135deg, #15803d, #22c55e); }
.mobile-cta-btn.is-book { background: linear-gradient(135deg, #c2410c, #fb923c); }
body.site-shell {
  padding-bottom: 98px;
}
@media (min-width: 992px) {
  body.site-shell {
    padding-bottom: 0;
  }
}
@media (max-width: 991px) {
  .mobile-cta-strip { display: none !important; }
}

/* MSME logo badge */
.msme-logo-footer {
  height: 150px;
  width: auto;
  background: #ffffff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.26);
  margin-right: 14px;
}
@media (max-width: 991.98px) {
  .trust-stat-grid,
  .process-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .trust-stat-grid,
  .process-story-grid {
    grid-template-columns: 1fr;
  }
  .mobile-cta-btn {
    min-height: 50px;
    font-size: 0.74rem;
  }
}

/* Phase 22 forms, status, and feedback */
.contact-form-progress-wrap {
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.contact-form-progress {
  width: 10px;
  flex: 1;
  min-height: 220px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}
.contact-form-progress-bar {
  width: 100%;
  height: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, #0ea5e9, #22c55e);
  transition: height 0.25s ease;
}
.contact-form-progress-copy {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-error-text {
  min-height: 18px;
  margin-top: 6px;
  color: #dc2626;
  font-size: 0.84rem;
}
.contact-form-box .form-control.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}
.contact-form-box .form-control.is-valid {
  border-color: #16a34a;
}
.contact-submit-meta {
  margin-top: 4px;
}
.contact-form-recovery {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 767.98px) {
  .contact-form-box {
    padding-left: 40px;
  }
  .contact-form-progress-wrap {
    left: 14px;
    top: 30px;
    bottom: 30px;
    width: 18px;
  }
  .contact-form-progress {
    width: 6px;
    min-height: 160px;
  }
  .contact-form-progress-copy {
    font-size: 0.72rem;
    min-height: 110px;
  }
}
.public-status-strip {
  padding: 18px 0 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.04), rgba(15, 23, 42, 0));
  display: block;
}
.public-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 22px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}
.public-status-card.is-operational {
  border-color: rgba(34, 197, 94, 0.24);
}
.public-status-card.is-degraded,
.public-status-card.is-unknown {
  border-color: rgba(245, 158, 11, 0.28);
}
.public-status-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 6px;
}
.public-status-card h3 {
  margin: 0 0 6px;
  font-size: 1.15rem;
  color: #0f172a;
}
.public-status-card p {
  margin: 0;
  color: #475569;
}
.public-status-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  color: #334155;
  white-space: nowrap;
}
.public-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.12);
}
.public-status-card.is-degraded .public-status-dot,
.public-status-card.is-unknown .public-status-dot {
  background: #f59e0b;
  box-shadow: 0 0 0 8px rgba(245, 158, 11, 0.12);
}
.feedback-widget-trigger {
  position: fixed;
  left: 20px;
  bottom: 16px;
  z-index: 97;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #1d4ed8);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
}
.feedback-widget-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}
.feedback-widget-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.feedback-widget-card {
  position: relative;
  width: min(440px, calc(100vw - 24px));
  margin: 8vh auto 0;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.3);
}
.feedback-widget-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #e2e8f0;
  color: #0f172a;
}
.feedback-widget-copy h3 {
  margin: 14px 0 6px;
}
.contact-thankyou-modal-body {
  position: relative;
  background:
    radial-gradient(circle at top left, rgba(34, 197, 94, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.14), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.contact-thankyou-badge {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 22px 45px rgba(34, 197, 94, 0.28);
  animation: contactThankyouPulse 1.8s ease-out infinite;
}
.contact-thankyou-spark {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  opacity: 0.8;
  animation: contactThankyouFloat 2.8s ease-in-out infinite;
}
.contact-thankyou-spark-a {
  top: 34px;
  left: 52px;
  background: #22c55e;
}
.contact-thankyou-spark-b {
  top: 54px;
  right: 58px;
  background: #3b82f6;
  animation-delay: .4s;
}
.contact-thankyou-spark-c {
  top: 96px;
  right: 96px;
  background: #f59e0b;
  animation-delay: .8s;
}
@keyframes contactThankyouPulse {
  0% { transform: scale(0.96); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.26); }
  60% { transform: scale(1); box-shadow: 0 0 0 16px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.98); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
@keyframes contactThankyouFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.45; }
  50% { transform: translateY(-8px) scale(1.15); opacity: 0.95; }
}
.feedback-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 8px;
  margin: 18px 0;
}
.feedback-star {
  position: relative;
}
.feedback-star input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.feedback-star span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 700;
  cursor: pointer;
}
.feedback-star input:checked + span,
.feedback-star span:hover {
  background: #facc15;
  color: #111827;
}
@media (max-width: 991px) {
  .public-status-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .public-status-meta {
    align-items: flex-start;
    white-space: normal;
  }
}
@media (max-width: 767px) {
  .feedback-widget-trigger {
    left: 12px;
    bottom: 12px;
  }
  .contact-thankyou-spark-a { left: 26px; }
  .contact-thankyou-spark-b { right: 32px; }
  .contact-thankyou-spark-c { right: 58px; }
  .contact-form-recovery {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* MSME badge final override - Corrected to Theme Color */
.msme-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 18px !important;
  background: rgba(13, 110, 253, 0.12) !important;
  border: 1px solid rgba(13, 110, 253, 0.25) !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 26px rgba(0,0,0,0.18) !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  backdrop-filter: blur(8px);
}
.msme-badge img.msme-logo-footer {
  height: 60px !important;
  width: auto !important;
  background: #ffffff !important;
  padding: 8px 12px !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15) !important;
  object-fit: contain !important;
}

/* ── Social Media Feed Section ── */
.social-feed-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
}
.social-feed-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,110,253,0.1), transparent);
}
.social-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(13,110,253,0.08);
}
.social-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}
.social-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 12px;
}
.social-card-title {
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0;
  font-size: 1.05rem;
}
.social-card-body {
  flex-grow: 1;
  overflow: hidden;
  border-radius: 12px;
  background: #f8fafc;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}
.social-card-body iframe {
  width: 100% !important;
  height: 450px !important;
  border: none;
  flex-grow: 1;
}

/* Specific Brand Colors */
.icon-x { background: #000000; color: #ffffff; }
.icon-youtube { background: #ff0000; color: #ffffff; }
.icon-facebook { background: #1877f2; color: #ffffff; }

.social-eyebrow {
  display: block;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #4338ca;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.social-heading {
  text-align: center;
  font-weight: 800;
  color: #0f172a;
  font-size: 2.2rem;
  margin-bottom: 50px;
}

