/* style.css */

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}
body {
   font-family: 'Open Sans', sans-serif;
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
                0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
#confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #f00;
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}
.course-card {
    transition: all 0.3s ease;
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.filter-btn.active {
    background-color: #3b82f6;
    color: white;
}
.floating {
    animation: float 3s ease-in-out infinite;
}
.footer-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #38b2ac 100%);
}
.hero-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #38b2ac 100%) !important;
}

.home-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
        }
}
.map-container {
    height: 400px;
    width: 100%;
}
.par-badge {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.rating-1 { background-color: #f87171; }
.rating-2 { background-color: #fbbf24; }
.rating-3 { background-color: #60a5fa; }
.rating-4 { background-color: #34d399; }

.transition-all {
   transition: all 0.3s ease;
}
.video-card-seo {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .video-card-seo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
.video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
}
.video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
}        
.video-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
}
</style>