/* ==========================================================================
   EDUKA CUSTOMIZER CSS - For WordPress Customizer (Additional CSS)
   These classes provide elements and layouts that native Elementor controls 
   cannot easily replicate out-of-the-box. Apply these class names to the 
   respective Elementor Containers or Widgets in the "CSS Classes" field.
   ========================================================================== */

/* 1. Global Custom Typography & Spacing */
.eduka-highlight {
    color: #f9a825 !important; /* Accent Yellow */
}

/* 2. Overlapping Hero Cards (Apply to the Container holding the 4 cards) */
.eduka-card-overlap {
    margin-top: -120px !important;
    z-index: 10;
    position: relative;
}

@media (max-width: 991px) {
    .eduka-card-overlap {
        margin-top: -40px !important;
    }
}

/* 3. Custom Card Styles (Apply to individual Feature/Course/Teacher/FAQ cards) */
.eduka-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0px 10px 30px rgba(12, 43, 100, 0.06) !important;
    transition: all 0.3s ease !important;
}

.eduka-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0px 15px 35px rgba(12, 43, 100, 0.12) !important;
}

/* 4. Arch Collage Image Mask (Apply to the main image widget or container) */
.eduka-collage-arch {
    border-radius: 120px 120px 16px 16px !important;
    overflow: hidden;
}

.eduka-collage-badge {
    background-color: #f9a825 !important;
    border-radius: 50% 50% 50% 0px !important; /* Custom teardrop/circle badge shape */
    box-shadow: 0px 10px 20px rgba(249, 168, 37, 0.3) !important;
}

/* 5. Highlight Sidebar Card with Dashed Border (About section widget) */
.eduka-quote-card {
    border: 2px dashed rgba(12, 43, 100, 0.2) !important;
    background-color: rgba(248, 250, 252, 0.8) !important;
    border-radius: 16px !important;
    position: relative;
    padding: 24px !important;
}

/* 6. Timeline Step-by-Step Layout (Admissions timeline) */
.eduka-timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.eduka-timeline-item::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 30px;
    bottom: -40px;
    width: 2px;
    background: rgba(12, 43, 100, 0.15);
}

.eduka-timeline-item:last-child::before {
    display: none;
}

.eduka-timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #0c2b64;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    border: 4px solid #ffffff;
    box-shadow: 0 0 0 2px #0c2b64;
}

/* 7. Image Category Badge (Course listing) */
.eduka-img-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f9a825 !important;
    color: #ffffff !important;
    padding: 6px 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    border-radius: 50px !important;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* 8. Video play button container */
.eduka-video-overlay {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.eduka-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: #f9a825 !important;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 0 0 rgba(249, 168, 37, 0.5);
    animation: eduka-pulse 2s infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eduka-video-play-btn:hover {
    background-color: #0c2b64 !important;
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes eduka-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 168, 37, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(249, 168, 37, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(249, 168, 37, 0);
    }
}

/* 9. Event Date Badge */
.eduka-event-date-box {
    width: 60px;
    height: 70px;
    background-color: #0c2b64 !important;
    color: #ffffff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.eduka-event-date-day {
    font-size: 20px;
}

.eduka-event-date-month {
    font-size: 11px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
}

/* 10. Star Rating Indicator */
.eduka-stars {
    color: #f9a825 !important;
    font-size: 14px;
}

/* 11. Custom List Icon (Yellow Checkmark) */
.eduka-list-checked {
    list-style: none;
    padding-left: 0;
}

.eduka-list-checked li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
}

.eduka-list-checked li::before {
    content: "✓"; /* Standard check character fallback */
    position: absolute;
    left: 0;
    top: 2px;
    color: #f9a825;
    font-size: 18px;
    font-weight: bold;
}

/* 12. Wizard Form Steps */
.eduka-wizard-step {
    display: none;
}

.eduka-wizard-step.active {
    display: block;
}

.eduka-step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s ease;
}

.eduka-step-indicator.active {
    background-color: #0c2b64;
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(12, 43, 100, 0.2);
}

.eduka-step-indicator.completed {
    background-color: #f9a825;
    color: #ffffff;
}

/* 13. Tabs UI Styling */
.eduka-tab-content {
    display: none;
}

.eduka-tab-content.active {
    display: block;
}

/* 14. Hero Slider UI Styling */
.eduka-slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.eduka-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

/* 15. Dropdown Active (Click/Touch support) */
.dropdown-active {
    display: block !important;
}

