@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

.flip-heading {
    font-size: 24px;
    font-weight: 700; /* Updated font weight */
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 5px;
    color: blue; /* Updated color */
}

.flip-heading span {
    display: inline-block;
    animation: arrange 1s ease-in-out forwards;
    opacity: 0;
}

@keyframes arrange {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.college-profile {
    opacity: 0; /* Initially hidden */
    transform: perspective(1000px) rotateY(180deg); /* Initial flip position */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Transition effect */
    color: #3300ff; /* Blue color */
}

.college-profile.visible {
    opacity: 1; /* Fade in */
    transform: perspective(1000px) rotateY(0); /* Flip to original position */
}

.idea-lab-card {
    width: 30%; /* Adjusted width for three cards per line */
    height: 150px;
    background-color: #343a40; /* Darker background color */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    opacity: 0; /* Initially hidden */
    transform: perspective(1000px) rotateY(180deg); /* Initial flip position */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out; /* Transition effect */
    color: #007bff; /* Blue color */
}

.idea-lab-card.visible {
    opacity: 1; /* Fade in */
    transform: perspective(1000px) rotateY(0); /* Flip to original position */
}

.idea-lab-card h4, .idea-lab-card p, .idea-lab-card i {
    color: #f8f9fa; /* Light text color for contrast */
}

.idea-lab-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.idea-lab-card h4 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.idea-lab-card p {
    font-size: 12px;
    color: #666;
}

.idea-lab-card i {
    font-size: 30px;
    margin-bottom: 10px;
    color: #333; /* Default icon color */
}

.inter-custom {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Example weight, adjust as needed */
    font-style: normal;
}