/* ===============================================
   GLOBAL CSS — Routa Digital
   Unified design system, header, footer, sidebar,
   contact form, responsive breakpoints, utilities
   =============================================== */

@import url("https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@400;500;600;700;800;900&display=swap");

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --blue: #2545FC;
  --yellow: #FFDF06;
  --orange: #FF8806;
  --content-max-width: 1200px;
  --content-gutter: clamp(14px, 2.2vw, 24px);
  --text: #0f172a;
  --text-light: #475569;
  --bg-white: #ffffff;
  --bg-light: #f7f9ff;
  --bg-dark: #0f1e78;
  --font: 'Red Hat Display', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 4px 15px rgba(0,0,0,0.08);
  --shadow-md: 0 15px 40px rgba(0,0,0,0.12);
  --shadow-lg: 0 30px 80px rgba(0,0,0,0.2);
  --gradient-cta: linear-gradient(90deg, var(--orange), var(--yellow));
  --gradient-brand: linear-gradient(135deg, #2545FC 0%, #3c2ab0 60%, #1a1d6d 100%);
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 80px;
  --space-8: 96px;
  --space-9: 120px;
  --space-hero-top: 140px;
  --space-hero-bottom: 96px;
  --space-section: 96px;
  --space-section-compact: 64px;
  --space-section-tablet: 80px;
  --space-section-mobile: 64px;
  --space-hero-top-mobile: 112px;
  --space-hero-bottom-mobile: 64px;

}

/* Branded scrollbar */
html {
  scroll-behavior: smooth;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #ff8806 #0f1e78;
}

*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track {
  background: rgba(15, 30, 120, 0.9);
}

*::-webkit-scrollbar-thumb {
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 223, 6, 0.6) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 136, 6, 0.6) 0%, transparent 45%),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
  border-radius: 999px;
  border: 2px solid rgba(15, 30, 120, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

*::-webkit-scrollbar-thumb:hover {
  filter: brightness(1.08);
}


/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font);
  margin: 0;
  background-color: var(--bg-white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  /* overflow-x: hidden; */
}
/* 
html {
  overflow-x: hidden;
} */

@media (max-width: 768px) {
  html,
  body {
    /* overflow-x: hidden; */
    /* overscroll-behavior-x: none; */
    touch-action: pan-y pinch-zoom;
  }
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }

section,
.map-wrapper,
footer {
  scroll-margin-top: 96px;
}

.container {
  width: min(var(--content-max-width), 100%);
  margin: 0 auto;
  padding-left: var(--content-gutter);
  padding-right: var(--content-gutter);
  position: relative;
  z-index: 2;
}

/* Enforce one content rail even when framework container styles are injected later */
body .container {
  box-sizing: border-box;
  width: 100% !important;
  max-width: var(--content-max-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: var(--content-gutter) !important;
  padding-right: var(--content-gutter) !important;
}

/* ── SCROLL REVEAL ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMATION KEYFRAMES ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes rotate360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3); }
  50% { opacity: 1; transform: scale(1.05); }
  70% { transform: scale(0.95); }
  100% { transform: scale(1); }
}

@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(37, 69, 252, 0.3); }
  50% { box-shadow: 0 0 40px rgba(37, 69, 252, 0.6); }
}

/* Animation utility classes */
.animate-fadeInUp { animation: fadeInUp 0.8s ease forwards; }
.animate-fadeInLeft { animation: fadeInLeft 0.8s ease forwards; }
.animate-fadeInRight { animation: fadeInRight 0.8s ease forwards; }
.animate-scaleIn { animation: scaleIn 0.6s ease forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse { animation: pulse 2s ease-in-out infinite; }
.animate-shimmer {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}
.animate-bounceIn { animation: bounceIn 0.8s ease forwards; }

/* Stagger delay utilities */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }
.delay-7 { animation-delay: 0.7s; }
.delay-8 { animation-delay: 0.8s; }

/* ===============================================
   UNIFIED HEADER
   =============================================== */

.main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1200;
  padding: 20px 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.main-header.scrolled {
  padding: 12px 0;
  background:
    radial-gradient(circle at 15% 30%, rgb(17 32 123 / 47%), #2e42a9 45%),
    radial-gradient(circle at 85% 70%, rgb(255 237 218), transparent 45%),
    radial-gradient(circle at 70% 15%, rgba(255, 223, 6, 0.1), transparent 40%),
    linear-gradient(135deg, #2c46c7, #5c73db);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.main-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1200;
  transition: 0.35s ease;
}

.main-header.header-solid {
  background: transparent;
}
.main-header.scrolled {
  background: rgba(10, 18, 90, 0.88);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.header-container {
  width: min(var(--content-max-width), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: var(--content-gutter);
  padding-right: var(--content-gutter);
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
  transition: all 0.35s ease;
}

.main-header.scrolled .logo img {
  height: 36px;
}

.nav {
  display: flex;
  gap: 35px;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
  font-size: 15px;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--orange));
  transition: 0.4s;
}

.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: var(--yellow); }
.nav-link.active { color: var(--yellow); }
.nav-link.active::after { width: 100%; }

/* .header-cta .header-btn {
  padding: 12px 26px;
  border-radius: 10px;
  background: var(--gradient-cta);
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255, 136, 6, 0.4);
  font-size: 14px;
} */
 .header-cta .header-btn {
  display: inline-flex;   /* IMPORTANT FIX */
  align-items: center;
  justify-content: center;
  white-space: nowrap;

  padding: 12px 26px;
  border-radius: 10px;
  background: var(--gradient-cta);
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(255, 136, 6, 0.4);
  font-size: 14px;
}

.header-cta .header-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 223, 6, 0.6);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  position: relative;
  z-index: 1210;
}

.burger span {
  width: 25px;
  height: 3px;
  background: white;
  transition: 0.4s;
  display: block;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* ===============================================
   STICKY SOCIAL SIDEBAR
   =============================================== */

.sticky-sidebar {
  position: fixed;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 1105;
}

body.mega-open .sticky-sidebar {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.sticky-sidebar .social-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 245, 255, 0.9));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 14px;
  border: 1px solid rgba(37, 69, 252, 0.22);
  color: #1f2f7a;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow:
    0 10px 24px rgba(15, 23, 42, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.55) inset;
}

.sticky-sidebar .social-icon i {
  transform: translateZ(0);
}

.sticky-sidebar .social-icon.linkedin-in { color: #0a66c2; }
.sticky-sidebar .social-icon.twitter { color: #1da1f2; }
.sticky-sidebar .social-icon.instagram {
  color: #cc2366;
}

.sticky-sidebar .social-icon.instagram i {
  color: transparent;
  background-image: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sticky-sidebar .social-icon.facebook-f { color: #1877f2; }

.sticky-sidebar .social-icon:hover,
.sticky-sidebar .social-icon:focus-visible {
  transform: translateY(-4px) scale(1.06);
  border-color: rgba(37, 69, 252, 0.45);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(235, 241, 255, 0.98));
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.22),
    0 0 0 2px rgba(37, 69, 252, 0.16),
    0 0 24px rgba(37, 69, 252, 0.28);
  outline: none;
}

.sticky-sidebar .social-icon:active {
  transform: translateY(-1px) scale(0.98);
}

.sticky-sidebar .social-icon.linkedin-in:hover,
.sticky-sidebar .social-icon.linkedin-in:focus-visible {
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.22),
    0 0 0 2px rgba(10, 102, 194, 0.2),
    0 0 26px rgba(10, 102, 194, 0.35);
}

.sticky-sidebar .social-icon.twitter:hover,
.sticky-sidebar .social-icon.twitter:focus-visible {
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.22),
    0 0 0 2px rgba(29, 161, 242, 0.2),
    0 0 26px rgba(29, 161, 242, 0.35);
}

.sticky-sidebar .social-icon.instagram:hover,
.sticky-sidebar .social-icon.instagram:focus-visible {
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.22),
    0 0 0 2px rgba(188, 24, 136, 0.2),
    0 0 26px rgba(188, 24, 136, 0.35);
}

.sticky-sidebar .social-icon.facebook-f:hover,
.sticky-sidebar .social-icon.facebook-f:focus-visible {
  box-shadow:
    0 16px 32px rgba(15, 23, 42, 0.22),
    0 0 0 2px rgba(24, 119, 242, 0.2),
    0 0 26px rgba(24, 119, 242, 0.35);
}

/* ===============================================
   CONTACT FORM (SHARED)
   =============================================== */

.contact-section,
.contact-sections {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.contact-section {
  background: var(--bg-dark);
}

.contact-section::before,
.contact-sections::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 223, 6, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 136, 6, 0.15), transparent 40%);
  pointer-events: none;
}

.contact-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.contact-left { flex: 1; }

.contact-sub {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--yellow);
  margin-bottom: 20px;
  font-weight: 600;
}

.contact-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #ffffff;
}

.contact-title span { color: var(--yellow); }

.contact-desc {
  font-size: 18px;
  opacity: 0.9;
}

.contact-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.contact-card {
  width: 100%;
  max-width: 520px;
  padding: 45px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 40px rgba(255, 223, 6, 0.08);
}

.form-alert {
  display: block;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.form-alert:empty {
  display: none;
}

.form-alert--success {
  background: rgba(22, 163, 74, 0.22);
  border-color: rgba(22, 163, 74, 0.5);
  color: #ffffff;
}

.form-alert--error {
  background: rgba(220, 38, 38, 0.22);
  border-color: rgba(220, 38, 38, 0.55);
  color: #ffffff;
}

.form-group { margin-bottom: 18px; }

.form-group--hp {
  display: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 223, 6, 0.2);
  background: rgba(255, 255, 255, 0.16);
}

.contact-btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  background: var(--gradient-cta);
  color: #111;
  transition: all 0.3s ease;
  font-family: var(--font);
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 136, 6, 0.45);
}

/* ===============================================
   FOOTER
   =============================================== */

.footer {
  background: linear-gradient(180deg, rgba(15, 30, 120, 0.95) 0%, rgba(10, 20, 90, 0.98) 100%);
  color: #ffffff;
  padding: 42px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 223, 6, 0.12), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(255, 136, 6, 0.1), transparent 60%);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(0,0,0,0.35), transparent 60%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--yellow);
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.8;
  transition: 0.3s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: var(--yellow);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 13px;
  opacity: 0.7;
}

.footer-top-btn {
  text-decoration: none;
  font-size: 13px;
  color: var(--yellow);
  font-weight: 600;
  transition: 0.3s ease;
}

.footer-top-btn:hover { color: var(--orange); }

/* ===============================================
   MAP
   =============================================== */

.map-wrapper {
  width: 100%;
  height: 560px;
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.our-presence {
  position: absolute;
  top: 11px;
  left: 80px;
  background: #ffffff;
  color: var(--blue);
  padding: 14px 22px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 14px;
  letter-spacing: 0.4px;
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  z-index: 977;
}

.our-presence::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(var(--blue), var(--orange));
}

.leaflet-tooltip.office-label {
  border: 2px solid var(--orange);
  color: var(--blue);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  z-index: 977;
}

/* ===============================================
   UTILITY CLASSES
   =============================================== */

.brand-blue { color: var(--blue); }
.text-accent { color: var(--yellow); }
.text-bold { font-weight: 700; }

.btn {
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-cta);
  color: #111;
  box-shadow: 0 12px 30px rgba(255, 136, 6, 0.35);
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(255, 223, 6, 0.55);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #ffffff;
  color: var(--blue);
  transform: translateY(-4px);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
}

.btn-blue:hover {
  background: #1d34c7;
  transform: translateY(-2px);
}

/* ===============================================
   RESPONSIVE — GLOBAL BREAKPOINTS
   =============================================== */

/* Tablet */
@media (max-width: 992px) {
  .main-header {
    padding: 12px 0;
    background: rgba(10, 18, 90, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .main-header.scrolled {
    padding: 10px 0;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 120, 0.98);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 6px;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1190;
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    padding: calc(env(safe-area-inset-top, 0px) + 74px) 16px 20px;
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-link {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 9px 0;
    font-size: 16px;
    line-height: 1.3;
  }

  .nav .mobile-mega-section {
    width: 100%;
    order: -1;
    margin-bottom: 4px;
  }

  .burger {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .sticky-sidebar {
    display: none;
  }

  .contact-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .contact-title {
    font-size: 40px;
  }

  .contact-card {
    padding: 35px;
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .map-wrapper {
    height: 400px;
  }

  .our-presence {
    left: 20px;
    font-size: 16px;
    padding: 10px 16px;
  }

  .header-container {
    padding: 0 14px;
    min-height: 52px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .logo img {
    height: 38px;
  }

  .main-header.scrolled .logo img {
    height: 34px;
  }

  .nav {
    gap: 6px;
    padding: calc(env(safe-area-inset-top, 0px) + 68px) 12px 16px;
  }

  .nav-link {
    font-size: 15px;
    padding: 8px 0;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .map-wrapper {
    height: 300px;
  }
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 480px) {
  .contact-title {
    font-size: 32px;
  }
}

/* Footer mobile consistency across all pages */
.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-col a {
  word-break: break-word;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 42px 0 28px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 34px;
  }

  .footer-logo {
    width: 124px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col a {
    margin-bottom: 9px;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 22px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy,
  .footer-top-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

/* ===============================================
   ALIGNMENT NORMALIZATION (GLOBAL PAGES)
   =============================================== */
.main-header {
  left: 0;
  right: 0;
}

.header-container {
  width: min(var(--content-max-width), 100%);
  margin-left: auto;
  margin-right: auto;
  /* min-height: 64px; */
  padding-left: var(--content-gutter);
  padding-right: var(--content-gutter);
}

.nav {
  align-items: center;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  line-height: 1.2;
}

.nav-link i,
.nav-link .chevron {
  line-height: 1;
}

@media (max-width: 992px) {
  :root {
    --content-gutter: 14px;
  }

  .main-header {
    left: 0;
    right: 0;
  }

  .header-container {
    min-height: 56px;
    padding-left: 14px;
    padding-right: 14px;
  }

  .nav {
    left: 0;
    right: 0;
    width: auto;
    max-width: none;
    padding: calc(env(safe-area-inset-top, 0px) + 72px) 14px 16px;
  }

  .nav-link {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  :root {
    --content-gutter: 12px;
  }

  .header-container {
    min-height: 52px;
  }

  .nav {
    padding: calc(env(safe-area-inset-top, 0px) + 66px) 12px 14px;
  }
}



/* ===============================================
   RESPONSIVE SAFETY LAYER
   =============================================== */
@media (max-width: 992px) {
  .sticky-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  html,
  body {
    /* overflow-x: hidden; */
  }

  .container,
  .header-container,
  .footer .container,
  [class*="container"] {
    max-width: 100% !important;
    width: 100%;
    padding-left: clamp(12px, 4vw, 18px) !important;
    padding-right: clamp(12px, 4vw, 18px) !important;
  }

  [class*="grid"],
  [class*="col"],
  [class*="card"] {
    min-width: 0;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
/* ===============================================
   UNIFIED FOOTER RESPONSIVE (FOOTER ONLY)
   =============================================== */
.footer {
  background: linear-gradient(180deg, rgba(15, 30, 120, 0.95) 0%, rgba(10, 20, 90, 0.98) 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px 36px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--yellow, #FFDF06);
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-top-btn {
  font-size: 13px;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 42px 0 28px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 34px;
  }

  .footer-logo {
    width: 124px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col a {
    margin-bottom: 9px;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 22px;
  }

  .footer .container {
    padding-left: clamp(12px, 4vw, 18px);
    padding-right: clamp(12px, 4vw, 18px);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy,
  .footer-top-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

/* Ultra-wide container scaling */
@media (min-width: 1600px) {
  :root {
    --content-max-width: 1400px;
    --content-gutter: clamp(18px, 2vw, 32px);
    --space-section: 110px;
    --space-section-compact: 72px;
    --space-hero-top: 160px;
    --space-hero-bottom: 120px;
  }

  .header-container {
    width: min(var(--content-max-width), 100%);
  }

  .footer .container {
    max-width: var(--content-max-width) !important;
  }

  .footer-top {
    gap: clamp(36px, 3vw, 70px);
  }

  .nav {
    gap: 42px;
  }

  .contact-title {
    font-size: 60px;
  }

  .contact-desc {
    font-size: 19px;
  }
}

@media (min-width: 1920px) {
  :root {
    --content-max-width: 1520px;
    --content-gutter: clamp(20px, 2vw, 36px);
    --space-section: 116px;
    --space-hero-top: 170px;
    --space-hero-bottom: 128px;
  }

  .nav {
    gap: 48px;
  }
}

@media (min-width: 2560px) {
  :root {
    --content-max-width: 1640px;
    --space-section: 124px;
    --space-hero-top: 180px;
    --space-hero-bottom: 136px;
  }
}

@media (min-width: 3440px) {
  :root {
    --content-max-width: 1760px;
  }
}

@media (min-width: 3840px) {
  :root {
    --content-max-width: 1920px;
  }
}

/* ===============================================
   RESPONSIVE FIXES (PROJECT-WIDE)
   =============================================== */
@media (max-width: 1024px) {
  .logos-sec__wrap {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .evolution::before {
    width: min(90vw, 720px);
    height: min(90vw, 720px);
    left: 50%;
    transform: translateX(-50%);
  }
}
/* 
.cta-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;

  background: var(--gradient-cta);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 10px 25px rgba(255, 136, 6, 0.4);
}


.cta-label {
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, #6366f1, #0ea5e9);
  color: #fff;
  font-weight: 600;
}


.cta-text {
  font-size: 14px;
  font-weight: 700;
  color: #111;
}


.cta-arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}



.cta-switch:hover .cta-arrow {
  transform: translate(3px, -3px);
} */
/* CTA Container */

/* Flag */
.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Minimal flag switch */
.white-flag {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  background: transparent;
  border: none;
  padding: 0;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #111;

  text-decoration: none;
  cursor: pointer;

  transition: opacity 0.2s ease, transform 0.2s ease;
}

/* CDN flag */
.white-flag img {
  width: 20px;
  height: 14px;
  object-fit: cover;
  border-radius: 2px;
}

/* Text */
.white-flag span {
  color: #ffffff;
}

/* Hover */
.white-flag:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

/* Ensure header CTA is hidden on mobile/tablet (restore original behavior) */
@media (max-width: 992px) {
  .header-cta {
    display: none !important;
  }
}


/* about css (commented out for reference)*/

/* ===============================
   ABOUT PAGE — Routa Digital
   ===============================  */

:root {
  --card-hover-brand-gradient:
    radial-gradient(circle at 15% 25%, rgba(255, 223, 6, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 136, 6, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
}

.about-brand-surface {
  background:
    radial-gradient(circle at 12% 20%, rgba(37, 69, 252, 0.08), transparent 42%),
    radial-gradient(circle at 88% 72%, rgba(255, 136, 6, 0.08), transparent 48%),
    linear-gradient(180deg, #f7f9ff 0%, #eef3ff 55%, #f8fbff 100%);
}

/* Shared hover gradient for selected About page cards only */
.about-brand-hover {
  position: relative;
  overflow: hidden;
}

.about-brand-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 2px,
      transparent 2px,
      transparent 12px
    );
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.about-brand-hover {
  background: var(--card-hover-brand-gradient) !important;
  border-color: rgba(255, 223, 6, 0.45) !important;
}

.about-brand-hover:hover {
  background: var(--card-hover-brand-gradient) !important;
  border-color: rgba(255, 223, 6, 0.45) !important;
}

.about-brand-hover:hover::after {
  opacity: 1;
}

.about-brand-hover > * {
  position: relative;
  z-index: 2;
}

.about-brand-hover .about-brand-hover-overlay {
  background: var(--card-hover-brand-gradient) !important;
  opacity: 1 !important;
}

.about-brand-hover:hover .about-brand-hover-overlay {
  background: var(--card-hover-brand-gradient) !important;
  opacity: 1 !important;
}

.about-brand-hover [data-counter] {
  color: #ffffff !important;
}

.about-brand-hover:hover [data-counter] {
  color: #ffffff !important;
}

.about-brand-hover p {
  color: rgba(255, 255, 255, 0.92) !important;
}

.about-brand-hover:hover p {
  color: rgba(255, 255, 255, 0.92) !important;
}

.about-brand-hover h3 {
  color: #ffdf06 !important;
}

.about-brand-hover:hover h3 {
  color: #ffdf06 !important;
}

.about-brand-hover-content .text-\[\#2545FC\] {
  color: #ffdf06 !important;
}

.about-brand-hover-content:hover .text-\[\#2545FC\] {
  color: #ffdf06 !important;
}

/* 1️⃣  HERO */
.about-hero {
  padding: var(--space-hero-top) 0 var(--space-hero-bottom);
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 223, 6, 0.25) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 136, 6, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
  color: #fff;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
}

.about-hero-image {
  overflow: hidden;
  border-radius: 10px;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating animated shapes */
/* .hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
} */
/* 
.hero-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #FFDF06, #FF8806);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 250px;
  height: 250px;
  background: #FFDF06;
  bottom: -50px;
  left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  background: #FF8806;
  top: 30%;
  left: 50%;
  animation: float 6s ease-in-out infinite 1s;
} */

/* Feature Cards */
.feature-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.feature-card:focus-visible {
  outline: 3px solid rgba(255, 223, 6, 0.9);
  outline-offset: 3px;
}

.feature-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(0, 0, 0, 0.75) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.4s ease;
}

.feature-card:hover .feature-card-overlay {
  background:
    var(--card-hover-brand-gradient),
    linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.72) 100%);
}
/*leader card */
/* hidden content */

.leader-main h3{
  font-size: 26px;
}
.leader-extra{
  max-height:0;
  opacity:0;
  overflow:hidden;
  transform:translateY(10px);
  transition:all .45s ease;
}

/* reveal on hover */
.group:hover .leader-extra{
  max-height:120px;
  opacity:1;
  transform:translateY(0);
}
/* 4️⃣  LEADERSHIP INTRO */
.leadership-intro {
  padding: var(--space-section) 0;
  background: linear-gradient(135deg, #1b297f, #2545fc);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.leadership-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.leadership-shapes::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 223, 6, 0.08);
  top: -80px;
  right: -60px;
  animation: float 12s ease-in-out infinite;
}

.leadership-shapes::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 136, 6, 0.06);
  bottom: -50px;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
}

/* 5️⃣  EXECUTIVE PROFILES */
.exec-img-wrap {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.4s ease;
}

.exec-img-wrap:hover {
  box-shadow: 0 25px 60px rgba(37, 69, 252, 0.2);
}

/* Leadership marquee */
.leadership-marquee {
  overflow: hidden;
}

.leadership-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  align-items: stretch;
  will-change: transform;
}

.leadership-group {
  display: flex;
  gap: 2.5rem;
}

.leader-card {
  flex: 0 0 clamp(240px, 26vw, 320px);
}

@media (max-width: 768px) {
  .leadership-track,
  .leadership-group {
    gap: 1.5rem;
  }
}

/* Large screens: ensure cards fit cleanly without edge clipping */
@media (min-width: 1280px) {
  .leadership-track,
  .leadership-group {
    gap: 1.75rem;
  }

  .leader-card {
    flex: 0 0 clamp(220px, 18vw, 280px);
  }
}

@media (min-width: 1600px) {
  .leadership-track,
  .leadership-group {
    gap: 1.5rem;
  }

  .leader-card {
    flex: 0 0 clamp(210px, 16vw, 260px);
  }
}

/* ===============================
   RESPONSIVE
   =============================== */

@media (max-width: 480px) {
  .about-hero {
    padding: var(--space-hero-top-mobile) 0 var(--space-hero-bottom-mobile);
  }
}

/* 
.contact-sections {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 120px 5% 140px;

  background: 
    radial-gradient(circle at 15% 15%, rgba(37, 69, 252, 0.2), transparent 50%),
    radial-gradient(
      circle at 85% 80%,
      rgba(255, 223, 6, 0.12),
      transparent 45%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(255, 136, 6, 0.08),
      transparent 35%
    ),
   
    radial-gradient(
        circle at 50% 50%,
        rgba(255, 255, 255, 0.05),
        transparent 70%
      ),
   
    linear-gradient(150deg, #2545fc 0%, #3c57a8 40%, #2e42a9 70%, #2e42a9 100%);
} */



/* ===============================
   CREATIVE VALUES SECTION
   =============================== */
/* ===============================
   VALUES SECTION – Compact & Modern Version
   =============================== */

.values-creative {
  position: relative;
  padding: var(--space-section) 16px;           /* reduced top/bottom padding */
  overflow: hidden;
  color: white;
  background: linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
  background-size: 180% 180%;
  animation: gradientMove 16s ease infinite;
}

.values-creative::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(255, 223, 6, 0.12), transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(255, 136, 6, 0.12), transparent 60%);
  pointer-events: none;
}

.values-creative::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.28), rgba(0,0,0,0.10));
  pointer-events: none;
}

@keyframes gradientMove {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.values-wrap {
  position: relative;
  max-width: 1180px;                    /* slightly narrower container */
  margin: 0 auto;
  z-index: 2;
}

.values-heading {
  text-align: center;
  font-size: clamp(32px, 5.5vw, 42px);  /* smaller heading */
  font-weight: 900;
  margin-bottom: 50px;                  /* less space below heading */
  background: var(--gradient-cta, linear-gradient(90deg, #ff8806, #ffdf06));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



/* Grid – tighter */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;                            /* reduced gap → more compact */
}

/* Card – compact padding & size */
.v-card {
  position: relative;
  padding: 28px 24px;                   /* much smaller inner padding */
  border-radius: 20px;
  background: rgba(255,255,255,0.09);   /* slightly higher opacity = less "empty" */
  backdrop-filter: blur(12px);          /* softer blur for performance & modern look */
  border: 1px solid rgba(255,255,255,0.16);
  transition: all 0.35s ease;
  overflow: hidden;
}

.v-card:hover {
  background: var(--card-hover-brand-gradient);
  transform: translateY(-10px);         /* smaller lift */
  box-shadow: 0 20px 50px rgba(0,0,0,0.28),
              0 0 0 1px rgba(255,223,6,0.14);
  border-color: rgba(255,223,6,0.4);
}

/* Icon – smaller & compact */
.v-icon {
  position: relative;
  width: 70px;                          /* smaller icon container */
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gradient-cta, linear-gradient(135deg, #ff8806, #ffdf06));
  color: #111;
  box-shadow: 
    0 10px 24px rgba(255, 136, 6, 0.35),
    inset 0 -4px 12px rgba(0,0,0,0.22),
    0 0 0 1.5px rgba(255,223,6,0.25);
  transition: all 0.35s ease;
}

.v-icon:hover {
  transform: scale(1.1) rotate(3deg);
  box-shadow: 
    0 16px 40px rgba(255, 136, 6, 0.5),
    0 0 50px 10px rgba(255, 223, 6, 0.3),
    inset 0 -6px 18px rgba(0,0,0,0.3);
}

.v-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.4), transparent 70%);
  opacity: 0.65;
  pointer-events: none;
}

.v-icon:hover::before {
  opacity: 0.9;
}

.v-glow {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,136,6,0.28) 12%, rgba(255,223,6,0.16) 50%, transparent 80%);
  filter: blur(24px);
  opacity: 0.65;
  z-index: -1;
  transition: all 0.5s ease;
}

.v-card:hover .v-glow {
  opacity: 0.95;
  transform: scale(1.15);
}

.v-icon i {
  font-size: 38px;                      /* smaller icon */
}

/* Text – tighter & smaller */
.v-card h4 {
  font-size: 20px;                      /* smaller title */
  font-weight: 800;
  margin: 18px 0 10px;                  /* reduced margins */
  color: white;
}

.v-card p {
  font-size: 15px;                      /* slightly smaller text */
  line-height: 1.6;
  opacity: 0.92;
  margin: 0;
  color: #e5e7eb;
}

/* Responsive – even more compact on mobile */
@media (max-width: 992px) {
  .values-heading { margin-bottom: 40px; }
  .v-icon { width: 64px; height: 64px; }
  .v-icon i { font-size: 34px; }
}

@media (max-width: 640px) {
  .values-creative { padding: var(--space-section-mobile) 12px; }
  .values-heading { font-size: 32px; }
  .v-card { padding: 24px 20px; }
  .v-icon { width: 60px; height: 60px; }
  .v-icon i { font-size: 32px; }
  .values-grid { gap: 20px; }
}



.contact-sections {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: var(--space-section) 5%;

  background: #0f1e78;
}

@keyframes infinite-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.animate-infinite-scroll {
  animation: infinite-scroll 50s linear infinite;
}
.pause-scroll:hover {
  animation-play-state: paused;
}

.animate-gradient {
  background-size: 200% 200%;
  animation: gradientFlow 8s ease infinite;
}
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


.footer {
  background: linear-gradient(
    180deg,
    rgba(15, 30, 120, 0.95) 0%,
    rgba(10, 20, 90, 0.98) 100%
  );
  color: #ffffff;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

/* ambient glow effects */

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 223, 6, 0.12), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(255, 136, 6, 0.1), transparent 60%);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 120%,
    rgba(0, 0, 0, 0.35),
    transparent 60%
  );
  pointer-events: none;
}

/* container */

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ================================
   Footer Grid
================================ */

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* ================================
   Brand Column
================================ */

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-location {
  font-size: 13px;
  opacity: 0.7;
}

/* ================================
   Column Titles
================================ */

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #ffdf06;
}

/* ================================
   Links
================================ */

.footer-col a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: #ffdf06;
  transform: translateX(4px);
}

/* ================================
   Bottom Section
================================ */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* socials */

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  opacity: 1;
  color: #ff8806;
  transform: translateY(-2px);
}

/* copyright */

.footer-copy {
  font-size: 13px;
  opacity: 0.7;
}

/* back to top */

.footer-top-btn {
  text-decoration: none;
  font-size: 13px;
  color: #ffdf06;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-top-btn:hover {
  color: #ff8806;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1100px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

}
/* ===============================================
   RESPONSIVE SAFETY LAYER
   =============================================== */
@media (max-width: 992px) {
  .sticky-sidebar {
    display: none;
  }

  [class*="container"] {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    /* overflow-x: hidden; */
  }

  [class*="container"] {
    width: 100%;
    padding-left: clamp(12px, 4vw, 18px) !important;
    padding-right: clamp(12px, 4vw, 18px) !important;
  }

  [class*="grid"],
  [class*="col"],
  [class*="card"] {
    min-width: 0;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
/* ===============================================
   UNIFIED FOOTER RESPONSIVE (FOOTER ONLY)
   =============================================== */
.footer {
  background: linear-gradient(180deg, rgba(15, 30, 120, 0.95) 0%, rgba(10, 20, 90, 0.98) 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px 36px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--yellow, #FFDF06);
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-top-btn {
  font-size: 13px;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 42px 0 28px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 34px;
  }

  .footer-logo {
    width: 124px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col a {
    margin-bottom: 9px;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 22px;
  }

  .footer .container {
    padding-left: clamp(12px, 4vw, 18px);
    padding-right: clamp(12px, 4vw, 18px);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy,
  .footer-top-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

@media (min-width: 1600px) {
  .about-hero .max-w-\[1200px\],
  #vision-section .max-w-\[1200px\],
  #mission-section .max-w-\[1200px\],
  .about-brand-surface .max-w-\[1400px\],
  .max-w-\[1360px\] {
    max-width: min(var(--content-max-width), calc(100% - 160px));
  }
}

/* hire-experts section css */


/* ================= SERVICE HERO ================= */

.service-hero {
  position: relative;
  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 223, 6, 0.25) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 136, 6, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
  padding: var(--space-hero-top) 0 var(--space-hero-bottom);
  color: #fff;
  overflow: visible;
}
.main-header .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

.main-header.scrolled .nav-link {
  color: #fff;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
  z-index: 0;
}

.hire-container {
  width: min(var(--content-max-width), 100%);
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-left: var(--content-gutter);
  padding-right: var(--content-gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hire-content {
  max-width: 560px;
}

.hire-content h1 {
  font-size: 54px;
  line-height: 1.12;
  font-weight: 700;
}

.hire-content span {
  color: #ffdf06;
}

.hire-content p {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

.hire-btn {
  display: inline-block;
  margin-top: 28px;
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  color: #111;
  padding: 16px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.hire-btn:hover {
  transform: translateY(-3px);
}
/* 
.hire-image {
  position: relative;
}

.hire-image img {
  width: 460px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.hire-image::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(180deg, #2545fc, #ff8806);
  border-radius: 55% 45% 60% 40%;
  right: 10px;
  top: 20px;
  opacity: 0.35;
  z-index: 1;
}

.hire-image::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  background: #ffffff20;
  border-radius: 10px;
  right: 0;
  top: -15px;
} */


.hire-image {
  position: relative;
}

/* Main big circle */
.hire-image img {
  width: 520px;
  height: 520px;
  object-fit: cover;
  border-radius: 18%;
}

/* Small top circle (second image if needed) */
.hire-image::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: url('assets/updateserv/real.jfif') center/cover;
  border-radius: 50%;
  top: -40px;
  left: 40px;
  z-index: 3;
}

@media (max-width: 992px) {
  .hire-container {
    flex-direction: column;
    text-align: center;
  }
  .hire-content h1 {
    font-size: 40px;
  }
  .hire-image::before {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 600px) {
  .hire-content h1 {
    font-size: 32px;
  }
  .service-hero {
    padding: var(--space-hero-top-mobile) 0 var(--space-hero-bottom-mobile);
    /* overflow: hidden; */
  }
  .hire-image::before {
    width: 240px;
    height: 240px;
  }
}

/* ================= PROCESS SECTION ================= */

.process-section {
  background: #ffffff;
  padding: var(--space-section) 0;
}

.process-container {
  max-width: 1100px;
  margin: auto;
  padding: 0 24px;
  text-align: center;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
  font-family: "Red Hat Display", sans-serif;
}

.process-header h3 {
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff8806;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.process-header h3::before,
.process-header h3::after {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  display: block;
}

.process-header h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 900px;
  margin: auto;
  color: #0f172a;
}

.process-header span {
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .process-section {
    padding: 80px 0;
  }
  .process-header h2 {
    font-size: 30px;
  }
}


/* =========================
   SECTION
========================= */

.skills-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 223, 6, 0.25) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 136, 6, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
}

/* DARK OVERLAY FOR DEPTH */
.skills-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
  z-index: 0;
}

/* container above overlay */
.skills-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   HEADER
========================= */
.skills-header {
  text-align: center;
  margin-bottom: 60px;
}

.skills-heading {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.skills-heading span {
  background: linear-gradient(90deg, #ff8c00, #ffd706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.skills-subheading {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

/* =========================
   CAROUSEL
========================= */
.skills-carousel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* rows */
.skill-row {
  overflow: hidden;
  position: relative;
}

/* edge fade */
/* scrolling */
.skill-row-content {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: scrollLeft 35s linear infinite;
}

.skill-row:nth-child(2) .skill-row-content {
  animation: scrollRight 40s linear infinite;
}

.skill-row:nth-child(3) .skill-row-content {
  animation: scrollLeft 45s linear infinite;
}

/* =========================
   SKILL TAG (CREATIVE)
========================= */
.skill-tag {
  padding: 10px 18px;
  border-radius: 999px;

  font-size: 15px;
  font-weight: 500;
  color: #fff;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);

  backdrop-filter: blur(12px);

  transition: all 0.3s ease;
  white-space: nowrap;

  position: relative;
}

/* soft glow */
.skill-tag::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 20px rgba(255, 140, 0, 0.15);
  opacity: 0;
  transition: 0.3s;
}

.skill-tag:hover::after {
  opacity: 1;
}

/* hover */
.skill-tag:hover {
  background: linear-gradient(90deg, #ff8c00, #ffd706);
  color: #111;
  border-color: transparent;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}


/* =========================
   CHOOSE SECTION
========================= */
.choose-section {
  background: #ffffff;
  padding: 90px 0 110px;
}

.choose-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.choose-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(90deg, #ff8c00, #ffd706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 60px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 36px;
}

.benefit-card {
  position: relative;
  padding-left: 30px;
  min-height: 190px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #eef2f7;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-right: 16px;
  transition: all 0.3s ease;
}

.benefit-bar,
.benefit-bar-highlight {
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  border-radius: 999px;
}

.benefit-bar {
  height: 100%;
  background: #e8e8e8;
}

.benefit-bar-highlight {
  height: 54px;
  background: var(--gradient-cta);
}

.benefit-icon-container {
  margin-bottom: 18px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--gradient-cta);
  box-shadow: 0 10px 20px rgba(255, 136, 6, 0.25);
}

.benefit-icon img {
  width: 46px;
  height: 46px;
  /* filter: brightness(0); */
}

.benefit-title {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
}

.benefit-description {
  font-size: 15px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
  .skills-heading {
    font-size: 32px;
  }

  .skills-subheading {
    font-size: 15px;
  }

  .choose-heading {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 26px;
  }
}

@media (max-width: 520px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}
.benefit-card:hover {
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 223, 6, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 136, 6, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
  border-color: transparent;
  box-shadow: 0 16px 40px rgba(30, 54, 216, 0.25);
}

.benefit-card:hover .benefit-title,
.benefit-card:hover .benefit-description {
  color: #ffffff;
}


/* =========================
   SECTION
========================= */
.hire-ux-section {
  padding: 100px 0;
  /* background: #f7f7f7; */
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(37, 69, 252, 0.08),
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 72%,
      rgba(255, 136, 6, 0.08),
      transparent 48%
    ),
    linear-gradient(180deg, #f7f9ff 0%, #eef3ff 55%, #f8fbff 100%);
}

.hire-ux-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   HEADING
========================= */
.hire-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #111;
}

.hire-heading span {
  background: linear-gradient(90deg, #ff8c00, #ffd706);
  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================
   GRID
========================= */
.hire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* =========================
   CARD
========================= */
.hire-card {
  position: relative;
  padding: 30px;
  border-radius: 18px;
  background: #ffffff; /* PURE WHITE */
  border: 1px solid #eee;
  transition: all 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}

/* GRADIENT BACKGROUND ON HOVER */
.hire-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: 0.5s ease;
  z-index: 0;

  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 223, 6, 0.25) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 136, 6, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
}

.hire-card:hover::before {
  opacity: 1;
}

/* INNER LIGHT GLOW (SUBTLE PREMIUM TOUCH) */
.hire-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

/* CONTENT ABOVE BACKGROUND */
.hire-card * {
  position: relative;
  z-index: 2;
}

/* HOVER EFFECT */
.hire-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);
}

/* =========================
   STEP NUMBER
========================= */
.step-no {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 20px;
  color: #111;
  transition: 0.3s;
}

/* =========================
   TAG
========================= */
.step-top {
  margin-bottom: 15px;
}

.step-tag {
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid #222;
  display: inline-block;
  color: #111;
  transition: 0.3s;
}

/* =========================
   TEXT
========================= */
.hire-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #111;
  transition: 0.3s;
}

.hire-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  transition: 0.3s;
}

/* =========================
   HOVER TEXT COLOR
========================= */
.hire-card:hover h3,
.hire-card:hover p,
.hire-card:hover .step-tag,
.hire-card:hover .step-no {
  color: #ffffff;
}

.hire-card:hover .step-tag {
  border-color: rgba(255, 255, 255, 0.6);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1024px) {
  .hire-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .hire-grid {
    grid-template-columns: 1fr;
  }

  .hire-heading {
    font-size: 30px;
  }
}


/*career section css*/


.contact-hero {
  padding: var(--space-hero-top) 0 var(--space-hero-bottom);
  position: relative;
  overflow: hidden;

 background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 223, 6, 0.25) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 136, 6, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
  pointer-events: none;
}
/* layout */
.contact-wrap {
  width: min(var(--content-max-width), 100%);
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-left: var(--content-gutter);
  padding-right: var(--content-gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* LEFT SIDE */
.contact-left h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  margin: 12px 0;
}

.contact-left h1 span {
  color: #FFDF06;
}

.contact-badge {
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .5px;
}

.contact-desc {
  margin: 18px 0 30px;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
}

/* contact details */
.contact-details {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}


.trending {
  padding: 80px 0;
  background: #f9fafb;
}

.trending .container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }

.trending__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  grid-template-areas: "jobs info";
  gap: 48px;
  align-items: start;
}

.left-panel {
  position: sticky;
  top: 110px;
  align-self: start;
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
  min-height: 0;
  overflow: visible;
}

.intro-content .trending__title {
  font-size: 2.0rem;
  line-height: 1.15;
  margin: 0 0 1.2rem;
  background:  linear-gradient(90deg, var(--orange), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trending__description {
  font-size: 1.08rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 2.2rem;
}

.trending__stats {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 36px;
}

.trending__stat-value {
  font-size: 2.6rem;
  font-weight: 800;
  color: #2563eb;
}

.trending__stat-label {
  font-size: 1rem;
  color: #6b7280;
}

.trending__stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}

.trending__stat-label {
  margin-top: -6px;
}
/* container */

.jobs-search-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* search box */

.careers-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 14px;
  transition: all .2s ease;
}

/* hover */

.careers-search-box:hover {
  border-color: #d1d5db;
}

/* focus */

.careers-search-box:focus-within {
  border-color: #2545FC;
  box-shadow: 0 0 0 3px rgba(37,69,252,.08);
}

/* icon */

.careers-search-icon {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  flex-shrink: 0;
}

.careers-search-icon svg {
  width: 100%;
  height: 100%;
}

/* input */

.careers-search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: .95rem;
  color: #111827;
  background: transparent;
}

.careers-search-input::placeholder {
  color: #9ca3af;
}

/* jobs count */

.jobs-count {
  font-size: .85rem;
  color: #6b7280;
}

.jobs-count strong {
  color: #111827;
  font-weight: 600;
}

/* Job detail styling */
.job-detail-content {
  position: relative;
  z-index: 1;
}

.job-detail-content h3 {
  font-size: 1.7rem;
  margin: 0 0 0.6rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.job-detail-content .meta {
  color: #334155;
  font-size: 0.98rem;
  margin: 0 0 1.1rem;
  padding: 10px 12px;
  background: rgba(37, 69, 252, 0.06);
  border: 1px solid rgba(37, 69, 252, 0.12);
  border-radius: 12px;
}

.job-detail-content h4 {
  font-size: 1.1rem;
  margin: 1.1rem 0 0.55rem;
  color: #2545FC;
}

.job-detail-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.job-detail-content li {
  margin-bottom: 0.6rem;
  padding-left: 1.4rem;
  position: relative;
  color: #0f172a;
  line-height: 1.55;
}

.job-detail-content .bullet {
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  background: #FF8806;
  border-radius: 50%;
}

/* .back-btn, .close-form {
  color: #2545FC;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(37, 69, 252, 0.08);
  border: 1px solid rgba(37, 69, 252, 0.18);
} */
 .back-btn {
   position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.close-form {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 26px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.close-form:hover {
  color: #000;
  transform: scale(1.15);
}

/* .back-btn:hover, .close-form:hover { text-decoration: underline; } */

.apply-btn {
  background: linear-gradient(90deg, #FF8806, #FFDF06);
  color: #111;
  border: none;
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 1.2rem;
  transition: background 0.2s;
}

#apply-overlay {
  position: relative;
}

.apply-btn:hover { filter: brightness(0.98); }

/* Apply Form Overlay */
.apply-overlay {
  position: relative;
  background: #ffffff;
  z-index: 2;
  padding: 24px;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.apply-overlay h4 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.apply-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0.9rem 0 0.6rem;
}

.form-input, .apply-overlay textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dbe3f0;
  border-radius: 12px;
  font-size: 0.95rem;
  background: #f9fbff;
  color: #0f172a;
}

.apply-overlay textarea { min-height: 120px; }

.apply-overlay .section-label {
  display: block;
  margin: 1rem 0 0.5rem;
  font-weight: 600;
  color: #2545FC;
}

.form-input:focus, .apply-overlay textarea:focus {
  border-color: #2545FC;
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 69, 252, 0.12);
  background: #ffffff;
}

.apply-overlay .submit-btn {
  background: linear-gradient(90deg, #FF8806, #FFDF06);
  color: #111;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  margin-top: 0.8rem;
  box-shadow: 0 10px 24px rgba(255, 136, 6, 0.25);
}

.apply-overlay .submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 223, 6, 0.32);
}

.apply-overlay label {
  color: #0f172a;
}

@media (max-width: 768px) {
  .job-detail-content h3 {
    font-size: 1.4rem;
  }

  .job-detail-content h4 {
    font-size: 1rem;
  }

  .apply-overlay {
    padding: 18px;
  }

  .apply-btn,
  .apply-overlay .submit-btn {
    width: 100%;
    text-align: center;
  }
}

/* Right side */
.right-panel { display: flex; flex-direction: column; gap: 1.8rem; min-width: 0; grid-area: jobs; }
.left-panel { grid-area: info; }

.job-list {
  display: grid;
  gap: 18px;
}

.job-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  border-color: transparent;
  background: radial-gradient(circle at 15% 25%, rgba(255, 223, 6, 0.25) 0%, transparent 40%), radial-gradient(circle at 85% 75%, rgba(255, 136, 6, 0.25) 0%, transparent 45%), linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
  color: #fff;
}

.job-card h3 { margin: 0 0 8px; font-size: 1.35rem; }

.job-card .meta { color: #6b7280; font-size: 0.98rem; margin-bottom: 12px; }
.job-card:hover .meta { color: rgba(255, 255, 255, 0.9); }

.tag { background: #eff6ff; color: #2563eb; padding: 5px 14px; border-radius: 999px; font-size: 0.9rem; font-weight: 600; }
.tag-row { text-align: left; }
.job-card:hover .tag { background: rgba(255,255,255,0.18); color: #fff; }

.job-card::after {
  content: "Click here to apply \2192";
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e3a8a;
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 12px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.job-card:hover::after {
  color: #0b1220;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .trending__inner { grid-template-columns: 1fr; grid-template-areas: "info" "jobs"; }
  .left-panel { position: static; }
}

@media (max-width: 768px) {
  .trending {
    padding: 64px 0;
  }

  .left-panel {
    padding: 24px;
  }

  .apply-form-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1400px) {
  .trending__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
    grid-template-areas: "jobs info";
    gap: 60px;
  }
}

/* ===============================================
   LARGE SCREEN ENHANCEMENTS
   =============================================== */
@media (min-width: 1600px) {
  .trending .container {
    max-width: var(--content-max-width);
  }

  .trending__inner {
    gap: 72px;
  }
}

/*contact section css*/

/* ==============================
   CONTACT HERO
============================== */

.contact-hero {
  padding: var(--space-hero-top) 0 var(--space-hero-bottom);
  position: relative;
  overflow: hidden;

 background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 223, 6, 0.25) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 136, 6, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
  pointer-events: none;
}
/* layout */
.contact-wrap {
  width: min(var(--content-max-width), 100%);
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding-left: var(--content-gutter);
  padding-right: var(--content-gutter);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* LEFT SIDE */
.contact-left h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  margin: 12px 0;
}

.contact-left h1 span {
  color: #FFDF06;
}

.contact-badge {
  background: rgba(255,255,255,0.15);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .5px;
}

.contact-desc {
  margin: 18px 0 30px;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
}

/* contact details */
.contact-details {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  gap: 12px;
  align-items: center;
}

.detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.15);
  font-size: 18px;
}

.detail-item p {
  font-size: 13px;
  opacity: .8;
}

.detail-item span {
  font-weight: 600;
  font-size: 15px;
}

/* RIGHT TRUST PANEL */
.contact-right {
  display: flex;
  justify-content: center;
}

.trust-panel {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  padding: 36px 30px;
  border-radius: 22px;
  max-width: 360px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
  text-align: center;
}

/* availability status */
.status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
}

.pulse {
  width: 10px;
  height: 10px;
  background: #22c55e;
  border-radius: 50%;
  position: relative;
}

.pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #22c55e;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(.6); opacity: .8; }
  70% { transform: scale(1.6); opacity: 0; }
  100% { opacity: 0; }
}

.trust-text {
  font-size: 15px;
  opacity: .9;
  margin-bottom: 22px;
  line-height: 1.5;
}

.primary-action {
  display: inline-block;
  background: #FFDF06;
  color: #111;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: .25s ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  background: #ffd000;
}

.mini-proof {
  margin-top: 18px;
  font-size: 13px;
  opacity: .85;
}


/* AI PANEL */

.ai-panel {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  border-radius: 22px;
  padding: 36px 32px;
  max-width: 360px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.ai-panel h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.ai-sub {
  font-size: 15px;
  opacity: .9;
  margin-bottom: 22px;
  line-height: 1.5;
}

.ai-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

.dot {
  width: 8px;
  height: 8px;
  background: #FFDF06;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255,223,6,0.8);
}


/* ===============================
   CONTACT PROCESS SECTION
================================= */

.contact-process {
  padding: var(--space-section) 20px;
  background: linear-gradient(135deg, #0f1e78, #2545fc);
  color: #fff;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-header p {
  max-width: 760px;
  margin: auto;
  opacity: 0.9;
  font-size: 16px;
  line-height: 1.6;
}

/* GRID */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CARD */
.contact-card {
  background: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 18px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
}

.contact-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

/* TOP AREA */
.contact-card-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 28px;
}

/* TEXT */
.contact-card h3 {
  font-size: 19px;
  font-weight: 700;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-header h2 {
    font-size: 28px;
  }
}

/* ===============================
   PARTNER PROCESS SECTION
================================= */

.partner-process {
  padding: var(--space-section) 20px;
  background: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
}

.partner-container {
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.partner-header {
  text-align: center;
  margin-bottom: 60px;
}

.partner-header h2 {
  font-size: 36px;
  font-weight: 600;
  /* background: var(--gradient-cta); */
  background: linear-gradient(
    90deg,
    #ff8806 0%,
    #ff8806 40%,
    #ff8806 75%,
    #ff8806 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
}

.partner-header p {
  max-width: 760px;
  margin: auto;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

/* GRID */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* CARD */
.partner-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  border-color: #dbeafe;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 223, 6, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 136, 6, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
}

/* CARD TOP */
.partner-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 15px;
}

/* ICON BOX */
.partner-icon {
  width: 54px;
  height: 54px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FIX WHITE SVG ICON VISIBILITY */
.partner-icon img {
  width: 28px;
  height: auto;
  filter: brightness(0) saturate(100%)
          invert(20%) sepia(90%)
          saturate(4000%) hue-rotate(220deg);
}

/* TEXT */
.partner-card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
}

.partner-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-header h2 {
    font-size: 28px;
  }

  .partner-process {
    padding: 70px 20px;
  }
}

/* ===== CARD BASE ===== */
.partner-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: 
    transform .35s cubic-bezier(.21,.6,.35,1),
    box-shadow .35s ease,
    border-color .35s ease;
  position: relative;
  overflow: hidden;
}

/* subtle gradient glow layer */
.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
              rgba(37,69,252,0.10),
              transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
}

/* ===== HOVER EFFECT ===== */
.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(15, 23, 42, 0.12);
  border-color: #c7d2fe;
  background:
    radial-gradient(circle at 15% 25%, rgba(255, 223, 6, 0.25) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255, 136, 6, 0.25) 0%, transparent 45%),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
}

.partner-card:hover::before {
  opacity: 1;
}

/* ===== ICON BOX ===== */
.partner-icon {
  width: 54px;
  height: 54px;
  background: #eef2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 
    transform .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}

/* icon animation */
.partner-card:hover .partner-icon {
  transform: scale(1.08) rotate(2deg);
  background: #2545fc;
  box-shadow: 0 10px 20px rgba(37,69,252,0.25);
}

/* make icon turn white on hover */
.partner-icon img {
  width: 28px;
  transition: filter .35s ease;
  filter: brightness(0) saturate(100%)
          invert(20%) sepia(90%)
          saturate(4000%) hue-rotate(220deg);
}

.partner-card:hover .partner-icon img {
  filter: brightness(0) invert(1);
}

/* ===== TITLE MICRO-ANIMATION ===== */
.partner-card h3 {
  transition: color .25s ease, transform .25s ease;
}

.partner-card:hover h3 {
  color: #ffffff;
  transform: translateX(2px);
}

/* ===== TEXT SOFT FADE ===== */
.partner-card p {
  transition: color .25s ease;
}

.partner-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

/* Partner process icons: gradient + glow (scoped only to this section) */
.partner-process .partner-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-cta);
  color: #111;
  box-shadow: 0 12px 30px rgba(255, 136, 6, 0.35);
}

.partner-process .partner-icon img {
  width: 28px;
  height: auto;
  filter: brightness(0) saturate(100%);
  transition: filter 0.3s ease;
}

.partner-process .partner-card:hover .partner-icon {
  background: var(--gradient-cta);
  color: #111;
  box-shadow: 0 16px 36px rgba(255, 136, 6, 0.45);
}

.partner-process .partner-card:hover .partner-icon img {
  filter: brightness(0) saturate(100%);
}


/* ===============================
   JOIN OUR TEAM SECTION
================================= */

.team-join {
  padding: var(--space-section) 20px;
  background: #ffffff;
  font-family: system-ui, -apple-system, sans-serif;
}

.team-join-container {
  max-width: 1100px;
  margin: auto;
}

/* LAYOUT */
.team-join-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT SIDE */
.team-join-left h2 {
  font-size: 44px;
  color: #0f172a;
  margin-bottom: 18px;
  font-weight: 700;
}

.team-join-left p {
  font-size: 17px;
  color: #475569;
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 28px;
}

/* BUTTONS */
.team-join-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* OUTLINE BUTTON */
.btn-outlines {
  padding: 14px 26px;
  border-radius: 10px;
  border: 2px solid #2545FC;
  color: #2545FC;
  font-weight: 600;
  text-decoration: none;
  transition: all .3s ease;
}

.btn-outline:hover {
  background: #2545FC;
  color: #fff;
  box-shadow: 0 10px 25px rgba(37,69,252,0.25);
}

/* PRIMARY BUTTON */
.btn-primary {
  padding: 14px 28px;
  border-radius: 10px;
  background: var(--gradient-cta);
  color: black;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* arrow animation */
.btn-primary .arrow {
  transition: transform .3s ease;
}

.btn-primary:hover .arrow {
  transform: translateX(4px) translateY(-2px);
}

/* RIGHT IMAGE */
.team-join-right img {
  width: 420px;
  max-width: 100%;
  border-radius: 20px;
  transition: transform .4s ease, box-shadow .4s ease;
}

/* image hover effect */
.team-join-right img:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}

/* DECORATIVE ACCENT */
.team-join-right {
  position: relative;
}

.team-join-right::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: #FFDF06;
  border-radius: 50%;
  top: -30px;
  right: -30px;
  z-index: -1;
  opacity: .9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .team-join-content {
    flex-direction: column;
    text-align: center;
  }

  .team-join-left h2 {
    font-size: 34px;
  }

  .team-join-right::after {
    display: none;
  }
}

/* ==============================
   CREATIVE PROCESS SECTION
============================== */

.process-section {
  background: #ffffff;
  padding: var(--space-section) 20px;
  position: relative;
  overflow: hidden;
}

/* subtle gradient glow */
.process-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(37,69,252,0.08), transparent 70%);
  top: -120px;
  right: -120px;
}

.process-container {
  max-width: 900px;
  margin: auto;
}

/* header */
.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  color: #111;
}

.process-header p {
  color: #666;
  font-size: 17px;
  margin-top: 10px;
}

/* timeline */
.timeline {
  position: relative;
  margin-left: 20px;
  border-left: 2px dashed rgba(37,69,252,0.2);
  padding-left: 40px;
}

/* item */
.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

/* glowing dot */
.timeline-dot {
  position: absolute;
  left: -50px;
  top: 6px;
  width: 18px;
  height: 18px;
  background: #FFDF06;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255,223,6,0.15),
              0 0 14px rgba(255,223,6,0.9);
}

/* content card */
.timeline-content {
  background: #fff;
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  transition: .3s ease;
}

.timeline-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* step label */
.step {
  font-size: 13px;
  font-weight: 700;
  color: #2545FC;
  background: rgba(37,69,252,0.08);
  padding: 5px 10px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 10px;
}

.timeline-content h3 {
  margin-bottom: 8px;
  font-size: 20px;
  color: #111;
}

.timeline-content p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* responsive */
@media (max-width: 768px) {
  .timeline {
    border-left: none;
    padding-left: 0;
  }

  .timeline-dot {
    position: static;
    margin-bottom: 10px;
  }

  .timeline-item {
    margin-bottom: 30px;
  }
}
/* responsive */
@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-details {
    justify-content: center;
  }

  .trust-panel {
    margin-top: 10px;
  }
}

.contact-sections {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: var(--space-section) 5%;

  background: #0f1e78;
}

/* ================= FINAL CONTACT PAGE RESPONSIVE OVERRIDES ================= */

@media (max-width: 992px) {
  .contact-hero {
    padding: 120px 16px var(--space-section-tablet);
  }

  .contact-hero .contact-wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .contact-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-hero .contact-left h1 {
    font-size: 42px;
    line-height: 1.12;
  }

  .contact-hero .contact-desc {
    margin: 14px auto 24px;
    font-size: 17px;
    line-height: 1.65;
    max-width: 680px;
  }

  .contact-hero .contact-details {
    justify-content: center;
    gap: 18px;
  }

  .contact-hero .detail-item {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 10px 14px;
  }

  .contact-hero .ai-panel {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    padding: 26px 22px;
    text-align: left;
  }

  .partner-process,
  .team-join,
  .contact-sections {
    padding-top: var(--space-section-tablet);
    padding-bottom: var(--space-section-tablet);
  }

  .partner-header,
  .process-header {
    margin-bottom: 36px;
  }

  .partner-header h2 {
    font-size: 34px;
    line-height: 1.22;
  }

  .partner-header p {
    font-size: 16px;
  }

  .partner-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .partner-card {
    padding: 20px;
  }

  .team-join-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .team-join-left h2 {
    font-size: 36px;
  }

  .team-join-left p {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    max-width: 640px;
  }

  .team-join-actions {
    justify-content: center;
  }

  .map-wrapper {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: var(--space-hero-top-mobile) 12px var(--space-hero-bottom-mobile);
  }

  .contact-hero .contact-left h1 {
    font-size: 34px;
  }

  .contact-hero .contact-desc {
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-hero .contact-details {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .contact-hero .detail-item {
    justify-content: flex-start;
    text-align: left;
  }

  .contact-hero .ai-panel {
    padding: 22px 18px;
  }

  .contact-hero .ai-panel h3 {
    font-size: 20px;
  }

  .contact-hero .ai-sub,
  .contact-hero .ai-item {
    font-size: 14px;
  }

  .partner-process,
  .team-join,
  .contact-sections {
    padding-top: var(--space-section-mobile);
    padding-bottom: var(--space-section-mobile);
  }

  .partner-header h2 {
    font-size: 29px;
  }

  .partner-header p {
    font-size: 15px;
    line-height: 1.6;
  }

  .partner-card-top {
    align-items: flex-start;
  }

  .partner-card h3 {
    font-size: 18px;
    line-height: 1.3;
  }

  .partner-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-sections .contact-wrapper {
    gap: 32px;
    text-align: center;
  }

  .contact-sections .contact-title {
    font-size: 32px;
  }

  .contact-sections .contact-desc {
    font-size: 16px;
  }

  .contact-sections .contact-card {
    max-width: 100%;
    padding: 24px 18px;
    border-radius: 16px;
  }

  .contact-sections .form-group {
    margin-bottom: 12px;
  }

  .contact-sections .contact-form input,
  .contact-sections .contact-form textarea {
    font-size: 15px;
    padding: 13px 14px;
  }

  .contact-sections .contact-btn {
    padding: 13px;
  }

  .team-join-left h2 {
    font-size: 31px;
  }

  .team-join-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .team-join-actions .btn-outline,
  .team-join-actions .btn-primary {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 13px 16px;
  }

  .team-join-right img {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }

  .map-wrapper {
    height: 300px;
  }

  .our-presence {
    left: 12px;
    top: 10px;
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding: 98px 10px 48px;
  }

  .contact-hero .contact-left h1 {
    font-size: 30px;
  }

  .contact-hero .contact-desc {
    font-size: 15px;
  }

  .contact-hero .detail-item p {
    font-size: 12px;
  }

  .contact-hero .detail-item span {
    font-size: 14px;
  }

  .partner-process,
  .team-join,
  .contact-sections {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .partner-header h2 {
    font-size: 25px;
  }

  .partner-card {
    padding: 16px 14px;
    border-radius: 12px;
  }

  .team-join-left h2 {
    font-size: 27px;
  }

  .team-join-left p {
    font-size: 15px;
  }

  .contact-sections .contact-title {
    font-size: 28px;
  }

  .contact-sections .contact-desc {
    font-size: 15px;
  }
}



/* =============================================
   OFFICE MAP SECTION – Unique classes, no conflicts
============================================= */

/* Main container */
.office-map-section {
  /* padding: var(--space-section) 0; */
  background: #f8fafc;
}

/* Flex wrapper */
.office-map-wrapper {
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  align-items: stretch;
  min-height: 700px; /* minimum comfortable height */
}

/* Map area – sticky on desktop */
.office-map-map-area {
  width: 60%;
  min-height: 700px;
  height: auto;
  position: relative;
  display: flex;
  background: #f0f4ff;
}

/* Map canvas */
#office-map-canvas {
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex: 1;
}

/* Side panel */
.office-map-panel {
  width: 40%;
  height: auto;
  padding: 24px 20px;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

/* Title */
.office-map-panel-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  position: relative;
}

.office-map-panel-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #2545FC, #FF8806, #FFDF06);
  border-radius: 2px;
}

/* Office list container */
#office-map-list {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  padding-right: 0;
}

/* Individual office card */
.office-map-office {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: none;
}

.office-map-office:hover {
  transform: translateY(-3px);
  background: #0f1e78;
  border-color: #0f1e78;
  box-shadow: 0 12px 30px rgba(15,30,120,0.32);
}

.office-map-office.active:hover {
  background: #0f1e78;
  border-color: #0f1e78;
  box-shadow: 0 12px 30px rgba(15,30,120,0.32);
}

.office-map-office.active {
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}

.office-map-flag {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #edf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.office-map-office strong {
  font-size: 1.05rem;
  color: #1e3a8a;
  display: block;
  margin-bottom: 4px;
}

.office-map-office:hover strong,
.office-map-office.active:hover strong {
  color: #ffffff;
}

.office-map-meta {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.4;
}

.office-map-office:hover .office-map-meta,
.office-map-office.active:hover .office-map-meta {
  color: rgba(255, 255, 255, 0.9);
}

.office-map-address {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 4px;
}

.office-map-office:hover .office-map-address,
.office-map-office.active:hover .office-map-address {
  color: rgba(255, 255, 255, 0.86);
}

.office-map-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-top: 4px;
}

.office-map-office:hover .office-map-phone,
.office-map-office.active:hover .office-map-phone {
  color: #ffffff;
}

/* Ensure active/default card text is visible (no hover) */
.office-map-panel .office-map-office.active {
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}

.office-map-panel .office-map-office.active strong {
  color: #0f172a;
}

.office-map-panel .office-map-office.active .office-map-meta {
  color: #475569;
}

.office-map-panel .office-map-office.active .office-map-address {
  color: #64748b;
}

.office-map-panel .office-map-office.active .office-map-phone {
  color: #334155;
}

/* Responsive – stack on mobile/tablet */
@media (max-width: 1024px) {
  .office-map-wrapper {
    flex-direction: column;
  }

  .office-map-map-area,
  .office-map-panel {
    width: 100%;
    height: auto;
    position: static;
  }

  .office-map-map-area {
    height: 60vh;
    min-height: 500px;
  }

  .office-map-panel {
    height: auto;
    max-height: none;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .office-map-section {
    padding: 60px 0;
  }

  .office-map-map-area {
    height: 45vh;
    min-height: 320px;
  }

  .office-map-panel-title {
    font-size: 1.4rem;
  }
}



.footer {
  background: linear-gradient(
    180deg,
    rgba(15, 30, 120, 0.95) 0%,
    rgba(10, 20, 90, 0.98) 100%
  );
  color: #ffffff;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

/* ambient glow effects */

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 223, 6, 0.12), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(255, 136, 6, 0.1), transparent 60%);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 120%,
    rgba(0, 0, 0, 0.35),
    transparent 60%
  );
  pointer-events: none;
}

/* container */

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ================================
   Footer Grid
================================ */

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* ================================
   Brand Column
================================ */

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-location {
  font-size: 13px;
  opacity: 0.7;
}

/* ================================
   Column Titles
================================ */

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #ffdf06;
}

/* ================================
   Links
================================ */

.footer-col a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: #ffdf06;
  transform: translateX(4px);
}

/* ================================
   Bottom Section
================================ */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* socials */

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  opacity: 1;
  color: #ff8806;
  transform: translateY(-2px);
}

/* copyright */

.footer-copy {
  font-size: 13px;
  opacity: 0.7;
}

/* back to top */

.footer-top-btn {
  text-decoration: none;
  font-size: 13px;
  color: #ffdf06;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-top-btn:hover {
  color: #ff8806;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1100px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

}
/* ===============================================
   RESPONSIVE SAFETY LAYER
   =============================================== */
@media (max-width: 992px) {
  .sticky-sidebar {
    display: none;
  }

  [class*="container"] {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    /* overflow-x: hidden; */
  }

  [class*="container"] {
    width: 100%;
    padding-left: clamp(12px, 4vw, 18px) !important;
    padding-right: clamp(12px, 4vw, 18px) !important;
  }

  [class*="grid"],
  [class*="col"],
  [class*="card"] {
    min-width: 0;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
/* ===============================================
   UNIFIED FOOTER RESPONSIVE (FOOTER ONLY)
   =============================================== */
.footer {
  background: linear-gradient(180deg, rgba(15, 30, 120, 0.95) 0%, rgba(10, 20, 90, 0.98) 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px 36px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--yellow, #FFDF06);
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-top-btn {
  font-size: 13px;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 42px 0 28px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 34px;
  }

  .footer-logo {
    width: 124px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col a {
    margin-bottom: 9px;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 22px;
  }

  .footer .container {
    padding-left: clamp(12px, 4vw, 18px);
    padding-right: clamp(12px, 4vw, 18px);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy,
  .footer-top-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

/* ===============================================
   LARGE SCREEN ENHANCEMENTS
   =============================================== */
@media (min-width: 1600px) {
  .contact-hero .contact-wrap,
  .contact-container,
  .partner-container,
  .team-join-container,
  .process-container,
  .office-map-wrapper {
    max-width: var(--content-max-width);
  }

  .contact-hero .contact-left h1 {
    font-size: 60px;
  }

  .contact-hero .contact-desc {
    font-size: 19px;
  }
}

@media (min-width: 1920px) {
  .contact-grid,
  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 3440px) {
  .contact-grid,
  .partner-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}


/* =============================================
   OFFICE MAP SECTION – Unique classes, no conflicts
============================================= */

.leaflet-control-attribution {
  display: none ;
}

/* Main container */
.office-map-section {
  
  background: #f8fafc;
}

/* Flex wrapper */
.office-map-wrapper {
  display: flex;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  align-items: stretch;
  min-height: 700px; 
}

/* Map area – sticky on desktop */
.office-map-map-area {
  width: 60%;
  min-height: 700px;
  height: auto;
  position: relative;
  display: flex;
  background: #f0f4ff;
}

/* Map canvas */
#office-map-canvas {
  width: 100%;
  height: 100%;
  min-height: 100%;
  flex: 1;
}

.office-map-icon {
  background: transparent;
  border: none;
}

.office-map-marker {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(37, 69, 252, 0.55);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 69, 252, 0.2);
  position: relative;
}

.office-map-marker img {
  width: 18px;
  height: 23px;
  display: block;
}

.office-map-marker::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgb(15 30 120);
  opacity: 0.0;
  transform: scale(0.7);
  animation: officeMarkerPulse 2.4s ease-in-out infinite;
}

.office-map-marker.is-active {
  border-color: rgba(255, 136, 6, 0.8);
  box-shadow: 0 14px 30px rgba(255, 136, 6, 0.35);
}

.office-map-marker.is-hover {
  transform: scale(1.06);
}

@keyframes officeMarkerPulse {
  0% { opacity: 0.0; transform: scale(0.7); }
  45% { opacity: 0.7; transform: scale(1); }
  100% { opacity: 0.0; transform: scale(1.5); }
}

/* Office map tooltip (Leaflet popup) */
/* 
.office-map-tooltip .leaflet-popup-content-wrapper {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  padding: 2px;
}

.office-map-tooltip .leaflet-popup-content {
  margin: 12px 18px 14px 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: #334155;
}

.office-map-tooltip .leaflet-popup-content strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 2px;
}

.office-map-tooltip .leaflet-popup-tip {
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.office-map-tooltip .leaflet-popup-close-button {
  color: #64748b;
  font-size: 16px;
  line-height: 16px;
  top: 6px;
  right: 6px;
  padding: 6px;
}

.office-map-tooltip .leaflet-popup-close-button:hover {
  color: #0f172a;
} */

.office-map-tooltip .leaflet-popup-content-wrapper {
  background: #f1f5f9; /* soft neutral base */
  border-radius: 12px;
  padding: 0;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

/* CONTENT */
.office-map-tooltip .leaflet-popup-content {
  margin: 10px 14px 12px 14px;
  font-size: 14px;
  line-height: 1.45;
  color: #334155;
}

/* TITLE */
.office-map-tooltip .leaflet-popup-content strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  color: #2545FC; /* primary brand */
  margin-bottom: 6px;
}

/* ADDRESS TEXT */
.office-map-tooltip .leaflet-popup-content .addr {
  display: block;
  color: #475569;
  font-size: 13.5px;
  margin-bottom: 6px;
}

/* PHONE / NUMBERS → standout */
.office-map-tooltip .leaflet-popup-content .phone {
  display: inline-block;
  color: #FF8806; /* strong highlight */
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
}

/* SECONDARY LABELS */
.office-map-tooltip .leaflet-popup-content .label {
  color: #64748b;
  font-size: 12.5px;
  margin-right: 4px;
}

/* subtle divider */
.office-map-tooltip .leaflet-popup-content .divider {
  height: 1px;
  background: #e2e8f0;
  margin: 6px 0;
}

/* TIP */
.office-map-tooltip .leaflet-popup-tip {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
}

/* CLOSE BUTTON */
.office-map-tooltip .leaflet-popup-close-button {
  color: #94a3b8;
  font-size: 15px;
  top: 4px;
  right: 6px;
  padding: 4px;
}

.office-map-tooltip .leaflet-popup-close-button:hover {
  color: #2545FC;
}

/* Side panel */
.office-map-panel {
  width: 40%;
  height: auto;
  padding: 24px 20px;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

/* Title */
.office-map-panel-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  position: relative;
}

.office-map-panel-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, #2545FC, #FF8806, #FFDF06);
  border-radius: 2px;
}

/* Office list container */
#office-map-list {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: visible;
  padding-right: 0;
}

/* Individual office card */
.office-map-office {
  display: flex;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.25s ease;
}

.office-map-office.active {
  background: #f8fafc;
  border-color: #e2e8f0;
  box-shadow: none;
}

.office-map-office:hover {
  transform: translateY(-3px);
  background: #0f1e78;
  border-color: #0f1e78;
  box-shadow: 0 12px 30px rgba(15,30,120,0.32);
}



.office-map-flag {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #edf2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.office-map-office strong {
  font-size: 1.05rem;
  color: #1e3a8a;
  display: block;
  margin-bottom: 4px;
}

.office-map-office:hover strong,
.office-map-office.active:hover strong {
  color: #ffffff;
}

.office-map-meta {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.4;
}

.office-map-office:hover .office-map-meta,
.office-map-office.active:hover .office-map-meta {
  color: rgba(255, 255, 255, 0.9);
}

.office-map-address {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 4px;
}

.office-map-office:hover .office-map-address,
.office-map-office.active:hover .office-map-address {
  color: rgba(255, 255, 255, 0.86);
}

.office-map-phone {
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  margin-top: 4px;
}

.office-map-office:hover .office-map-phone,
.office-map-office.active:hover .office-map-phone {
  color: #ffffff;
}

/* Responsive – stack on mobile/tablet */
@media (max-width: 1024px) {
  .office-map-wrapper {
    flex-direction: column;
  }

  .office-map-map-area,
  .office-map-panel {
    width: 100%;
    height: auto;
    position: static;
  }

  .office-map-map-area {
    height: 60vh;
    min-height: 500px;
  }

  .office-map-panel {
    height: auto;
    max-height: none;
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .office-map-section {
    padding: 60px 0;
  }

  .office-map-panel-title {
    font-size: 1.4rem;
  }
}

/* Ensure hover applies even on the default/active card */
.office-map-panel .office-map-office.active:hover {
  background: #0f1e78;
  border-color: #0f1e78;
  box-shadow: 0 12px 30px rgba(15, 30, 120, 0.32);
}

.office-map-panel .office-map-office.active:hover strong {
  color: #ffffff;
}

.office-map-panel .office-map-office.active:hover .office-map-meta {
  color: rgba(255, 255, 255, 0.9);
}

.office-map-panel .office-map-office.active:hover .office-map-address {
  color: rgba(255, 255, 255, 0.86);
}

.office-map-panel .office-map-office.active:hover .office-map-phone {
  color: #ffffff;
}

/* Office Map Section - Compact Single Column (Fit All Cards) */
.office-map-section {
  height: clamp(720px, 82vh, 920px);
  min-height: clamp(720px, 82vh, 920px);
  overflow: hidden;
}

.office-map-section .office-map-wrapper {
  height: 100%;
  align-items: stretch;
}

.office-map-section .office-map-map-area,
.office-map-section .office-map-panel {
  height: 100%;
  min-height: 0;
}

.office-map-section .office-map-map-area {
  flex: 0 0 60%;
}

.office-map-section .office-map-panel {
  display: flex;
  flex-direction: column;
  padding: 18px 18px;
  gap: 10px;
  overflow: hidden;
  flex: 0 0 40%;
  min-width: 0;
}

.office-map-section .office-map-panel-title {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.office-map-section #office-map-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: start;
  overflow-y: auto;
  min-height: 0;
  padding-right: 6px;
}

.office-map-section .office-map-office {
  padding: 8px 10px;
  gap: 8px;
  max-height: 112px;
}

.office-map-section .office-map-flag {
  width: 22px;
  height: 22px;
}

.office-map-section .office-map-office strong {
  font-size: 0.92rem;
  margin: 0 0 4px 0;
}

.office-map-section .office-map-meta {
  font-size: 0.78rem;
  margin: 0 0 4px 0;
  line-height: 1.2;
}

.office-map-section .office-map-address {
  font-size: 0.8rem;
  line-height: 1.22;
  margin: 0 0 6px 0;
}

.office-map-section .office-map-phone {
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 1024px) {
  .office-map-section {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .office-map-section .office-map-map-area {
    height: 60vh;
    min-height: 420px;
  }

  .office-map-section .office-map-panel {
    height: auto;
    overflow: visible;
  }
}

@media (min-width: 1440px) {
  .office-map-section {
    height: clamp(760px, 78vh, 940px);
    min-height: clamp(760px, 78vh, 940px);
  }

  .office-map-section .office-map-panel {
    padding: 22px 22px;
  }

  .office-map-section #office-map-list {
    gap: 10px;
  }
}



/*contact page hero right image */
.contact-right {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  max-width: 420px;
  width: 100%;
}

/* image styling */
.contact-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  /* makes it feel premium */
  filter: contrast(1.05) saturate(1.05);
  transition: transform 0.3s ease;
}

/* subtle hover (optional but clean) */
.contact-image img:hover {
  transform: translateY(-4px) scale(1.02);
}

/* ===============================================
   BLOG PAGE — Routa Digital
   =============================================== */
/* =========================================
   BLOG HERO — PREMIUM LEFT RIGHT LAYOUT
   Brand Colors:
   #2545FC (Primary)
   #FFDF06 (Accent)
   #FF8806 (Highlight)
========================================= */

.blog-hero {
  padding: var(--space-hero-top) 0 var(--space-hero-bottom);
 background:
    radial-gradient(
      circle at 15% 25%,
      rgba(255, 223, 6, 0.25) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 136, 6, 0.25) 0%,
      transparent 45%
    ),
    linear-gradient(135deg, #1e36d8 0%, #2545fc 50%, #1b2fc4 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* soft glow depth */
.blog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

/* subtle grid texture */
.blog-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: .2;
}

/* container */
.blog-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* flex layout */
.blog-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* LEFT SIDE */
.blog-left {
  flex: 1;
  max-width: 540px;
}

.blog-hero-title {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
  line-height: 1.05;
}

.blog-left p {
  font-size: 18px;
  line-height: 1.7;
  opacity: .92;
}

/* shimmer highlight */
.shimmer-text {
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #FFDF06 25%,
    #FF8806 50%,
    #FFDF06 75%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

/* RIGHT SIDE */
.blog-right {
  flex: 1;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* highlight cards */
.blog-highlight {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.blog-highlight:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.25);
}

.blog-highlight h3 {
  font-size: 18px;
  margin: 6px 0 6px;
}

.blog-highlight p {
  font-size: 14px;
  opacity: .85;
}

/* topic tag */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 20px;
  background: linear-gradient(90deg,#2545FC,#FF8806);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {

  .blog-flex {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }

  .blog-left,
  .blog-right {
    max-width: 100%;
    width: 100%;
  }

  .blog-hero-title {
    font-size: 40px;
  }

}

/* ── BLOG GRID ── */
.blog-listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-listing-card {
  background: var(--bg-white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.blog-listing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.blog-listing-card .card-image {
  height: 220px;
  overflow: hidden;
}

.blog-listing-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-listing-card:hover .card-image img {
  transform: scale(1.08);
}

.blog-listing-card .card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-listing-card .card-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--blue);
  transition: color 0.3s;
}

.blog-listing-card:hover .card-tag {
  color: var(--orange);
}

.blog-listing-card .card-body h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 14px;
  color: var(--text);
}

.blog-listing-card .card-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 20px;
  flex: 1;
}

.blog-listing-card .card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.blog-listing-card .card-meta img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-listing-card .card-meta strong {
  font-size: 13px;
  display: block;
  color: var(--text);
}

.blog-listing-card .card-meta span {
  font-size: 12px;
  color: var(--text-light);
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  margin-bottom: 16px;
}

.blog-read-more:hover {
  color: var(--orange);
  transform: translateX(4px);
}

/* ── FEATURED CARD ── */
.blog-listing-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.blog-listing-card.featured .card-image {
  height: 100%;
  min-height: 340px;
}
.bg-brand-blue {
    --tw-bg-opacity: 1;
    /* background-color: rgb(255 163 6); */
    background: var(--gradient-cta);
}
/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .blog-listing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-listing-card.featured {
    grid-column: span 2;
    grid-row: auto;
  }

  .blog-listing-card.featured .card-image {
    min-height: 260px;
  }
}

@media (max-width: 768px) {
  .blog-hero-title {
    font-size: 38px;
  }

  .blog-listing-grid {
    grid-template-columns: 1fr;
  }

  .blog-listing-card.featured {
    grid-column: span 1;
  }
}

@media (max-width: 480px) {
  .blog-hero-title {
    font-size: 30px;
  }
  
  .blog-hero {
    padding: 130px 0 60px;
  }
}

 

.category-btn.active,
    .category-btn:hover {
      background: var(--gradient-cta);
      color: black !important;
      border-color: transparent !important;
      box-shadow: 0 10px 30px rgba(255, 136, 6, 0.35);
      transform: translateY(-3px) scale(1.05) rotate(1deg); /* Creative subtle rotate for innovation */
    }

/* ===============================================
   BLOG PAGE RESPONSIVE STABILIZATION
   =============================================== */

.blog-posts-grid > article {
  min-width: 0;
}

.blog-categories-row {
  min-width: max-content;
  padding-bottom: 2px;
}

.blog-categories .category-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .blog-hero {
    padding: 132px 0 72px;
  }

  .blog-container {
    padding: 0 16px;
  }

  .blog-flex {
    gap: 34px;
  }

  .blog-left p {
    font-size: 16px;
    line-height: 1.6;
  }

  .blog-right {
    gap: 14px;
  }

  .blog-highlight {
    padding: 16px;
  }
}

@media (max-width: 900px) {
  .blog-hero {
    padding: 120px 0 var(--space-section-tablet);
  }

  .blog-categories {
    padding-top: 12px !important;
    padding-bottom: 8px !important;
  }

  .blog-categories-row {
    justify-content: flex-start !important;
    gap: 8px !important;
  }

  .blog-categories .category-btn {
    padding: 8px 14px !important;
    font-size: 13px !important;
  }

  .blog-posts-section {
    padding-top: var(--space-section-tablet) !important;
    padding-bottom: var(--space-section-tablet) !important;
  }

  .blog-posts-wrap {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .blog-posts-grid {
    gap: 16px !important;
  }

  .blog-posts-grid > article {
    border-radius: 14px !important;
  }

  .blog-posts-grid .p-5 {
    padding: 14px !important;
  }

  .blog-posts-grid .p-6,
  .blog-posts-grid .p-9 {
    padding: 16px !important;
  }

  .blog-posts-grid h3 {
    line-height: 1.3 !important;
  }
}

@media (max-width: 640px) {
  .blog-hero {
    padding: var(--space-hero-top-mobile) 0 var(--space-hero-bottom-mobile);
  }

  .blog-posts-section {
    padding-top: var(--space-section-mobile) !important;
    padding-bottom: var(--space-section-mobile) !important;
  }

  .blog-hero-title {
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -0.5px;
  }

  .blog-left p {
    font-size: 15px;
  }

  .blog-highlight h3 {
    font-size: 16px;
  }

  .blog-highlight p {
    font-size: 13px;
  }

  .blog-categories .category-btn {
    padding: 7px 12px !important;
    font-size: 12px !important;
  }

  .blog-posts-grid .text-2xl,
  .blog-posts-grid .text-3xl {
    font-size: 1.18rem !important;
  }

  .blog-posts-grid .w-10,
  .blog-posts-grid .h-10 {
    width: 34px !important;
    height: 34px !important;
  }

  .blog-posts-grid .w-9,
  .blog-posts-grid .h-9 {
    width: 30px !important;
    height: 30px !important;
  }
}

@media (max-width: 420px) {
  .blog-hero {
    padding: 108px 0 54px;
  }

  .blog-hero-title {
    font-size: 30px;
  }

  .blog-categories {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .blog-posts-wrap {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}



.footer {
  background: linear-gradient(
    180deg,
    rgba(15, 30, 120, 0.95) 0%,
    rgba(10, 20, 90, 0.98) 100%
  );
  color: #ffffff;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

/* ambient glow effects */

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 223, 6, 0.12), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(255, 136, 6, 0.1), transparent 60%);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 120%,
    rgba(0, 0, 0, 0.35),
    transparent 60%
  );
  pointer-events: none;
}

/* container */

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ================================
   Footer Grid
================================ */

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* ================================
   Brand Column
================================ */

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-location {
  font-size: 13px;
  opacity: 0.7;
}

/* ================================
   Column Titles
================================ */

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #ffdf06;
}

/* ================================
   Links
================================ */

.footer-col a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: #ffdf06;
  transform: translateX(4px);
}

/* ================================
   Bottom Section
================================ */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* socials */

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  opacity: 1;
  color: #ff8806;
  transform: translateY(-2px);
}

/* copyright */

.footer-copy {
  font-size: 13px;
  opacity: 0.7;
}

/* back to top */

.footer-top-btn {
  text-decoration: none;
  font-size: 13px;
  color: #ffdf06;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-top-btn:hover {
  color: #ff8806;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1100px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

}

.blog-posts-section {
  padding: var(--space-section) 0 !important;
}

/* Brand blue only for tags + "Read article" link */
.blog-posts-grid .tag-glow {
  color: #2545FC !important;
  border-color: rgba(37, 69, 252, 0.35) !important;
  background: rgba(37, 69, 252, 0.12) !important;
}

.blog-posts-grid a.text-orange-600 {
  color: #2545FC !important;
}
/* ===============================================
   RESPONSIVE SAFETY LAYER
   =============================================== */
@media (max-width: 992px) {
  .sticky-sidebar {
    display: none;
  }

  [class*="container"] {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    /* overflow-x: hidden; */
  }

  [class*="container"] {
    width: 100%;
    padding-left: clamp(12px, 4vw, 18px) !important;
    padding-right: clamp(12px, 4vw, 18px) !important;
  }

  [class*="grid"],
  [class*="col"],
  [class*="card"] {
    min-width: 0;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
/* ===============================================
   UNIFIED FOOTER RESPONSIVE (FOOTER ONLY)
   =============================================== */
.footer {
  background: linear-gradient(180deg, rgba(15, 30, 120, 0.95) 0%, rgba(10, 20, 90, 0.98) 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px 36px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--yellow, #FFDF06);
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-top-btn {
  font-size: 13px;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 42px 0 28px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 34px;
  }

  .footer-logo {
    width: 124px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col a {
    margin-bottom: 9px;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 22px;
  }

  .footer .container {
    padding-left: clamp(12px, 4vw, 18px);
    padding-right: clamp(12px, 4vw, 18px);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy,
  .footer-top-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

/* ===============================================
   LARGE SCREEN ENHANCEMENTS
   =============================================== */
@media (min-width: 1600px) {
  .blog-container {
    max-width: var(--content-max-width);
  }

  .blog-flex {
    gap: 120px;
  }

  .blog-left {
    max-width: 640px;
  }

  .blog-right {
    max-width: 520px;
  }

  .blog-hero-title {
    font-size: 64px;
  }

  .blog-left p {
    font-size: 20px;
  }

  .blog-listing-grid {
    gap: 40px;
  }
}

@media (min-width: 1920px) {
  .blog-listing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 3440px) {
  .blog-listing-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}


/* cases studies css */


.case-section {
  position: relative;
  overflow: hidden;
  padding: var(--space-hero-top) 6% var(--space-hero-bottom);
  color: #fff;

  /* background:
    radial-gradient(circle at 15% 30%, rgba(37,69,252,.25), transparent 45%),
    radial-gradient(circle at 85% 70%, rgba(255,136,6,.15), transparent 45%),
    radial-gradient(circle at 70% 15%, rgba(255,223,6,.10), transparent 40%),
    linear-gradient(135deg,#2c46c7,#5c73db); */
  background:
    radial-gradient(circle at 15% 30%, rgb(17 32 123 / 47%), #2e42a9 45%),
    radial-gradient(circle at 85% 70%, rgb(255 237 218), transparent 45%),
    radial-gradient(circle at 70% 15%, rgba(255, 223, 6, 0.1), transparent 40%),
    linear-gradient(135deg, #2c46c7, #5c73db);

  background-size: 200% 200%;
  animation: gradientShift 14s ease infinite;
}

/* subtle animated gradient */

.container {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* =============================
   TOP INFO BAR
============================= */

.cs-top-banner {
  display: inline-flex;
  align-items: center;
  padding: 16px 26px;
  border-radius: 16px;
  backdrop-filter: blur(14px);
  background: rgb(45 65 168);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s;
}

/* hover glow */
.cs-top-banner:hover {
  box-shadow:
    0 0 30px rgba(255, 223, 6, 0.25),
    0 0 50px rgba(255, 136, 6, 0.2);
  transform: translateY(-2px);
}

.cstb-card {
  padding: 0 22px;
  display: flex;
  flex-direction: column;
}

.cstb-card:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.cstb-title {
  font-size: 11px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #ff8806;
  font-weight: 700;
}

.cstb-text {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.3;
}

/* =============================
   GRID
============================= */

.case-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-top: 55px;
    align-items: stretch;
}

/* =============================
   TITLE
============================= */

.case-title {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.title-yellow {
  color: #ffdf06;
}
.title-orange {
  color: #ff8806;
}

/* =============================
   DESCRIPTION
============================= */

.case-desc {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
}

/* =============================
   PHONE IMAGE + PARALLAX
============================= */


/* =============================
   VISUAL COMPOSITION
============================= */

.visual-wrapper {
  position: relative;
  width: 560px;
  height: 380px;
}


/* === BACKGROUND INTEGRATION === */

.visual-bg {
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.18),
    rgba(99, 102, 241, 0.12),
    rgba(0, 0, 0, 0) 70%
  );

  border-radius: 28px;
  filter: blur(50px);

  z-index: 0;
}


/* =============================
   DASHBOARD IMAGES
============================= */

.visual {
  position: absolute;
  /* width: 100%; */
  max-width: 630px;
  /* margin-top: 105px; */
  margin-top: 10px;
  border-radius: 18px;

  /* box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    0 15px 40px rgba(0, 0, 0, 0.25); */

  transition: all 0.4s ease;
}


/* === MAIN (FRONT) DASHBOARD === */

.visual.main {
  z-index: 2;

  /* transform: rotate(-3deg);

  animation: floatMain 6s ease-in-out infinite; */
}


/* === SECONDARY (BACK) DASHBOARD === */

.visual.back {
  z-index: 1;

  width: 92%;
  left: 50px;
  top: 35px;

  transform: rotate(6deg);

  opacity: 0.85;
  filter: blur(1.5px);

  animation: floatBack 6s ease-in-out infinite;
}


/* glow behind image */
.image-col::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(37, 69, 252, 0.45), transparent 70%);
  filter: blur(70px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* =============================
   RESPONSIVE
============================= */

@media (max-width: 900px) {
  .case-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .case-title {
    font-size: 40px;
  }
  .case-desc {
    margin: auto;
  }

  .cs-top-banner {
    flex-direction: column;
    gap: 10px;
  }

  .cstb-card {
    border-right: none !important;
  }
}

@media (max-width: 768px) {
  .visual-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 560 / 380;
  }

  .visual {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }

  .visual.back {
    display: none;
  }
}

@media (max-width: 600px) {
  .image-col::before {
    width: min(420px, 70vw);
    height: min(420px, 70vw);
  }
}

@media (max-width: 480px) {
  .case-title {
    font-size: 32px;
    line-height: 1.1;
  }

  .case-desc {
    font-size: 16px;
    line-height: 1.6;
  }

  .cs-top-banner {
    width: 100%;
    padding: 14px 16px;
  }

  .cstb-card {
    padding: 8px 0;
  }

  .cstb-text {
    font-size: 16px;
  }

  .challenge-text-block {
    padding: 24px 20px;
  }

  .challenge-subtitle {
    font-size: 1.5rem;
  }
}
/* ───────────────────────────────────────────────
   CONCEPT SECTION – PURE WHITE VERSION
─────────────────────────────────────────────── */

.sim-sec.is--concept {
  position: relative;
  overflow: hidden;
  padding: var(--space-section) 5%;

  /* true white background with soft warm depth */
  background:
    radial-gradient(circle at 12% 18%, rgba(255,223,6,0.10), transparent 40%),
    radial-gradient(circle at 88% 78%, rgba(255,136,6,0.08), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);

  color: #0f172a;
}

.sim-sec .case-container {
  /* max-width: 1450px; */
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
}

/* ───────── TITLE ───────── */

.concept-hero-title {
  text-align: center;
  margin-bottom: 80px;
}

.concept-main-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  color: #0f172a;
}

.orange-gradient {
  background: linear-gradient(90deg, #ff8806, #ffdf06);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ───────── CONTENT LAYOUT ───────── */

.concept-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.concept-mockups {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  position: relative;
}

.mockup-wrapper {
  position: relative;
}

/* phone image */

.concept-phone-img {
  width: 100%;
  height: auto;
  margin-top: 50px;
  /* max-width: 620px; */
  /* border-radius: 36px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12); */
  border-radius: 18px;

  transition: transform 0.6s ease;
}



/* ───────── TEXT BLOCK ───────── */

.concept-text-block {
  flex: 1;
  max-width: 50%;
}

.concept-subtitle {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: #0f172a;
}

.concept-desc {
  font-size: 1.28rem;
  line-height: 1.7;
  color: #475569;
  max-width: 620px;
}

/* ───────────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────────── */

@media (max-width: 1100px) {
  .sim-sec.is--concept {
    padding: 100px 6% 120px;
  }

  .concept-main-title {
    font-size: 3.2rem;
  }

  .concept-subtitle {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .sim-sec.is--concept {
    padding: 90px 5% 110px;
  }

  .concept-content {
    flex-direction: column;
    gap: 60px;
  }

  .concept-mockups,
  .concept-text-block {
    max-width: 100%;
  }

  .concept-mockups {
    order: 1;
  }

  .concept-text-block {
    text-align: center;
    order: 2;
  }

  .concept-desc {
    margin: 0 auto;
  }

  .concept-phone-img {
    max-width: 480px;
    transform: rotate(-4deg);
  }
}

@media (max-width: 640px) {
  .concept-main-title {
    font-size: 2.6rem;
  }

  .concept-subtitle {
    font-size: 2rem;
  }

  .concept-desc {
    font-size: 1.12rem;
  }

  .concept-phone-img {
    max-width: 360px;
    border-radius: 28px;
  }
}

/* ───────────────────────────────────────────────
   CHALLENGES SECTION
─────────────────────────────────────────────── */
/* SECTION BACKGROUND */

.sim-sec.is--challenges {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: var(--space-section) 5%;
  background:
    /* ambient glows shifted for variety */
    radial-gradient(circle at 15% 20%, rgba(37, 69, 252, 0.2), transparent 50%),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 223, 6, 0.12),
      transparent 40%
    ),
    radial-gradient(circle at 60% 5%, rgba(255, 136, 6, 0.07), transparent 35%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.06), #2545fc 60%),
    /* base gradient with a different angle and stops */
    linear-gradient(160deg, #2545fc 0%, #4568a8 40%, #4568a8 90%);
}

/* CONTAINER */

.case-container {
  /* max-width: 1300px; */
  margin: auto;
}

/* TITLE */

.challenge-hero-title {
  text-align: center;
  margin-bottom: 80px;
}

.challenge-main-title {
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
}

.orange-gradient {
  background: linear-gradient(90deg, #ffdf06, #ff8806);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: -16px;
}

/* CONTENT GRID */

.challenge-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 70px;
}

/* LEFT SIDE */

.challenge-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.challenge-single-image {
  max-width: 515px;
  border-radius: 18px;
  /* width: 100%; */
  /* max-width: 480px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease; */

}
/* .challenge-single-image:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
} */
.challenge-icons-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  width: 100%;
  max-width: 420px;
}

.icon-item {
  text-align: center;
  padding: 22px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: 0.3s ease;
}

.icon-item:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.35);
}

.challenge-icon {
  /* width: 95px; */
  height: 95px;
  border-radius: 18px;
  margin-bottom: 10px;
}

.icon-item p {
  color: #e2e8f0;
  font-weight: 600;
}

/* RIGHT SIDE PANEL */

.challenge-text-block {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 40px 38px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* SUBTITLE */

.challenge-subtitle {
  font-size: 2rem;
  color: white;
  margin-bottom: 25px;
  position: relative;
}

.challenge-subtitle::after {
  content: "";
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #ffdf06, #ff8806);
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

/* LIST */

.challenge-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.challenge-list li {
  margin-bottom: 22px;
  padding-left: 22px;
  position: relative;
  color: #dbe3ea;
  line-height: 1.6;
}

.challenge-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff8806;
  box-shadow: 0 0 8px rgba(255, 136, 6, 0.8);
}

.challenge-list strong {
  display: block;
  color: white;
  margin-bottom: 4px;
}

/* RESPONSIVE */

@media (max-width: 992px) {
  .challenge-content {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .challenge-icons-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .challenge-subtitle::after {
    margin-left: auto;
    margin-right: auto;
  }

  .challenge-single-image {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .challenge-icons-stack {
    grid-template-columns: 1fr;
  }

  .challenge-single-image {
    max-width: 100%;
  }
}

/* ───────────────────────────────────────────────
   SOLUTIONS SECTION – WHITE PREMIUM VERSION
─────────────────────────────────────────────── */

.sim-sec.is--solutions {
  padding: var(--space-section) 5%;
  overflow: hidden;
  color: #0f172a;

  /* clean white background with warm depth */
  background:
    radial-gradient(circle at 12% 85%, rgba(255,223,6,0.10), transparent 45%),
    radial-gradient(circle at 90% 20%, rgba(255,136,6,0.08), transparent 45%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
}

/* Title */
.solution-hero-title {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.solution-main-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.08;
  margin: 0;
  color: #0f172a;
}

/* Layout */
.solution-content {
  display: flex;
  align-items: flex-start;
  gap: 70px;
  max-width: 1380px;
  margin: 0 auto;
}

/* Left Visual */
.solution-visual {
  flex: 0 0 48%;
  /* max-width: 48%; */
}

/* .solution-phone-img {
  width: 100%;
  height: auto;
  height: 850px;
  border-radius: 32px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
  transform: perspective(1000px) rotateY(-8deg) rotate(-4deg);
  transition: all 0.5s ease;
} */

  .solution-phone-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin-top: 50px;
    border-radius: 10px;
  }
  .solution-phone-imgs {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin-top: -55px;
    border-radius: 10px;
  }

/* .solution-phone-img:hover {
  transform: perspective(1000px) rotateY(-4deg) rotate(-2deg) scale(1.02);
  box-shadow: 0 40px 80px rgba(0,0,0,0.16);
} */

/* Right */
.solution-right {
  flex: 1;
}

.solutions-grid {
  display: grid;
  gap: 18px;
}

/* Cards */
/* .solution-card {
  display: flex;
  gap: 18px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 14px;
  padding: 20px 22px;
  transition: all 0.3s ease;
} */
 .solution-card {
  display: flex;
  gap: 14px; 
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  border-radius: 12px;
  padding: 16px 18px; 
  transition: all 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
  border-color: rgba(255,136,6,0.35);
}


/* ICON CONTAINER */
.s-icon{
position:relative;
width:50px;
height:50px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;

background:var(--gradient-cta, linear-gradient(135deg, #ff8806, #ffdf06));
color:#111;

box-shadow:
0 10px 24px rgba(255,136,6,0.35),
inset 0 -4px 12px rgba(0,0,0,0.22),
0 0 0 1.5px rgba(255,223,6,0.25);

transition:all .35s ease;
flex-shrink:0;
}

.s-icon i{
font-size:16px;
}

/* Hover animation */
.s-icon:hover{
transform:scale(1.1) rotate(3deg);

box-shadow:
0 16px 40px rgba(255,136,6,0.5),
0 0 50px 10px rgba(255,223,6,0.3),
inset 0 -6px 18px rgba(0,0,0,0.3);
}

/* Light reflection */
.s-icon::before{
content:"";
position:absolute;
inset:0;
background:radial-gradient(circle at 35% 35%,rgba(255,255,255,0.4),transparent 70%);
opacity:.65;
pointer-events:none;
}

.s-icon:hover::before{
opacity:.9;
}

/* glow */
.s-glow{
position:absolute;
inset:-24px;
border-radius:50%;
background:radial-gradient(circle,rgba(255,136,6,0.28) 12%,rgba(255,223,6,0.16) 50%,transparent 80%);
filter:blur(24px);
opacity:.65;
z-index:-1;
transition:all .5s ease;
}



/* Icon Glow */

.card-glow-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  position: relative;
  background: rgba(255,136,6,0.12);
  border: 1px solid rgba(255,136,6,0.35);
}

.card-glow-icon::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,136,6,0.35), transparent 70%);
  filter: blur(10px);
  opacity: .7;
  transition: .3s ease;
}

.solution-card:hover .card-glow-icon::before {
  transform: scale(1.15);
  opacity: 1;
}

/* variant icon tones */

.card-glow-icon.privacy { border-color: rgba(100,200,255,0.35); }
.card-glow-icon.accuracy { border-color: rgba(100,255,180,0.35); }
.card-glow-icon.fairness { border-color: rgba(255,180,100,0.35); }
.card-glow-icon.transparency { border-color: rgba(180,140,255,0.35); }
.card-glow-icon.scale { border-color: rgba(255,223,6,0.45); }

/* Text */

.card-text h4 {
  font-size: 1.12rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #0f172a;
}

.card-text p {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
  margin: 0;
}

/* Highlight card */

.highlight-card {
  border-color: rgba(255,136,6,0.35);
  background: linear-gradient(135deg, rgba(255,136,6,0.06), rgba(255,223,6,0.06));
}

/* ───────── RESPONSIVE ───────── */

@media (max-width: 1100px) {
  .solution-main-title { font-size: 3.1rem; }
  .solution-content { gap: 50px; }
}

@media (max-width: 992px) {

  .sim-sec.is--solutions {
    padding: 80px 5% 100px;
  }

  .solution-content {
    flex-direction: column;
    align-items: center;
  }

  .solution-visual {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .solution-phone-img {
    max-width: 460px;
  }

  .solution-right {
    text-align: center;
  }

  .solution-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .solution-main-title { font-size: 2.5rem; }

  .solution-phone-img {
    max-width: 340px;
    border-radius: 28px;
  }

  .solution-card {
    padding: 18px 18px;
  }

  .card-glow-icon {
    width: 46px;
    height: 46px;
  }
}


.contact-sections {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: var(--space-section) 5%;

  background: #0f1e78;
}

/* ───────────────────────────────────────────────
   BASE FIXES (add these right after your existing styles)
─────────────────────────────────────────────── */

/* Make sure footer-top is grid from the beginning */

.footer-top {
  display: grid;
  grid-template-columns: repeat(
    5,
    1fr
  ); /* desktop default – adjust if you have 5 columns */
  gap: 40px;
}

/* Remove hard min-width that prevents wrapping on small screens */
.case-col {
  flex: 1 1 300px; /* better than min-width + flex:1 */
  min-width: unset; /* ← important fix */
}

/* Better image handling – prevent overflow & keep aspect ratio */
.phone-image {
  width: 100%;
  height: auto; /* ← crucial: prevents distortion */
  max-width: 620px; /* cap the huge phones image on larger views */
  display: block;
  object-fit: contain; /* keeps proportions if cropped badly */
}

/* ───────────────────────────────────────────────
   IMPROVED MEDIA QUERIES
─────────────────────────────────────────────── */

@media (max-width: 1200px) {
  .case-hero {
    padding: 130px 6% 90px;
  }
  .case-row {
    gap: 70px;
  }
}

@media (max-width: 1024px) {
  .case-hero {
    padding: 120px 5% 80px;
  }

  .case-row {
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
  }

  .text-col {
    max-width: 680px;
  }

  .phone-image {
    max-width: 520px;
  }

  .cs-top-banner {
    max-width: 100%;
    padding: 20px 30px;
    justify-content: space-around;
  }
}

/* Mobile-first stacking point – most tablets & phones */
@media (max-width: 992px) {
  .header-containers {
    padding: 0 16px;
  }

  .logos img {
    height: 40px;
  }

  .main-headers {
    padding: 16px 0;
  }

  .main-headers.scrolled {
    padding: 10px 0;
  }

  /* Hide desktop nav, show burger */
  .navs {
    display: none; /* ← important: hide by default on mobile */
  }

  .burgers {
    display: flex;
  }

  /* Full-screen mobile menu styles (keep your existing but ensure visibility) */
  .navs {
    position: fixed;
    inset: 0;
    background: rgba(15, 30, 120, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 998;
    padding: 80px 20px;
  }

  .navs.active {
    transform: translateY(0);
    display: flex; /* make sure it shows */
  }

  .case-hero {
    padding: 110px 5% 70px;
    background-position:
      center 30px,
      0 0;
  }

  .case-title {
    font-size: 3.3rem;
  }

  .case-desc {
    font-size: 1.24rem;
  }
}

@media (max-width: 768px) {
  .case-title {
    font-size: 2.9rem;
    line-height: 1.08;
  }

  .case-desc {
    font-size: 1.16rem;
  }

  .case-logo {
    height: 58px;
    margin-bottom: 30px;
  }

  .phone-image {
    max-width: 420px;
  }

  .cs-top-banner {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    text-align: center;
  }

  .cstb-card {
    border-right: none !important;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    padding: 14px 0;
  }

  .cstb-card:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .case-hero {
    padding: 100px 6% 60px;
  }

  .case-title {
    font-size: 2.4rem;
  }

  .case-desc {
    font-size: 1.08rem;
  }

  .phone-image {
    max-width: 340px;
  }
}

/* Footer grid adjustments */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 30px;
  }
}

@media (max-width: 600px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand {
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column-reverse;
    gap: 24px;
    text-align: center;
  }
}

/* Hide social sidebar on mobile */
@media (max-width: 992px) {
  .sticky-sidebar {
    display: none;
  }
}


.sticky-sidebars {
  position: fixed;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1000;
}

.social-icons {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(
    30,
    41,
    59,
    0.08
  ); /* very subtle dark tint – works on light & dark */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.15);
  color: #ffffff; /* fallback white */
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

/* Brand-specific colors – this makes them pop everywhere */
.social-icon.linkedin-in {
  color: #ffffff;
}
.social-icon.twitter {
  color: #ffffff;
} /* old twitter blue – or use #000 for X black */
.social-icon.instagram {
  color: #ffffff;
}

/* Ensure vivid Instagram gradient inside sticky sidebar */
/* .sticky-sidebar .social-icon.instagram {
  color: #cc2366;
}
.sticky-sidebar .social-icon.instagram i {
  color: transparent;
  background-image: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
} */

/* Force solid Instagram brand color to match other icons */
/* .sticky-sidebar .social-icon.instagram,
.sticky-sidebar .social-icon.instagram i {
  color: #e1306c;
  background: none;
  -webkit-text-fill-color: currentColor;
} */
.social-icon.facebook-f {
  color: #ffffff;
}

/* Hover – intensify + lift */
.social-icon:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  background: rgba(30, 41, 59, 0.18);
}

/* Optional: add a subtle glow on hover for premium feel */
.social-icon.linkedin-in:hover {
  box-shadow: 0 0 20px rgba(10, 102, 194, 0.4);
}
.social-icon.twitter:hover {
  box-shadow: 0 0 20px rgba(29, 161, 242, 0.4);
}
.social-icon.instagram:hover {
   box-shadow: 0 0 20px rgba(29, 161, 242, 0.4);

}
.social-icon.facebook-f:hover {
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.4);
}

/* ===============================
   TECHNOLOGIES USED SECTION
================================= */

.tech-section {
  padding: var(--space-section) 5%;
  background: #ffffff;
  text-align: center;
}

.tech-title,
.team-title {
  font-size: 28px;
  font-weight: 800;
  color: #2545FC;
  margin-bottom: 40px;
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.tech-pill {
  padding: 12px 28px;
  border: 2px solid #2545FC;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: #2545FC;
  background: transparent;
  transition: all 0.3s ease;
  cursor: default;
}

.tech-pill:hover {
  background: #2545FC;
  color: #fff;
  box-shadow: 0 0 20px rgba(255, 136, 6, 0.4);
  transform: translateY(-2px);
}

/* ===============================
   TEAM INVOLVED SECTION
================================= */

.team-section {
  padding: var(--space-section) 5%;
  background: #f8f9fc;
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.team-member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #2545FC;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member img:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(37, 69, 252, 0.3);
}

.team-member h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.team-member p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
}

/* ─── TECH & TEAM RESPONSIVE ─── */

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .tech-title,
  .team-title {
    font-size: 24px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .tech-pill {
    padding: 10px 22px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .tech-section,
  .team-section {
    padding: var(--space-section-mobile) 5%;
  }
}

/* ================= FINAL CASE PAGE RESPONSIVE OVERRIDES ================= */

@media (max-width: 992px) {
  .case-section {
    padding: 120px 16px var(--space-section-tablet);
  }

  .case-section .container,
  .case-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .cs-top-banner {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 720px;
    padding: 14px 16px;
    gap: 10px;
  }

  .cstb-card {
    padding: 10px 0;
    text-align: center;
  }

  .cstb-card:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .cstb-title {
    font-size: 10px;
  }

  .cstb-text {
    font-size: 16px;
    line-height: 1.35;
  }

  .case-row {
    gap: 40px;
    margin-top: 34px;
  }

  .case-title {
    font-size: 42px;
    line-height: 1.1;
  }

  .case-desc {
    font-size: 17px;
    line-height: 1.65;
    max-width: 100%;
  }

  .image-col {
    display: flex;
    justify-content: center;
  }

  .phone-image {
    max-width: 420px;
    width: 100%;
  }

  .sim-sec.is--concept,
  .sim-sec.is--challenges,
  .sim-sec.is--solutions,
  .contact-sections {
    padding-top: var(--space-section-tablet);
    padding-bottom: var(--space-section-tablet);
  }

  .concept-hero-title,
  .challenge-hero-title,
  .solution-hero-title {
    margin-bottom: 42px;
  }

  .concept-main-title,
  .challenge-main-title,
  .solution-main-title {
    font-size: 2.35rem;
  }

  .concept-subtitle {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .concept-desc {
    font-size: 1.06rem;
    line-height: 1.65;
  }

  .challenge-content {
    gap: 28px;
  }

  .challenge-text-block {
    padding: 26px 20px;
    border-radius: 18px;
  }

  .challenge-subtitle {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .challenge-list li {
    text-align: left;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .solution-content {
    gap: 22px;
  }

  .solution-visual,
  .solution-right {
    width: 100%;
    max-width: 100%;
  }

  .solution-phone-img {
    transform: none;
    max-width: 420px;
    margin: 0 auto;
  }

  .solution-card {
    padding: 16px;
    border-radius: 12px;
  }

  .card-text h4 {
    font-size: 1.05rem;
  }

  .card-text p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .contact-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .case-section {
    padding: var(--space-hero-top-mobile) 12px var(--space-hero-bottom-mobile);
  }

  .case-section .container,
  .case-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .case-title {
    font-size: 34px;
    letter-spacing: -0.5px;
  }

  .case-desc {
    font-size: 16px;
  }

  .phone-image {
    max-width: 340px;
  }

  .sim-sec.is--concept,
  .sim-sec.is--challenges,
  .sim-sec.is--solutions,
  .contact-sections {
    padding-top: var(--space-section-mobile);
    padding-bottom: var(--space-section-mobile);
  }

  .concept-main-title,
  .challenge-main-title,
  .solution-main-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .concept-phone-img {
    max-width: 320px;
    transform: none;
  }

  .challenge-icons-stack {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 280px;
    margin: 0 auto;
  }

  .challenge-icon {
    width: 74px;
    height: 74px;
  }

  .icon-item {
    padding: 14px 12px;
  }

  .challenge-subtitle {
    font-size: 1.35rem;
  }

  .challenge-list li {
    font-size: 14px;
    padding-left: 16px;
  }

  .solution-main-title {
    margin-bottom: 0;
  }

  .solution-phone-img {
    max-width: 320px;
    border-radius: 22px;
  }

  .card-glow-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .contact-title {
    font-size: 32px;
  }

  .team-card-creative .team-overlay {
    transform: translateY(0);
    position: relative;
    background: linear-gradient(180deg, rgba(15, 30, 120, 0.92), rgba(15, 30, 120, 0.96));
    padding-top: 12px;
    margin-top: -2px;
  }

  .team-card-creative .team-overlay p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .case-section {
    padding: var(--space-hero-top-mobile) 10px var(--space-hero-bottom-mobile);
  }

  .cstb-text {
    font-size: 14px;
  }

  .case-title {
    font-size: 29px;
  }

  .case-desc {
    font-size: 15px;
    line-height: 1.55;
  }

  .phone-image {
    max-width: 290px;
  }

  .sim-sec.is--concept,
  .sim-sec.is--challenges,
  .sim-sec.is--solutions,
  .contact-sections {
    padding-top: var(--space-section-mobile);
    padding-bottom: var(--space-section-mobile);
  }

  .concept-main-title,
  .challenge-main-title,
  .solution-main-title {
    font-size: 1.7rem;
  }

  .concept-subtitle {
    font-size: 1.5rem;
  }

  .concept-desc {
    font-size: 0.98rem;
  }

  .challenge-text-block {
    padding: 20px 14px;
  }

  .challenge-list li {
    font-size: 13px;
    line-height: 1.5;
  }

  .solution-card {
    gap: 12px;
    padding: 14px;
  }

  .card-text h4 {
    font-size: 0.98rem;
  }

.card-text p {
  font-size: 0.88rem;
}
}

/* Footer mobile consistency for case studies page */
.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-col a {
  word-break: break-word;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 42px 0 28px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 34px;
  }

  .footer-logo {
    width: 124px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col a {
    margin-bottom: 9px;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 22px;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy,
  .footer-top-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }
}


.footer {
  background: linear-gradient(
    180deg,
    rgba(15, 30, 120, 0.95) 0%,
    rgba(10, 20, 90, 0.98) 100%
  );
  color: #ffffff;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

/* ambient glow effects */

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 223, 6, 0.12), transparent 55%),
    radial-gradient(circle at 15% 90%, rgba(255, 136, 6, 0.1), transparent 60%);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 120%,
    rgba(0, 0, 0, 0.35),
    transparent 60%
  );
  pointer-events: none;
}

/* container */

.footer .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* ================================
   Footer Grid
================================ */

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* ================================
   Brand Column
================================ */

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-location {
  font-size: 13px;
  opacity: 0.7;
}

/* ================================
   Column Titles
================================ */

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: #ffdf06;
}

/* ================================
   Links
================================ */

.footer-col a {
  display: block;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.8;
  transition: all 0.25s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: #ffdf06;
  transform: translateX(4px);
}

/* ================================
   Bottom Section
================================ */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* socials */

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-socials a {
  color: #ffffff;
  font-size: 16px;
  opacity: 0.7;
  transition: 0.3s ease;
}

.footer-socials a:hover {
  opacity: 1;
  color: #ff8806;
  transform: translateY(-2px);
}

/* copyright */

.footer-copy {
  font-size: 13px;
  opacity: 0.7;
}

/* back to top */

.footer-top-btn {
  text-decoration: none;
  font-size: 13px;
  color: #ffdf06;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-top-btn:hover {
  color: #ff8806;
}

/* ================================
   Responsive
================================ */

@media (max-width: 1100px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

}

@media (max-width: 768px) {

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

}
/* ===============================================
   RESPONSIVE SAFETY LAYER
   =============================================== */
@media (max-width: 992px) {
  .sticky-sidebar {
    display: none;
  }

  [class*="container"] {
    max-width: 100% !important;
  }
}

@media (max-width: 768px) {
  html,
  body {
    /* overflow-x: hidden; */
  }

  [class*="container"] {
    width: 100%;
    padding-left: clamp(12px, 4vw, 18px) !important;
    padding-right: clamp(12px, 4vw, 18px) !important;
  }

  [class*="grid"],
  [class*="col"],
  [class*="card"] {
    min-width: 0;
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}
/* ===============================================
   UNIFIED FOOTER RESPONSIVE (FOOTER ONLY)
   =============================================== */
.footer {
  background: linear-gradient(180deg, rgba(15, 30, 120, 0.95) 0%, rgba(10, 20, 90, 0.98) 100%) !important;
  color: #ffffff !important;
  position: relative;
  overflow: hidden;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px 36px;
  margin-bottom: 60px;
  align-items: start;
}

.footer-brand,
.footer-col {
  min-width: 0;
}

.footer-logo {
  width: 150px;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  color: var(--yellow, #FFDF06);
}

.footer-col a {
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  word-break: break-word;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-top-btn {
  font-size: 13px;
}

@media (max-width: 1200px) {
  .footer-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 992px) {
  .footer {
    padding: 42px 0 28px;
  }

  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    margin-bottom: 34px;
  }

  .footer-logo {
    width: 124px;
  }

  .footer-col h4 {
    margin-bottom: 14px;
  }

  .footer-col a {
    margin-bottom: 9px;
  }

  .footer-bottom {
    padding-top: 20px;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 36px 0 22px;
  }

  .footer .container {
    padding-left: clamp(12px, 4vw, 18px);
    padding-right: clamp(12px, 4vw, 18px);
  }

  .footer-top {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 22px;
    margin-bottom: 24px;
    text-align: left;
  }

  .footer-brand,
  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-copy,
  .footer-top-btn {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 0 18px;
  }

  .footer-top {
    gap: 18px;
    margin-bottom: 18px;
  }

  .footer-desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .footer-col a {
    font-size: 13px;
  }

  .footer-bottom {
    gap: 10px;
  }
}


/* ONLY affects this section */
.phone-showcase .visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
}

.phone-showcase .visual-bg {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(255, 165, 0, 0.25), transparent 70%);
    filter: blur(40px);
    z-index: 0;
}

.phone-showcase .visual.main {
    position: relative;
    width: 100%;
    height: auto;
    object-fit: contain;

    transform: rotate(-12deg) scale(1.05);
    transform-origin: center;

    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

/* Mobile safe */
@media (max-width: 768px) {
    .phone-showcase .visual-wrapper {
        max-width: 300px;
    }

    .phone-showcase .visual.main {
        transform: rotate(-8deg) scale(1);
    }
}



/*index process*/
