
/* Diwali Offer Section Styles */
.diwali-offer-section {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FDB913 100%);
    padding: 30px 15px;
    margin: 20px 10px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.diwali-offer-section::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background-image: url('../diwali-bg.png');
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.2;
    animation: diwaliRotate 30s linear infinite;
    pointer-events: none;
}

@keyframes diwaliRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.diwali-container {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.diwali-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.diwali-sparkle {
    font-size: 30px;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.diwali-title {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    margin: 0 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.diwali-announcement {
    background: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 20px;
}

.diwali-badge {
    display: inline-block;
    background: #FF6B35;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}

.diwali-batch-info {
    color: #001C55;
    font-size: 18px;
    font-weight: 600;
    margin: 8px 0 0 0;
}

.diwali-batch-info strong {
    color: #FF6B35;
    font-size: 20px;
}

.diwali-price-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.diwali-fire {
    font-size: 35px;
    animation: fireFlicker 0.5s ease-in-out infinite alternate;
}

@keyframes fireFlicker {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.diwali-price-content {
    margin: 0 15px;
    text-align: center;
}

.diwali-price-label {
    color: #001C55;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.diwali-price-amount {
    color: #FF6B35;
    font-size: 32px;
    font-weight: 900;
    margin: 0;
}

.diwali-features {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.diwali-features-title {
    color: #001C55;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.diwali-features-grid {
    display: grid;
    gap: 12px;
}

.diwali-feature-item {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 10px;
    border-radius: 8px;
    border-left: 4px solid #FF6B35;
}

.diwali-check {
    font-size: 18px;
    margin-right: 10px;
    flex-shrink: 0;
}

.diwali-feature-item p {
    color: #2c2c2c;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.diwali-urgency {
    text-align: center;
    margin: 20px 0;
}

.diwali-hurry {
    background: #ffffff;
    color: #FF6B35;
    font-size: 18px;
    font-weight: 800;
    padding: 12px 20px;
    border-radius: 25px;
    display: inline-block;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.diwali-cta {
    text-align: center;
    margin-top: 20px;
}

.diwali-register-btn {
    background: #001C55;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.diwali-register-btn:hover {
    background: #002a7a;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.4);
}

.diwali-contact {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Responsive Design for Diwali Section */
@media only screen and (min-width: 768px) {
    .diwali-offer-section {
        padding: 40px 30px;
        margin: 30px auto;
        max-width: 1200px;
    }
    
    .diwali-title {
        font-size: 36px;
    }
    
    .diwali-sparkle {
        font-size: 40px;
    }
    
    .diwali-badge {
        font-size: 16px;
        padding: 8px 20px;
    }
    
    .diwali-batch-info {
        font-size: 22px;
    }
    
    .diwali-batch-info strong {
        font-size: 26px;
    }
    
    .diwali-price-amount {
        font-size: 42px;
    }
    
    .diwali-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .diwali-feature-item p {
        font-size: 16px;
    }
    
    .diwali-register-btn {
        font-size: 20px;
        padding: 18px 40px;
        width: auto;
    }
}

