﻿/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #636363;
    overflow-x: hidden;
}

#btns {
    background-color: #487697;
    border-radius: 10px;
    padding: 5px 20px;
    font-weight: bold;
    color: white !important;
}

    #btns:hover {
        background-color: #59a1d5;
        transition: 0.3s;
    }

.navbar-aqlama {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #eee;
    backdrop-filter: blur(10px);
}

.nav-container {
    height: 70px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif;
    color: #487697;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

    .nav-links a {
        color: #717171 !important;
        text-decoration: none;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: #487697 !important;
            font-weight: bold !important;
        }

.nav-link {
    text-decoration: none;
}

.signup-btn {
    padding: 0.5rem 1rem;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .signup-btn:hover {
        background-color: #444;
    }

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero section styles */
.hero {
    min-height: 100vh;
    background-image: url('https://img.freepik.com/free-photo/top-view-manager-woman-analyzing-financial-paperwork-strategy-typing-expertise-laptop_482257-9055.jpg?t=st=1746214556~exp=1746218156~hmac=700a5f4faa2f67172e3eda467bb8199704bae32c13fd536616db85c9fb27ae7d&w=1380');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to right bottom, rgb(99, 99, 99), rgb(7 72 87 / 12%));
    }

.hero-content {
    position: relative;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: #eee;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    background-color: #487697;
    color: #fff;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .cta-btn:hover {
        background-color: #59a1d5;
    }

/* Stats section styles */
.stats {
    padding: 5rem 1rem;
    background-color: #eee;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-box {
    padding: 2rem;
    background-color: white;
    border-radius: 1rem;
    transition: transform 0.3s;
}

    .stat-box:hover {
        transform: translateY(-5px);
    }

    .stat-box i {
        font-size: 2.5rem;
        color: #487697;
        margin-bottom: 1rem;
    }

    .stat-box h2 {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .stat-box p {
        color: #999;
    }

/* Services section styles */
.services {
    padding: 5rem 1rem;
    background-color: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services > p {
    color: #999;
    margin-bottom: 3rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-box {
    padding: 2rem;
    background-color: #eee;
    border-radius: 1rem;
    transition: transform 0.3s;
}

    .service-box:hover {
        transform: translateY(-5px);
    }

    .service-box i {
        font-size: 2rem;
        color: #487697;
        margin-bottom: 1rem;
    }

    .service-box h3 {
        margin-bottom: 1rem;
    }

    .service-box p {
        color: #999;
    }

/* Footer styles */
.footer {
    background-color: #eee;
    padding: 4rem 1rem 2rem;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h2 {
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: bolder;
    font-size: 1.5rem;
    font-family: "Roboto", sans-serif;
}

.footer-about p {
    color: #999;
}

.footer-links h3 {
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #999;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

    .footer-links a:hover {
        color: black;
    }

.footer-social h3 {
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

    .social-icons a {
        color: #999;
        font-size: 1.5rem;
        transition: color 0.3s;
    }

        .social-icons a:hover {
            color: #487697;
        }

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* Responsive styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

        .nav-links.active {
            display: flex;
        }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-content {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.nav-links li a.active {
    color: #487697 !important;
    font-weight: bold !important;
}
