@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}


/* .......Navbar messege........ */

.nav-msg{
    width: 100%;
    height: 40px;
    color: #ffffff;
    background-color: #00035c;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.nav-msg a{
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    
}

.nav-msg p{
    font-size: 14px;
}

.nav-info{
    display: flex;
    justify-content: space-around;
    align-items: center;
}



/* .....navbar...... */




.nav-container{
    width: 100%;
    height: 90px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #17223a;
}

.left-section {
    display: flex;
    align-items: center;
}

.nav-container .logo img{
    height: 120px;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}


.menu ul li a {
    color: #17223a;
    text-decoration: none;
    padding: 10px 15px;
    transition: all .2s ease-in;
    display: inline-block;
    text-align: center;
    background: linear-gradient(to left, #ffffff 50%, #9c3c9b 50%) right;
    background-size: 260%;
    border-radius: 5px;
}

.menu ul li a:hover{
    background-position: left;
    color: #ffffff;
}



.nav-contact {
    display: flex;
    align-items: center;
}

#nav-para a {
    color: #ffffff;
    text-decoration: none;
    margin-right: 20px;
}

#nav-btn{
    background-color: #9c3c9b;
    color: #ffffff;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    margin-left: 20px;
    font-size: 18px;
}


#menu-bar {
    display: none;
    cursor: pointer;
    padding: 10px;
    color: #fff;
}

.sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    width: 100%;
    background-color: #9c3c9b;
    color: white;
    z-index: 1000;
    transform: translateX(-100%);
    transition: transform 1.5s ease;
    transition: all .5s ease-in-out;
    border-radius: 10px;
}

.sidebar-content {
    padding: 20px;
}

.sidebar-content ul {
    list-style: none;
    padding: 0;
}

.sidebar-content ul li {
    margin-bottom: 20px;
}

.sidebar-content ul li a {
    color: white;
    text-decoration: none;
    font-size: 40px;
}

.fa-times {
    cursor: pointer;
    float: right;
    font-size: 50px;
}

@media (max-width: 768px) {
    .menu ul {
        display: none;
    }

    #menu-bar {
        display: block;
        background-color: #9c3c9b;
        font-size: 35px;
        padding: 10px;
    }

}

.sidebar.open {
    display: block;
    transform: translateX(0);
}



/* .......hero section.........  */

.hero-section{
    background-image: url(/images/services-background.png);
    width: 100%;
    height: 68vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}


.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #00000045;
}

.hero-content .hero-heading h1{
    color: #ffffff;
    font-size: 64px;
    margin-bottom: 25px;

}

.hero-content .hero-para p{
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.5;
    letter-spacing: 1px;
}



/* ///////////////// services//////////// */

.Service-heading{
    margin: 50px;
    width: 90%;
    padding: 0 50px;
}

.Service-heading p{
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
}

.Service-heading h1{
    font-size: 50px;
    color: #9c3c9b;
}

.width-line{
    padding: 50px 100px 0px 100px;
    display: flex;
}

.width1{
    width: 30%;
    height: 2px;
    border: 1px solid black;
    margin-right: 5%;
}

.width2{
    width: 65%;
    height: 2px;
    border: 1px solid rgb(255, 0, 0);
}



/* //////services details////// */


.services-details-container{
    display: flex;
    padding: 20px 100px 0px 100px;

}

.service-topic{
    width: 30%;
    height: 250px;
    margin-right: 5%;
}

.service-topic p{
    font-weight: 600;
    font-size: 17px;
}

.service-paragraph{
    width: 65%;
    height: 250px;
}

.service-paragraph h1{
    color: #17223a;
    font-size: 29px;
    margin-bottom: 20px;
}

.service-paragraph p{
    color: #3e4658;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;

}

.service-paragraph a{
    text-decoration: none;
    font-size: 13px;
    color: #9c3c9b;
    font-weight: 900;
}



/* ........Footer............  */




.footer-container{
    background-color: #10106f;
    width: 100%;
    display: flex;
    justify-content:center ;
    margin-top: 50px;
}

.footer-box{
    width: 95%;
    height: 330px;
    display: flex;
    justify-content: space-around;
}
.fsize{
    width: 25%;
    margin-top: 40px;
}

.fsize hr{
    margin-bottom: 25px;
    width: 80%;
}

.fsize p{
    margin-top: 10px;
    color: #ffffff;
    font-size: 28px;
    font-family: 900;
}

.fsize ul li{
    list-style: none;
    line-height: 1.8;
    color: #ffffff;
}

.fsize ul li:hover{
    text-decoration: underline;
    cursor: pointer;
    list-style: circle;
}
.fbox3 .cont-name{
    font-size: 20px;
    color: #ffffff;
}
.fbox3 .fAddre{
    font-size: 15px;
    color: #ffffff;
}
.fbox3 .fphone{
    font-size: 15px;
    color: #ffffff;
}
.footer1{
    height: 50px;
    width: 100%;
    background-color: rgb(0, 1, 40);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer1 a{
    color: #cfcfcf;
    font-size: 16px;
    letter-spacing: 1px;
    transition: all .5s ease;
    text-decoration: none;

}

.footer1 a:hover{
    text-decoration: none;
    color: yellow;
    font-size: 17px;

}

.F-logo img{
    margin-top: 30px;
    width: 150px;
    height: 150px;
    margin-right: 20px;
}

/* icon  */
.footer__social{
    width: 43%;
    display: flex;
    justify-content: center;
}
.footer__icon {
    font-size: 25px;
    color: #fff;
    margin: 5px;
    transition: color .3s;
}

.footer__icon:hover {
    color: red;
}




@media only screen and (max-width: 1064px) {
    .nav-msg{
        width: 1064px;
    }
    .nav-container{
        width: 1064px;
    }
    .hero-section{
        width: 1064px;
    }
    .hero-heading{
        width: 400px;
    }
    .Service-heading{
        width: 964px;
    }
    .services-details-container{
        width: 1064px;
    }
    .width-line{
        width: 1064px;
    }
    .footer-container{
        width: 1064px;
    }
    .footer1{
        width: 1064px;
    }

}





@media only screen and (max-width: 760px){
    .location-hide{
        display: none;
    }
    .menu ul{
        display: none;
    }
    #menu-bar{
        display: initial;
        margin-left: 30px;
    }

    .hero-section{
        height: 950px;
        background-position: center;
    }

    .services-details-container{
        display: flex;
        flex-direction: column;
    }
    .service-topic{
        height: 40px;
    }
    .footer-container{
        height: 600px;
    }
    .footer-box{
        display: flex;
        flex-wrap: wrap;
    }
    .fsize{
        width: 400px;
    }
}