:root{
  --bg:#ffffff;
  --muted:#6b7280;
  --accent:#fb9503;
  --blue-primary:#3b58a4;
  --ink:#0b1220;
  --card:#ffffff;
  --border: rgba(15, 23, 42, .12);
  --shadow: 0 18px 55px rgba(2, 6, 23, .10);
  --shadow-soft: 0 14px 40px rgba(2, 6, 23, .08);
  --radius: 18px;
  --maxw:1200px;

  --cursor-ink: rgba(11,18,32,.92);
  --cursor-blue: rgba(59,88,164,.95);
  --cursor-gold: rgba(253,186,43,.95);

  font-family:'Inter', sans-serif;
}

*{ box-sizing:border-box; }
html, body{ overflow-x:hidden; }

body{
  background: var(--bg);
  color: var(--ink);
  margin:0;
  font-family:'Inter', sans-serif;
  padding-top: 90px;
}




/* ===== INTRO OVERLAY ===== */
#logo-intro{
  position:fixed;
  inset:0;
  background: radial-gradient(900px 520px at 50% 40%, rgba(253,186,43,.22), transparent 62%),
              linear-gradient(135deg, rgba(255,255,255,.98), rgba(255,247,230,.98));
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}
#logo-intro .logo-video{
  max-width: 100%;
  width: 100%;
  height: auto;

  /* keeps aspect ratio properly */
  display: block;

  /* same shadow like your image */
  filter: drop-shadow(0 18px 40px rgba(59,88,164,.20))
          drop-shadow(0 18px 40px rgba(253,186,43,.16));

  /* optional: smooth edges */
  border-radius: 12px;
}


/* ===== NAVBAR ===== */
.navbar-custom{
  background: rgba(255,255,255,.86);
  border-bottom: 1px solid rgba(2, 6, 23, .08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding:12px 0 0;
  position:fixed;
  top:0; left:0; right:0;
  z-index:9999;
}

.navbar-brand img{
  height:60px;
  width:auto;
  object-fit:contain;
}

.navbar .nav-link{
  color: var(--ink) !important;
  font-weight:600;
  font-size:17px;
  position:relative;
  opacity:.92;
  letter-spacing: 1px;
}
.navbar .nav-link:hover{ opacity:1; }

.navbar .nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-7px;
  width:0%;
  height:2px;
  background: linear-gradient(90deg, var(--blue-primary), var(--accent));
  transition: width .35s ease;
  border-radius: 999px;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after{ width:100%; }

/* Buttons */
.hc-btn{
  border:1px solid rgba(59,88,164,.22);
  padding:10px 18px;
  border-radius:999px;
  color: var(--ink);[]
  font-weight:800;
  text-decoration:none;
  transition:.2s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
  position:relative;
  overflow:hidden;
}
.hc-btn:hover{ transform:translateY(-2px); box-shadow: 0 16px 44px rgba(2,6,23,.10); }

.hc-btn-primary{
  background: linear-gradient(90deg, var(--accent), rgba(253,186,43,.70));
  color:#0b1220 !important;
  border:1px solid rgba(253,186,43,.70);
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link{
  background-color: #fb9503 !important;
}

/* ===== HERO (VIDEO) ===== */
:root{
  --hc-primary:#0b1220;
  --hc-secondary:#fb9503;
  --hc-text:#1c1f26;
}

/* HERO */
.hc-hero{
  min-height: clamp(420px, 60vh, 680px);
  background: var(--hc-primary);
}

/* Full-bleed video */
.hc-hero__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}

/* Overlay to improve readability */
.hc-hero__overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    90deg,
    rgba(11,18,32,.78) 0%,
    rgba(11,18,32,.35) 55%,
    rgba(11,18,32,.08) 100%
  );
}

/* Content layer */
.hc-hero__content{
  padding-top: clamp(28px, 6vh, 70px);
  padding-bottom: clamp(28px, 6vh, 70px);
}

/* Typography */
.hc-hero__title{
  color:#fff;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(28px, 4vw, 56px);
  margin:0;
}

.hc-hero__subtitle{
  color: var(--hc-secondary);
  font-weight: 800;
  font-size: clamp(16px, 2vw, 22px);
}

.hc-hero__text{
  color: rgba(255,255,255,.88);
  max-width: 56ch;
  font-size: 1rem;
  line-height: 1.7;
}

/* WHITE BOXES (equal size) */
.hc-pill{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 14px;
  padding: 14px 14px;
  box-shadow: 0 16px 40px rgba(11,18,32,.12);

  /* equal height + neat layout */
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 78px;
}

.hc-pill__top{
  color: var(--hc-primary);
  font-weight: 800;
  font-size: 15px;
  line-height: 1.1;
  margin-bottom: 4px;
}

.hc-pill__bottom{
  color: rgba(28,31,38,.85);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.25;
}

/* Mobile improvements */
@media (max-width: 575.98px){
  .hc-hero{
    min-height: 560px; /* gives enough space for boxes */
  }

  .hc-hero__text{
    font-size: .98rem;
  }

  .hc-pill{
    min-height: 74px;
    padding: 12px;
  }
}

.hero-v2__video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.06) brightness(1.02);
  z-index:0;
}

.hero-v2__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.55) 38%, rgba(255,255,255,.12) 70%, rgba(0,0,0,.10) 100%),
    radial-gradient(900px 520px at 12% 18%, rgba(253,186,43,.28), transparent 55%),
    radial-gradient(900px 520px at 40% 92%, rgba(59,88,164,.22), transparent 55%);
  z-index:1;
}

.hero-v2__grid{
  position:absolute;
  inset:-2px;
  background-image:
    linear-gradient(rgba(59,88,164,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,88,164,.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 30% 40%, rgba(0,0,0,1), rgba(0,0,0,.2) 55%, rgba(0,0,0,0) 78%);
  opacity:.55;
  z-index:2;
  pointer-events:none;
}

.hero-v2__content{
  position:relative;
  z-index:3;
  padding: 74px 12px 48px;
}

.hero-v2__kicker{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}

.hero-v2__pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  color: var(--ink);
  border:1px solid rgba(2,6,23,.10);
  background: rgba(255,255,255,.78);
  box-shadow: 0 10px 30px rgba(2,6,23,.06);
}
.hero-v2__pill--ghost{
  background: rgba(255,255,255,.60);
  font-weight:700;
}

.hero-v2__title{
  font-size: clamp(34px, 4.6vw, 56px);
  line-height:1.04;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}
.hero-v2__title-accent{
  display:block;
  font-size:27px !important;
  color:#fb9503 !important;
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
  text-shadow: 0 12px 30px rgba(253,186,43,.10);
}

.hero-v2__lead{
  max-width: 650px;
  font-size: 16.5px;
  line-height:1.65;
  color: rgba(11,18,32,.80);
  margin: 0 0 18px;
}

.hero-v2__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin: 16px 0 18px;
}

.hero-v2__proof{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.hero-v2__metric{
  background: rgba(255,255,255,.70);
  border:1px solid rgba(2,6,23,.10);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 14px 40px rgba(2,6,23,.06);
  min-width: 160px;
}
.hero-v2__metric-num{
  font-weight: 900;
  color: var(--ink);
  letter-spacing: .02em;
}
.hero-v2__metric-label{
  font-size: 12.5px;
  color: rgba(11,18,32,.72);
  font-weight:700;
  margin-top:2px;
}

.hero-v2__card{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(2,6,23,.10);
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(2,6,23,.12);
  padding: 18px 18px 14px;
  position:relative;
  overflow:hidden;
}
.hero-v2__card::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 25% 25%, rgba(253,186,43,.35), transparent 55%),
    radial-gradient(circle at 70% 65%, rgba(59,88,164,.26), transparent 55%);
  opacity:.75;
  pointer-events:none;
}
.hero-v2__card > *{ position:relative; z-index:1; }

.hero-v2__badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight: 900;
  font-size: 12px;
  color: var(--blue-primary);
  letter-spacing:.12em;
  text-transform: uppercase;
}
.hero-v2__badge .dot{
  width:8px;height:8px;border-radius:999px;background: var(--accent);
  box-shadow: 0 0 0 6px rgba(253,186,43,.20);
}
.hero-v2__card-title{
  font-weight: 900;
  font-size: 18px;
  line-height:1.25;
  margin: 10px 0 12px;
  color: var(--ink);
}

.hero-v2__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.hero-v2__list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-weight: 700;
  color: rgba(11,18,32,.78);
}
.hero-v2__list i{
  color: var(--blue-primary);
  margin-top:2px;
}

.hero-v2__card-cta{
  display:flex;
  gap:12px;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid rgba(2,6,23,.10);
}
.hero-v2__link{
  text-decoration:none;
  color: var(--ink);
  font-weight: 900;
  display:inline-flex;
  gap:8px;
  align-items:center;
}
.hero-v2__link span{
  color: var(--accent);
  font-weight: 900;
}
.hero-v2__link:hover{ color: var(--blue-primary); }

.hero-v2__scroll{
  position:absolute;
  left:50%;
  bottom: 16px;
  transform: translateX(-50%);
  text-decoration:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  color: rgba(11,18,32,.65);
  font-weight:900;
  z-index:5;
}
.hero-v2__scroll-mouse{
  width: 28px; height: 40px;
  border-radius: 999px;
  border: 2px solid rgba(11,18,32,.35);
  position:relative;
  background: rgba(255,255,255,.40);
}
.hero-v2__scroll-mouse::after{
  content:"";
  position:absolute;
  width:4px; height:8px;
  border-radius:999px;
  background: rgba(11,18,32,.55);
  top:8px; left:50%;
  transform: translateX(-50%);
  animation: hcScroll 1.3s ease-in-out infinite;
}
@keyframes hcScroll{
  0%{ transform: translate(-50%, 0); opacity:1; }
  70%{ transform: translate(-50%, 10px); opacity:.35; }
  100%{ transform: translate(-50%, 0); opacity:1; }
}
.hero-v2__scroll-text{ font-size: 12px; letter-spacing: .10em; text-transform: uppercase; }

@media (max-width: 991.98px){
  .hero-v2__content{ padding-top: 52px; }
  .hero-v2__scroll{ display:none; }
}
@media (max-width: 575.98px){
  body{ padding-top: 78px; }
  .hero-v2{ min-height: 62vh; }
  @supports (height: 100svh){ .hero-v2{ min-height: 62svh; } }
  .hero-v2__cta .hc-btn{ width:100%; }
}

/* ===== WHAT DEFINES US ===== */
.hc-defines-us{
  position: relative;
  padding: 120px 0;
  background: #ffffff;
  overflow: hidden;
}
.hc-defines-us::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(59,88,164,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,88,164,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity:.45;
  pointer-events:none;
}
.hc-defines-visual{ position: relative; }
.hc-arrow-mark{
  font-size: clamp(96px, 14vw, 180px);
  font-weight: 900;
  line-height: 1;
  color: #000;
  margin-bottom: 20px;
  display:inline-block;
  will-change: transform;
  animation: hcArrowFloat 2.8s ease-in-out infinite;
}
@keyframes hcArrowFloat{
  0%   { transform: translate(0,0); }
  50%  { transform: translate(10px,-10px); }
  100% { transform: translate(0,0); }
}
.hc-defines-eyebrow{
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 800;
  font-size: .75rem;
  color: rgba(11,18,32,.65);
}
.hc-defines-title{
  font-size: 30px;
  font-weight: 900;
  line-height: 1.25;
  color:#0b1220 !important;
  margin-bottom: 20px;
}
.hc-defines-title span{
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  color:#fb9503 !important;
}
.hc-defines-text{
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(11,18,32,.75);
  max-width: 680px;
  margin-bottom: 28px;
}
.hc-defines-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight:800;
  text-decoration: none;
  background-color: #fb9503 !important;
  color: #0b1220 !important;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hc-defines-cta:hover{
  transform: translateY(-2px);
  color:#0b1220 !important;
  background-color:#fff !important;
  border: 3px solid #fb9503 !important;
}
@media (max-width: 991px){
  .hc-defines-us{ padding: 90px 0; }
  .hc-arrow-mark{ font-size: 120px; }
}

/* ===== TABS SECTION ===== */
.hc-tabs-section{ padding:0px 12px 90px; }
.hc-tabs-container{ max-width:1200px; margin:0 auto; }
.hc-eyebrow{
  text-transform:uppercase;
  letter-spacing:.2em;
  font-size: 24px;
  color:#fb9503 !important;
  text-align:center;
  margin-bottom:6px;
  font-weight:900;
}
.hc-heading{
  text-align:center;
  font-weight:900;
  letter-spacing:.09em;
  font-size:13px;
  margin-bottom:26px;
  color:#0b1220 !important;
}
.hc-tab-bar-wrap{ display:flex; justify-content:center; margin-bottom:24px; }
.hc-tab-bar{
  position:relative;
  display:inline-flex;
  border-radius:999px;
  padding:4px;
  background: rgba(255,255,255,.70);
  border:1px solid rgba(2,6,23,.10);
  backdrop-filter:blur(14px);
  box-shadow: 0 16px 40px rgba(2,6,23,.08);
}
.hc-tab-highlight{
  position:absolute;
  top:4px; bottom:4px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(253,186,43,.95), rgba(253,186,43,.70));
  box-shadow: 0 0 22px rgba(253,186,43,.25);
  z-index:1;
  transition: all .24s cubic-bezier(.32,.72,.29,1);
}
.hc-tab-bar .nav-link{
  border-radius:999px;
  border:none;
  background:transparent;
  padding:9px 26px;
  position:relative;
  z-index:2;
  font-size:.88rem;
  font-weight:800;
  color: rgba(11,18,32,.72) !important;
  white-space:nowrap;
}
.hc-tab-bar .nav-link.active{ color: var(--ink) !important; }

.hc-panel-shell{
  border-radius:26px;
  padding:1px;
  background: linear-gradient(135deg, rgba(59,88,164,.20), rgba(253,186,43,.28), rgba(2,6,23,.06));
  box-shadow: 0 24px 70px rgba(2,6,23,.10);
}
.hc-panel-inner{
  border-radius:25px;
  background: rgba(255,255,255,.92);
  border:1px solid rgba(2,6,23,.08);
  padding:24px 22px 14px;
}
.hc-subtitle{
  font-size:24px;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:#fb9503 !important;
  margin-bottom:4px;
  font-weight: 800;
}
.hc-title{
  font-size:15px;
  font-weight:500;
  margin-bottom:18px;
  color: var(--ink);
}
.feature-row{
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.60);
  margin-bottom:10px;
}
.feature-box{
  position:relative;
  padding:16px 16px 14px;
  background: rgba(255,255,255,.92);
  display:flex;
  align-items:flex-start;
  gap:12px;
  opacity: 1;
}
.feature-divider{ border-left: 1px solid rgba(2,6,23,.06); }
.feature-title{ font-size:.96rem; font-weight:900; margin-bottom:2px; color:#0b1220; }
.feature-text{ font-size:.86rem; color: rgba(11,18,32,.72); margin:0; line-height:1.6; }
.feature-icon{
  flex:0 0 40px;
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: #fff;
  border:1px solid rgba(253,186,43,.45);
  box-shadow: 0 12px 30px rgba(2,6,23,.06);
}
@media (max-width:991.98px){
  .feature-divider{
    border-left:none;
    border-top:1px solid rgba(2,6,23,.06);
  }
  .hc-tabs-section{ padding: 70px 10px 80px; }
}

/* ===== INDUSTRIES marquee (must remain horizontal & loop) ===== */
.hc-logo-marquee{
  background: linear-gradient(180deg, #ffffff, #fafafa);
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
  overflow:hidden;
}
.hc-sub{ color: rgba(11,18,32,.70); }

.hc-marquee-wrapper{
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hc-marquee-wrapper::before,
.hc-marquee-wrapper::after{
  content:"";
  position:absolute;
  top:0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events:none;
}
.hc-marquee-wrapper::before{
  left:0;
  background: linear-gradient(90deg, #fff, rgba(255,255,255,0));
}
.hc-marquee-wrapper::after{
  right:0;
  background: linear-gradient(270deg, #fff, rgba(255,255,255,0));
}
.hc-marquee-track{
  display:flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items:center;
  width: max-content;
  gap: clamp(1.25rem, 3vw, 4rem);
  padding: 0.75rem 0;
  animation: hc-marquee 35s linear infinite;
  will-change: transform;
}
.hc-logo{
  display:flex;
  align-items:center;
  justify-content:center;
  flex: 0 0 auto;
}
.hc-logo a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}
.hc-logo img{
  height: 125px;
  width: auto;
  display:block;
  object-fit: contain;
}
@keyframes hc-marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media (hover:hover){
  .hc-marquee-wrapper:hover .hc-marquee-track{ animation-play-state: paused; }
}
@media (max-width: 576px){
  .hc-marquee-wrapper::before,
  .hc-marquee-wrapper::after{ width: 46px; }
  .hc-marquee-track{ animation-duration: 55s; }
}

/* ===== SERVICES ===== */
.services-section.services-v2{
  position:relative;
  padding: 78px 0;
  color: var(--ink);
  background:
    radial-gradient(900px 520px at 15% 20%, rgba(253,186,43,.20), transparent 55%),
    radial-gradient(900px 520px at 85% 70%, rgba(59,88,164,.16), transparent 55%),
    #ffffff;
  overflow:hidden;
}
.section-label{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.78rem;
  color:#0b1220 !important;
}
.section-title{
  font-size: clamp(1.8rem,3vw,2.2rem);
  font-weight: 900;
  margin-top:.5rem;
  
}

..section-title h2{
  color: #fb9503 !important;
}
.section-sub{
  max-width: 44rem;
  font-size: .98rem;
  color: rgba(11,18,32,.72);
}
.service-card{
  background: rgba(255,255,255,.92);
  border-radius: 18px;
  border: 1px solid rgba(2,6,23,.10);
  box-shadow: 0 18px 55px rgba(2,6,23,.08);
  padding: 1.7rem 1.6rem 1.4rem;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.19,1,.22,1), box-shadow .25s ease;
}
.service-card.in-view{ opacity:1; transform: translateY(0); }
.service-card:hover{ box-shadow: 0 26px 80px rgba(2,6,23,.12); transform: translateY(-4px); }
.service-icon{
  width:2.6rem;
  height:2.6rem;
  border-radius:50%;
  border:2px solid var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.3rem;
  margin-bottom:1.1rem;
  color: var(--blue-primary);
}
.service-title{ font-size:1.05rem; font-weight:900; margin-bottom:.4rem; color: var(--ink) !important; }
.service-desc{ font-size:.9rem; color: rgba(11,18,32,.72); margin-bottom:1.3rem; }
.service-footer{
  border-top: 1px solid rgba(2,6,23,.08);
  padding-top:.7rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:.8rem;
  color: rgba(11,18,32,.62);
}
.service-tag{ display:flex; align-items:center; gap:.35rem; font-weight:800; }
.service-tag span.dot{
  width:.45rem; height:.45rem; border-radius:50%;
  background: var(--accent);
  border: 1px solid rgba(253,186,43,.8);
}
.service-link{
  display:inline-flex;
  align-items:center;
  gap:.25rem;
  text-decoration:none;
  color: var(--blue-primary);
  font-weight: 900;
}
.service-link:hover{ color: var(--accent); }

/* ===== CONTACT (fixed equal columns) ===== */
#contact-us{
  position:relative;
  padding: 78px 0;
  background: #ffffff;
  overflow:hidden;
}
#contact-us::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 10% 0,rgba(253,186,43,.14),transparent 55%),
    radial-gradient(circle at 90% 100%,rgba(59,88,164,.12),transparent 55%);
  opacity:.9;
  pointer-events:none;
}
#contact-us .contact-inner{
  position:relative;
  z-index:2;
  max-width: var(--maxw);
  margin: 0 auto;
}
.contact-heading{ text-align:center; margin-bottom:2.2rem; }
.contact-heading h2{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:1.5rem;
  font-weight: 900;
  color: var(--ink);
}
.contact-heading span{ color:#fb9503;
font-size:24px;
letter-spacing: normal;
text-transform: capitalize;
}
.contact-heading p{
  max-width: 44rem;
  margin:.7rem auto 0;
  color:#0b1220;
  font-weight: 800;
  font-size:15px;
}

/* Bootstrap columns stretch */
#contact-us .row > [class*="col-"]{ display:flex; }

.contact-map-card,
.contact-form-card{
  width:100%;
  height:100%;
  background:#ffffff;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(2,6,23,.08);
  border: 1px solid rgba(2,6,23,.10);
  overflow:hidden;
  opacity:0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.19,1,.22,1);
}
.contact-map-card.in-view,
.contact-form-card.in-view{
  opacity:1;
  transform: translateY(0);
}
.contact-map-card iframe{
  display:block;
  width:100%;
  height:100%;
  min-height:340px;
  border:0;
}
.contact-form-card{
  display:flex;
  flex-direction:column;
  padding: 28px;
}
.contact-form-card form{
  display:flex;
  flex-direction:column;
  flex-grow: 1;
}
.contact-form-card button{ margin-top:auto; }

.form-label{ font-size:.85rem; color: rgba(11,18,32,.70) !important; font-weight:800; }
.form-control.contact-input{
  background:transparent;
  border-radius:0;
  border-width:0 0 2px 0;
  border-color: rgba(11,18,32,.22);
  color: var(--ink);
  padding-left:0;
  padding-right:0;
  font-size:.93rem;
}
.form-control.contact-input:focus{
  box-shadow:none;
  border-color: var(--accent);
}
.btn-contact{
  background: var(--accent);
  border:none;
  color: #0b1220;
  font-weight: 900;
  padding:.7rem 2.6rem;
  border-radius: 999px;
  margin-top:1.1rem;
}

/* ===== FOOTER ===== */
footer{
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid rgba(2,6,23,.08);
  color: #3b58a4;
}
.hc-footer-bottom{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  font-size:.82rem;
}
.hc-footer-social a{
  text-decoration:none;
  color: rgba(11,18,32,.70);
  font-size:1.1rem;
  margin-right:10px;
  display:inline-flex;
  width:32px;height:32px;
  border-radius:999px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(2,6,23,.10);
  transition: background .25s ease, transform .25s ease;
}
.hc-footer-social a:hover{
  background: rgba(253,186,43,.22);
  transform: translateY(-2px);
}
.hc-footer-links a{
  text-decoration:none;
  color: rgba(11,18,32,.70);
  margin-left:9px;
  /*font-weight:600;*/
}
.hc-footer-links a:hover{ color: var(--blue-primary); }

/* =========================================================
   CURSOR (Schbang-style) - stable
   ========================================================= */

.hc-cursor{
  position: fixed;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  z-index: 99999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .18s ease;
}

.hc-cursor__ring{
  position:absolute; inset:0;
  border-radius: 999px;
  border: 2px solid rgba(11,18,32,.35);
  background: rgba(255,255,255,.20);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transform: scale(1);
  transition: all .22s cubic-bezier(.2,.9,.2,1);
}

.hc-cursor__dot{
  position:absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--cursor-ink);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all .18s ease;
}

.hc-cursor__label{
  position:absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cursor-ink);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .18s ease;
}

.hc-cursor__arrow{
  position:absolute;
  inset: -34px;
  opacity: 0;
  color: var(--cursor-ink);
  transform: rotate(-45deg) scale(.98);
  transition: opacity .18s ease, transform .22s cubic-bezier(.2,.9,.2,1);
}

/* Modes */
.hc-cursor.is-default{
  width: 42px;
  height: 42px;
}
.hc-cursor.is-default .hc-cursor__label{ opacity: 0; }
.hc-cursor.is-default .hc-cursor__arrow{ opacity: 0; }
.hc-cursor.is-default .hc-cursor__ring{
  border-color: rgba(11,18,32,.35);
  background: rgba(255,255,255,.20);
}
.hc-cursor.is-default .hc-cursor__dot{ opacity: 1; }

.hc-cursor.is-circle{
  width: 92px;
  height: 92px;
}
.hc-cursor.is-circle .hc-cursor__ring{
  border-color: rgba(59,88,164,.35);
  background: rgba(255,255,255,.55);
}
.hc-cursor.is-circle .hc-cursor__dot{ opacity: 0; }
.hc-cursor.is-circle .hc-cursor__label{ opacity: 1; }

.hc-cursor.is-oval{
  width: 160px;
  height: 64px;
}
.hc-cursor.is-oval .hc-cursor__ring{
  border-color: rgba(253,186,43,.55);
  background: rgba(255,255,255,.70);
}
.hc-cursor.is-oval .hc-cursor__dot{ opacity: 0; }
.hc-cursor.is-oval .hc-cursor__label{ opacity: 1; }

/* .hc-cursor.is-arrow{
  width: 110px;
  height: 110px;
}
.hc-cursor.is-arrow .hc-cursor__ring{ opacity: 0; }
.hc-cursor.is-arrow .hc-cursor__dot{ opacity: 0; }
.hc-cursor.is-arrow .hc-cursor__label{ opacity: 0; }
.hc-cursor.is-arrow .hc-cursor__arrow{
  opacity: 1;
  transform: rotate(var(--hc-arrow-rot, -45deg)) scale(1);
} */

.hc-cursor.is-down .hc-cursor__ring{
  transform: scale(.92);
  border-color: rgba(11,18,32,.55);
}

/* Hide on touch */
@media (pointer: coarse){
  .hc-cursor{ display:none !important; }
}

/* Hide OS cursor on desktop only */
@media (pointer: fine){
  body.hc-cursor-on { cursor: none; }
  body.hc-cursor-on a,
  body.hc-cursor-on button,
  body.hc-cursor-on input,
  body.hc-cursor-on textarea { cursor: none; }
}

/* Force hide OS cursor on desktop when custom cursor is enabled */
@media (pointer: fine){
  body.hc-cursor-on, 
  body.hc-cursor-on *{
    cursor: none !important;
  }
}

/* Stop float animation so JS rotation works correctly */
.hc-arrow-mark{
  animation: none !important;
  display: inline-block !important;
  will-change: transform;
}

/* =========================================================
   FORCE: Hide system cursor when custom cursor is active
   ========================================================= */
@media (pointer: fine){
  body.hc-cursor-on,
  body.hc-cursor-on *{
    cursor: none !important;
  }
}

/* Make sure custom cursor is visible above everything */
.hc-cursor{
  position: fixed !important;
  z-index: 2147483647 !important;
  pointer-events: none !important;
}


/* =========================================================
   WHAT DEFINES US - Mobile Arrow Replacement (Desktop unchanged)
   ========================================================= */

/* Default: hide the mobile image on desktop */
.hc-arrow-mark-mobile{
  display: none;
  width: 96px;     /* adjust size */
  height: auto;
}

/* Mobile: hide the text arrow and show the image */
@media (max-width: 576px){
  .hc-arrow-mark{
    display: none !important;
  }

  .hc-arrow-mark-mobile{
    display: inline-block;
  }
}


/* Ensure content is above the background grid overlay */
.hc-defines-us::before{ z-index: 1; }
.hc-defines-us .container,
.hc-defines-us .row,
.hc-defines-visual{
  position: relative;
  z-index: 2;
}

/* Mobile arrow replacement */
.hc-arrow-mark-mobile{
  display: none;
  width: 110px;
  height: auto;
}

@media (max-width: 576px){
  .hc-arrow-mark{
    display: none !important;
  }
  .hc-arrow-mark-mobile{
    display: inline-block !important;
  }
}

/* REMOVE DROPDOWN ARROW FROM SERVICES */
.navbar .dropdown-toggle::after {
  display: none !important;
}

/* OPTIONAL: KEEP CLICK CURSOR */
.navbar .dropdown-toggle {
  cursor: pointer;
}
