/* COLLEGE */
.college-container {
    display: flex;
    justify-content: center; 
    align-items: flex-start;
    width: 90%; 
    margin: 0 auto; 
    flex-wrap: wrap; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    background-color: #ffff; 
}

/* Utama UTP College */
.utp-college {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem; 
}

/* Bagian Kiri */
.left-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.col-logo1 {
    width: 100%;
    max-width: 300px; 
    height: auto;
    margin-bottom: 1rem;
}

.left-up h1 {
    font-size: 1.8rem;
    color: #262163;
    margin-bottom: 1rem;
}

.left-up h2 {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

/* text-utp */
.text-utp {
    flex: 2;
    padding-left: 2rem;
    text-align: left;
}

.about-utp p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

/*FACULTY*/
.facultytitle{
    background-color: #262163;
    margin: 5vh;
    padding: 2vh;
    border-radius: 20px;
}

.facultytitle h1, h3 {
    color: white;
    text-align: center;
}

/* Faculty-Boxes */
.faculty-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 1rem; 
    margin: 5vh auto;
    width: 90%; 
}

.all-faculty {
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    align-items: center; 
    border: 0.5px solid #ccc;
    border-radius: 20px;
    padding: 2vh;
    text-align: center;
    height: 100%;
    /* box-sizing: border-box; */
}

.all-faculty img {
    max-width: 100%;
    height: auto;
    margin-bottom: 2vh;
}

.all-faculty h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center; 
    color: #262163;
}

.all-faculty p {
    font-size: 0.9rem;
    margin-bottom: auto;
    text-align: center; 
    line-height: 1.5; 
}

.fullutp{
    background-color: #FBAE42; 
    color: #262163;  
    padding: 12px 24px; 
    border-radius: 10px; 
    transition: background-color 0.3s ease; 
    font-weight: bold; 
    display: inline-block;
}

.brochure {
    background-color: #FBAE42; 
    color: #262163;  
    padding: 12px 24px; 
    border-radius: 10px; 
    transition: background-color 0.3s ease; 
    font-weight: bold; 
    margin-top: 2vh;
    display: inline-block; 
}

.brochure:hover, .fullutp:hover {
    cursor: pointer; 
    background-color: #ffffff; 
    color: #262163; 
    font-weight: bold; 
    
}

