/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Resume Section */
.resume-section {
    background: #f8f9fa;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
}

.resume-container {
    background: white;
    padding: 30px;
    width: 500px;
    border-radius: 10px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resume-heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 5px;
}

.resume-subtext {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Form Styling */
.resume-form {
    text-align: left;
}

.resume-group {
    margin-bottom: 15px;
}

.resume-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.resume-group input,
.resume-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    resize: none;
    height: 80px;
}

/* File Input */
input[type="file"] {
    padding: 8px;
    background: #f8f8f8;
    border: 1px solid #ccc;
}

/* Row for First & Last Name */
.resume-row {
    display: flex;
    gap: 10px;
}

.resume-row .resume-group {
    flex: 1;
}

/* Submit Button */
.resume-submit-btn {
    width: 100%;
    padding: 10px;
    background-color: #0a3c35;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.resume-submit-btn:hover {
    background-color: #0056b3;
}

/* Responsive */
@media (max-width: 600px) {
    .resume-container {
        width: 100%;
    }

    .resume-row {
        flex-direction: column;
    }
}

#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

#whatsapp-button img {
    width: 40px;
    height: 40px;
}

#whatsapp-button:hover {
    transform: scale(1.1);
}
