.interests-container {
    padding: 100px;
    background-color: #ffffff;
    text-align: center;
}

.interests-heading {
    font-size: 45px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
    text-align: left;
}

.interest-cards {
    display: flex;
    gap: 120px;
    justify-content: center;
    align-items: center;
}

.interest-card {
    background-color: #ffffff;
     width: 250px;
    padding: 13px 13px 32px 13px; /* bottom padding larger for caption */
    border-radius: 5px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    transform: rotate(-2deg);
    transition: transform 0.2s ease;
}

.interest-card:hover {
    transform: rotate(0deg) scale(1.03);
}


.interest-card img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.interest-title {
    font-family: 'Breathing', cursive;
    font-size: 30px;
    margin-bottom: 8px;
    color: #000;
}

.interest-description {
    font-size: 14px;
    line-height: 1.4;
    color: #1c1c1c;
    font-weight: bold;
}
that was interests.css .uni-container {
    display: flex;
    flex-direction: row;
    font-family: 'Mulish', sans-serif;
    background-color: #ffffff;
    padding: 60px;
    height: auto;
}

.uni-heading {
    font-size: 40px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 40px;
    color: #000;
     margin-bottom: 50px;
}

.uni-image {
    width: 500px;
    max-width: 90%;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
}


.uni-container {
    display: flex;
    height: 100vh;
    overflow: hidden;
    font-family: 'Mulish', sans-serif;
}

.uni-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px; 
    background-color: #ffffff;
}

.uni-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}

.uni-right {
    flex: 1;
    background-color: #ffffff; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: px; 

}

.uni-logo {
    position: absolute;
    top: 50px;
    right: 0px;
    width: 270px;
    transition: filter 0.3s ease;
}

.uni-heading {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 30px;
}

.uni-description {
    font-size: 18px;
    line-height: 1.6;
    color: #1c1c1c;
    max-width: 500px;
    padding-left: 100px;
    margin: 40px 0;
    font-weight: 500;
}

.read-more {
    font-family: 'Breathing', cursive;
    font-size: 23px;
    margin-top: 30px;
    color: #000;
    transition: color 0.3s;
}

.read-more:hover {
    color: #666; 
}