:root{
  --brand:#0d6efd;
  --dark:#0b1320;
}

html{scroll-behavior:smooth}
body{font-feature-settings:"liga" 1,"kern" 1}
.navbar-brand img{height:44px}
.hero .lead{max-width:720px}

@keyframes fly{
  0%{transform:translate(-10vw,0) rotate(15deg)}
  50%{transform:translate(110vw,-10vh) rotate(10deg)}
  100%{transform:translate(-10vw,0) rotate(15deg)}
}

section{padding:80px 0}
.section-title .bar{width:80px;height:4px;background:var(--brand)}
.service-card{transition:transform .25s, box-shadow .25s}
.service-card:hover{transform:translateY(-6px);box-shadow:0 1rem 2rem rgba(13,110,253,.15)}
.stat{font-size:2.6rem;font-weight:800}
.aog-cta{position:fixed;right:16px;bottom:16px;z-index:1080}
.reveal{opacity:0;transform:translateY(24px);transition:all .6s ease}
.reveal.visible{opacity:1;transform:none}
footer a{color:#cfe2ff;text-decoration:none}
footer a:hover{text-decoration:underline}

.fancy-btn{
  background:linear-gradient(45deg,#00c6ff,#0072ff);
  border:none;
  color:#fff !important;
  padding:12px 28px;
  border-radius:50px;
  font-weight:600;
  transition:.3s ease-in-out;
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}
.fancy-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 15px rgba(0,0,0,.25);
  filter:brightness(1.15);
}

/* === HERO BASE === */
.hero{
  position:relative;
  color:#fff;
  padding:0;
}

/* if header still has d-flex from Bootstrap, neutralize it here */
.hero.d-flex{
  display:block !important;
  align-items:stretch !important;
  justify-content:flex-start !important;
}

/* === VIDEO HERO === */
.hero-video{
  position:relative;
  width:100%;
  height:100vh;            /* << set your hero/video height here */
  overflow:hidden;
}

/* Video element fills and crops */
.hero-video-bg{
  position:absolute;
  top:50%;
  left:50%;
  min-width:100%;
  min-height:100%;
  width:auto;
  height:auto;
  transform:translate(-50%, -50%);
  object-fit:cover;
  z-index:1;
}

/* Optional dark overlay over video */
.hero-video-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35); /* tweak for lighter/darker video */
  z-index:2;
}

/* Content on top of the video */
.hero-content{
  position:relative;
  z-index:3;
}

.hero-logo{
  position:absolute;
  bottom:-10%;        /* move up/down as needed */
  left:50%;
  transform:translateX(-50%);
  z-index:5;          /* must be above the overlay */
  text-align:center;
}

.hero-logo img{
  width:30vw;        /* adjust size */
  height:auto;
}
