/* Background image */
.hero-bg {
    background-image: url('../../images/warehouse/warehouse.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.8) contrast(1.1);
}

/* Badge */
.hero-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 14px;
    letter-spacing: .5px;
}

.gradient-text {
    background: linear-gradient(90deg, #2563eb, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Title */
.hero-title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 700;
}

/* Description */
.hero-desc {
    font-size: 1.15rem;
    opacity: 0.9;
}

/* Floating glowing orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: #22d3ee80;
    top: 10%;
    left: 15%;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: #3b82f6;
    bottom: 15%;
    right: 20%;
}

.orb3 {
    width: 250px;
    height: 250px;
    background: #06b5d46e;
    top: 40%;
    right: 10%;
}