/* ----------------------------------------------------- LOADER -------------------------------------------- */
.loader{
    background: radial-gradient(circle at 25% 25%, #ffffff 0%, #eaf0ff 35%, transparent 70%);
    z-index: 99999;
    opacity: 0;
    user-select: none;
}
.loader .card{
    background: var(--glass-bg);
    border: 1px solid rgba(255,255,255,0.28);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    box-shadow: 0 10px 40px rgba(68,88,220,0.16);
    transform: scale(0.96);
    transition: transform .3s ease, opacity .3s ease;
    opacity: 0;
    width: 400px;
}
.loader .progress{
    /* breathing animation - intensifies the glow periodically */
    animation: ringGlow 2s ease-in-out infinite;
}
.loader .progress .progress-bar{
    background-color: var(--qm);
}
/* Breathing glow */
@keyframes ringGlow {
  0%,100% { filter: drop-shadow(0 0 6px rgba(68,88,220,0.4)); }
  50%    { filter: drop-shadow(0 0 18px rgba(68,88,220,0.75)); }
}
/* HERO SECTION */
.video-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.video-hero video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.hero-video {
  opacity: 0;
  visibility: hidden;
}
.video-overlay {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.45);
    height: 100%;
}
.hero-card{
    backdrop-filter: blur(2px) saturate(180%);
    -webkit-backdrop-filter: blur(2px) saturate(180%);
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 12px;
    border: 1px solid rgba(209, 213, 219, 0.3);
}
/* ====================== NUMBERS ===================== */
.numbers-inside{
  transform: translateY(-35%);
  will-change: transform;
}
.grid-background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-image: linear-gradient(to right, #e2e8f0 1px, transparent 1px),
    linear-gradient(to bottom, #e2e8f0 1px, transparent 1px);
  background-size: 20px 30px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    #000 60%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 50% 0%,
    #000 60%,
    transparent 100%
  );
}
.numbers .row .card-numbers .card-body {
  background:var(--qm);
}
/* ---------------- PARTS ------------------ */
.circle-img {
    width: 150px;        /* control size */
    height: 150px;
}
/* ----------- MILESTONES ---------------- */
/* Timeline */
.timeline .card{
    border: 1px solid rgba(0, 130, 198, 0.63);
}
.timeline .container .row:nth-child(odd){
    justify-content: start;
}
.timeline .container .row:nth-child(even){
    justify-content: end;
}
.timeline .line{
    width: 5px;
    top:0;
    left:50%;
    animation: moveline 6s linear forwards;
}
@keyframes moveline{
    0%{height: 0;}
    100%{height:100%;}
}
@media (max-width: 768px) {
    #timeline .line {
        left: 5% !important;
    }
}
/* --------- CUSTOMERS ---------------- */
.customers img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}