/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

/* Navigation Bar with Logo */
nav {
    background-color: #A67F78;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto; 
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.contact-button {
    background-color: #e1dcd9;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #A67F78;
}

/* Hero Section (Home Page) */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #e1dcd9;
    color: #fff;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 3px solid #fff;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.hire-me-button {
    background-color: #fff;
    color: #A67F78;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hire-me-button:hover {
    background-color: #A67F78;
    color: #fff;
}

/* About Me Page */
.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
    padding-right: 40px;
}

.about-text h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
}

.about-image img {
    width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Projects Page */
.projects-container {
    padding: 50px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.projects-container h1 {
    font-size: 32px;
    margin-bottom: 40px;
}

.project-card {
    background-color: #fff;
    padding: 20px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.project-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

.project-card h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.project-card a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.project-card a:hover {
    color: #0056b3;
}

/* Contact Page */
.oga {
    display: flex;
    justify-content: center;
    align-items: center;
}

.email-whatsapp {
    width: 15%;
    display: flex;
    flex-direction: column;
    position: relative;
    left: 280px;
    top: 25px;
}
/* Email Box Styling */
.email-box, .Whatsapp-box{
    border: 2px solid #e1dcd9;
    padding: 20px;
    background-color: #A67F78;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    width: 100%;
    margin-bottom: 20px;
    height: 85px;
    width: 200px;
}

/* Email Icon Styling */
.email-icon {
    width: 20px;
    height: 20px;
}

/* Email Label Styling */
.email-label {
    font-size: 13px;
    font-weight: bold;
    color: white;
    margin: 0;
    padding: 0;
}

.email-address {
    font-size: 13px;
    font-weight: bold;
    color: white;
    margin: 0;
}

.email-link {
    display: inline-block;
    color: white;

}

.contact-container {
    padding: 50px 20px;
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 32px;
    margin-bottom: 20px;
}

form {
    text-align: left;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form textarea {
    resize: vertical;
    min-height: 150px;
}

form button {
    background-color: #A67F78;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

form button:hover {
    background-color: #c1776a;
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo {
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
    }

    nav ul li {
        margin: 5px 0;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-text {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .about-image img {
        width: 100%;
        max-width: 300px;
    }

    .project-card {
        margin: 10px 0;
    }

}
