/* General Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Layout Styles */
.custom-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px; /* Add padding for mobile */
}

/* Profile Image Styling */
.profile-img {
    width: 100%; /* Ensure the image fits the width of its container */
    height: auto; /* Maintain the aspect ratio */
    object-fit: contain; /* Ensures the image fits properly */
    border-radius: 10px; /* Optional: Add rounded corners for aesthetics */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.col-md-6 img {
   
}


.name {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 0 0 10px;
}

.highlight {
    color: #33dcc9; /* Bootstrap primary blue */
}

.description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.hire-me-btn {
    background-color: #FFFFFF;
    border: none;
    font-size: 1rem;
    padding: 10px 25px;
    border-radius: 25px;
    color: #0c0c0c;
    border: 2px solid #33dcc9;
    transition: background-color 0.3s ease;
}

.hire-me-btn:hover {
    background-color: #0056b3;
}

/* Modal Styles */
.formal-modal {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: bold;
    color: #495057;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 5px rgba(13, 110, 253, 0.5);
}

.submit-btn {
    background-color: #0d6efd;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}



/* General Styles */
body {
    background-color: #f8f9fa;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Layout Styles */
.custom-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px; /* Add padding for mobile */
}

/* Profile Image Styling */
.profile-img {
    width: 100%; /* Ensure the image fits the width of its container */
    height: auto; /* Maintain the aspect ratio */
    object-fit: contain; /* Ensures the image fits properly */
    border-radius: 10px; /* Optional: Add rounded corners for aesthetics */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .custom-layout {
        flex-direction: column; /* Stack the columns vertically */
        text-align: center; /* Center the text and image on small screens */
    }

    .col-md-6 {
        flex: 0 0 100%; /* Make the columns take up the full width */
        max-width: 100%; /* Allow the columns to stretch fully */
    }

    .profile-img {
        max-width: 100%; /* Adjust image size for mobile screens */
        margin: 0 auto; /* Center the image horizontally */
    }

    .description {
        font-size: 1rem; /* Slightly reduce font size for better fit */
    }

    .hire-me-btn {
        margin-top: 10px; /* Add spacing between the button and other elements */
    }
}
