/* style.css */

.internship-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0px 20px 20px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.internship-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.248);
    margin-bottom: 20px;
    flex: 1;
    /* Equal width columns */
    min-width: 300px;
    /* Minimum width for smaller screens */
}

.internship-section h3 {
    color: #145763be;
}

.internship-section:first-child {
    margin-right: 40px;
}

.internship-section h2 {
    color: #145763;
    margin-bottom: 20px;
}

.internship-section ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #000000a2;
    padding-top: 8px;
    padding-bottom: 10px;
}

.internship-section li {
    margin-bottom: 10px;
}

.internship-section form input,
.internship-section form select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.internship-section form input:focus,
.internship-section form select:focus {
    outline: none;
    border-color: #3498db;
}

.internship-section input[type=submit] {
    background-color: #145763;
    color: white;
    cursor: pointer;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.internship-section input[type=submit]:hover {
    background-color: #168da2;
}

.internship-section label[for="resume"] {
    display: block;
    margin-bottom: 5px;
}

.internship-section h4 {
    color: #00000081;
    line-height: 30px;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.internship-section {
    animation: fadeIn 1s ease-in-out;
}

.internship-section form input:focus,
.internship-section form select:focus {
    box-shadow: 0 0 8px rgba(52, 152, 219, 0.5);
}