* {
    font-family: 'Poppins', sans-serif;
}

/* Header */
.header {
    height: 85px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Menu Links */
.nav-link {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ff911d;
}

.nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background: #ff911d;
    left: 50%;
    bottom: -4px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Animated Cart Icon */
.group:hover .animate-ping {
    animation: bounce 0.5s infinite;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.show-menu {
    display: block;
    transform: translateY(0);
}

/* Sticky Header */
.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

/* Sign Up Button */
.btn-animated {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-animated:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(255, 145, 29, 0.5);
}

/* Animated Ribbon Style */
.ribbon {
position: absolute;
top: 10px;
left: -10px;
background: #ff3b3b;
color: white;
padding: 6px 14px;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
transform: rotate(-10deg);
box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
border-radius: 4px;
animation: fadeInBounce 0.8s ease-in-out, pulse 2s infinite;
}

@keyframes fadeInBounce {
0% {
    opacity: 0;
    transform: translateY(-20px) rotate(-10deg);
}
50% {
    opacity: 1;
    transform: translateY(5px) rotate(-10deg);
}
100% {
    transform: translateY(0) rotate(-10deg);
}
}

@keyframes pulse {
0% {
    transform: rotate(-10deg) scale(1);
}
50% {
    transform: rotate(-10deg) scale(1.1);
}
100% {
    transform: rotate(-10deg) scale(1);
}
}

/* Hover Effect */
.support-card:hover {
transform: translateY(-5px);
transition: transform 0.3s ease-in-out;
}

/* Footer Links */
.footer-link {
color: #bbb;
transition: color 0.3s;
}
.footer-link:hover {
color: #ff911d;
}

/* Social Icons */
.social-icon {
width: 40px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
color: white;
transition: transform 0.3s, opacity 0.3s;
}
.social-icon:hover {
transform: scale(1.1);
opacity: 0.8;
}

/* Trusted Platform Section */
.trusted-section {
    background: linear-gradient(135deg, #0b0b45, #ff911d);
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.trusted-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease-in-out;
}

.trusted-box:hover {
    transform: translateY(-5px);
}

.trusted-box h2 {
    font-size: 30px;
    font-weight: bold;
    color: #0b0b45;
}

.trusted-box p {
    font-size: 18px;
    color: #333;
    margin: 15px 0;
}

.rating {
    font-weight: bold;
    color: #ff911d;
}

.btn-primary {
    background: #ff911d;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease-in-out;
}

.btn-primary:hover {
    background: #e87c0d;
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .trusted-box {
        padding: 30px;
    }
    
    .trusted-box h2 {
        font-size: 24px;
    }

    .trusted-box p {
        font-size: 16px;
    }
}

/* Button Animation */
.add-to-cart-btn {
    transition: transform 0.3s ease-in-out;
}

.add-to-cart-btn:hover {
    transform: scale(1.1);
}
