﻿:root {
   
    --primary-light: #5a58c5;
    --accent-color: #4499D5;
    --accent-light: #6ab1e0;
    --text-color: #333;
    --text-light: #666;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}



/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
    padding: 5px  15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 80vh;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--primary-light) 0%, rgba(69, 153, 213, 0) 70%);
        top: -300px;
        right: -300px;
        opacity: 0.2;
        z-index: 0;
        animation: pulse 8s infinite alternate;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.hero-text {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    position: relative;
    z-index: 1;
}

    .hero-text h1 {
        font-size: 2.8rem;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
    }

        .hero-text h1 span {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

            .hero-text h1 span::after {
                content: '';
                position: absolute;
                width: 100%;
                height: 10px;
                background-color: rgba(69, 153, 213, 0.3);
                bottom: 5px;
                left: 0;
                z-index: -1;
                border-radius: 5px;
            }

    .hero-text p {
        font-size: 1.2rem;
        color: var(--text-light);
        margin-bottom: 20px;
    }



.hero-img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    text-align: center;
    position: relative;
    z-index: 1;
}

    .hero-img img {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: var(--shadow);
        transform: perspective(1000px) rotateY(-10deg);
        transition: var(--transition);
    }

    .hero-img:hover img {
        transform: perspective(1000px) rotateY(0deg);
    }

/* Floating elements */
    .floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-element {
    position: absolute;
    background-color: rgba(69, 153, 213, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}

/* Main Content */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 30px 10px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 10px;
        position: relative;
        display: inline-block;
    }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            bottom: -10px;
            left: 25%;
            border-radius: 3px;
        }

    .section-title p {
        max-width: 800px;
        margin: 15px;
        color: var(--text-light);
        font-size: 1.1rem;
    }

/* Content Blocks */
.content-block {
    margin-bottom: 15px;
    background-color: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .content-block:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

    .content-block h3 {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        display: flex;
        align-items: center;
    }

        .content-block h3 i {
            margin-right: 15px;
            color: var(--accent-color);
        }

    .content-block p,
    .content-block ul {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 20px;
    }

ul.check-list {
    list-style: none;
    padding-left: 0;
}

    ul.check-list li {
        margin-bottom: 15px;
        padding-left: 35px;
        position: relative;
        transition: var(--transition);
    }

        ul.check-list li:hover {
            transform: translateX(5px);
        }

        ul.check-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent-color);
            background-color: rgba(69, 153, 213, 0.1);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.feature-card {
    background-color: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    background-color: rgba(45, 43, 183, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(15deg) scale(1.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 1rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    
    padding: 60px 20px;
    color: white;
    text-align: center;
    border-radius: 15px;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

    .contact-section::before {
        content: '';
        position: absolute;
        width: 200px;
        height: 200px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        top: -50px;
        right: -50px;
    }

    .contact-section::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        background-color: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        bottom: -100px;
        left: -100px;
    }

    .contact-section h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .contact-section p {
        max-width: 700px;
        margin: 0 auto 30px;
        font-size: 1.1rem;
        position: relative;
        z-index: 1;
    }

.contact-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

    .contact-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }


.copyright {
    text-align: center;
    padding-top: 25px;
    margin-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }

    .back-to-top:hover {
        background-color: var(--accent-color);
        transform: translateY(-5px);
    }

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding-top: 100px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
    }

        .nav-links.active {
            left: 0;
        }

        .nav-links li {
            margin: 15px 0;
        }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 80px;
    }

    .hero-text {
        margin-bottom: 40px;
    }

        .hero-text h1 {
            font-size: 2.2rem;
        }

        .hero-text p {
            font-size: 1.1rem;
        }

    .section-title h2 {
        font-size: 2rem;
    }

    .content-block {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .cta-button, .contact-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}
