
.contact-container {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* margin: 0 auto; */
    /* background-color: white; */
    padding: 20px;
}

.contact-left {
    flex: 1;
}

.contact-image {
    max-width: 100%;
    height: auto;
}

.contact-right {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   padding-right: 30px;
    padding-left: 30px;
    margin-right: 100px;
    margin-top: 100px;
    border: 2px solid black;
     /* Enhanced 3D effect */
     border-radius: 12px; /* Rounded corners for a softer 3D look */
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), 0 4px 8px rgba(0, 0, 0, 0.1); /* Multi-layer shadow for depth */
     transform: translateY(4px); /* Slightly elevate the element */
     transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition for interactive effect */
 }
    


h2 {
    margin-bottom: 20px;
    font-size: 44px;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
    width: 380px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

textarea {
    height: 100px;
    resize: none;
}

.submit-button {
    background-color: #000000;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
}

.submit-button:hover {
    background-color: #45a049;
}
.buttoncon{
    text-align: left;
    color: white;
    background-color: black;
    width: 330px;
    height: 45px;
    font-size: 15px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    position: relative; /* Position relative to allow positioning of the tooltip */
    overflow: hidden; /* Hide anything that goes outside the button */
    transition: transform 0.3s ease; /* Add transition for smooth movement */
}
.buttoncon:hover {
    transform: translateX(50px); /* Adjust the value as needed for the desired amount of movement */
}
.conbuttons{
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}
.fa-solid{
    margin-left: 6px;
    margin-right: 8px;
}
.tooltip {
    position: absolute;
    bottom: 20px; /* Adjust the position as needed */
    left: 10px; /* Adjust the position as needed */
    background-color: white; /* White background for the tooltip */
    color: #333; /* Dark text color for contrast */
    padding: 8px 12px; /* Add some padding */
    border-radius: 6px; /* Rounded corners for a message-like appearance */
    font-size: 14px; /* Slightly larger text */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2); /* Shadow to give a subtle lift effect */
    display: none; /* Initially hide the tooltip */
    opacity: 0; /* Initially hide the tooltip */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth fade-in and slide-up effect */
    transform: translateY(10px); /* Start with tooltip slightly below the button */
}

.buttoncon.show-tooltip .tooltip {
    display: block;
    opacity: 1; /* Show the tooltip */
    transform: translateY(0); /* Slide tooltip up to its final position */
}