/* General Body Style */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #1F1F1F;  /* Dark background */
    color: #E8E8E8;  /* Light grey text for readability */
}

/* Navigation Bar */
nav {
    width: 100%;
    background-color: #2C2C2C;  /* Slightly darker shade */
    display: flex;
    justify-content: space-between;
    padding: 10px 30px; /* Adjusted padding for better alignment */
    position: fixed;
    top: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.logo h2 {
    color: #00ADB5;  /* Accent color for logo */
    font-size: 24px;
    margin: 0;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
}

.nav-links li {
    margin-left: 20px; /* Reduced margin */
}

.nav-links a {
    text-decoration: none;
    color: #E8E8E8;  /* Light grey text */
    font-size: 16px; /* Adjusted font size for better fit */
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #00ADB5;  /* Hover color */
}

/* Container Styling */
.container {
    display: flex;
    align-items: center;
    height: 100vh;
    background-color: #1F1F1F;  /* Dark background */
    padding-top: 80px; /* To adjust for the navbar height */
}

.content {
    color: #E8E8E8;  /* Light grey text */
    padding: 20px;
    max-width: 50%;
}

.content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #E8E8E8;  /* Light grey text */
}

.content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.highlight {
    color: #00ADB5;  /* Highlighted text color */
}

.contact-btn {
    padding: 10px 20px;
    border: 2px solid #00ADB5;  /* Accent color border */
    color: #00ADB5;
    background-color: transparent;
    text-transform: uppercase;
    cursor: pointer;
}

/* Background Image */
.background-image {
    position: absolute;
    top: 0;
    left: 66%;
    width: 34%;
    height: 100%;
    background-image: url('assets/My_Image.jpg');
    background-size: cover;
    background-position: center;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #393E46;
    color: #E8E8E8;
    border-top: 1px solid #E8E8E8;
}

footer img {
    width: 35px;
    height: 35px;
    margin: 0 10px;
}
