
    /* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: #333;
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 10px;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #f0a500;
}

/* Welcome Section */
.welcome {
    background: url('background-image.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.welcome h2 {
    font-size: 3em;
    margin-bottom: 20px;
}

.welcome p {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f0a500;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover {
    background-color: #d88c00;
    transform: translateY(-3px);
}

/* About Section */
#about {
    background-color: #fff;
    padding: 50px 20px;
}

#about h2 {
    text-align: center;
    margin-bottom: 30px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.profile-img {
    border-radius: 5%;
    width: 400px;
    height: 400px;
    object-fit: cover;
}

.about-content p {
    flex: 1;
    font-size: 1.2em;
    text-align: center;
}

/* Projects Section */
#projects {
    background-color: #f9f9f9;
    padding: 50px 20px;
}

.project-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.project-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(33.333% - 40px);
    max-width: calc(33.333% - 40px);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-item img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}

.project-item h3 {
    margin: 10px 0;
}

.project-item p {
    font-size: 1em;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer ul li {
    display: inline;
    margin-right: 15px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

footer ul li a:hover {
    color: #f0a500;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .project-item {
        width: calc(50% - 20px);
        max-width: calc(50% - 20px);
    }

    .welcome h2 {
        font-size: 2em;
    }

    .welcome p {
        font-size: 1.2em;
    }

    .cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .profile-img {
        width: 120px;
        height: 120px;
    }

    .project-item {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 2em;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .welcome h2 {
        font-size: 1.5em;
    }

    .welcome p {
        font-size: 1em;
    }

    .cta-button {
        font-size: 0.9em;
        padding: 10px 20px;
    }
}
/* Contact Section */
#contact {
    background-color: #fff;
    padding: 50px 20px;
}

#contact h2 {
    text-align: center;
    margin-bottom: 30px;
}

#contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

button.cta-button {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #f0a500;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

button.cta-button:hover {
    background-color: #d88c00;
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 768px) {
    #contact-form {
        padding: 0 10px;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    button.cta-button {
        font-size: 1em;
        padding: 12px;
    }
}
/* Welcome Section */
.welcome {
    background: url('background-image.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.welcome::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Overlay for better text contrast */
    z-index: 1;
}

.welcome h2 {
    font-size: 3em;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Adds depth to the text */
    z-index: 2;
    position: relative;
}

.welcome p {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    line-height: 1.4;
    z-index: 2;
    position: relative;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #f0a500;
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
    z-index: 2;
    position: relative;
}

.cta-button:hover {
    background-color: #d88c00;
    transform: translateY(-3px);
}
