/* Hero Section - Enhanced */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: var(--lighter);
    padding: 120px 0 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.3) blur(20px);
    transform: scale(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 107, 0, 0.8) 0%, 
        rgba(255, 140, 0, 0.6) 50%, 
        rgba(255, 180, 0, 0.4) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: badgePulse 1.25s infinite;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-title .mittals {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title .rise {
    color: #fff8e1;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.5s both;
    flex-wrap: wrap;
}

.stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 20px;
    min-width: 180px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat p {
    color: var(--darker);
    font-size: 1rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 3rem 0;
    animation: fadeInUp 1s ease 0.7s both;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 180px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

.hero-scroll-indicator {
    animation: bounce 2s infinite;
    margin-top: 2rem;
    color: white;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-20px);}
    60% {transform: translateY(-10px);}
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--darker);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Preview */
.about-preview {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #e67e22 100%);
}
.about-preview .section-title {
    color: white;
}

.about-preview .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.preview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.highlight {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight:hover {
    transform: translateY(-30px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    border: 2px solid var(--primary-light);
}

.highlight h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--darker);
}

.highlight p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-action-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.2);
    position: sticky;
    top: 100px;
}

.action-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.action-card-header h3 {
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-badge {
    background: white;
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.action-card-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.action-card-features {
    margin-bottom: 2rem;
}

.action-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.action-feature i {
    color: var(--lighter);
    animation: pulse 1s infinite;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
}


/* Homepage Packages Preview - 4 Column Layout */
.packages-preview {
    padding: 100px 0;
    background: var(--lighter);
}

.packages-preview .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--darker);
    margin-bottom: 1rem;
    position: relative;
}

.packages-preview .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
}

.packages-preview .section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 4 Column Grid Layout */
.preview-packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Preview Package Card */
.preview-package-card {
    background: var(--lighter);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--gray-light);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.preview-package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.preview-package-card.featured {
    border-color: var(--primary);
    transform: scale(1.02);
    animation: featuredGlow 2s infinite alternate;
}

@keyframes featuredGlow {
    from {
        box-shadow: 0 10px 30px rgba(255, 107, 0, 0.15);
    }
    to {
        box-shadow: 0 10px 40px rgba(255, 107, 0, 0.25);
    }
}

.preview-package-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
}

.preview-package-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--primary);
    color: var(--lighter);
    padding: 6px 35px;
    transform: rotate(45deg);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Header */
.preview-package-header {
    padding: 1.5rem 1.5rem 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 2px solid var(--gray-light);
}

.preview-package-header h3 {
    font-size: 1.4rem;
    color: var(--darker);
    margin-bottom: 0.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.preview-package-header .hindi-text {
    font-family: 'Noto Sans Devanagari', 'Poppins', sans-serif;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
}

.preview-package-subtitle {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.preview-package-subtitle strong {
    color: var(--darker);
}

/* Price Section */
.preview-price-section {
    margin: 0.8rem 0;
}

.preview-price-mode {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.preview-price-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.preview-value-indicator {
    background: var(--light);
    border-radius: 20px;
    height: 6px;
    position: relative;
    margin: 0.8rem 0;
    overflow: hidden;
}

.preview-value-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gray-light) 0%, var(--primary) 100%);
    border-radius: 20px;
}

.preview-value-text {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
}

.preview-package-duration {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Features */
.preview-package-features {
    padding: 1.5rem;
    flex-grow: 1;
}

.preview-package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-package-features li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray);
}

.preview-package-features i {
    color: var(--primary);
    margin-top: 2px;
    font-size: 0.75rem;
    min-width: 12px;
}

.preview-package-features strong {
    color: var(--darker);
    font-weight: 600;
}

/* Footer */
.preview-package-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 2px solid var(--gray-light);
    text-align: center;
}

.preview-package-footer .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}


.preview-cta {
    background:linear-gradient(135deg, var(--primary) 0%, #e67e22 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--lighter);
}

.cta-content p {
    color: var(--lighter);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.offer-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1));
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--lighter);
}

.offer-icon {
    width: 50px;
    height: 50px;
    background: var(--lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.offer-text {
    text-align: left;
    font-size: 1.1rem;
    color: var(--lighter);
}

.offer-text strong {
    color: var(--lighter);
}

/* Testimonials */
/* Testimonials */
.testimonials {
    padding: 50px 0;
    background: #fff9f3;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-slider {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background: white;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.testimonial-left {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.student-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--primary-light);
    margin-bottom: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.student-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-score {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-right {
    flex: 1;
    padding-right: 1rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--darker);
    padding: 0.5rem 0 1.5rem 0;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-school {
    color: var(--gray);
    font-size: 0.95rem;
    font-style: italic;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-btn {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.testimonial-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--gray-light);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .testimonial-left {
        flex: 0 0 auto;
    }
    
    .student-avatar {
        width: 150px;
        height: 150px;
    }
    
    .testimonial-right {
        padding-right: 0;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .student-avatar {
        width: 120px;
        height: 120px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-score {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}
/* Responsive Design */
@media (max-width: 992px) {
    .testimonial-item {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .testimonial-left {
        flex: 0 0 auto;
    }
    
    .student-avatar {
        width: 150px;
        height: 150px;
    }
    
    .testimonial-right {
        padding-right: 0;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
        padding: 1.5rem 0;
    }
    
    .testimonial-text::before,
    .testimonial-text::after {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .testimonial-item {
        padding: 1.5rem;
    }
    
    .student-avatar {
        width: 120px;
        height: 120px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-score {
        font-size: 1rem;
        padding: 0.6rem 1.5rem;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .features-grid,
    .preview-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-highlights {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .preview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-action-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat {
        min-width: 150px;
        padding: 1.5rem;
    }
    
    .stat h3 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .preview-packages-grid,
    .about-highlights {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .testimonial-item {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat h3 {
        font-size: 1.8rem;
    }
    
    .feature,
    .highlight {
        padding: 1.5rem;
    }
    
    .about-action-card {
        padding: 2rem 1.5rem;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6); }
    100% { box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: linear-gradient(135deg, #128C7E, #25D366);
}