/* Introduction Section */
.intro-placement {
    background: transparent;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.intro-container {
    max-width: 1300px;
    margin: 0 auto;
}

h1 {
    font-size: 2.8em;
    color: #fff;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.intro-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.intro-item {
    background: #fff;
    color: #333;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    padding: 30px;
    width: 100%;
    max-width: 420px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
}

.headings {
    margin-bottom: 20px;
    display: flex;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    font-size: 2rem;
    border-radius: 50%;
    background-color: #e74c3c;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.icon i {
    margin: 0;
}

.intro-item h2 {
    font-size: 1.2em;
    color: #e74c3c;
    margin-top: 0;
    font-weight: 700;
}

.intro-item p {
    font-size: 1em;
    color: #333;
}

.intro-item:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
    transform: translateY(-8px);
}

@media (max-width: 768px) {
    .intro-content {
        align-items: center;
    }

    .intro-item {
        background: #fff;
        color: #333;
        border-radius: 12px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
        padding: 30px;
        width: 48%;
        transition: box-shadow 0.3s ease, transform 0.3s ease;
        position: relative;
    }

    .intro-item h2 {
        font-size: 1em;
        color: #e74c3c;
        margin-top: 0;
        font-weight: 700;
    }

    .intro-item p {
        font-size: 0.8em;
        color: #333;
    }

    .icon {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .intro-item {
        width: 100%;
    }
}

.lincoln-universities {
    padding: 40px 10px;
    background-color: transparent;
}

.lincoln-universities {
    max-width: 1300px;
    margin: 0 auto;
}

.lincoln-universities h2 {
    font-size: 2.5em;
    color: #e74c3c;
    margin-bottom: 40px;
    text-align: center;
}

.universities-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px;
    margin: 0;
}

.university-item {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ddd;
    padding: 20px;
    gap: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.university-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.university-logo {
    width: 100px;
    height: auto;
    object-fit: contain;
}

.university-info {
    flex: 1;
}

.university-info h3 {
    font-size: 1.2em;
    color: #333;
    margin: 0 0 10px;
}

.university-info p {
    font-size: 1em;
    color: #666;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .universities-list {
        grid-template-columns: 1fr;
    }

    .university-item {
        padding: 15px;
    }

    .university-logo {
        width: 40px;
    }

    .university-info h3 {
        font-size: 1.2em;
    }

    .university-info p {
        font-size: 0.9em;
    }
}

/* Placement Process Section */
.placement-process {
    padding: 50px 10px;
    background-color: transparent;
}

.placement-process {
    max-width: 1300px;
    margin: 0 auto;
}

.placement-processes {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.placement-process h2 {
    font-size: 2.5em;
    color: #e74c3c;
    margin-bottom: 40px;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 2;
    margin-bottom: 40px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: box-shadow 0.3s ease;
}

.step:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: bold;
}

.step-info h3 {
    font-size: 1.5em;
    color: #333;
    margin: 0;
}

.step-info p {
    font-size: 1em;
    color: #666;
    margin: 10px 0 0;
}

.important-dates {
    background-color: #fff;
    flex: 1;
    border-radius: 8px;
    padding: 20px;
    height: 460px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.important-dates h3 {
    font-size: 2em;
    color: #e74c3c;
    margin-bottom: 20px;
}

.important-dates ul {
    list-style-type: none;
    padding: 0;
}

.important-dates li {
    font-size: 1em;
    color: #333;
    margin-bottom: 15px;
    padding-left: 25px;
    vertical-align: middle;
    position: relative;
}

.important-dates li::before {
    content: "";
    background-image: url("{{ asset('img/star-half.png') }}");
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    vertical-align: middle;
    left: 0;
    top: 3px;
}

.important-dates strong {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .placement-process {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .placement-processes {
        flex-direction: column;
    }

    .process-steps {
        flex: 2;
    }

    .important-dates {
        flex: 1;
    }
}

/* Centers and Facilities Section */
.centers-facilities {
    padding: 50px 10px;
    background-color: transparent;
    max-width: 1300px;
    margin: 0 auto;
}

.centers-facilities h2 {
    font-size: 2.5em;
    color: #e74c3c; /* Red color */
    margin-bottom: 40px;
    text-align: center;
}

.centers-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.center-item {
    background-color: #fff;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    transition: box-shadow 0.3s ease;
}

.center-item:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.center-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.center-item h3 {
    font-size: 1.5em;
    color: #e74c3c; /* Red color */
    margin-top: 15px;
}

.center-item p {
    font-size: 1em;
    color: #666;
}

@media (max-width: 768px) {
    .center-item {
        width: 100%;
    }

    .center-item img {
        width: 100%;
    }
}

/* Centers and Facilities Section */
.centers-facilities {
    padding: 50px 10px;
    background-color: #fff; /* Background color set to white */
    max-width: 1300px;
    margin: auto;
    color: #333; /* Default text color */
}

.centers-facilities h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #e74c3c; /* Red color for the heading */
}

.centers-content {
    gap: 40px;
}

.center-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
    gap: 20px;
}

.center {
    background-color: #fff; /* Background color set to white */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow: hidden;
    border: 2px solid #e74c3c; /* Red border for each center */
}

.center img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    margin-bottom: 20px;
    object-fit: cover;
}

.center h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
    color: #e74c3c; /* Red color for the center heading */
}

.center p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .centers-facilities h2 {
        font-size: 2.2em;
    }

    .center {
        padding: 15px;
    }

    .center h3 {
        font-size: 1.6em;
    }

    .center p {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .centers-facilities h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .center-list {
        grid-template-columns: 1fr;
        /* Stack the centers in one column */
    }

    .center img {
        height: 250px;
        /* Reduce the image height for smaller screens */
    }

    .center h3 {
        font-size: 1.5em;
    }

    .center p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .centers-facilities h2 {
        font-size: 1.8em;
    }

    .center img {
        height: 200px;
        /* Further reduce image height for very small screens */
    }

    .center h3 {
        font-size: 1.3em;
    }

    .center p {
        font-size: 0.95em;
    }
}

/* Career Counseling and Guidance Section */
.career-counseling {
    padding: 40px 10px;
    background-color: #fff; /* Background color set to white */
    max-width: 1300px;
    margin: auto;
    color: #333; /* Default text color */
}

.career-counseling h2 {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #e74c3c; /* Red color for the heading */
}

.counseling-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.counseling-details {
    background-color: #fff; /* Background color set to white */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 2px solid #e74c3c; /* Red border for details section */
}

.counselor-profiles {
    background-color: #fff; /* Background color set to white */
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    border: 2px solid #e74c3c; /* Red border for profiles section */
}

.counselor-profiles h3 {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #e74c3c; /* Red color for profiles heading */
}

.counselor {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.counselor img {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    margin-right: 20px;
    object-fit: cover;
    border: 2px solid #e74c3c; /* Red border for counselor images */
}

.counselor h4 {
    font-size: 1.4em;
    margin-bottom: 5px;
    color: #e74c3c; /* Red color for counselor names */
}

.counselor p {
    font-size: 1.1em;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .career-counseling h2 {
        font-size: 2.2em;
    }

    .counseling-info {
        grid-template-columns: 1fr;
    }

    .counseling-details,
    .counselor-profiles {
        padding: 15px;
    }

    .counselor img {
        width: 70px;
        height: 70px;
    }

    .counselor h4 {
        font-size: 1.3em;
    }

    .counselor p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .career-counseling h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }

    .counseling-details,
    .counselor-profiles {
        padding: 15px;
    }

    .counselor img {
        width: 60px;
        height: 60px;
    }

    .counselor h4 {
        font-size: 1.2em;
    }

    .counselor p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .career-counseling h2 {
        font-size: 1.8em;
    }

    .counselor img {
        width: 50px;
        height: 50px;
    }

    .counselor h4 {
        font-size: 1.1em;
    }

    .counselor p {
        font-size: 0.95em;
    }
}
