/* vimteq — mobile hero banner v2 (2025-08-28) */
/* =========================================================
   Landrick – custom CSS (Freelancer template)
   Primary: #2f55d4
   Cross-browser: Chrome, Firefox, Safari, Edge, Opera
   ========================================================= */

/* ---------- Font scope ---------------------------------- */
.public-layout,
.public-layout * {
  font-family: 'Nunito', sans-serif;
  /* Prevent iOS Safari from auto-enlarging fonts */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* ---------- Bootstrap primary override ------------------- */
.public-layout {
  --bs-primary: #2f55d4;
  --bs-primary-rgb: 47, 85, 212;
  --bs-link-color: #2f55d4;
  --bs-link-hover-color: #2443b8;
  /* Remove 300ms tap delay on touch devices */
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* ---------- Section utilities ---------------------------- */
.public-layout .section {
  padding: 60px 0;
  position: relative;
}

.public-layout .section-title {
  position: relative;
}

.public-layout .para-desc {
  max-width: 600px;
}

.public-layout .para-dark {
  color: #3c4858 !important;
}

/* ---------- Hero ----------------------------------------- */
.public-layout .bg-half-170 {
  padding: 170px 0;
  background-size: cover !important;
  background-position: center center !important;
  position: relative !important;
}

/* Hero full-viewport height — cross-browser safe */
.public-layout .hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;                    /* legacy fallback */
  min-height: calc(var(--vh, 1vh) * 100); /* JS sets --vh for iOS Safari */
  padding-top: 80px;
  background-color: #eef3fb;
}

/* Browsers that support 100svh (excludes address bar on mobile) */
@supports (min-height: 100svh) {
  .public-layout .hero-section {
    min-height: 100svh;
  }
}

/* Desktop map background (hidden on phones) */
.public-layout .hero-desktop-bg {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/images/Hero_Background.png");
  background-size: cover;
  background-position: center;
}

.public-layout .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.public-layout .hero-headline {
  line-height: 1.2;
  color: #1a2340;
}

.public-layout .hero-headline-accent {
  color: #2f55d4;
}

.public-layout .hero-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #5a6a82;
  max-width: 480px;
}

.public-layout .hero-cta-primary,
.public-layout .hero-cta-secondary {
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

/* Phone banner image — hidden on desktop */
.public-layout .hero-mobile-banner {
  display: none;
}

.public-layout .hero-people-mobile {
  display: none;
}

.public-layout .hero-mobile-banner-fade {
  display: none;
}

.public-layout .hero-text-blur {
  display: none;
}

/* Desktop/tablet side people image */
.public-layout .hero-people-desktop {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 58%;
  max-width: none !important;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
  pointer-events: none;
  -webkit-filter: drop-shadow(-10px 0 30px rgba(47, 85, 212, 0.12));
  filter: drop-shadow(-10px 0 30px rgba(47, 85, 212, 0.12));
}

@media (min-width: 768px) {
  .public-layout .hero-desktop-bg,
  .public-layout .hero-people-desktop {
    display: block;
  }

  .public-layout .hero-people-mobile,
  .public-layout .hero-mobile-banner {
    display: none !important;
  }
}

/* Hero inner row height */
.public-layout .hero-row {
  min-height: calc(100vh - 80px);
  min-height: calc(var(--vh, 1vh) * 100 - 80px);
}

@supports (min-height: 100svh) {
  .public-layout .hero-row {
    min-height: calc(100svh - 80px);
  }
}

/* Hero headline — clamp() with safe fallback */
.public-layout .hero-headline {
  font-size: 2rem; /* fallback for browsers without clamp() */
}

@supports (font-size: clamp(1px, 1vw, 2px)) {
  .public-layout .hero-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
  }
}

.public-layout .heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #3c4858;
}

.public-layout .freelance-hero {
  position: relative;
}

.public-layout .bg-shape {
  position: relative;
  z-index: 1;
}

/* ---------- Soft colours --------------------------------- */
.public-layout .bg-soft-primary {
  background-color: rgba(47, 85, 212, 0.1) !important;
  border: 1px solid rgba(47, 85, 212, 0.1) !important;
  color: #2f55d4 !important;
}

.public-layout .bg-soft-dark {
  background-color: rgba(33, 37, 41, 0.1) !important;
  border: 1px solid rgba(33, 37, 41, 0.1) !important;
  color: #212529 !important;
}

/* ---------- Feature cards -------------------------------- */
.public-layout .features {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.public-layout .feature-primary .icons {
  background-color: rgba(47, 85, 212, 0.1);
  color: #2f55d4;
}

.public-layout .feature-clean {
  background-color: #fff;
}

.public-layout .course-feature {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.public-layout .course-feature:hover {
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(47, 85, 212, 0.15) !important;
}

.public-layout .icons {
  height: 45px;
  width: 45px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
}

.public-layout .full-img {
  position: absolute;
  bottom: -15px;
  right: -15px;
  opacity: 0.05;
  font-size: 4rem;
  color: #2f55d4;
  pointer-events: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.public-layout .course-feature:hover .full-img {
  opacity: 0.1;
  bottom: -8px;
  right: -8px;
}

/* ---------- Titles --------------------------------------- */
.public-layout .title {
  font-weight: 600;
  line-height: 1.4;
  color: #3c4858;
}

/* ---------- Buttons -------------------------------------- */
.public-layout .btn-soft-primary {
  background-color: rgba(47, 85, 212, 0.05) !important;
  border: 1px solid rgba(47, 85, 212, 0.05) !important;
  color: #2f55d4 !important;
}

.public-layout .btn-soft-primary:hover {
  background-color: #2f55d4 !important;
  border-color: #2f55d4 !important;
  color: #fff !important;
}

.public-layout .btn-pills {
  border-radius: 100px;
}

.public-layout .btn-icon {
  height: 36px;
  width: 36px;
  padding: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.public-layout .btn-primary {
  background-color: #2f55d4 !important;
  border-color: #2f55d4 !important;
  color: #fff !important;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}

.public-layout .btn-primary:hover {
  background-color: #2443b8 !important;
  border-color: #2443b8 !important;
}

.public-layout .text-primary {
  color: #2f55d4 !important;
}

/* Remove tap highlight on all interactive elements (iOS) */
.public-layout a,
.public-layout button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  -ms-touch-action: manipulation;
}

/* ---------- Avatar --------------------------------------- */
.public-layout .avatar-ex-sm {
  max-height: 25px !important;
}

/* ---------- Sticky sidebar ------------------------------- */
.public-layout .sticky-bar {
  position: -webkit-sticky; /* Safari < 13 */
  position: sticky;
  top: 80px;
}

/* ---------- Spacing helpers ----------------------------- */
.public-layout .mt-100 {
  margin-top: 100px;
}

.public-layout .mt-60 {
  margin-top: 60px;
}

/* ---------- Fea icon ------------------------------------ */
.public-layout .fea {
  display: inline-block;
}

.public-layout .fea.icon-sm {
  height: 16px;
  width: 16px;
}

/* ---------- Topnav --------------------------------------- */
.public-layout #topnav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1100;
  background-color: transparent;
  border: 0;
  padding: 0;
  padding-top: env(safe-area-inset-top, 0px);
  overflow: visible !important;
  -webkit-transition: background-color 0.4s ease, box-shadow 0.4s ease;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  will-change: auto;
}

.public-layout #topnav.nav-hidden {
  /* Disabled on mobile via media query; desktop-only slide */
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  transition: transform 0.3s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

.public-layout #topnav.nav-sticky {
  background-color: #fff !important;
  box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
}

.public-layout #topnav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.public-layout #topnav .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}

.public-layout #topnav .logo img,
.public-layout .logo-footer img {
  height: 36px;
  width: auto;
  max-height: 40px;
  object-fit: contain;
}

.public-layout .logo-light-mode {
  display: block;
}
.public-layout .logo-dark-mode {
  display: none;
}

/* Nav pills (Bootstrap overrides) */
.public-layout .nav-link.active,
.public-layout .nav-pills .nav-link.active {
  background-color: #2f55d4 !important;
  color: #fff !important;
}

.public-layout .nav-pills .nav-link {
  color: #3c4858;
}

.public-layout .nav-pills .nav-link:hover {
  color: #2f55d4;
}

/* ---------- Buy button / right nav ----------------------- */
.public-layout .buy-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* gap fallback for Safari < 14.1 */
  -webkit-column-gap: 8px;
  column-gap: 8px;
}

/* Language dropdown */
.public-layout .buy-button .dropdown-toggle {
  font-size: 13px;
  font-weight: 600;
  border-color: #e2e8f0;
  color: #3c4858;
  background: #f8fafc;
}

.public-layout .buy-button .dropdown-toggle:hover,
.public-layout .buy-button .dropdown-toggle:focus {
  background: #eef2ff;
  border-color: rgba(47, 85, 212, 0.3);
  color: #2f55d4;
  box-shadow: none;
  outline: none;
}

.public-layout .buy-button .dropdown-menu {
  font-size: 13px;
  min-width: 120px;
  border: 1px solid rgba(47, 85, 212, 0.1);
  box-shadow: 0 5px 20px rgba(60, 72, 88, 0.1);
}

.public-layout .buy-button .dropdown-item:hover {
  background-color: rgba(47, 85, 212, 0.08);
  color: #2f55d4;
}

/* ---------- Mobile menu ---------------------------------- */
.public-layout .menu-extras {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.public-layout .navbar-toggle {
  border: 0;
  padding: 0;
  cursor: pointer;
  background: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 24px;
}

/* Safari < 14.1 gap fallback for lines */
.public-layout .navbar-toggle .lines span + span {
  margin-top: 5px;
}

.public-layout .navbar-toggle .lines span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #3c4858;
  border-radius: 2px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}

/* ── Desktop nav links (inline after logo) ──────────────── */
.public-layout .nav-links-desktop {
  display: none;
  align-items: center;
  gap: 0.15rem;
}

.public-layout .nav-desktop-actions {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

.public-layout .nav-mobile-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.25rem;
  position: relative;
  z-index: 5;
}

@media (min-width: 992px) {
  .public-layout .nav-links-desktop {
    display: flex !important;
  }

  .public-layout .nav-desktop-actions {
    display: flex !important;
  }

  .public-layout .nav-mobile-actions,
  .public-layout .mobile-nav-panel,
  .public-layout .mobile-nav-scrim {
    display: none !important;
  }
}

.public-layout .nav-links-desktop .sub-menu-item {
  display: block;
  color: #3c4858;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  line-height: 70px;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  padding: 0 12px;
  text-decoration: none;
  white-space: nowrap;
}

.public-layout .nav-links-desktop .sub-menu-item:hover {
  color: #2f55d4;
}

/* ── Mobile menu drawer (opens from hamburger only) ─────── */
.public-layout #topnav .nav-bar-inner {
  position: relative;
  z-index: 5;
}

.public-layout .mobile-nav-panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 4;
  background: #fff;
  border-top: 1px solid rgba(47, 85, 212, 0.1);
  box-shadow: 0 18px 40px rgba(60, 72, 88, 0.18);
  padding: 0.35rem 1rem 1.15rem;
  max-height: min(75vh, 520px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  -webkit-transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.public-layout .mobile-nav-panel.is-open {
  display: block !important;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.public-layout .mobile-nav-panel[hidden] {
  display: none !important;
}

.public-layout .mobile-nav-list li + li {
  border-top: 1px solid #eef2f7;
}

.public-layout .mobile-nav-link {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 0.25rem;
  color: #3c4858;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.public-layout .mobile-nav-link:hover,
.public-layout .mobile-nav-link:focus-visible {
  color: #2f55d4;
  outline: none;
}

.public-layout .mobile-nav-actions {
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid #eef2f7;
}

.public-layout .mobile-nav-actions .btn {
  min-height: 48px;
  font-weight: 700;
}

.public-layout .mobile-nav-scrim {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(26, 35, 64, 0.45);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.public-layout .nav-lang-btn {
  min-height: 40px;
  padding-left: 0.7rem;
  padding-right: 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid #e2e8f0 !important;
  background: #f8fafc !important;
  color: #3c4858 !important;
}

.public-layout .nav-lang-btn:hover,
.public-layout .nav-lang-btn:focus-visible {
  background: #eef2ff !important;
  border-color: rgba(47, 85, 212, 0.3) !important;
  color: #2f55d4 !important;
  box-shadow: none;
}

/* ── Mobile hamburger button ────────────────────────────── */
.public-layout .navbar-toggler-landrick {
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 10px;
  position: relative;
  z-index: 6;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.public-layout .navbar-toggler-landrick:hover,
.public-layout .navbar-toggler-landrick:focus-visible {
  background-color: rgba(47, 85, 212, 0.08);
  outline: none;
}

.public-layout .navbar-toggler-landrick .lines {
  display: block;
  width: 22px;
  height: 16px;
  position: relative;
}

.public-layout .navbar-toggler-landrick .lines span {
  display: block;
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #3c4858;
  border-radius: 2px;
  -webkit-transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease;
}

.public-layout .navbar-toggler-landrick .lines span:nth-child(1) { top: 0; }
.public-layout .navbar-toggler-landrick .lines span:nth-child(2) { top: 7px; }
.public-layout .navbar-toggler-landrick .lines span:nth-child(3) { top: 14px; }

.public-layout .navbar-toggler-landrick.open .lines span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.public-layout .navbar-toggler-landrick.open .lines span:nth-child(2) {
  opacity: 0;
}

.public-layout .navbar-toggler-landrick.open .lines span:nth-child(3) {
  top: 7px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

html.nav-menu-open,
body.nav-menu-open {
  overflow: hidden;
}

.public-layout #topnav.menu-open {
  background-color: #fff !important;
  box-shadow: 0 0 3px rgba(60, 72, 88, 0.15);
  overflow: visible;
}

/* ---------- Foot subscribe ------------------------------ */
.public-layout .foot-subscribe .form-icon {
  position: relative;
}

.public-layout .foot-subscribe .form-icon .icons {
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: auto;
  width: auto;
  background: none;
  border-radius: 0;
}

.public-layout .foot-subscribe .form-icon .form-control {
  padding-left: 40px;
}

/* ---------- Footer --------------------------------------- */
.public-layout .footer {
  background-color: #202942;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.public-layout .footer.footer-light {
  background-color: #f8f9fc;
  color: #8492a6;
}

.public-layout .footer-py-60 {
  padding: 60px 0;
}

.public-layout .footer-py-30 {
  padding: 30px 0;
}

.public-layout .footer-head {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #f8f9fc;
}

.public-layout .footer.footer-light .footer-head {
  color: #3c4858;
}

.public-layout .footer-list {
  margin-bottom: 0;
  padding-left: 0;
}

.public-layout .footer-list li {
  margin-bottom: 10px;
  list-style: none;
}

.public-layout .text-foot {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 14px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* Safari < 14.1 gap fallback for text-foot icon */
.public-layout .text-foot svg {
  margin-right: 4px;
}

.public-layout .footer.footer-light .text-foot {
  color: #8492a6;
}

.public-layout .text-foot:hover {
  color: #2f55d4;
}

.public-layout .bg-footer {
  background-color: #161e2e;
}

/* Social icons */
.public-layout .social-icon {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* Safari < 14.1 gap fallback */
.public-layout .social-icon li {
  margin: 0 6px 6px 0;
}

.public-layout .social-icon li a {
  height: 32px;
  width: 32px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.5);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-decoration: none;
}

.public-layout .footer.footer-light .social-icon li a {
  border-color: #dee2e6;
  color: #3c4858;
}

@media (max-width: 991.98px) {
  .public-layout .social-icon li a {
    height: 40px;
    width: 40px;
  }
}

.public-layout .social-icon li a:hover {
  background-color: #2f55d4;
  border-color: #2f55d4;
  color: #fff;
}

/* ---------- Counter stat cards -------------------------- */
.public-layout .counter-box {
  text-align: center;
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(60, 72, 88, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  will-change: transform;
}

.public-layout .counter-box:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.public-layout .counter-box h2 {
  font-size: 42px;
  font-weight: 700;
  color: #2f55d4;
  margin-bottom: 5px;
}

/* ---------- Tab content --------------------------------- */
.public-layout .tab-content-box {
  padding: 30px;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(60, 72, 88, 0.1);
  min-height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ---------- Services selector --------------------------- */

.public-layout .svc-card {
  background: #fff;
  border-radius: 12px !important;
  border: 2px solid #eef2ff !important;
  box-shadow: 0 2px 12px rgba(47,85,212,0.06);
  cursor: pointer;
  -webkit-transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  /* Remove default button styles cross-browser */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.public-layout .svc-card:hover:not(.svc-card--active) {
  border-color: rgba(47,85,212,0.35) !important;
  box-shadow: 0 6px 24px rgba(47,85,212,0.12);
}

.public-layout .svc-card--active {
  border-color: #2f55d4 !important;
  background: #f0f4ff !important;
  /* linear-gradient fallback: just use solid for IE, gradient for modern */
  background: -webkit-linear-gradient(315deg, #f0f4ff 0%, #e8efff 100%) !important;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8efff 100%) !important;
  box-shadow: 0 8px 28px rgba(47,85,212,0.2) !important;
}

.public-layout .svc-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(47,85,212,0.1);
  color: #2f55d4;
  -webkit-transition: background 0.2s ease, color 0.2s ease;
  transition: background 0.2s ease, color 0.2s ease;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.public-layout .svc-card--active .svc-card-icon,
.public-layout .svc-card-icon--lg {
  background: #2f55d4;
  color: #fff;
}

.public-layout .svc-card-icon--lg {
  width: 52px;
  height: 52px;
  border-radius: 14px;
}

@-webkit-keyframes svcDetailIn {
  from { opacity: 0; -webkit-transform: translateX(16px); transform: translateX(16px); }
  to   { opacity: 1; -webkit-transform: translateX(0);    transform: translateX(0); }
}

@keyframes svcDetailIn {
  from { opacity: 0; transform: translateX(16px); }
  to   { opacity: 1; transform: translateX(0); }
}

.public-layout .svc-detail-panel {
  -webkit-animation: svcDetailIn 0.3s ease forwards;
  animation: svcDetailIn 0.3s ease forwards;
}

/* ---------- Back-to-top button -------------------------- */
/* Uses opacity+visibility (not display toggle) so transition works in all browsers */
#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background-color: #2f55d4;
  color: #fff;
  border: none;
  border-radius: 50%;
  /* Always display:flex — visibility controls whether it's interactive/visible */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1050;
  box-shadow: 0 4px 16px rgba(47, 85, 212, 0.45);
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  /* Hidden by default — animatable unlike display:none */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: transform, opacity;
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#back-to-top:hover {
  background-color: #2443b8;
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

/* ---------- Safari form element resets ------------------ */
.public-layout input.form-control,
.public-layout textarea.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.public-layout .form-control,
.public-layout .form-select {
  border-radius: 0.375rem !important;
  min-height: 44px;
  font-size: 16px; /* prevents iOS zoom on focus */
}

/* Keep native select arrow (appearance:none removes it in Safari/Chrome) */
.public-layout .form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.25rem;
}

.public-layout textarea.form-control {
  min-height: 120px;
}

/* ---------- Image rendering ----------------------------- */
.public-layout img {
  max-width: 100%;
}

.public-layout .hero-section .hero-people-mobile,
.public-layout .hero-section .hero-people-desktop {
  max-width: none;
}

/* =========================================================
   Responsive: phones & tablets
   ========================================================= */

.public-layout main {
  overflow-x: hidden;
  overflow-x: clip;
}

/* Never auto-hide the sticky nav on mobile/tablet */
@media (max-width: 991.98px) {
  .public-layout #topnav.nav-hidden {
    -webkit-transform: none !important;
    transform: none !important;
  }
}

/* Safe-area aware back-to-top */
#back-to-top {
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  right: calc(16px + env(safe-area-inset-right, 0px));
}

/* Tablet (md–lg): slightly denser nav, keep team photo from covering copy */
@media (min-width: 768px) and (max-width: 991.98px) {
  .public-layout .hero-section {
    min-height: auto;
  }

  .public-layout .hero-row {
    min-height: calc(100vh - 70px);
    min-height: calc(var(--vh, 1vh) * 100 - 70px);
    min-height: calc(100svh - 70px);
  }

  .public-layout .hero-people-desktop {
    width: 50%;
    right: -4%;
  }

  .public-layout .section {
    padding: 56px 0;
  }

  .public-layout .nav-links-desktop .sub-menu-item {
    padding: 0 10px;
    font-size: 13px;
  }
}

/* Phones + small tablets */
@media (max-width: 991.98px) {
  .public-layout #topnav .container,
  .public-layout .nav-bar-inner {
    height: 64px;
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }

  .public-layout .brand-logo-nav,
  .public-layout #topnav .logo .brand-logo-nav {
    height: 30px !important;
    max-width: min(148px, 42vw) !important;
  }

  .public-layout .section {
    padding: 48px 0;
  }

  .public-layout .section-title .title,
  .public-layout h4.title {
    font-size: clamp(1.45rem, 4.5vw, 1.85rem) !important;
    line-height: 1.3;
  }

  .public-layout .svc-card .p-4 {
    padding: 1rem !important;
  }

  .public-layout .svc-detail-panel {
    margin-top: 0.5rem;
  }

  .public-layout .svc-detail-panel .card {
    padding: 1.25rem !important;
  }

  .public-layout .footer-py-60 {
    padding: 48px 0 36px;
  }

  .public-layout .footer .col-12.mt-4 {
    margin-top: 1.75rem !important;
  }

  .public-layout .client-testi {
    flex-direction: column;
    align-items: flex-start;
  }

  .public-layout .client-testi > div:first-child {
    margin-bottom: 0.75rem;
  }

  .public-layout .counter-box {
    text-align: center;
    padding: 0.5rem 0.25rem;
  }

  .public-layout .pricing .card,
  .public-layout #pricing .card {
    margin-bottom: 0;
  }
}

/* Phone: team photo on top, copy stacked below so faces stay visible */
@media (max-width: 767.98px) {
  .public-layout {
    --hero-mobile-nav: calc(56px + env(safe-area-inset-top, 0px));
  }

  .public-layout #topnav {
    background-color: #fff !important;
    box-shadow: 0 1px 0 rgba(60, 72, 88, 0.08);
  }

  .public-layout #topnav .container,
  .public-layout .nav-bar-inner {
    height: 56px;
  }

  .public-layout .brand-logo-nav,
  .public-layout #topnav .logo .brand-logo-nav {
    height: 26px !important;
    max-width: min(132px, 40vw) !important;
  }

  .public-layout .hero-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: auto;
    max-height: none;
    min-height: 0;
    padding-top: var(--hero-mobile-nav);
    padding-bottom: 0;
    overflow: hidden;
    background-color: #eef3fb;
  }

  .public-layout .hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: var(--hero-mobile-nav);
    background: #fff;
    z-index: 2;
    pointer-events: none;
  }

  .public-layout .hero-mobile-banner {
    display: block;
    position: relative;
    width: 100%;
    flex-shrink: 0;
    z-index: 0;
    aspect-ratio: 1.46 / 1;
    max-height: min(42svh, 320px);
    background-color: #eef3fb;
  }

  .public-layout .hero-people-mobile {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    object-fit: contain;
    object-position: center bottom;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .public-layout .hero-mobile-banner-fade {
    display: block !important;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 28%;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(238, 243, 251, 0) 0%,
      rgba(238, 243, 251, 0.55) 55%,
      #eef3fb 100%
    );
  }

  .public-layout .hero-row {
    min-height: 0;
  }

  .public-layout .hero-content {
    position: relative;
    z-index: 3;
    flex: 1 1 auto;
    background: #eef3fb;
    padding-top: 0.35rem;
    padding-bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  }

  .public-layout .hero-copy,
  .public-layout .hero-copy.py-4 {
    position: relative;
    padding-top: 0 !important;
    padding-bottom: 0.25rem !important;
  }

  .public-layout .hero-text-blur {
    display: none;
  }

  .public-layout .hero-copy .hero-headline,
  .public-layout .hero-copy .hero-body,
  .public-layout .hero-copy .hero-cta-group {
    position: relative;
    z-index: 1;
  }

  .public-layout .hero-headline {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem) !important;
    line-height: 1.22 !important;
    margin-bottom: 0.6rem !important;
    color: #1a2340 !important;
    text-shadow: none;
  }

  .public-layout .hero-headline-accent {
    color: #2f55d4 !important;
    text-shadow: none;
  }

  .public-layout .hero-body {
    font-size: 0.875rem;
    line-height: 1.5;
    max-width: none;
    color: #4f5665;
    margin-bottom: 0.65rem;
    text-shadow: none;
  }

  .public-layout .hero-cta-group {
    flex-direction: column !important;
    flex-wrap: nowrap;
    align-items: stretch !important;
    gap: 0.5rem;
    margin-top: 0.75rem !important;
    width: 100%;
  }

  .public-layout .hero-cta-group .btn {
    flex: none;
    width: 100% !important;
    min-height: 46px;
    padding: 0.6rem 1rem !important;
    font-size: 0.875rem;
    line-height: 1.3;
    margin: 0 !important;
    white-space: normal;
    text-align: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(47, 85, 212, 0.14);
  }

  .public-layout .hero-desktop-bg,
  .public-layout .hero-people-desktop {
    display: none !important;
  }

  .public-layout .hero-cta-secondary {
    background: rgba(255, 255, 255, 0.94) !important;
  }
}

/* Phones only */
@media (max-width: 575.98px) {
  .public-layout .container {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .public-layout .section {
    padding: 40px 0;
  }

  .public-layout .hero-section .py-5,
  .public-layout .hero-copy {
    padding-top: 0 !important;
    padding-bottom: 0.25rem !important;
  }

  .public-layout .nav-lang-compact .nav-lang-btn span {
    font-size: 0.75rem;
  }

  .public-layout .brand-logo-nav,
  .public-layout #topnav .logo .brand-logo-nav {
    height: 28px !important;
    max-width: min(132px, 38vw) !important;
  }

  .public-layout .footer-py-60 {
    padding: 40px 0 28px;
  }

  .public-layout .footer-head {
    margin-bottom: 0.25rem;
  }

  .public-layout .footer-list {
    margin-top: 1rem !important;
  }

  .public-layout .footer-list li a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .public-layout #contact .card {
    padding: 1.25rem !important;
  }

  .public-layout #contact .btn-lg {
    width: 100%;
    min-height: 48px;
  }

  .public-layout .vimteq-faq button {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    min-height: 56px;
  }

  .public-layout .vimteq-faq .px-4.pb-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  #back-to-top {
    width: 42px;
    height: 42px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    right: calc(12px + env(safe-area-inset-right, 0px));
  }
}

/* ---------- Top services strip --------------------------- */
.public-layout .feature-strip {
  position: relative;
  overflow: visible;
  background: #fff;
}

.public-layout .feature-strip__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 12% 20%, rgba(47, 85, 212, 0.06), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(47, 85, 212, 0.05), transparent 32%);
}

.public-layout .feature-strip .container {
  position: relative;
  z-index: 1;
}

.public-layout .feature-strip__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.7rem;
  color: #2f55d4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.public-layout .feature-strip__tagline::before,
.public-layout .feature-strip__tagline::after {
  content: "";
  width: 22px;
  height: 2px;
  background: #2f55d4;
}

.public-layout .feature-strip__item {
  position: relative;
  height: 100%;
  padding: 0.35rem 0.6rem 0.5rem;
  overflow: visible;
}

.public-layout .feature-strip__media {
  position: relative;
  width: 150px;
  height: 152px;
  margin: 0 auto 1.15rem;
}

.public-layout .feature-strip__number {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  font-size: 4.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(47, 85, 212, 0.12);
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}

.public-layout .feature-strip__icon {
  position: absolute;
  left: 50%;
  bottom: 6px;
  z-index: 1;
  width: 108px;
  height: 118px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2f55d4;
  background: rgba(47, 85, 212, 0.09);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transform: translateX(-50%);
  box-shadow: none;
  transition: background 0.25s ease, transform 0.25s ease;
}

.public-layout .feature-strip__icon svg,
.public-layout .feature-strip__icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.public-layout .feature-strip__item:hover .feature-strip__icon {
  background: rgba(47, 85, 212, 0.16);
  color: #2f55d4;
  transform: translateX(-50%) translateY(-3px);
  box-shadow: none;
}

.public-layout .feature-strip__title {
  margin: 0 0 0.65rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2340;
  line-height: 1.35;
}

.public-layout .feature-strip__text {
  margin: 0;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.7;
}

.public-layout .feature-strip__arrow {
  display: none;
}

@media (min-width: 1200px) {
  .public-layout .feature-strip__arrow {
    display: block;
    position: absolute;
    top: 52px;
    right: -72px;
    width: 144px;
    height: 46px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 144 46' fill='none'%3E%3Cpath d='M4 38C36 6 108 6 140 38' stroke='%232f55d4' stroke-width='1.6' stroke-dasharray='4 6' stroke-linecap='round'/%3E%3C/svg%3E");
    opacity: 0.55;
    pointer-events: none;
    z-index: 2;
  }
}

@media (max-width: 767.98px) {
  .public-layout .feature-strip__item {
    padding: 0.25rem 0 0.75rem;
  }

  .public-layout .feature-strip__media {
    width: 130px;
    height: 136px;
  }

  .public-layout .feature-strip__number {
    font-size: 3.7rem;
  }

  .public-layout .feature-strip__icon {
    width: 92px;
    height: 102px;
  }

  .public-layout .feature-strip__icon svg,
  .public-layout .feature-strip__icon img {
    width: 50px;
    height: 50px;
  }
}

/* ---------- About split (image left / copy right) -------- */
.public-layout .about-split {
  overflow: hidden;
}

.public-layout .about-split__deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.public-layout .about-split__deco--dots {
  width: 170px;
  height: 170px;
  top: 10%;
  left: 2%;
  background-image: radial-gradient(#2f55d4 1.35px, transparent 1.55px);
  background-size: 14px 14px;
  opacity: 0.16;
}

.public-layout .about-split__deco--blob {
  width: 320px;
  height: 320px;
  right: -40px;
  bottom: -90px;
  border-radius: 42% 58% 50% 50%;
  background: rgba(47, 85, 212, 0.07);
  transform: rotate(18deg);
}

.public-layout .about-split .container {
  position: relative;
  z-index: 1;
}

.public-layout .about-split__visual {
  position: relative;
  max-width: 540px;
}

.public-layout .about-split__visual-frame {
  position: absolute;
  inset: 28px -18px -18px 28px;
  border: 2px solid rgba(47, 85, 212, 0.2);
  border-radius: 10px;
  z-index: 0;
}

.public-layout .about-split__photo {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(47, 85, 212, 0.14);
}

.public-layout .about-split__photo img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 420px;
  max-height: 620px;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.55s ease;
}

.public-layout .about-split__photo:hover img {
  transform: scale(1.03);
}

.public-layout .about-split__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #2f55d4;
  color: #fff;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.public-layout .about-split__caption-bar {
  width: 4px;
  height: 26px;
  background: #fff;
  border-radius: 2px;
  flex-shrink: 0;
}

.public-layout .about-split__float {
  position: absolute;
  top: 22px;
  right: 14px;
  z-index: 3;
  min-width: 108px;
  padding: 12px 14px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(26, 35, 64, 0.12);
  text-align: center;
}

.public-layout .about-split__float-value {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
  color: #2f55d4;
}

.public-layout .about-split__float-label {
  margin-top: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  line-height: 1.3;
}

.public-layout .about-split__tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.7rem;
  color: #2f55d4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}

.public-layout .about-split__tagline::before,
.public-layout .about-split__tagline::after {
  content: "";
  width: 22px;
  height: 2px;
  background: #2f55d4;
}

.public-layout .about-split__lead {
  line-height: 1.8;
  max-width: 54ch;
}

.public-layout .about-split__indexed {
  counter-reset: about-idx;
  list-style: none;
  margin: 1.45rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  max-width: 54ch;
}

.public-layout .about-split__indexed > li {
  counter-increment: about-idx;
  display: grid;
  grid-template-columns: 2.55rem 1fr;
  column-gap: 0.95rem;
  align-items: start;
  position: relative;
}

.public-layout .about-split__indexed > li::before {
  content: counter(about-idx, decimal-leading-zero);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
  color: #2f55d4;
  font-variant-numeric: tabular-nums;
  padding-top: 0.18rem;
}

.public-layout .about-split__indexed > li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0.72rem;
  top: 1.55rem;
  bottom: -1.15rem;
  width: 1px;
  background: rgba(47, 85, 212, 0.22);
}

.public-layout .about-split__indexed-title {
  margin: 0 0 0.28rem;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  color: #1a2340;
}

.public-layout .about-split__indexed-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #64748b;
}

.public-layout .about-split__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 1.25rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.public-layout .about-split__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.public-layout .about-split__list li p {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
  color: #1a2340;
}

.public-layout .about-split__list li svg {
  margin-top: 2px;
}

.public-layout .about-split__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  margin-top: 1.75rem;
}

.public-layout .about-split__cta {
  border-radius: 6px;
  font-weight: 600;
  padding: 0.65rem 1.35rem;
  white-space: nowrap;
}

.public-layout .about-split__side-stat {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.public-layout .about-split__side-stat-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: #2f55d4;
}

.public-layout .about-split__side-stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
}

@media (min-width: 992px) {
  .public-layout .about-split__content {
    padding-left: 0.5rem;
  }
}

@media (min-width: 1200px) {
  .public-layout .about-split__visual {
    margin-left: -8px;
  }
}

@media (max-width: 991.98px) {
  .public-layout .about-split__visual {
    max-width: 520px;
    margin-inline: auto;
  }

  .public-layout .about-split__content {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .public-layout .about-split__list {
    grid-template-columns: 1fr;
  }

  .public-layout .about-split__photo img {
    min-height: 300px;
    max-height: 420px;
  }

  .public-layout .about-split__visual-frame {
    display: none;
  }

  .public-layout .about-split__deco--dots {
    width: 110px;
    height: 110px;
    top: 4%;
  }

  .public-layout .about-split__float {
    top: 14px;
    right: 12px;
    min-width: 96px;
    padding: 10px 12px;
  }

  .public-layout .about-split__caption {
    font-size: 0.88rem;
    padding: 12px 14px;
  }
}

/* ---------- Cybersecurity showcase ----------------------- */
.public-layout .cyber-showcase {
  position: relative;
}

.public-layout .cyber-showcase__subtitle {
  display: inline-block;
  color: #2f55d4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
}

.public-layout .cyber-showcase__media {
  position: relative;
  padding-bottom: 2.75rem;
  min-height: 320px;
}

.public-layout .cyber-showcase__main {
  width: 90%;
  position: relative;
  z-index: 1;
  border-radius: 8px;
}

.public-layout .cyber-showcase__main img,
.public-layout .cyber-showcase__overlay img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.public-layout .cyber-showcase__stat {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 3;
  width: 200px;
  max-width: calc(100% - 2rem);
  padding: 1.25rem 1rem;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, #2f55d4 0%, #5b3fd4 55%, #7c3aed 100%);
  box-shadow: 0 10px 28px rgba(47, 85, 212, 0.32);
}

.public-layout .cyber-showcase__stat h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
}

.public-layout .cyber-showcase__overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 50%;
  margin-bottom: -2rem;
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.public-layout .cyber-showcase__feature {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.public-layout .cyber-showcase__icon {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: 100px;
  height: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0.35rem 0.75rem;
  color: #2f55d4;
}

.public-layout .cyber-showcase__feature-body {
  padding-left: 100px;
}

.public-layout .cyber-showcase__feature-body h4 {
  color: #1a2340;
  font-weight: 650;
  font-size: 1.15rem;
}

@media (max-width: 991.98px) {
  .public-layout .cyber-showcase__media {
    max-width: 520px;
    margin: 0 auto 1.5rem;
  }

  .public-layout .cyber-showcase__overlay {
    margin-bottom: -1rem;
  }
}

@media (max-width: 575.98px) {
  .public-layout .cyber-showcase__stat {
    width: 150px;
    padding: 0.9rem 0.75rem;
  }

  .public-layout .cyber-showcase__stat h2 {
    font-size: 1.5rem;
  }

  .public-layout .cyber-showcase__icon {
    width: 72px;
    height: 56px;
    padding: 0.25rem 0.4rem;
  }

  .public-layout .cyber-showcase__icon svg {
    width: 36px;
    height: 36px;
  }

  .public-layout .cyber-showcase__feature-body {
    padding-left: 72px;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .public-layout .navbar-toggler-landrick .lines span,
  .public-layout .about-split__photo img,
  .public-layout .feature-strip__icon {
    -webkit-transition: none !important;
    transition: none !important;
    -webkit-animation: none !important;
    animation: none !important;
  }

  .public-layout .about-split__photo:hover img {
    transform: none;
  }

  .public-layout .feature-strip__item:hover .feature-strip__icon {
    transform: translateX(-50%);
  }
}

/* ---------- Homepage service cards ----------------------- */
.public-layout .service-home {
  background: #f3f7fc;
}

.public-layout .service-home-card {
  align-items: center;
  color: inherit;
  padding-top: 28px;
  transition: transform 0.22s ease;
}

.public-layout .service-home-card:hover {
  transform: translateY(-6px);
}

.public-layout .service-home-card__panel {
  position: relative;
  width: 100%;
  background: #fff;
  border-radius: 8px 8px 0 0;
  padding: 3rem 1.15rem 7.5rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.public-layout .service-home-card__icon {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #3d72fc;
  border: 6px solid #f3f7fc;
  box-shadow: 0 4px 14px rgba(61, 114, 252, 0.12);
}

.public-layout .service-home-card__icon svg {
  width: 26px;
  height: 26px;
}

.public-layout .service-home-card__title {
  color: #0b1b33;
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.35;
  margin: 0 0 0.7rem;
  min-height: 2.7em;
}

.public-layout .service-home-card__text {
  color: #7b889c;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.public-layout .service-home-card__media {
  position: relative;
  z-index: 2;
  width: min(86%, 220px);
  aspect-ratio: 1;
  margin: -6.5rem auto 0;
  border-radius: 50%;
  overflow: hidden;
  background: #dbe7f5;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.14);
}

.public-layout .service-home-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transition: transform 0.35s ease;
}

.public-layout .service-home-card:hover .service-home-card__media img {
  transform: scale(1.05);
}

@media (max-width: 1199.98px) {
  .public-layout .service-home-card__panel {
    padding-bottom: 7rem;
  }

  .public-layout .service-home-card__media {
    width: min(78%, 200px);
    margin-top: -5.8rem;
  }
}

@media (max-width: 575.98px) {
  .public-layout .service-home-card__title {
    min-height: 0;
  }
}

/* ---------- Services details page ----------------------- */
.public-layout .svc-details {
  background-color: #ffffff;
  background-image: url("/images/Hero_Background2.jpg");
  background-repeat: repeat;
  background-size: auto;
  background-position: top center;
}

.public-layout .svc-details__sidebar {
  background: #edf1f7;
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.public-layout .svc-details__sidebar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0b1b33;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
}

.public-layout .svc-details__sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.public-layout .svc-details__nav-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 0;
  background: #fff;
  color: #0b1b33;
  border-radius: 999px;
  padding: 0.85rem 1.1rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: left;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.public-layout .svc-details__nav-item:hover {
  transform: translateY(-1px);
}

.public-layout .svc-details__nav-item.is-active {
  background: #3d72fc;
  color: #fff;
}

.public-layout .svc-details__nav-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  background: #3d72fc;
  color: #fff;
}

.public-layout .svc-details__nav-item.is-active .svc-details__nav-check {
  background: #fff;
  color: #3d72fc;
}

.public-layout .svc-details__hero,
.public-layout .svc-details__side-image {
  border-radius: 12px;
  overflow: hidden;
  background: #e8eef8;
}

.public-layout .svc-details__hero img,
.public-layout .svc-details__side-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.public-layout .svc-details__hero {
  min-height: 100%;
}

.public-layout .svc-details__hero img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.public-layout .svc-details__copy {
  display: flex;
  flex-direction: column;
}

.public-layout .svc-details__aside {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  height: 100%;
}

.public-layout .svc-details__side-image {
  flex: 1 1 auto;
  min-height: 280px;
  display: flex;
}

.public-layout .svc-details__side-image img {
  width: 100%;
  height: 100%;
  flex: 1 1 auto;
  min-height: 280px;
  object-fit: cover;
}

.public-layout .svc-details__side-image.is-compact {
  flex: 0 0 auto;
  min-height: 0;
  max-height: 280px;
}

.public-layout .svc-details__side-image.is-compact img {
  flex: none;
  width: 100%;
  height: 280px;
  min-height: 280px;
  max-height: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 28%;
}

.public-layout .svc-details__included {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem 1.25rem;
}

.public-layout .svc-details__included li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
}

.public-layout .svc-details__included span {
  font-size: 0.875rem;
  line-height: 1.5;
}

.public-layout .svc-details__path {
  background: #f4f7fc;
  border-left: 3px solid #2f55d4;
  border-radius: 0 10px 10px 0;
  padding: 0.95rem 1.15rem;
  line-height: 1.7;
}

.public-layout .svc-details__skills {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
  background: #f4f7fc;
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
}

.public-layout .svc-details__skill {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

@media (min-width: 576px) {
  .public-layout .svc-details__included {
    grid-template-columns: 1fr 1fr;
  }
}

.public-layout .svc-details__panel {
  animation: svcDetailsIn 0.28s ease;
}

@keyframes svcDetailsIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.public-layout .svc-details__skill-ring {
  position: relative;
  width: 64px;
  height: 64px;
  flex-shrink: 0;
}

.public-layout .svc-details__skill-ring span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #1a2340;
  font-size: 0.82rem;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
}

.public-layout .svc-details__checks li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #64748b;
  font-size: 0.92rem;
  line-height: 1.5;
  margin-bottom: 0.55rem;
}

.public-layout .svc-details__check-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #3d72fc;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
}

.public-layout .svc-details__check-dot::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.public-layout .svc-details__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.public-layout .svc-details__stats > li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.35rem 0.5rem;
}

.public-layout .svc-details__stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eef3ff;
  color: #2f55d4;
  flex-shrink: 0;
}

.public-layout .svc-details__stats h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a2340;
}

@media (max-width: 991.98px) {
  .public-layout .svc-details__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .public-layout .svc-details__hero img {
    min-height: 240px;
  }

  .public-layout .svc-details__aside {
    height: auto;
  }

  .public-layout .svc-details__side-image,
  .public-layout .svc-details__side-image img {
    min-height: 220px;
  }
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .public-layout .svc-details__skills {
    flex-direction: row;
  }

  .public-layout .svc-details__skill {
    flex: 1;
  }
}

@media (max-width: 575.98px) {
  .public-layout .svc-details__stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .public-layout .svc-details__panel {
    animation: none;
  }
}
