html{
    scroll-behavior: smooth;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    color: white;
    background-color: black;
    font-family: 'Poppins',sans-serif;
    overflow-x: hidden;
}
img{
    pointer-events: none;
    max-width:100%;
    height:auto;
    display:block;
}
/* --------page 1 ------------ */
.navbar{
    margin: 0;
    width: 100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background-color: black;
    border-radius: 10px;
    padding: 10px 30px;
    position: absolute;
    top: 10px;
    z-index: 9999;
    position: sticky;
    top: 0px;
}

.nav-links{
    display:flex;
    gap:45px;
    color: white;
}

.nav-links a{
    text-decoration:none;
    color:black;
}
.logo-img{
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
}

.con{
    color: white;
    font-size: 17px;
    transition: all 0.3s ease;
}
.con:hover {
    transform: scale(1.1);
    border-bottom: 2px solid #f9bc07;
    color: #f9bc07;
}

.menu-icon{
    font-size:25px;
    cursor:pointer;
    display:none;
    color: white;
}
.menu-icon:hover {
    color: #f9bc07;
}


@media(max-width:768px){

    .menu-icon{
        display:block;
    }

    .nav-links{
        display:none;
        flex-direction:column;
        position:absolute;
        top:80px;
        right:20px;
        background:rgb(0, 0, 0);
        width:200px;
        padding:20px;
        border-radius:10px;
    }

    .nav-links.active{
        display:flex;
    }
}

.dropdown{
    position: relative;
}

.dropdown-content{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: rgb(0, 0, 0);
    z-index: 1000;
}

.dropdown-content a{
    display: block;
    padding: 12px;
    text-decoration: none;
    color: white;
}

.dropdown-content a:hover{
    background: rgba(255, 255, 255, 0.867);
    color: black;
}

.show{
    display: block;
}

.bg-img{
    min-height: 520px;
    height: auto;
    width: 100%;
    background-image: url(../images/Screenshot\ \(9\).png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.bg-op{
    min-height: 520px;
    height: auto;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.742);
    display: flex;
    justify-content: center;
    align-items: center;
}
.center{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 520px;
}
.bg-con{
    min-height: 350px;
    height: auto;
    max-width: 400px;
    width: 100%;
    text-align: center;
    line-height: 2.3;
}
.bg-head{
    font-size: 45px;
    color: #f9bc07;
    opacity: 0;
    animation: slideInUp 2s  0.5s  forwards;
}
.bg-para2{
    font-size: 28px;
    opacity: 0;
    animation: slideInUp 2s  1s  forwards;
}
@keyframes slideInUp {
    from{
        opacity: 0;
        transform: translateY(60px);

    }
    to{
        opacity: 2;
        transform: translateY(0px);

    }
}
/* ---------------page-2-------------- */
.pg-2{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.pg2-img{
    min-height: 500px;
    height: auto;
    max-width: 650px;
    width: 100%;
    background-image: url(../images/info-img.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 30px;

}
.pg2-para{
    display: flex;
    align-items: center;
    font-family: 'Times New Roman', Times, serif;
    min-height: 500px;
    height: auto;
    max-width: 650px;
    width: 100%;
    font-size: 20px;
    line-height: 2;
}

/* --------------page-3------------- */
.page3{
    height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 10px ;
}
.letter{
    max-width: 75%;
    width: 100%;
    font-size: 20px;
    line-height: 2;
    padding: 20px;
    border: 3px solid white;
    border-radius: 30px;
}
.letter:hover {
    border: 3px solid #f9bc07;
}


/* ---------------------page 7--------------- */
.page7{
    min-height: 500px;
    height: auto;
    width: 100%;
}
.pg7-head{
    font-size: 28px;
}
.blocks{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    height: auto;
    padding: 40px 20px;
}
.block{
    height: 430px;
    width: 300px;
    max-width: 100%;
    height: auto;
    font-size: 17px;
    line-height: 2.1;
    padding: 10px;
    text-align: left;
}
.wh{
    font-size: 20px;
}

span:hover {
    color: rgb(247, 232, 123);
}
.ser-anchor{
    color: white;
    text-decoration: none;
}

/* ================= RESPONSIVE================= */
@media (max-width: 768px) {

    .bg-head{
        font-size:42px;
    }
    .logo-img{
        width: 150px;
    }

    .bg-para1{
        font-size:18px;
    }

    .bg-para2{
        font-size:25px;
    }

    .block{
        text-align:left;
    }

}

@media (max-width:480px){

    .bg-head{
        font-size:32px;
    }
    .logo-img{
        width: 120px;
    }

    .bg-para1{
        font-size:15px;
    }

    .bg-para2{
        font-size:22px;
    }
    .pg2-para{
        font-size: 18px;
    }
    .letter{
        max-width: 100%;
    }

    .block{
        font-size:15px;
    }

    .pg7-head{
        font-size:22px;
    }
}