﻿
body {
    margin: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff
}

a, button {
    cursor: pointer;
    user-select: none;
    border: none;
    outline: none;
    background: none;
}

a {
    text-decoration: none;
}


img, video {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* img {image-rendering:-webkit-optimize-contrast; image-rendering:-moz-crisp-edges; image-rendering:crisp-edges;} */

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0%);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(0%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}


h2,h3 {
    font-size: 30px;
    font-weight: 800;
    color: #0b1f3a;
    margin: 15px 0;
}
h4, h5, h6 {
    font-size: 25px;
    font-weight: 800;
    color: #0b1f3a;
    
}


p {
    font-size: 17px;
    color: #666;
    line-height: 30px
}











.header-top {
    background: #ed3338;
    padding: 5px 0;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 25px;
}

    .header-contact a {
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: .3s;
    }

        .header-contact a:hover {
            color: #f9b000;
        }

    .header-contact i {
        font-size: 15px;
    }

.social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .social-icons a {
        color: #fff;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255,255,255,.3);
        border-radius: 50%;
        text-decoration: none;
        transition: .3s;
    }

        .social-icons a:hover {
            background: #f9b000;
            color: #000;
            border-color: #f9b000;
        }


/* Mobile */
@media (max-width:767.98px) {

    .header-top {
        padding: 8px 15px;
    }

    .header-contact {
        gap: 15px;
    }

        .header-contact a {
            font-size: 18px;
        }

    .social-icons {
        gap: 8px;
    }

        .social-icons a {
            width: 28px;
            height: 28px;
            font-size: 13px;
        }
}

.custom-navbar {
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0,0,0,.08);
    padding: 5px 0;
}

.navbar-brand img {
    height: 65px;
}

.navbar-nav .nav-link {
    color: #222;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 15px;
    transition: .3s;
}

    .navbar-nav .nav-link:hover {
        color: #ed3338;
    }

    .navbar-nav .nav-link.active {
        color: #ed3338;
    }

.dropdown-menu {
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    padding: 10px;
}

.dropdown-item {
    border-radius: 6px;
    padding: 10px 15px;
    transition: .3s;
}

    .dropdown-item:hover {
        background: #ed3338;
        color: #fff;
    }

.nav-buttons {
    display: flex;
    gap: 12px;
}

    .nav-buttons .btn {
        border-radius: 40px;
        padding: 10px 24px;
        font-weight: 600;
    }

.btn-primary {
    background: #ed3338;
    border: 2px solid #ed3338;
}

.btn-outline-primary:hover {
    color: #fff;
}

.navbar-toggler {
    border: none;
    box-shadow: none;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }



.owl-carousel .owl-stage-outer .owl-prev {
    top: 45% !important;
    left: 5% !important;
}


.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    color: #0000 !important;
    background-color: #0000 !important;
    height: 0 !important
}


@media(min-width:992px) {

    .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

@media(max-width:991px) {

    .navbar-collapse {
        margin-top: 20px;
    }

    .navbar-nav {
        padding-bottom: 20px;
    }

    .nav-buttons {
        flex-direction: column;
        margin-top: 20px;
    }

        .nav-buttons .btn {
            width: 100%;
        }

    .navbar-brand img {
        height: 55px;
    }
}

.hero-slider .hero-item {
    padding: 20px 0px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.75) 15%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.30) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: #fff;
    min-height: 450px;
}

    .hero-content h5 {
        display: inline-block;
        background: #d71920;
        color: #fff;
        padding: 8px 18px;
        border-radius: 30px;
        margin-bottom: 25px;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .hero-content h1 {
        font-size: 35px;
        line-height: 1.1;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 25px;
    }

        .hero-content h1 span {
            display: block;
            color: #ffbe0b;
        }

    .hero-content p {
        font-size: 18px;
        line-height: 32px;
        color: #f5f5f5;
        margin-bottom: 35px;
    }

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 35px;
}

    .hero-tags span {
        background: #fff;
        color: #222;
        padding: 10px 18px;
        border-radius: 5px;
        font-size: 14px;
        font-weight: 600;
    }

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-one {
    background: #d71920;
    color: #fff;
    padding: 16px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
}

.btn-two {
    background: #fff;
    color: #222;
    padding: 16px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
}

.btn-one:hover {
    background: #b31318;
    color: #fff;
}

.btn-two:hover {
    background: #ffbe0b;
    color: #222;
}

.owl-nav {
    background: #0000 !important;
}

/* .hero-slider .owl-dots{

    position: absolute;
    bottom: 9px;
    left: 50%;
    transform: translateX(-50%);
    z-index:22;
    border-radius:10px;
    width: 13px;
    height: 13px; background:#000;
	left: 48%;

}


.hero-slider .owl-dot span{
    position: absolute;
    margin:0 26px; bottom:0;
    left: 48%;
    transform: translateX(-50%);
    z-index:1;
    border-radius:10px;
    width: 13px;
    background:#d71920;
    height: 13px;

} */
.hero-slider .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.hero-slider .owl-dot {
    display: inline-block;
}

    .hero-slider .owl-dot span {
        width: 12px;
        height: 12px;
        margin: 5px;
        background: #d71920;
        display: block;
        border-radius: 50%;
        transition: .3s;
    }

    .hero-slider .owl-dot.active span {
        width: 30px;
        background: #000;
        border-radius: 20px;
    }

.hero-slider .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    z-index: 99;
}

.hero-slider .owl-dot.active {
    background: #000 !important;
}


/******** Responsive ********/

@media(max-width:991px) {

    .hero-slider .hero-item {
        height: 650px;
    }

    .hero-content h1 {
        font-size: 46px;
    }
}

@media(max-width:767px) {

    .hero-slider .hero-item {
        height: 560px;
    }

    .hero-content {
        text-align: center;
    }

        .hero-content h1 {
            font-size: 34px;
        }

        .hero-content p {
            font-size: 15px;
            line-height: 28px;
        }

    .hero-tags {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .btn-one,
    .btn-two {
        width: 100%;
        text-align: center;
    }


    .footer-widget {
        text-align: left;
    }
}


.sec-padding {
    padding: 45px 0;
}

    .sec-padding:nth-child(odd) {
        background: #efeff3;
    }

.section-title {
    margin: auto;
}

.sub-title {
    display: inline-block;
    color: #e53935;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}

    .sub-title::before {
        content: "";
        width: 45px;
        height: 2px;
        background: #e53935;
        position: absolute;
        left: -60px;
        top: 50%;
    }

    .sub-title::after {
        content: "";
        width: 45px;
        height: 2px;
        background: #e53935;
        position: absolute;
        right: -60px;
        top: 50%;
    }

.hero-item .overlay {
    z-index: 1;
}

/******** Card ********/

.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 20px 15px;
    text-align: center;
    transition: .4s;
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

    .why-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 5px;
        background: #e53935;
        transform: scaleX(0);
        transition: .4s;
    }

    .why-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(0,0,0,.15);
    }

        .why-card:hover::before {
            transform: scaleX(1);
        }

.icon-box {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff4d4d,#e53935);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 30px;
    transition: .4s;
    box-shadow: 0 15px 35px rgba(229,57,53,.35);
}

.why-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}



/******** Responsive ********/

@media(max-width:991px) {

    .section-padding {
        padding: 80px 0;
    }

    .section-title h2 {
        font-size: 36px;
    }
}

@media(max-width:767px) {

    .section-padding {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .sub-title::before,
    .sub-title::after {
        display: none;
    }

    .why-card {
        padding: 35px 25px;
    }
}





.process-card {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    position: relative;
    transition: .35s;
    border: 1px solid #ececec;
    height: 100%;
    overflow: hidden;
}

    .process-card span {
        position: absolute;
        right: 25px;
        top: 20px;
        font-size: 55px;
        font-weight: 800;
        color: #f2f2f2;
    }

    .process-card i {
        width: 75px;
        height: 75px;
        background: #e53935;
        color: #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 30px;
        margin-bottom: 25px;
    }

    .process-card h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .process-card p {
        color: #666;
        line-height: 28px;
        margin: 0;
    }

    .process-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 50px rgba(0,0,0,.12);
    }

        .process-card:hover i {
            background: #10213d;
        }

.theme-btn {
    display: inline-block;
    margin-top: 20px;
    background: #e53935;
    color: #fff;
    padding: 15px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

    .theme-btn:hover {
        color: #fff;
        background: #10213d;
    }

@media(max-width:991px) {

    .section-heading {
        margin-bottom: 40px;
    }
}




.subsection {
    max-width: 750px;
    margin: auto auto auto 0;
}

.section-heading .sub-title2 {
    color: #e63946;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center !important;
    position: relative;
    z-index: 9;
    width: 50%;
}



.sub-title2:before {
    left: 0;
}

.sub-title2:after {
    right: 0;
}

.sub-title3 {
    color: #e63946;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 15px;
    text-align: center !important;
    position: relative;
    z-index: 9;
    left: 55px;
    width: 55%;
}



    .sub-title3:before {
        content: "";
        width: 45px;
        height: 2px;
        background: #e53935;
        position: absolute;
        left: -53px;
        top: 50%;
    }


    .sub-title3:after {
        content: "";
        width: 45px;
        height: 2px;
        background: #e53935;
        position: absolute;
        top: 50%;
        right: -53px;
    }



.section-heading p {
    color: #666;
    line-height: 28px;
}

.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 12px 35px rgba(0,0,0,.08);
    height: 100%;
}

.service-img {
    height: 220px;
    overflow: hidden;
}

    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.service-content {
    padding: 25px;
    text-align: center;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #e63946;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: -60px auto 20px;
    position: relative;
    border: 5px solid #fff;
}

.service-content h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0b1f3a;
}

.service-content p {
    color: #666;
    line-height: 28px;
    margin-bottom: 20px;
}

.service-content a {
    color: #e63946;
    text-decoration: none;
    font-weight: 700;
}

    .service-content a i {
        margin-left: 6px;
        transition: .3s;
    }

.service-card:hover {
    transform: translateY(-10px);
}

    .service-card:hover img {
        transform: scale(1.08);
    }

    .service-card:hover a i {
        transform: translateX(6px);
    }

@media(max-width:991px) {

    .section-heading h2 {
        font-size: 34px;
    }

    .service-img {
        height: 180px;
    }
}

@media(max-width:767px) {

    .section-heading h2 {
        font-size: 28px;
    }

    .service-content {
        padding: 20px;
    }
}



.industry-card {
    background: #fff;
    border-radius: 18px;
    padding: 25px 15px;
    text-align: center;
    transition: .35s;
    border: 1px solid #ececec;
    box-shadow: 0 8px 20px rgba(0,0,0,.06);
    height: 100%;
}

.industry-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #ef3d3d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: .35s;
}

.industry-card h6 {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1d;
    margin: 0;
    line-height: 24px;
}

.industry-card:hover {
    transform: translateY(-8px);
    background: #fff5f5;
    border-color: #ef3d3d;
    box-shadow: 0 18px 35px rgba(0,0,0,.12);
}

    .industry-card:hover .industry-icon {
        background: #0b2545;
        transform: rotate(10deg) scale(1.08);
    }

@media(max-width:767px) {

    .industry-card {
        padding: 20px 10px;
    }

    .industry-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .industry-card h6 {
        font-size: 14px;
        line-height: 20px;
    }
}






.strength-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .4s;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    height: 100%;
}

.strength-img {
    height: 220px;
    overflow: hidden;
}

    .strength-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.strength-content {
    padding: 25px;
    text-align: center;
    position: relative;
}

.strength-icon {
    width: 70px;
    height: 70px;
    background: #ef3d3d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    margin: -60px auto 20px;
    border: 5px solid #fff;
}


.strength-content p {
    color: #666;
    line-height: 28px;
    margin: 0;
}

.strength-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

    .strength-card:hover img {
        transform: scale(1.08);
    }

    .strength-card:hover .strength-icon {
        background: #10213d;
    }

/*======================================
WHY WORK WITH US
=======================================*/

.why-us-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

    .why-us-section::before {
        content: "";
        position: absolute;
        width: 420px;
        height: 420px;
        background: #ef3d3d08;
        border-radius: 50%;
        left: -180px;
        top: -180px;
    }

    .why-us-section::after {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        background: #0b254505;
        border-radius: 50%;
        right: -220px;
        bottom: -220px;
    }

    /* Heading */

    .why-us-section .section-heading {
        max-width: 560px;
    }

    .why-us-section .sub-title {
        display: inline-block;
        color: #ef3d3d;
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }



.theme-btn {
    display: inline-flex;
    align-items: center;
    background: #ef3d3d;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .35s;
}

    .theme-btn:hover {
        background: #0b2545;
        color: #fff;
        transform: translateY(-3px);
    }

/***************************
Feature Cards
****************************/

.feature-card {
    display: flex;
    gap: 18px;
    background: #fff;
    padding: 22px;
    border-radius: 18px;
    transition: .35s;
    box-shadow: 0 10px 25px rgba(0,0,0,.06);
    border: 1px solid #eee;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-8px);
        border-color: #ef3d3d;
        box-shadow: 0 20px 45px rgba(0,0,0,.12);
    }

.feature-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff6161,#ef3d3d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    transition: .35s;
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.08);
    background: #0b2545;
}


.feature-card p {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
}

/******************************
Right Images
*******************************/

.why-image-wrapper {
    position: relative;
    min-height: 620px;
}

.main-image {
    width: 78%;
    margin-left: auto;
    position: relative;
    z-index: 2;
}

    .main-image img {
        width: 100%;
        border-radius: 25px;
        display: block;
        box-shadow: 0 25px 60px rgba(0,0,0,.15);
    }

    .main-image::before {
        content: "";
        position: absolute;
        inset: -15px;
        border: 4px solid #ef3d3d;
        border-radius: 30px;
        z-index: -1;
    }

/* Small Image */

.small-image {
    position: absolute;
    right: 0;
    bottom: -50px;
    width: 80%;
    z-index: 3;
}

    .small-image img {
        width: 100%;
        border-radius: 20px;
        border: 8px solid #fff;
        box-shadow: 0 20px 45px rgba(0,0,0,.18);
    }

/********************************
Experience Box
*********************************/

.experience-box {
    position: absolute;
    right: 15px;
    top: 40px;
    width: 170px;
    height: 170px;
    background: #fff;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,.18);
    z-index: 5;
    left: 48px;
}

    .experience-box h2 {
        margin: 0;
        color: #ef3d3d;
        font-size: 55px;
        line-height: 1;
    }

    .experience-box span {
        font-weight: 700;
        color: #222;
        line-height: 1.4;
    }

/*********************************
Counter
**********************************/

.why-counter {
    margin-top: 80px;
    background: #081f3d;
    border-radius: 25px;
    overflow: hidden;
}

.counter-box {
    text-align: center;
    color: #fff;
    padding: 45px 20px;
    transition: .35s;
    border-right: 1px solid rgba(255,255,255,.08);
}

    .counter-box:last-child {
        border: none;
    }

    .counter-box:hover {
        background: rgba(255,255,255,.04);
    }

    .counter-box i {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        border: 2px solid rgba(255,255,255,.15);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        color: #ef3d3d;
        font-size: 32px;
        margin-bottom: 18px;
        transition: .35s;
    }

    .counter-box:hover i {
        transform: rotate(15deg) scale(1.08);
    }

    .counter-box h3 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 8px;
        color: #ddd;
    }

    .counter-box p {
        margin: 0;
        color: #ddd;
        font-size: 15px;
    }

/******************************
Responsive
*******************************/

@media(max-width:991px) {

    .why-us-section h2 {
        font-size: 38px;
    }

    .why-image-wrapper {
        min-height: auto;
        margin-top: 50px;
    }

    .main-image {
        width: 100%;
    }

    .small-image {
        position: relative;
        width: 70%;
        left: 20px;
        margin-top: -70px;
    }

    .experience-box {
        right: 20px;
        top: -25px;
        width: 140px;
        height: 140px;
    }

    .why-counter {
        margin-top: 60px;
    }

    .counter-box {
        border: none;
        padding: 30px 15px;
    }
}

@media(max-width:767px) {

    .why-us-section h2 {
        font-size: 30px;
    }

    .feature-card {
        padding: 18px;
    }

    .feature-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .main-image {
        width: 100%;
    }

    .small-image {
        display: none;
    }

    .experience-box {
        position: relative;
        top: auto;
        right: auto;
        margin: 20px auto 0;
    }

    .theme-btn {
        width: 100%;
        justify-content: center;
    }

    .counter-box h3 {
        font-size: 30px;
    }
}


/*=====================================
TESTIMONIAL SECTION
=====================================*/

.testimonial-section {
    overflow: hidden;
    position: relative;
}

    .testimonial-section::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #ef3d3d08;
        border-radius: 50%;
        left: -150px;
        top: -150px;
    }

.testimonial-left {
    max-width: 430px;
}




    .testimonial-left h2 span {
        display: block;
        color: #ef3d3d;
    }

    .testimonial-left p {
        color: #666;
        line-height: 30px;
        margin-bottom: 35px;
    }

/****************************
Slider
****************************/

.testimonial-slider {
    position: relative;
}

.testimonial-item {
    background: #fff;
    border-radius: 25px;
    padding: 60px 45px 45px;
    text-align: center;
    position: relative;
    transition: .35s;
}

    .testimonial-item:hover {
        transform: translateY(-8px);
    }

/****************************
Quote
****************************/

.quote-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg,#ff5d5d,#ef3d3d);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(239,61,61,.30);
}

.review {
    font-size: 20px;
    line-height: 36px;
    color: #444;
    font-style: italic;
    margin-bottom: 40px;
}

/****************************
Client
****************************/

.client-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.client-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    margin-bottom: 18px;
}

    .client-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }



.client-info span {
    color: #ef3d3d;
    font-weight: 600;
}

/****************************
Navigation
****************************/

.testimonial-slider .owl-nav {
    position: absolute;
    top: -95px;
    right: 0;
}

    .testimonial-slider .owl-nav button {
        width: 52px;
        height: 52px;
        border-radius: 50% !important;
        background: #fff !important;
        margin-left: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,.10);
        transition: .3s;
    }

        .testimonial-slider .owl-nav button:hover {
            background: #ef3d3d !important;
            color: #fff !important;
        }

    .testimonial-slider .owl-nav i {
        font-size: 18px;
    }

.testimonial-slider .owl-dots {
    margin-top: 30px;
    text-align: center;
}

.testimonial-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ddd !important;
    transition: .3s;
}

.testimonial-slider .owl-dot.active span {
    background: #ef3d3d !important;
    width: 35px;
    border-radius: 20px;
}

/****************************
Responsive
****************************/

@media(max-width:991px) {

    .testimonial-left {
        max-width: 100%;
        margin-bottom: 40px;
    }

        .testimonial-left h2 {
            font-size: 38px;
        }

    .testimonial-slider .owl-nav {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px;
        text-align: center;
    }
}

@media(max-width:767px) {

    .testimonial-left h2 {
        font-size: 30px;
    }

    .testimonial-item {
        padding: 40px 20px;
        margin: 10px;
    }

    .review {
        font-size: 17px;
        line-height: 30px;
    }

    .client-img {
        width: 90px;
        height: 90px;
    }

    .client-info h4 {
        font-size: 22px;
    }
}


/***********************************
CTA Section
************************************/



.cta-box {
    background: linear-gradient(135deg,#081f3d,#0f2d56);
    border-radius: 30px;
    padding: 70px;
    position: relative;
    overflow: hidden;
}

    .cta-box::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(255,255,255,.05);
        border-radius: 50%;
        right: -120px;
        top: -120px;
    }

    .cta-box::after {
        content: "";
        position: absolute;
        width: 220px;
        height: 220px;
        background: #ef3d3d;
        opacity: .15;
        border-radius: 50%;
        left: -80px;
        bottom: -80px;
    }

.cta-content {
    position: relative;
    z-index: 2;
}

    .cta-content .sub-title {
        color: #ffb703;
        font-size: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        left: 61px;
    }


    .cta-content h2 {
        color: #fff;
    }

        .cta-content h2 span {
            color: #ff4d4d;
        }

    .cta-content p {
        color: #fff;
    }


/****************************/

.cta-btns {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-end;
    position: relative;
    z-index: 2;
}

    .cta-btns a {
        width: 250px;
        text-align: center;
        padding: 16px 25px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        transition: .35s;
        font-size: 16px;
    }

.btn-quote {
    background: #ef3d3d;
    color: #fff;
}

.btn-call {
    background: #fff;
    color: #081f3d;
}

.btn-quote:hover {
    background: #fff;
    color: #081f3d;
    transform: translateY(-5px);
}

.btn-call:hover {
    background: #ef3d3d;
    color: #fff;
    transform: translateY(-5px);
}

.cta-btns i {
    margin-right: 10px;
}

/****************************/

@media(max-width:991px) {

    .cta-box {
        padding: 45px 30px;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 38px;
    }

    .cta-btns {
        margin-top: 35px;
        align-items: center;
    }
}

@media(max-width:767px) {

    .cta-content h2 {
        font-size: 30px;
    }

    .cta-btns a {
        width: 100%;
    }
}



.faq-section h2 {
    margin: 0px;
}

.custom-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.custom-faq .accordion-button {
    background: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 22px 28px;
    color: #111;
    box-shadow: none;
}

    .custom-faq .accordion-button:not(.collapsed) {
        background: #ef3d3d;
        color: #fff;
    }

    .custom-faq .accordion-button:focus {
        box-shadow: none;
    }

.custom-faq .accordion-body {
    padding: 25px 28px;
    line-height: 30px;
    color: #666;
    background: #fff;
    font-size: 16px;
}

.custom-faq .accordion-button::after {
    background-size: 18px;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

@media(max-width:767px) {

    .custom-faq .accordion-button {
        font-size: 16px;
        padding: 18px;
    }

    .custom-faq .accordion-body {
        padding: 20px;
        font-size: 15px;
    }
}




/*====================================
BLOG SECTION
====================================*/

.blog-section {
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: .35s;
    border: 1px solid #eee;
}

    .blog-card:hover {
        transform: translateY(-10px);
    }

/********************************
Image
*********************************/

.blog-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

    .blog-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .5s;
    }

.blog-card:hover .blog-img img {
    transform: scale(1.08);
}

.blog-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.45), transparent);
    z-index: 1;
}

/********************************
Date
*********************************/

.blog-date {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 60px;
    height: 70px;
    background: #ef3d3d;
    color: #fff;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    line-height: 1.2;
    padding-top: 12px;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(239,61,61,.35);
}

/********************************
Content
*********************************/

.blog-content {
    padding: 28px;
}

.blog-category {
    display: inline-block;
    padding: 6px 14px;
    background: #fff0f0;
    color: #ef3d3d;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}


.blog-card:hover h4 {
    color: #ef3d3d;
}

.blog-content p {
    color: #666;
    line-height: 28px;
    margin-bottom: 20px;
}

.blog-content a {
    display: inline-flex;
    align-items: center;
    color: #0b2545;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

    .blog-content a i {
        margin-left: 10px;
        transition: .3s;
    }

.blog-card:hover a {
    color: #ef3d3d;
}

    .blog-card:hover a i {
        transform: translateX(6px);
    }

/********************************
OWL
*********************************/

.blog-slider .owl-stage {
    display: flex;
}

.blog-slider .owl-item {
    display: flex;
}

.blog-slider .blog-card {
    margin: 25px 10px;
}

.blog-slider .owl-nav {
    position: absolute;
    top: 0;
    right: 0;
}

    .blog-slider .owl-nav button {
        width: 50px;
        height: 50px;
        border-radius: 50% !important;
        background: #fff !important;
        box-shadow: 0 10px 30px rgba(0,0,0,.10);
        margin-left: 10px;
        transition: .3s;
    }

        .blog-slider .owl-nav button:hover {
            background: #ef3d3d !important;
            color: #fff !important;
        }

    .blog-slider .owl-nav i {
        font-size: 18px;
    }

.blog-slider .owl-dots {
    text-align: center;
    margin-top: 30px;
}

.blog-slider .owl-dot span {
    width: 12px;
    height: 12px;
    background: #ddd !important;
    transition: .3s;
}

.blog-slider .owl-dot.active span {
    width: 35px;
    border-radius: 20px;
    background: #ef3d3d !important;
}

/********************************
Responsive
*********************************/

@media(max-width:991px) {

    .blog-img {
        height: 220px;
    }

    .blog-content h4 {
        font-size: 20px;
        line-height: 30px;
    }

    .blog-slider .owl-nav {
        position: relative;
        top: auto;
        right: auto;
        text-align: center;
        margin-top: 20px;
    }
}

@media(max-width:767px) {

    .blog-img {
        height: 200px;
    }

    .blog-content {
        padding: 20px;
    }

        .blog-content h4 {
            font-size: 18px;
            line-height: 28px;
        }

        .blog-content p {
            font-size: 15px;
            line-height: 26px;
        }

    .blog-slider .owl-nav {
        display: none;
    }
}



.routes-links {
    background: #fff;
}

.route-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}

    .route-item:last-child {
        border: none;
    }

    .route-item h4 {
        font-size: 24px;
        font-weight: 700;
        color: #0b2545;
        margin-bottom: 15px;
    }

        .route-item h4::after {
            content: " ➜";
            color: #ef3d3d;
        }

.links {
    line-height: 2.2;
}

    .links a {
        color: #666;
        text-decoration: none;
        font-size: 15px;
        display: inline;
        transition: .3s;
    }

        .links a:hover {
            color: #ef3d3d;
            text-decoration: underline;
        }

        .links a::after {
            content: " | ";
            color: #c8c8c8;
        }

        .links a:last-child::after {
            display: none;
        }

@media(max-width:767px) {

    .route-item h4 {
        font-size: 20px;
    }

    .links {
        line-height: 2;
    }

        .links a {
            font-size: 14px;
        }
}

/*********************************
FOOTER
**********************************/

.footer {
    background: #0b0b0b;
    color: #bbb;
    padding-top: 80px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 25px;
}

.footer-widget p {
    line-height: 30px;
    margin-bottom: 25px;
}

.footer-widget h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 24px;
    position: relative;
}

    .footer-widget h4::after {
        content: "";
        width: 50px;
        height: 3px;
        background: #ef3d3d;
        display: block;
        margin-top: 10px;
    }

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-widget ul li {
        margin-bottom: 14px;
    }

        .footer-widget ul li a {
            color: #bbb;
            text-decoration: none;
            transition: .3s;
        }

            .footer-widget ul li a:hover {
                color: #ef3d3d;
                padding-left: 8px;
            }

.contact-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    line-height: 28px;
}

.contact-list i {
    color: #ef3d3d;
    margin-top: 6px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

    .footer-social a {
        width: 42px;
        height: 42px;
        background: #181818;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        transition: .3s;
    }

        .footer-social a:hover {
            background: #ef3d3d;
            transform: translateY(-5px);
        }

/***********************/

.footer-newsletter {
    margin-top: 60px;
    padding: 40px;
    background: #121212;
    border-radius: 20px;
}

    .footer-newsletter h3 {
        color: #fff;
    }

    .footer-newsletter form {
        display: flex;
        border-radius: 50px;
        overflow: hidden;
    }

    .footer-newsletter input {
        flex: 1;
        border: none;
        padding: 18px 20px;
        outline: none;
    }

    .footer-newsletter button {
        border: none;
        background: #ef3d3d;
        color: #fff;
        padding: 0 35px;
        font-weight: 700;
    }

/***********************/

.footer-bottom {
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 25px 0;
    color: #888;
}

    .footer-bottom a {
        color: #bbb;
        text-decoration: none;
    }

        .footer-bottom a:hover {
            color: #ef3d3d;
        }

/***********************/

@media(max-width:767px) {

    .section-heading .sub-title2 {
        width: 100%;
    }

    .sub-title {
        width: 100%;
    }

    .cta-content .sub-title {
        left: 0;
    }

    .sec-padding {
        padding: 20px 15px;
    }




    .footer {
        text-align: center;
    }


    .footer-social {
        justify-content: center;
        margin-bottom: 20px;
    }

    .footer-newsletter {
        padding: 25px;
    }

        .footer-newsletter form {
            flex-direction: column;
            border-radius: 15px;
        }

        .footer-newsletter button {
            padding: 15px;
        }

    .footer-bottom {
        text-align: center;
    }

        .footer-bottom .text-md-end {
            margin-top: 10px;
        }
}

.wa-button {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    font-size: 50px;
    color: #fff;
}

    .wa-button img {
        width: 38px;
    }

.wa-chat-box {
    position: fixed;
    right: 25px;
    bottom: 100px;
    width: 340px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    z-index: 9999;
    display: none;
    font-family: Arial,sans-serif;
}

.wa-header {
    background: #25d366;
    color: #fff;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.wa-header h4 {
    margin: 0;
    font-size: 18px;
    -webkit-text-fill-color: currentColor;
}

.wa-header p {
    margin: 0;
    font-size: 13px;
}

.wa-close {
    font-size: 26px;
    cursor: pointer;
}

.wa-body {
    padding: 15px;
}

.wa-message {
    background: #f1f1f1;
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 15px;
    font-size: 16px;
}

.wa-body textarea {
    width: 100%;
    height: 70px;
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 10px;
    resize: none;
    font-size: 15px;
    outline: none;
    box-sizing: border-box;
}

.wa-body button {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    margin-top: 15px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

    .wa-body button:hover {
        opacity: 0.95;
    }

@media(max-width:500px) {

    .wa-chat-box {
        width: 90%;
        right: 5%;
    }
}
.grecaptcha-badge {
    width: 70px !important;
    overflow: hidden !important;
    transition: all .3s ease !important;
    left: 4px !important;
}
/* DIALOG */
.popupquery .modal-dialog {
    max-width: 820px;
}

/* CONTENT */
.popupquery .modal-content {
    border: none;
    border-radius: 28px;
    background: #fff;
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

/* CLOSE */
.popupquery .custom-close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background-color: #f3f6fb;
    opacity: 1;
    box-shadow: none;
    /* Bootstrap Close Icon */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23111827'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e");
    background-size: 14px;
    background-repeat: no-repeat;
    background-position: center;
}

    .popupquery .custom-close:hover {
        background-color: #e9eef7;
        transform: rotate(90deg);
        transition: 0.3s ease;
    }

/* BODY */
.popupquery .modal-body {
    padding: 0;
}

/* FORM BOX */
.popupquery .content-form {
    padding: 20px 50px;
    /* background: linear-gradient(135deg, rgba(13,110,253,0.03), rgba(13,110,253,0)), #fff;*/
}

/* TOP */
.popupquery .popup-top {
    margin-bottom: 40px;
}

/* MINI TAG */
.popupquery .popup-mini-tag {
    display: inline-block;
    background: #eef4ff;
    color: #0d6efd;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

/* TITLE */
.popupquery .popup-title {
    font-size: 30px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 18px;
}

/* SUBTITLE */
.popupquery .popup-subtitle {
    font-size: 17px;
    line-height: 1.9;
    color: #5b6470;
    max-width: 650px;
    margin: auto;
}

/* LABEL */
.popupquery label {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
    display: block;
}

/* INPUT */
.popupquery .form-control {
    height: 60px;
    border: 1px solid #e4e9f2;
    border-radius: 14px;
    padding: 0 18px;
    font-size: 15px;
    color: #111827;
    background: #fff;
    box-shadow: none;
    transition: 0.3s ease;
}

.popupquery .textarea-control {
    height: auto;
    padding-top: 16px;
    resize: none;
}

.popupquery .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.08);
}

/* BUTTON */
.popupquery .consult-btn, .cta-modern .consult-btn {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 16px;
    background: linear-gradient(90deg,#0d6efd,#0b5ed7);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s ease;
}

.cta-modern label {
    display: none;
}

.popupquery .consult-btn:hover, .cta-modern .consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(13,110,253,0.25);
}

/* MOBILE */
@media(max-width:768px) {

    .popupquery .content-form {
        padding: 35px 24px;
    }

    .popupquery .popup-title {
        font-size: 32px;
    }

    .popupquery .popup-subtitle {
        font-size: 15px;
        line-height: 1.8;
    }

    .popupquery .form-control {
        height: 54px;
        font-size: 14px;
        border-radius: 12px;
    }

    .popupquery .consult-btn {
        height: 56px;
        font-size: 16px;
        border-radius: 14px;
    }
}
/*==========================
    Transport Banner
==========================*/

.transport-banner {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    background: linear-gradient(135deg, #081f3d, #0f2d56);
}

  

   

    /*==========================
    Left Content
==========================*/

    .transport-banner .banner-content {
        position: relative;
        z-index: 2;
    }

   

    .transport-banner .banner-content h1 {
        color: #fff;
        font-size: 35px;
        line-height: 1.1;
        font-weight: 800;
        margin-bottom: 18px;
    }

        .transport-banner .banner-content h1 span {
            color: #e53935;
        }

    .transport-banner .banner-content h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .transport-banner .banner-content p {
        color: #fff;
        
        line-height: 30px;
        
        margin-bottom: 25px;
    }

        .transport-banner .banner-content ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

            .transport-banner .banner-content ul li {
                position: relative;
                color: #fff;
                font-size: 16px;
                padding-left: 30px;
            }

                .transport-banner .banner-content ul li::before {
                    content: "\f058"; /* Font Awesome check-circle */
                    font-family: "Font Awesome 6 Free";
                    font-weight: 900;
                    color: #e53935;
                    position: absolute;
                    left: 0;
                    top: 2px;
                    font-size: 18px;
                }

    .transport-banner .banner-truck {
        max-width: 560px;
        margin-top: 20px;
    }

    /*==========================
    Quote Form
==========================*/

    .transport-banner .quote-box {
        background: #fff;
        border-radius: 18px;
        padding: 35px;
        box-shadow: 0 15px 40px rgba(0,0,0,.25);
    }

        .transport-banner .quote-box h3 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .transport-banner .quote-box p {
            color: #000;
            margin-bottom: 25px;
        }

        .transport-banner .quote-box form {
            margin: 0;
        }

        .transport-banner .quote-box input {
            width: 100%;
            height: 56px;
            border: 1px solid #e5e5e5;
            border-radius: 10px;
            background: #f7f7f7;
            padding: 0 18px;
            font-size: 15px;
            margin-bottom: 18px;
            transition: .3s;
        }

            .transport-banner .quote-box input:focus {
                outline: none;
                border-color: #ffb400;
                background: #fff;
            }

        .transport-banner .quote-box button {
            width: 100%;
            height: 56px;
            border: none;
            border-radius: 10px;
            background: #e53935;
            color: #fff;
            font-size: 17px;
            font-weight: 700;
            cursor: pointer;
            transition: .3s;
        }

            .transport-banner .quote-box button:hover {
                background: #e53935;
            }

    /*==========================
    Trust Box
==========================*/

    .transport-banner .trust-box {
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px solid #ececec;
    }

        .transport-banner .trust-box div {
            text-align: center;
            color: #555;
            font-size: 14px;
        }

        .transport-banner .trust-box strong {
            display: block;
            color: #e53935;
            font-size: 24px;
            margin-bottom: 4px;
        }

/*==========================
    Responsive
==========================*/

@media(max-width:991px) {

    .transport-banner {
        padding: 50px 0;
    }

        .transport-banner .banner-content {
            text-align: center;
        }

            .transport-banner .banner-content h1 {
                font-size: 42px;
            }

            .transport-banner .banner-content h4 {
                font-size: 22px;
            }

            .transport-banner .banner-content p {
                max-width: 100%;
            }

            .transport-banner .banner-content ul {
                grid-template-columns: 1fr;
            }

        .transport-banner .banner-truck {
            display: block;
            margin: 30px auto;
            max-width: 420px;
        }

        .transport-banner .quote-box {
            margin-top: 30px;
        }
}

@media(max-width:767px) {

    .transport-banner {
        padding: 40px 0;
    }

        .transport-banner .banner-content h1 {
            font-size: 34px;
        }

        .transport-banner .banner-content h4 {
            font-size: 18px;
        }

        .transport-banner .banner-content p {
            font-size: 15px;
            line-height: 26px;
        }

        .transport-banner .banner-tag {
            font-size: 12px;
        }

        .transport-banner .quote-box {
            padding: 25px;
        }

            .transport-banner .quote-box h3 {
                font-size: 24px;
            }

        .transport-banner .trust-box {
            flex-direction: column;
            gap: 15px;
        }
}
.transport-content-section h2, .transport-content-section h3 {
    font-size:30px;
}
.transport-content ul,
.transport-content ol {
    padding-left: 22px;
    margin-bottom: 25px;
}

.transport-content li {
    margin-bottom: 12px;
    line-height: 1.8;
    color: #555;
}

.transport-content a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 600;
}

    .transport-content a:hover {
        text-decoration: underline;
    }
.blog-section .transport-content {
    background-color: #fff;
    padding: 10px;
    border-radius: 10px;
}
.blog-section .transport-content img {
    width: 100%;
    height:100%;
    border-radius:10px;
}
.blog-section .blog_fdetmets {
    margin-bottom: 0
}

    .blog-section .blog_fdetmets li {
        list-style: none;
        padding-right: 10px;
        display: inline-block
    }

        .blog-section .blog_fdetmets li i {
            padding-right: 5px;
            color: #ef3d3d;
        }


.transport-story-content {
    text-align: center;
}






.transport-mission {
    background: #f8faff;
}


.mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    border: 1px solid #edf1f7;
    transition: .3s;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

    .mission-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(0,0,0,.10);
    }

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #ef3d3d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}




.about-intro h1 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 20px;
}
    .about-intro h1 span {
        color:#ef3d3d;
    }



    .about-intro ul {
        list-style: none;
        padding: 0;
        margin: 0 0 35px;
    }

    .about-intro ul li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        color: #444;
    }

        .about-intro ul li:before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #ef3d3d;
            font-weight: bold;
        }




.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 20px;
    }

.floating-card {
    position: absolute;
    right: -20px;
    bottom: 40px;
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,.15);
}

    .floating-card h3 {
        color: #ef3d3d;
        font-size: 42px;
        margin: 0;
    }

    .floating-card span {
        color: #666;
    }

/* ==========================
   Board Message Section
========================== */


.board-message {
    background: #fff;
}

    .board-message .sub-title {
        font-size: 13px;
        letter-spacing: 2px;
        color: #b8892d;
        text-transform: uppercase;
        font-weight: 600;
    }

    .board-message h2 {
        font-size: 46px;
        font-weight: 700;
        color: #222;
        margin: 15px 0 25px;
        line-height: 1.2;
    }

        .board-message h2 span {
            color: #b8892d;
        }

    .board-message .quote {
        border-left: 3px solid #b8892d;
        padding-left: 22px;
    }

        .board-message .quote p {
            color: #666;
            line-height: 1.9;
            margin-bottom: 18px;
            font-size: 16px;
        }

        .board-message .quote strong {
            color: #b8892d;
            font-size: 24px;
            display: block;
            margin-top: 25px;
        }

/* Director */

.director-list {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.director-card {
    flex: 1;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    transition: .3s;
}

    .director-card:hover {
        border-color: #b8892d;
        transform: translateY(-5px);
    }

    .director-card img {
        width: 100%;
        height: 340px;
        object-fit: cover;
    }

.director-info {
    padding: 20px;
    text-align: center;
}

    .director-info h4 {
        font-size: 22px;
        margin-bottom: 6px;
        color: #222;
    }

    .director-info span {
        color: #b8892d;
        font-size: 15px;
        display: block;
        margin-bottom: 12px;
    }

    .director-info p {
        color: #666;
        margin: 0;
        font-size: 15px;
        line-height: 1.6;
    }

@media(max-width:991px) {

    .director-list {
        flex-direction: column;
    }

    .board-message h2 {
        font-size: 34px;
    }
}
.contact-section .col {
    flex: 1 1 calc(33.33% - 20px);
    min-width: 280px
}

.contact-section .card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    box-sizing: border-box
}

    .contact-section .card h4 {
        margin: 0 0 15px;
        border-bottom: 1px solid #eee;
        padding-bottom: 10px
    }

.contact-section ul {
    list-style: none;
    padding: 0;
    margin: 0
}

.contact-section li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.6
}

.contact-section i {
    color: #ef3d3d;
    margin-top: 4px
}

.contact-section a {
    text-decoration: none;
    color: #444
}

.contact-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
    border-radius: 8px;
    margin-top: 40px
}

.adsbox img {
    border-radius:10px;
    width:100%;
    height:100%;
    margin-bottom:20px;
}
.mobile-header-action {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-call-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #d71920;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    transition: .3s;
}

    .mobile-call-btn:hover {
        background: #b9141a;
        color: #fff;
    }

.navbar-toggler {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}