:root {
    --primary-color: #C01718;      /* McAfee Red */
    --secondary-color: #2D3436;    /* Charcoal */
    --accent-color: #DFE6E9;       /* Silver */
    --dark-color: #1a1a1a;
    --light-color: #fcfcfc;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: #fff;
    overflow-x: hidden;
}

.hero-section {
    background: linear-gradient(135deg, rgba(192, 23, 24, 0.85) 0%, rgba(45, 52, 54, 0.85) 100%), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    margin-bottom: 50px;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.5);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #a01213;
    border-color: #a01213;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 23, 24, 0.4);
}


.brand-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.brand-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.product-card {
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #fff;
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}


.filter-sidebar {
    background: #fdfdfd;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 20px;
}

/* AOS overrides */
[data-aos] {
    pointer-events: none;
}
.aos-animate {
    pointer-events: auto;
}

.x-small {
    font-size: 0.75rem;
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }
    .display-3 {
        font-size: 2rem;
    }
    .card-body h5, .card-body h6 {
        font-size: 0.9rem;
    }
    .product-card .card-body {
        padding: 10px;
    }
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    .row {
        margin-left: -5px;
        margin-right: -5px;
    }
    .col-6 {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Why Choose Us Section Enhanced Styles */
.why-choose-img-container {
    position: relative;
}

.main-why-img-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.main-img {
    transition: transform 0.5s ease;
}

.main-why-img-wrapper:hover .main-img {
    transform: scale(1.02);
}

.mcafee-badge-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(192, 23, 24, 0.1);
}

.logo-badge {
    height: 40px;
}

.badge-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.1;
    text-transform: uppercase;
}

.floating-shield {
    position: absolute;
    top: -25px;
    left: -25px;
    background: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(192, 23, 24, 0.2);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .mcafee-badge-overlay {
        bottom: 10px;
        right: 10px;
        padding: 10px;
    }
    .logo-badge {
        height: 30px;
    }
    .floating-shield {
        width: 60px;
        height: 60px;
        top: -15px;
        left: -15px;
    }
    .floating-shield i {
        font-size: 1.8rem;
    }
}

/* Mobile Call Widget */
.mobile-call-widget {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

.mobile-call-widget .btn {
    border-top: 2px solid rgba(255,255,255,0.2);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .mobile-call-widget {
        display: none !important;
    }
}

/* Desktop Call Widget (Bottom Left) */
.desktop-call-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 15px;
}

.call-btn-circle {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(192, 23, 24, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

/* Ringing / Pulse Animation */
.call-btn-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 50%;
    z-index: -1;
    animation: ring-pulse 2s infinite;
    opacity: 0.5;
}

@keyframes ring-pulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.6); opacity: 0; }
}

.call-btn-circle:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: #a01213;
}

.call-number-label {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(-20px);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    border: 1px solid #eee;
}

.desktop-call-widget:hover .call-number-label {
    transform: translateX(0);
    opacity: 1;
}

.call-number-label strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}



