/* Social Media Styling */

.social-media {
    align-items: center;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.social-media:hover {
    transform: translateX(calc(-100% + 70px));
}

.social-media i {
    color: #fff;
    font-size: 25px;
    padding: 10px;
    text-align: center;
    width: 70px;
    text-decoration: none;
}

.social-media a {
    color: #faf4fa;
    padding: 0 10px;
    text-align: center;
    text-decoration: none;
    width: 120px;
    margin-right: 20px;
}

.social-media-container {
    top: 50%;
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: fixed;
    left: calc(100% - 60px);
    transform: translateY(-50%);
    min-width: 100px;
    z-index: 1;
}
i.fa-phone {
    display: inline-block;
    font-size: 24px;
    rotate: 109deg;
}
.social-media.whatsapp {
    background-color: #25d366;
    border-radius: 20px;
    margin: 4px;
}

.social-media.mobile {
    background-color: #4285f4;
    border-radius: 20px;
    margin: 4px;
}

.social-media.gmail {
    background-color: #d93025;
    border-radius: 20px;
    margin: 4px;
}


input,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

button.btn {
    padding: 10px;
    color: rgb(8, 7, 7);
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* Popup Form */
.popup-form {
    display: none;
    /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Transparent background */
    z-index: 9999;
    /* Ensure it's on top */
}

.form-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    color: #333;
    cursor: pointer;
}

.close-btn:hover {
    color: #ff0000;
}

form input,
form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background-color: #0056b3;
}
