/* ============================================================
   C3K Express Air Cargo – Tailwind Custom CSS
   Brand colors, component overrides, and JS-hook styles.
   Replaces: custom.css  +  magnific-popup.min.css (core only)
   ============================================================ */

/* Reset browser default body margin/padding */
html, body { margin: 0; padding: 0; }

/* ---------- 1. Brand CSS Variables ---------- */
:root {
  --theme-color:   #1a2351;
  --theme-color-2: #00a8e8;
  --smoke-color2:  #f0f8ff;
  --body-color:    #4a4a57;
}

/* ---------- 2. Text selection ---------- */
::selection      { background: #1a2351; color: #fff; }
::-moz-selection { background: #1a2351; color: #fff; }

/* ---------- 3. Base link defaults ---------- */
a { color: #1a2351; transition: color 0.3s ease; }
a:hover { color: #00a8e8; }

/* ---------- 4. Global smooth transitions ---------- */
*, button, a, input, select, textarea {
  transition-property: background-color, color, border-color, transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: ease;
}

/* ---------- 5. Form focus states ---------- */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border-color: #1a2351;
  box-shadow: 0 0 0 3px rgba(26,35,81,.1);
  outline: none;
}

/* ---------- 6. Themed button variants (custom.css carry-over) ---------- */
.themeholy-btn {
  background-color: #1a2351;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 13px 28px;
  border: 2px solid #1a2351;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.themeholy-btn:hover         { background-color: #00a8e8; border-color: #00a8e8; color: #fff; }
.themeholy-btn.blue-btn      { background-color: #1a2351; border-color: #1a2351; color: #fff; }
.themeholy-btn.blue-btn:hover{ background-color: #00a8e8; border-color: #00a8e8; }
.themeholy-btn.white-btn     { background: #fff; border-color: #fff; color: #1a2351; }
.themeholy-btn.white-btn:hover { background: #f0f8ff; border-color: #1a2351; }
.themeholy-btn.btn-fw        { width: 100%; }
.themeholy-btn:focus         { outline: none; box-shadow: none; }

/* header quote button */
.quote-button a {
  padding: 10px 20px;
  font-size: 13px;
  background-color: #1a2351;
  border: 2px solid #1a2351;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s, border-color 0.3s;
}
.quote-button a:hover { background-color: #00a8e8; border-color: #00a8e8; color: #fff; text-decoration: none; }

/* Tracking / CTA header button */
.themeholy-btn.track-btn {
  background-color: #1a2351;
  border-color: #1a2351;
  padding: 12px 24px;
  border-radius: 4px;
}
.themeholy-btn.track-btn:hover { background-color: #00a8e8; border-color: #00a8e8; }

/* ---------- 7. Hero section – modern ─────────────────────────── */

/* Better overlay: dark on left/center (text), image visible on right */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    110deg,
    rgba(13,25,60,.60) 0%,
    rgba(13,25,60,.40) 42%,
    rgba(13,25,60,.10) 68%,
    rgba(13,25,60,0) 100%
  );
}

/* Badge pill */
.c3k-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,232,.18);
  border: 1px solid rgba(0,168,232,.42);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.c3k-hero-badge i { color: #00a8e8; }

/* Eyebrow */
.c3k-hero-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #00a8e8;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 14px;
}

/* Title */
.c3k-hero-title {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem) !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.1 !important;
  margin-bottom: 12px !important;
  letter-spacing: -0.5px;
}
.c3k-hero-title .c3k-hl {
  background: linear-gradient(90deg, #00a8e8, #5dd5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.c3k-hero-desc {
  font-size: 14px !important;
  color: rgba(255,255,255,.85) !important;
  line-height: 1.6;
  margin-bottom: 24px !important;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.c3k-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.c3k-hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #00a8e8 0%, #0089bf 100%);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,168,232,.35);
  transition: transform .3s ease, box-shadow .3s ease;
  white-space: nowrap;
}
.c3k-hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(0,168,232,.6);
  color: #fff !important;
}
.c3k-hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
  white-space: nowrap;
}
.c3k-hero-btn-secondary:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
  color: #fff !important;
}

/* Trust strip */
.c3k-hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.c3k-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  font-weight: 500;
}
.c3k-hero-trust-item i { color: #00a8e8; }
.c3k-hero-trust-item strong { color: #fff; }

/* ── Stats strip — sits BELOW the hero as a normal block element ── */
.c3k-stats-strip {
  background: #1a2351;
}
.c3k-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1320px;
  margin: 0 auto;
}
.c3k-stat-item {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.1);
}
.c3k-stat-item:last-child { border-right: none; }
.c3k-stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.c3k-stat-number .counter-number { color: #00a8e8; }
.c3k-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .c3k-hero-title { font-size: 2rem !important; }
  .c3k-hero-desc  { font-size: 14px !important; }
  .c3k-hero-btns  { flex-direction: column; align-items: center; }
  .c3k-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .c3k-stat-item:nth-child(2)  { border-right: none; }
  .c3k-stat-item:nth-child(1),
  .c3k-stat-item:nth-child(2)  { border-bottom: 1px solid rgba(255,255,255,.1); }
}

/* ── Hero Slider Enhancements ─────────────────────────────────────────── */

/* Ken-Burns slow zoom on background images */
@keyframes c3k-kenburns {
  0%   { transform: scale(1);    }
  100% { transform: scale(1.08); }
}
.c3k-kenburns {
  animation: c3k-kenburns 8s ease-in-out forwards;
}
.slick-active .c3k-kenburns {
  animation: c3k-kenburns 8s ease-in-out forwards;
}

/* Glassmorphic arrow buttons */
.hero-3 .slick-prev,
.hero-3 .slick-next {
  width: 52px !important;
  height: 52px !important;
  background: rgba(255,255,255,.12) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1.5px solid rgba(255,255,255,.25) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 10;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1) !important;
  opacity: 0.85;
}
.hero-3 .slick-prev:hover,
.hero-3 .slick-next:hover {
  background: rgba(0,168,232,.85) !important;
  border-color: rgba(0,168,232,.9) !important;
  transform: scale(1.08);
  opacity: 1;
  box-shadow: 0 8px 24px rgba(0,168,232,.4) !important;
}
.hero-3 .slick-prev i,
.hero-3 .slick-next i {
  font-size: 16px !important;
  color: #fff !important;
  line-height: 1 !important;
}
.hero-3 .slick-prev {
  left: 28px !important;
}
.hero-3 .slick-next {
  right: 28px !important;
}

/* Custom dot navigation */
.hero-3 .slick-dots {
  position: absolute !important;
  bottom: 28px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  z-index: 10;
}
.hero-3 .slick-dots li {
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
}
.hero-3 .slick-dots li button {
  width: 12px !important;
  height: 12px !important;
  padding: 0 !important;
  border: 2px solid rgba(255,255,255,.5) !important;
  border-radius: 50% !important;
  background: transparent !important;
  font-size: 0 !important;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1) !important;
  outline: none !important;
}
.hero-3 .slick-dots li button::before {
  display: none !important;
}
.hero-3 .slick-dots li.slick-active button {
  background: #00a8e8 !important;
  border-color: #00a8e8 !important;
  width: 32px !important;
  border-radius: 6px !important;
  box-shadow: 0 0 12px rgba(0,168,232,.5) !important;
}
.hero-3 .slick-dots li button:hover {
  border-color: rgba(255,255,255,.9) !important;
  background: rgba(255,255,255,.3) !important;
}

/* Hero progress bar (sits at bottom of hero) */
.c3k-hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.15);
  z-index: 20;
}
.c3k-hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00a8e8, #5dd5ff);
  border-radius: 0 2px 2px 0;
  box-shadow: 0 0 8px rgba(0,168,232,.5);
}

@media (max-width: 991px) {
  .hero-3 .slick-prev,
  .hero-3 .slick-next {
    width: 40px !important;
    height: 40px !important;
  }
  .hero-3 .slick-prev { left: 12px !important; }
  .hero-3 .slick-next { right: 12px !important; }
  .hero-3 .slick-prev i,
  .hero-3 .slick-next i { font-size: 13px !important; }
}

/* ── Hero Compact Layout ─────────────────────────────────────────────── */
.hero-3 .themeholy-hero-slide {
  min-height: 480px !important;
  height: 480px !important;
  display: flex !important;
  align-items: center !important;
}
.hero-3 .hero-style3 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.hero-3.themeholy-hero-wrapper {
  height: 480px !important;
  min-height: 480px !important;
}

@media (max-width: 767px) {
  .hero-3 .themeholy-hero-slide, 
  .hero-3.themeholy-hero-wrapper {
    height: auto !important;
    min-height: 440px !important;
  }
}

/* ---------- 8. Header top bar (overrides style.css defaults) ---------- */
.header-top {
  background-color: #1a2351;
  color: #fff;
  padding: 14px 0;
}
.header-top .header-links ul { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.header-top .header-links li { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.9); font-size: 14px; font-weight: 500; }
.header-top .header-links i  { font-size: 16px; color: #fff; }
.header-top .header-links a  { color: rgba(255,255,255,.9); text-decoration: none; }
.header-top .header-links a:hover { color: #fff; }
.header-top .link-title       { color: rgba(255,255,255,.75); }
.header-social { display: flex; gap: 16px; align-items: center; }
.header-social a { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; color: rgba(255,255,255,.8); font-size: 14px; }
.header-social a:hover { color: #fff; transform: translateY(-2px); }

/* Sticky nav */
.sticky-active .menu-area { background: #fff; box-shadow: 0 4px 20px rgba(26,35,81,.12); padding: 12px 0; }
.sticky-active .menu-area .header-logo img { max-height: 50px; }

/* Desktop nav links */
.main-menu > ul > li > a { color: #121212; font-weight: 600; font-size: 15px; letter-spacing: 0.3px; position: relative; padding: 8px 0; }
.main-menu > ul > li > a:hover { color: #1a2351; }
.main-menu li.menu-item-has-children > a::after {
  content: '↓' !important;
  color: #121212 !important;
  background: transparent !important;
  font-size: 10px !important;
  font-weight: 400 !important;
  margin-left: 6px !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  display: inline !important;
  border: none !important;
  position: static !important;
  opacity: 1 !important;
}
.main-menu ul.sub-menu { background: #fff; border-top: 3px solid #1a2351; border-radius: 0 0 4px 4px; box-shadow: 0 8px 24px rgba(26,35,81,.15); padding: 12px 0; }
.main-menu ul.sub-menu li a { color: #4a4a57; font-weight: 500; padding: 10px 20px; }
.main-menu ul.sub-menu li a:hover { background: #f0f8ff; color: #1a2351; padding-left: 24px; }

/* header icon button */
.header-button .icon-btn { background: transparent; border: none; cursor: pointer; padding: 8px; }
.header-button .icon-btn:hover { background: #f0f8ff; border-radius: 4px; }
.header-button .icon-btn img { width: 24px; height: 24px; }

/* ---------- 9. Mobile menu (JS hooks – replaces header.phtml inline <style>) ---------- */
.themeholy-menu-toggle {
  background: linear-gradient(135deg, #00a8e8 0%, #0089bf 100%);
  border: none;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,168,232,.3);
}
.themeholy-menu-toggle:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,168,232,.45); }

.themeholy-menu-wrapper {
  position: fixed;
  inset: 0;
  background: rgba(13,42,122,.85);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.themeholy-body-visible .themeholy-menu-wrapper { opacity: 1; visibility: visible; }

.themeholy-menu-area {
  position: absolute;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85%;
  height: 100%;
  background: #fff;
  padding: 30px 25px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -5px 0 25px rgba(0,0,0,.15);
  text-align: center;
}
.themeholy-body-visible .themeholy-menu-area { right: 0; }

/* close button inside panel */
.themeholy-menu-area .themeholy-menu-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(231,76,60,.1);
  color: #e74c3c;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 16px;
  box-shadow: none;
}
.themeholy-menu-area .themeholy-menu-toggle:hover {
  background: #e74c3c;
  color: #fff;
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(231,76,60,.4);
}

.mobile-logo { padding: 10px 0 25px; margin-bottom: 20px; border-bottom: 1px solid rgba(0,0,0,.08); }
.mobile-logo img { max-width: 160px; height: auto; }

.themeholy-mobile-menu { margin-top: 10px; padding-bottom: 30px; }
.themeholy-mobile-menu ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.themeholy-mobile-menu ul li { position: relative; border-bottom: 1px solid rgba(0,0,0,.06); }
.themeholy-mobile-menu ul li a {
  display: block;
  padding: 14px 45px 14px 18px;
  color: #1a2351;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
}
.themeholy-mobile-menu ul li a::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: #00a8e8;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.themeholy-mobile-menu ul li a:hover { color: #00a8e8; background: rgba(0,168,232,.06); padding-left: 22px; }
.themeholy-mobile-menu ul li a:hover::before { opacity: 1; transform: translateY(-50%) scale(1.4); box-shadow: 0 0 8px rgba(0,168,232,.6); }
.themeholy-mobile-menu ul .sub-menu { display: none; padding: 4px 0 8px 12px; background: rgba(0,168,232,.04); border-left: 2px solid #00a8e8; margin: 0 0 5px; }
.themeholy-mobile-menu ul .sub-menu li { border-bottom: 1px solid rgba(0,0,0,.04); }
.themeholy-mobile-menu ul .sub-menu li a { padding: 10px 40px 10px 16px; font-size: 13.5px; font-weight: 500; color: #555; }
.themeholy-mobile-menu ul .sub-menu li a::before { width: 4px; height: 4px; background: #999; }
.themeholy-mobile-menu ul .sub-menu li a:hover::before { background: #00a8e8; }

.themeholy-mean-expand {
  position: absolute;
  top: 50%; right: 8px;
  margin-top: -16px;
  width: 32px; height: 32px;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  background: rgba(0,168,232,.12);
  color: #00a8e8;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.themeholy-mean-expand::before { content: '\f067'; font-family: 'Font Awesome 6 Free','FontAwesome'; font-weight: 900; }
.themeholy-mean-expand.themeholy-open { background: #00a8e8; color: #fff; }
.themeholy-mean-expand.themeholy-open::before { content: '\f068'; }
.themeholy-body-visible { overflow: hidden; }

@media (max-width: 575px) {
  .themeholy-menu-area { width: 290px; padding: 25px 20px; }
}

/* ---------- 10. Footer ---------- */

/* ── Pre-footer contact strip ─────────────────────────────────────────── */
.c3k-prefoot {
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #1a2351 0%, #0d2060 100%);
  border-top: 2px solid #00a8e8;
  padding: 10px 16px;
}
.c3k-prefoot-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.c3k-prefoot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 180px;
  padding: 4px 16px 4px 0;
}
.c3k-prefoot-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0,168,232,.15);
  border: 1px solid rgba(0,168,232,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: #00a8e8;
}
.c3k-prefoot-text { display: flex; flex-direction: column; gap: 1px; }
.c3k-prefoot-label {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,.45);
}
.c3k-prefoot-value {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color .2s;
}
a.c3k-prefoot-value:hover { color: #00a8e8; }
.c3k-prefoot-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,.1);
  margin: 0 16px;
  flex-shrink: 0;
}
.c3k-prefoot-cta { margin-left: auto; flex-shrink: 0; }
.c3k-prefoot-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: #00a8e8;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: box-shadow .25s, transform .25s;
  white-space: nowrap;
}
.c3k-prefoot-btn:hover {
  box-shadow: 0 6px 20px rgba(0,168,232,.45);
  transform: translateY(-2px);
  color: #fff;
}
@media (max-width: 991px) {
  .c3k-prefoot-inner { gap: 16px; }
  .c3k-prefoot-divider { display: none; }
  .c3k-prefoot-item { padding: 0; min-width: 180px; }
  .c3k-prefoot-cta { width: 100%; margin: 8px 0 0; }
  .c3k-prefoot-btn { width: 100%; justify-content: center; border-radius: 10px; }
}
@media (max-width: 767px) {
  .c3k-prefoot-inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .c3k-prefoot-item { width: 100%; min-width: 100%; }
}

/* ── Footer wrapper ───────────────────────────────────────────────────── */
.footer-wrapper {
  position: relative;
  color: #fff;
  padding: 0;
  overflow: hidden;
  background-color: #0a1628;
}

/* Layer 1: blurred background image */
.footer-wrapper::before {
  content: '';
  position: absolute;
  inset: -16px;
  background-image: url('../img/bg/footer_bg_2.jpg');
  background-size: cover;
  background-position: center center;
  filter: blur(2px) brightness(0.48);
  z-index: 0;
  transform: scale(1.03);
}

/* Layer 2: dark navy gradient so text stays readable */
.footer-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(10,22,48,.82) 0%,
    rgba(15,28,60,.70) 50%,
    rgba(10,22,48,.82) 100%
  );
  z-index: 0;
}

/* Lift all content above pseudo layers */
.footer-wrapper .widget-area,
.footer-wrapper .copyright-wrap {
  position: relative;
  z-index: 1;
}
.footer-wrapper .widget-area,
.footer-layout3 .widget-area {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

/* Grid: wider about column, 3 equal info columns */
.c3k-footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  column-gap: 48px;
  row-gap: 40px;
  align-items: start;
}
.c3k-footer-grid > div { min-width: 0; }
@media (max-width: 1199px) {
  .c3k-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 32px;
  }
  .c3k-footer-col-about { grid-column: 1 / -1; }
}
@media (max-width: 575px) {
  .c3k-footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Widget title */
.footer-wrapper .widget_title {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 2.5px !important;
  padding-bottom: 14px !important;
  margin-bottom: 20px !important;
  border: none !important;
  border-bottom: 1px solid rgba(255,255,255,.12) !important;
  position: relative;
}
.footer-wrapper .widget_title::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 28px; height: 2px;
  background: #00a8e8;
}

/* ── Quick Links: kill every theme style, apply ours ── */
.footer-wrapper .menu-all-pages-container,
.footer-wrapper .menu-all-pages-container ul,
.footer-wrapper .menu-all-pages-container ul.menu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-wrapper .menu-all-pages-container ul.menu li {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  background: none !important;
  float: none !important;
  display: block !important;
}
.footer-wrapper .menu-all-pages-container ul.menu li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 5px 0 !important;
  margin: 0 !important;
  color: rgba(255,255,255,.62) !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  background: transparent !important;
  border: none !important;
  text-decoration: none !important;
  transition: color .2s, padding-left .2s !important;
  line-height: 1.5 !important;
}
/* Dot bullet */
.footer-wrapper .menu-all-pages-container ul.menu li a::before {
  content: '' !important;
  display: inline-block !important;
  width: 5px !important; height: 5px !important;
  min-width: 5px !important;
  background: #00a8e8 !important;
  border-radius: 50% !important;
  opacity: .55 !important;
  transition: opacity .2s, transform .2s !important;
  position: static !important;
  transform: none !important;
  top: auto !important; left: auto !important;
}
.footer-wrapper .menu-all-pages-container ul.menu li a::after {
  display: none !important;
}
.footer-wrapper .menu-all-pages-container ul.menu li a:hover {
  color: #fff !important;
  padding-left: 5px !important;
  background: transparent !important;
}
.footer-wrapper .menu-all-pages-container ul.menu li a:hover::before {
  opacity: 1 !important;
  transform: scale(1.5) !important;
}

/* General widget links */
.footer-wrapper .widget a { color: rgba(255,255,255,.65); text-decoration: none; }
.footer-wrapper .widget a:hover { color: #fff; }

/* Copyright bar */
.copyright-wrap {
  background: rgba(0,0,0,.35);
  color: rgba(255,255,255,.5);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 16px;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.copyright-wrap a { color: rgba(255,255,255,.72); text-decoration: none; }
.copyright-wrap a:hover { color: #00a8e8; }
@media (max-width: 991px) {
  .copyright-wrap { padding-bottom: 95px !important; }
}

/* Newsletter */
.c3k-newsletter {
  background: linear-gradient(135deg, #1a2351 0%, #0d3a6e 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.c3k-newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%2300a8e8' 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: .5;
}
.c3k-newsletter .container { position: relative; z-index: 1; }
.c3k-nl-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,168,232,.2);
  border-radius: 12px;
  font-size: 20px;
  color: #00a8e8;
}
.c3k-nl-subtitle { color: rgba(255,255,255,.65); font-size: 14px; margin: 6px 0 0; }
.newsletter-form.style3 input {
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  color: #fff;
  padding: 13px 18px;
  font-size: 14px;
  border-radius: 8px 0 0 8px;
}
.newsletter-form.style3 input::placeholder { color: rgba(255,255,255,.55); }
.newsletter-form.style3 input:focus { border-color: #00a8e8; outline: none; }

/* Footer logo */
.c3k-footer-logo { margin-bottom: 22px; }
.c3k-footer-logo img { max-height: 220px; width: auto; }
@media (max-width: 767px) {
  .c3k-footer-logo img { max-height: 80px; }
}

/* Footer social icons */
.c3k-footer-social { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.c3k-footer-social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  border-radius: 50%;
  font-size: 13px;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  text-decoration: none;
}
.c3k-footer-social a:hover { background: #00a8e8; border-color: #00a8e8; color: #fff; transform: translateY(-3px); }

/* Footer contact list */
.c3k-contact-list { display: flex; flex-direction: column; gap: 14px; }
.c3k-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.72);
}
.c3k-contact-item i {
  color: #00a8e8;
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}
.c3k-contact-item a { color: rgba(255,255,255,.85); text-decoration: none; transition: color .2s; }
.c3k-contact-item a:hover { color: #00a8e8; }

/* Footer about description */
.c3k-footer-desc {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 22px;
}
.c3k-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: linear-gradient(135deg, #00a8e8 0%, #0089bf 100%);
  color: #fff !important;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: box-shadow .3s ease, transform .3s ease;
  margin-top: 4px;
}
.c3k-footer-cta:hover {
  box-shadow: 0 6px 20px rgba(0,168,232,.4);
  transform: translateY(-2px);
  color: #fff !important;
}

/* Footer services list */
.footer-services-list { list-style: none; padding: 0; margin: 0; }
.footer-services-list li { margin-bottom: 10px; }
.footer-services-list a { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .25s ease, transform .25s ease; }
.footer-services-list a i { color: #00a8e8; font-size: 13px; width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; background: rgba(0,168,232,.12); border-radius: 50%; flex-shrink: 0; transition: background .25s ease, color .25s ease; }
.footer-services-list a:hover { color: #fff; transform: translateX(4px); }
.footer-services-list a:hover i { background: #00a8e8; color: #fff; }

/* Office location tags in about column */
.c3k-footer-offices {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.c3k-office-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  transition: background .2s, border-color .2s;
}
.c3k-office-tag:hover {
  background: rgba(0,168,232,.15);
  border-color: rgba(0,168,232,.35);
}
.c3k-office-tag img { border-radius: 2px; display: inline-block; vertical-align: middle; }

/* Country label inside contact items */
.c3k-contact-country {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00a8e8;
  margin-bottom: 3px;
}

/* Mini newsletter in services column */
.c3k-footer-newsletter {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.c3k-fnl-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,.55);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.c3k-fnl-label i { color: #00a8e8; }
.c3k-fnl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c3k-fnl-form input {
  width: 100%;
  box-sizing: border-box;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.15);
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 13px;
  color: #fff;
  outline: none;
  transition: border-color .2s;
}
.c3k-fnl-form input:focus { border-color: #00a8e8; }
.c3k-fnl-form input::placeholder { color: rgba(255,255,255,.35); }
.c3k-fnl-form button {
  width: 100%;
  box-sizing: border-box;
  background: #00a8e8;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  color: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background .2s;
}
.c3k-fnl-form button:hover { background: #0089bf; }

/* Copyright bar layout */
.c3k-copyright-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}
.copyright-text { margin: 0; }

/* Copyright right-side links */
.c3k-copyright-links { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.c3k-copyright-links a { color: rgba(255,255,255,.6); font-size: 13px; text-decoration: none; transition: color .2s; }
.c3k-copyright-links a:hover { color: #00a8e8; }
.c3k-copyright-links span { color: rgba(255,255,255,.18); }

/* ---------- 11. About Page ---------- */

/* Shared section utilities */
.c3k-section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #00a8e8;
  margin-bottom: 10px;
}
.c3k-section-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  color: #1a2351;
  line-height: 1.25;
  margin-bottom: 12px;
}
.c3k-section-sub {
  font-size: 14px;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.c3k-section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ── Intro section ── */
.c3k-about-intro {
  padding: 80px 0;
  background: #fff;
}
.c3k-about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 991px) {
  .c3k-about-intro-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* Image collage */
.c3k-about-images {
  position: relative;
  padding-bottom: 60px;
  padding-right: 40px;
}
.c3k-about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,35,81,.14);
}
.c3k-about-img-main img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}
.c3k-about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(26,35,81,.18);
  border: 4px solid #fff;
}
.c3k-about-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.c3k-about-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #1a2351 0%, #0d2060 100%);
  color: #fff;
  border-radius: 10px;
  padding: 8px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.2;
}
.c3k-about-badge-number {
  font-size: 22px;
  font-weight: 900;
  color: #00a8e8;
}
.c3k-about-badge-text {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: .8;
}
.c3k-about-stat-pill {
  position: absolute;
  top: 24px;
  left: -16px;
  background: #fff;
  border: 1px solid #e0e7ef;
  border-radius: 40px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(26,35,81,.1);
}
.c3k-about-stat-pill > i {
  font-size: 20px;
  color: #00a8e8;
  flex-shrink: 0;
}
.c3k-about-stat-pill div { display: flex; flex-direction: column; gap: 1px; }
.c3k-about-stat-pill strong { font-size: 13px; font-weight: 700; color: #1a2351; }
.c3k-about-stat-pill span  { font-size: 11px; color: #6b7280; }
@media (max-width: 575px) {
  .c3k-about-stat-pill { display: none; }
  .c3k-about-images { padding-right: 20px; }
}

/* Content */
.c3k-about-heading {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a2351;
  line-height: 1.2;
  margin-bottom: 16px;
}
.c3k-about-divider {
  width: 56px;
  height: 4px;
  background: linear-gradient(90deg, #00a8e8, #1a2351);
  border-radius: 4px;
  margin-bottom: 20px;
}
.c3k-about-lead {
  font-size: 15px;
  font-weight: 500;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 14px;
}
.c3k-about-body {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 24px;
}
.c3k-about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c3k-about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
}
.c3k-about-checklist li i { color: #00a8e8; font-size: 15px; flex-shrink: 0; }
.c3k-about-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.c3k-about-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #1a2351 0%, #0d2060 100%);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.c3k-about-btn-primary:hover {
  background: linear-gradient(135deg, #00a8e8 0%, #0089bf 100%);
  box-shadow: 0 8px 24px rgba(0,168,232,.35);
  transform: translateY(-2px);
  color: #fff !important;
}
.c3k-about-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border: 2px solid #1a2351;
  color: #1a2351 !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s;
}
.c3k-about-btn-secondary:hover {
  background: #1a2351;
  color: #fff !important;
  transform: translateY(-2px);
}

/* ── Stats strip ── */
.c3k-about-stats-strip {
  background: linear-gradient(135deg, #1a2351 0%, #0d2060 100%);
  padding: 48px 0;
}
.c3k-about-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 767px) {
  .c3k-about-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
.c3k-about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.c3k-about-stat:last-child { border-right: none; }
.c3k-about-stat > i {
  font-size: 28px;
  color: #00a8e8;
  margin-bottom: 10px;
}
.c3k-about-stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.c3k-about-stat-num .counter-number { color: #00a8e8; }
.c3k-about-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 600;
}

/* ── Mission & Vision ── */
.c3k-mv-section {
  padding: 80px 0;
  background: #f7f9fc;
}
.c3k-mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 767px) { .c3k-mv-grid { grid-template-columns: 1fr; } }
.c3k-mv-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e0e7ef;
  border-left: 5px solid #00a8e8;
  padding: 36px 32px;
  transition: box-shadow .25s, transform .25s;
}
.c3k-mv-card:hover { box-shadow: 0 12px 40px rgba(0,168,232,.1); transform: translateY(-4px); }
.c3k-mv-card--vision { border-left-color: #1a2351; }
.c3k-mv-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0,168,232,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #00a8e8;
  margin-bottom: 20px;
}
.c3k-mv-card--vision .c3k-mv-icon { background: rgba(26,35,81,.08); color: #1a2351; }
.c3k-mv-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #1a2351;
  margin-bottom: 12px;
}
.c3k-mv-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 20px;
}
.c3k-mv-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c3k-mv-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.c3k-mv-points li i { color: #00a8e8; font-size: 12px; }

/* ── Why Choose Us ── */
.c3k-why-section {
  padding: 80px 0;
  background: #fff;
}
.c3k-why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 991px) { .c3k-why-grid { grid-template-columns: 1fr; } }
.c3k-why-image-col { position: relative; }
.c3k-why-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0 16px 48px rgba(26,35,81,.14);
}
.c3k-why-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(26,35,81,.92);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.c3k-why-overlay-card > i { font-size: 24px; color: #00a8e8; flex-shrink: 0; }
.c3k-why-overlay-card strong { display: block; font-size: 14px; font-weight: 700; }
.c3k-why-overlay-card span  { font-size: 12px; color: rgba(255,255,255,.65); }
.c3k-why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
}
.c3k-why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.c3k-why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,168,232,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #00a8e8;
  flex-shrink: 0;
  transition: background .25s, color .25s;
}
.c3k-why-feature:hover .c3k-why-feature-icon { background: #00a8e8; color: #fff; }
.c3k-why-feature h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1a2351;
  margin: 0 0 4px;
}
.c3k-why-feature p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

/* ── Global Offices ── */
.c3k-offices-section {
  padding: 80px 0;
  background: #f7f9fc;
}
.c3k-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) { .c3k-offices-grid { grid-template-columns: 1fr; } }
.c3k-office-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e0e7ef;
  padding: 28px 24px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.c3k-office-card:hover {
  box-shadow: 0 12px 40px rgba(0,168,232,.1);
  border-color: #00a8e8;
  transform: translateY(-4px);
}
.c3k-office-card-flag {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 3px solid #e0e7ef;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c3k-office-card-flag img { width: 100%; height: 100%; object-fit: cover; }
.c3k-office-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: #1a2351;
  margin: 0 0 4px;
}
.c3k-office-card-role {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #00a8e8;
  margin-bottom: 16px;
}
.c3k-office-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.c3k-office-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #4a5568;
}
.c3k-office-card ul li i { color: #00a8e8; margin-top: 2px; flex-shrink: 0; font-size: 12px; }

/* ── CTA ── */
.c3k-about-cta {
  padding: 64px 0;
  background: linear-gradient(135deg, #1a2351 0%, #0d2060 100%);
}
.c3k-about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.c3k-about-cta-text h2 {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 8px;
}
.c3k-about-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.c3k-about-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  flex-shrink: 0;
}
.c3k-about-cta-track {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 2px solid rgba(255,255,255,.4);
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: all .25s;
}
.c3k-about-cta-track:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.8);
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .c3k-about-cta-inner { flex-direction: column; text-align: center; }
  .c3k-about-cta-actions { justify-content: center; }
}

/* ---------- 12. Team / Staff Page ---------- */

.c3k-team-section {
  padding: 80px 0;
  background: #f7f9fc;
}

/* Grid */
.c3k-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1199px) { .c3k-team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .c3k-team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 479px)  { .c3k-team-grid { grid-template-columns: 1fr; } }

/* Card */
.c3k-team-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf5;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}
.c3k-team-card:hover {
  box-shadow: 0 16px 48px rgba(26,35,81,.12);
  transform: translateY(-6px);
}

/* Image */
.c3k-team-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.5;
  background: #e8edf5;
}
.c3k-team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.c3k-team-card:hover .c3k-team-img-wrap img {
  transform: scale(1.06);
}

/* Initials fallback */
.c3k-team-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #1a2351 0%, #00a8e8 100%);
  letter-spacing: 2px;
}

/* Hover overlay */
.c3k-team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,35,81,.88) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity .3s ease;
}
.c3k-team-card:hover .c3k-team-overlay { opacity: 1; }
.c3k-team-socials {
  display: flex;
  gap: 8px;
}
.c3k-team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s, transform .2s;
}
.c3k-team-socials a:hover {
  background: #00a8e8;
  border-color: #00a8e8;
  transform: translateY(-3px);
}

/* Card body */
.c3k-team-body {
  padding: 20px 18px 18px;
}
.c3k-team-position {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #00a8e8;
  margin-bottom: 6px;
}
.c3k-team-name {
  font-size: 1rem;
  font-weight: 800;
  color: #1a2351;
  margin: 0 0 10px;
  line-height: 1.3;
}
.c3k-team-desc {
  font-size: 12.5px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 14px;
}
.c3k-team-contacts {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 12px;
  border-top: 1px solid #f0f4f8;
}
.c3k-team-contact-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  color: #6b7280;
  text-decoration: none;
  transition: color .2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.c3k-team-contact-link i { color: #00a8e8; flex-shrink: 0; font-size: 12px; }
.c3k-team-contact-link:hover { color: #00a8e8; }

/* Empty state */
.c3k-team-empty {
  text-align: center;
  padding: 80px 20px;
  color: #9ca3af;
}
.c3k-team-empty i { font-size: 48px; margin-bottom: 16px; display: block; }
.c3k-team-empty p { font-size: 15px; }

/* Join CTA */
.c3k-team-cta {
  background: linear-gradient(135deg, #1a2351 0%, #0d2060 100%);
  padding: 48px 0;
}
.c3k-team-cta-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.c3k-team-cta-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0,168,232,.2);
  border: 2px solid rgba(0,168,232,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #00a8e8;
  flex-shrink: 0;
}
.c3k-team-cta-text { flex: 1; min-width: 200px; }
.c3k-team-cta-text h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}
.c3k-team-cta-text p {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin: 0;
}
@media (max-width: 575px) {
  .c3k-team-cta-inner { flex-direction: column; text-align: center; }
  .c3k-team-cta-icon { margin: 0 auto; }
}

/* ---------- 13. Services Page ---------- */

.c3k-services-page-section {
  padding: 80px 0;
  background: #f7f9fc;
}

/* Grid — 3 columns, 2 on tablet, 1 on mobile */
.c3k-svc-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 991px) { .c3k-svc-page-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .c3k-svc-page-grid { grid-template-columns: 1fr; } }

/* Card */
.c3k-svc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e8edf5;
  overflow: visible;
  position: relative;
  transition: box-shadow .3s, transform .3s;
  display: flex;
  flex-direction: column;
}
.c3k-svc-card:hover {
  box-shadow: 0 16px 48px rgba(26,35,81,.12);
  transform: translateY(-6px);
}

/* Image top */
.c3k-svc-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  aspect-ratio: 16 / 9;
  text-decoration: none;
  flex-shrink: 0;
}
.c3k-svc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.c3k-svc-card:hover .c3k-svc-img-wrap img { transform: scale(1.06); }

/* Placeholder when no image */
.c3k-svc-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2351 0%, #00a8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255,255,255,.4);
}

/* Hover overlay */
.c3k-svc-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,35,81,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.c3k-svc-card:hover .c3k-svc-img-overlay { opacity: 1; }
.c3k-svc-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #00a8e8;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  transform: translateY(8px);
  transition: transform .3s;
}
.c3k-svc-card:hover .c3k-svc-read-more { transform: translateY(0); }

/* Number badge */
.c3k-svc-num {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(26,35,81,.75);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Icon badge — overlaps image/body boundary */
.c3k-svc-icon-badge {
  position: absolute;
  top: calc((100% - 68px) * (9/25));
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  border: 2px solid #e8edf5;
  box-shadow: 0 4px 16px rgba(26,35,81,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #00a8e8;
  z-index: 2;
  transition: background .25s, border-color .25s;
}
.c3k-svc-icon-badge img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.c3k-svc-card:hover .c3k-svc-icon-badge {
  background: #00a8e8;
  border-color: #00a8e8;
  color: #fff;
}
.c3k-svc-card:hover .c3k-svc-icon-badge img { filter: brightness(0) invert(1); }

/* Card body */
.c3k-svc-body {
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.c3k-svc-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1a2351;
  margin: 0 0 10px;
  line-height: 1.3;
  padding-right: 40px;
}
.c3k-svc-title a { color: inherit; text-decoration: none; transition: color .2s; }
.c3k-svc-title a:hover { color: #00a8e8; }
.c3k-svc-desc {
  font-size: 13.5px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 18px;
  flex: 1;
}
.c3k-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #00a8e8;
  text-decoration: none;
  margin-top: auto;
  transition: gap .2s, color .2s;
}
.c3k-svc-link i { font-size: 11px; transition: transform .2s; }
.c3k-svc-link:hover { color: #1a2351; }
.c3k-svc-link:hover i { transform: translateX(4px); }

/* ── How It Works ── */
.c3k-how-section {
  padding: 80px 0;
  background: #fff;
}
.c3k-how-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.c3k-how-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.c3k-how-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #00a8e8, #1a2351);
  margin-top: 52px;
  flex-shrink: 0;
  border-radius: 2px;
}
.c3k-how-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #00a8e8;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.c3k-how-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,168,232,.12) 0%, rgba(26,35,81,.06) 100%);
  border: 2px solid rgba(0,168,232,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #00a8e8;
  margin: 0 auto 16px;
  transition: background .3s, border-color .3s, color .3s;
}
.c3k-how-step:hover .c3k-how-icon {
  background: #00a8e8;
  border-color: #00a8e8;
  color: #fff;
}
.c3k-how-step h4 {
  font-size: 14px;
  font-weight: 800;
  color: #1a2351;
  margin: 0 0 8px;
}
.c3k-how-step p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 767px) {
  .c3k-how-grid { flex-direction: column; align-items: center; gap: 32px; }
  .c3k-how-connector { width: 2px; height: 32px; background: linear-gradient(180deg, #00a8e8, #1a2351); margin: 0; }
  .c3k-how-step { width: 100%; max-width: 320px; }
}

/* ---------- 14. Contact Page ---------- */

.c3k-contact-section {
  padding: 80px 0;
  background: #f7f9fc;
}
.c3k-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 991px) {
  .c3k-contact-grid { grid-template-columns: 1fr; }
}

/* ── Left info panel ── */
.c3k-contact-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #00a8e8;
  margin-bottom: 10px;
}
.c3k-contact-heading {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a2351;
  line-height: 1.25;
  margin-bottom: 12px;
}
.c3k-contact-subtext {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* Info cards */
.c3k-info-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.c3k-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  padding: 16px 18px;
  transition: box-shadow .25s, border-color .25s;
}
.c3k-info-card:hover { box-shadow: 0 4px 18px rgba(0,168,232,.1); border-color: #00a8e8; }
.c3k-info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0,168,232,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00a8e8;
  font-size: 16px;
  flex-shrink: 0;
}
.c3k-info-body { display: flex; flex-direction: column; gap: 3px; }
.c3k-info-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #9ca3af;
}
.c3k-info-value {
  font-size: 14px;
  font-weight: 600;
  color: #1a2351;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.c3k-info-value a { color: #1a2351; text-decoration: none; transition: color .2s; }
.c3k-info-value a:hover { color: #00a8e8; }

/* Global offices */
.c3k-offices-block {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 24px;
}
.c3k-offices-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a2351;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c3k-offices-title i { color: #00a8e8; }
.c3k-office-tabs { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.c3k-office-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid #e0e7ef;
  background: #f7f9fc;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all .2s;
}
.c3k-office-tab img { width: 16px; height: 11px; border-radius: 2px; }
.c3k-office-tab.active, .c3k-office-tab:hover {
  background: #1a2351;
  border-color: #1a2351;
  color: #fff;
}
.c3k-office-panel { display: none; }
.c3k-office-panel.active { display: flex; flex-direction: column; gap: 7px; }
.c3k-office-panel p {
  margin: 0;
  font-size: 13px;
  color: #4a5568;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.c3k-office-panel p i { color: #00a8e8; margin-top: 2px; flex-shrink: 0; }

/* Social */
.c3k-contact-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.c3k-contact-social span {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.c3k-contact-social a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #e0e7ef;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #1a2351;
  font-size: 13px;
  text-decoration: none;
  transition: all .25s;
}
.c3k-contact-social a:hover { background: #00a8e8; border-color: #00a8e8; color: #fff; transform: translateY(-3px); }

/* ── Right form panel ── */
.c3k-form-card {
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(26,35,81,.07);
  margin-bottom: 20px;
}
.c3k-form-header { margin-bottom: 28px; }
.c3k-form-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1a2351;
  margin-bottom: 6px;
}
.c3k-form-subtitle { font-size: 13px; color: #6b7280; margin: 0; }

.c3k-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 575px) { .c3k-form-grid { grid-template-columns: 1fr; } }
.c3k-col-span-2 { grid-column: 1 / -1; }

.c3k-field-group { display: flex; flex-direction: column; gap: 6px; }
.c3k-field-group label {
  font-size: 12px;
  font-weight: 700;
  color: #1a2351;
  text-transform: uppercase;
  letter-spacing: .8px;
}
.c3k-field-group label span { color: #00a8e8; }
.c3k-field-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.c3k-field-wrap > i {
  position: absolute;
  left: 14px;
  color: #9ca3af;
  font-size: 14px;
  pointer-events: none;
  z-index: 1;
}
.c3k-field-wrap input,
.c3k-field-wrap select,
.c3k-field-wrap textarea {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1.5px solid #e0e7ef;
  border-radius: 8px;
  font-size: 14px;
  color: #1a2351;
  background: #f7f9fc;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  box-sizing: border-box;
}
.c3k-field-wrap textarea { resize: vertical; min-height: 120px; }
.c3k-field-wrap select { appearance: none; cursor: pointer; }
.c3k-select-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Pro', 'Font Awesome 6 Free', sans-serif;
  font-weight: 900;
  position: absolute;
  right: 14px;
  color: #9ca3af;
  font-size: 11px;
  pointer-events: none;
}
.c3k-field-wrap input:focus,
.c3k-field-wrap select:focus,
.c3k-field-wrap textarea:focus {
  border-color: #00a8e8;
  box-shadow: 0 0 0 3px rgba(0,168,232,.12);
  background: #fff;
}
.c3k-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 32px;
  background: linear-gradient(135deg, #1a2351 0%, #0d2060 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: transform .25s, box-shadow .25s, background .25s;
  width: 100%;
  justify-content: center;
}
.c3k-submit-btn:hover {
  background: linear-gradient(135deg, #00a8e8 0%, #0089bf 100%);
  box-shadow: 0 8px 24px rgba(0,168,232,.35);
  transform: translateY(-2px);
}

/* Quick action cards */
.c3k-quick-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.c3k-quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  padding: 16px;
  text-decoration: none;
  transition: all .25s;
}
.c3k-quick-card:hover { border-color: #00a8e8; box-shadow: 0 4px 18px rgba(0,168,232,.12); transform: translateY(-2px); }
.c3k-quick-card > i {
  font-size: 22px;
  color: #00a8e8;
  flex-shrink: 0;
}
.c3k-quick-card div { display: flex; flex-direction: column; gap: 2px; }
.c3k-quick-card strong { font-size: 13px; font-weight: 700; color: #1a2351; }
.c3k-quick-card span { font-size: 11px; color: #9ca3af; }

/* ── Map section ── */
.c3k-map-section { background: #fff; }
.c3k-map-header {
  background: #1a2351;
  padding: 12px 0;
}
.c3k-map-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: 13px;
  font-weight: 600;
}
.c3k-map-label i { color: #00a8e8; font-size: 16px; }
.c3k-map-frame { line-height: 0; }

/* ---------- 13. Scroll-to-top ---------- */
.scroll-top { background: #1a2351; }
.scroll-top:hover { background: #00a8e8; }

/* ---------- 12. Cards & boxes ---------- */

/* Office cards */
.c3k-office-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(26,35,81,.08);
  border: 1px solid rgba(26,35,81,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.c3k-office-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(26,35,81,.13);
}
.c3k-office-icon {
  width: 64px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent;
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 2px solid #e0e7ef;
  box-shadow: 0 2px 8px rgba(26,35,81,.1);
}
.c3k-office-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.c3k-office-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a2351;
  margin-bottom: 4px;
}
.c3k-office-label {
  font-size: 12px;
  font-weight: 600;
  color: #00a8e8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}
.c3k-office-divider {
  height: 2px;
  background: linear-gradient(90deg, #00a8e8, transparent);
  border-radius: 2px;
  margin: 16px 0;
}
.c3k-office-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13.5px;
  color: #4a4a57;
  line-height: 1.6;
}
.c3k-office-detail:last-child { margin-bottom: 0; }
.c3k-office-detail i {
  color: #00a8e8;
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}
.c3k-office-detail a { color: #4a4a57; text-decoration: none; }
.c3k-office-detail a:hover { color: #00a8e8; }
.news-box, .service-box, .team-box, .testimonial-box {
  box-shadow: 0 4px 16px rgba(26,35,81,.08);
  border-radius: 4px;
}
.service-box:hover, .team-box:hover, .testimonial-box:hover { border-top: 4px solid #00a8e8; box-shadow: 0 8px 24px rgba(26,35,81,.12); }

/* ── Service section ──────────────────────────────────────────────────── */

/* Section: cut the 120px default padding down */
#service-sec.space {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* Title row — title on left, arrows on right */
#service-sec .c3k-service-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}
#service-sec .c3k-service-header .title-area {
  margin-bottom: 0 !important;
}
/* Pull the nav slightly inward so arrows don't sit at the container edge */
#service-sec .c3k-service-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 4px;
  margin-right: 4px;
}
.c3k-srv-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid #dde3ef;
  background: #fff;
  box-shadow: 0 2px 10px rgba(26,35,81,.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.22s ease;
  color: #1a2351;
  font-size: 14px;
  flex-shrink: 0;
}
.c3k-srv-arrow:hover {
  background: #00a8e8;
  border-color: #00a8e8;
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,168,232,.35);
  transform: scale(1.06);
}
.c3k-srv-arrow i { pointer-events: none; }

/* Gap between carousel slides */
#serviceSlide1 .slick-slide {
  padding: 0 10px;
}
#serviceSlide1 .slick-list {
  margin: 0 -10px;
}

/* ---- Card reset ---- */
#service-sec .service-box.style3 {
  position: relative !important;
  padding: 28px 26px 24px !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  background: #fff !important;
  border-top: 3px solid #e8edf5 !important;
  border-radius: 12px !important;
  box-shadow: 0 3px 18px rgba(26,35,81,.07) !important;
  transition: all 0.28s ease !important;
  filter: none !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 0 !important;
  height: auto !important;
  overflow: visible !important;
}
#service-sec .service-box.style3::before { display: none !important; }
#service-sec .service-box.style3:hover {
  border-top-color: #00a8e8 !important;
  box-shadow: 0 8px 28px rgba(26,35,81,.13) !important;
  transform: translateY(-3px) !important;
  background: #fff !important;
}

/* ---- Icon in normal flow ---- */
#service-sec .service-box_icon {
  position: static !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 12px !important;
  background: rgba(0,168,232,.1) !important;
  padding: 12px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 0 18px 0 !important;
  transition: background 0.28s ease !important;
}
#service-sec .service-box_icon img {
  width: 34px !important;
  height: 34px !important;
  filter: none !important;
  transition: filter 0.28s ease !important;
}
#service-sec .service-box.style3:hover .service-box_icon { background: #00a8e8 !important; }
#service-sec .service-box.style3:hover .service-box_icon img { filter: brightness(0) invert(1) !important; }

/* Decorative shape — hide */
#service-sec .service-box_shape { display: none !important; }

/* ---- Card content ---- */
#service-sec .service-box-content {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}
#service-sec .service-box_title {
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  color: #1a2351 !important;
  margin-bottom: 10px !important;
  line-height: 1.35 !important;
}
#service-sec .service-box_title a { color: #1a2351 !important; }
#service-sec .service-box_text {
  color: #6F6E77 !important;
  line-height: 1.72 !important;
  font-size: 0.9rem !important;
  flex: 1 !important;
  margin-bottom: 18px !important;
  max-width: 100% !important;
}
#service-sec .service-box.style3 .line-btn {
  color: #1a2351 !important;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
}
#service-sec .service-box.style3 .line-btn::before { background-color: #1a2351 !important; }
#service-sec .service-box.style3:hover .line-btn { color: #00a8e8 !important; }
#service-sec .service-box.style3:hover .line-btn::before { background-color: #00a8e8 !important; }

@media (max-width: 767px) {
  #service-sec.space { padding-top: 44px !important; padding-bottom: 44px !important; }
  #service-sec .c3k-service-header { flex-direction: column; align-items: flex-start; margin-bottom: 20px; }
  #service-sec .service-box.style3 { padding: 22px 18px 18px !important; }
  #service-sec .service-box_icon { width: 52px !important; height: 52px !important; margin-bottom: 14px !important; }
}
.bg-theme  { background-color: #1a2351 !important; }
.bg-theme2 { background-color: #00a8e8 !important; }
.bg-theme-light { background-color: #f0f8ff !important; }
.text-theme { color: #1a2351; }
.text-theme:hover { color: #00a8e8; }
.accent-cyan { color: #00a8e8; }

/* ---------- 13. Magnific Popup (absorbed from magnific-popup.min.css) ---------- */
.mfp-bg { top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#0b0b0b;opacity:.8 }
.mfp-wrap { top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:0!important;-webkit-backface-visibility:hidden }
.mfp-container { text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box }
.mfp-container:before { content:'';display:inline-block;height:100%;vertical-align:middle }
.mfp-align-top .mfp-container:before { display:none }
.mfp-content { position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045 }
.mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content { width:100%;cursor:auto }
.mfp-ajax-cur { cursor:progress }
.mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close { cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out }
.mfp-zoom { cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in }
.mfp-auto-cursor .mfp-content { cursor:auto }
.mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter { -webkit-user-select:none;-moz-user-select:none;user-select:none }
.mfp-loading.mfp-figure { display:none }
.mfp-hide { display:none!important }
.mfp-preloader { color:#ccc;position:absolute;top:50%;width:auto;text-align:center;margin-top:-.8em;left:8px;right:8px;z-index:1044 }
.mfp-preloader a { color:#ccc }
.mfp-preloader a:hover { color:#fff }
.mfp-s-ready .mfp-preloader { display:none }
.mfp-s-error .mfp-content { display:none }
button.mfp-close,button.mfp-arrow { overflow:visible;cursor:pointer;background:0 0;border:0;-webkit-appearance:none;display:block;outline:0;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation }
button::-moz-focus-inner { padding:0;border:0 }
.mfp-close { width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:.65;padding:0 0 18px 10px;color:#fff;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace }
.mfp-close:hover,.mfp-close:focus { opacity:1 }
.mfp-close:active { top:1px }
.mfp-close-btn-in .mfp-close { color:#333 }
.mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close { color:#fff;right:-6px;text-align:right;padding-right:6px;width:100% }
.mfp-counter { position:absolute;top:0;right:0;color:#ccc;font-size:12px;line-height:18px;white-space:nowrap }
.mfp-arrow { position:absolute;opacity:.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent }
.mfp-arrow:active { margin-top:-54px }
.mfp-arrow:hover,.mfp-arrow:focus { opacity:1 }
.mfp-arrow:before,.mfp-arrow:after { content:'';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent }
.mfp-arrow:after { border-top-width:13px;border-bottom-width:13px;top:8px }
.mfp-arrow:before { border-top-width:21px;border-bottom-width:21px;opacity:.7 }
.mfp-arrow-left { left:0 }
.mfp-arrow-left:after { border-right:17px solid #fff;margin-left:31px }
.mfp-arrow-left:before { margin-left:25px;border-right:27px solid #3f3f3f }
.mfp-arrow-right { right:0 }
.mfp-arrow-right:after { border-left:17px solid #fff;margin-left:39px }
.mfp-arrow-right:before { border-left:27px solid #3f3f3f }
.mfp-iframe-holder { padding-top:40px;padding-bottom:40px }
.mfp-iframe-holder .mfp-content { line-height:0;width:100%;max-width:900px }
.mfp-iframe-holder .mfp-close { top:-40px }
.mfp-iframe-scaler { width:100%;height:0;overflow:hidden;padding-top:56.25% }
.mfp-iframe-scaler iframe { position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,.6);background:#000 }
.mfp-figure { line-height:0 }
.mfp-figure:after { content:'';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,.6);background:#444 }
.mfp-figure small { color:#bdbdbd;display:block;font-size:12px;line-height:14px }
.mfp-figure figure { margin:0 }
.mfp-bottom-bar { margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto }
.mfp-title { text-align:left;line-height:18px;color:#f3f3f3;word-wrap:break-word;padding-right:36px }
.mfp-image-holder .mfp-content { max-width:100% }
.mfp-gallery .mfp-image-holder .mfp-figure { cursor:pointer }
@media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px) { .mfp-img-mobile .mfp-image-holder { padding-left:0;padding-right:0 } .mfp-img-mobile img.mfp-img { padding:0 } .mfp-img-mobile .mfp-figure:after { top:0;bottom:0 } .mfp-img-mobile .mfp-figure small { display:inline;margin-left:5px } .mfp-img-mobile .mfp-bottom-bar { background:rgba(0,0,0,.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box } .mfp-img-mobile .mfp-bottom-bar:empty { padding:0 } .mfp-img-mobile .mfp-counter { right:5px;top:3px } .mfp-img-mobile .mfp-close { top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,.6);position:fixed;text-align:center;padding:0 } }
@media all and (max-width:900px) { .mfp-arrow { -webkit-transform:scale(.75);transform:scale(.75) } .mfp-arrow-left { -webkit-transform-origin:0;transform-origin:0 } .mfp-arrow-right { -webkit-transform-origin:100%;transform-origin:100% } .mfp-container { padding-left:6px;padding-right:6px } }

/* ---------- 14. FAQ Section ────────────────────────────────────────── */
.c3k-faq-section {
  background: #f7f9fc;
  padding: 80px 0 80px;
}

/* Two-column grid */
.c3k-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

/* ── Left column ── */
.c3k-faq-left .sub-title { display: block; margin-bottom: 8px; }
.c3k-faq-left .sec-title { margin-bottom: 16px; line-height: 1.25; }
.c3k-faq-lead {
  color: #6F6E77;
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Image wrapper */
.c3k-faq-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26,35,81,.14);
  margin-bottom: 28px;
}
.c3k-faq-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}
.c3k-faq-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: #1a2351;
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(26,35,81,.3);
}
.c3k-faq-img-badge i { color: #00a8e8; font-size: 1rem; }

/* Stats row */
.c3k-faq-stats {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 4px 20px rgba(26,35,81,.08);
  gap: 0;
}
.c3k-faq-stat {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.c3k-faq-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a2351;
  line-height: 1;
}
.c3k-faq-stat-plus {
  color: #00a8e8;
  font-size: 1.4rem;
}
.c3k-faq-stat-label {
  font-size: 0.78rem;
  color: #6F6E77;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.c3k-faq-stat-divider {
  width: 1px;
  height: 40px;
  background: #e8edf5;
  flex-shrink: 0;
}

/* ── Right column: accordion ── */
.c3k-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c3k-acc-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(26,35,81,.06);
  border: 1px solid #eaeff6;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.c3k-acc-card.active {
  border-color: #00a8e8;
  box-shadow: 0 4px 20px rgba(0,168,232,.12);
}

.c3k-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}
.c3k-acc-btn:hover { background: #f7f9fc; }
.c3k-acc-card.active .c3k-acc-btn { background: transparent; }

/* Icon circle */
.c3k-acc-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0,168,232,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s ease;
}
.c3k-acc-icon i { color: #00a8e8; font-size: 0.9rem; }
.c3k-acc-card.active .c3k-acc-icon { background: #00a8e8; }
.c3k-acc-card.active .c3k-acc-icon i { color: #fff; }

/* Question text */
.c3k-acc-question {
  flex: 1;
  font-size: 0.97rem;
  font-weight: 600;
  color: #1a2351;
  line-height: 1.4;
}

/* Chevron toggle */
.c3k-acc-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.3s ease;
}
.c3k-acc-toggle i { font-size: 0.75rem; color: #6F6E77; transition: color 0.25s ease; }
.c3k-acc-card.active .c3k-acc-toggle {
  background: #00a8e8;
  transform: rotate(180deg);
}
.c3k-acc-card.active .c3k-acc-toggle i { color: #fff; }

/* Body */
.c3k-acc-body {
  display: none;
  padding: 0 20px 20px 72px;
}
.c3k-acc-body.show { display: block; }
.c3k-acc-body p {
  color: #6F6E77;
  font-size: 0.92rem;
  line-height: 1.75;
  margin: 0;
  padding-top: 4px;
  border-top: 1px solid #eaeff6;
  padding-top: 14px;
}
.c3k-acc-body p strong { color: #1a2351; }

/* CTA below accordion */
.c3k-faq-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eaeff6;
  box-shadow: 0 2px 12px rgba(26,35,81,.05);
}
.c3k-faq-cta p {
  margin: 0;
  font-weight: 600;
  color: #1a2351;
  font-size: 0.95rem;
}
.c3k-faq-cta .themeholy-btn { margin: 0; white-space: nowrap; }

@media (max-width: 1199px) {
  .c3k-faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .c3k-faq-left { max-width: 560px; }
  .c3k-faq-img-wrap img { height: 240px; }
}
@media (max-width: 767px) {
  .c3k-faq-section { padding: 52px 0; }
  .c3k-faq-stats { padding: 16px; gap: 0; }
  .c3k-faq-stat-num { font-size: 1.4rem; }
  .c3k-acc-body { padding-left: 20px; }
  .c3k-faq-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ---------- 15. WhatsApp widget pulse animations ---------- */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.7;transform:scale(1.1)} }
@keyframes breathe { 0%,100%{transform:scale(1);box-shadow:0 4px 20px rgba(37,211,102,.4)} 50%{transform:scale(1.05);box-shadow:0 6px 25px rgba(37,211,102,.6)} }
@keyframes pulseRing { 0%{transform:translate(-50%,-50%) scale(1);opacity:1} 50%{transform:translate(-50%,-50%) scale(1.8);opacity:.3} 100%{transform:translate(-50%,-50%) scale(2.2);opacity:0} }
@keyframes pulseRing2 { 0%{transform:scale(1);opacity:.8} 50%{transform:scale(2);opacity:.2} 100%{transform:scale(2.5);opacity:0} }
@keyframes notificationGrow { 0%,100%{transform:scale(1)} 25%{transform:scale(1.1)} 50%{transform:scale(1.2)} 75%{transform:scale(1.1)} }
@keyframes bounce { 0%,20%,50%,80%,100%{transform:translateY(0) scale(1)} 40%{transform:translateY(-8px) scale(1.1)} 60%{transform:translateY(-4px) scale(1.05)} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }
/* ── 10. About Us Enhancements ─────────────────────────────────── */
.c3k-exp-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--theme-color);
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 15px 45px rgba(26,35,81,.3);
  color: #fff;
  text-align: center;
  z-index: 10;
  border: 2px solid rgba(255,255,255,.1);
  animation: floating 3s ease-in-out infinite;
}
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.c3k-exp-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--theme-color-2);
  margin-bottom: 5px;
}
.c3k-exp-txt {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.c3k-about-card {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.c3k-about-card:hover {
  border-color: var(--theme-color-2);
  box-shadow: 0 10px 30px rgba(26,35,81,.05);
  transform: translateX(5px);
}
.c3k-about-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  background: rgba(0,168,232,.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.c3k-about-card:hover .c3k-about-icon {
  background: var(--theme-color-2);
}
.c3k-about-icon img {
  width: 30px;
  height: 30px;
  transition: all 0.3s ease;
}
.c3k-about-card:hover .c3k-about-icon img {
  filter: brightness(0) invert(1);
}

@media (max-width: 1199px) {
  .c3k-exp-badge { right: 20px; bottom: 20px; }
}

/* ============================================================
   C3K – COMPREHENSIVE MOBILE RESPONSIVE OVERHAUL
   Targets: all pages, all breakpoints
   ============================================================ */

/* ── 1. Global: prevent horizontal scroll & fix image overflow ── */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

/* ── 2. Container: ensure padding on all screen sizes ── */
.container {
  padding-left: 16px !important;
  padding-right: 16px !important;
  width: 100%;
}

/* ── 3. Hero section mobile ── */
@media (max-width: 575px) {
  .hero-3.themeholy-hero-wrapper,
  .hero-3 .themeholy-hero-slide {
    min-height: 360px !important;
    height: auto !important;
  }
  .hero-3 .hero-style3 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    text-align: center;
  }
  .c3k-hero-title {
    font-size: 1.6rem !important;
    line-height: 1.15 !important;
  }
  .c3k-hero-desc {
    font-size: 13px !important;
    max-width: 100% !important;
  }
  .c3k-hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .c3k-hero-btn-primary,
  .c3k-hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .c3k-hero-trust {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .c3k-hero-badge {
    font-size: 10px;
    padding: 5px 12px;
  }
}

/* ── 4. Breadcrumb – fix overflow on narrow screens ── */
.breadcumb-wrapper {
  padding: 40px 0 !important;
  overflow: hidden;
}
.breadcumb-title {
  font-size: clamp(1.5rem, 6vw, 2.5rem);
  word-break: break-word;
}
@media (max-width: 575px) {
  .breadcumb-wrapper {
    padding: 30px 16px !important;
  }
  .breadcumb-content {
    text-align: center;
  }
  .breadcumb-menu-wrapper {
    justify-content: center;
  }
}

/* ── 5. Homepage: About section image fix ── */
@media (max-width: 767px) {
  #about-sec .img-box4 {
    text-align: center;
  }
  #about-sec .img4 {
    position: relative;
    overflow: visible;
  }
  #about-sec .img4 img {
    height: 280px !important;
    border-radius: 16px;
  }
  .c3k-exp-badge {
    right: 0 !important;
    bottom: -20px !important;
    padding: 14px !important;
    font-size: 13px;
  }
  .c3k-exp-num {
    font-size: 26px !important;
  }
  .c3k-exp-txt {
    font-size: 11px !important;
  }
}
@media (max-width: 575px) {
  #about-sec .img4 img {
    height: 220px !important;
  }
  .c3k-exp-badge {
    position: relative !important;
    right: auto !important;
    bottom: auto !important;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-direction: row;
    margin-top: 12px;
    padding: 12px 20px !important;
    border-radius: 50px !important;
  }
  .c3k-exp-num { font-size: 22px !important; margin-bottom: 0 !important; }
  .c3k-exp-txt { text-align: left; }
}

/* ── 6. Homepage: Feature grid section ── */
.feature-grid-wrap.style2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1199px) {
  .feature-grid-wrap.style2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .feature-grid-wrap.style2 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.feature-grid.style2 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  transition: background 0.3s ease;
}
.feature-grid.style2:hover {
  background: rgba(255,255,255,0.12);
}
.feature-grid.style2 .feature-grid_icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,168,232,0.15);
  border-radius: 14px;
}
.feature-grid.style2 .feature-grid_icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.feature-grid.style2 .feature-grid_title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.feature-grid.style2 .feature-grid_text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
}

/* ── 7. Homepage: Office cards (Tailwind grid helper) ── */
@media (max-width: 767px) {
  .c3k-office-card {
    padding: 20px 16px !important;
  }
}

/* ── 8. About page: image collage overflow fix ── */
@media (max-width: 991px) {
  .c3k-about-intro {
    padding: 52px 0;
  }
  .c3k-about-images {
    padding-bottom: 40px;
    padding-right: 24px;
  }
  .c3k-about-img-main img {
    height: 300px;
  }
  .c3k-about-img-secondary {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .c3k-about-intro {
    padding: 40px 0;
  }
  .c3k-about-images {
    padding-bottom: 100px;
    padding-right: 20px;
  }
  .c3k-about-img-main img {
    height: 260px;
  }
}
@media (max-width: 575px) {
  .c3k-about-intro {
    padding: 32px 0;
  }
  .c3k-about-images {
    padding-bottom: 80px;
    padding-right: 0;
    overflow: hidden;
  }
  .c3k-about-img-main img {
    height: 220px;
  }
  .c3k-about-img-secondary {
    width: 52%;
  }
  .c3k-about-heading {
    font-size: 1.4rem;
  }
  .c3k-about-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .c3k-about-btn-primary,
  .c3k-about-btn-secondary {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}

/* ── 9. About: Why Choose Us ── */
@media (max-width: 991px) {
  .c3k-why-section { padding: 52px 0; }
  .c3k-why-img { height: 320px; }
  .c3k-why-grid { gap: 36px; }
}
@media (max-width: 767px) {
  .c3k-why-img { height: 260px; }
}
@media (max-width: 575px) {
  .c3k-why-img { height: 220px; }
  .c3k-why-section { padding: 36px 0; }
  .c3k-why-overlay-card {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 12px 14px;
    gap: 10px;
  }
}

/* ── 10. About: Stats strip ── */
@media (max-width: 767px) {
  .c3k-about-stats-strip { padding: 32px 0; }
  .c3k-about-stat {
    padding: 16px 10px;
  }
  .c3k-about-stat-num { font-size: 1.7rem; }
  /* Fix 2x2 border on mobile */
  .c3k-about-stats-grid .c3k-about-stat:nth-child(2) { border-right: none; }
  .c3k-about-stats-grid .c3k-about-stat:nth-child(1),
  .c3k-about-stats-grid .c3k-about-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

/* ── 11. About: CTA section ── */
@media (max-width: 575px) {
  .c3k-about-cta { padding: 40px 0; }
  .c3k-about-cta-text h2 { font-size: 1.35rem; }
  .c3k-about-cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .c3k-about-btn-primary,
  .c3k-about-cta-track {
    width: 100%;
    justify-content: center;
  }
}

/* ── 12. Contact page ── */
@media (max-width: 991px) {
  .c3k-contact-section { padding: 52px 0; }
}
@media (max-width: 767px) {
  .c3k-form-card {
    padding: 24px 20px !important;
  }
  .c3k-contact-heading {
    font-size: 1.4rem;
  }
  .c3k-quick-actions {
    grid-template-columns: 1fr !important;
  }
  .c3k-map-frame iframe {
    height: 300px !important;
  }
}
@media (max-width: 575px) {
  .c3k-form-card {
    padding: 18px 14px !important;
  }
  .c3k-form-grid {
    grid-template-columns: 1fr !important;
  }
  .c3k-col-span-2 {
    grid-column: 1 !important;
  }
  .c3k-contact-heading {
    font-size: 1.2rem;
  }
  .c3k-submit-btn {
    padding: 12px 20px;
    font-size: 13px;
  }
  .c3k-offices-block {
    padding: 14px;
  }
  .c3k-office-tabs {
    flex-wrap: wrap;
    gap: 6px;
  }
}

/* ── 13. Quote page ── */
@media (max-width: 767px) {
  .c3k-quote-sidebar {
    position: static !important;
    top: auto !important;
    padding: 28px 20px !important;
  }
  .c3k-quote-sidebar-title { font-size: 18px; }
  .c3k-form-navigation {
    padding: 16px 20px !important;
    flex-wrap: wrap;
    gap: 10px;
  }
  .c3k-btn-next { margin-left: 0; width: 100%; justify-content: center; }
  .c3k-btn-back { width: 100%; justify-content: center; }
}
@media (max-width: 575px) {
  .c3k-progress-steps {
    padding: 16px 12px !important;
  }
  .c3k-progress-label {
    font-size: 9px;
    letter-spacing: 0.5px;
  }
  .c3k-progress-circle {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
  .c3k-quote-form-body {
    padding: 20px 14px !important;
  }
}

/* ── 14. Track Order page ── */
@media (max-width: 767px) {
  .c3k-track-container {
    padding: 24px 0 !important;
  }
  .c3k-track-search-card {
    padding: 20px 14px !important;
    margin: 0 0 20px !important;
  }
}

/* ── 15. FAQ section ── */
@media (max-width: 575px) {
  .c3k-faq-section { padding: 36px 0; }
  .c3k-acc-btn {
    padding: 14px 14px;
    gap: 10px;
  }
  .c3k-acc-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }
  .c3k-acc-question { font-size: 0.88rem; }
  .c3k-acc-body {
    padding-left: 14px;
    padding-right: 14px;
    padding-bottom: 16px;
  }
  .c3k-faq-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .c3k-faq-cta .themeholy-btn { width: 100%; justify-content: center; }
  .c3k-faq-stats {
    flex-wrap: wrap;
  }
  .c3k-faq-stat {
    min-width: 33%;
  }
  .c3k-faq-stat-divider { display: none; }
}

/* ── 16. Services page ── */
@media (max-width: 575px) {
  .c3k-services-page-section { padding: 36px 0; }
  .c3k-section-header { margin-bottom: 28px; }
  .c3k-svc-body { padding: 18px 16px 16px; }
  .c3k-svc-title { font-size: 0.95rem; padding-right: 0; }
}

/* ── 17. Team page ── */
@media (max-width: 575px) {
  .c3k-team-section { padding: 36px 0; }
  .c3k-team-body { padding: 14px 14px 12px; }
  .c3k-team-name { font-size: 0.9rem; }
}

/* ── 18. News/Blog page (Tailwind classes work, override prose) ── */
@media (max-width: 575px) {
  /* Tailwind classes like py-16, px-4 already scale, but prose can overflow */
  .prose {
    max-width: 100% !important;
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .prose table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .prose img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* ── 19. Service Details page ── */
@media (max-width: 767px) {
  .c3k-acc-btn { gap: 10px; padding: 14px 14px; }
  .c3k-acc-body { padding-left: 14px; padding-bottom: 14px; }
}

/* ── 20. Offices grid on homepage (Tailwind md:grid-cols-3) ── */
@media (max-width: 575px) {
  .c3k-office-card {
    padding: 20px 16px !important;
  }
  .c3k-office-title { font-size: 15px; }
}

/* ── 21. Footer ── */
@media (max-width: 767px) {
  .footer-wrapper .widget-area {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
  }
  .c3k-footer-logo img {
    max-height: 60px !important;
  }
  .c3k-fnl-form input,
  .c3k-fnl-form button {
    font-size: 13px;
    padding: 10px 12px;
  }
}
@media (max-width: 575px) {
  .c3k-footer-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .c3k-footer-offices {
    flex-wrap: wrap;
    gap: 6px;
  }
  .copyright-wrap {
    text-align: center;
    font-size: 12px;
    padding-bottom: 100px !important;
  }
}

/* ── 22. Pre-footer contact strip ── */
@media (max-width: 575px) {
  .c3k-prefoot {
    padding: 14px 12px;
  }
  .c3k-prefoot-inner {
    gap: 12px !important;
  }
  .c3k-prefoot-item {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    min-width: unset !important;
    width: 100% !important;
  }
  .c3k-prefoot-value { font-size: 12px; }
  .c3k-prefoot-label { font-size: 9px; }
}

/* ── 23. WhatsApp widget – reduce on very small ── */
@media (max-width: 360px) {
  .whatsapp-widget {
    bottom: 75px !important;
    right: 10px !important;
  }
  .whatsapp-chat {
    width: calc(100vw - 20px) !important;
    right: -5px !important;
  }
  .whatsapp-icon {
    width: 50px !important;
    height: 50px !important;
  }
}

/* ── 24. Stats strip on homepage ── */
@media (max-width: 575px) {
  .c3k-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .c3k-stat-item:nth-child(2) { border-right: none; }
  .c3k-stat-item:nth-child(1),
  .c3k-stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .c3k-stat-number { font-size: 1.5rem; }
}

/* ── 25. General section padding reduction on mobile ── */
@media (max-width: 767px) {
  .space,
  section.space {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
  .c3k-mv-section,
  .c3k-why-section,
  .c3k-offices-section,
  .c3k-how-section,
  .c3k-services-page-section,
  .c3k-team-section,
  .c3k-contact-section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }
}
@media (max-width: 575px) {
  .space,
  section.space {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .c3k-mv-section,
  .c3k-why-section,
  .c3k-offices-section,
  .c3k-how-section,
  .c3k-services-page-section,
  .c3k-team-section,
  .c3k-contact-section {
    padding-top: 36px !important;
    padding-bottom: 36px !important;
  }
  .c3k-section-title {
    font-size: 1.35rem !important;
  }
  .c3k-section-sub {
    font-size: 13px;
  }
  .c3k-section-header {
    margin-bottom: 28px;
  }
}

/* ── 26. Mission & Vision cards ── */
@media (max-width: 767px) {
  .c3k-mv-card {
    padding: 24px 20px;
  }
}

/* ── 27. Global offices grid (about page) ── */
@media (max-width: 767px) {
  .c3k-offices-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .c3k-office-card {
    padding: 22px 18px !important;
  }
}

/* ── 28. Team CTA bar ── */
@media (max-width: 575px) {
  .c3k-team-cta { padding: 32px 0; }
  .c3k-team-cta-text h3 { font-size: 1.05rem; }
}

/* ── 29. How It Works steps (services page) ── */
@media (max-width: 767px) {
  .c3k-how-section { padding: 40px 0; }
  .c3k-how-step { padding: 0 8px; }
  .c3k-how-icon { width: 56px; height: 56px; font-size: 20px; }
}

/* ── 30. Scroll-to-top button – don't overlap WhatsApp ── */
@media (max-width: 991px) {
  .scroll-top {
    right: 15px !important;
    bottom: 80px !important;
  }
}
