
:root{
    --text-color: #01356E;
    --hover-color: #1C1C1C ;
    --main-font:'Poppins', sans-serif;
    --head-font:'Montserrat', sans-serif;
}
body{
    font-family:var(--main-font) ;
}
h1,h2,h3,h4,h5,h6{
    font-family: var(--head-font);
    color: var(--text-color);
    font-weight: 800;
}

ul{
    list-style: none;
    margin-right: 0px;
    
}

a{
    text-decoration: none;
    color: inherit;
}

/******************************bar *************************************/

.bar{
    background-color: #01356E;
    width: 100%;
    height: 8px;
}

/******************************home *************************************/
#home{
    background-image: url('../images/light-bg.png');
    background-position: top center;
    background-size: cover;
}

#home .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 30px 0;

}

#home img{
    width: 160px;
}


#home .home-layer{
    background-color: rgba(5, 25, 71, 0.1);
    height: 100%;
    width: 100%;
}

#home .home-layer .home-context h5{
    font-size: 3.125rem;
    color: white;
}


#home .home-layer .home-context .btn{
    font-weight: 900;
}

#home .home-layer .home-context .type{
    font-size: 3.75rem;
    font-weight: 200;
    font-family: var(--head-font);
    color: white;
}

#home .home-layer .home-context .type::after{
    content: '';
    font-size: 3.75rem;
    font-weight: 400;
    -webkit-animation: typing 6s infinite ;
            animation: typing 6s infinite ;
}

.media .links li{
    background: #0c346e80;
    border: 2px solid none;
    border-radius: 50%;
    font-size: .875rem;
    width: 35px;
    height: 35px;

}

.media .links li:hover{
    background-color: #1A8BCB;
}


/************************************** about *************************/

#about{
    background-color: #dad9d982;
}

#about .about-left{
    position: relative;
}

#about .about-left::before{
   content: '';
   position: absolute;
   background-image: url("../images/dots.png");
   width: 80%;
   height: 80%;
   bottom: -30px;
   left: 16px;
   z-index: -1;
}

#about .about-left img{
    width: 100%;
}

#about .about-right span{
    font-size: .875rem;
    color: #999999;
    letter-spacing: 1px;

}

#about .about-right h3{
    color: #01356E !important;
}

#about .about-right p{
    color: #748182;
    margin-bottom: 1.875rem;
    font-family:Verdana;
    line-height: 25px;
}

#about .about-right p span{
    font-weight: 700;
    color: #748182;
}



/************************************************* services **************************************/

#services {
    /* background-color: #F7F7F7; */
    background-image: url('../images/about-bg.webp');
/*     background-size: cover;
 */    background-position: center;
}


#services .services-head h2, #contact .contact-head h2 {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    font-weight: 900;
}

#services .services-head h2::before {
    position: absolute;
    content: '';
    width: 17%;
    height: 1.875rem;
    left: 50%;
    z-index: -1;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 17px;
    background-image: url("../images/dots.png");
}

#services .services-content .card{
    -webkit-box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 10px 30px -8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    border-color: white;
    padding: 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 380px;
    transition: all 0.5s ease-in-out;
    position: relative;

}

#services .services-content .card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 5px;
    border: 2px solid #007bff;
    box-sizing: border-box;

    /* Start hidden */
    clip-path: inset(0 100% 0 0);

    transition: clip-path 0.5s linear;
}

/* Hover effect: reveal border by drawing around card */
#services .services-content .card:hover::before {
    clip-path: inset(0 0 0 0);
}

#services .services-content .card:hover{
    transform: scale(1.03);
}

#services .services-head p{
        color: #999999;

}

#services .services-content img{
    width: 140px;
}
#services .services-content .card h6{
    font-size: 1.125rem;
}

#services .services-content .card .card-body p {
    font-size: .875rem;
    margin: 0px;
    color: #748182;
    line-height: 1.6;
}

#services .services-content .card .c-icon .icon{
    font-size: 1.875rem;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #f4f4f4;
    border-radius: 50%;
    -webkit-transition: all 0.5s ;
    -o-transition: all 0.5s ;
    transition: all 0.5s ;
    
}

#services .services-content .card:hover .c-icon .icon{
    background-color: var(--hover-color);
    color: #fff;
}

.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
}
.lightbox.show { display: flex; }

.lightbox img {
    max-width: 80%;
    max-height: 80%;
}

/* buttons */
.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.prev-btn { left: 20px; }
.next-btn { right: 20px; }

.close-btn {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}


/******************************************* contact ****************************************/

#contact{
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;    
}

#contact .contact-head h2{
    color: white;
}

#contact .contact-body  .c-icon .icon{
    font-size: 1.875rem;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: #f4f4f4;
    border-radius: 50%;
    -webkit-transition: all 0.5s ;
    -o-transition: all 0.5s ;
    transition: all 0.5s ;
    
}

#contact .contact-body:hover .c-icon .icon{
    background-color: #26639D;
    color: #fff;
}

#contact .contact-body .c-text{
    text-align: start;
}
#contact .contact-head p{
    color: #999999;

}

#contact .contact-body .c-text ul{
    padding: 0;
}

#contact .contact-body .c-text h5{
    font-size: 1rem;
    font-weight: 700;
        color: #1A8BCB;

}

#contact .contact-body .c-text p{
    font-size: .9375rem;
    color: #748182;
}

#contact .contact-body ul li{
    display: flex;
    color: #d3d4d4;
}

#contact .contact-body ul i{
    color: #1A8BCB;
    padding-top: 5px;
}
#contact .contact-body span{
    display: block;
    text-align: start;
}


/**************************************** footer ******************************/

footer{
    padding: 20px;
    color: #d3d4d4;
    font-size: .8125rem;
    background-color: #01356E;
}

footer .content{
        display: flex;
    justify-content: space-between;
    align-items: center;
}

footer span{
    color: #43a6df;
}