
body{
    margin:0;
    padding:0;
    font-family: "Lato", sans-serif;
}

/*=========================
TOP HEADER
=========================*/

.wcs-top-header{
    background:#0066cc;
    color:#fff;
    font-size:16px;
}

.wcs-top-header a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.wcs-top-header a:hover{
    color:#8fe3ff;
}

.wcs-contact{
    display:flex;
    align-items:center;
    gap:25px;
    flex-wrap:wrap;
}

.wcs-contact span{
    display:flex;
    align-items:center;
    gap:8px;
}

.wcs-contact i{
    color:#8fe3ff;
}

.wcs-social{
    display:flex;
    justify-content:end;
    align-items:center;
    gap:10px;
}

.wcs-social a{
    width:35px;
    height:35px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.12);
    transition:.3s;
}

.wcs-social a:hover{
    background:#fff;
    color:#0066cc;
    transform:translateY(-3px);
}

/*=========================
MOBILE
=========================*/

@media(max-width:991px){

.wcs-contact{
    justify-content:center;
    gap:12px;
    margin-bottom:12px;
}

.wcs-social{
    justify-content:center;
}

}

@media(max-width:576px){

.wcs-contact{
    flex-direction:column;
    gap:10px;
}

.wcs-contact span{
    justify-content:center;
    text-align:center;
}

}



.wcs-navbar{
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    top:0;
    z-index:9999;
}

.wcs-navbar .navbar{
    padding:18px 0;
}

.wcs-logo{
    font-size:30px;
    font-weight:700;
    color:#0077B6;
    text-decoration:none;
}

.wcs-logo span{
    color:#00B4D8;
}

.wcs-navbar .nav-link{
    color:#1b1b1b;
    font-weight:600;
    margin:0 10px;
    transition:.3s;
    position:relative;
}

.wcs-navbar .nav-link:hover,
.wcs-navbar .nav-link.active{
    color:#0077B6;
}

.wcs-navbar .nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:3px;
    background:#00B4D8;
    transition:.3s;
    display: none;
}

.wcs-navbar .nav-link:hover::after{
    width:100%;
}

.wcs-btn{
    background:#0077B6;
    color:#fff;
    padding:12px 26px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.wcs-btn:hover{
    background:#00B4D8;
    color:#fff;
}

.navbar-toggler{
    border:none;
    box-shadow:none!important;
    padding:0;
}

.wcs-menu-btn{
    width:50px;
    height:50px;
    border-radius:14px;
    background:#0077B6;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
}

/*=====================
OFFCANVAS
======================*/

.offcanvas{
    width:300px;
}

.offcanvas-header{
    background:#0077B6;
    color:#fff;
    padding:22px;
}

.offcanvas-title{
    font-weight:700;
}

.offcanvas-body{
    padding:20px;
}

.offcanvas .nav-link{
    padding:14px 0;
    color:#333;
    font-weight:600;
}

.offcanvas .dropdown-menu{
    border:none;
    background:#f7f9fc;
    margin-top:5px;
}

.offcanvas .dropdown-item{
    padding:10px 18px;
}

.mobile-btn{
    margin-top:25px;
}

.mobile-btn .wcs-btn{
    display:block;
    text-align:center;
}

/*=====================
DESKTOP
======================*/

@media(max-width:991px){

.desktop-menu{
    display:none!important;
}

}

@media(min-width:992px){

.mobile-menu{
    display:none!important;
}

}



/*=========================
DESKTOP HOVER DROPDOWN
=========================*/

@media (min-width: 992px) {

    .navbar .dropdown:hover .dropdown-menu{
        display:block;
        margin-top:0;
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

    .navbar .dropdown-menu{
        display:block;
        opacity:0;
        visibility:hidden;
        transform:translateY(15px);
        transition:all .3s ease;
        border:none;
        border-radius:12px;
        box-shadow:0 15px 35px rgba(0,0,0,.12);
        padding:10px 0;
        min-width:240px;
    }

    .navbar .dropdown-toggle::after{
        transition:.3s;
    }

    .navbar .dropdown:hover .dropdown-toggle::after{
        transform:rotate(180deg);
    }

}

.dropdown-item{
    padding:12px 20px;
    font-weight:500;
    transition:.3s;
}

.dropdown-item:hover{
    background:#0077B6;
    color:#fff;
    padding-left:28px;
}




/*=====================================
HERO SLIDER
======================================*/

.wcs-hero-slider{
    margin:0;
}

.wcs-carousel-item{
    height:650px;
    position:relative;
}

.wcs-carousel-item img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.wcs-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,
    rgba(0,35,65,.80),
    rgba(0,68,120,.45),
    rgba(0,0,0,.10));
}

.wcs-caption{

    position:absolute;
    top:50%;
    left:8%;
    transform:translateY(-50%);
    max-width:650px;
    color:#fff;
    z-index:10;

}

.wcs-badge{

    display:inline-block;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(8px);
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    margin-bottom:25px;
    border:1px solid rgba(255,255,255,.25);

}

.wcs-caption h1{

    font-size:62px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;

}

.wcs-caption p{

    font-size:19px;
    line-height:32px;
    margin-bottom:35px;
    color:#f3f3f3;

}

.wcs-btn-primary{

    background:#00AEEF;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    font-weight:600;
    transition:.3s;

}

.wcs-btn-primary:hover{

    background:#008fc4;
    color:#fff;

}

.wcs-btn-outline{

    border:2px solid #fff;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    display:inline-block;
    font-weight:600;
    margin-left:15px;
    transition:.3s;

}

.wcs-btn-outline:hover{

    background:#fff;
    color:#0077B6;

}

/* Carousel Controls */

.carousel-control-prev,
.carousel-control-next{

    width:65px;

}

.carousel-control-prev-icon,
.carousel-control-next-icon{

    background-color:rgba(255,255,255,.25);
    width:55px;
    height:55px;
    border-radius:50%;
    background-size:45%;

}

.carousel-indicators [data-bs-target]{

    width:12px;
    height:12px;
    border-radius:50%;
    margin:0 6px;

}

/*=====================================
TABLET
======================================*/

@media(max-width:991px){

.wcs-carousel-item{

    height:520px;

}

.wcs-caption{

    left:6%;
    right:6%;
    max-width:100%;

}

.wcs-caption h1{

    font-size:42px;

}

.wcs-caption p{

    font-size:17px;
    line-height:28px;

}

}

/*=====================================
MOBILE
======================================*/

@media(max-width:767px){

.wcs-carousel-item{

    height:520px;

}

.wcs-overlay{

    background:rgba(0,40,70,.72);

}

.wcs-caption{

    text-align:center;
    left:20px;
    right:20px;

}

.wcs-caption h1{

    font-size:30px;
    margin-bottom:18px;

}

.wcs-caption p{

    font-size:15px;
    line-height:26px;
    margin-bottom:25px;

}

.wcs-badge{

    font-size:12px;
    padding:8px 15px;

}

.wcs-btn-primary,
.wcs-btn-outline{

    width:100%;
    margin:8px 0;
    padding:14px;

}

.carousel-control-prev,
.carousel-control-next{

    display:none;

}

}




/*===================================
ABOUT US
====================================*/

.wcs-about{

    background:#f8fbff;
    
    }
    
    .wcs-about-img{
    
    position:relative;
    
    }
    
    .wcs-about-img img{
    
    border-radius:25px;
    width:100%;
    height:550px;
    object-fit:cover;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    
    }
    
    .wcs-exp-box{
    
    position:absolute;
    bottom:25px;
    right:25px;
    background:#0099e5;
    color:#fff;
    padding:20px 35px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,153,229,.35);
    
    }
    
    .wcs-exp-box h2{
    
    font-size:42px;
    font-weight:700;
    margin-bottom:5px;
    
    }
    
    .wcs-exp-box span{
    
    font-size:15px;
    
    }
    
    .wcs-subtitle{
    
    display:inline-block;
    background:#dff5ff;
    color:#0099e5;
    padding:10px 22px;
    border-radius:40px;
    font-weight:600;
    margin-bottom:20px;
    
    }
    
    .wcs-about-content h2{
    
    font-size:45px;
    font-weight:700;
    line-height:1.3;
    margin-bottom:20px;
    color:#062b49;
    
    }
    
    .wcs-about-content p{
    
    font-size:17px;
    line-height:32px;
    color:#666;
    margin-bottom:10px;
    
    }
    
    .wcs-feature{
    
    display:flex;
    align-items:center;
    font-size:17px;
    font-weight:600;
    
    }
    
    .wcs-feature i{
    
    color:#00b894;
    margin-right:12px;
    font-size:20px;
    
    }
    
    .wcs-about-btn{
    
    display:inline-block;
    margin-top:25px;
    padding:15px 35px;
    background:#0099e5;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.4s;
    
    }
    
    .wcs-about-btn:hover{
    
    background:#062b49;
    color:#fff;
    
    }
    
    /*==========================
    Responsive
    ==========================*/
    
    @media(max-width:991px){
    
    .wcs-about-content{
    
    text-align:center;
    
    }
    
    .wcs-feature{
    
    justify-content:center;
    
    }
    
    .wcs-about-img img{
    
    height:420px;
    
    }
    
    .wcs-exp-box{
    
    right:15px;
    bottom:15px;
    padding:18px 25px;
    
    }
    
    .wcs-about-content h2{
    
    font-size:34px;
    
    }
    
    }
    
    @media(max-width:576px){
    
    .wcs-about{
    
    padding:70px 0;
    
    }
    
    .wcs-about-img img{
    
    height:320px;
    
    }
    
    .wcs-about-content h2{
    
    font-size:28px;
    
    }
    
    .wcs-about-content p{
    
    font-size:15px;
    line-height:28px;
    
    }
    
    .wcs-exp-box{
    
    padding:15px 20px;
    
    }
    
    .wcs-exp-box h2{
    
    font-size:30px;
    
    }
    
    }



    .wcs-service-card{

        background:#fff;
        border-radius:22px;
        overflow:hidden;
        box-shadow:0 12px 35px rgba(0,0,0,.08);
        transition:.35s;
        height:100%;
    
    }
    
    .wcs-service-card:hover{
    
        transform:translateY(-10px);
        box-shadow:0 20px 50px rgba(0,0,0,.15);
    
    }
    
    .wcs-service-img{
    
        height:220px;
        overflow:hidden;
    
    }
    
    .wcs-service-img img{
    
        width:100%;
        height:100%;
        object-fit:cover;
        transition:.5s;
    
    }
    
    .wcs-service-card:hover .wcs-service-img img{
    
        transform:scale(1.08);
    
    }
    
    .wcs-service-content{
    
        padding:30px;
    
    }
    
    .wcs-service-content h4{
    
        font-size:24px;
        font-weight:700;
        margin-bottom:15px;
        color:#062b49;
    
    }
    
    .wcs-service-content p{
    
        color:#666;
        line-height:28px;
        margin-bottom:20px;
    
    }
    
    .wcs-service-content a{
    
        color:#0099e5;
        font-weight:600;
        text-decoration:none;
    
    }
    
    .wcs-service-content a i{
    
        transition:.3s;
    
    }
    
    .wcs-service-card:hover a i{
    
        margin-left:8px;
    
    }
    
    @media(max-width:576px){
    
    .wcs-service-img{
    
        height:180px;
    
    }
    
    .wcs-service-content{
    
        padding:22px;
    
    }
    
    }




    /*====================================
KEY FACTS
=====================================*/

.wcs-facts{

    background:#f8fbff;
    
    }
    
    .wcs-facts-tag{
    
    display:inline-block;
    padding:8px 22px;
    background:#e7f6ff;
    color:#0099e5;
    border-radius:40px;
    font-weight:600;
    margin-bottom:15px;
    
    }
    
    .wcs-facts-title{
    
    font-size:42px;
    font-weight:700;
    color:#062b49;
    margin-bottom:15px;
    
    }
    
    .wcs-facts-text{
    
    font-size:17px;
    color:#666;
    line-height:30px;
    
    }
    
    .wcs-fact-card{
    
    background:#fff;
    padding:35px 20px;
    border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
    
    }
    
    .wcs-fact-card:hover{
    
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,153,229,.18);
    
    }
    
    .wcs-fact-icon{
    
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    border-radius:50%;
    background:#0099e5;
    display:flex;
    align-items:center;
    justify-content:center;
    
    }
    
    .wcs-fact-icon i{
    
    font-size:34px;
    color:#fff;
    
    }
    
    .wcs-fact-card h3{
    
    font-size:38px;
    font-weight:700;
    color:#062b49;
    margin-bottom:10px;
    
    }
    
    .wcs-fact-card p{
    
    margin:0;
    font-size:17px;
    font-weight:500;
    color:#666;
    
    }
    
    /*=========================
    Tablet
    =========================*/
    
    @media(max-width:991px){
    
    .wcs-facts-title{
    
    font-size:34px;
    
    }
    
    }
    
    /*=========================
    Mobile
    =========================*/
    
    @media(max-width:576px){
    
    .wcs-facts{
    
    padding:70px 0;
    
    }
    
    .wcs-facts-title{
    
    font-size:28px;
    
    }
    
    .wcs-facts-text{
    
    font-size:15px;
    
    }
    
    .wcs-fact-card{
    
    padding:25px 15px;
    
    }
    
    .wcs-fact-icon{
    
    width:65px;
    height:65px;
    
    }
    
    .wcs-fact-icon i{
    
    font-size:28px;
    
    }
    
    .wcs-fact-card h3{
    
    font-size:28px;
    
    }
    
    .wcs-fact-card p{
    
    font-size:14px;
    
    }
    
    }



    /*====================================
OUR CLIENTS
=====================================*/

.wcs-clients{

    background:#fff;
    
    }
    
    .wcs-client-tag{
    
    display:inline-block;
    padding:8px 20px;
    background:#eaf7ff;
    color:#0099e5;
    border-radius:40px;
    font-weight:600;
    margin-bottom:15px;
    
    }
    
    .wcs-client-title{
    
    font-size:42px;
    font-weight:700;
    color:#062b49;
    
    }
    
    .wcs-client-text{
    
    font-size:17px;
    color:#666;
    margin-top:15px;
    
    }
    
    .wcs-client-box{
    
    height:130px;
    background:#fff;
    border:1px solid #eee;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    transition:.35s;
    
    }
    
    .wcs-client-box:hover{
    
    border-color:#0099e5;
    box-shadow:0 12px 35px rgba(0,153,229,.18);
    
    }
    
    .wcs-client-box img{
    
    max-width:150px;
    max-height:70px;
    width:auto;
    height:auto;
    object-fit:contain;
    transition:.35s;
    
    }
    
    .wcs-client-box:hover img{
    
    filter:grayscale(0);
    
    }
    
    @media(max-width:576px){
    
    .wcs-client-title{
    
    font-size:28px;
    
    }
    
    .wcs-client-box{
    
    height:100px;
    
    }
    
    .wcs-client-box img{
    
    max-width:110px;
    
    }
    
    }



    /*=========================================
FOOTER
==========================================*/

.wcs-footer{

    background:#05203b;
    color:#fff;
    padding:80px 0 25px;
    
    }
    
    .wcs-footer-logo h2{
    
    font-size:34px;
    font-weight:700;
    
    }
    
    .wcs-footer-logo span{
    
    color:#1ec8ff;
    
    }
    
    .wcs-footer-about{
    
    margin:20px 0 25px;
    line-height:30px;
    color:#cfd8e3;
    
    }
    
    .wcs-footer-social{
    
    display:flex;
    gap:12px;
    
    }
    
    .wcs-footer-social a{
    
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
    
    }
    
    .wcs-footer-social a:hover{
    
    background:#1ec8ff;
    transform:translateY(-5px);
    
    }
    
    .wcs-footer-title{
    
    font-size:22px;
    margin-bottom:25px;
    font-weight:600;
    
    }
    
    .wcs-footer ul{
    
    padding:0;
    margin:0;
    list-style:none;
    
    }
    
    .wcs-footer ul li{
    
    margin-bottom:14px;
    
    }
    
    .wcs-footer ul li a{
    
    text-decoration:none;
    color:#cfd8e3;
    transition:.3s;
    
    }
    
    .wcs-footer ul li a:hover{
    
    color:#1ec8ff;
    padding-left:8px;
    
    }
    
    .wcs-contact-item{
    
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    
    }
    
    .wcs-contact-item i{
    
    color:#1ec8ff;
    font-size:18px;
    margin-top:5px;
    
    }
    
    .wcs-contact-item span{
    
    color:#cfd8e3;
    line-height:26px;
    
    }
    
    .wcs-footer hr{
    
    margin:50px 0 25px;
    border-color:rgba(255,255,255,.12);
    
    }
    
    .wcs-copy{
    
    margin:0;
    color:#bfc9d4;
    font-size:15px;
    
    }
    
    /*=========================
    Responsive
    =========================*/
    
    @media(max-width:991px){
    
    .wcs-footer{
    
    padding:60px 0 20px;
    
    }
    
    }
    
    @media(max-width:576px){
    
    .wcs-footer-logo h2{
    
    font-size:28px;
    
    }
    
    .wcs-footer-title{
    
    font-size:20px;
    
    }
    
    .wcs-footer-about{
    
    font-size:15px;
    line-height:28px;
    
    }
    
    .wcs-footer-social{
    
    margin-bottom:15px;
    
    }
    
    }



    /*=====================================
PAGE HEADER
======================================*/

.wcs-page-header{

    background:linear-gradient(135deg,#eef9ff 0%,#d8f1ff 100%);
    padding:70px 0;
    position:relative;
    overflow:hidden;

}

/* Decorative Circles */

.wcs-page-header::before{

    content:"";
    position:absolute;
    width:260px;
    height:260px;
    background:rgba(0,153,229,.08);
    border-radius:50%;
    top:-120px;
    left:-80px;

}

.wcs-page-header::after{

    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background:rgba(0,153,229,.08);
    border-radius:50%;
    right:-80px;
    bottom:-100px;

}

.wcs-page-content{

    position:relative;
    z-index:2;
    text-align:center;

}

.wcs-page-tag{

    display:inline-block;
    background:#fff;
    color:#0099e5;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.wcs-page-content h1{

    font-size:48px;
    font-weight:700;
    color:#062b49;
    margin-bottom:18px;

}

.breadcrumb{

    margin:0;

}

.breadcrumb-item{

    font-size:16px;
    font-weight:500;

}

.breadcrumb-item a{

    color:#0099e5;
    text-decoration:none;

}

.breadcrumb-item.active{

    color:#555;

}

.breadcrumb-item + .breadcrumb-item::before{

    color:#888;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

    .wcs-page-header{

        padding:60px 0;

    }

    .wcs-page-content h1{

        font-size:38px;

    }

}

@media(max-width:576px){

    .wcs-page-header{

        padding:50px 0;

    }

    .wcs-page-content h1{

        font-size:30px;

    }

    .wcs-page-tag{

        font-size:12px;
        padding:7px 14px;

    }

    .breadcrumb-item{

        font-size:14px;

    }

}





/*=========================
Gallery
=========================*/

.wcs-gallery{

    background:#f8fbff;
    
    }
    
    .wcs-gallery-tag{
    
    display:inline-block;
    padding:8px 20px;
    background:#eaf7ff;
    color:#0099e5;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
    
    }
    
    .wcs-gallery-title{
    
    font-size:42px;
    font-weight:700;
    color:#062b49;
    
    }
    
    .wcs-gallery-text{
    
    color:#666;
    margin-top:15px;
    
    }
    
    .wcs-gallery-item{
    
    position:relative;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
    
    }
    
    .wcs-gallery-item img{
    
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.5s;
    
    }
    
    .wcs-gallery-overlay{
    
    position:absolute;
    inset:0;
    background:rgba(0,153,229,.65);
    display:flex;
    align-items:center;
    justify-content:center;
    
    opacity:0;
    transition:.4s;
    
    }
    
    .wcs-gallery-overlay i{
    
    font-size:40px;
    color:#fff;
    
    }
    
    .wcs-gallery-item:hover img{
    
    transform:scale(1.12);
    
    }
    
    .wcs-gallery-item:hover .wcs-gallery-overlay{
    
    opacity:1;
    
    }
    
    @media(max-width:576px){
    
    .wcs-gallery-title{
    
    font-size:28px;
    
    }
    
    .wcs-gallery-item img{
    
    height:220px;
    
    }
    
    }



    /*==========================================
SERVICE DETAILS
==========================================*/

.wcs-service-details{
    background:#f8fbfd;
}

/*========================
SIDEBAR
=========================*/

.wcs-sidebar{
    position:sticky;
    top:110px;
}

.wcs-sidebar-box{
    background:#ffffff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    border:1px solid #edf2f7;
    margin-bottom:30px;
}

.wcs-sidebar-box h4{
    font-size:24px;
    font-weight:700;
    color:#062b49;
    margin-bottom:25px;
    position:relative;
    padding-bottom:12px;
}

.wcs-sidebar-box h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:3px;
    background:#00a6e8;
    border-radius:30px;
}

.wcs-sidebar-box ul li{
    margin-bottom:12px;
    list-style:none;
}

.wcs-sidebar-box ul li:last-child{
    margin-bottom:0;
}

.wcs-sidebar-box ul li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    text-decoration:none;
    color:#333;
    background:#f5f8fb;
    padding:15px 18px;
    border-radius:12px;
    font-weight:600;
    transition:.35s;
}

.wcs-sidebar-box ul li a i{
    color:#00a6e8;
    transition:.35s;
}

.wcs-sidebar-box ul li:hover a,
.wcs-sidebar-box ul li.active a{
    background:#00a6e8;
    color:#fff;
    transform:translateX(5px);
}

.wcs-sidebar-box ul li:hover a i,
.wcs-sidebar-box ul li.active a i{
    color:#fff;
}

/*=========================
HELP BOX
==========================*/

.wcs-sidebar-box p{
    color:#666;
    line-height:28px;
    margin-bottom:25px;
}

.wcs-help-item{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:20px;
}

.wcs-help-item i{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#e9f8ff;
    color:#00a6e8;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.wcs-help-item span{
    display:block;
    color:#888;
    font-size:14px;
}

.wcs-help-item h6{
    margin:2px 0 0;
    font-size:17px;
    color:#062b49;
    font-weight:700;
}

.wcs-sidebar-btn{
    width:100%;
    display:block;
    text-align:center;
    padding:15px;
    border-radius:12px;
    background:#00a6e8;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.wcs-sidebar-btn:hover{
    background:#062b49;
    color:#fff;
}

/*=========================
CONTENT
==========================*/

.wcs-service-content{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.wcs-service-badge{
    display:inline-block;
    padding:8px 18px;
    background:#e9f8ff;
    color:#00a6e8;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}

.wcs-service-content h2{
    font-size:42px;
    font-weight:700;
    color:#062b49;
    margin-bottom:25px;
}

.wcs-service-content h3{
    font-size:30px;
    font-weight:700;
    color:#062b49;
}

.wcs-service-content p{
    color:#666;
    line-height:32px;
    font-size:17px;
}

/*=========================
FEATURE LIST
==========================*/

.wcs-feature-list{
    margin:0;
    padding:0;
    list-style:none;
}

.wcs-feature-list li{
    background:#f8fbfd;
    margin-bottom:15px;
    padding:16px 18px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.wcs-feature-list li:hover{
    background:#00a6e8;
    color:#fff;
}

.wcs-feature-list li i{
    color:#00a6e8;
    margin-right:10px;
}

.wcs-feature-list li:hover i{
    color:#fff;
}

/*=========================
PROCESS
==========================*/

.wcs-process-card{
    background:#ffffff;
    border:1px solid #e8eef3;
    border-radius:18px;
    text-align:center;
    padding:35px 20px;
    transition:.35s;
    height:100%;
}

.wcs-process-card:hover{
    background:#00a6e8;
    transform:translateY(-8px);
}

.wcs-process-card span{
    width:65px;
    height:65px;
    border-radius:50%;
    background:#e9f8ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    font-size:22px;
    font-weight:700;
    color:#00a6e8;
}

.wcs-process-card h6{
    margin-top:20px;
    font-size:18px;
    font-weight:700;
    color:#062b49;
}

.wcs-process-card:hover span{
    background:#fff;
}

.wcs-process-card:hover h6{
    color:#fff;
}

/*=========================
APPLICATIONS
==========================*/

.wcs-app-card{
    background:#fff;
    border:1px solid #e9eef3;
    border-radius:18px;
    text-align:center;
    padding:30px 20px;
    transition:.35s;
    height:100%;
}

.wcs-app-card:hover{
    background:#00a6e8;
    transform:translateY(-8px);
}

.wcs-app-card i{
    font-size:38px;
    color:#00a6e8;
    margin-bottom:18px;
}

.wcs-app-card h6{
    font-size:18px;
    font-weight:700;
    color:#062b49;
    margin:0;
}

.wcs-app-card:hover i,
.wcs-app-card:hover h6{
    color:#fff;
}

/*=========================
SPACING
==========================*/

.wcs-service-content .mt-5{
    margin-top:60px !important;
}

/*=========================
RESPONSIVE
==========================*/

@media (max-width:991px){

    .wcs-sidebar{
        position:static;
    }

    .wcs-service-content{
        padding:35px;
    }

    .wcs-service-content h2{
        font-size:34px;
    }

    .wcs-service-content h3{
        font-size:26px;
    }

}

@media (max-width:767px){

    .wcs-service-details{
        padding:60px 0;
    }

    .wcs-service-content{
        padding:25px;
    }

    .wcs-sidebar-box{
        padding:22px;
    }

    .wcs-service-content h2{
        font-size:28px;
        line-height:1.3;
    }

    .wcs-service-content h3{
        font-size:22px;
    }

    .wcs-service-content p{
        font-size:15px;
        line-height:28px;
    }

    .wcs-feature-list li{
        font-size:15px;
    }

    .wcs-process-card{
        padding:25px 15px;
    }

    .wcs-process-card span{
        width:55px;
        height:55px;
        font-size:18px;
    }

    .wcs-app-card{
        padding:25px 15px;
    }

    .wcs-app-card i{
        font-size:30px;
    }

    .wcs-app-card h6{
        font-size:16px;
    }

}






/*=========================================
CONTACT
==========================================*/


    
    .wcs-contact-tag{
    display:inline-block;
    padding:8px 20px;
    background:#e9f8ff;
    color:#0099e5;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
    }
    
    .wcs-contact-title{
    font-size:42px;
    font-weight:700;
    color:#062b49;
    }
    
    .wcs-contact-text{
    color:#666;
    font-size:17px;
    line-height:30px;
    margin-top:15px;
    }
    
    .wcs-contact-info,
    .wcs-contact-form{
    
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    height:100%;
    
    }
    
    .wcs-contact-info h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:15px;
    color:#062b49;
    }
    
    .wcs-contact-info>p{
    line-height:30px;
    color:#666;
    margin-bottom:35px;
    }
    
    .wcs-contact-box{
    
    display:flex;
    align-items:flex-start;
    margin-bottom:28px;
    
    }
    
    .wcs-contact-icon{
    
    width:60px;
    height:60px;
    background:#e9f8ff;
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-right:18px;
    flex-shrink:0;
    
    }
    
    .wcs-contact-icon i{
    
    font-size:22px;
    color:#0099e5;
    
    }
    
    .wcs-contact-box h6{
    
    font-weight:700;
    margin-bottom:6px;
    color:#062b49;
    
    }
    
    .wcs-contact-box p{
    
    margin:0;
    color:#666;
    line-height:26px;
    
    }
    
    .wcs-contact-social{
    
    display:flex;
    gap:12px;
    margin-top:25px;
    
    }
    
    .wcs-contact-social a{
    
    width:45px;
    height:45px;
    background:#0099e5;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    text-decoration:none;
    transition:.35s;
    
    }
    
    .wcs-contact-social a:hover{
    
    background:#062b49;
    transform:translateY(-5px);
    
    }
    
    .wcs-contact-form .form-control{
    
    height:56px;
    border-radius:12px;
    border:1px solid #d9e4ec;
    box-shadow:none;
    
    }
    
    .wcs-contact-form textarea.form-control{
    
    height:auto;
    resize:none;
    padding-top:15px;
    
    }
    
    .wcs-contact-form .form-control:focus{
    
    border-color:#0099e5;
    
    }
    
    .wcs-contact-btn{
    
    background:#0099e5;
    border:none;
    padding:16px 38px;
    border-radius:50px;
    font-weight:600;
    color:#fff;
    transition:.35s;
    
    }
    
    .wcs-contact-btn:hover{
    
    background:#062b49;
    
    }
    
    @media(max-width:991px){
    
    .wcs-contact-title{
    
    font-size:34px;
    
    }
    
    }
    
    @media(max-width:576px){
    
    .wcs-contact-title{
    
    font-size:28px;
    
    }
    
    .wcs-contact-info,
    .wcs-contact-form{
    
    padding:25px;
    
    }
    
    .wcs-contact-icon{
    
    width:50px;
    height:50px;
    
    }
    
    .wcs-contact-icon i{
    
    font-size:18px;
    
    }
    
    }




    /*=====================================
OUR CLIENTS
======================================*/

.wcs-clients{
    background:#f8fbfd;
}

.wcs-client-tag{
    display:inline-block;
    padding:8px 20px;
    background:#e9f8ff;
    color:#00a6e8;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.wcs-client-title{
    font-size:42px;
    font-weight:700;
    color:#062b49;
    margin-bottom:15px;
}

.wcs-client-text{
    color:#666;
    max-width:700px;
    margin:auto;
    line-height:30px;
}

.wcs-client-card{
    background:#fff;
    height:160px;
    border-radius:20px;
    border:1px solid #edf2f7;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:30px;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.wcs-client-card:hover{
    transform:translateY(-8px);
    border-color:#00a6e8;
    box-shadow:0 18px 45px rgba(0,166,232,.18);
}

.wcs-client-card img{
    max-width:170px;
    max-height:80px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%);
    transition:.35s;
}

.wcs-client-card:hover img{
    filter:grayscale(0%);
    transform:scale(1.08);
}

@media(max-width:991px){

    .wcs-client-title{
        font-size:34px;
    }

}

@media(max-width:576px){

    .wcs-clients{
        padding:60px 0;
    }

    .wcs-client-title{
        font-size:28px;
    }

    .wcs-client-text{
        font-size:15px;
        line-height:26px;
    }

    .wcs-client-card{
        height:120px;
        padding:20px;
    }

    .wcs-client-card img{
        max-width:120px;
        max-height:60px;
    }

}



@media (max-width:576px){

    .wcs-client-card{
        height:110px;
        padding:15px;
        border-radius:15px;
    }

    .wcs-client-card img{
        width:100%;
        max-width:100px;
        max-height:50px;
        object-fit:contain;
    }

}




/*=====================================
OUR BLOGS
======================================*/

.wcs-blogs{
    background:#f8fbfd;
}

.wcs-blog-tag{
    display:inline-block;
    padding:8px 20px;
    background:#e9f8ff;
    color:#00a6e8;
    border-radius:30px;
    font-weight:600;
    margin-bottom:15px;
}

.wcs-blog-title{
    font-size:42px;
    font-weight:700;
    color:#062b49;
    margin-bottom:15px;
}

.wcs-blog-text{
    color:#666;
    line-height:30px;
}

.wcs-blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
    height:100%;
}

.wcs-blog-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,166,232,.18);
}

.wcs-blog-image{
    position:relative;
    overflow:hidden;
}

.wcs-blog-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.4s;
}

.wcs-blog-card:hover .wcs-blog-image img{
    transform:scale(1.08);
}

.wcs-blog-date{
    position:absolute;
    top:20px;
    left:20px;
    background:#00a6e8;
    color:#fff;
    padding:10px 16px;
    border-radius:10px;
    font-weight:600;
}

.wcs-blog-content{
    padding:28px;
}

.wcs-blog-category{
    display:inline-block;
    background:#eef9ff;
    color:#00a6e8;
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
}

.wcs-blog-content h4{
    font-size:24px;
    font-weight:700;
    color:#062b49;
    line-height:1.4;
    margin-bottom:15px;
}

.wcs-blog-content p{
    color:#666;
    line-height:28px;
    margin-bottom:20px;
}

.wcs-blog-content a{
    color:#00a6e8;
    text-decoration:none;
    font-weight:600;
}

.wcs-blog-content a i{
    transition:.3s;
}

.wcs-blog-card:hover a i{
    margin-left:8px;
}

@media(max-width:991px){

    .wcs-blog-title{
        font-size:34px;
    }

}

@media(max-width:576px){

    .wcs-blogs{
        padding:60px 0;
    }

    .wcs-blog-title{
        font-size:28px;
    }

    .wcs-blog-image img{
        height:220px;
    }

    .wcs-blog-content{
        padding:22px;
    }

    .wcs-blog-content h4{
        font-size:20px;
    }

    .wcs-blog-content p{
        font-size:15px;
        line-height:26px;
    }

}




/*=========================================
BLOG DETAILS
=========================================*/

.wcs-blog-details{
    background:#f8fbfd;
}

/*=========================
MAIN BLOG BOX
=========================*/

.wcs-blog-details-box{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.wcs-blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:25px;
    margin-bottom:20px;
}

.wcs-blog-meta span{
    color:#666;
    font-size:15px;
    font-weight:500;
}

.wcs-blog-meta span i{
    color:#00a6e8;
    margin-right:8px;
}

.wcs-blog-heading{
    font-size:42px;
    font-weight:700;
    color:#062b49;
    line-height:1.3;
    margin-bottom:25px;
}

.wcs-blog-details-box h3{
    font-size:30px;
    color:#062b49;
    font-weight:700;
    margin:40px 0 20px;
}

.wcs-blog-details-box p{
    color:#666;
    line-height:32px;
    font-size:17px;
    margin-bottom:20px;
}

/*=========================
QUOTE
=========================*/

.wcs-blog-quote{
    background:linear-gradient(135deg,#00a6e8,#007cc3);
    padding:35px;
    border-radius:18px;
    margin:40px 0;
    position:relative;
}

.wcs-blog-quote i{
    font-size:45px;
    color:rgba(255,255,255,.25);
    margin-bottom:15px;
}

.wcs-blog-quote h5{
    color:#fff;
    font-size:24px;
    line-height:1.6;
    font-style:italic;
    margin:0;
}

/*=========================
LIST
=========================*/

.wcs-blog-list{
    list-style:none;
    padding:0;
    margin:0;
}

.wcs-blog-list li{
    background:#f7fbff;
    margin-bottom:15px;
    padding:16px 18px;
    border-radius:12px;
    border-left:4px solid #00a6e8;
    transition:.35s;
    font-weight:500;
}

.wcs-blog-list li:hover{
    background:#00a6e8;
    color:#fff;
    transform:translateX(6px);
}

/*=========================
BLOG FOOTER
=========================*/

.wcs-blog-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:30px;
}

.wcs-tag{
    display:inline-block;
    background:#eef9ff;
    color:#00a6e8;
    padding:8px 16px;
    border-radius:30px;
    margin:6px 5px 0;
    font-size:14px;
    font-weight:600;
    transition:.35s;
}

.wcs-tag:hover{
    background:#00a6e8;
    color:#fff;
}

.wcs-share{
    display:flex;
    gap:12px;
}

.wcs-share a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#eef9ff;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#00a6e8;
    text-decoration:none;
    transition:.35s;
}

.wcs-share a:hover{
    background:#00a6e8;
    color:#fff;
    transform:translateY(-5px);
}

/*=========================
SIDEBAR
=========================*/

.wcs-blog-sidebar{
    position:sticky;
    top:110px;
}

.wcs-sidebar-card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    margin-bottom:30px;
}

.wcs-sidebar-card h4{
    font-size:24px;
    font-weight:700;
    color:#062b49;
    margin-bottom:22px;
    position:relative;
    padding-bottom:12px;
}

.wcs-sidebar-card h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:55px;
    height:3px;
    background:#00a6e8;
    border-radius:50px;
}

/*=========================
SEARCH
=========================*/

.wcs-sidebar-card .form-control{
    height:52px;
    border-radius:10px 0 0 10px;
    border:1px solid #dbe5ed;
    box-shadow:none;
}

.wcs-sidebar-card .form-control:focus{
    border-color:#00a6e8;
}

.wcs-sidebar-card .btn{
    border-radius:0 10px 10px 0;
    padding:0 22px;
}

/*=========================
SIDEBAR LINKS
=========================*/

.wcs-sidebar-card ul{
    margin:0;
    padding:0;
}

.wcs-sidebar-card ul li{
    list-style:none;
    margin-bottom:12px;
}

.wcs-sidebar-card ul li:last-child{
    margin-bottom:0;
}

.wcs-sidebar-card ul li a{
    display:block;
    text-decoration:none;
    color:#444;
    background:#f8fbfd;
    padding:14px 18px;
    border-radius:10px;
    transition:.35s;
    font-weight:500;
}

.wcs-sidebar-card ul li a:hover{
    background:#00a6e8;
    color:#fff;
    transform:translateX(5px);
}

/*=========================
CONTACT BOX
=========================*/

.wcs-contact-box{
    text-align:center;
}

.wcs-contact-box p{
    color:#666;
    line-height:28px;
    margin-bottom:20px;
}

.wcs-contact-box .btn{
    padding:14px;
    border-radius:50px;
    font-weight:600;
}

/*=========================
HR
=========================*/

.wcs-blog-details-box hr{
    margin:35px 0;
    border-color:#e8eef3;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .wcs-blog-sidebar{
        position:static;
    }

    .wcs-blog-details-box{
        padding:35px;
    }

    .wcs-blog-heading{
        font-size:34px;
    }

    .wcs-blog-details-box h3{
        font-size:26px;
    }

}

@media(max-width:767px){

    .wcs-blog-details{
        padding:60px 0;
    }

    .wcs-blog-details-box{
        padding:25px;
    }

    .wcs-blog-meta{
        gap:12px;
        flex-direction:column;
    }

    .wcs-blog-heading{
        font-size:28px;
    }

    .wcs-blog-details-box h3{
        font-size:22px;
    }

    .wcs-blog-details-box p{
        font-size:15px;
        line-height:28px;
    }

    .wcs-blog-quote{
        padding:25px;
    }

    .wcs-blog-quote h5{
        font-size:19px;
        line-height:1.6;
    }

    .wcs-blog-footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .wcs-sidebar-card{
        padding:22px;
    }

}