/********** Template CSS **********/
:root {
    --primary: #ff821b;
    --secondary: #9B9B9B;
    --light: #F5F5F5;
    --dark: #161616;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


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


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    --bs-btn-padding-x: 5px !important;
    --bs-btn-padding-y: 5px !important;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 35px;
    height: 35px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-square:hover {
    transform: scale(1.1);
    border: 1px solid #fff !important;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 90px;

}

.navbar .navbar-nav .nav-link {
    margin-right: 39px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
    font-size: 17px;

}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    /* color: #1d2173; */
    color: #e12e06;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;


    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(22, 22, 22, .7);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/header2.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.portfolio-inner img {
    transition: .5s;
}

.portfolio-inner:hover img {
    transform: scale(1.1);
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.portfolio-inner:hover .portfolio-text {
    bottom: 0;
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, .7);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    opacity: 0;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    border-radius: 60px;
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #fff;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: rgb(196, 42, 42);
    letter-spacing: 1px;
    box-shadow: none;
}

.float-whatsapp {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float-whatsapp {
    margin-top: 16px;
}

.float-call {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #0d6efd;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.my-float-call {
    margin-top: 16px;
}

.footer {
    font-size: 14px;
    padding-top: 40px;
    position: relative;
}

.footer a {
    text-decoration: none;
    font-size: 16px;
}

.footer-bottom {
    background-color: #111;
    color: #fff;
    padding: 15px 0;
    font-size: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom a {
    color: #3a75b4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #03e9f4;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-bottom {
        text-align: center;
        font-size: 14px;
    }
}


.quality-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.quality-section h2 {
    color: #1a3a6c;
}

.section-divider {
    width: 140px;
    height: 4px;
    background-color: #1b24d0;
    border-radius: 2px;
}

.quality-content {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quality-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.focus-card {
    background-color: #ffffff;
    border-left: 5px solid rgb(34 30 114);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.policy-statement {
    transition: background 0.3s ease, transform 0.3s ease;
}

.policy-statement:hover {
    background: rgb(34 30 114);
    transform: translateY(-3px);
}

.focus-list {
    list-style: none;
    padding: 0;
}

.focus-list li {
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.image-wrapper img {
    transition: transform 0.4s ease;
}

.image-wrapper img:hover {
    transform: scale(1.05);
}

.policy-statement {
    background-color: rgb(34 30 114);
}

.mission-wrap {
    background: linear-gradient(135deg, #001f3f, #004080);
    color: #fff;
    padding: 90px 20px;
    position: relative;
    overflow: hidden;
}

.mission-wrap::before {
    content: "";
    position: absolute;
    top: 0;
    right: -150px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(45deg);
}

.mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.mission-text {
    flex: 1 1 600px;
}

.mission-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #00d4ff;
    position: relative;
}

.mission-text h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: #00d4ff;
    margin-top: 10px;
    border-radius: 5px;
}

.mission-text p {
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.mission-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mission-box {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #00d4ff;
    border-radius: 10px;
    padding: 20px 25px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: all 0.3s ease;
}

.mission-box:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateY(-4px);
}

.mission-box i {
    font-size: 1.8rem;
    color: #00d4ff;
}

.mission-box p {
    color: #fff;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* IMAGE SECTION */
.mission-image {
    flex: 1 1 450px;
    text-align: center;
}

.mission-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 992px) {
    .mission-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .mission-points {
        grid-template-columns: 1fr;
    }

    .mission-box {
        justify-content: center;
    }

    .mission-box p {
        text-align: left;
    }
}

.clients .swiper {
    height: 130px;
}

@media screen and (max-width:768px) {
    .mission-image {
        flex: 0;
    }

    .hero-grid {
        gap: 0;
    }

    .transition-section {
        padding: 50px 0 !important;
    }

    .row-img {
        flex: none !important;
    }

    .focus-title {
        color: #221f6e;
        font-weight: bold;
        font-size: 37px;
        font-family: Arial, sans-serif;
        margin-bottom: 0px !important;
        margin-left: 0px !important;
    }

    .full-row {
        padding: 80px 20px 0px 20px !important;
    }

    .delivery-strategy .content {
        flex: none !important;
    }
}

.contact-section {
    background: linear-gradient(135deg, #f8f9fa, #eef2f3);
}

.contact-card {
    border-top: 5px solid #413e93;
    height: 240px;
    border-radius: 25px;
    background: #fff;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    font-size: 30px;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
    background: #1f216f1a;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
    background: #e9ecef;
}

.btn-primary:hover {
    color: #000;
    background-color: #00a7ff !important;
    border-color: #1f2081;
}

.form-control:focus {
    color: #9B9B9B;
    background-color: #fff;
    border-color: #231f76 !important;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(35 31 118 / 45%);
}

.f-icon {
    border-color: #fff !important;
    width: 40px;
    height: 40px;
    font-size: 18px !important;
    color: #9c9c9c !important;
}

.f-icon-instagram:hover {
    color: #d771ff !important;
    background-color: #fff !important;
}

.f-icon-facebook:hover {
    color: #1f66ff !important;
    background-color: #fff !important;
}

.f-icon-youtube:hover {
    color: #ff0000 !important;
    background-color: #fff !important;
}

.f-icon-linkedin:hover {
    color: #0094f7 !important;
    background-color: #fff !important;
}

.counter-box {
    height: 185px;
    width: 185px;
    margin: auto;
    border-radius: 50%;
    display: block;
    background: #f6f6f6;
    padding: 50px;
    text-align: center;
}

.counter-box p {
    margin: 5px 0 0;
    padding: 0;
    color: #909090;
    font-size: 18px;
    font-weight: 500
}

.counter-box i {
    font-size: 20px;
    margin: 0 0 15px;
    color: #d2d2d2
}

.counter {
    display: block;
    font-size: 40px;
    font-weight: 700;
    color: #666;
    line-height: 28px
}

.counter-box.colored {
    background: #221d78d4;
}

.counter-box.colored p,
.counter-box.colored i,
.counter-box.colored .counter {
    color: #fff
}

.four {
    border: 10px solid #201e78;
    border-radius: 50%;
    padding: 10px;
}

.span-sign {
    font-weight: 700;
    font-size: 30px !important;
    color: #fff;
}
