@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Caveat:wght@400;700&family=Lobster&family=Monoton&family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Playfair+Display+SC:ital,wght@0,400;0,700;1,700&family=Playfair+Display:ital,wght@0,400;0,700;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&family=Source+Sans+Pro:ital,wght@0,400;0,700;1,700&family=Work+Sans:ital,wght@0,400;0,700;1,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}



 .subjects-section {
            background: #ffffff;
            padding: 6rem 1.5rem;
            width: 100%;
            font-family: 'Nunito', sans-serif;
            line-height: 1.6;
        }

        .subjects-container {
            max-width: 1140px;
            margin: 0 auto;
        }

        .subjects-heading {
            font-family: 'Nunito Sans', sans-serif !important;
            font-size: 2.1rem;
            font-weight: 700;
            color: #1a1a1a;
            text-align: center;
            margin-bottom: 3.5rem;
            letter-spacing: -0.5px;
        }

        .subjects-heading-accent {
            color: #7c3aed;
        }

        .subjects-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
            list-style: none;
        }

        .subject-card {
            background: #ffffff;
            border: 1px solid #e9d5ff;
            border-radius: 16px;
            padding: 2.5rem 1.5rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(124, 58, 237, 0.08);
            transform: translateY(-4px);
        }

        .subject-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #7c3aed, #7c3aed, #4b2194);
        }

        .subject-card:focus {
            outline: 2px solid #7c3aed;
            outline-offset: 3px;
        }

        .subject-icon-wrapper {
            width: 100px;
            height: 100px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: linear-gradient(135deg, #f3e8ff 0%, #ede9fe 100%);
            transition: all 0.3s ease;
            transform: scale(1.05);
        }

        .subject-icon {
            width: 68px;
            height: 68px;
            object-fit: contain;
            filter: contrast(1.1);
        }

        .subject-name {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 1.125rem;
            font-weight: 800;
            color: #292929;
            letter-spacing: 0.2px;
            transition: color 0.3s ease;
        }

        /* Tablet */
        @media (max-width: 1024px) {
            .subjects-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .subjects-heading {
                font-size: 2.25rem;
                margin-bottom: 3rem;
            }

            .subject-card {
                padding: 2rem 1.25rem;
            }
        }

        /* Mobile */
        @media (max-width: 768px) {
            .subjects-section {
                padding: 4rem 1.25rem;
            }

            .subjects-heading {
                font-size: 1rem !important;
                margin-bottom: 2.5rem;
            }

            .subjects-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                max-width: 420px;
                margin: 0 auto;
            }

            .subject-card {
                padding: 2rem 1.5rem;
            }

            .subject-icon-wrapper {
                width: 72px;
                height: 72px;
            }

            .subject-icon {
                width: 44px;
                height: 44px;
            }

            .subject-name {
                font-size: 1.0625rem;
            }
        }

        /* Small Mobile */
        @media (max-width: 480px) {
            .subjects-section {
                padding: 3.5rem 1rem;
            }

            .subjects-heading {
                font-size: 0.75rem;
                margin-bottom: 2rem;
            }

            .subjects-grid {
                gap: 1rem;
            }

            .subject-card {
                padding: 1.75rem 1.25rem;
            }

            .subject-icon-wrapper {
                width: 68px;
                height: 68px;
                margin-bottom: 1.25rem;
            }

            .subject-icon {
                width: 40px;
                height: 40px;
            }

            .subject-name {
                font-size: 1rem;
            }
        }

        /* Accessibility */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
            }
        }

        @media (prefers-contrast: high) {
            .subject-card {
                border: 2px solid #1a1a1a;
            }

            .subject-card:hover {
                border-color: #7c3aed;
            }
        }

        /* Focus visible for keyboard navigation */
        .subject-card:focus-visible {
            outline: 3px solid #7c3aed;
            outline-offset: 4px;
        }





.clai-ecommerce-master-with-ai-section {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    padding: 20px;
    background:  #4b2194;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 0px;
    margin-bottom: 40px;
}

.clai-ecommerce-master-with-ai-section .main-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.clai-ecommerce-master-with-ai-section .content-left {
    flex: 0 0 60%;
    text-align: left;
}

.clai-ecommerce-master-with-ai-section .content-right {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clai-ecommerce-master-with-ai-section .small-headline {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 10px 0;
    opacity: 0.9;
}

.clai-ecommerce-master-with-ai-section .big-headline {
    font-size: 2.7rem;
    font-weight: 800;
    margin: 15px 0;
    line-height: 1.2;
}

.clai-ecommerce-master-with-ai-section .description {
    font-size: 1.1rem;
    margin-top: 25px;
    opacity: 0.95;
    font-weight: 400;
}

.clai-ecommerce-master-with-ai-section .gif-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    font-size: 1.1rem;
    text-align: center;
    padding: 20px;
}

.master-with-ai-gif {
    width: 300px;
    height: 300px;
}

.clai-ecommerce-master-with-ai-section .features-section {
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.clai-ecommerce-master-with-ai-section .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.clai-ecommerce-master-with-ai-section .feature-box {
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.clai-ecommerce-master-with-ai-section .feature-box:hover,
.clai-ecommerce-master-with-ai-section .feature-box:focus-within {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.clai-ecommerce-master-with-ai-section .feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-icon-image {
    height: 45px;
    width: 45px;
}

.clai-ecommerce-master-with-ai-section .feature-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 15px 0;
}

.clai-ecommerce-master-with-ai-section .feature-divider {
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.2));
    margin: 15px auto;
    border-radius: 2px;
}

.clai-ecommerce-master-with-ai-section .feature-description {
    font-size: 0.95rem;
    margin: 15px 0;
    opacity: 0.9;
    line-height: 1.8;
    text-align: center;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .clai-ecommerce-master-with-ai-section .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .clai-ecommerce-master-with-ai-section .big-headline {
        font-size: 2.3rem;
    }

    .clai-ecommerce-master-with-ai-section .main-content {
        gap: 30px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .clai-ecommerce-master-with-ai-section .clai-ecommerce-master-with-ai-section {
        padding: 15px;
        min-height: auto;
    }

    .clai-ecommerce-master-with-ai-section .main-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .clai-ecommerce-master-with-ai-section .content-left {
        flex: none;
        text-align: center;
        order: 1;
    }

    .clai-ecommerce-master-with-ai-section .content-right {
        flex: none;
        order: 2;
    }

    .clai-ecommerce-master-with-ai-section .big-headline {
        font-size: 2rem;
        line-height: 1.3;
    }

    .clai-ecommerce-master-with-ai-section .small-headline {
        font-size: 0.8rem;
    }

    .clai-ecommerce-master-with-ai-section .description {
        font-size: 1rem;
    }

    .clai-ecommerce-master-with-ai-section .gif-placeholder {
        height: 250px;
        max-width: 100%;
    }

    .master-with-ai-gif {
        width: 200px;
        height: 200px;
    }

    .clai-ecommerce-master-with-ai-section .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .clai-ecommerce-master-with-ai-section .features-section {
        margin-top: 40px;
    }

    .clai-ecommerce-master-with-ai-section .feature-box {
        padding: 15px;
    }
}

/* Focus styles for accessibility */
.clai-ecommerce-master-with-ai-section .feature-box:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .clai-ecommerce-master-with-ai-section .clai-ecommerce-master-with-ai-section {
        background: #2d1b69;
    }

    .clai-ecommerce-master-with-ai-section .feature-box {
        border: 2px solid rgba(255, 255, 255, 0.3);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .clai-ecommerce-master-with-ai-section .feature-box {
        transition: none;
    }

    .clai-ecommerce-master-with-ai-section .feature-box:hover {
        transform: none;
    }
}



.sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }


        

        .clai-course-card-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
            font-family: 'Nunito Sans', sans-serif;
            background: #ffffff;
            color: #1a1a2e;
            padding: 20px;
            min-height: 100vh;
        }

        .clai-course-card-header {
            text-align: center;
            margin-bottom: 60px;
            animation: clai-course-card-fadeIn 0.8s ease-out;
        }

        .clai-course-card-header h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 12px;
            background: linear-gradient(135deg, #4c1d95 0%, #5b21b6 50%, #1e3a8a 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .clai-course-card-header p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            color: #64748b;
            font-weight: 300;
        }

        .clai-course-card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .clai-course-card {
            background: #ffffff;
            border: 2px solid #e0e7ff;
            border-radius: 20px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            animation: clai-course-card-slideUp 0.6s ease-out backwards;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.05);
        }

        .clai-course-card.clai-course-card-premium {
            border: 2px solid #e0e7ff;
            background: #ffffff;
        }

        .clai-course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #4b2194, #7c3aed, #7c3aed, #1e40af);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .clai-course-card.clai-course-card-premium::before {
            background: linear-gradient(90deg, #7c3aed, #7c3aed, #7c3aed);
        }

        .clai-course-card:hover {
            transform: translateY(-8px);
            border-color: #c7d2fe;
            background: #ffffff;
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
        }

        .clai-course-card.clai-course-card-premium:hover {
            border-color: #c7d2fe;
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
        }

        .clai-course-card:hover::before {
            transform: scaleX(1);
        }

        .clai-course-card:nth-child(1) {
            animation-delay: 0.1s;
        }

        .clai-course-card:nth-child(2) {
            animation-delay: 0.2s;
        }

        .clai-course-card:nth-child(3) {
            animation-delay: 0.3s;
        }

        .clai-course-card:nth-child(4) {
            animation-delay: 0.4s;
        }

        .clai-course-card:nth-child(5) {
            animation-delay: 0.5s;
        }

        .clai-course-card:nth-child(6) {
            animation-delay: 0.6s;
        }

        .clai-course-card:nth-child(7) {
            animation-delay: 0.7s;
        }

        .clai-course-card-class-number {
            position: absolute;
            top: 30px;
            right: 30px;
            font-size: 3rem;
            font-weight: 800;
            background: linear-gradient(135deg, #e0e7ff 0%, #ddd6fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .clai-course-card-premium-badge {
            position: absolute;
            top: 30px;
            right: 30px;
            padding: 8px 16px;
            background: linear-gradient(135deg, #7c3aed, #7c3aed);
            color: #ffffff;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 12px rgba(168, 85, 247, 0.3);
        }

        .clai-course-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #7c3aed;
            padding-right: 80px;
        }

        .clai-course-card.clai-course-card-premium .clai-course-card-title {
            color: #7c3aed;
        }

        .clai-course-card-subtitle {
            font-size: 1.2rem;
            color: #64748b;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .clai-course-card-pricing-toggle {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .clai-course-card-toggle-btn {
            flex: 1;
            padding: 12px;
            border: 2px solid #e0e7ff;
            background: transparent;
            color: #64748b;
            border-radius: 10px;
            cursor: pointer;
            font-family: 'Nunito Sans', sans-serif;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .clai-course-card-toggle-btn.clai-course-card-active {
            background: linear-gradient(135deg, #4b2194 0%, #7c3aed 100%);
            color: #ffffff;
            border-color: #4b2194;
        }

        .clai-course-card-pricing-content {
            display: none;
        }

        .clai-course-card-pricing-content.clai-course-card-active {
            display: block;
            animation: clai-course-card-fadeIn 0.3s ease;
        }

        .clai-course-card-price-tag {
            margin-bottom: 25px;
        }

        .clai-course-card-price {
            font-size: 3rem;
            font-weight: 800;
            color: #7c3aed;
            line-height: 1;
            margin-bottom: 5px;
        }

        .clai-course-card.clai-course-card-premium .clai-course-card-price {
            color : #7c3aed;
            background-clip: text;
        }

        .clai-course-card-price-label {
            font-size: 0.85rem;
            color: #94a3b8;
            font-weight: 300;
        }

        .clai-course-card-per-student {
            font-size: 0.85rem;
            color: #64748b;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .clai-course-card-terms {
            font-size: 0.75rem;
            color: #94a3b8;
            margin-top: 15px;
            font-weight: 300;
        }

        .clai-course-card-terms a {
            color: #4b2194;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .clai-course-card-terms a:hover {
            color: #4f46e5;
            text-decoration: underline;
        }

        .clai-course-card-savings {
            display: inline-block;
            padding: 6px 12px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: #ffffff;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .clai-course-card-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .clai-course-card-features li {
            padding: 8px 0;
            font-size: 1rem;
            color: #475569;
            font-weight: 400;
            position: relative;
            padding-left: 20px;
        }

        .clai-course-card-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #7c3aed;
            font-weight: 600;
        }

        .clai-course-card.clai-course-card-premium .clai-course-card-features li::before {
            content: '→';
            color: #7c3aed;
        }

        .clai-course-card-enroll-btn {
            display: block;
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #4b2194 0%, #7c3aed 50%, #7c3aed 100%);
            color: #ffffff;
            text-align: center;
            text-decoration: none;
            border-radius: 12px;
            font-weight: 700;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .clai-course-card.clai-course-card-premium .clai-course-card-enroll-btn {
            background: linear-gradient(135deg, #4b2194 0%, #7c3aed 50%, #7c3aed 100%);
        }

        .clai-course-card-enroll-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .clai-course-card-enroll-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .clai-course-card.clai-course-card-premium .clai-course-card-enroll-btn:hover {
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .clai-course-card-enroll-btn:hover::before {
            left: 100%;
        }

        .clai-course-card-single-plan {
            text-align: center;
            margin-bottom: 30px;
        }

        @keyframes clai-course-card-fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes clai-course-card-slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .clai-course-card-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .clai-course-card {
                padding: 30px 20px;
            }

            .clai-course-card-class-number {
                font-size: 2.5rem;
                top: 20px;
                right: 20px;
            }

            .clai-course-card-premium-badge {
                top: 20px;
                right: 20px;
            }

            .clai-course-card-price {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 480px) {
            .clai-course-card-container {
                padding: 20px 10px;
            }

            .clai-course-card-header {
                margin-bottom: 40px;
            }

            .clai-course-card-pricing-toggle {
                flex-direction: column;
                gap: 10px;
            }

            .clai-course-card-class-number {
                font-size: 2rem;
            }
        }
    

    


.classroom-ai-features-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.clai-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.clai-feature-card {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.clai-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.clai-feature-card--big {
    background-color: #72499f;
    color: white;
    display: flex;
    flex-direction: column;
    height: 700px;
    border-radius: 6px;
    padding: 2rem;
}

.clai-feature-card--half {
    background-color: white;
    color: #100b53;
    display: flex;
    flex-direction: column;
    height: 340px;
    border-radius: 6px;
    padding: 2rem;
    position: relative;
}

.clai-feature-content {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-grow: 1;
}

.clai-feature-card--big .clai-feature-content {
    margin-bottom: 2rem;
}

.clai-feature-card--half .clai-feature-content {
    height: 100%;
    justify-content: space-between;
    padding-bottom: 4rem;
}

.clai-feature-text-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.clai-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.clai-feature-card--big .clai-feature-title {
    font-size: 1.75rem;
}

.clai-feature-text {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

.clai-feature-card--big .clai-feature-text {
    font-size: 1rem;
}

.clai-feature-image {
    width: 100%;
    height: calc(80% - 2rem);
    object-fit: cover;
    object-position: center;
    border-radius: 4px;
    margin-top: auto;
}

.clai-feature-icon {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    width: 68px;
    height: 68px;
    object-fit: contain;
    opacity: 0.8;
}

/* Zigzag Layout Positioning */
.clai-feature-card:nth-child(1) {
    grid-column: 1;
    grid-row: 1 / 3;
}

.clai-feature-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.clai-feature-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2 / 4;
}

.clai-feature-card:nth-child(4) {
    grid-column: 1;
    grid-row: 3;
}

.clai-feature-card:nth-child(5) {
    grid-column: 1;
    grid-row: 4 / 6;
}

.clai-feature-card:nth-child(6) {
    grid-column: 2;
    grid-row: 4;
}

.clai-feature-card:nth-child(7) {
    grid-column: 2;
    grid-row: 5 / 7;
}

.clai-feature-card:nth-child(8) {
    grid-column: 1;
    grid-row: 6;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
    .classroom-ai-features-section {
        padding: 2.5rem 1.25rem;
    }

    .clai-features-grid {
        gap: 1.75rem;
    }

    .clai-feature-card--big {
        height: 450px;
        padding: 1.75rem;
    }

    .clai-feature-card--half {
        height: 220px;
        padding: 1.75rem;
    }

    .clai-feature-title {
        font-size: 1.4rem;
    }

    .clai-feature-card--big .clai-feature-title {
        font-size: 1.6rem;
    }

    .clai-feature-text {
        font-size: 0.9rem;
    }

    .clai-feature-card--big .clai-feature-text {
        font-size: 0.95rem;
    }

    .clai-feature-icon {
        width: 64px;
        height: 64px;
        bottom: 1.75rem;
        right: 1.75rem;
    }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
    .classroom-ai-features-section {
        padding: 2rem 1rem;
    }

    .clai-features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    .clai-feature-card {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .clai-feature-card--big {
        height: 400px;
        padding: 1.5rem;
    }

    .clai-feature-card--half {
        height: 200px;
        padding: 1.5rem;
    }

    .clai-feature-card--big .clai-feature-content {
        margin-bottom: 1.5rem;
    }

    .clai-feature-card--half .clai-feature-content {
        padding-bottom: 3.5rem;
    }

    .clai-feature-title {
        font-size: 1.25rem;
    }

    .clai-feature-card--big .clai-feature-title {
        font-size: 1.45rem;
    }

    .clai-feature-text {
        font-size: 0.85rem;
    }

    .clai-feature-card--big .clai-feature-text {
        font-size: 0.9rem;
    }

    .clai-feature-image {
        height: calc(45% - 1.5rem);
        border-radius: 8px;
    }

    .clai-feature-icon {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .classroom-ai-features-section {
        padding: 1.5rem 0.75rem;
    }

    .clai-features-grid {
        gap: 1.25rem;
    }

    .clai-feature-card--big {
        height: 350px;
        padding: 1.25rem;
    }

    .clai-feature-card--half {
        height: 180px;
        padding: 1.25rem;
    }

    .clai-feature-card--big .clai-feature-content {
        margin-bottom: 1.25rem;
    }

    .clai-feature-card--half .clai-feature-content {
        padding-bottom: 3rem;
    }

    .clai-feature-title {
        font-size: 1.15rem;
    }

    .clai-feature-card--big .clai-feature-title {
        font-size: 1.3rem;
    }

    .clai-feature-text {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .clai-feature-card--big .clai-feature-text {
        font-size: 0.85rem;
    }

    .clai-feature-image {
        height: calc(40% - 1.25rem);
        border-radius: 6px;
    }

    .clai-feature-icon {
        width: 52px;
        height: 52px;
        bottom: 1.25rem;
        right: 1.25rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .clai-features-grid {
        gap: 2.5rem;
    }

    .clai-feature-card--big {
        height: 650px;
        padding: 2.5rem;
    }

    .clai-feature-card--half {
        height: 320px;
        padding: 2.5rem;
    }

    .clai-feature-card--big .clai-feature-content {
        margin-bottom: 2.5rem;
    }

    .clai-feature-title {
        font-size: 1.6rem;
    }

    .clai-feature-card--big .clai-feature-title {
        font-size: 1.9rem;
    }

    .clai-feature-text {
        font-size: 1rem;
    }

    .clai-feature-card--big .clai-feature-text {
        font-size: 1.1rem;
    }

    .clai-feature-icon {
        width: 102px;
        height: 102px;
        bottom: 2.5rem;
        right: 2.5rem;
       
    }
}

/* Loading animation */
.clai-feature-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.clai-feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.clai-feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.clai-feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.clai-feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.clai-feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.clai-feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

.clai-feature-card:nth-child(7) {
    animation-delay: 0.7s;
}

.clai-feature-card:nth-child(8) {
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Focus states for accessibility */
.clai-feature-card:focus-within {
    outline: 3px solid #72499f;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .clai-feature-card--big {
        border: 2px solid white;
    }

    .clai-feature-card--half {
        border: 2px solid #100b53;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .clai-feature-card {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .clai-feature-card:hover {
        transform: none;
    }
}




        .clai-fair-photo-sliding-section {
            padding: clamp(40px, 8vw, 80px) 0;
            overflow: hidden;
            position: relative;
            font-family: 'Nunito Sans', sans-serif !important;
        }

        .clai-section-header {
            text-align: center;
            margin-bottom: clamp(32px, 6vw, 56px);
            padding: 0 20px;
        }

        .clai-section-title {
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 700;
            background: linear-gradient(135deg, #341886 0%, #5a3fb8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }

        .clai-section-subtitle {
            font-size: clamp(0.875rem, 1.8vw, 1.05rem);
            color: #6b7280;
            font-weight: 400;
            opacity: 0.85;
        }

        .clai-slider-container {
            position: relative;
            width: 100%;
            mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
            -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
        }

        .clai-slider-row {
            display: flex;
            gap: clamp(12px, 2vw, 18px);
            margin-bottom: clamp(12px, 2vw, 18px);
            will-change: transform;
        }

        .clai-slider-row:first-child {
            animation: slideRightToLeft 60s linear infinite;
        }

        .clai-slider-row:last-child {
            animation: slideLeftToRight 60s linear infinite;
        }

        .clai-slider-row.paused {
            animation-play-state: paused;
        }

        .clai-event-card {
            flex: 0 0 auto;
            width: 360px;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(52, 24, 134, 0.1);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(52, 24, 134, 0.04);
        }

        .clai-event-card:hover {
            transform: translateY(-6px) scale(1.02);
            box-shadow: 0 20px 40px rgba(52, 24, 134, 0.12);
            border-color: rgba(52, 24, 134, 0.2);
        }

        .clai-card-image {
            width: 100%;
            height: 220px;
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .clai-card-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.02) 100%);
        }

        .clai-card-caption {
            padding: 18px 20px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
        }

        .clai-event-location {
            font-weight: 600;
            background: linear-gradient(135deg, #341886 0%, #5a3fb8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 8px;
            font-size: 0.9rem;
            letter-spacing: -0.3px;
        }

        .clai-card-caption p {
            font-size: 0.8125rem;
            line-height: 1.55;
            color: #475569;
            font-weight: 400;
        }

        .clai-card-caption p strong {
            color: #1e293b;
            font-weight: 600;
        }

        @keyframes slideRightToLeft {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes slideLeftToRight {
            0% {
                transform: translateX(-50%);
            }

            100% {
                transform: translateX(0);
            }
        }

        /* Tablet */
        @media (max-width: 768px) {
            .clai-slider-row:first-child {
                animation: slideRightToLeft 40s linear infinite;
            }

            .clai-slider-row:last-child {
                animation: slideLeftToRight 40s linear infinite;
            }

            .clai-event-card {
                width: 280px;
                border-radius: 14px;
            }

            .clai-card-image {
                height: 180px;
            }

            .clai-card-caption {
                padding: 16px 18px;
            }

            .clai-event-location {
                font-size: 0.85rem;
            }

            .clai-card-caption p {
                font-size: 0.775rem;
                line-height: 1.5;
            }
        }

        /* Mobile */
        @media (max-width: 480px) {
            .clai-slider-row:first-child {
                animation: slideRightToLeft 28s linear infinite;
            }

            .clai-slider-row:last-child {
                animation: slideLeftToRight 28s linear infinite;
            }

            .clai-event-card {
                width: 240px;
                border-radius: 12px;
            }

            .clai-card-image {
                height: 150px;
            }

            .clai-card-caption {
                padding: 14px 16px;
            }

            .clai-event-location {
                font-size: 0.8rem;
                margin-bottom: 6px;
            }

            .clai-card-caption p {
                font-size: 0.725rem;
                line-height: 1.48;
            }
        }

        /* Extra Small */
        @media (max-width: 375px) {
            .clai-slider-row:first-child {
                animation: slideRightToLeft 24s linear infinite;
            }

            .clai-slider-row:last-child {
                animation: slideLeftToRight 24s linear infinite;
            }

            .clai-event-card {
                width: 220px;
            }

            .clai-card-image {
                height: 140px;
            }

            .clai-card-caption {
                padding: 12px 14px;
            }

            .clai-event-location {
                font-size: 0.75rem;
            }

            .clai-card-caption p {
                font-size: 0.7rem;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .clai-slider-row {
                animation-duration: 120s;
            }
        }
    

     

        .clai-ecommerce-support {
            background: #ffffff;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        /* Subtle futuristic background elements */
        .clai-ecommerce-support::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(103, 31, 182, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(103, 31, 182, 0.02) 0%, transparent 50%);
            pointer-events: none;
            z-index: 1;
        }

        .clai-ecommerce-support .support-container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            display: flex;
            align-items: center;
            min-height: 100vh;
            position: relative;
            z-index: 2;
        }

        .clai-ecommerce-support .support-image-section {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 60px 40px;
            position: relative;
        }

        .clai-ecommerce-support .support-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 
                0 25px 50px rgba(103, 31, 182, 0.15),
                0 10px 25px rgba(0, 0, 0, 0.1);
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(103, 31, 182, 0.1);
        }

        .clai-ecommerce-support .support-image-wrapper::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #671fb6, #9c4dcc, #671fb6);
            border-radius: 22px;
            z-index: -1;
            opacity: 0.3;
        }

        .clai-ecommerce-support .support-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .clai-ecommerce-support .support-image:hover {
            transform: scale(1.05);
        }

        .clai-ecommerce-support .support-content-section {
            flex: 1;
            padding: 60px 40px 60px 60px;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            position: relative;
        }

        .clai-ecommerce-support .support-content-section::before {
            content: '';
            position: absolute;
            left: 0;
            top: 20%;
            bottom: 20%;
            width: 2px;
            background: linear-gradient(to bottom, transparent, #671fb6, transparent);
        }

        .clai-ecommerce-support .support-title {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #671fb6, #9c4dcc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
        }

        .clai-ecommerce-support .support-quote {
            font-size: 1.3rem;
            font-weight: 300;
            color: #6c757d;
            margin-bottom: 40px;
            font-style: italic;
            position: relative;
            padding-left: 30px;
        }

        .clai-ecommerce-support .support-quote::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: #671fb6;
            opacity: 0.3;
        }

        .clai-ecommerce-support .support-items {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .clai-ecommerce-support .support-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 25px;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(103, 31, 182, 0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .clai-ecommerce-support .support-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, #671fb6, #9c4dcc, #671fb6);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .clai-ecommerce-support .support-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(103, 31, 182, 0.2);
        }

        .clai-ecommerce-support .support-item:hover::before {
            transform: scaleX(1);
        }

        .clai-ecommerce-support .support-icon {
            font-size: 1.8rem;
            color: #671fb6;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(103, 31, 182, 0.1);
            border-radius: 12px;
            flex-shrink: 0;
            transition: all 0.3s ease;
        }

        .clai-ecommerce-support .support-item:hover .clai-ecommerce-support  .support-icon {
            background: #671fb6;
            color: white;
            transform: scale(1.1);
        }

        .clai-ecommerce-support .support-text {
            flex: 1;
        }

        .clai-ecommerce-support .support-text h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .clai-ecommerce-support .support-text p {
            color: #6c757d;
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .clai-ecommerce-support .contact-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 10px;
        }

        .clai-ecommerce-support .contact-link {
            color: #671fb6;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            background: rgba(103, 31, 182, 0.1);
            border-radius: 20px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .clai-ecommerce-support .contact-link:hover {
            background: #671fb6;
            color: white;
            transform: translateY(-2px);
        }

        .clai-ecommerce-support .contact-link:focus {
            outline: 2px solid #671fb6;
            outline-offset: 2px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 1024px) {
            .clai-ecommerce-support .support-container {
                flex-direction: column;
                min-height: auto;
                padding: 40px 20px;
            }

            .clai-ecommerce-support .support-image-section,
            .clai-ecommerce-support .support-content-section {
                flex: none;
                width: 100%;
                padding: 40px 20px;
            }

            .clai-ecommerce-support .support-content-section::before {
                display: none;
            }

            .clai-ecommerce-support .support-image-wrapper {
                max-width: 400px;
                height: 300px;
            }

            .clai-ecommerce-support .support-title {
                font-size: 2.2rem;
                text-align: center;
            }

            .clai-ecommerce-support .support-quote {
                text-align: center;
                font-size: 1.1rem;
            }
        }

        @media (max-width: 768px) {
            .clai-ecommerce-support .clai-ecommerce-support {
                padding: 20px 10px;
            }

            .clai-ecommerce-support .support-container {
                padding: 20px 10px;
            }

            .clai-ecommerce-support .support-image-section,
            .clai-ecommerce-support .support-content-section {
                padding: 30px 15px;
            }

            .clai-ecommerce-support .support-title {
                font-size: 1.8rem;
            }

            .clai-ecommerce-support .support-quote {
                font-size: 1rem;
                padding-left: 25px;
            }

            .clai-ecommerce-support .support-item {
                padding: 20px;
                flex-direction: column;
                text-align: center;
            }

            .clai-ecommerce-support .support-icon {
                margin: 0 auto 15px;
            }

            .clai-ecommerce-support .contact-links {
                justify-content: center;
            }

            .clai-ecommerce-support .contact-link {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .clai-ecommerce-support .support-title {
                font-size: 1.6rem;
            }

            .clai-ecommerce-support .support-image-wrapper {
                height: 250px;
            }

            .clai-ecommerce-support .support-item {
                padding: 15px;
            }

            .clai-ecommerce-support .support-icon {
                font-size: 1.5rem;
                width: 40px;
            }

            .clai-ecommerce-support .contact-links {
                flex-direction: column;
                align-items: center;
            }
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            .clai-ecommerce-support .support-item {
                border: 2px solid #671fb6;
            }

            .clai-ecommerce-support .support-title {
                color: #671fb6;
                -webkit-text-fill-color: #671fb6;
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            .clai-ecommerce-support .support-item,
            .clai-ecommerce-support .support-icon,
            .clai-ecommerce-support .support-image,
            .clai-ecommerce-support .contact-link {
                transition: none;
            }

            .clai-ecommerce-support .support-item:hover {
                transform: none;
            }
        }

        /* Print styles */
        @media print {
            .clai-ecommerce-support .clai-ecommerce-support::before {
                display: none;
            }

            .clai-ecommerce-support .support-container {
                flex-direction: column;
            }

            .clai-ecommerce-support .contact-link {
                color: #671fb6 !important;
                background: none !important;
            }
        }
    




footer {
    /* Smoother gradient blend between purple and black */

    background: radial-gradient(circle, #671fb6 20%, #111214 100%);
    /* Premium glass effect */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    /* Base styling */
    font-family: 'Nunito', sans-serif;
    padding: 40px 0;
    position: relative;
    overflow: hidden;

    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;

}




/* Footer Top Section */
.footer-top {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    margin-left: 0%;
    justify-content: space-around;


}

.contact-info {
    flex: 1;
    max-width: 400px;
}

.Sifocom-logo {
    height: 50px;
    width: 120px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.footer-title {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    font-weight: bold;
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 1rem;
    color: white;
    line-height: 1.7;
    padding: 0px 0;
    text-align: justify;
    margin-top: 12px;
    margin-bottom: 24px;
}

.footer-text-2 {
    font-size: 1rem;
    color: white;
    line-height: 1.7;
    text-align: left;
    text-decoration: none !important;

}

.contact-info-details {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    font-size: 12px;
    padding-right: 6px;
}

.social-links {
    margin-top: 25px;

}

.social-links a {
    font-size: 25px;
    margin-right: 15px;
    color: white;
    transition: color 0.3s ease;

}

.social-links a:hover {
    color: #7f51ffc7 !important;
}

@media (max-width:576px) {
    .contact-info {
        flex: 1;
        max-width: 300px;
        margin: 20px;
    }

    .footer-title {
        color: white;
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-text {
        font-size: 1rem;
        color: white;
        line-height: 1.7;
        padding: 0px 0;
        text-align: center;
    }

    .footer-text-2 {
        font-size: 0.7rem;
        text-align: center;
    }

    .contact-icon {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .social-links {
        display: flex;
        justify-content: center;
    }

    .social-links a {
        font-size: 20px;
        color: white;
        transition: color 0.3s ease;

    }

    .Quick-Links,
    .Blog-Post {
        text-align: center;
        padding: 20px 0px 0px 0px;

    }

    .contact-form {
        flex: 1;
        max-width: 280px;
        margin-top: 20px;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 80px;
    }

}


.Quick-Links,
.Blog-Post {
    padding: 70px 0px 0px 0px;
}


.quick-links,
.blog-posts {
    list-style: none;
    max-width: 250px;
    padding-left: 0%;
}

.quick-links li,
.blog-posts li {
    margin-bottom: 10px;
}

.quick-links a,
.blog-posts a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-family: "Nunito";
    font-size: 0.95rem;
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.quick-links i {
    color: white;
    /* White color for the icons */
    margin-right: 10px;
    /* Space between icon and text */
    font-size: 0.95rem;
    /* Adjust size as needed */
}


.contact-form {
    flex: 1;
    max-width: 280px;
    padding-top: 70px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    font-size: 0.9rem;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: white;

}

.contact-form button {
    padding: 8px 20px;
    background-color: #ffffff;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
    letter-spacing: 1px;
}

.contact-form button:hover {
    background-color: #7f51ffc7;
    color: #ffffff;
}

/* Google Map */
.footer-map {

    width: 100%;
    height: 400px;
    position: relative;
    padding: 30px;
}

.footer-map iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    padding-top: 80px;
}

.footer-bottom-text {
    font-size: 1.2rem;
    color: #ffffff;
    line-height: 1.7;
    padding-bottom: 10px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {

    .footer-text,
    .footer-text-2 {
        font-size: 1rem;
    }

    .contact-form h2 {
        font-size: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
    }

    .footer-title {
        font-size: 1.8rem;
    }

    .footer-bottom-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 567px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        padding: 10px 0;
        text-align: center;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-text,
    .footer-text-2 {
        font-size: 0.9rem;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 12px;
    }

    .footer-bottom-text {
        font-size: 1.2rem;
    }
}

.footer-animation {
    margin: 0;
    padding: 60px 0px 270px 0px;
    position: relative;
    overflow-x: hidden;
    margin: 0;
}

.footer-animation .footer-animation-bg-img {
    position: absolute;
    bottom: 0;
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
}

.footer-animation .footer-animation-bg-img .footer-animation-car-image {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
    width: 330px;
    height: 105px;
    background-size: 100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
}

.footer-animation .footer-animation-bg-img .footer-animation-cycle-image {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
    background-size: 100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
}

@-moz-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@-webkit-keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

@keyframes myfirst {
    0% {
        left: -25%;
    }

    100% {
        left: 100%;
    }
}

/* ========================================
   Premium Header Section Styles
   All classes prefixed with: clai-header-section-
   ======================================== */

/* Google Fonts Import for Header Section */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&family=Outfit:wght@400;700;900&display=swap');

/* Floating Modern Navbar */
.clai-header-section-premium-navbar {
    position: fixed;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: calc(100% - 100px);
    max-width: 1400px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clai-header-section-premium-navbar-inner {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(30px);
    border-radius: 20px;
    padding: 18px 40px;
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.08), 0 0 0 1px rgba(99, 102, 241, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.clai-header-section-premium-navbar.scrolled .clai-header-section-premium-navbar-inner {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 12px 50px rgba(99, 102, 241, 0.12), 0 0 0 1px rgba(99, 102, 241, 0.15);
    padding: 14px 36px;
}

.clai-header-section-navbar-logo-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.clai-header-section-navbar-logo-left a {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.clai-header-section-navbar-logo-left img {
    height: 48px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

.clai-header-section-premium-navbar.scrolled .clai-header-section-navbar-logo-left img {
    height: 42px;
}

.clai-header-section-navbar-menu {
    display: flex;
    list-style: none;
    gap: 45px;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.clai-header-section-navbar-menu li a {
    text-decoration: none;
    color: #475569;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.clai-header-section-navbar-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #4b2194, #7c3aed);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.clai-header-section-navbar-menu li a:hover {
    color: #4b2194;
}

.clai-header-section-navbar-menu li a:hover::after {
    width: 100%;
}

.clai-header-section-navbar-toggle {
    display: none;
    background: linear-gradient(135deg, #4b2194, #7c3aed);
    border: none;
    color: white;
    font-size: 1.4rem;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.clai-header-section-navbar-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

/* Mobile Sidebar Menu */
.clai-header-section-mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.clai-header-section-mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.clai-header-section-mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(40px);
    z-index: 1000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 50px rgba(99, 102, 241, 0.15);
    overflow-y: auto;
}

.clai-header-section-mobile-sidebar.active {
    right: 0;
}

.clai-header-section-sidebar-header {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.clai-header-section-sidebar-header a {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
}

.clai-header-section-sidebar-close {
    background: linear-gradient(135deg, #4b2194, #7c3aed);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.clai-header-section-sidebar-close:hover {
    transform: rotate(90deg) scale(1.05);
}

.clai-header-section-sidebar-menu {
    list-style: none;
    padding: 30px 0;
}

.clai-header-section-sidebar-menu li {
    margin: 0;
}

.clai-header-section-sidebar-menu li a {
    display: block;
    padding: 14px 30px;
    color: #475569;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.clai-header-section-sidebar-menu li a:hover {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.08), transparent);
    color: #4b2194;
    border-left-color: #4b2194;
}

/* Premium Hero Section */
.clai-header-section-premium-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 160px 30px 90px;
}

/* Enhanced Subtle Background Textures */
.clai-header-section-hero-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    pointer-events: none;
    overflow: hidden;
}

.clai-header-section-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.06) 1px, transparent 5px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.06) 1px, transparent 5px);
    background-size: 60px 60px;
    animation: claiHeaderGridMove 40s linear infinite;
}

@keyframes claiHeaderGridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(60px, 60px);
    }
}

.clai-header-section-geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.clai-header-section-geo-shape {
    position: absolute;
    opacity: 0.25;
}

.clai-header-section-geo-circle-1 {
    width: 200px;
    height: 200px;
    border: 2px solid #4b2194;
    border-radius: 50%;
    top: 15%;
    right: 10%;
    animation: claiHeaderFloat 25s ease-in-out infinite;
}

.clai-header-section-geo-circle-2 {
    width: 150px;
    height: 150px;
    border: 2px solid #7c3aed;
    border-radius: 50%;
    bottom: 20%;
    left: 8%;
    animation: claiHeaderFloat 20s ease-in-out infinite reverse;
}

.clai-header-section-geo-square-1 {
    width: 120px;
    height: 120px;
    border: 2px solid #7c3aed;
    top: 60%;
    right: 20%;
    transform: rotate(45deg);
    animation: claiHeaderRotate 30s linear infinite;
}

.clai-header-section-geo-square-2 {
    width: 80px;
    height: 80px;
    border: 2px solid #4b2194;
    top: 25%;
    left: 15%;
    transform: rotate(15deg);
    animation: claiHeaderRotate 25s linear infinite reverse;
}

.clai-header-section-geo-triangle {
    width: 0;
    height: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-bottom: 100px solid rgba(139, 92, 246, 0.045);
    bottom: 30%;
    right: 40%;
    animation: claiHeaderFloat 22s ease-in-out infinite;
}

.clai-header-section-dots-pattern {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 40%;
    left: 5%;
    background-image: radial-gradient(circle, rgba(99, 102, 241, 0.07) 2px, transparent 2px);
    background-size: 30px 30px;
    animation: claiHeaderFloat 18s ease-in-out infinite;
}

@keyframes claiHeaderFloat {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes claiHeaderRotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.clai-header-section-floating-blobs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.clai-header-section-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.035;
    filter: blur(60px);
}

.clai-header-section-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #4b2194, transparent);
    top: -200px;
    right: -200px;
    animation: claiHeaderBlobFloat1 20s ease-in-out infinite;
}

.clai-header-section-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #7c3aed, transparent);
    bottom: -150px;
    left: -150px;
    animation: claiHeaderBlobFloat2 25s ease-in-out infinite;
}

.clai-header-section-blob-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #7c3aed, transparent);
    top: 40%;
    left: 45%;
    animation: claiHeaderBlobFloat3 18s ease-in-out infinite;
}

@keyframes claiHeaderBlobFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-80px, 80px) scale(1.15);
    }
}

@keyframes claiHeaderBlobFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(80px, -60px) scale(1.2);
    }
}

@keyframes claiHeaderBlobFloat3 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(40px, 40px) rotate(180deg);
    }
}

.clai-header-section-hero-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.clai-header-section-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 14px 32px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
    border: 1.5px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    margin-bottom: 40px;
    animation: claiHeaderSlideDown 0.8s ease-out;
    transition: all 0.3s ease;
}

.clai-header-section-hero-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.clai-header-section-badge-logo {
    height: 42px;
    width: auto;
}

.clai-header-section-badge-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.clai-header-section-badge-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4b2194, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.3px;
}

.clai-header-section-hero-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3rem, 10vw, 7.8rem);
    font-weight: 900;
    line-height: 1.08;
    color: #0f172a;
    margin-bottom: 36px;
    letter-spacing: -4px;
    animation: claiHeaderSlideDown 0.8s ease-out 0.2s backwards;
}

.clai-header-section-headline-gradient {
    background: linear-gradient(135deg, #4b2194 0%, #7c3aed 50%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.clai-header-section-hero-description {
    font-size: clamp(1.08rem, 2.3vw, 1.4rem);
    line-height: 1.75;
    color: #64748b;
    max-width: 850px;
    margin: 0 auto 52px;
    font-weight: 500;
    animation: claiHeaderSlideDown 0.8s ease-out 0.4s backwards;
}

.clai-header-section-cta-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 70px;
    animation: claiHeaderSlideDown 0.8s ease-out 0.6s backwards;
}

.clai-header-section-cta-btn {
    padding: 24px 56px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    letter-spacing: 0.3px;
}

.clai-header-section-cta-primary {
    background: linear-gradient(135deg, #4b2194, #7c3aed);
    color: #ffffff;
    box-shadow: 0 16px 48px rgba(99, 102, 241, 0.4);
    border: none;
}

.clai-header-section-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.clai-header-section-cta-primary:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 24px 65px rgba(99, 102, 241, 0.5);
}

.clai-header-section-cta-primary:hover::before {
    left: 100%;
}

.clai-header-section-cta-arrow {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.clai-header-section-cta-primary:hover .clai-header-section-cta-arrow {
    transform: translateX(5px);
}

.clai-header-section-cta-secondary {
    background: #ffffff;
    color: #4b2194;
    border: 3px solid #4b2194;
    box-shadow: 0 10px 35px rgba(99, 102, 241, 0.15);
}

.clai-header-section-cta-secondary:hover {
    background: linear-gradient(135deg, #4b2194, #7c3aed);
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 20px 55px rgba(99, 102, 241, 0.4);
}

.clai-header-section-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    max-width: 1000px;
    margin: 0 auto;
    animation: claiHeaderSlideDown 0.8s ease-out 0.8s backwards;
}

.clai-header-section-stat-card {
    text-align: center;
    padding: 38px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 255, 0.9));
    border-radius: 24px;
    border: 1.5px solid rgba(99, 102, 241, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.clai-header-section-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #4b2194, #7c3aed, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.clai-header-section-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.35);
}

.clai-header-section-stat-card:hover::before {
    transform: scaleX(1);
}

.clai-header-section-stat-number {
    font-size: 3.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #4b2194, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}

.clai-header-section-stat-label {
    font-size: 1.05rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

@keyframes claiHeaderSlideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .clai-header-section-navbar-menu {
        gap: 32px;
    }
}

@media (max-width: 968px) {
    .clai-header-section-premium-navbar {
        width: calc(100% - 50px);
        top: 20px;
    }

    .clai-header-section-premium-navbar-inner {
        padding: 16px 24px;
    }

    .clai-header-section-navbar-menu {
        display: none;
    }

    .clai-header-section-navbar-toggle {
        display: flex;
    }

    .clai-header-section-mobile-menu-overlay {
        display: block;
    }

    .clai-header-section-premium-hero {
        padding: 140px 25px 70px;
    }

    .clai-header-section-hero-headline {
        letter-spacing: -2px;
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .clai-header-section-premium-navbar {
        width: calc(100% - 30px);
        top: 15px;
    }

    .clai-header-section-premium-navbar-inner {
        padding: 14px 20px;
    }

    .clai-header-section-navbar-logo-left img {
        height: 40px;
    }

    .clai-header-section-premium-navbar.scrolled .clai-header-section-navbar-logo-left img {
        height: 36px;
    }

    .clai-header-section-navbar-toggle {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .clai-header-section-premium-hero {
        padding: 130px 20px 60px;
    }

    .clai-header-section-hero-badge {
        padding: 12px 26px;
        margin-bottom: 32px;
    }

    .clai-header-section-badge-text {
        font-size: 1.2rem;
    }

    .clai-header-section-hero-headline {
        margin-bottom: 28px;
        letter-spacing: -1px;
    }

    .clai-header-section-hero-description {
        margin-bottom: 44px;
    }

    .clai-header-section-cta-container {
        flex-direction: column;
        gap: 18px;
        margin-bottom: 60px;
    }

    .clai-header-section-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 20px 44px;
        font-size: 1.05rem;
    }

    .clai-header-section-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .clai-header-section-stat-card {
        padding: 32px 20px;
    }

    .clai-header-section-stat-number {
        font-size: 3.2rem;
    }

    .clai-header-section-stat-label {
        font-size: 0.95rem;
    }
}

/* End of Premium Header Section Styles */
/* ========================================
   GLOBAL FONT SIZE STANDARDIZATION
   Ensuring consistent typography across all sections
   ======================================== */

/* Section Titles - All h2 elements */
section h2,
.subjects-heading,
.clai-section-title,
.support-title,
.clai-feature-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    font-family: 'Nunito Sans', sans-serif !important;
}

/* Subsection Titles - All h3 elements */
section h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem) !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    font-family: 'Nunito Sans', sans-serif !important;
}

/* Paragraph Text - All p elements in sections */
section p,
.clai-ecommerce-master-with-ai-section p,
.classroom-ai-features-section p,
.clai-ecommerce-support p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    font-family: 'Nunito Sans', sans-serif !important;
}

/* List Items - All li elements */
section li,
ul li,
ol li {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    font-family: 'Nunito Sans', sans-serif !important;
}

/* Mobile Responsive - Tablets */
@media (max-width: 768px) {
    section h2,
    .subjects-heading,
    .clai-section-title,
    .support-title,
    .clai-feature-title {
        font-size: clamp(1.5rem, 5vw, 2rem) !important;
    }
    
    section h3 {
        font-size: clamp(1.125rem, 4vw, 1.25rem) !important;
    }
    
    section p,
    section li {
        font-size: 0.9375rem !important;
    }
}

/* Mobile Responsive - Phones */
@media (max-width: 480px) {
    section h2,
    .subjects-heading,
    .clai-section-title,
    .support-title,
    .clai-feature-title {
        font-size: clamp(1.25rem, 6vw, 1.75rem) !important;
    }
    
    section h3 {
        font-size: 1.125rem !important;
    }
    
    section p,
    section li {
        font-size: 0.875rem !important;
    }
}
/* ========================================
   FEATURES SECTION V2 - PREMIUM & MODERN
   Brand Colors: #4b2194, #7c3aed
   ======================================== */

.clai-features-section-v2 {
    padding: 120px 20px;
    background: linear-gradient(180deg, #faf5ff 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.clai-features-section-v2::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.clai-features-section-v2::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(75, 33, 148, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-30px, -30px) scale(1.05); }
    50% { transform: translate(0, -50px) scale(1); }
    75% { transform: translate(30px, -30px) scale(1.05); }
}

.clai-features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Section Header */
.clai-features-header {
    text-align: center;
    margin-bottom: 90px;
}

.clai-features-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: 'Nunito Sans', sans-serif;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.clai-features-accent {
    background: linear-gradient(135deg, #4b2194 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clai-features-subtitle {
    font-size: 1.25rem;
    color: rgba(15, 23, 42, 0.65);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Grid */
.clai-features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Feature Card */
.clai-feature-card-v2 {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 48px 36px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 8px 32px rgba(75, 33, 148, 0.08);
    overflow: hidden;
}

.clai-feature-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4b2194 0%, #7c3aed 50%, #4b2194 100%);
    background-size: 200% 100%;
    animation: shimmer 3s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.clai-feature-card-v2:hover::before {
    opacity: 1;
}

.clai-feature-card-v2::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, #4b2194, #7c3aed);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.clai-feature-card-v2:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 60px rgba(75, 33, 148, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
}

.clai-feature-card-v2:hover::after {
    opacity: 1;
}

/* Highlight Cards (with CloudFront images) */
.clai-feature-card-highlight {
    background: linear-gradient(135deg, rgba(250, 245, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    border: 2px solid rgba(124, 58, 237, 0.25);
    box-shadow: 0 12px 40px rgba(75, 33, 148, 0.15);
}

.clai-feature-card-highlight:hover {
    background: linear-gradient(135deg, rgba(250, 245, 255, 1) 0%, rgba(255, 255, 255, 0.95) 100%);
}

/* Icon Wrapper */
.clai-feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4b2194 0%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(75, 33, 148, 0.25);
    position: relative;
}

.clai-feature-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #4b2194, #7c3aed);
    border-radius: 18px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
}

.clai-feature-card-v2:hover .clai-feature-icon-wrapper {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 12px 32px rgba(75, 33, 148, 0.4);
}

.clai-feature-card-v2:hover .clai-feature-icon-wrapper::before {
    opacity: 0.6;
}

.clai-feature-icon-wrapper i {
    font-size: 36px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

/* CloudFront Icon Images */
.clai-feature-cloudfront-icon {
    background: #ffffff;
    border: 3px solid #4b2194;
    padding: 12px;
    box-shadow: 0 8px 24px rgba(75, 33, 148, 0.2);
}

.clai-feature-cloudfront-icon::before {
    background: linear-gradient(135deg, rgba(75, 33, 148, 0.1), rgba(124, 58, 237, 0.1));
}

.clai-feature-cloudfront-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.clai-feature-card-v2:hover .clai-feature-cloudfront-icon {
    border-color: #7c3aed;
    box-shadow: 0 12px 32px rgba(75, 33, 148, 0.35);
}

/* Card Title */
.clai-feature-card-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    font-family: 'Nunito Sans', sans-serif;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.clai-feature-card-highlight .clai-feature-card-title {
    background: linear-gradient(135deg, #4b2194 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Card Text */
.clai-feature-card-text {
    font-size: 1rem;
    color: rgba(15, 23, 42, 0.75);
    line-height: 1.8;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .clai-features-section-v2 {
        padding: 100px 20px;
    }

    .clai-features-section-v2::before,
    .clai-features-section-v2::after {
        width: 500px;
        height: 500px;
    }

    .clai-features-header {
        margin-bottom: 70px;
    }

    .clai-features-grid-v2 {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
    }

    .clai-feature-card-v2 {
        padding: 40px 28px;
        border-radius: 20px;
    }

    .clai-feature-icon-wrapper {
        width: 70px;
        height: 70px;
        border-radius: 14px;
    }

    .clai-feature-icon-wrapper i {
        font-size: 32px;
    }

    .clai-feature-card-title {
        font-size: 1.2rem;
    }

    .clai-feature-card-text {
        font-size: 0.95rem;
    }

    .clai-feature-cloudfront-icon {
        padding: 10px;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .clai-features-section-v2 {
        padding: 80px 16px;
    }

    .clai-features-section-v2::before,
    .clai-features-section-v2::after {
        width: 350px;
        height: 350px;
    }

    .clai-features-header {
        margin-bottom: 56px;
    }

    .clai-features-subtitle {
        font-size: 1.1rem;
    }

    .clai-features-grid-v2 {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .clai-feature-card-v2 {
        padding: 36px 24px;
        border-radius: 18px;
    }

    .clai-feature-icon-wrapper {
        width: 64px;
        height: 64px;
        border-radius: 12px;
    }

    .clai-feature-icon-wrapper i {
        font-size: 28px;
    }

    .clai-feature-card-title {
        font-size: 1.15rem;
    }

    .clai-feature-card-text {
        font-size: 0.9375rem;
    }

    .clai-feature-cloudfront-icon {
        padding: 8px;
        border-width: 2px;
    }
}

/* ========================================
   TYPOGRAPHY & COLOR FIXES
   ======================================== */

/* Hero Section - Increase paragraph size for desktop */
.clai-header-section-hero-description {
    font-size: 1.25rem !important;
    line-height: 1.8 !important;
}

@media (max-width: 768px) {
    .clai-header-section-hero-description {
        font-size: 1.125rem !important;
    }
}

@media (max-width: 480px) {
    .clai-header-section-hero-description {
        font-size: 1rem !important;
    }
}

/* Scholarship Section - Lighter text color for numbered items */
.clai-scholarship-item h3 {
    color: rgba(15, 23, 42, 0.75) !important;
}

/* ========================================
   SUBJECTS SECTION REDESIGN
   Clean, minimalist with Font Awesome icons
   ======================================== */

.subjects-section {
    padding: 100px 20px;
    background: #ffffff;
}

.subjects-container {
    max-width: 1200px;
    margin: 0 auto;
}

.subjects-heading {
    text-align: center;
    margin-bottom: 60px;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.subject-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    padding: 48px 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.subject-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #4b2194 0%, #7c3aed 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.subject-card:hover {
    border-color: #7c3aed;
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(75, 33, 148, 0.15);
}

.subject-card:hover::before {
    transform: scaleX(1);
}

.subject-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #4b2194 0%, #7c3aed 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.subject-card:hover .subject-icon-wrapper {
    transform: scale(1.1) rotate(-5deg);
}

.subject-icon-wrapper i {
    font-size: 40px;
    color: #ffffff;
}

.subject-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Nunito Sans', sans-serif;
    margin: 0;
}

.subject-card:hover .subject-name {
    color: #4b2194;
}

/* Responsive - Tablet */
@media (max-width: 768px) {
    .subjects-section {
        padding: 80px 20px;
    }

    .subjects-heading {
        margin-bottom: 48px;
    }

    .subjects-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 24px;
    }

    .subject-card {
        padding: 40px 24px;
    }

    .subject-icon-wrapper {
        width: 64px;
        height: 64px;
    }

    .subject-icon-wrapper i {
        font-size: 32px;
    }

    .subject-name {
        font-size: 1.125rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .subjects-section {
        padding: 60px 16px;
    }

    .subjects-heading {
        margin-bottom: 40px;
    }

    .subjects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .subject-card {
        padding: 32px 16px;
    }

    .subject-icon-wrapper {
        width: 56px;
        height: 56px;
    }

    .subject-icon-wrapper i {
        font-size: 28px;
    }

    .subject-name {
        font-size: 1rem;
    }
}
