* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins;
}

html,
body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.heading {
    padding: 30px 50px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    gap: 10px;
}

.acmlogo {
    width: 100px;
    height: 100px;
    background: url("ac_tr.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.5);
}

.amritalogo {
    height: 100px;
    width: 100px;
}

.amritalogo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

video.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.5);
}

.menu {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.menu a {
    height: 35px;
    width: 35px;
    text-decoration: none;
    color: white;
    border-radius: 50%;
    font-size: 20px;
    padding: 10px;
    text-align: center;
    transition: 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.menu a:hover {
    color: red;
    border-radius: 50%;
    border: 2px solid red;
    transform: scale(1.2);
}

.menu a::after {
    content: attr(data-label);
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateY(-150%);
    color: white;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
}

.menu a:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.menu a i {
    display: inline-block;
    transition: transform 0.6s ease-in-out;
    transform: rotate(360deg);
}

.menu a:hover i {
    transform: rotate(-360deg);
}

.social-icons {
    z-index: 2;
    position: fixed;
    top: 500px;
    left: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 30px;
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.3s, color 0.3s;
    border-radius: 50%;
}

.social-icons a:hover {
    border: 2px solid red;
    color: red;
    transform: scale(1.2);
}

.sub {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
}

.content {
    position: fixed;
    top: 170px;
    left: 125px;
    height: 500px;
    width: 500px;
    z-index: 2;
}

.content h1 {
    color: #0ff;
    font-size: 40px;
    z-index: 2;
    letter-spacing: 0.4px;
    text-shadow: 0 0 10px #0ff;
    transition: 0.5s ease-in-out;
}

.mission {
    padding-top: 30px;
}

.content h1:hover {
    text-decoration: underline;
}

.content-para {
    padding: 20px 0px;
    color: bisque;
    font-weight: 400;
    letter-spacing: 0.7px;
    line-height: 1.6;
    font-size: 15px;
    text-shadow: 0 0 10px bisque;
    text-align: justify;
}

.middle {
    color: bisque;
    text-shadow: 0 0 10px bisque;
    text-align: justify;
}

.gap {
    position: fixed;
    top: 180px;
    left: 660px;
    height: 500px;
    width: 500px;
    z-index: 2;
}

.gap h2 {
    color: #0ff;
    font-size: 40px;
    text-shadow: 0 0 10px #0ff;
    transition: 0.5s ease-in-out;
}

.gap h2:hover {
    text-decoration: underline;
}

.gap p {
    padding: 10px 0px;
    font-size: 15px;
    letter-spacing: 0.7px;
    color: bisque;
    text-shadow: 0 0 10px bisque;
    text-align: justify;
}

.gap2 {
    position: fixed;
    top: 180px;
    left: 1200px;
    height: 500px;
    width: 300px;
    z-index: 2;
}

.gap2 h2 {
    color: #0ff;
    font-size: 30px;
    text-shadow: 0 0 10px #0ff;
}

.gap2 h2:hover {
    text-decoration: underline;
}

.gap2 ul {
    padding: 10px 0px 0px 20px;
    font-size: 15px;
    letter-spacing: 0.7px;
    color: bisque;
    text-shadow: 0 0 10px bisque;
    text-align: justify;
}

.gap2 ul li {
    margin-bottom: 8px;
}


/* ===========================
   TABLET (≤ 1280px)
   =========================== */
@media screen and (max-width: 1280px) {
    .heading {
        padding: 25px 30px;
    }

    .acmlogo {
        width: 80px;
        height: 80px;
        transform: scale(1.2);
    }

    .amritalogo {
        height: 80px;
        width: 80px;
    }

    .menu {
        gap: 20px;
    }

    .content {
        top: 170px;
        left: 80px;
        width: 400px;
    }

    .content h1 {
        font-size: 32px;
    }

    .content-para {
        font-size: 13px;
    }

    .middle {
        font-size: 13px;
    }

    .gap {
        left: 520px;
        width: 400px;
    }

    .gap h2 {
        font-size: 32px;
    }

    .gap p {
        font-size: 13px;
    }

    .gap2 {
        left: 960px;
        width: 280px;
    }

    .gap2 h2 {
        font-size: 24px;
    }

    .gap2 ul {
        font-size: 13px;
    }
}


/* ===========================
   MOBILE (≤ 768px)
   =========================== */
@media screen and (max-width: 768px) {

    html,
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .heading {
        position: relative;
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 15px;
    }

    .acmlogo {
        width: 55px;
        height: 55px;
        transform: scale(1);
    }

    .amritalogo {
        height: 55px;
        width: 55px;
    }

    .menu {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .menu a {
        font-size: 15px;
        height: 30px;
        width: 30px;
        padding: 8px;
    }

    .menu a::after {
        display: none;
    }

    .sub {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .content {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .content h1 {
        font-size: clamp(24px, 6vw, 36px);
        text-align: center;
    }

    .content-para {
        font-size: 14px;
        text-align: center;
    }

    .middle {
        font-size: 14px;
        text-align: center;
        padding: 8px 0;
    }

    .mission {
        padding-top: 15px;
    }

    .gap {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .gap h2 {
        font-size: clamp(22px, 5vw, 32px);
        text-align: center;
    }

    .gap p {
        font-size: 14px;
        text-align: center;
    }

    .gap2 {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        padding: 20px;
    }

    .gap2 h2 {
        font-size: clamp(20px, 5vw, 28px);
        text-align: center;
    }

    .gap2 ul {
        font-size: 14px;
        text-align: left;
    }

    .social-icons {
        position: relative;
        top: auto;
        left: auto;
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        padding: 20px 0 40px 0;
        width: 100%;
    }

    .social-icons a {
        font-size: 22px;
        height: 35px;
        width: 35px;
    }
}


/* ===========================
   SMALL MOBILE (≤ 480px)
   =========================== */
@media screen and (max-width: 480px) {
    .heading {
        padding: 10px;
        gap: 12px;
    }

    .acmlogo {
        width: 45px;
        height: 45px;
    }

    .amritalogo {
        height: 45px;
        width: 45px;
    }

    .menu {
        gap: 8px;
    }

    .menu a {
        font-size: 14px;
        height: 28px;
        width: 28px;
        padding: 6px;
    }

    .content {
        padding: 15px;
    }

    .content h1 {
        font-size: 22px;
    }

    .content-para {
        font-size: 13px;
    }

    .middle {
        font-size: 13px;
    }

    .gap {
        padding: 15px;
    }

    .gap h2 {
        font-size: 22px;
    }

    .gap p {
        font-size: 13px;
    }

    .gap2 {
        padding: 15px;
    }

    .gap2 h2 {
        font-size: 20px;
    }

    .gap2 ul {
        font-size: 13px;
    }
}