/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

/* Body Styling */
body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a192f; /* Dark Blue background */
    color: #ccd6f6; /* Light Blue text */
    line-height: 1.8;
    overflow-x: hidden;
}

/* Header Styling */
.header {
    width: 100%;
    padding: 20px 0;
    background: #112240;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.navbar {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.navbar a {
    color: #ccd6f6;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.navbar a:hover {
    background-color: #64ffda; /* Light Green on hover */
    color: #0a192f; /* Dark Blue text */
}

/* Home Section Styling */
.home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
}

.container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.content {
    max-width: 600px;
}

.content h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: #64ffda;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.btn {
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #0a192f;
    background: #64ffda;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: #4db6ac; /* Slightly darker shade on hover */
}

.expertise {
    margin-bottom: 30px;
}

.expertise h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #64ffda;
}

.expertise ul {
    list-style: none;
}

.expertise li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.image {
    max-width: 400px;
}

.image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Footer Styling */
.footer {
    text-align: center;
    padding: 20px;
    background: #112240;
    color: #64ffda;
}

.footer p {
    font-size: 1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .content h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .expertise h2 {
        font-size: 2rem;
    }

    .image {
        margin-top: 20px;
    }

    .image img {
        width: 100%;
        max-width: 300px;
    }
}

    