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;
    padding: 10px 30px;
    background-color: black;
    border-radius: 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: rgb(183, 139, 6);
}

.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;
}

.bgimg{
    min-height: 550px;
    height: auto;
    width: 100%;
    background-image: url(../images/contactus-img.jpeg);
    background-size: cover;
    background-repeat: no-repeat;
}
.bg-op{
    min-height: 550px;
    height: auto;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.593);
    display: flex;
    justify-content: center;
    align-items: center;
}
.bg-con{
    text-align: center;
    width: 90%;
    max-width: 850px;
    padding: 30px;
    line-height: 1.7;
    height: 350px;
}
.bg-head{
    color: #f9bc07;
    font-weight: bold;
    font-size: 58px;
    opacity: 0;
    animation: slideInUp 2s  0.5s  forwards;
}
.bg-para1{
    color: #f9bc07;
    font-size: 20px;
    opacity: 0;
    animation: slideInUp 3s  1s  forwards;
}
.bg-para2{
    color: white;
    font-size: 18px;
    opacity: 0;
    animation: slideInUp 2s  2s  forwards;
}
@keyframes slideInUp {
    from{
        opacity: 0;
        transform: translateY(60px);

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

    }
}
/* -------------page-2----------- */
.pg2{
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 20px;
    justify-content: space-evenly;
}
.info{
    height: 550px;
    width: 100%;
    max-width: 600px;
    height: auto;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #f9bc07;
    line-height: 2;
    opacity: 0;
}
.info.show {
    animation: backInLeft 2s forwards;
}
@keyframes backInLeft {
    from{
        opacity: 0;
        transform: translateX(-160px);
    }

    to{
        opacity: 1;
    }  
}
.info-head{
    width: 100%;
    font-size: 35px;
}
.box{
    display: flex;
    gap: 15px;
    align-items: flex-start;
    font-size: 20px;
}
.box:hover {
    color: rgb(247, 232, 123);
}
#icon{
    flex-shrink: 0;
    font-size:28px;
    color: #f9bc07;
    margin-top: 5px;
}
.user-info{
    height: 550px;
    width: 100%;
    max-width: 600px;
    height: auto;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #f9bc07;
    opacity: 0;
}
.user-info.show {
    animation: backInRight 2s forwards;
}
@keyframes backInRight {
    from{
        opacity: 0;
        transform: translateX(160px);
    }

    to{
        opacity: 1;
    }  
}
form{
    line-height: 2.5;
}
.user-box{
    height: 40px;
    width: 100%;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.011);
    color: white;
    padding: 10px;
}
textarea.user-box{
    height: auto;
    padding: 10px;
    resize: none;
}
.submit-btn{
    height: 40px;
    width: 100px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: #f9bc07;
    border-radius: 10px;
    border: none;
}
.submit-btn:active {
    color: #f9bc07;
    background-color: rgba(0, 0, 0, 0);
    border: 2px solid #f9bc07;
}

/* -----------page-3---------- */
.map{
    width: 90%;
    max-width: 1200px;
    display: block;
    margin: auto;
    display: flex;
    justify-content: center;
    filter: invert(90%) hue-rotate(180deg);
}

/* ---------------------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:16px;
    }

    .info-head{
        font-size:30px;
    }

    .box{
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    #icon{
        font-size: 25px;
    }

    .box p{
        flex: 1;
        word-break: break-word;
    }

    .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:14px;
    }

    .info-head{
        font-size:25px;
    }

    .box{
        font-size:16px;
    }

    #icon{
        font-size: 24px;
    }

    .block{
        font-size:15px;
    }

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