/* ============================================
   शिक्षा योजना (Shiksha Yojana) STYLES
   ============================================ */

.shiksha-section {
    background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 50%, #fff3cd 100%);
    position: relative;
    overflow: hidden;
}

.shiksha-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.shiksha-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.shiksha-card {
    background: white;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(255, 193, 7, 0.2);
    padding: 40px 30px;
    position: relative;
    border: 3px solid #ffc107;
    overflow: hidden;
    z-index: 1;
}

.shiksha-content {
    position: relative;
    z-index: 2;
}

.shiksha-highlight-box {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border: 2px solid #ffc107;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.shiksha-info-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.shiksha-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.shiksha-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: linear-gradient(135deg, #fffbf0 0%, #fff 100%);
    border: 1px solid #ffe082;
    border-radius: 12px;
    padding: 15px;
    transition: all 0.3s;
}

.shiksha-feature-item:hover {
    background: linear-gradient(135deg, #fff8e1 0%, #fff 100%);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.2);
}

.shiksha-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffc107, #d39e00);
    color: #1a1a2e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.shiksha-feature-item > div:last-child {
    flex: 1;
    color: #1a1a2e;
    font-size: 14px;
    line-height: 1.6;
}

.shiksha-feature-item strong {
    color: #1a1a2e;
}

.shiksha-purpose {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    border-radius: 12px;
    padding: 15px 20px;
    border-left: 5px solid #28a745;
}

.shiksha-cta-btn {
    background: linear-gradient(135deg, #ffc107, #d39e00) !important;
    color: #1a1a2e !important;
    border: none !important;
    padding: 15px !important;
    font-size: 18px !important;
    box-shadow: 0 10px 25px rgba(255, 193, 7, 0.4) !important;
    transition: all 0.3s !important;
}

.shiksha-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.5) !important;
}

/* ===== Pricing Card ===== */
.shiksha-pricing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    border: 3px solid #ffc107;
    transition: all 0.3s;
}

.shiksha-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 193, 7, 0.3);
}

.shiksha-badge-ribbon {
    position: absolute;
    top: 25px;
    right: -50px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 8px 50px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 5px;
}

.shiksha-pricing-body {
    padding: 60px 30px 30px;
    background: linear-gradient(180deg, #fffbf0 0%, #ffffff 100%);
}

.shiksha-pricing-body hr {
    border-color: #ffc107;
    opacity: 0.3;
}

/* ===== Animation ===== */
@keyframes shiksha-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.shiksha-pricing-card .fa-graduation-cap {
    animation: shiksha-float 3s ease-in-out infinite;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .shiksha-card {
        padding: 30px 20px;
    }
    
    .shiksha-badge-ribbon {
        right: -60px;
        font-size: 11px;
        padding: 6px 60px;
    }
}

@media (max-width: 576px) {
    .shiksha-card {
        padding: 20px 15px;
    }
    
    .shiksha-pricing-body {
        padding: 50px 20px 20px;
    }
    
    .shiksha-pricing-body .display-2 {
        font-size: 3.5rem;
    }
    
    .shiksha-feature-item {
        padding: 12px;
    }
    
    .shiksha-feature-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
