:root {
    --iiser-red: #b30000;
    --dark-red: #8b0000;
    --white: #ffffff;
    --light-bg: #f9f9f9;
    --text-color: #2c3e50;
    --border-color: #e0e0e0;
}
/*================ Science Fest Section =================*/

.fest-section {
    padding: 70px 20px;
    background: #f9f9f9;
    margin: 50px;
}

.fest-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* Left Content */
.fest-content {
    flex: 1;
}

.fest-heading {
    font-size: 2.5rem;
    color: var(--iiser-red);
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fest-subheading {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.fest-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-color);
}

/* Icons */
.fest-links {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.fest-links a {
    width: 40px;
    height: 40px;
    background: var(--iiser-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: 0.3s;
}

.fest-links a:hover {
    background: var(--dark-red);
    transform: translateY(-3px);
}

/* Right Images */
.fest-images {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.fest-images img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    background: #ddd;
}

/*================ Responsive =================*/

@media (max-width: 1024px) {
    .fest-container {
        flex-direction: column;
    }

    .fest-images img {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .fest-heading {
        font-size: 2rem;
    }

    .fest-subheading {
        font-size: 1.4rem;
    }

    .fest-images {
        grid-template-columns: 1fr 1fr;
    }

    .fest-images img {
        height: 140px;
    }
}

@media (max-width: 480px) {
    .fest-images {
        grid-template-columns: 1fr;
    }

    .fest-images img {
        height: 180px;
    }
}