body {
            font-family: 'Arial', sans-serif;
            color: #333;
        }

        .navbar {
            background-color: #563d7c;
            padding: 1rem;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: #fff !important;
        }

        .nav-link {
            color: #fff !important;
            margin-right: 1rem;
            transition: color 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            padding: 10px;
            border: 1px solid transparent;
            border-radius: 5px;
        }

        .nav-link i {
            margin-right: 0.5rem;
            font-size: 1.2rem;
        }

        .nav-link:hover {
            color: #ff5722 !important;
            transform: scale(1.1);
            border: 1px solid #ff5722;
        }

        .navbar-toggler {
            border: none;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        @media (max-width: 992px) {
            .nav-item {
                text-align: center;
                margin-bottom: 0.5rem;
            }

            .navbar-collapse {
                background-color: #563d7c;
                padding: 1rem;
            }
        }

        .hero {
            position: relative;
            background: linear-gradient(45deg, #6a11cb, #2575fc);
            background-size: 400% 400%;
            color: white;
            text-align: center;
            padding: 100px 0;
            margin-bottom: 50px;
            animation: gradientBG 15s ease infinite;
            overflow: hidden;
        }

        @keyframes gradientBG {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .hero .btn {
            background-color: #ff5722;
            border: none;
            padding: 15px 30px;
            font-size: 1.2rem;
        }

        .moving-object {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
        }

        .moving-object1 {
            width: 100px;
            height: 100px;
            top: 50%;
            left: -100px;
            animation: moveObject1 10s linear infinite;
        }

        .moving-object2 {
            width: 150px;
            height: 150px;
            top: 20%;
            right: -150px;
            animation: moveObject2 12s linear infinite;
        }

        .moving-object3 {
            width: 80px;
            height: 80px;
            bottom: 30%;
            left: -80px;
            animation: moveObject3 14s linear infinite;
        }

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

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

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

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

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

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

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

            50% {
                transform: translateX(100vw) translateY(0);
            }

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

        .section-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #563d7c;
        }

        .card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.card-header {
    padding: 15px;
    font-size: 1.25em;
    font-weight: bold;
    color: #333;
    background-color: #ffffff;
    border-bottom: 1px solid #eee;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.card-body {
    padding: 15px;
    font-size: 1em;
    color: #555;
}

.card-footer {
    padding: 10px;
    font-size: 0.9em;
    color: #888;
    background-color: #f7f7f7;
    border-top: 1px solid #eee;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

        .card-title {
            color: #ff5722;
        }

        .card-body {
            padding: 30px;
        }

        .stats-section {
            background: #f5f5f5;
            padding: 50px 0;
        }

        .stats-section h2 {
            margin-bottom: 40px;
            color: #563d7c;
        }

        .stats-section .col-md-4 {
            margin-bottom: 20px;
        }

        .footer {
            background-color: #563d7c;
            color: white;
            padding: 20px 0;
        }

        .features-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }

        .feature-card {
            flex: 0 0 30%;
            max-width: 30%;
            background: linear-gradient(to bottom right, #ff7e5f, #feb47b);
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            text-align: center;
            padding: 20px;
            margin-bottom: 30px;
            transition: background 0.3s ease;
        }

        .feature-card:nth-child(2) {
            background: linear-gradient(to bottom right, #6a11cb, #2575fc);
        }

        .feature-card:nth-child(3) {
            background: linear-gradient(to bottom right, #43cea2, #185a9d);
        }

        .feature-card:nth-child(4) {
            background: linear-gradient(to bottom right, #ff512f, #dd2476);
        }

        .feature-card:nth-child(5) {
            background: linear-gradient(to bottom right, #56ab2f, #a8e063);
        }

        .feature-card:nth-child(6) {
            background: linear-gradient(to bottom right, #f7971e, #ffd200);
        }

        .feature-card:nth-child(7) {
            background: linear-gradient(to bottom right, #24c6dc, #514a9d);
        }

        .feature-card:nth-child(8) {
            background: linear-gradient(to bottom right, #e53935, #e35d5b);
        }

        .feature-card:nth-child(9) {
            background: linear-gradient(to bottom right, #3a1c71, #d76d77);
        }

        .feature-card i {
            font-size: 3rem;
            color: #fff;
            margin-bottom: 15px;
        }

        .feature-card h5 {
            color: #fff;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 1rem;
            color: #fff;
        }

        .feature-card:hover {
            background: linear-gradient(to bottom right, #2c3e50, #4ca1af);
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 1200px) {
            .feature-card {
                flex: 0 0 45%;
                max-width: 45%;
            }
        }

        @media (max-width: 992px) {
            .feature-card {
                flex: 0 0 100%;
                max-width: 100%;
            }
        }

        .stats-section {
            background: #f8f9fa;
            padding: 50px 0;
        }

        .stats-section .col-md-4 {
            margin-bottom: 20px;
        }

        .footer {
            background-color: #343a40;
            color: white;
            padding: 20px 0;
        }

        /* Styles for the "FEATURES" section */
         .features-section {
        
        padding: 80px 0;
    }

    .feature-list {
        padding-left: 30px;
    }

    .feature-list ul {
        margin: 0;
        padding: 0;
    }

    .feature-list ul li {
        font-size: 1.2rem;
        margin-bottom: 15px;
        position: relative;
        padding-left: 25px;
    }

    .feature-list ul li i {
        position: absolute;
        left: 0;
        top: 0;
        font-size: 1.5rem;
    }

    .feature-image img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .feature-image img:hover {
        transform: scale(1.05);
    }

    @media (max-width: 768px) {
        .feature-list {
            text-align: center;
            padding-left: 0;
        }

        .feature-list ul li {
            font-size: 1rem;
            text-align: left;
        }
    }
    
    .faq-section {
            padding: 60px 0;
        }

        .faq-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        @media (max-width: 768px) {
            .faq-image {
                margin-top: 20px;
            }
        }