

/* Ad Banner Section */
.ad-banner-section {
    padding: 3rem 0;
    animation: fadeInUp 0.8s ease-out;
}

.ad-banner-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.ad-banner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(102, 126, 234, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.ad-banner-card:hover::before {
    left: 100%;
}

.ad-banner-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.ad-banner-image {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.ad-banner-card:hover .ad-banner-image {
    transform: scale(1.1) rotate(5deg);
    border-color: #667eea;
}

.ad-banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: slideInDown 0.6s ease-out;
}

.ad-banner-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.ad-banner-btn {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
    color: #333;
    font-weight: 700;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.ad-banner-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s;
}

.ad-banner-btn:hover::before {
    left: 100%;
}

.ad-banner-btn:hover {
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.5);
    color: #333;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .ad-banner-card {
        padding: 1.5rem;
    }
    .ad-banner-image {
        width: 100px;
        height: 100px;
        margin-bottom: 1.5rem;
    }
    .ad-banner-title {
        font-size: 1.8rem;
    }
    .ad-banner-description {
        font-size: 0.95rem;
    }
    .ad-banner-btn {
        padding: 0.6rem 1.8rem;
        font-size: 0.9rem;
    }
}
