* {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

.gradient-bg {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.swiper-button-next,
.swiper-button-prev {
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
    color: #6366f1;
}

.category-chip {
    transition: all 0.2s ease;
}

.category-chip:hover {
    background: #6366f1 !important;
    color: white !important;
    transform: translateY(-2px);
}

.stat-card {
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.instructor-card:hover .instructor-overlay {
    opacity: 1;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-bestseller {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.badge-new {
    background: linear-gradient(135deg, #10b981, #059669);
}

.badge-popular {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.transition-all {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}


        /* Brand Card Hover Effects */
        .group {
            position: relative;
            transition: all 0.3s ease;
        }

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

        /* Swiper Pagination Customization - Smaller */
        .swiper-pagination-brands {
            display: flex;
            justify-content: center;
            gap: 4px;
        }

        .swiper-pagination-brands .swiper-pagination-bullet {
            width: 6px;
            height: 6px;
            background: #FDBA74;
            opacity: 0.6;
            transition: all 0.3s ease;
            margin: 0 2px !important;
        }

        .swiper-pagination-brands .swiper-pagination-bullet-active {
            background: #EA580C;
            opacity: 1;
            width: 20px;
            border-radius: 4px;
        }

        /* Navigation Buttons - Smaller */
        .brands-swiper-prev,
        .brands-swiper-next {
            transition: all 0.3s ease;
        }

        .brands-swiper-prev.swiper-button-disabled,
        .brands-swiper-next.swiper-button-disabled {
            opacity: 0.4;
            cursor: not-allowed;
            pointer-events: none;
        }

        /* Grayscale to Color Animation */
        .grayscale {
            filter: grayscale(100%);
        }

        .group:hover .grayscale {
            filter: grayscale(0%);
        }

        /* Responsive adjustments */
        @media (max-width: 640px) {
            .brandsSwiper {
                padding: 0 2px;
            }

            .swiper-pagination-brands {
                margin-top: 12px;
            }
        }

        /* Smooth transitions */
        * {
            transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 200ms;
        }
