/* ─────────────────────────────────────────
   Design Tokens
───────────────────────────────────────── */
:root {
  --primary:       #0a75ad;
  --primary-dark:  #085d8a;
  --primary-light: #e8f4fb;
  --text-dark:     #1a1a2e;
  --text-body:     #4f5a71;
  --text-light:    #8a94a6;
  --bg-light:      #f8fafc;
  --border:        #e2e8f0;
  --white:         #ffffff;

  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,.06);
  --shadow-md:  0 4px 20px rgba(10,117,173,.10);
  --shadow-lg:  0 8px 40px rgba(10,117,173,.16);

  --transition: .3s ease;
  --section-py: 88px;
}

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

html, body { overflow-x: hidden; }

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Rajdhani", sans-serif;
  color: var(--text-dark);
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }
img { max-width: 100%; height: auto; display: block; transition: none; }
a { transition: color var(--transition); }
section { padding: var(--section-py) 0; }

/* ─────────────────────────────────────────
   Buttons
───────────────────────────────────────── */
.btn {
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active, .btn-primary:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
}

.btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}

.btn i { font-size: 13px; }

/* ─────────────────────────────────────────
   Section Typography
───────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 14px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   Brand Logo (footer text version)
───────────────────────────────────────── */
.brand-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  font-family: "Rajdhani", sans-serif;
  font-weight: 800;
  gap: 4px;
}
.brand-impro {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.3px;
  display: block;
}
.brand-blue { color: #2A3990; }
.brand-red  { color: #BF2227; }
.navbar-icon { height: 42px; width: auto; display: block; flex-shrink: 0; }
.navbar .brand-sys { color: #2A3990; }
.brand-sys {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  letter-spacing: 3.5px;
  text-transform: uppercase;
  display: block;
}

/* ─────────────────────────────────────────
   Navbar
───────────────────────────────────────── */
.navbar, .header-bg {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
  padding: 14px 0;
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.responsive-logo {
  height: 44px;
  width: auto;
  display: block;
}
.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark) !important;
  padding: 7px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background: var(--primary-light);
}
.head-btn .btn { padding: 10px 22px; font-size: 13px; }
.navbar-toggler { border: none; padding: 6px; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-expand-lg .navbar-collapse { justify-content: center; }

/* ─────────────────────────────────────────
   Hero
───────────────────────────────────────── */
.hero-sec {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fb 40%, var(--white) 100%);
  position: relative;
  overflow: hidden; /* contain decorative blobs and AOS fade-right/left */
}
.hero-sec::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(10,117,173,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-sec::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(10,117,173,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
  letter-spacing: .6px;
  text-transform: uppercase;
}

.hero-title {
  font-size: 58px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.08;
  margin-bottom: 22px;
}
.hero-title span { color: var(--primary); }

.hero-desc {
  font-size: 18px;
  color: var(--text-body);
  margin-bottom: 38px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrap img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: contain;
  transition: var(--transition);
}
.hero-image-wrap img:hover { transform: translateY(-4px); }

.hero-video-pill {
  position: absolute;
  bottom: -20px;
  left: -12px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
  white-space: nowrap;
  border: 1px solid var(--border);
  cursor: pointer;
}
.hero-video-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--primary); }
.hero-video-pill .play-dot {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────
   Stats Bar
───────────────────────────────────────── */
.stats-bar {
  background: var(--text-dark);
  padding: 36px 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.stats-grid .stat-item {
  flex: 1;
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.stats-grid .stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 44px;
  background: rgba(255,255,255,.12);
}
.stat-number {
  font-family: "Rajdhani", sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
  white-space: nowrap;
}
.stat-number em {
  font-style: normal;
  color: var(--primary);
  font-size: 32px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   Shared Card
───────────────────────────────────────── */
.ips-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  transition: var(--transition);
}
.ips-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.ips-card .card-icon {
  width: 54px; height: 54px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.ips-card .card-icon img { width: 28px; height: 28px; display: block; }
.ips-card h5 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.ips-card p  { font-size: 15px; color: var(--text-body); line-height: 1.65; }

/* ─────────────────────────────────────────
   Why Us
───────────────────────────────────────── */
.whyus-sec { background: var(--bg-light); }

/* ─────────────────────────────────────────
   Services
───────────────────────────────────────── */
.services-sec { background: var(--white); }

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 100%;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card .svc-icon {
  width: 50px; height: 50px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card .svc-icon img { width: 26px; display: block; }
.service-card h4 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.service-card p  { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* ─────────────────────────────────────────
   What We Offer
───────────────────────────────────────── */
.offer-sec { background: var(--bg-light); }

.offer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 100%;
  position: relative;
  padding-top: 44px;
  transition: var(--transition);
  overflow: visible;
}
.offer-card:hover {
  border-color: #2A3990;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Circle image — top-left overlay */
.offer-img-wrap {
  position: absolute;
  top: -28px;
  left: 24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
  background: var(--bg-light);
  flex-shrink: 0;
}
.offer-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offer-body { padding: 8px 24px 28px; }
.offer-body h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.offer-body p  { font-size: 15px; color: var(--text-body); line-height: 1.7; }

/* ─────────────────────────────────────────
   Video Section
───────────────────────────────────────── */
.video-sec { background: var(--text-dark); }

.video-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
}
.video-wrap > img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,20,40,.35);
  transition: var(--transition);
}
.video-wrap:hover .video-overlay { background: rgba(10,20,40,.50); }

.play-circle {
  width: 80px; height: 80px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 0 0 18px rgba(10,117,173,.22);
  transition: var(--transition);
}
.video-wrap:hover .play-circle {
  transform: scale(1.1);
  box-shadow: 0 0 0 24px rgba(10,117,173,.28);
}

/* ─────────────────────────────────────────
   Benefits
───────────────────────────────────────── */
.benefits-sec { background: var(--bg-light); }

.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  height: 100%;
  position: relative;
  padding-top: 44px;
  transition: var(--transition);
  overflow: visible;
}
.benefit-card:hover {
  border-color: #2A3990;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* Circle image — top-left overlay */
.benefit-img-wrap {
  position: absolute;
  top: -28px;
  left: 24px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
  background: var(--bg-light);
  flex-shrink: 0;
}
.benefit-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.benefit-body { padding: 8px 24px 28px; }
.benefit-body h4 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.benefit-body p  { font-size: 14px; color: var(--text-body); line-height: 1.65; }

/* ─────────────────────────────────────────
   Testimonials
───────────────────────────────────────── */
.testimonial-sec { background: var(--bg-light); }

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 1px solid var(--border);
}
.testimonial-card .quote-mark {
  font-size: 72px;
  color: var(--primary);
  line-height: .8;
  margin-bottom: 12px;
  font-family: Georgia, serif;
  display: block;
  opacity: .6;
}
.testimonial-card blockquote {
  margin: 0 0 28px;
  padding: 0;
  border: none;
}
.testimonial-card blockquote p {
  font-size: 18px;
  color: var(--text-body);
  font-style: italic;
  line-height: 1.8;
}
.testimonial-card .t-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--text-dark);
  font-family: "Rajdhani", sans-serif;
}
.testimonial-card .t-title {
  font-size: 13px;
  color: var(--text-light);
  margin-top: 4px;
}

.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  opacity: 1;
  transition: var(--transition);
}
.carousel-indicators .active {
  background: var(--primary);
  transform: scale(1.3);
}

/* ─────────────────────────────────────────
   Tech Badges
───────────────────────────────────────── */
.badges-sec { background: var(--white); padding: 64px 0; }

.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: var(--transition);
  height: 100%;
}
.badge-item:hover { border-color: var(--primary); background: var(--primary-light); }
.badge-item i { font-size: 22px; color: var(--primary); flex-shrink: 0; width: 24px; text-align: center; }
.badge-item p { font-size: 13px; color: var(--text-body); margin: 0; line-height: 1.45; }
.badge-item strong { color: var(--text-dark); display: block; margin-bottom: 2px; }

/* ─────────────────────────────────────────
   Contact Section
───────────────────────────────────────── */
.contact-sec {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 52px;
  box-shadow: var(--shadow-lg);
}
.contact-card h3 { font-size: 30px; font-weight: 800; margin-bottom: 6px; }
.contact-card .sub-desc { font-size: 15px; color: var(--text-body); margin-bottom: 32px; }

.contact-card .form-control,
.contact-card .form-select {
  height: 52px;
  border-color: var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 0;
  transition: var(--transition);
}
.contact-card textarea.form-control { height: auto; resize: vertical; }
.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,117,173,.12);
}
.contact-card .btn-submit { height: 52px; font-size: 15px; }

/* ─────────────────────────────────────────
   Footer
───────────────────────────────────────── */
.footer-sec {
  background: var(--text-dark);
  padding: 40px 0 0;
  color: rgba(255,255,255,.65);
}

.footer-desc { font-size: 14px; line-height: 1.75; margin-bottom: 24px; color: rgba(255,255,255,.55); }

.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition);
}
.footer-social a:hover { border-color: var(--primary); background: var(--primary); }
.footer-social img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

.footer-heading {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: .5px;
}

.footer-legal-links { margin: 0; padding: 0; }
.footer-legal-links li { margin-bottom: 12px; list-style: none; }
.footer-legal-links a {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: var(--transition);
}
.footer-legal-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: rgba(255,255,255,.6);
}
.footer-contact-item img {
  width: 16px;
  margin-top: 2px;
  filter: brightness(0) invert(0.65);
  flex-shrink: 0;
}
.footer-contact-item a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-item a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  margin-top: 28px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.35); margin: 0; }

.footer-terms a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: var(--transition);
  margin-left: 28px;
}
.footer-terms a:hover { color: var(--white); }
.footer-terms a:first-child { margin-left: 0; }

/* ─────────────────────────────────────────
   Back to Top
───────────────────────────────────────── */
#backToTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: none;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  line-height: 1;
}
#backToTopBtn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ─────────────────────────────────────────
   reCAPTCHA Badge
───────────────────────────────────────── */
.grecaptcha-badge {
  left: 0 !important;
  right: auto !important;
  transform: scale(0.75);
  transform-origin: bottom left;
  opacity: 0.85;
  transition: opacity .3s, transform .3s;
}
.grecaptcha-badge:hover {
  transform: scale(0.85);
  opacity: 1;
}

/* ─────────────────────────────────────────
   Cookie Banner
───────────────────────────────────────── */
#cookieBanner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: rgba(26,26,46,.95);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 16px 24px;
  z-index: 9999;
  display: none;
}
#cookieBanner p { font-size: 14px; margin: 0; }
#cookieBanner a { color: rgba(255,255,255,.8); }
#acceptCookies {
  background: var(--primary);
  border: none;
  color: var(--white);
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
#acceptCookies:hover { background: var(--primary-dark); }

/* ─────────────────────────────────────────
   Modal
───────────────────────────────────────── */
.modal-dialog { max-width: 820px; }
.modal-body { padding: 0; }
.modal-content { border-radius: var(--radius-lg); overflow: hidden; border: none; }
.modal-video-close { padding: 16px; text-align: center; background: #f8f8f8; }

/* ─────────────────────────────────────────
   Offcanvas (Terms / Privacy)
───────────────────────────────────────── */
.offcanvas-header { border-bottom: 1px solid var(--border); padding: 20px 24px; }
.offcanvas-header h2 { font-size: 22px; font-weight: 800; margin: 0; }
.offcanvas-body { padding: 24px; }
.offcanvas-body h3 { font-size: 17px; font-weight: 700; margin: 28px 0 8px; color: var(--text-dark); }
.offcanvas-body p  { font-size: 14px; color: var(--text-body); margin-bottom: 12px; line-height: 1.7; }
.offcanvas-body ul li { font-size: 14px; color: var(--text-body); margin: 6px 0; }
.offcanvas-body .text-bold { font-weight: 600; color: var(--text-dark); }
.offcanvas-body .inform { font-size: 16px; font-weight: 700; color: var(--text-dark); }

/* ─────────────────────────────────────────
   Terms / Privacy Pages (terms.html, privacy.html)
───────────────────────────────────────── */
.terms-sec { background: var(--bg-light); padding: 80px 0; }
.terms-sec h2 { font-size: 42px; margin-bottom: 48px; text-align: center; }
.terms-sec h3 { font-size: 20px; font-weight: 700; color: var(--text-dark); margin: 32px 0 8px; }
.terms-sec p, .terms-sec li { font-size: 15px; color: var(--text-body); line-height: 1.75; }
.terms-sec ul { margin-bottom: 0; padding-left: 20px; }
.terms-sec ul li { margin: 6px 0; }
.terms-sec .main-contect { padding-left: 0; margin-bottom: 24px; list-style: none; }
.terms-sec .sub-contect { list-style: disc; padding-left: 20px; }
.terms-sec .text-bold { font-weight: 600; color: var(--text-dark); }
.terms-sec .inform { font-size: 18px; font-weight: 700; }
.terms-sec .main-head { font-weight: 700; color: var(--text-dark); }
.terms-sec span { font-size: 15px; color: var(--text-body); }

/* ─────────────────────────────────────────
   Footer — shared across all pages
───────────────────────────────────────── */
.foot-body {
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-body .about-detail img { margin-bottom: 20px; }
.foot-body .about-detail p { color: rgba(255,255,255,.55); font-size: 14px; margin-bottom: 24px; }
.foot-body .social-media a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition);
  border-radius: var(--radius-sm);
}
.foot-body .social-media a:hover { border-color: var(--primary); background: var(--primary); }
.foot-body .social-media img { width: 16px; height: 16px; filter: brightness(0) invert(1); }

.foot-body .links-detail { margin-top: 0; }
.foot-body .links-detail .linktitle h3 {
  font-size: 15px; font-weight: 800;
  color: var(--white);
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.foot-body .menu-detail a {
  text-decoration: none;
  color: rgba(255,255,255,.6);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  transition: var(--transition);
}
.foot-body .menu-detail a:hover { color: var(--white); }
.foot-body .menu-detail li { margin-bottom: 14px; list-style: none; }
.foot-body .menu-detail a img { width: 14px; filter: brightness(0) invert(0.6); }
.foot-body .contact-detail ul { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; padding: 0; list-style: none; }
.foot-body .contact-detail img { width: 15px; margin-top: 2px; filter: brightness(0) invert(0.6); flex-shrink: 0; }
.foot-body .contact-detail .text-black { color: rgba(255,255,255,.6); font-size: 14px; }

.copyright-cont { padding: 20px 0; }
.copyright-cont p { font-size: 13px; color: rgba(255,255,255,.35); margin: 0; }
.copyright-cont .terms-cont { text-align: end; }
.copyright-cont .terms-cont a {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  text-decoration: none;
  margin-left: 20px;
  transition: var(--transition);
}
.copyright-cont .terms-cont a:hover { color: var(--white); }

/* ─────────────────────────────────────────
   Watch Video Page
───────────────────────────────────────── */
.video-cont { border-radius: var(--radius-lg); overflow: hidden; }
.responsive-video { width: 100%; border-radius: var(--radius-lg); }
