* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Questrial", sans-serif;

}

body,
html {
    height: auto;
    width: 100%;
    font-family: "Questrial", sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);

}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: black;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

#loader video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

/* Main content hidden by default */
#main-content {
    display: none;
    padding: 2rem;
    text-align: center;
}

/* Hero section styling */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100vh;
    padding: 2rem;
}

.hero-content {
    animation: fadeIn 2s ease-out;
}

.title {
    font-family: "Rubik Glitch", system-ui;
    font-size: 8rem;
    font-weight: 100;
    letter-spacing: 4px;
    color: white;
    text-shadow:
        5px 0 red,
        -5px 0 blue;
}

.subtitle {
    font-size: 4rem;
    margin-top: 0.5rem;
    color: #00ccff;
}

.organizer,
.college {
    font-size: 2rem;
    margin-top: 1rem;
    color: #ccc;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .organizer,
    .college {
        font-size: 0.9rem;
    }
}

.about-college {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    background-color: #f9f9f9;
    color: #333;
    gap: 2rem;
    justify-content: center;
}

.about-left {
    flex: 1 1 400px;
    max-width: 600px;
}

.about-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #0f2027;
}

.about-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
}

.about-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-top img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.image-bottom {
    display: flex;
    gap: 1rem;
}

.image-bottom img {
    flex: 1;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .about-left h2 {
        font-size: 2rem;
    }

    .about-left p {
        font-size: 1rem;
    }

    .image-bottom {
        flex-direction: column;
        align-items: center;
    }

    .image-bottom img {
        max-width: 90%;
        height: auto;
    }
}

.about-department {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 2rem;
    background-color: #fff;
    color: #333;
    gap: 2rem;
    align-items: flex-start;
}

.dept-left {
    flex: 1 1 35%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dept-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dept-right {
    flex: 1 1 60%;
}

.dept-right h2 {
    font-size: 2.5rem;
    color: #0f2027;
    margin-bottom: 1rem;
}

.dept-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-department {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }

    .dept-left,
    .dept-right {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

.projects-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.project-card {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.2s ease;
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.project-card:hover {
    transform: scale(1.03);
}

/* Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
    padding-top: 60px;
}

.project-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 2rem;
    border-radius: 15px;
    max-width: 800px;
    position: relative;
}

.project-modal-content p,
.project-modal-content ul {
    text-align: justify;
    line-height: 1.7;
}

.modal-image {
    width: 70%;
    margin: 1rem 0;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    color: #aaa;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}


.footer {
    background-color: #1b1b1b;
    color: #fff;
    padding: 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 80px;
    width: auto;
}

.college-name {
    display: flex;
    flex-direction: column;
}

.vivekananda {
    color: orange;
    font-size: 1.8rem;
    margin: 0;
}

.vcet-sub {
    color: white;
    font-size: 0.9rem;
    margin: 0;
}

.footer-middle {
    text-align: center;
    max-width: 300px;
}

.footer-middle h3 {
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icons a {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: orange;
}

.footer-right {
    max-width: 400px;
}

.footer-right a {
    color: orange;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #aaa;
    border-top: 1px solid #333;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-middle,
    .footer-right {
        width: 100%;
    }

    .footer-left{
        flex-direction: column;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-bottom {
        font-size: 0.8rem;
    }
}