* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('../images/students.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .70);
}

.coming-soon {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 30px;
}

.content {
    max-width: 850px;
    width: 100%;
    text-align: center;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, .20);
    box-shadow: 0 15px 50px rgba(0, 0, 0, .45);
    animation: fade 1.2s ease;
}

.logo {
    width: 130px;
    margin-bottom: 25px;
}

h2 {
    font-size: 28px;
    font-weight: 500;
    color: #fff;
}

h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-top: 5px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #FFD54F;
    margin-bottom: 20px;
}

h3 {
    font-size: 40px;
    color: #ff4081;
    margin-bottom: 15px;
}

p {
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
}

.contact {
    margin-top: 35px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: left;
}

.contact div {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact i {
    font-size: 24px;
    color: #FFD54F;
    width: 30px;
    margin-top: 3px;
}

.contact span {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
}

@keyframes fade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media(max-width:768px) {

    .content {
        padding: 35px 25px;
    }

    .logo {
        width: 95px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 30px;
    }

    p,
    .contact span {
        font-size: 16px;
    }

}