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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  color: #16304D;
  background: #ffffff;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6,
.section-title,
.hero-content h2,
.domain-overlay h3,
.gallery-overlay h3,
.team-info h3,
.product-card h3,
.service-card h3,
.feature-card h3,
.footer-title {
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.03em;
}

/* ---------- GENERAL ---------- */
.nav-link {
  color: #16304D;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 999px;
  transition: 0.35s ease;
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(135deg, #0E3A8A, #2C7BE5);
  color: #fff;
  transform: translateY(-2px);
}

.mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: 12px;
  color: #16304D;
  font-weight: 600;
  transition: 0.3s ease;
}

.mobile-link:hover {
  background: #EAF4FF;
  color: #0E3A8A;
}

.mobile-menu-btn {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #EAF4FF, #ffffff);
  color: #0E3A8A;
  border: 1px solid #d7e7ff;
  transition: 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(14,58,138,0.12);
}

.btn-primary,
.btn-outline,
.btn-light,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.35s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #0E3A8A, #2C7BE5);
  color: white;
  padding: 14px 26px;
  box-shadow: 0 15px 35px rgba(14,58,138,0.25);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 50px rgba(14,58,138,0.30);
}

.btn-outline {
  border: 2px solid #2C7BE5;
  color: #0E3A8A;
  padding: 13px 24px;
  background: white;
}

.btn-outline:hover {
  background: #EAF4FF;
  transform: translateY(-3px);
}

.btn-light {
  background: rgba(255,255,255,0.14);
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 14px 26px;
  backdrop-filter: blur(10px);
}

.btn-light:hover {
  background: rgba(255,255,255,0.24);
  transform: translateY(-3px);
}

.big-btn {
  min-width: 210px;
  min-height: 56px;
}

.section-tag {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: #EAF4FF;
  color: #0E3A8A;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: inset 0 0 0 1px rgba(44,123,229,0.12);
}

.center-tag {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 800;
  color: #16304D;
  margin-bottom: 16px;
}

.section-text {
  color: #5b7088;
  line-height: 1.9;
  font-size: 16px;
}

.section-text,
.hero-content p,
.product-card p,
.service-card p,
.feature-card p,
.domain-overlay p,
.gallery-overlay p,
.info-box p,
.footer-links a,
.footer-contact span {
  font-family: 'Manrope', sans-serif;
}

/* ===== HEADER STYLE TEMPLATE ===== */
.top-header {
  background: #ffffff;
  border-bottom: 1px solid #dbeafe;
  position: relative;
  z-index: 60;
}

.top-header-inner {
  display: grid;
  grid-template-columns: 270px 1fr 210px;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
}

.top-infos {
  display: flex;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.top-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #0E3A8A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  animation: softFloat 4s ease-in-out infinite;
}

.top-info-item span {
  display: block;
  font-size: 12px;
  color: #6b7b8f;
  line-height: 1.2;
}

.top-info-item strong {
  display: block;
  font-size: 14px;
  color: #16304D;
  font-weight: 800;
  line-height: 1.2;
}

.template-quote-btn {
  background: linear-gradient(135deg, #0E3A8A, #2C7BE5);
  color: #fff;
  padding: 14px 20px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  box-shadow: 0 14px 35px rgba(14,58,138,0.18);
  transition: 0.35s ease;
}

.template-quote-btn:hover {
  transform: translateY(-3px);
}

.template-navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 55;
  background: transparent;
}

.template-navbar {
  margin-top: -12px;
  background: linear-gradient(135deg, #0E3A8A, #194caa);
  border-radius: 14px;
  padding: 10px 14px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 18px 35px rgba(14,58,138,0.20);
}

@media (min-width: 1024px) {
  .template-navbar {
    display: flex;
  }
}

.template-navbar .nav-link {
  color: #fff;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.template-navbar .nav-link:hover,
.template-navbar .nav-link.active {
  background: rgba(255,255,255,0.14);
  color: #fff;
  transform: translateY(0);
}

.template-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  background: #fff;
}

/* ---------- HERO ---------- */
.hero-section {
  position: relative;
  background: #0E3A8A;
}

.hero-bg-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(245,158,11,0.18), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(44,123,229,0.22), transparent 32%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08), transparent 20%);
  z-index: 0;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -45px;
  height: 95px;
  background: #fff;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  z-index: 3;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active-slide {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 10s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,32,78,0.78) 0%, rgba(7,32,78,0.70) 35%, rgba(7,32,78,0.62) 100%);
}

.hero-content { animation: fadeUp 1s ease; }
.hero-content h2 { font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; }
.hero-badge { display: inline-block; padding: 10px 18px; border-radius: 999px; background: rgba(255,255,255,0.14); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: #fff; font-weight: 700; font-size: 14px; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 20; width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: white; backdrop-filter: blur(10px); transition: 0.35s ease; }
.carousel-btn:hover { background: rgba(245,158,11,0.95); color: white; transform: translateY(-50%) scale(1.06); }
.carousel-dots { position: absolute; bottom: 65px; left: 50%; transform: translateX(-50%); display: flex; gap: 12px; z-index: 20; }
.dot { width: 14px; height: 14px; border-radius: 999px; background: rgba(255,255,255,0.38); border: 0; transition: 0.35s ease; }
.dot.active-dot { width: 36px; background: #F59E0B; }

.hero-floating-icon { position: absolute; z-index: 8; width: 66px; height: 66px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.20); backdrop-filter: blur(8px); color: #fff; font-size: 26px; }
.hero-icon-1 { top: 18%; left: 6%; animation: floatY 5s ease-in-out infinite; }
.hero-icon-2 { top: 22%; right: 10%; animation: floatRotate 7s ease-in-out infinite; }
.hero-icon-3 { bottom: 22%; right: 18%; animation: floatY 6s ease-in-out infinite; }
.hero-icon-4 { bottom: 18%; left: 10%; animation: floatRotate 8s ease-in-out infinite; }

.feature-card,.service-card,.product-card,.gallery-card,.team-card,.domain-card { border-radius: 28px; }
.feature-card { position: relative; background: white; padding: 28px; box-shadow: 0 15px 35px rgba(14,58,138,0.10); border: 1px solid #e6f0ff; transition: 0.4s ease; }
.feature-card:hover { transform: translateY(-8px) rotateX(3deg) rotateY(-3deg); box-shadow: 0 25px 55px rgba(14,58,138,0.16); }
.feature-icon { width: 72px; height: 72px; border-radius: 22px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0E3A8A, #2C7BE5); color: white; font-size: 28px; margin-bottom: 20px; animation: softFloat 4s ease-in-out infinite; }
.feature-card h3 { font-size: 20px; font-weight: 700; color: #16304D; margin-bottom: 10px; }
.feature-card p { color: #61748a; line-height: 1.8; }

.about-img { width: 100%; object-fit: cover; border-radius: 28px; box-shadow: 0 20px 45px rgba(14,58,138,0.12); transition: 0.45s ease; border: 6px solid #fff; }
.about-img:hover { transform: translateY(-8px) scale(1.02); }
.tall-img { height: 300px; }
.short-img { height: 220px; }
.stat-float-card { background: linear-gradient(135deg, #0E3A8A, #2C7BE5); color: white; border-radius: 24px; padding: 18px 24px; box-shadow: 0 20px 50px rgba(14,58,138,0.22); }
.info-box { display: flex; gap: 16px; align-items: flex-start; background: #fff; border: 1px solid #e7effa; border-radius: 22px; padding: 18px 18px; box-shadow: 0 10px 25px rgba(14,58,138,0.06); transition: 0.35s ease; }
.info-box i { width: 52px; height: 52px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: #EAF4FF; color: #0E3A8A; font-size: 20px; }

.section-wave-top { position: absolute; top: -1px; left: 0; width: 100%; height: 120px; background: linear-gradient(to bottom, white 0%, rgba(255,255,255,0) 100%); }
.service-card { background: white; padding: 34px 30px; box-shadow: 0 15px 40px rgba(14,58,138,0.10); border: 1px solid #deebff; transition: 0.4s ease; position: relative; overflow: hidden; }
.service-icon { width: 74px; height: 74px; border-radius: 22px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0E3A8A, #2C7BE5); color: #fff; font-size: 28px; margin-bottom: 22px; }
.service-link { display: inline-flex; align-items: center; gap: 8px; color: #0E3A8A; font-weight: 800; margin-top: 18px; transition: 0.3s ease; }

.product-card { background: white; overflow: hidden; border: 1px solid #e7effa; box-shadow: 0 15px 35px rgba(14,58,138,0.10); transition: 0.4s ease; }
.product-image-wrap { overflow: hidden; height: 240px; }
.product-image { width: 100%; height: 100%; object-fit: cover; transition: 0.6s ease; }
.mini-btn { padding: 11px 16px; background: #EAF4FF; color: #0E3A8A; font-size: 14px; }
.whatsapp-btn-card { background: #25D366; color: white; }

.parallax-section { position: relative; background: linear-gradient(rgba(7,32,78,0.80), rgba(7,32,78,0.80)), url('../images/hrhfi.jpg') center/cover no-repeat; background-attachment: fixed; overflow: hidden; }
.domain-card { position: relative; overflow: hidden; min-height: 420px; box-shadow: 0 18px 45px rgba(14,58,138,0.12); }
.domain-card img { width: 100%; height: 100%; min-height: 420px; object-fit: cover; }
.domain-overlay { position: absolute; inset: 0; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(7,32,78,0.88), rgba(7,32,78,0.35), transparent); color: #fff; }
.domain-icon { width: 62px; height: 62px; border-radius: 18px; display: flex; align-items: center; justify-content: center; background: rgba(245,158,11,0.92); color: #fff; font-size: 24px; margin-bottom: 18px; }

.gallery-card { position: relative; overflow: hidden; min-height: 280px; box-shadow: 0 18px 40px rgba(14,58,138,0.12); }
.gallery-card img,
.gallery-card video { width: 100%; height: 450px; min-height: 280px; object-fit: cover; display: block; }
.gallery-overlay { position: absolute; inset: 0; padding: 28px; display: flex; flex-direction: column; justify-content: flex-end; background: linear-gradient(to top, rgba(7,32,78,0.80), rgba(7,32,78,0.15), transparent); color: white; }
.gallery-card-link { display: block; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.gallery-card-link:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(14,58,138,0.18); }

.project-main-media {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(14,58,138,0.14);
  border: 1px solid #deebff;
  background: #fff;
}

.project-main-media img,
.project-main-media video {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  display: block;
}

.project-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.project-media-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #deebff;
  box-shadow: 0 12px 28px rgba(14,58,138,0.1);
  background: #fff;
}

.project-media-item img,
.project-media-item video {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.footer-area { background: radial-gradient(circle at 15% 20%, rgba(44,123,229,0.14), transparent 30%), radial-gradient(circle at 85% 15%, rgba(245,158,11,0.12), transparent 22%), linear-gradient(135deg, #071D49, #0E3A8A); }
.footer-title { font-size: 20px; font-weight: 700; margin-bottom: 22px; }
.footer-links, .footer-contact { list-style: none; }
.footer-links li, .footer-contact li { margin-bottom: 14px; }
.footer-links a { color: rgba(255,255,255,0.80); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; color: rgba(255,255,255,0.84); }
.footer-contact i { color: #F59E0B; margin-top: 3px; }

.whatsapp-float { position: fixed; right: 22px; bottom: 22px; width: 66px; height: 66px; border-radius: 50%; background: linear-gradient(135deg, #25D366, #17a74a); color: white; display: flex; align-items: center; justify-content: center; font-size: 34px; box-shadow: 0 18px 40px rgba(37,211,102,0.35); z-index: 1000; transition: 0.35s ease; animation: pulseWhats 2s infinite; }

@keyframes slowZoom { from { transform: scale(1); } to { transform: scale(1.08); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes softFloat { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-8px); } }
@keyframes floatY { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-14px); } }
@keyframes floatRotate { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-12px) rotate(8deg); } }
@keyframes pulseWhats { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); } 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 1024px) {
  .top-header-inner { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .top-infos { justify-content: center; }
  .top-cta { display: flex; justify-content: center; }
  .hero-floating-icon { display: none; }
  .hero-section::after { bottom: -40px; height: 85px; }
  .carousel-dots { bottom: 58px; }
  .tall-img, .short-img { height: 220px; }
}

@media (max-width: 768px) {
  .hero-section::after { bottom: -35px; height: 75px; }
  .carousel-btn { width: 48px; height: 48px; }
  .carousel-dots { bottom: 52px; }
  .feature-card, .service-card, .product-card, .team-card, .gallery-card, .domain-card { border-radius: 22px; }
  .whatsapp-float { width: 60px; height: 60px; font-size: 30px; right: 16px; bottom: 16px; }
  .top-infos { gap: 14px; }
  .top-info-item { justify-content: center; }
  .domain-card, .domain-card img { min-height: 340px; }
  .gallery-card, .gallery-card img, .gallery-card video { min-height: 240px; }
}

/* ---------- PAGE HERO (PAGES INTERNES) ---------- */
.page-hero {
  position: relative;
  min-height: 46vh;
  display: grid;
  place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(7,32,78,0.9), rgba(14,58,138,0.65));
}

.page-hero .content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
}

/* ---------- TEAM ---------- */
.team-card {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(14,58,138,0.10);
  border: 1px solid #deebff;
  transition: 0.4s ease;
}

.team-card:hover { transform: translateY(-10px); }

.team-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: 0.5s ease;
}

.team-card:hover img { transform: scale(1.05); }

.team-info {
  background: linear-gradient(135deg, #0E3A8A, #2C7BE5);
  color: white;
  padding: 26px;
}

.team-info h3 { font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.team-info p { color: rgba(255,255,255,0.82); margin-bottom: 18px; }

.team-social { display: flex; gap: 10px; }

.team-social a {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.16);
  color: white;
  transition: 0.3s ease;
}

.team-social a:hover {
  background: #F59E0B;
  transform: translateY(-2px);
}

/* ---------- TRUST ---------- */
.trust-section {
  background:
    linear-gradient(rgba(7,32,78,0.82), rgba(7,32,78,0.82)),
    url('../images/hrhfi.jpg') center/cover no-repeat;
}

.trust-badge {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  font-size: 26px;
  font-weight: 800;
  color: white;
  letter-spacing: 1px;
  transition: 0.35s ease;
}

.trust-badge:hover {
  transform: translateY(-8px);
  background: rgba(245,158,11,0.18);
}

.footer-social {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: white;
  transition: 0.3s ease;
}

.footer-social:hover {
  background: #F59E0B;
  transform: translateY(-3px);
}

/* ---------- INNER TEMPLATE (A PROPOS + PAGES INTERNES) ---------- */
.about-hero {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(7,32,78,0.88) 0%, rgba(7,32,78,0.76) 45%, rgba(7,32,78,0.48) 100%),
    url('../images/hrhfi.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  top: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(245,158,11,0.22), transparent 65%);
  border-radius: 50%;
  animation: softFloat 5s ease-in-out infinite;
}

.about-hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -42px;
  height: 90px;
  background: #fff;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}

.breadcrumb-link { color: rgba(255,255,255,0.86); transition: .3s ease; }
.breadcrumb-link:hover { color: #fff; }

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.mini-stat {
  background: #fff;
  border: 1px solid #e7effa;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 15px 35px rgba(14,58,138,0.08);
  transition: .35s ease;
}

.mini-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(14,58,138,0.12);
}

.mini-stat i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0E3A8A, #2C7BE5);
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}

.value-card {
  background: #fff;
  border: 1px solid #e7effa;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(14,58,138,0.08);
  transition: .4s ease;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 22px 50px rgba(14,58,138,0.12);
}

.value-card .value-icon {
  width: 68px;
  height: 68px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #F59E0B, #f7b733);
  color: #fff;
  font-size: 24px;
  margin-bottom: 18px;
  box-shadow: 0 14px 30px rgba(245,158,11,0.28);
}

.timeline-card {
  position: relative;
  background: #fff;
  border: 1px solid #e7effa;
  border-radius: 24px;
  padding: 26px 24px 26px 78px;
  box-shadow: 0 12px 28px rgba(14,58,138,0.08);
  transition: .35s ease;
}

.timeline-card:hover { transform: translateY(-5px); }

.timeline-bullet {
  position: absolute;
  left: 22px;
  top: 24px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0E3A8A, #2C7BE5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(14,58,138,0.18);
}

.about-image-stack img {
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(14,58,138,0.12);
  border: 6px solid #fff;
}

.quote-box {
  background: linear-gradient(135deg, #0E3A8A, #2C7BE5);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 20px 50px rgba(14,58,138,0.18);
  position: relative;
  overflow: hidden;
}

.quote-box::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -40px;
  top: -40px;
  background: radial-gradient(circle, rgba(255,255,255,0.16), transparent 68%);
  border-radius: 50%;
}

.cta-strip {
  background:
    linear-gradient(rgba(7,32,78,0.84), rgba(7,32,78,0.84)),
    url('../images/hrhfi.jpg') center/cover no-repeat;
}

/* ---------- SVG GEAR ---------- */
.gear-svg {
  position: absolute;
  width: 340px;
  height: 340px;
  opacity: 0.12;
  background-repeat: no-repeat;
  background-size: contain;
  animation: spinSlow 25s linear infinite;
  pointer-events: none;
}

.gear-left {
  left: -80px;
  top: 80px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230E3A8A' viewBox='0 0 24 24'%3E%3Cpath d='M19.14 12.94c.04-.31.06-.63.06-.94s-.02-.63-.06-.94l2.03-1.58a.5.5 0 0 0 .12-.64l-1.92-3.32a.5.5 0 0 0-.6-.22l-2.39.96a7.028 7.028 0 0 0-1.63-.94l-.36-2.54a.5.5 0 0 0-.5-.42h-3.84a.5.5 0 0 0-.5.42l-.36 2.54c-.58.23-1.12.54-1.63.94l-2.39-.96a.5.5 0 0 0-.6.22L2.71 8.84a.5.5 0 0 0 .12.64l2.03 1.58c-.04.31-.06.63-.06.94s.02.63.06.94l-2.03 1.58a.5.5 0 0 0-.12.64l1.92 3.32c.13.22.39.31.6.22l2.39-.96c.5.39 1.05.71 1.63.94l.36 2.54c.04.24.25.42.5.42h3.84c.25 0 .46-.18.5-.42l.36-2.54c.58-.23 1.12-.54 1.63-.94l2.39.96c.22.09.47 0 .6-.22l1.92-3.32a.5.5 0 0 0-.12-.64l-2.03-1.58ZM12 15.5A3.5 3.5 0 1 1 12 8.5a3.5 3.5 0 0 1 0 7Z'/%3E%3C/svg%3E");
}

.gear-right {
  right: -90px;
  bottom: 50px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23F59E0B' viewBox='0 0 24 24'%3E%3Cpath d='M19.14 12.94c.04-.31.06-.63.06-.94s-.02-.63-.06-.94l2.03-1.58a.5.5 0 0 0 .12-.64l-1.92-3.32a.5.5 0 0 0-.6-.22l-2.39.96a7.028 7.028 0 0 0-1.63-.94l-.36-2.54a.5.5 0 0 0-.5-.42h-3.84a.5.5 0 0 0-.5.42l-.36 2.54c-.58.23-1.12.54-1.63.94l-2.39-.96a.5.5 0 0 0-.6.22L2.71 8.84a.5.5 0 0 0 .12.64l2.03 1.58c-.04.31-.06.63-.06.94s.02.63.06.94l-2.03 1.58a.5.5 0 0 0-.12.64l1.92 3.32c.13.22.39.31.6.22l2.39-.96c.5.39 1.05.71 1.63.94l.36 2.54c.04.24.25.42.5.42h3.84c.25 0 .46-.18.5-.42l.36-2.54c.58-.23 1.12-.54 1.63-.94l2.39.96c.22.09.47 0 .6-.22l1.92-3.32a.5.5 0 0 0-.12-.64l-2.03-1.58ZM12 15.5A3.5 3.5 0 1 1 12 8.5a3.5 3.5 0 0 1 0 7Z'/%3E%3C/svg%3E");
}
.partner-logo {
  max-width: 120px;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* ---------- LAYOUT WIDTH FIX ---------- */
html, body {
  width: 100%;
}
body > .top-header,
body > header,
body > section,
body > footer {
  width: 100%;
  max-width: 100%;
}

.object-contain {
    object-fit: contain;
    height: 100px;
}
