﻿


@font-face {
    font-family: 'ArbFONTS-LamaSans-SemiBold';
    src: url('../../fonts/ArbFONTS-LamaSans-SemiBold.ttf') format('truetype');
}



body, .header-navbar, body.dark, h6, button {
    font-family: 'ArbFONTS-LamaSans-SemiBold';
    /*font-size:15px;*/
}



    .sidebar-wrapper, body.dark .sidebar-wrapper {
        width: 300px;
    }



    #content, body.dark #content {
        margin-right: 300px;
    }


:root, [data-bs-theme=light] {
    --bs-body-font-size: 4rem;
    --bs-body-font-weight: 300;
}


* {
    border: 0;
    padding: 0;
    margin: 0;
}









:root {
    --primary: #7C3AED;
    --primary-light: #8B5CF6;
    --primary-dark: #6D28D9;
    --secondary: #06D6A0;
    --accent: #FF6B6B;
    --dark: #1E293B;
    --darker: #0F172A;
    --light: #F8FAFC;
    --gray: #64748B;
    --success: #10B981;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-light: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'ArbFONTS-LamaSans-SemiBold';
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

h1 {
    font-size: 3.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.8rem;
    color: var(--darker);
}

h3 {
    font-size: 1.8rem;
    color: var(--dark);
}

p {
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-size: 1.1rem;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--darker);
}

    .logo-text span {
        background: var(--gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

    nav ul li a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 600;
        transition: color 0.3s;
        position: relative;
        padding: 8px 0;
        font-size: 1.05rem;
    }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 3px;
            background: var(--gradient);
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        nav ul li a:hover {
            color: var(--primary);
        }

            nav ul li a:hover::after {
                width: 100%;
            }

.header-actions {
    display: flex;
    gap: 15px;
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* Features Section */
.features {
    padding: 140px 0;
    background-color: white;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card {
    background: white;
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 6px;
        background: var(--gradient);
    }

    .feature-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 20px rgba(124, 58, 237, 0.2);
}

.feature-card h3 {
    margin-bottom: 20px;
}

/* Courses Section */
.courses {
    padding: 140px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
}

.section-header-with-actions {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.course-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

    .course-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

.course-image {
    height: 220px;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3.5rem;
    position: relative;
    overflow: hidden;
}

.course-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.course-content {
    padding: 30px;
}

.course-category {
    display: inline-block;
    background: rgba(124, 58, 237, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.course-info {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--gray);
}

.course-rating {
    color: #FFC107;
    font-weight: 700;
}

/* CTA Section */
.cta {
    padding: 120px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
    }

    .cta::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
        border-radius: 50%;
    }

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    margin-bottom: 25px;
    font-size: 3.2rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 50px;
}

.cta .btn {
    background: white;
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

    .cta .btn::before {
        background: rgba(255, 255, 255, 0.9);
    }

    .cta .btn:hover {
        color: var(--primary-dark);
    }


/* Responsive Design */
@media (max-width: 1100px) {
    .hero-content {
        flex-direction: column;
        gap: 80px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

    .hero-main-visual {
        width: 380px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2.3rem;
    }

    .hero-text h1 {
        font-size: 3.2rem;
    }

    nav ul {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .section-header-with-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .hero-main-visual {
        width: 320px;
        height: 320px;
        font-size: 5rem;
    }
}




