.contact-container{
    width: 80%;
    margin: 50px auto;
    margin-top: 100px;
}
.contact-box{
    background: hsl(0, 3%, 7%); /* Grey with slight transparency */
    display: flex;
}
.contact-left{
    flex-basis: 60%;
    padding: 40px 60px;
}
.contact-left h3{
    font-size: xx-large;
}
.contact-right {
    flex-basis: 40%;
    padding: 40px;
    background: hsl(0, 0%, 8%); /* Grey with slight transparency */
    color: rgb(255, 255, 255);
    font-size: large;
}
.contact-right h3{
    color: #fc7200;
    font-size: xx-large;
}
.contact-right h4{
    color: #fc7200;
    font-size: x-large;
}
.contact-head, .contact-para {
    color: white;
    margin-bottom: 15px;
}

.contact-para{
    margin-bottom: 20px;
    font-size: large;
}
.input-row{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.input-row .input-group{
    flex-basis: 45%;
}
input, textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid rgb(255, 106, 0);/* Orange border */
    outline: none;
    padding-top: 10px;
    padding-bottom: 5px;
    background: transparent; /* No background */
    color: white; /* White text for better visibility */
    font-size: 16px;
}

/* Placeholder text color */
input::placeholder,
textarea::placeholder {
    color: rgba(255, 255, 255, 0.7); /* Light white for placeholders */
}

/* Textarea Specific Styling */
textarea {
    margin-top: 12px;
    margin-bottom: 15px;
    border: 2px solid rgb(255, 106, 0);/* Orange border */
    border-radius: 5px;
    padding: 10px;
    min-height: 100px; /* Make textarea a bit bigger */
    resize: vertical;
}

/* Style labels */
label {
    color: rgb(175, 161, 161);
    font-size: 18px;
    font-weight: bold;
}

/* Adjusting button style */
.submit-btn {
    background-color: rgb(255, 255, 255);
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background-color: rgb(255, 85, 0);
    color: rgb(0, 0, 0);
}

@media (max-width: 750px){
    .contact-container {
        width: 80%;
        margin: 50px auto;
        margin-top: 100px;
    }
    .contact-container h1, .contact-container p{
        text-align: center;
    }
    .contact-box {
        background: hsl(0, 3%, 7%); /* Dark Grey */
        display: flex;
        flex-direction: column; /* Stack sections */
        align-items: center;
        text-align: center;
    }
    
    /* Make "Send Your Request" full width */
    .contact-left {
        width: 100%;
        padding: 40px 60px;
    }
    
    .contact-left h3 {
        font-size: xx-large;
    }
    
    /* Make "Get in Touch" full width */
    .contact-right {
        width: 100%;
        padding: 40px;
        background: hsl(0, 0%, 8%);
        color: white;
        font-size: large;
    }
    
    /* Style section titles */
    .contact-right h3, .contact-right h4 {
        color: #fc7200;
        font-size: xx-large;
    }
    
    /* Input fields stacked */
    .input-row {
        display: flex;
        flex-direction: column; /* Stack fields */
        margin-bottom: 20px;
    }
    
    /* Each input field takes full width */
    .input-group {
        width: 100%;
        margin-bottom: 15px;
    }
    
    input, textarea {
        width: 100%;
        border: none;
        border-bottom: 2px solid rgb(255, 106, 0);
        outline: none;
        padding: 10px;
        background: transparent;
        color: white;
        font-size: 16px;
    }
    
    /* Make textarea bigger */
    textarea {
        border: 2px solid rgb(255, 106, 0);
        border-radius: 5px;
        min-height: 100px;
        resize: vertical;
    }
    
    /* Labels */
    label {
        color: rgb(175, 161, 161);
        font-size: 18px;
        font-weight: bold;
    }
    
    /* Submit button */
    .submit-btn {
        background-color: rgb(255, 255, 255);
        color: black;
        font-weight: bold;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        transition: 0.3s;
        margin-top: 10px;
    }
    
    .submit-btn:hover {
        background-color: rgb(255, 85, 0);
        color: #fc7200;
    }
    
    
    
}