/*!-- 
Licensed to Lerion Jake Nwauda Digital Innovations.
Developed by Lerion Jake Nwauda Digital Innovations, a subsidiary of Joevichar Technologies LLC.
Unauthorized duplication or distribution is strictly prohibited.
Copyright © 2024 Lerion Jake Nwauda Digital Innovations & Joevichar Technologies LLC. All rights reserved.
-->
/* General Styling */
body {
    font-family: "Open Sans", sans-serif;
    color: #333;
    background: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Preloader Styles */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #170049;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Add flex-direction to stack elements */
}

.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 8px solid #ff9900;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
}

/* Preloader text */
.preloader-text {
    color: #ffffff;
    margin-top: 20px; /* Spacing from the spinner */
    font-size: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Navbar Styles */
.navbar {
    background: #170049;
    padding: 15px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    height: 60px;
}

/* Mobile Toggle Button (hamburger icon) */
.navbar .mobile-nav-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Sidebar Navigation Drawer for Mobile View */
.sidebar {
    height: 100%; /* Full height */
    width: 0; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1001; /* Sit on top */
    top: 0;
    left: 0; /* Slide in from the left */
    background-color: #170049; /* Sidebar background color */
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: 0.5s; /* Smooth transition */
    padding-top: 60px; /* Spacing from the top */
}

.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 18px;
    color: white;
    display: block;
    transition: 0.3s;
}

.sidebar a:hover {
    background-color: #810081;
    color: #ff9900;
}

.sidebar .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
}

/* Sidebar overlay when active */
.overlay {
    position: fixed;
    display: none; /* Hidden by default */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000; /* Below the sidebar */
    transition: 0.5s;
}

/* Sidebar and Overlay Visible only in Mobile View */
@media (max-width: 768px) {
    /* Display toggle button on mobile view */
    .navbar .mobile-nav-toggle {
        display: block;
    }

    /* Show sidebar in mobile when width > 0 */
    .sidebar.active {
        width: 250px;
    }

    /* Show overlay when active */
    .overlay.active {
        display: block;
    }

    /* Hide the regular desktop menu on mobile */
    .nav-menu {
        display: none;
    }
}

/* Desktop View Styles */
@media (min-width: 769px) {
    .sidebar {
        display: none;
    }

    .overlay {
        display: none;
    }

    /* Regular desktop menu (nav-menu) */
    .nav-menu {
        display: flex; /* Ensure the menu is shown on desktop */
        justify-content: flex-end;
        align-items: center;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .nav-menu li {
        margin: 0 15px;
    }

    .nav-menu li a {
        color: white;
        font-weight: bold;
        text-transform: uppercase;
        padding: 8px 20px;
    }

    .nav-menu li a:hover {
        color: #ff9900;
        text-decoration: none;
    }
}



/* Hero Section */
.hero {
    background-color: #ffffff;
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    color: #170049;
}

.hero h1 span {
    color: #810081;
}

.hero-description {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #333;
}

/* SVG Wave */


/* Footer Styling - Clean and Simple */
footer {
    background: #170049;
    padding: 20px;
    text-align: center;
    color: white;
    border: none; /* Removes any lines */
}


/* Features Section */
.features {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    color: #170049;
    margin-bottom: 40px;
}

.features .icon-box {
    display: flex;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.features .icon-box i {
    font-size: 40px;
    color: #170049;
    margin-right: 20px;
}

.features h3 {
    font-size: 22px;
    color: #170049;
    font-weight: 600;
}

.features p {
    font-size: 16px;
    color: #555;
}

/* Footer */
footer {
    background: #170049;
    padding: 20px;
    text-align: center;
    color: white;
    border: none; /* Removes any lines */
}

footer a {
    text-decoration: none;
    color: inherit; /* Keep the color the same as surrounding text */
}


footer a:hover {
    color: #ff6500;
    text-decoration: none;
}