html , body{
    overflow-x: hidden;
}

body {
    background: rgb(168,143,114);
    background: linear-gradient(90deg, rgba(168,143,114,1) 26%, rgba(101,150,158,1) 91%);
    font-family: "IBM Plex Sans";
    background-repeat: no-repeat;
    background-size: 100%;
}

* {
    margin: 0;
    padding: 0;
}

body::-webkit-scrollbar {
    display: none;
}

.proj li{
    list-style: square;
}

/* General styling for the contact section */
.contact-section {
    background: linear-gradient(to right, #6a11cb, #2575fc); /* Gradient background */
    color: white;
    text-align: center;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Contact section heading */
.contact-section h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
    font-weight: bold;
}

/* Contact form styling */
.contact-section form {
    background: white; /* White form background */
    color: #333; /* Dark text for inputs */
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Shadow for the form */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    width: 100%;
}

/* Input fields and textarea */
.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    outline: none;
}

/* Input and textarea focus effect */
.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #6a11cb;
    box-shadow: 0px 0px 5px rgba(106, 17, 203, 0.5);
}

/* Submit button */
.contact-section button {
    background-color: #2575fc;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.contact-section button:hover {
    background-color: #1a57d6;
}

/* Contact details */
.contact-section p {
    margin-top: 20px;
    font-size: 1.2em;
}

.contact-section a {
    color: #fff;
    text-decoration: underline;
}

.contact-section a:hover {
    color: #ddd;
}
