/* ===================================
   Power Academy - Main Styles
   Premium Home Tuition Website
   =================================== */

/* ===================================
   HERO SECTION
   =================================== */

.hero-section {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Animated Wave Background */
.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%233b82f6' fill-opacity='0.3' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: 200% 100%;
    animation: waveMove 15s linear infinite;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23f97316' fill-opacity='0.2' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,213.3C672,224,768,224,864,208C960,192,1056,160,1152,154.7C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: 200% 100%;
    animation: waveMove 20s linear infinite reverse;
    z-index: 1;
}

@keyframes waveMove {
    0% {
        background-position: 0% bottom;
    }
    100% {
        background-position: 200% bottom;
    }
}

/* Floating Dots Pattern */
.hero-section .hero-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
    animation: dotFloat 30s linear infinite;
}

@keyframes dotFloat {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50px);
    }
}

/* Glowing Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    z-index: 1;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-1 {
    top: 20%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.6), transparent);
    animation-delay: 0s;
}

.hero-orb-2 {
    top: 60%;
    right: 15%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.6), transparent);
    animation-delay: 2s;
}

.hero-orb-3 {
    bottom: 10%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5), transparent);
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.95), rgba(251, 146, 60, 0.95));
    color: var(--white);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 1s ease-out 0.2s both, pulse 2s ease-in-out 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(249, 115, 22, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 35px rgba(249, 115, 22, 0.6);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.5));
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.2);
}

.hero-features {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
    border-color: rgba(251, 191, 36, 0.5);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    filter: drop-shadow(0 0 10px rgba(251, 191, 36, 0.6));
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1s both;
}

.hero-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: rgba(251, 191, 36, 0.5);
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
    filter: drop-shadow(0 0 15px rgba(251, 191, 36, 0.4));
}

.stat-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 600;
}

.hero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.6s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image img {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.2rem 1.8rem;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-card i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-card h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark-color);
}

.floating-card p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

.card-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   ABOUT SECTION
   =================================== */

.about-section {
    padding: 80px 0;
    background: var(--white);
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #fb923c);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
    position: relative;
    overflow: hidden;
}

.section-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--secondary-color), #fb923c);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0;
}

.experience-badge p {
    font-size: 0.85rem;
    margin: 0;
    font-weight: 600;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-highlights {
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: var(--transition);
}

.highlight-item:hover {
    background: #e0f2fe;
    transform: translateX(10px);
}

.highlight-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.highlight-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   SERVICES SECTION
   =================================== */

.services-section {
    padding: 80px 0;
    background: var(--light-color);
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: var(--white);
}

.service-card.featured h4,
.service-card.featured p,
.service-card.featured li {
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card.featured .service-icon i {
    color: var(--white);
}

.service-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.service-features i {
    color: var(--success-color);
    margin-right: 0.8rem;
    font-size: 1.1rem;
}

.service-card.featured .service-features i {
    color: var(--accent-color);
}

/* ===================================
   SUBJECTS SECTION
   =================================== */

.subjects-section {
    padding: 80px 0;
    background: var(--white);
}

.subject-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}

.subject-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.subject-card.featured {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    border-color: var(--accent-color);
}

.subject-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.subject-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.grade-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.subject-list {
    margin-bottom: 1.5rem;
}

.subject-item {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}

.subject-item:hover {
    background: #e0f2fe;
    transform: translateX(10px);
}

.subject-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
}

.subject-item span {
    font-weight: 500;
}

.subject-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */

.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.why-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */

.testimonials-section {
    padding: 80px 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    height: 100%;
    transition: var(--transition);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.rating {
    margin-bottom: 1rem;
}

.rating i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.student-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.student-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.student-avatar i {
    font-size: 2rem;
    color: var(--white);
}

.student-info h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.student-info p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

/* ===================================
   CONTACT SECTION
   =================================== */

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-info-box,
.contact-form-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-info-box {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: var(--white);
}

.contact-info-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-info-box > p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), #fb923c);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.contact-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-item p,
.contact-item a {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-social {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.contact-social .social-links {
    display: flex;
    gap: 1rem;
}

.contact-social .social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.contact-social .social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.4);
}

.contact-social .social-links a i {
    font-size: 1.4rem;
    color: var(--white);
}

/* Contact Form Premium Styling */
.contact-form-box h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-box h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
    border-radius: 2px;
}

.contact-form .form-group {
    margin-bottom: 1.8rem;
}

.contact-form label {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    display: block;
    font-size: 0.95rem;
}

.contact-form .form-control {
    padding: 1rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
    font-size: 1rem;
    background: var(--light-color);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.3rem rgba(30, 58, 138, 0.1);
    background: var(--white);
    transform: translateY(-2px);
}

.contact-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231e3a8a' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 16px 12px;
    padding-right: 3rem;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form button[type="submit"] {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    font-weight: 700;
    color: var(--white);
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form button[type="submit"]:hover::before {
    width: 400px;
    height: 400px;
}

.contact-form button[type="submit"]:hover {
    background: linear-gradient(135deg, #2563eb, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 58, 138, 0.5);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: 60px 0;
    background: var(--white);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.cta-box h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-box .btn-light {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
}

.cta-box .btn-light:hover {
    background: var(--light-color);
    transform: translateY(-2px);
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-section,
    .services-section,
    .subjects-section,
    .why-choose-section,
    .testimonials-section,
    .contact-section {
        padding: 50px 0;
    }
    
    .cta-box {
        padding: 2rem;
        text-align: center;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .experience-badge {
        bottom: 10px;
        right: 10px;
        padding: 1rem;
    }
    
    .experience-badge h3 {
        font-size: 2rem;
    }
}


/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-section {
    padding: 80px 0;
    background: var(--white);
}

.gallery-swiper {
    padding: 20px 0 60px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.gallery-overlay p {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--primary-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.5rem;
    font-weight: 900;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--secondary-color);
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.faq-container {
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    overflow: hidden;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.faq-item.active {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    padding: 1.8rem 2rem;
    background: var(--white);
    position: relative;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.faq-item.active .faq-question::before {
    opacity: 1;
}

.faq-question h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    padding-right: 2rem;
    transition: var(--transition);
}

.faq-item.active .faq-question h5 {
    color: var(--primary-color);
}

.faq-question .faq-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2);
}

.faq-item.active .faq-question .faq-icon {
    background: linear-gradient(135deg, var(--secondary-color), #fb923c);
    transform: rotate(180deg);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.faq-question .faq-icon i {
    font-size: 1.3rem;
    color: var(--white);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 600px;
    border-top: 1px solid var(--border-color);
}

.faq-answer-content {
    padding: 2rem;
    padding-top: 1.5rem;
}

.faq-answer p {
    color: var(--text-dark);
    line-height: 1.9;
    margin: 0;
    font-size: 1rem;
}

.faq-item:hover .faq-question h5 {
    color: var(--primary-color);
}

/* FAQ Number Badge */
.faq-question .faq-number {
    position: absolute;
    top: 1rem;
    right: 5rem;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--white);
    opacity: 0.7;
}

/* ===================================
   ENHANCED BUTTONS
   =================================== */

.btn {
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(30, 58, 138, 0.5);
    color: var(--white);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color), #059669);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    background: linear-gradient(135deg, #059669, var(--success-color));
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-light:hover {
    background: var(--light-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 0.9rem 2.2rem;
    font-size: 1.05rem;
}

/* ===================================
   RESPONSIVE UPDATES
   =================================== */

@media (max-width: 991px) {
    .gallery-item {
        height: 250px;
    }
    
    .faq-container {
        padding: 1.5rem;
    }
    
    .faq-question h5 {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .gallery-section,
    .faq-section {
        padding: 50px 0;
    }
    
    .gallery-item {
        height: 220px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.2rem;
    }
    
    .faq-container {
        padding: 1rem;
    }
    
    .faq-item {
        padding: 1rem 0;
    }
    
    .faq-question h5 {
        font-size: 0.95rem;
    }
}


/* ===================================
   PAYMENT SECTION
   =================================== */

.payment-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 138, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.payment-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 100%;
    border: 2px solid rgba(30, 58, 138, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.payment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.payment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.payment-card-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.payment-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
}

.payment-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.payment-card-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.payment-card-header p {
    color: var(--text-light);
    margin: 0;
}

.payment-details {
    margin-bottom: 2rem;
}

.detail-item {
    padding: 1.2rem;
    background: var(--light-color);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.detail-item:hover {
    background: #e0f2fe;
    transform: translateX(5px);
}

.detail-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
}

.detail-label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.detail-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.detail-value strong {
    color: var(--dark-color);
    font-size: 1.1rem;
    font-weight: 700;
    word-break: break-all;
}

.copy-btn {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    border: none;
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-shrink: 0;
}

.copy-btn:hover {
    background: linear-gradient(135deg, #2563eb, var(--primary-color));
    transform: scale(1.05);
}

.copy-btn.copied {
    background: linear-gradient(135deg, var(--success-color), #059669);
}

.copy-btn.copied::after {
    content: ' Copied!';
}

.payment-note {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.2rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid var(--accent-color);
}

.payment-note i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.payment-note p {
    margin: 0;
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* QR Code Styles */
.qr-card .payment-icon {
    background: linear-gradient(135deg, var(--secondary-color), #fb923c);
}

.qr-code-container {
    text-align: center;
    margin-bottom: 2rem;
}

.qr-code-wrapper {
    position: relative;
    display: inline-block;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-color);
    margin-bottom: 2rem;
}

.qr-code-img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 12px;
}

.qr-overlay {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(30, 58, 138, 0.4);
}

.qr-overlay i {
    font-size: 1.2rem;
}

.qr-overlay p {
    margin: 0;
}

.upi-apps {
    margin-top: 1.5rem;
}

.upi-text {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.upi-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.upi-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-color), #e0f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid var(--border-color);
}

.upi-icon:hover {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.3);
}

.upi-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.upi-icon:hover i {
    color: var(--white);
}

/* Payment Help */
.payment-help {
    background: linear-gradient(135deg, var(--primary-color), #2563eb);
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 60px rgba(30, 58, 138, 0.3);
}

.payment-help h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.payment-help p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.help-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.help-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .payment-card {
        margin-bottom: 2rem;
    }
    
    .qr-code-img {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 767px) {
    .payment-section {
        padding: 50px 0;
    }
    
    .payment-card {
        padding: 2rem;
    }
    
    .qr-code-img {
        width: 200px;
        height: 200px;
    }
    
    .detail-value {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .copy-btn {
        width: 100%;
        justify-content: center;
    }
    
    .help-buttons {
        flex-direction: column;
    }
    
    .help-buttons .btn {
        width: 100%;
    }
}
