/* ----------------------------------------------------- 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 */
.hero-header {
  font-size: 5rem;
  font-weight: 700;          /* Poppins shines at 600–700 */
  line-height: 1.15;
  letter-spacing: -0.015em;
}
@media (max-width: 768px) {
  .hero-header { font-size: 3.6rem; }
}
.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;
}
.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);
}
.hero-card2{
    /* From https://css.glass */
    background: rgba(0, 130, 198, 0.37);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4.7px);
    -webkit-backdrop-filter: blur(4.7px);
}
/* ====================== NUMBERS ===================== */
.number-text{
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2.4px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.parallax-bg {
    background-image: url("/static/assets/aboutus/header.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}
.parallax-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.3)
    );
}
/* ---------------- PARTS ------------------ */
.circle-img {
    height: 100px;
    width: 150px;
}
/* ----------- MILESTONES ---------------- */
/* connecting line */
.timeline .linedata::before{
    content: "";
    position: absolute;
    top: 20px;               /* same vertical level as dots */
    left: 0;
    right: 0;
    height: 2px;
    background: #dee2e6;
    width: 100%;
}
.timeline .card{
    min-width: 200px;
    position: relative;
}
.timeline .card::before {
    content: "";
    position: absolute;
    top: -36px;              /* aligns center of dot on line */
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: var(--qm);     /* or bg-main color */
    border-radius: 50%;
    z-index: 1;              /* keeps dot above line */
}
/* --------- CUSTOMERS ---------------- */
.customers img {
    height: 120px;
}
.customers .customer-card{
    opacity: 0;
    transform: translateY(-40px);
}