body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #000;
    color: #E6E6E6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 60px;
    padding: 20px 50px;
    background: #000;
    
}

.logo img {
    max-width: 230px;
}

.welcome-message {
    font-size: 28px;
    font-weight: bold;
    flex-grow: 1;
    text-align: center;
    color: white;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: #00FFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.nav-menu a:hover {
    text-decoration:wavy;
    color: red;
}






/* Home Section */
.home-section {
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding: 15px;
    background-color: #1a1a1a;
    
}

.home-content {
    display: flex;
    width: 100%;
    height:370px;
    justify-content: space-between;
}

.text-container {
    width: 50%;
    padding-right: 20px;
}

.text-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.text-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.text-container .btn {
    padding: 10px 20px;
    background-color: #00FFFF;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.text-container .btn:hover {
    background-color: red;
}

.image-container {
    width: 50%;
    display: flex;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Footer */
footer {
    background: linear-gradient(to top, #001f3f, #000);
    color: aqua;
    font-weight: bold;
    padding: 5px;
    text-align: center;
    margin-top: 20px;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .home-content {
        flex-direction: column;
        align-items: center;
    }

    .text-container,
    .image-container {
        width: 100%;
        text-align: center;
        padding-right: 0;
    }

    .image-container img {
        width: 80%;  /* Adjust image size on mobile */
    }

    .text-container h2 {
        font-size: 2rem;
    }

    .text-container p {
        font-size: 1rem;
    }

    .text-container .btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
}




.home-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    background-color: #0f0909;
}

.home-content {
    display: flex;
    width: 100%;
    max-width: 1000px; /* Adjust as needed */
    gap: 20px;
}

.contact-form {
    flex: 1; /* Takes 50% width */
    background: #000000;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
    text-align: left;
    margin-bottom: 15px;
    color: #fff;
}

.form-group {
    margin-bottom: 5px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #bcee26;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: none;
}

.btn {
    width: 50%;
    padding: 5px;
    background-color: #1bdbe6;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn:hover {
    background-color: #c00;
}

/* Image styling */
.image-container {
    flex: 1; /* Takes 50% width */
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-form,
    .image-container {
        flex: none;
        width: 100%;
    }
}