
/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    color: var(--bs-white);
   
}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}
/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 85px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-bottom: 1px solid;
        border-left: 0;
        border-style: dotted;
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        bottom: 1px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

/* Carousel Image */
.carousel .carousel-inner .carousel-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}
/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 20, 66, 0.7), rgba(0, 20, 66, 0.7)), url(../img/breadcrumb.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}
/*** Single Page Hero Header End ***/


/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature .feature-item .feature-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon i {
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    transform: rotate(360deg);
}

.feature .feature-item a.btn {
    transition: 0.5s;
}

.feature .feature-item:hover a.btn:hover {
    color: var(--bs-primary) !important;
}
/*** Features End ***/

/*** About Start ***/
.about .about-img {
    position: relative;
    padding-bottom: 30px;
    margin-top: 30px; 
    margin-left: 30px;
}

.about .about-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10px;
    top: -30px;
    right: 0;
    border-radius: 10px;
    background: var(--bs-secondary);

}

.about .about-img::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 100%;
    left: -30px;
    bottom: 30px;
    border-radius: 10px;
    background: var(--bs-secondary);
}

.about .about-img .about-exp {
    position: absolute;
    top: 0;
    left: 0;
    padding: 25px;
    font-size: 30px;
    font-weight: bold;
    background: var(--bs-secondary);
    color: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    margin-top: -30px;
    margin-left: -30px;
    border-radius: 10px;
}
/*** About End ***/

/*** Service Start ***/
.service-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    border-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service-item:hover::after {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-content,
.service-item:hover .service-btn {
    position: relative;
    z-index: 2;
}

.service-item .service-content a,
.service-item .service-content p {
    transition: 0.5s;
}

.service-item:hover .service-content a:hover {
    color: var(--bs-secondary);
}

.service-item:hover .service-content p {
    color: var(--bs-white);
} 

.service-item .service-btn {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.service-item .service-btn i {
    transition: 0.5s;
}

.service-item:hover .service-btn {
    background: var(--bs-white);
}

.service-item:hover .service-btn i {
    transform: rotate(360deg);
    color: var(--bs-primary) !important;
}
/*** Service End ***/


/*** Counter Start ***/
.counter {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(25, 64, 154, 0.9), rgba(25, 64, 154, 1)), url(../img/fact-bg.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
}

.counter .counter-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.counter .counter-item .counter-item-icon {
    width: 100px;
    height: 100px;
    border-radius: 50px;
    background: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*** Counter End ***/


/*** Products Start ***/
.product .product-item {
    border: 1px solid rgba(196, 211, 211, 0.9);
    border-radius: 10px;
}

/*** Products End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(0, 209, 249, 0.2);
}

.blog .blog-item .blog-date {
    position: absolute;
    top: 25px;
    left: 25px;
    border-radius: 10px;
    background: var(--bs-primary);
    color: var(--bs-white);
    z-index: 2;
}

.blog .blog-item .blog-content a {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-content a:hover {
    color: var(--bs-primary) !important;
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    overflow: hidden;
    background: var(--bs-white);
    border: 1px solid var(--bs-secondary);
    border-radius: 10px;
}

.team .team-item .team-inner {
    transition: 0.5s;
}
.team .team-item:hover .team-inner {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
}

.team .team-item .team-inner .team-img {
    position: relative;
    z-index: 2;
}

.team .team-item .team-inner .team-img::after {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(0, 209, 249, 0.2);
    transition: 0.5s;
    z-index: 3;
}

.team .team-item:hover .team-inner .team-img::after {
    height: 100%;
}

.team .team-item .team-inner .team-img .team-share {
    position: absolute;
    left: 10px;
    bottom: 10px;
    transition: 0.5s;
    z-index: 2;
}

.team .team-item:hover .team-inner .team-img .team-share {
    opacity: 0;
}

.team .team-item .team-inner .team-img .team-icon {
    position: absolute;
    bottom: 0;
    left: -100%;
    border-bottom-left-radius: 0 !important; 
    border-top-left-radius: 0 !important;
    display: inline-flex;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 4;
}

.team .team-item:hover .team-inner .team-img .team-icon { 
    left: -25px; 
}
/*** Team End ***/


/*** testimonial Start ***/
.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 88px;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-secondary);
    color: var(--bs-white);
}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    margin-right: 15px;
    border: 1px solid var(--bs-secondary);
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    border-radius: 20px;
    border: 1px solid var(--bs-primary);
    background: var(--bs-secondary) !important;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 8px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

@media (max-width: 992px) {
    .owl-carousel.testimonial-carousel {
        padding-top: 30px;
    }

    .testimonial .owl-nav .owl-prev,
    .testimonial .owl-nav .owl-next {
        top: -30px;
    }
}
/*** testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary) !important;
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}
/*** copyright end ***/

.services-section{
    background:#fff;
}

.sub-title{
    color:#1ba7e1;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.main-title{
    font-size:42px;
    font-weight:700;
    color:#0b2341;
    margin:15px 0;
}

.service-text{
    color:#666;
    max-width:700px;
    margin:auto;
}

.service-box{
    text-align:center;
    transition:.3s;
    padding:25px 15px;
    border-radius:12px;
}

.service-box:hover{
    transform:translateY(-8px);
}

.service-icon{
    width:120px;
    height:120px;
    background:#17c4e8;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:20px;
}

.service-icon img{
    width:154px;
}

.service-box h5{
    font-size:20px;
    font-weight:600;
    color:#111;
}

.client-section{

    padding:80px 0;
    background:#fff;

}

.section-title{

    text-align:center;
    margin-bottom:45px;

}

.section-title h2{

    font-size:42px;
    color:#003b71;
    font-weight:700;

}

.section-title span{

    color:#00a8e8;

}

.section-title p{

    color:#666;
    margin-top:10px;

}

.logo-slider .item{

    background:#fff;
    border:1px solid #eee;
    border-radius:10px;
    padding:25px;
    margin:10px;
    height:140px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;

}

.logo-slider .item:hover{

    box-shadow:0 8px 25px rgba(0,0,0,.12);

}

.logo-slider img{

    max-width:170px;
    max-height:50px;
    width:auto;
    height:auto;
    transition:.4s;

}

.logo-slider .item:hover img{

    filter:none;
    transform:scale(1.05);

}

.partner-section{
    padding:80px 0;
    background:#fff;
}

.container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:42px;
    font-weight:700;
    color:#082B67;
    margin-bottom:10px;
}

.section-title h2 span{
    color:#11B8E8;
}

.section-title p{
    color:#666;
    font-size:18px;
}

.partner-slider{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
}

.partner-card{
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:8px;
    height:150px;

    display:flex;
    align-items:center;
    justify-content:center;

    transition:.3s;
}

.partner-card:hover{
    transform:translateY(-6px);
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.partner-card img{
    max-width:80%;
    max-height:70px;
    object-fit:contain;
}

@media(max-width:1200px){

.partner-slider{
grid-template-columns:repeat(4,1fr);
}

}

@media(max-width:768px){

.partner-slider{
grid-template-columns:repeat(2,1fr);
}

.partner-card{
height:120px;
}

}

.logo-img{
    height:90px;
    width:auto;
    max-height:90px;
}

.logo-img:hover{
    transform:scale(1.05);
}

/* =========================================
   BK SYSTEMS ABOUT SECTION
========================================= */

.bk-about-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
}

.bk-about-container {
    width: 90%;
    max-width: 1180px;
    margin: auto;

    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
}


/* =========================================
   LEFT IMAGE
========================================= */

.bk-about-left {
    padding-right: 55px;
}

.bk-image-wrapper {
    position: relative;
    height: 560px;
    overflow: hidden;

    border-radius: 8px;
}

.bk-image-wrapper img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    display: block;

    transition: transform 0.5s ease;
}

.bk-image-wrapper:hover img {
    transform: scale(1.03);
}


/* =========================================
   EXPERIENCE BADGE
========================================= */

.bk-experience {
    position: absolute;

    left: 0;
    bottom: 30px;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 15px 25px;

    background: #1746a2;
    color: #ffffff;

    border-radius: 0 6px 6px 0;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bk-experience strong {
    font-size: 38px;
    line-height: 1;

    font-weight: 800;
}

.bk-experience span {
    font-size: 14px;
    font-weight: 600;

    max-width: 90px;
    line-height: 1.3;
}


/* =========================================
   RIGHT CONTENT
========================================= */

.bk-about-right {
    padding-left: 15px;
}

.bk-small-title {
    display: block;

    margin-bottom: 12px;

    color: #08bde8;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.5px;
    text-transform: uppercase;
}


.bk-about-right h2 {
    margin: 0 0 20px;

    color: #142f59;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 40px;
    line-height: 1.15;

    font-weight: 700;
}

.bk-about-right h2 span {
    display: block;

    color: #08bde8;
}


.bk-about-right p {
    margin: 0 0 16px;

    color: #707070;

    font-size: 15px;
    line-height: 1.7;
}

.bk-about-right p strong {
    color: #183b6c;
}


/* =========================================
   SERVICE LIST
========================================= */

.bk-service-list {
    margin-top: 25px;

    display: flex;
    flex-direction: column;

    gap: 16px;
}


.bk-service-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding-bottom: 16px;

    border-bottom: 1px solid #e9eef2;
}

.bk-service-item:last-child {
    border-bottom: none;
}


/* ICON */

.bk-service-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e9f9fd;

    color: #08bde8;

    border-radius: 50%;

    font-size: 18px;
}


.bk-service-item h3 {
    margin: 0 0 4px;

    color: #142f59;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;
    font-weight: 700;
}

.bk-service-item p {
    margin: 0;

    color: #777777;

    font-size: 13px;
    line-height: 1.5;
}


/* =========================================
   BUTTON
========================================= */

.bk-about-btn {
    display: inline-flex;

    align-items: center;
    gap: 10px;

    margin-top: 25px;

    padding: 13px 25px;

    background: #1746a2;

    color: #ffffff;

    text-decoration: none;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

.bk-about-btn:hover {
    background: #08bde8;
    color: #ffffff;

    transform: translateY(-2px);
}

.bk-about-btn i {
    font-size: 12px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .bk-about-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .bk-about-left {
        padding-right: 0;
    }

    .bk-image-wrapper {
        height: 500px;
        max-width: 650px;
        margin: auto;
    }

    .bk-about-right {
        padding-left: 0;
        max-width: 700px;
        margin: auto;
    }

}


@media (max-width: 600px) {

    .bk-about-section {
        padding: 60px 0;
    }

    .bk-about-container {
        width: 92%;
    }

    .bk-image-wrapper {
        height: 400px;
    }

    .bk-experience {
        bottom: 20px;
        padding: 12px 18px;
    }

    .bk-experience strong {
        font-size: 30px;
    }

    .bk-experience span {
        font-size: 12px;
    }

    .bk-about-right h2 {
        font-size: 30px;
    }

    .bk-about-right p {
        font-size: 14px;
    }

    .bk-service-item {
        align-items: flex-start;
    }

}


/* ==========================================
   BK SYSTEMS - WHY CHOOSE US
========================================== */

.bk-why-section {
    width: 100%;
    padding: 100px 0;
    background: #f4fafc;
    overflow: hidden;
}

.bk-why-container {
    width: 90%;
    max-width: 1250px;
    margin: auto;
}


/* ==========================================
   HEADING
========================================== */

.bk-why-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 65px;
}

.bk-why-heading > span {
    display: block;

    margin-bottom: 12px;

    color: #08bde8;

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.bk-why-heading h2 {
    margin: 0;

    color: #142f59;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 44px;
    line-height: 1.15;

    font-weight: 700;
}

.bk-why-heading h2 strong {
    color: #08bde8;
    font-weight: 700;
}

.bk-why-heading p {
    max-width: 750px;

    margin: 20px auto 0;

    color: #747474;

    font-size: 15px;
    line-height: 1.7;
}


/* ==========================================
   MAIN CONTENT
========================================== */

.bk-why-content {
    display: grid;

    grid-template-columns: 1fr 300px 1fr;

    gap: 35px;

    align-items: center;
}


/* ==========================================
   FEATURE COLUMNS
========================================== */

.bk-why-column {
    display: flex;
    flex-direction: column;

    gap: 20px;
}


/* ==========================================
   FEATURE CARD
========================================== */

.bk-why-card {
    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 24px 22px;

    background: #ffffff;

    border-radius: 10px;

    box-shadow: 0 8px 25px rgba(22, 70, 100, 0.06);

    border: 1px solid #edf4f6;

    transition: all 0.3s ease;
}

.bk-why-card:hover {
    transform: translateY(-5px);

    border-color: #b9eaf5;

    box-shadow: 0 15px 30px rgba(22, 70, 100, 0.10);
}


/* ICON */

.bk-card-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #e8f9fd;

    color: #08bde8;

    font-size: 19px;
}

.bk-why-card h3 {
    margin: 0 0 7px;

    color: #142f59;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
    line-height: 1.3;
}

.bk-why-card p {
    margin: 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.6;
}


/* ==========================================
   CENTER VISUAL
========================================== */

.bk-why-center {
    position: relative;

    height: 380px;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* MAIN CIRCLE */

.bk-center-circle {
    position: relative;
    z-index: 5;

    width: 230px;
    height: 230px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    background: #ffffff;

    border: 10px solid #e9f8fc;

    border-radius: 50%;

    box-shadow:
        0 15px 40px rgba(0, 100, 140, 0.12),
        inset 0 0 0 1px #d9eef3;
}


.bk-center-water {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 5px;

    border-radius: 50%;

    background: #08bde8;

    color: #ffffff;

    font-size: 18px;
}

.bk-center-circle h3 {
    margin: 0;

    color: #1746a2;

    font-size: 32px;

    font-weight: 800;

    line-height: 1;
}

.bk-center-circle > span {
    margin-top: 3px;

    color: #08bde8;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;
}

.bk-center-circle small {
    margin-top: 10px;

    color: #777777;

    font-size: 11px;

    line-height: 1.4;
}


/* ==========================================
   DECORATIVE RINGS
========================================== */

.bk-ring {
    position: absolute;

    border-radius: 50%;

    border: 1px dashed #a9dfe9;
}

.bk-ring-one {
    width: 280px;
    height: 280px;
}

.bk-ring-two {
    width: 350px;
    height: 350px;

    border-color: #d1edf2;
}


/* ==========================================
   CENTER LABELS
========================================== */

.bk-center-label {
    position: absolute;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    background: #ffffff;

    border-radius: 30px;

    box-shadow: 0 6px 20px rgba(0, 80, 120, 0.10);

    color: #1746a2;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.5px;
}

.bk-center-label i {
    color: #08bde8;
}

.label-top {
    top: 10px;
    right: 15px;
}

.label-bottom {
    bottom: 10px;
    left: 15px;
}


/* ==========================================
   BOTTOM STATS
========================================== */

.bk-why-bottom {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 60px;

    background: #1746a2;

    border-radius: 8px;

    overflow: hidden;
}

.bk-why-bottom > div {
    padding: 22px;

    text-align: center;

    border-right: 1px solid rgba(255,255,255,0.18);
}

.bk-why-bottom > div:last-child {
    border-right: none;
}

.bk-why-bottom strong {
    display: block;

    color: #ffffff;

    font-size: 25px;

    font-weight: 800;

    line-height: 1.2;
}

.bk-why-bottom span {
    display: block;

    margin-top: 4px;

    color: #dcecff;

    font-size: 12px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {

    .bk-why-content {
        grid-template-columns: 1fr 250px 1fr;

        gap: 20px;
    }

    .bk-center-circle {
        width: 190px;
        height: 190px;
    }

    .bk-ring-one {
        width: 240px;
        height: 240px;
    }

    .bk-ring-two {
        width: 290px;
        height: 290px;
    }

    .bk-why-heading h2 {
        font-size: 38px;
    }

}


@media (max-width: 900px) {

    .bk-why-content {
        grid-template-columns: 1fr;

        gap: 30px;
    }

    .bk-why-center {
        order: -1;

        height: 320px;
    }

    .bk-why-column {
        max-width: 650px;

        margin: auto;

        width: 100%;
    }

    .bk-why-bottom {
        grid-template-columns: repeat(2, 1fr);
    }

    .bk-why-bottom > div:nth-child(2) {
        border-right: none;
    }

    .bk-why-bottom > div:nth-child(1),
    .bk-why-bottom > div:nth-child(2) {
        border-bottom: 1px solid rgba(255,255,255,0.18);
    }

}


@media (max-width: 600px) {

    .bk-why-section {
        padding: 65px 0;
    }

    .bk-why-container {
        width: 92%;
    }

    .bk-why-heading {
        margin-bottom: 40px;
    }

    .bk-why-heading h2 {
        font-size: 30px;
    }

    .bk-why-heading h2 br {
        display: none;
    }

    .bk-why-heading p {
        font-size: 14px;
    }

    .bk-why-center {
        height: 280px;
    }

    .bk-center-circle {
        width: 180px;
        height: 180px;
    }

    .bk-ring-one {
        width: 225px;
        height: 225px;
    }

    .bk-ring-two {
        width: 270px;
        height: 270px;
    }

    .bk-center-label {
        font-size: 9px;
        padding: 7px 10px;
    }

    .label-top {
        top: 0;
        right: 0;
    }

    .label-bottom {
        bottom: 0;
        left: 0;
    }

    .bk-why-card {
        padding: 18px;
    }

    .bk-why-card h3 {
        font-size: 16px;
    }

    .bk-why-bottom {
        grid-template-columns: 1fr 1fr;

        margin-top: 40px;
    }

    .bk-why-bottom strong {
        font-size: 21px;
    }

}

/* ==========================================
   BK SYSTEMS
   OUR APPROACH / PROCESS SECTION
========================================== */

.bk-process-section {
    width: 100%;
    padding: 100px 0;

    background: #ffffff;

    overflow: hidden;
}

.bk-process-container {
    width: 90%;
    max-width: 1250px;

    margin: 0 auto;
}


/* ==========================================
   SECTION HEADING
========================================== */

.bk-process-heading {
    max-width: 850px;

    margin: 0 auto 65px;

    text-align: center;
}

.bk-process-heading > span {
    display: block;

    margin-bottom: 12px;

    color: #08bde8;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.bk-process-heading h2 {
    margin: 0;

    color: #142f59;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 43px;

    line-height: 1.18;

    font-weight: 700;
}

.bk-process-heading h2 strong {
    display: block;

    color: #08bde8;

    font-weight: 700;
}

.bk-process-heading p {
    max-width: 760px;

    margin: 20px auto 0;

    color: #777777;

    font-size: 15px;

    line-height: 1.7;
}


/* ==========================================
   PROCESS WRAPPER
========================================== */

.bk-process-wrapper {
    position: relative;

    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 20px;
}


/* Horizontal connecting line */

.bk-process-wrapper::before {
    content: "";

    position: absolute;

    top: 67px;

    left: 8%;

    right: 8%;

    height: 2px;

    background: #d9eef4;

    z-index: 0;
}


/* ==========================================
   PROCESS STEP
========================================== */

.bk-process-step {
    position: relative;

    z-index: 1;

    text-align: center;

    padding: 0 10px;
}


/* NUMBER */

.bk-step-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    margin-bottom: 14px;

    background: #1746a2;

    color: #ffffff;

    border-radius: 50%;

    font-size: 11px;

    font-weight: 700;

    border: 4px solid #ffffff;

    box-shadow: 0 2px 0 #dcecf1;
}


/* ICON */

.bk-step-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #eaf9fc;

    color: #08bde8;

    border: 1px solid #d6f0f5;

    border-radius: 50%;

    font-size: 23px;

    transition: all 0.3s ease;
}


.bk-process-step:hover .bk-step-icon {
    background: #08bde8;

    color: #ffffff;

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(8, 189, 232, 0.20);
}


/* TITLE */

.bk-process-step h3 {
    margin: 0 0 10px;

    color: #142f59;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 17px;

    line-height: 1.35;

    font-weight: 700;
}


/* DESCRIPTION */

.bk-process-step p {
    margin: 0;

    color: #777777;

    font-size: 13px;

    line-height: 1.6;
}


/* ==========================================
   BOTTOM APPLICATION STRIP
========================================== */

.bk-process-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-top: 70px;

    padding: 25px 30px;

    background: #f2fafc;

    border-left: 5px solid #08bde8;

    border-radius: 8px;
}


/* LEFT */

.bk-process-bottom-title {
    min-width: 220px;
}

.bk-process-bottom-title span {
    display: block;

    margin-bottom: 5px;

    color: #08bde8;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 1px;
}

.bk-process-bottom-title strong {
    display: block;

    color: #142f59;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;

    line-height: 1.3;
}


/* ==========================================
   APPLICATION LIST
========================================== */

.bk-application-list {
    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 25px;

    flex-wrap: wrap;
}

.bk-application-list > div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #1746a2;

    font-size: 13px;

    font-weight: 700;

    white-space: nowrap;
}

.bk-application-list i {
    color: #08bde8;

    font-size: 17px;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {

    .bk-process-wrapper {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 45px;
    }

    .bk-process-wrapper::before {
        display: none;
    }

    .bk-process-heading h2 {
        font-size: 38px;
    }

    .bk-process-bottom {
        flex-direction: column;

        align-items: flex-start;
    }

    .bk-application-list {
        justify-content: flex-start;
    }
}


@media (max-width: 768px) {

    .bk-process-section {
        padding: 70px 0;
    }

    .bk-process-wrapper {
        grid-template-columns: 1fr 1fr;

        gap: 40px 20px;
    }

    .bk-process-heading {
        margin-bottom: 45px;
    }

    .bk-process-heading h2 {
        font-size: 32px;
    }

    .bk-process-heading p {
        font-size: 14px;
    }

    .bk-process-bottom {
        margin-top: 50px;
    }

}


@media (max-width: 550px) {

    .bk-process-container {
        width: 92%;
    }

    .bk-process-wrapper {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .bk-process-heading h2 {
        font-size: 29px;
    }

    .bk-process-heading h2 strong {
        display: inline;
    }

    .bk-step-icon {
        width: 60px;
        height: 60px;

        font-size: 20px;
    }

    .bk-process-step p {
        max-width: 330px;

        margin: auto;
    }

    .bk-process-bottom {
        padding: 22px;

        margin-top: 45px;
    }

    .bk-application-list {
        display: grid;

        grid-template-columns: 1fr 1fr;

        width: 100%;

        gap: 18px;
    }

}

.bk-step-icon {
    width: 68px;
    height: 68px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eaf9fc;

    color: #08bde8;

    border: 1px solid #d6f0f5;

    border-radius: 50%;

    font-size: 23px;

    line-height: 1;

    transition: all 0.3s ease;
}

.bk-step-icon i {
    display: inline-block;

    font-size: 23px;

    color: #08bde8;

    line-height: 1;
}

.bk-process-step:hover .bk-step-icon {
    background: #08bde8;
    color: #ffffff;

    transform: translateY(-5px);

    box-shadow: 0 10px 25px rgba(8, 189, 232, 0.20);
}

.bk-process-step:hover .bk-step-icon i {
    color: #ffffff;
}

/* ==========================================
   BK SYSTEMS HEADER
========================================== */

.bk-header {
    position: relative;

    width: 100%;

    background: #ffffff;

    border-bottom: 1px solid #e8eef2;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);

    z-index: 9999;
}


.bk-header-container {
    width: 92%;
    max-width: 1400px;

    height: 82px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* ==========================================
   LOGO
========================================== */

.bk-logo {
    display: flex;

    align-items: center;

    flex-shrink: 0;

    text-decoration: none;
}

.bk-logo img {
    width: 115px;

    height: auto;

    max-height: 55px;

    object-fit: contain;

    display: block;
}


/* ==========================================
   NAVIGATION
========================================== */

.bk-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 32px;

    margin-left: auto;
}


.bk-nav > a,
.bk-dropdown > a {
    position: relative;

    display: flex;

    align-items: center;

    gap: 6px;

    height: 82px;

    color: #142f59;

    text-decoration: none;

    font-size: 15px;

    font-weight: 500;

    transition: color 0.3s ease;
}


.bk-nav > a:hover,
.bk-dropdown > a:hover,
.bk-nav > a.active {
    color: #08bde8;
}


/* Active line */

.bk-nav > a.active::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;

    bottom: 0;

    height: 3px;

    background: #0074ea;

    border-radius: 3px 3px 0 0;
}


/* ==========================================
   DROPDOWN
========================================== */

.bk-dropdown {
    position: relative;
}


.bk-dropdown > a i {
    font-size: 9px;
}


.bk-dropdown-menu {
    position: absolute;

    top: 100%;

    left: 0;

    min-width: 190px;

    padding: 10px 0;

    background: #ffffff;

    border: 1px solid #edf1f4;

    border-radius: 6px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.10);

    opacity: 0;

    visibility: hidden;

    transform: translateY(8px);

    transition: all 0.25s ease;
}


.bk-dropdown:hover .bk-dropdown-menu {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}


.bk-dropdown-menu a {
    display: block;

    padding: 10px 18px;

    color: #142f59;

    text-decoration: none;

    font-size: 14px;

    transition: all 0.2s ease;
}


.bk-dropdown-menu a:hover {
    background: #f1fafc;

    color: #08bde8;
}


/* ==========================================
   HEADER RIGHT
========================================== */

.bk-header-right {
    display: flex;

    align-items: center;

    gap: 22px;

    flex-shrink: 0;
}


/* SUPPORT */

.bk-support {
    padding-right: 20px;

    border-right: 1px solid #dce5e9;
}


.bk-support span {
    display: block;

    margin-bottom: 2px;

    color: #777777;

    font-size: 12px;
}


.bk-support a {
    color: #08bde8;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;
}


/* ==========================================
   CONSULTING BUTTON
========================================== */

.bk-header-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 24px;

    background: #0074ea;

    color: #ffffff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    transition: all 0.3s ease;
}


.bk-header-btn:hover {
    background: #1746a2;

    color: #ffffff;

    transform: translateY(-2px);
}


/* ==========================================
   MOBILE MENU
========================================== */

.bk-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 5px;

    background: #08bde8;

    color: #ffffff;

    font-size: 18px;

    cursor: pointer;
}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1100px) {

    .bk-nav {
        gap: 20px;
    }

    .bk-header-right {
        gap: 12px;
    }

    .bk-support {
        display: none;
    }

    .bk-header-btn {
        padding: 11px 18px;
    }
}


@media (max-width: 850px) {

    .bk-header-container {
        height: 72px;
    }

    .bk-nav,
    .bk-header-right {
        display: none;
    }

    .bk-menu-toggle {
        display: flex;

        align-items: center;

        justify-content: center;
    }

    .bk-logo img {
        width: 100px;
    }
}

.bk-logo img {
    width: 115px;
    height: auto;
    display: block;
}

/* ==========================================
   BK SYSTEMS RESPONSIVE HERO SLIDER
========================================== */

.bk-hero-slider {
    position: relative;

    width: 100%;
    max-width: 100%;

    overflow: hidden;

    background: #ffffff;

    line-height: 0;
}


/* ==========================================
   SLIDES
========================================== */

.bk-slides {
    position: relative;

    width: 100%;

    overflow: hidden;
}


.bk-slide {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;

    z-index: 1;
}


.bk-slide.active {
    position: relative;

    opacity: 1;

    visibility: visible;

    z-index: 2;
}


/* ==========================================
   IMAGE
========================================== */

.bk-slide picture {
    display: block;

    width: 100%;
}


.bk-slide img {
    display: block;

    width: 100%;
    height: auto;

    min-width: 100%;

    object-fit: cover;
}


/* ==========================================
   DESKTOP BANNER
========================================== */

@media (min-width: 768px) {

    .bk-hero-slider {
        height: auto;

        min-height: 480px;
    }

    .bk-slide img {
        width: 100%;

        height: auto;

        min-height: 480px;

        object-fit: cover;

        object-position: center center;
    }

}


/* ==========================================
   ARROWS
========================================== */

.bk-slider-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 20;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(23, 70, 162, 0.90);

    color: #ffffff;

    font-size: 16px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.bk-slider-arrow:hover {
    background: #08bde8;

    transform: translateY(-50%) scale(1.05);
}


.bk-prev {
    left: 25px;
}


.bk-next {
    right: 25px;
}


/* ==========================================
   DOTS
========================================== */

.bk-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 20px;

    transform: translateX(-50%);

    z-index: 30;

    display: flex;

    align-items: center;

    gap: 8px;

    line-height: normal;
}


.bk-dot {
    width: 9px;
    height: 9px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.65);

    cursor: pointer;

    transition: all 0.3s ease;
}


.bk-dot.active {
    width: 25px;

    border-radius: 10px;

    background: #08bde8;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .bk-slider-arrow {
        width: 42px;
        height: 42px;

        font-size: 14px;
    }

    .bk-prev {
        left: 15px;
    }

    .bk-next {
        right: 15px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .bk-hero-slider {
        width: 100%;

        height: auto;

        min-height: 0;
    }


    .bk-slide img {
        width: 100%;

        height: auto;

        min-height: 0;

        object-fit: contain;

        object-position: center;
    }


    .bk-slider-arrow {
        width: 36px;
        height: 36px;

        font-size: 12px;

        background: rgba(23, 70, 162, 0.85);
    }


    .bk-prev {
        left: 10px;
    }


    .bk-next {
        right: 10px;
    }


    .bk-slider-dots {
        bottom: 10px;

        gap: 6px;
    }


    .bk-dot {
        width: 7px;
        height: 7px;
    }


    .bk-dot.active {
        width: 20px;
    }

}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .bk-slider-arrow {
        width: 32px;
        height: 32px;
    }

    .bk-prev {
        left: 7px;
    }

    .bk-next {
        right: 7px;
    }

}

/* =========================================
   BK SYSTEMS HERO SLIDER
========================================= */

.bk-hero {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #ffffff;

    margin: 0;
    padding: 0;

    line-height: 0;
}


/* SLIDES CONTAINER */

.bk-hero-slides {
    position: relative;

    width: 100%;

    overflow: hidden;
}


/* INDIVIDUAL SLIDE */

.bk-hero-slide {
    display: none;

    width: 100%;

    margin: 0;
    padding: 0;
}


/* ACTIVE SLIDE */

.bk-hero-slide.active {
    display: block;
}


/* IMAGE */

.bk-hero-slide picture {
    display: block;

    width: 100%;

    margin: 0;
    padding: 0;
}


.bk-hero-slide img {
    display: block;

    width: 100%;

    height: auto;

    max-width: 100%;

    margin: 0;
    padding: 0;

    object-fit: cover;
}


/* =========================================
   DESKTOP
========================================= */

@media (min-width: 768px) {

    .bk-hero-slide img {
        width: 100%;

        height: auto;

        min-height: 450px;

        object-fit: cover;

        object-position: center;
    }

}


/* =========================================
   ARROWS
========================================= */

.bk-hero-prev,
.bk-hero-next {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 50;

    width: 46px;
    height: 46px;

    border: none;

    border-radius: 50%;

    background: #1746a2;

    color: #ffffff;

    font-size: 23px;

    line-height: 46px;

    text-align: center;

    cursor: pointer;

    padding: 0;

    transition: all 0.3s ease;
}


.bk-hero-prev {
    left: 20px;
}


.bk-hero-next {
    right: 20px;
}


.bk-hero-prev:hover,
.bk-hero-next:hover {
    background: #08bde8;

    transform: translateY(-50%) scale(1.08);
}


/* =========================================
   DOTS
========================================= */

.bk-hero-dots {

    position: absolute;

    bottom: 18px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 60;

    display: flex;

    align-items: center;

    gap: 8px;

    line-height: normal;
}


.bk-hero-dot {

    width: 9px;
    height: 9px;

    padding: 0;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.75);

    cursor: pointer;

    transition: all 0.3s ease;
}


.bk-hero-dot.active {

    width: 25px;

    border-radius: 10px;

    background: #08bde8;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .bk-hero {
        width: 100%;

        overflow: hidden;
    }


    .bk-hero-slide img {

        width: 100%;

        height: auto;

        min-height: 0;

        object-fit: contain;

    }


    .bk-hero-prev,
    .bk-hero-next {

        width: 34px;
        height: 34px;

        line-height: 34px;

        font-size: 16px;

    }


    .bk-hero-prev {
        left: 8px;
    }


    .bk-hero-next {
        right: 8px;
    }


    .bk-hero-dots {

        bottom: 10px;

        gap: 6px;

    }


    .bk-hero-dot {

        width: 7px;
        height: 7px;

    }


    .bk-hero-dot.active {

        width: 19px;

    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .bk-hero-prev,
    .bk-hero-next {

        width: 30px;
        height: 30px;

        line-height: 30px;

        font-size: 14px;

    }

}

.bk-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.bk-hero-slides {
    position: relative;
    width: 100%;
}

.bk-hero-slide {
    display: none !important;
    width: 100%;
}

.bk-hero-slide.active {
    display: block !important;
}

.bk-hero-slide picture {
    display: block;
    width: 100%;
}

.bk-hero-slide img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* BK SYSTEMS LOGO SIZE */
.bk-logo {
    display: flex;
    align-items: center;
    height: 90px;
    overflow: visible;
}

.bk-logo img {
    width: 230px !important;
    height: 85px !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
    display: block;
}

/* =========================================
   BK SYSTEMS - SERVICES SECTION
========================================= */

.bk-services {
    position: relative;
    padding: 100px 0;
    background: #f3fbfd;
    overflow: hidden;
}

/* Soft background water effect */
.bk-services::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(0, 183, 232, 0.05);
    top: -250px;
    right: -180px;
}

.bk-services::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(25, 78, 145, 0.04);
    bottom: -220px;
    left: -180px;
}

.bk-section-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin: 0 auto 65px;
}

.bk-section-heading span {
    display: inline-block;
    color: #08b8e6;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.bk-section-heading h2 {
    margin: 0;
    color: #0d2d5c;
    font-size: 46px;
    line-height: 1.15;
    font-weight: 700;
}

.bk-section-heading h2 strong {
    color: #08b8e6;
}

.bk-section-heading p {
    margin: 20px auto 0;
    max-width: 720px;
    color: #707070;
    font-size: 17px;
    line-height: 1.7;
}


/* SERVICE GRID */

.bk-service-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* CARD */

.bk-service-card {
    position: relative;
    display: flex;
    min-height: 215px;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e2f0f4;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.bk-service-card::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0;
    left: 0;
    top: 0;
    background: #08b8e6;
    transition: height 0.35s ease;
}

.bk-service-card:hover {
    transform: translateY(-7px);
    border-color: #bcebf5;
    box-shadow: 0 15px 40px rgba(13, 45, 92, 0.10);
}

.bk-service-card:hover::before {
    height: 100%;
}


/* NUMBER */

.bk-service-number {
    flex: 0 0 65px;
    color: #dceff4;
    font-size: 48px;
    line-height: 1;
    font-weight: 800;
    transition: color 0.35s ease;
}

.bk-service-card:hover .bk-service-number {
    color: #08b8e6;
}


/* CONTENT */

.bk-service-content small {
    display: block;
    margin-bottom: 7px;
    color: #08b8e6;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.bk-service-content h3 {
    margin: 0 0 12px;
    color: #0d2d5c;
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
}

.bk-service-content p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.65;
}


/* BOTTOM */

.bk-services-bottom {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 55px;
}

.bk-services-bottom span {
    width: 80px;
    height: 1px;
    background: #b9e8f2;
}

.bk-services-bottom p {
    margin: 0;
    color: #0d2d5c;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .bk-services {
        padding: 75px 20px;
    }

    .bk-section-heading h2 {
        font-size: 38px;
    }

    .bk-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .bk-services {
        padding: 60px 15px;
    }

    .bk-section-heading {
        margin-bottom: 40px;
    }

    .bk-section-heading h2 {
        font-size: 30px;
    }

    .bk-section-heading p {
        font-size: 15px;
    }

    .bk-service-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bk-service-card {
        min-height: auto;
        padding: 25px;
    }

    .bk-service-number {
        flex-basis: 55px;
        font-size: 38px;
    }

    .bk-service-content h3 {
        font-size: 19px;
    }

    .bk-services-bottom {
        margin-top: 35px;
    }

    .bk-services-bottom span {
        width: 35px;
    }
}

/* =========================================
   BK SYSTEMS CONTACT SECTION
========================================= */

.bk-contact-section {
    padding: 100px 0;
    background: #f4fbfd;
}

.bk-contact-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.bk-contact-heading > span {
    display: block;
    margin-bottom: 12px;
    color: #08b8e6;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

.bk-contact-heading h2 {
    margin: 0;
    color: #0d2d5c;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.bk-contact-heading h2 strong {
    color: #08b8e6;
}

.bk-contact-heading p {
    margin: 18px auto 0;
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}


/* MAIN WRAPPER */

.bk-contact-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(13, 45, 92, 0.10);
}


/* LEFT */

.bk-contact-left {
    position: relative;
    background: #0d2d5c;
    color: #ffffff;
}

.bk-contact-image {
    position: relative;
    height: 330px;
    overflow: hidden;
}

.bk-contact-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(13,45,92,0.05),
        rgba(13,45,92,0.85)
    );
}

.bk-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* IMAGE TEXT */

.bk-contact-overlay {
    position: absolute;
    z-index: 2;
    left: 35px;
    right: 35px;
    top: 205px;
}

.bk-contact-overlay span {
    color: #08b8e6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.bk-contact-overlay h3 {
    margin: 8px 0;
    color: #ffffff;
    font-size: 27px;
    line-height: 1.2;
}

.bk-contact-overlay p {
    margin: 0;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    line-height: 1.6;
}


/* DETAILS */

.bk-contact-details {
    padding: 30px 35px 35px;
}

.bk-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

.bk-contact-detail:last-child {
    border-bottom: none;
}

.bk-contact-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #08b8e6;
    color: #ffffff;
}

.bk-contact-detail small {
    display: block;
    margin-bottom: 4px;
    color: #8ddff1;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.bk-contact-detail a,
.bk-contact-detail p {
    margin: 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
}


/* RIGHT FORM */

.bk-contact-form-box {
    padding: 45px;
}

.bk-form-title {
    margin-bottom: 28px;
}

.bk-form-title span {
    color: #08b8e6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.bk-form-title h3 {
    margin: 6px 0 8px;
    color: #0d2d5c;
    font-size: 30px;
}

.bk-form-title p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* FORM */

.bk-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bk-form-group {
    margin-bottom: 20px;
}

.bk-form-group label {
    display: block;
    margin-bottom: 7px;
    color: #0d2d5c;
    font-size: 13px;
    font-weight: 600;
}

.bk-form-group input,
.bk-form-group select,
.bk-form-group textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid #dce8ed;
    border-radius: 6px;
    background: #fbfdfe;
    color: #333;
    font-size: 14px;
    outline: none;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

.bk-form-group input:focus,
.bk-form-group select:focus,
.bk-form-group textarea:focus {
    border-color: #08b8e6;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(8,184,230,0.08);
}

.bk-form-group textarea {
    resize: vertical;
    min-height: 130px;
}


/* BUTTON */

.bk-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border: none;
    border-radius: 5px;
    background: #0d2d5c;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bk-submit-btn:hover {
    background: #08b8e6;
    transform: translateY(-2px);
}


/* MOBILE */

@media (max-width: 991px) {

    .bk-contact-wrapper {
        grid-template-columns: 1fr;
    }

    .bk-contact-form-box {
        padding: 35px 25px;
    }
}

@media (max-width: 767px) {

    .bk-contact-section {
        padding: 60px 15px;
    }

    .bk-contact-heading h2 {
        font-size: 30px;
    }

    .bk-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bk-contact-image {
        height: 300px;
    }

    .bk-contact-overlay {
        top: 170px;
        left: 25px;
        right: 25px;
    }
}

.bk-form-message {
    display: none;
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.bk-form-message.success {
    display: block;
    background: #eafaf1;
    border: 1px solid #b9e8cc;
    color: #16834b;
}

.bk-form-message.error {
    display: block;
    background: #fff1f1;
    border: 1px solid #f0bcbc;
    color: #c62828;
}


/* Loading button */

.bk-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.bk-submit-btn.loading i {
    display: none;
}

.bk-submit-btn.loading span::after {
    content: " ...";
}

.bk-form-message {
    display: none;
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
}

.bk-form-message.success {
    display: block;
    background: #eafaf1;
    border: 1px solid #b9e8cc;
    color: #16834b;
}

.bk-form-message.error {
    display: block;
    background: #fff1f1;
    border: 1px solid #f0bcbc;
    color: #c62828;
}


/* Loading button */

.bk-submit-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.bk-submit-btn.loading i {
    display: none;
}

.bk-submit-btn.loading span::after {
    content: " ...";
}

/* ================================
   FORM RESPONSE MESSAGE
================================ */

.bk-form-message {
    display: none;
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}


/* SUCCESS */

.bk-form-message.success {
    display: block;
    background: #eaf8f1;
    border: 1px solid #b7e4ca;
    color: #147a43;
}


/* ERROR */

.bk-form-message.error {
    display: block;
    background: #fff1f1;
    border: 1px solid #efbcbc;
    color: #c62828;
}


/* ================================
   SUBMIT BUTTON LOADING
================================ */

.bk-submit-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
}

.bk-submit-btn.loading i {
    display: none;
}

.bk-submit-btn.loading span::after {
    content: " ...";
}


/* ================================
   SUCCESS MESSAGE MOBILE
================================ */

@media (max-width: 767px) {

    .bk-form-message {
        font-size: 13px;
        padding: 12px 14px;
    }

}

/* =========================================
   HOME SERVICES
========================================= */

.bk-services-home {
    padding: 0px 0 0;
    background: #f7fcfe;
    overflow: hidden;
}


/* SECTION HEADING */

.bk-services-home .bk-section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.bk-services-home .bk-section-heading span {
    display: inline-block;
    color: #08b8e8;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.bk-services-home .bk-section-heading h2 {
    margin: 0;
    color: #102f61;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;
}

.bk-services-home .bk-section-heading h2 strong {
    color: #08b8e8;
}

.bk-services-home .bk-section-heading p {
    margin: 18px auto 0;
    max-width: 720px;
    color: #777;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   SERVICE GRID
========================================= */

.bk-service-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}


/* CARD */

.bk-service-card-home {
    position: relative;
    display: flex;
    gap: 20px;
    padding: 30px 28px;
    background: #fff;
    border: 1px solid #e6f0f4;
    border-radius: 10px;
    min-height: 190px;
    transition: all .3s ease;
    overflow: hidden;
}

.bk-service-card-home:hover {
    transform: translateY(-6px);
    border-color: #08b8e8;
    box-shadow: 0 15px 40px rgba(0, 80, 130, .10);
}


/* NUMBER */

.bk-service-number {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #eaf9fd;
    color: #08aede;
    font-size: 14px;
    font-weight: 700;
    transition: all .3s ease;
}

.bk-service-card-home:hover .bk-service-number {
    background: #08b8e8;
    color: #fff;
}


/* CONTENT */

.bk-service-content {
    flex: 1;
}

.bk-service-content small {
    display: block;
    margin-bottom: 7px;
    color: #08b8e8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.bk-service-content h3 {
    margin: 0 0 10px;
    color: #102f61;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

.bk-service-content p {
    margin: 0;
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   HIDDEN SERVICES
========================================= */

.bk-more-services {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.bk-more-services.show {
    display: grid;
}


/* =========================================
   VIEW ALL BUTTON
========================================= */

.bk-services-read-more {
    text-align: center;
    margin: 45px 0 70px;
}

.bk-service-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 190px;
    padding: 14px 28px;
    border: 0;
    border-radius: 5px;
    background: #103f91;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
}

.bk-service-toggle:hover {
    background: #08b8e8;
    transform: translateY(-2px);
}

.bk-service-toggle i {
    font-size: 12px;
    transition: transform .3s ease;
}

.bk-service-toggle.active i {
    transform: rotate(180deg);
}


/* =========================================
   SERVICE MARQUEE
========================================= */

.bk-service-marquee {
    width: 100%;
    overflow: hidden;
    background: #103f91;
    border-top: 1px solid rgba(255,255,255,.12);
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 18px 0;
}

.bk-marquee-track {
    display: flex;
    width: max-content;
    animation: bkServiceMarquee 45s linear infinite;
}

.bk-service-marquee:hover .bk-marquee-track {
    animation-play-state: paused;
}

.bk-marquee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,.25);
}

.bk-marquee-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #08b8e8;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
}

.bk-marquee-item strong {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}


/* MARQUEE ANIMATION */

@keyframes bkServiceMarquee {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .bk-services-home {
        padding-top: 75px;
    }

    .bk-services-home .bk-section-heading h2 {
        font-size: 38px;
    }

    .bk-service-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }

    .bk-more-services {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .bk-services-home {
        padding-top: 60px;
    }

    .bk-services-home .bk-section-heading {
        margin-bottom: 35px;
        padding: 0 15px;
    }

    .bk-services-home .bk-section-heading h2 {
        font-size: 30px;
    }

    .bk-services-home .bk-section-heading p {
        font-size: 14px;
    }

    .bk-service-grid-home {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bk-more-services {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bk-service-card-home {
        padding: 24px 20px;
    }

    .bk-service-content h3 {
        font-size: 18px;
    }

    .bk-services-read-more {
        margin: 35px 0 50px;
    }

    .bk-marquee-item {
        padding: 0 22px;
    }

    .bk-marquee-item strong {
        font-size: 13px;
    }

}

.bk-about-banner {
    position: relative;
    width: 100%;
    height: 250px;
    min-height: 250px;

    background-image: url("../img/about-banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    overflow: hidden;
}

.bk-about-banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(0, 25, 65, 0.85),
        rgba(0, 80, 130, 0.45),
        rgba(0, 0, 0, 0.15)
    );
}

.bk-about-banner-content {
    position: relative;
    z-index: 2;

    width: 1200px;
    max-width: 90%;
    margin: auto;

    color: #ffffff;
}

.bk-about-banner-content span {
    display: block;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;

    color: #11b9e8;

    margin-bottom: 8px;
}

.bk-about-banner-content h1 {
    margin: 0;

    font-size: 42px;
    line-height: 1.15;
    font-weight: 700;
}

.bk-about-banner-content h1 strong {
    color: #12b9e8;
}

.bk-about-banner-content p {
    margin: 12px 0 0;

    max-width: 700px;

    font-size: 17px;
    line-height: 1.6;
    color: #ffffff;
}


/* MOBILE */

@media (max-width: 767px) {

    .bk-about-banner {
        height: 250px;
    }

    .bk-about-banner-content h1 {
        font-size: 30px;
    }

    .bk-about-banner-content p {
        font-size: 14px;
    }

}

.bk-about-why {
    padding: 90px 0;
    background: #f2fafd;
}

.bk-section-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 55px;
}

.bk-section-heading > span {
    display: block;

    color: #08b7e5;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;

    margin-bottom: 10px;
}

.bk-section-heading h2 {
    margin: 0 0 18px;

    color: #102e5c;

    font-size: 42px;
    line-height: 1.2;
}

.bk-section-heading h2 strong {
    color: #08b7e5;
}

.bk-section-heading p {
    color: #777;

    font-size: 16px;
    line-height: 1.7;

    margin: 0;
}


.bk-about-why-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.bk-about-why-card {
    position: relative;

    background: #ffffff;

    padding: 35px 30px;

    border-radius: 12px;

    border: 1px solid #e7f0f4;

    transition: all 0.3s ease;
}

.bk-about-why-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 15px 35px rgba(0, 80, 120, 0.10);
}

.bk-about-why-card > i {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #e6f8fd;

    color: #08b7e5;

    border-radius: 50%;

    font-size: 22px;

    margin-bottom: 20px;
}

.bk-about-why-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #dceff5;

    font-size: 38px;
    font-weight: 700;
}

.bk-about-why-card h3 {
    color: #102e5c;

    font-size: 21px;

    margin-bottom: 12px;
}

.bk-about-why-card p {
    color: #777;

    font-size: 15px;

    line-height: 1.7;

    margin: 0;
}


@media (max-width: 991px) {

    .bk-about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 575px) {

    .bk-about-why-grid {
        grid-template-columns: 1fr;
    }

    .bk-section-heading h2 {
        font-size: 30px;
    }

}

.bk-about-facts {
    padding: 65px 0;

    background: #0d2e5d;
}

.bk-facts-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.bk-fact {
    text-align: center;

    color: #ffffff;

    padding: 15px;
}

.bk-fact-icon {
    width: 60px;
    height: 60px;

    margin: 0 auto 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.10);

    color: #10b9e8;

    font-size: 22px;
}

.bk-fact strong {
    display: block;

    font-size: 38px;

    color: #ffffff;

    line-height: 1;

    margin-bottom: 10px;
}

.bk-fact span {
    display: block;

    color: rgba(255,255,255,0.80);

    font-size: 15px;

    line-height: 1.4;
}

@media (max-width: 767px) {

    .bk-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* ================================
   BK ABOUT SECTION
================================ */

.bk-about-section {
    padding: 100px 0;
    background: #ffffff;
}

.bk-about-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}


/* IMAGE */

.bk-about-image-wrap {
    position: relative;
    padding-bottom: 35px;
    padding-right: 30px;
}

.bk-about-image {
    width: 100%;
    height: 620px;
    overflow: hidden;
    border-radius: 12px;
}

.bk-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* EXPERIENCE BOX */

.bk-about-experience {
    position: absolute;
    left: -15px;
    bottom: 0;
    background: #17499b;
    color: #fff;
    padding: 22px 30px;
    border-radius: 0 12px 0 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.bk-about-experience strong {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
}

.bk-about-experience span {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}


/* CONTENT */

.bk-section-tag {
    display: inline-block;
    color: #08b5e5;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.bk-about-content h2 {
    margin: 0 0 25px;
    font-size: 48px;
    line-height: 1.15;
    color: #102d5b;
    font-weight: 700;
}

.bk-about-content h2 strong {
    display: block;
    color: #08b5e5;
}

.bk-about-content p {
    color: #6d6d6d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.bk-about-content p strong {
    color: #173d76;
}


/* SERVICE COVERAGE */

.bk-about-services {
    margin-top: 100px;
}

.bk-about-services-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.bk-about-services-heading span {
    color: #08b5e5;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2px;
}

.bk-about-services-heading h3 {
    color: #102d5b;
    font-size: 42px;
    line-height: 1.2;
    margin: 12px 0 18px;
}

.bk-about-services-heading h3 strong {
    color: #08b5e5;
}

.bk-about-services-heading p {
    color: #777;
    font-size: 16px;
    line-height: 1.7;
}


/* SERVICE GRID */

.bk-about-service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.bk-about-service {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f5fbfd;
    border: 1px solid #e2f1f5;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.bk-about-service:hover {
    transform: translateY(-4px);
    border-color: #08b5e5;
    box-shadow: 0 12px 30px rgba(0, 120, 180, 0.08);
}

.bk-about-service > span {
    flex: 0 0 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #08b5e5;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.bk-about-service h4 {
    color: #153b72;
    font-size: 19px;
    line-height: 1.35;
    margin: 0 0 8px;
}

.bk-about-service p {
    color: #777;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


/* CTA */

.bk-about-cta {
    margin-top: 70px;
    padding: 40px 45px;
    background: #102f61;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.bk-about-cta span {
    color: #08b5e5;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.bk-about-cta h3 {
    color: #fff;
    font-size: 30px;
    margin: 8px 0;
}

.bk-about-cta p {
    color: rgba(255,255,255,0.75);
    margin: 0;
    line-height: 1.6;
}

.bk-about-cta-btn {
    flex-shrink: 0;
    background: #08b5e5;
    color: #fff;
    padding: 15px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.bk-about-cta-btn:hover {
    background: #fff;
    color: #102f61;
}

.bk-about-cta-btn i {
    margin-left: 8px;
}


/* ================================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .bk-about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .bk-about-image {
        height: 500px;
    }

    .bk-about-content h2 {
        font-size: 40px;
    }

    .bk-about-service-grid {
        grid-template-columns: 1fr;
    }

    .bk-about-cta {
        flex-direction: column;
        align-items: flex-start;
    }

}

@media (max-width: 767px) {

    .bk-about-section {
        padding: 65px 0;
    }

    .bk-about-image-wrap {
        padding-right: 15px;
        padding-bottom: 30px;
    }

    .bk-about-image {
        height: 420px;
    }

    .bk-about-experience {
        left: 0;
        padding: 16px 20px;
    }

    .bk-about-experience strong {
        font-size: 32px;
    }

    .bk-about-content h2 {
        font-size: 32px;
    }

    .bk-about-content p {
        font-size: 15px;
    }

    .bk-about-services {
        margin-top: 65px;
    }

    .bk-about-services-heading h3 {
        font-size: 30px;
    }

    .bk-about-service {
        padding: 20px;
    }

    .bk-about-service h4 {
        font-size: 17px;
    }

    .bk-about-cta {
        padding: 30px 25px;
    }

    .bk-about-cta h3 {
        font-size: 24px;
    }

}

.bk-about-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

/* Center the last 2 cards */
.bk-about-service:nth-child(15),
.bk-about-service:nth-child(16) {
    width: 85%;
}

/* Card 15 moves toward center */
.bk-about-service:nth-child(15) {
    justify-self: end;
}

/* Card 16 moves toward center */
.bk-about-service:nth-child(16) {
    justify-self: start;
}

/* =====================================================
   BK SYSTEMS - CREATIVE FOOTER
===================================================== */

.bk-footer {
    background: #061b46;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* subtle water effect */
.bk-footer::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(8, 181, 229, 0.05);
    top: -250px;
    right: -150px;
    pointer-events: none;
}

.bk-footer::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(8, 181, 229, 0.04);
    bottom: -250px;
    left: -150px;
    pointer-events: none;
}


/* =====================================================
   TOP
===================================================== */

.bk-footer-top {
    padding: 75px 0 55px;

    display: grid;

    grid-template-columns:
        1.5fr
        0.8fr
        1fr
        1.3fr;

    gap: 55px;

    position: relative;
    z-index: 2;
}


/* =====================================================
   BRAND
===================================================== */

.bk-footer-brand {
    padding-right: 20px;
}

.bk-footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.bk-footer-logo img {
    width: 210px;
    height: auto;
    max-height: 85px;
    object-fit: contain;
}

.bk-footer-brand p {
    color: rgba(255,255,255,0.72);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 390px;
}


/* CTA */

.bk-footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #08b5e5;
    color: #ffffff;

    padding: 13px 20px;

    border-radius: 6px;

    font-weight: 700;
    font-size: 14px;

    text-decoration: none;

    transition: all 0.3s ease;
}

.bk-footer-cta:hover {
    background: #ffffff;
    color: #102f61;
}

.bk-footer-cta i {
    transition: transform 0.3s ease;
}

.bk-footer-cta:hover i {
    transform: translateX(5px);
}


/* =====================================================
   FOOTER HEADINGS
===================================================== */

.bk-footer-column h4,
.bk-footer-hours h4,
.bk-footer-social h4 {
    color: #ffffff;

    font-size: 19px;

    font-weight: 700;

    margin-bottom: 25px;

    position: relative;

    padding-bottom: 12px;
}

.bk-footer-column h4::after,
.bk-footer-hours h4::after,
.bk-footer-social h4::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 40px;
    height: 3px;

    background: #08b5e5;

    border-radius: 10px;
}


/* =====================================================
   QUICK LINKS
===================================================== */

.bk-footer-column ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.bk-footer-column ul li {
    margin-bottom: 12px;
}

.bk-footer-column ul li a {
    color: rgba(255,255,255,0.70);

    text-decoration: none;

    font-size: 14px;

    transition: all 0.3s ease;
}

.bk-footer-column ul li a i {
    color: #08b5e5;
    margin-right: 7px;
}

.bk-footer-column ul li a:hover {
    color: #08b5e5;
    padding-left: 5px;
}


/* =====================================================
   CONTACT
===================================================== */

.bk-footer-contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 18px;

    color: rgba(255,255,255,0.75);

    text-decoration: none;

    font-size: 14px;

    line-height: 1.6;

    transition: 0.3s ease;
}

.bk-footer-contact-item:hover {
    color: #08b5e5;
}

.bk-footer-icon {
    width: 38px;
    height: 38px;

    min-width: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(8,181,229,0.12);

    border: 1px solid rgba(8,181,229,0.25);

    border-radius: 50%;

    color: #08b5e5;
}

.bk-footer-contact-item small {
    display: block;

    color: #08b5e5;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 2px;
}


/* =====================================================
   WHATSAPP FOOTER BUTTON
===================================================== */

.bk-footer-whatsapp {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    background: #25d366;

    color: #ffffff;

    padding: 11px 17px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    margin-top: 5px;

    transition: 0.3s ease;
}

.bk-footer-whatsapp:hover {
    background: #1ebe5d;

    color: #ffffff;

    transform: translateY(-2px);
}

.bk-footer-whatsapp i {
    font-size: 18px;
}


/* =====================================================
   MIDDLE AREA
===================================================== */

.bk-footer-middle {
    position: relative;
    z-index: 2;

    border-top: 1px solid rgba(255,255,255,0.10);

    padding: 35px 0 45px;

    display: grid;

    grid-template-columns: 1.5fr 1fr 0.9fr;

    gap: 35px;

    align-items: start;
}


/* =====================================================
   MAP
===================================================== */

.bk-footer-map-title {
    color: #ffffff;

    font-size: 17px;

    font-weight: 700;

    margin-bottom: 15px;
}

.bk-footer-map-title i {
    color: #08b5e5;

    margin-right: 7px;
}

.bk-footer-map iframe {
    width: 100%;

    height: 190px;

    border: 0;

    border-radius: 8px;

    display: block;
}


/* =====================================================
   BUSINESS HOURS
===================================================== */

.bk-footer-hours {
    padding: 0 15px;
}

.bk-hours-row {
    display: flex;

    flex-direction: column;

    gap: 4px;

    padding: 12px 0;

    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.bk-hours-row span {
    color: rgba(255,255,255,0.60);

    font-size: 13px;
}

.bk-hours-row strong {
    color: #ffffff;

    font-size: 14px;
}

.bk-footer-hours-note {
    color: rgba(255,255,255,0.60);

    font-size: 13px;

    line-height: 1.6;

    margin-top: 18px;
}

.bk-footer-hours-note i {
    color: #08b5e5;

    margin-right: 5px;
}


/* =====================================================
   SOCIAL MEDIA
===================================================== */

.bk-footer-social {
    padding-left: 20px;
}

.bk-footer-social p {
    color: rgba(255,255,255,0.60);

    font-size: 13px;

    line-height: 1.6;

    margin-bottom: 20px;
}

.bk-social-icons {
    display: flex;

    align-items: center;

    gap: 10px;
}

.bk-social-icons a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    color: #ffffff;

    text-decoration: none;

    transition: all 0.3s ease;
}

.bk-social-icons a:hover {
    background: #08b5e5;

    border-color: #08b5e5;

    transform: translateY(-4px);

    color: #ffffff;
}


/* =====================================================
   COPYRIGHT
===================================================== */

.bk-footer-bottom {
    background: #041536;

    border-top: 1px solid rgba(255,255,255,0.08);

    position: relative;

    z-index: 2;
}

.bk-footer-bottom-inner {
    min-height: 65px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.bk-footer-bottom p {
    margin: 0;

    color: rgba(255,255,255,0.55);

    font-size: 13px;
}

.bk-footer-bottom strong {
    color: #ffffff;
}


/* =====================================================
   FLOATING WHATSAPP
===================================================== */

.bk-whatsapp-float {
    position: fixed;

    right: 25px;
    bottom: 90px;

    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #25d366;

    color: #ffffff;

    border-radius: 50%;

    font-size: 29px;

    text-decoration: none;

    box-shadow: 0 8px 25px rgba(0,0,0,0.20);

    z-index: 9998;

    transition: all 0.3s ease;
}

.bk-whatsapp-float:hover {
    background: #1ebe5d;

    color: #ffffff;

    transform: scale(1.08);
}


/* =====================================================
   BACK TO TOP
===================================================== */

.bk-back-to-top {
    position: fixed;

    right: 25px;
    bottom: 20px;

    width: 52px;
    height: 52px;

    border: 0;

    border-radius: 50%;

    background: #17499b;

    color: #ffffff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 17px;

    cursor: pointer;

    z-index: 9999;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: all 0.3s ease;

    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.bk-back-to-top.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

.bk-back-to-top:hover {
    background: #08b5e5;

    transform: translateY(-3px);
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1199px) {

    .bk-footer-top {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .bk-footer-brand {
        grid-column: span 3;
    }

    .bk-footer-middle {
        grid-template-columns: 1.3fr 1fr;
    }

    .bk-footer-social {
        padding-left: 0;
    }

}


@media (max-width: 767px) {

    .bk-footer-top {
        grid-template-columns: 1fr;

        gap: 40px;

        padding: 55px 0 40px;
    }

    .bk-footer-brand {
        grid-column: auto;

        padding-right: 0;
    }

    .bk-footer-middle {
        grid-template-columns: 1fr;

        gap: 35px;

        padding-bottom: 35px;
    }

    .bk-footer-hours {
        padding: 0;
    }

    .bk-footer-social {
        padding-left: 0;
    }

    .bk-footer-map iframe {
        height: 220px;
    }

    .bk-footer-bottom-inner {
        flex-direction: column;

        justify-content: center;

        text-align: center;

        padding: 18px 0;
    }

    .bk-footer-logo img {
        width: 180px;
    }

    .bk-whatsapp-float {
        right: 18px;

        bottom: 85px;

        width: 52px;
        height: 52px;

        font-size: 25px;
    }

    .bk-back-to-top {
        right: 18px;

        bottom: 20px;

        width: 48px;
        height: 48px;
    }

}

/* =====================================================
   BK SYSTEMS CONTACT PAGE
===================================================== */

.bk-contact-page {
    background: #f5fafc;
    padding: 90px 0 100px;
}


/* =====================================================
   HEADING
===================================================== */

.bk-contact-heading {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.bk-contact-heading > span,
.bk-contact-info-header > span,
.bk-contact-form-heading > span,
.bk-map-heading > span {
    display: block;

    color: #08b5e5;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.bk-contact-heading h1 {
    color: #102f61;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;

    line-height: 1.15;

    margin: 0 0 20px;

    font-weight: 700;
}

.bk-contact-heading h1 strong {
    color: #08b5e5;
}

.bk-contact-heading p {
    color: #707070;

    font-size: 16px;

    line-height: 1.8;

    max-width: 780px;

    margin: 0 auto;
}


/* =====================================================
   MAIN CONTACT AREA
===================================================== */

.bk-contact-main {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 35px;

    align-items: stretch;
}


/* =====================================================
   LEFT INFORMATION
===================================================== */

.bk-contact-info {
    background: #102f61;

    border-radius: 12px;

    padding: 45px;

    color: #ffffff;

    position: relative;

    overflow: hidden;

    box-shadow: 0 15px 45px rgba(16,47,97,0.12);
}

.bk-contact-info::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    background: rgba(8,181,229,0.08);

    right: -100px;
    top: -100px;
}

.bk-contact-info::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    border: 1px solid rgba(8,181,229,0.12);

    right: 30px;
    bottom: -90px;
}

.bk-contact-info > * {
    position: relative;
    z-index: 2;
}


.bk-contact-info-header h2 {
    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;

    line-height: 1.2;

    margin: 0 0 15px;
}

.bk-contact-info-header h2 strong {
    color: #08b5e5;
}

.bk-contact-info-header p {
    color: rgba(255,255,255,0.72);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 30px;
}


/* =====================================================
   INFO ITEMS
===================================================== */

.bk-contact-info-item {
    display: flex;

    gap: 17px;

    align-items: flex-start;

    margin-bottom: 23px;

    text-decoration: none;

    color: #ffffff;
}

.bk-contact-info-icon {
    width: 48px;
    height: 48px;

    min-width: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(8,181,229,0.14);

    border: 1px solid rgba(8,181,229,0.25);

    border-radius: 7px;

    color: #08b5e5;

    font-size: 18px;
}

.bk-contact-info-item small {
    display: block;

    color: #08b5e5;

    font-size: 10px;

    letter-spacing: 1.5px;

    font-weight: 800;

    margin-bottom: 3px;
}

.bk-contact-info-item h4 {
    color: #ffffff;

    font-size: 16px;

    margin: 0 0 4px;

    font-weight: 700;
}

.bk-contact-info-item p {
    color: rgba(255,255,255,0.68);

    font-size: 13px;

    line-height: 1.6;

    margin: 0;
}

.bk-contact-link:hover h4 {
    color: #08b5e5;
}


/* =====================================================
   WHATSAPP
===================================================== */

.bk-contact-whatsapp {
    display: flex;

    align-items: center;

    gap: 13px;

    background: rgba(37,211,102,0.12);

    border: 1px solid rgba(37,211,102,0.25);

    padding: 14px 16px;

    border-radius: 7px;

    text-decoration: none;

    color: #ffffff;

    margin-top: 10px;

    transition: 0.3s ease;
}

.bk-contact-whatsapp > i:first-child {
    font-size: 28px;

    color: #25d366;
}

.bk-contact-whatsapp span {
    flex: 1;
}

.bk-contact-whatsapp small {
    display: block;

    color: #25d366;

    font-size: 9px;

    letter-spacing: 1.5px;

    font-weight: 800;
}

.bk-contact-whatsapp span {
    font-size: 13px;

    font-weight: 700;
}

.bk-contact-whatsapp > i:last-child {
    font-size: 12px;

    color: #25d366;
}

.bk-contact-whatsapp:hover {
    background: #25d366;

    color: #ffffff;
}

.bk-contact-whatsapp:hover i,
.bk-contact-whatsapp:hover small {
    color: #ffffff;
}


/* =====================================================
   HOURS
===================================================== */

.bk-contact-hours {
    margin-top: 30px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,0.12);
}

.bk-hours-title {
    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    margin-bottom: 14px;
}

.bk-hours-title i {
    color: #08b5e5;

    margin-right: 8px;
}

.bk-hours-content {
    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 8px 0;

    color: rgba(255,255,255,0.65);

    font-size: 13px;
}

.bk-hours-content strong {
    color: #ffffff;
}


/* =====================================================
   FORM BOX
===================================================== */

.bk-contact-form-wrapper {
    background: #ffffff;

    border: 1px solid #e3edf3;

    border-radius: 12px;

    padding: 45px;

    box-shadow: 0 15px 45px rgba(16,47,97,0.08);
}

.bk-contact-form-heading {
    margin-bottom: 28px;
}

.bk-contact-form-heading h2 {
    color: #102f61;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;

    margin: 0 0 10px;
}

.bk-contact-form-heading h2 strong {
    color: #08b5e5;
}

.bk-contact-form-heading p {
    color: #777777;

    font-size: 14px;

    line-height: 1.7;

    margin: 0;
}


/* =====================================================
   FORM
===================================================== */

.bk-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}

.bk-form-group {
    margin-bottom: 20px;
}

.bk-form-group label {
    display: block;

    color: #102f61;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 8px;
}

.bk-form-group label span {
    color: #08b5e5;
}

.bk-form-group input,
.bk-form-group select,
.bk-form-group textarea {
    width: 100%;

    border: 1px solid #dce6ec;

    background: #f9fcfd;

    color: #102f61;

    border-radius: 5px;

    padding: 13px 15px;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition: 0.25s ease;
}

.bk-form-group input,
.bk-form-group select {
    height: 50px;
}

.bk-form-group textarea {
    resize: vertical;

    min-height: 130px;
}

.bk-form-group input:focus,
.bk-form-group select:focus,
.bk-form-group textarea:focus {
    border-color: #08b5e5;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(8,181,229,0.08);
}

.bk-form-group input::placeholder,
.bk-form-group textarea::placeholder {
    color: #a0a8ae;
}


/* =====================================================
   SUBMIT
===================================================== */

.bk-contact-submit {
    width: 100%;

    height: 55px;

    border: 0;

    border-radius: 5px;

    background: #08b5e5;

    color: #ffffff;

    font-size: 15px;

    font-weight: 700;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    cursor: pointer;

    transition: 0.3s ease;
}

.bk-contact-submit:hover {
    background: #102f61;
}

.bk-contact-submit i:last-child {
    transition: transform 0.3s ease;
}

.bk-contact-submit:hover i:last-child {
    transform: translateX(5px);
}

.bk-submit-loading {
    display: none;
}


/* =====================================================
   SUCCESS / ERROR
===================================================== */

.bk-form-success,
.bk-form-error {
    display: none;

    align-items: center;

    gap: 12px;

    padding: 13px 15px;

    border-radius: 5px;

    margin-bottom: 20px;

    font-size: 13px;
}

.bk-form-success {
    background: #edf9f2;

    border: 1px solid #c8ecd7;

    color: #16834b;
}

.bk-form-success i {
    font-size: 20px;
}

.bk-form-success strong {
    display: block;

    margin-bottom: 2px;
}

.bk-form-success span {
    display: block;
}

.bk-form-error {
    background: #fff1f1;

    border: 1px solid #f2cccc;

    color: #c62828;
}


/* =====================================================
   MAP
===================================================== */

.bk-contact-map-section {
    margin-top: 75px;
}

.bk-map-heading {
    text-align: center;

    margin-bottom: 25px;
}

.bk-map-heading h2 {
    color: #102f61;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 34px;

    margin: 0 0 8px;
}

.bk-map-heading h2 strong {
    color: #08b5e5;
}

.bk-map-heading p {
    color: #777777;

    font-size: 14px;

    margin: 0;
}

.bk-map-wrapper {
    overflow: hidden;

    border-radius: 10px;

    border: 1px solid #dce8ee;

    box-shadow: 0 12px 35px rgba(16,47,97,0.08);

    background: #ffffff;
}

.bk-map-wrapper iframe {
    display: block;

    width: 100%;

    height: 390px;

    border: 0;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .bk-contact-main {
        grid-template-columns: 1fr;
    }

    .bk-contact-info {
        padding: 35px;
    }

    .bk-contact-form-wrapper {
        padding: 35px;
    }

}


@media (max-width: 767px) {

    .bk-contact-page {
        padding: 60px 0 70px;
    }

    .bk-contact-heading {
        margin-bottom: 40px;
    }

    .bk-contact-heading h1 {
        font-size: 34px;
    }

    .bk-contact-heading p {
        font-size: 14px;
    }

    .bk-contact-info,
    .bk-contact-form-wrapper {
        padding: 25px;
    }

    .bk-contact-info-header h2 {
        font-size: 28px;
    }

    .bk-contact-form-heading h2 {
        font-size: 27px;
    }

    .bk-form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .bk-contact-info-item h4 {
        font-size: 14px;
    }

    .bk-hours-content {
        flex-direction: column;

        gap: 2px;
    }

    .bk-map-heading h2 {
        font-size: 28px;
    }

    .bk-map-wrapper iframe {
        height: 300px;
    }

}

.bk-form-success,
.bk-form-error {
    display: none;
    align-items: center;
    gap: 15px;
    padding: 16px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-size: 15px;
}

.bk-form-success {
    background: #eafaf2;
    border: 1px solid #b7e8cc;
    color: #16834a;
}

.bk-form-success i {
    font-size: 25px;
}

.bk-form-success strong {
    display: block;
    font-size: 17px;
    margin-bottom: 3px;
}

.bk-form-success span {
    display: block;
}

.bk-form-error {
    background: #fff1f1;
    border: 1px solid #f2b8b8;
    color: #c62828;
}

.bk-form-error i {
    font-size: 22px;
}

/* =========================================================
   BK SYSTEMS - CONSULTING POPUP
========================================================= */

.bk-consult-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 25, 60, 0.72);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    z-index: 99999;

    opacity: 0;
    transition: opacity 0.3s ease;
}


/* OPEN STATE */

.bk-consult-overlay.active {
    display: flex;
    opacity: 1;
}


/* POPUP */

.bk-consult-popup {
    width: 100%;
    max-width: 760px;
    max-height: 92vh;

    overflow-y: auto;

    background: #ffffff;

    border-radius: 18px;

    padding: 35px;

    position: relative;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.25);

    transform: translateY(20px) scale(0.97);

    transition: transform 0.3s ease;
}


.bk-consult-overlay.active .bk-consult-popup {
    transform: translateY(0) scale(1);
}


/* CLOSE */

.bk-consult-close {
    position: absolute;

    right: 18px;
    top: 18px;

    width: 38px;
    height: 38px;

    border: none;

    border-radius: 50%;

    background: #eef7fb;

    color: #173b73;

    font-size: 27px;

    line-height: 1;

    cursor: pointer;

    transition: 0.3s ease;
}


.bk-consult-close:hover {
    background: #08bce8;
    color: #ffffff;
}


/* HEADER */

.bk-consult-header {
    text-align: center;

    padding: 0 35px 25px;
}


.bk-consult-header > span {
    display: inline-block;

    color: #08bce8;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 8px;
}


.bk-consult-header h2 {
    margin: 0;

    color: #173b73;

    font-size: 34px;

    font-weight: 700;

    line-height: 1.2;
}


.bk-consult-header h2 strong {
    color: #08bce8;
}


.bk-consult-header p {
    margin: 12px auto 0;

    max-width: 600px;

    color: #777;

    font-size: 15px;

    line-height: 1.7;
}


/* FORM ROW */

.bk-consult-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


/* FORM GROUP */

.bk-consult-group {
    margin-bottom: 18px;
}


.bk-consult-group label {
    display: block;

    margin-bottom: 7px;

    color: #173b73;

    font-size: 14px;

    font-weight: 600;
}


.bk-consult-group label span {
    color: #e53935;
}


/* INPUT */

.bk-consult-group input,
.bk-consult-group select,
.bk-consult-group textarea {

    width: 100%;

    border: 1px solid #dce7ef;

    background: #f9fcfe;

    color: #333;

    border-radius: 8px;

    padding: 13px 15px;

    font-family: inherit;

    font-size: 14px;

    outline: none;

    transition: all 0.25s ease;

    box-sizing: border-box;
}


.bk-consult-group input,
.bk-consult-group select {
    height: 48px;
}


.bk-consult-group textarea {
    min-height: 110px;

    resize: vertical;
}


.bk-consult-group input:focus,
.bk-consult-group select:focus,
.bk-consult-group textarea:focus {

    border-color: #08bce8;

    background: #ffffff;

    box-shadow: 0 0 0 3px rgba(8, 188, 232, 0.10);
}


/* SUBMIT BUTTON */

.bk-consult-submit {

    width: 100%;

    min-height: 52px;

    border: none;

    border-radius: 8px;

    background: linear-gradient(
        135deg,
        #08bce8,
        #078de1
    );

    color: #ffffff;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    transition: all 0.3s ease;
}


.bk-consult-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(8, 188, 232, 0.25);
}


.bk-consult-submit:disabled {
    opacity: 0.7;

    cursor: not-allowed;

    transform: none;
}


/* SUCCESS */

.bk-consult-success {

    display: none;

    text-align: center;

    padding: 30px 20px;
}


.bk-success-icon {

    width: 70px;
    height: 70px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #e7f8ef;

    color: #20a55a;

    font-size: 30px;
}


.bk-consult-success h3 {

    margin: 0 0 8px;

    color: #173b73;

    font-size: 28px;
}


.bk-consult-success p {

    color: #777;

    line-height: 1.7;

    margin-bottom: 20px;
}


.bk-success-close {

    border: none;

    padding: 11px 28px;

    border-radius: 7px;

    background: #173b73;

    color: white;

    cursor: pointer;

    font-weight: 600;
}


/* ERROR */

.bk-consult-error {

    display: none;

    align-items: center;

    gap: 10px;

    padding: 12px 15px;

    margin-bottom: 18px;

    border-radius: 7px;

    background: #fff1f1;

    border: 1px solid #f2c0c0;

    color: #c62828;

    font-size: 14px;
}


/* MOBILE */

@media (max-width: 767px) {

    .bk-consult-overlay {
        padding: 12px;
    }

    .bk-consult-popup {
        padding: 25px 20px;

        max-height: 94vh;

        border-radius: 14px;
    }

    .bk-consult-header {
        padding: 5px 25px 20px;
    }

    .bk-consult-header h2 {
        font-size: 27px;
    }

    .bk-consult-header p {
        font-size: 14px;
    }

    .bk-consult-row {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .bk-consult-group {
        margin-bottom: 14px;
    }

}

/* =========================================
   BK SYSTEMS - SERVICE CHECK LIST
========================================= */

.bk-service-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 35px;
    margin-top: 25px;
}

.bk-service-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bk-service-column li {
    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 12px 0;

    border-bottom: 1px solid #e5edf3;

    color: #173b73;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.45;
}

.bk-service-column li i {
    color: #08aee0;
    font-size: 16px;

    margin-top: 3px;

    flex-shrink: 0;
}

.bk-service-column li span {
    display: block;
}


/* Hover */

.bk-service-column li:hover {
    color: #08aee0;
}

.bk-service-column li:hover i {
    color: #173b73;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .bk-service-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .bk-service-column li {
        font-size: 14px;
        padding: 11px 0;
    }

}

/* ==========================================
   CERTIFICATE + PARTNER SECTION
========================================== */

.bk-cert-partner-section {
    padding: 90px 0;
    background: #f7fbfd;
}


/* SECTION HEADING */

.bk-cert-partner-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.bk-cert-partner-heading > span {
    display: block;
    margin-bottom: 12px;

    font-size: 14px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #08aee0;
}

.bk-cert-partner-heading h2 {
    margin: 0;

    font-family: "Playfair Display", serif;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 700;

    color: #102f63;
}

.bk-cert-partner-heading h2 strong {
    color: #08aee0;
}

.bk-cert-partner-heading p {
    max-width: 700px;
    margin: 18px auto 0;

    font-size: 16px;
    line-height: 1.8;

    color: #666;
}


/* ==========================================
   TWO COLUMN GRID
========================================== */

.bk-cert-partner-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 30px;

    max-width: 1150px;

    margin: 0 auto;
}


/* ==========================================
   CARD
========================================== */

.bk-cert-partner-card {
    background: #ffffff;

    border: 1px solid #e1edf3;

    border-radius: 14px;

    padding: 28px;

    box-shadow:
        0 12px 35px rgba(16, 47, 99, 0.08);

    text-align: center;

    transition: all 0.3s ease;
}

.bk-cert-partner-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px rgba(16, 47, 99, 0.13);
}


/* ==========================================
   CARD TITLE
========================================== */

.bk-card-title {
    min-height: 78px;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    margin-bottom: 20px;
}

.bk-card-title span {
    display: block;

    margin-bottom: 7px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: #08aee0;
}

.bk-card-title h3 {
    margin: 0;

    font-family: "Playfair Display", serif;

    font-size: 25px;
    line-height: 1.3;

    color: #102f63;
}


/* ==========================================
   IMAGE BOX
========================================== */

.bk-image-box {

    width: 100%;

    height: 360px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 20px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #edf2f5;

    border-radius: 10px;

    overflow: hidden;
}


/* BOTH IMAGES SAME AREA */

.bk-image-box img {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    object-position: center;
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 991px) {

    .bk-cert-partner-grid {
        grid-template-columns: 1fr;

        max-width: 700px;
    }

}


@media (max-width: 767px) {

    .bk-cert-partner-section {
        padding: 60px 15px;
    }

    .bk-cert-partner-heading h2 {
        font-size: 34px;
    }

    .bk-cert-partner-heading p {
        font-size: 14px;
    }

    .bk-cert-partner-card {
        padding: 20px;
    }

    .bk-image-box {
        height: 280px;
    }

    .bk-card-title h3 {
        font-size: 22px;
    }

}