/* Custom Styles for Apex Courier Solutions */

html, body {
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Zero Wobble strict rules */
* {
    box-sizing: border-box;
}

.hero-bg {
    background-image: url('assets/hero.png');
    background-size: cover;
    background-position: center;
    /* Optional parallax effect */
    background-attachment: fixed; 
}

.trust-icon {
    width: 48px;
    height: 48px;
    color: #FFD700;
}

.btn-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hover:hover {
    transform: translateY(-2px);
}

.btn-hover-slate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(51, 65, 85, 0.4);
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Quote Box Pulse Animation */
.quote-box {
    animation: pulse-border 3s ease-in-out infinite;
}

@keyframes pulse-border {
    0% { border-color: rgba(255, 215, 0, 0.3); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.1); }
    50% { border-color: rgba(255, 215, 0, 1); box-shadow: 0 0 20px 0 rgba(255, 215, 0, 0.2); }
    100% { border-color: rgba(255, 215, 0, 0.3); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}