*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


body{
    background:
    linear-gradient(
        rgba(255,255,255,0.75),
        rgba(255,255,255,0.75)
    ),
    url("itp.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    padding-top: 30px;
    padding-bottom: 30px;
}


.navbar{
    width: 95%;
    height: 65px;
    background: #68a8f1;
    margin: 8px auto;
    border-radius: 0 0 12px 12px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 25px;
}

.logo-box{
    width: 80px;
    height: 45px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
}

.logo-box img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.brand{
    font-size: 32px;
    font-weight: 500;
}

.brand span{
    color: #3d3dff;
}

.menu{
    display: flex;
    list-style: none;
    gap: 50px;
}

.menu a{
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.menu .active{
    color: #304cff;
}

.home-icon{
    font-size: 28px;
}


.hero{
    width: 90%;
    margin: 40px auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-left img{
    width: 500px;
    height: 450px;
    object-fit: cover;
    border-radius: 25px;
}

.hero-right{
    width: 550px;
}

.hero-right h1{
    font-size: 48px;
    line-height: 1.3;
    font-weight: 500;
}

.hero-right span{
    color: #3d3dff;
}

.hero-right p{
    margin-top: 25px;
    font-size: 20px;
    line-height: 1.6;
}

.hero-right button{
    margin-top: 40px;

    width: 200px;
    height: 50px;

    border: none;
    border-radius: 25px;

    background: #29c7ff;
    cursor: pointer;

    font-size: 18px;
    transition: 0.3s;
}

.hero-right button:hover{
    background: #00b6f0;
}



footer{
    background: #68a8f1;
    min-height: 180px;

    display: flex;
    justify-content: space-around;
    align-items: flex-start;

    padding: 25px;
    margin-top: 30px;
}

.footer-social{
    font-size: 18px;
    font-weight: bold;
}

footer h4{
    margin-bottom: 15px;
    font-size: 14px;
}

footer p{
    margin-bottom: 8px;
    font-size: 13px;
}


@media(max-width: 1000px){

    .hero{
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-left img{
        width: 250px;
        height: 150px;
    }

    .hero-right{
        width: 100%;
    }

    .hero-right h1{
        font-size: 35px;
    }

    .kampus img{
        width: 400px;
        height: 250px;
    }

    footer{
        flex-wrap: wrap;
        gap: 20px;
    }
}