* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: #1c2733;
    background: #ffffff;
    overflow-x: hidden;
}

:root {
    --transport-blue: #092d52;
    --transport-dark: #061b31;
    --transport-orange: #0089da;
    --transport-light: #f5f7fa;
    --transport-text: #64717e;
}

/* ================= HEADER ================= */

.transport-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.transport-header .navbar {
    padding: 18px 0;
}

.transport-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 21px;
    font-weight: 800;
    line-height: 18px;
    color: #fff !important;
}

.transport-logo span:last-child {
    display: flex;
    flex-direction: column;
}

.transport-logo span span {
    color: var(--transport-orange);
}

.transport-logo small {
    font-size: 8px;
    letter-spacing: 3px;
    font-weight: 500;
}

.logo-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--transport-orange);
    border-radius: 8px;
    color: #fff;
    font-size: 21px;
}

.transport-header .nav-link {
    color: #fff !important;
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px;
    transition: 0.3s;
}

.transport-header .nav-link:hover,
.transport-header .nav-link.active {
    color: var(--transport-orange) !important;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--transport-orange);
    color: #fff;
    text-decoration: none;
    padding: 13px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
}

.header-btn:hover {
    background: #fff;
    color: var(--transport-dark);
}

/* ================= HERO ================= */

.transport-hero {
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    background-image: url("images/transport-banner.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 22, 41, 0.95) 0%,
        rgba(3, 22, 41, 0.75) 45%,
        rgba(3, 22, 41, 0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-small-title {
    color: var(--transport-orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-small-title i {
    margin-right: 7px;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
    font-weight: 800;
    margin: 20px 0;
    max-width: 750px;
}

.hero-content h1 span {
    color: var(--transport-orange);
}

.hero-content p {
    color: #dce4ec;
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.main-btn,
.outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.main-btn {
    background: var(--transport-orange);
    color: #fff;
    border: 1px solid var(--transport-orange);
}

.main-btn:hover {
    background: #06213c;
    border-color: #06213c;
    color: #fff;
}

.outline-btn {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.outline-btn:hover {
    background: #fff;
    color: var(--transport-dark);
}

/* ================= QUICK INFO ================= */

.quick-info {
    position: relative;
    margin-top: -70px;
    z-index: 10;
}

.quick-box {
    min-height: 125px;
    padding: 25px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 12px 35px rgb(0 0 0 / 32%);
    border-right: 1px solid #eee;
    border-radius: 10px;
}

.quick-icon {
    min-width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #06213c14;
    color: var(--transport-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.quick-box h5 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 700;
}

.quick-box p {
    margin: 0;
    color: var(--transport-text);
    font-size: 15px;
}

/* ================= COMMON ================= */

.section-padding {
    padding: 60px 0;
}



.section-label {
    display: inline-block;
    color: var(--transport-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading h2,
.contact-section h2 {
    font-size: 35px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 18px;
}

.section-heading h2 span,
.contact-section h2 span {
    color: var(--transport-orange);
}

.section-heading p,
.contact-section > .container > .row p {
    color: var(--transport-text);
    line-height: 1.8;
}

/* ================= ABOUT ================= */

.about-section {
    background: #fff;
}

.about-image {
    position: relative;
    padding-right: 35px;
    padding-bottom: 35px;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.experience-box {
    position: absolute;
    right: 0;
    bottom: 0;
    background: var(--transport-orange);
    color: #fff;
    padding: 25px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-box strong {
    font-size: 42px;
    line-height: 1;
}

.experience-box span {
    font-size: 13px;
    line-height: 1.5;
}

.about-points {
    margin: 25px 0;
}

.about-point {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
}

.about-point i {
    color: var(--transport-orange);
}

.about-btn {
    margin-top: 10px;
}

/* ================= SERVICES ================= */

.services-section {
    background: var(--transport-light);
}

.service-card {
    position: relative;
    background: #fff;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    border-bottom: 3px solid transparent;
    transition: 0.35s;
    overflow: hidden;
     transform: translateY(-8px);
    border-bottom-color: var(--transport-orange);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.service-card-one {
    padding: 30px;
}



.service-card h3 {
    position: relative;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 13px;
}

.service-card p {
    position: relative;
    color: var(--transport-text);
    font-size: 14px;
    line-height: 1.8;
}

.service-card a {
    color: var(--transport-orange);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}

.service-card a i {
    margin-left: 5px;
}

/* ================= WHY ================= */

.why-section {
    background: #fff;
}

.why-title {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.why-title span {
    color: var(--transport-orange);
}

.why-text {
    color: var(--transport-text);
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-item {
    display: flex;
    gap: 18px;
    margin-bottom: 25px;
}

.why-icon {
    min-width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--transport-blue);
    color: #fff;
    border-radius: 6px;
}

.why-item h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 5px;
}

.why-item p {
    color: var(--transport-text);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.why-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
}

/* ================= STATS ================= */

.stats-section {
    background: var(--transport-blue);
    padding: 30px 0;
}

.stat-box {
    padding: 10px 20px;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-box i {
    color: var(--transport-orange);
    font-size: 25px;
    margin-bottom: 12px;
}

.stat-box h3 {
    font-size: 38px;
    font-weight: 800;
    margin: 0;
    color: #fff;
}

.stat-box p {
    margin: 5px 0 0;
    color: #bfcbd7;
    font-size: 18px;
}



/* ================= TESTIMONIAL ================= */

.testimonial-section {
    background: #fff;
}

.testimonial-card {
    background: var(--transport-light);
    padding: 30px;
    border-radius: 7px;
    height: 100%;
}

.quote-icon {
    color: var(--transport-orange);
    font-size: 25px;
    margin-bottom: 15px;
}

.testimonial-card > p {
    color: #5f6c78;
    font-size: 14px;
    line-height: 1.8;
    min-height: 80px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 25px;
}

.client-avatar {
    width: 45px;
    height: 45px;
    background: var(--transport-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
}

.client-info h5 {
    font-size: 17px;
    margin: 0;
}

.client-info span {
    color: #7d8790;
    font-size: 12px;
}

/* ================= CONTACT ================= */

.contact-section {
    background: var(--transport-light);
}

.contact-section h2 {
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    color: var(--transport-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.contact-detail small {
        display: block;
    color: #0089da;
    font-size: 18px;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-detail strong {
    display: block;
    font-size: 14px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.contact-form h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 25px;
}

.form-control {
    min-height: 52px;
    border: 1px solid #e0e4e8;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 13px;
}

.form-control:focus {
    border-color: var(--transport-orange);
    box-shadow: 0 0 0 0.15rem rgba(245, 130, 32, 0.12);
}

textarea.form-control {
    min-height: 130px;
}

/* ================= FOOTER ================= */

.transport-footer {
    background: var(--transport-dark);
    color: #fff;
    padding: 75px 0 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-logo i {
    color: var(--transport-orange);
}

.transport-footer > .container > .row > div > p {
    color: #9aa9b7;
    font-size: 15px;
    line-height: 1.8;
}

.transport-footer h5 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #0089da;
}

.transport-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.transport-footer ul li {
    margin-bottom: 8px;
}

.transport-footer ul li a {
    color: #9aa9b7;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.transport-footer ul li a:hover {
    color: var(--transport-orange);
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border: 1px solid #344454;
    border-radius: 4px;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--transport-orange);
    border-color: var(--transport-orange);
}

.footer-contact {
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: var(--transport-orange);
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 55px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #82919e;
    font-size: 15px;
}

.footer-bottom a {
    color: #82919e;
    text-decoration: none;
    font-size: 15px;
    margin-left: 6px;
}

/* ================= BACK TO TOP ================= */

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 5px;
    background: var(--transport-orange);
    color: #fff;
    display: none;
    z-index: 999;
    cursor: pointer;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {
    .transport-header {
        background: var(--transport-dark);
        position: relative;
    }

    .transport-header .navbar {
        padding: 12px 0;
    }

    .transport-header .nav-link {
        margin-left: 0;
        padding: 12px 0 !important;
    }

    .header-btn {
        display: inline-flex;
        margin: 10px 0 15px;
    }

    .transport-hero {
        min-height: 650px;
    }

    .quick-info {
        margin-top: 0;
    }

    .quick-box {
        border-bottom: 1px solid #eee;
    }

    .section-padding {
        padding: 75px 0;
    }

    .about-image {
        padding-right: 20px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .why-image img {
        height: 450px;
    }
}

@media (max-width: 767px) {
    .transport-logo {
        font-size: 17px;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        display: block;
    }

    .main-btn,
    .outline-btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .section-heading h2,
    .why-title,
    .contact-section h2 {
        font-size: 32px;
    }

    .about-image img {
        height: 380px;
    }

    .experience-box {
        padding: 18px;
    }

    .experience-box strong {
        font-size: 32px;
    }

    .service-card {
        min-height: auto;
    }

    .stat-box {
        border-right: 0;
        margin-bottom: 30px;
    }

    .stat-box h3 {
        font-size: 30px;
    }

    .cta-box {
        padding: 30px;
    }

    .cta-box h2 {
        font-size: 27px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom div {
        margin-top: 10px;
    }

    .footer-bottom a {
        margin-left: 0;
        margin-right: 15px;
    }
}

/* home banner start */


.transport-hero-slider {
    position: relative;
    width: 100%;
    height: 760px;
    overflow: hidden;
    background: #061b31;
}

.transport-slider {
    position: relative;
    width: 100%;
    height: 100%;
}



.transport-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.transport-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}



.transport-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}



.transport-slide-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(3, 20, 37, 0.94) 0%,
        rgba(3, 20, 37, 0.78) 42%,
        rgba(3, 20, 37, 0.3) 75%,
        rgba(3, 20, 37, 0.08) 100%
    );

    z-index: 1;
}



.transport-slide .container {
    position: relative;
    height: 100%;
    z-index: 3;
}


.transport-hero-content {
    /* padding-top: 70px; */
    max-width: 750px;

    transform: translateY(30px);
    opacity: 0;

    transition:
        transform 0.9s ease 0.2s,
        opacity 0.9s ease 0.2s;
}

.transport-slide.active .transport-hero-content {
    transform: translateY(0);
    opacity: 1;
}



.transport-hero-small-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #0089da;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.transport-hero-content h1 {
    margin: 20px 0;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;

    font-weight: 800;
}

.transport-hero-content h1 span {
    display: block;
    color: #0089da;
}



.transport-hero-content p {
    max-width: 650px;

    margin-bottom: 0;

    color: #dce4ec;

    font-size: 17px;
    line-height: 1.8;
}

/*  
   BUTTONS  */

.transport-hero-buttons {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-top: 32px;
}

.transport-main-btn,
.transport-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    padding: 14px 24px;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;
}

/* Main Button */

.transport-main-btn {
    color: #ffffff;

    background: #0089da;

    border: 1px solid #0089da;
}

.transport-main-btn:hover {
    color: #ffffff;

    background: transparent;

    border-color: #0089da;

    transform: translateY(-2px);
}

/* Outline Button */

.transport-outline-btn {
    color: #ffffff;

    background: transparent;

    border: 1px solid rgba(255, 255, 255, 0.65);
}

.transport-outline-btn:hover {
    color: #061b31;

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-2px);
}

/* 
   PREV / NEXT BUTTON */

.transport-slider-btn {
    position: absolute;

    top: 50%;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    transform: translateY(-50%);

    z-index: 10;

    color: #ffffff;

    background: rgba(0, 0, 0, 0.25);

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 50%;

    cursor: pointer;

    transition: all 0.3s ease;
}

.transport-slider-btn:hover {
    color: #ffffff;

    background: #0089da;

    border-color: #0089da;
}

.transport-prev {
    left: 25px;
}

.transport-next {
    right: 25px;
}



.transport-slider-dots {
    position: absolute;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

    z-index: 10;
}

.transport-dot {
    width: 10px;
    height: 10px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    cursor: pointer;

    transition: all 0.3s ease;
}

.transport-dot.active {
    width: 32px;

    border-radius: 10px;

    background: #0089da;
}


@media (max-width: 991px) {
    .transport-hero-slider {
        height: 680px;
    }

    .transport-hero-content {
        padding-top: 30px;
        max-width: 650px;
    }

    .transport-hero-content h1 {
        font-size: 48px;
    }

    .transport-hero-content p {
        font-size: 15px;
    }

    .transport-slider-btn {
        width: 42px;
        height: 42px;
    }

    .transport-prev {
        left: 15px;
    }

    .transport-next {
        right: 15px;
    }
}



@media (max-width: 767px) {
    .transport-hero-slider {
        height: 650px;
    }

    .transport-slide > img {
        object-position: center;
    }

    .transport-slide-overlay {
        background: linear-gradient(
            90deg,
            rgba(3, 20, 37, 0.93),
            rgba(3, 20, 37, 0.65)
        );
    }

    .transport-hero-content {
        padding: 20px 20px 60px;
    }

    .transport-hero-small-title {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .transport-hero-content h1 {
        font-size: 38px;
        line-height: 1.12;

        margin: 16px 0;
    }

    .transport-hero-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .transport-hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: stretch;

        gap: 10px;

        margin-top: 25px;
    }

    .transport-main-btn,
    .transport-outline-btn {
        width: 100%;
        min-height: 50px;
    }

    .transport-slider-btn {
        display: none;
    }

    .transport-slider-dots {
        bottom: 20px;
    }
}



@media (max-width: 400px) {
    .transport-hero-slider {
        height: 620px;
    }

    .transport-hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .transport-hero-content h1 {
        font-size: 33px;
    }

    .transport-hero-content p {
        font-size: 13px;
    }
}
/* home banner end */

/* 
   TRANSPORT HEADER */

.transport-header {
    position: relative;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
}

/* 
   TOP BAR  */

.transport-topbar {
    background: #06213c;
    color: #ffffff;
    width: 100%;
}

.transport-topbar-inner {
    min-height: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

/*  
   CONTACT INFORMATION  */

.transport-contact-info {
    display: flex;
    align-items: center;
    gap: 25px;
}

.transport-contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #ffffff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 500;

    transition: 0.3s;
}

.transport-contact-info a:hover {
    color: #0089da;
}

.transport-contact-info i {
    color: #0089da;
    font-size: 12px;
}

/* 
   SOCIAL MEDIA  */

.transport-social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.transport-social-links span {
    margin-right: 5px;

    color: #c8d2dc;

    font-size: 11px;
}

.transport-social-links a {
    width: 26px;
    height: 26px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;

    text-decoration: none;

    font-size: 11px;

    transition: 0.3s;
}

.transport-social-links a:hover {
    color: #ffffff;

    background: #0089da;

    border-color: #0089da;

    transform: translateY(-2px);
}

/*  
   MAIN NAVBAR  */

.transport-header .navbar {
    background: #ffffff !important;

    padding: 12px 0;

    border-bottom: 1px solid #eeeeee;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}


/* nav bar start */

   /* LOGO start */


.transport-logo {
    display: flex;
    align-items: center;

    padding: 0;

    margin: 0;
}

.transport-logo img 
{
   /* width: 100%; */
    /* height: 65px; */
    max-width: 277px;
    object-fit: contain;
}

/* NAVIGATION */

.transport-header .nav-link {
    position: relative;
    color: #172331 !important;
    font-size: 16px;
    font-weight: 600;
    padding: 10px !important;
    transition: 0.3s;
}

.transport-header .nav-link:hover,
.transport-header .nav-link.active {
    color: #0089da !important;
}

/* Bottom hover line */

.transport-header .nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 3px;

    width: 0;
    height: 2px;

    background: #0089da;

    transition: 0.3s;
}

.transport-header .nav-link:hover::after,
.transport-header .nav-link.active::after {
    width: 100%;
}

/* 
   GET QUOTE BUTTON
 */

.transport-header .header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 13px 21px;

    color: #ffffff !important;

    background: #0089da;

    border: 1px solid #0089da;

    border-radius: 5px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s;
}

.transport-header .header-btn:hover {
    color: #ffffff !important;

    background: #06213c;

    border-color: #06213c;
}

/*
   MOBILE TOGGLE */

.transport-header .navbar-toggler {
    border: 1px solid #dddddd;

    padding: 8px 10px;

    box-shadow: none !important;
}

.transport-header .navbar-toggler:focus {
    box-shadow: none !important;
}

/*  
   TABLET  */

@media (max-width: 991px) {
    .transport-topbar-inner {
        padding: 8px 0;
    }

    .transport-header .navbar {
        padding: 10px 0;
    }

    .transport-logo img {
        height: 55px;
    }

    .transport-header .navbar-nav {
        padding-top: 15px;
    }

    .transport-header .nav-link {
        margin-left: 0;

        padding: 10px 0 !important;
    }

    .transport-header .nav-link::after {
        display: none;
    }

    .transport-header .header-btn {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

/*  
   MOBILE  */

@media (max-width: 767px) {
    .transport-topbar-inner {
        min-height: auto;

        padding: 8px 0;

        flex-direction: column;

        justify-content: center;

        gap: 7px;
    }

    .transport-contact-info {
        width: 100%;

        justify-content: center;

        gap: 15px;

        flex-wrap: wrap;
    }

    .transport-contact-info a {
        font-size: 10px;
    }

    .transport-social-links {
        justify-content: center;
    }

    .transport-social-links span {
        font-size: 10px;
    }

    .transport-social-links a {
        width: 24px;
        height: 24px;

        font-size: 10px;
    }

    .transport-logo img {
        height: 48px;

        max-width: 180px;
    }

    .transport-header .navbar {
        padding: 8px 0;
    }
}

/*  
   VERY SMALL MOBILE  */

@media (max-width: 400px) {
    .transport-contact-info {
        gap: 10px;
    }

    .transport-contact-info a {
        font-size: 9px;
    }

    .transport-social-links span {
        display: none;
    }
}
/* nav bar end  */




/* vision mission start */


.axis-mission-vision {
    padding: 90px 0 20px;
    background: #f5f7fa;
}

/* CARD */

.axis-info-card {
    height: 100%;
    position: relative;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #e5e9ee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

/* TOP BORDER */

.axis-info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #0089da;
}

/* HEADING */

.axis-card-content h2 {
    margin: 0;
    color: #06213c;
    font-size: 30px;
    font-weight: 700;
    text-transform: capitalize;
}

/* LINE */

.axis-line {
    width: 55px;
    height: 3px;
    margin: 18px 0 22px;
    background: #0089da;
}

/* TEXT */

.axis-card-content p {
    margin-bottom: 15px;
    color: #5c6670;
    font-size: 15px;
    line-height: 1.8;
}

.axis-card-content p:last-child {
    margin-bottom: 0;
}

/* HOVER */

.axis-info-card:hover {
    transform: translateY(-8px);
    border-color: #0089da;
    box-shadow: 0 15px 40px rgba(6, 33, 60, 0.12);
}

/* VISION DIFFERENT STYLE */

.axis-vision-card .axis-card-content h2 {
    color: #ffffff;
}

.axis-vision-card .axis-card-content p {
    color: #d7e0e8;
}

.axis-vision-card:hover {
    border-color: #0089da;
}



@media (max-width: 991px) {
    .axis-mission-vision {
        padding: 70px 0;
    }

    .axis-info-card {
        padding: 35px 30px;
    }

    .axis-card-content h2 {
        font-size: 30px;
    }
}


@media (max-width: 767px) {
    .axis-mission-vision {
        padding: 50px 0;
    }

    .axis-info-card {
        padding: 30px 25px;
        border-radius: 10px;
    }

    .axis-card-content h2 {
        font-size: 27px;
    }

    .axis-card-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}
/* vision mission end */

/* our methodology start */

.axis-points-section {
    background: #f5f7fa;
}

.axis-point-box {
    /* min-height: 95px; */
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    background: #ffffff;
    border: 1px solid #e5e9ee;
    border-left: 4px solid #0089da;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.axis-point-box span {
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #06213c;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.axis-point-box h3 {
    margin: 0;
    color: #06213c;
    font-size: 18px;
    font-weight: 600;
}

.axis-point-box:hover {
    transform: translateY(-5px);
    border-color: #0089da;
    box-shadow: 0 10px 25px rgba(6, 33, 60, 0.1);
}

.axis-point-box:hover span {
    background: #0089da;
}

/* MOBILE */

@media (max-width: 767px) {
    .axis-points-section {
        padding: 40px 0;
    }

    .axis-point-box {
        min-height: 85px;
        padding: 16px 18px;
        gap: 15px;
    }

    .axis-point-box span {
        min-width: 42px;
        height: 42px;
        font-size: 13px;
    }

    .axis-point-box h3 {
        font-size: 16px;
    }
}

/* our methodology end */


/* breadcrumb start */

.axtr-breadcrumb-banner {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;

    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* DARK IMAGE OVERLAY */

.axtr-breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 33, 60, 0.78);
    z-index: 1;
}

/* CONTENT */

.axtr-breadcrumb-banner .container {
    position: relative;
    z-index: 2;
}

.axtr-breadcrumb-inner {
    text-align: center;
}

.axtr-breadcrumb-inner h1 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 44px;
    font-weight: 700;
}

/* BREADCRUMB */

.axtr-breadcrumb-nav {
    justify-content: center;
    margin: 0;
}

.axtr-breadcrumb-nav .breadcrumb-item {
    color: #ffffff;
    font-size: 14px;
}

.axtr-breadcrumb-nav .breadcrumb-item a {
    color: #0089da;
    text-decoration: none;
    font-weight: 600;
}

.axtr-breadcrumb-nav .breadcrumb-item.active {
    color: #ffffff;
}

/* SEPARATOR */

.axtr-breadcrumb-nav .breadcrumb-item + .breadcrumb-item::before {
    color: #0089da;
    content: "/";
}


/* MOBILE */

@media (max-width: 767px) {

    .axtr-breadcrumb-banner {
        min-height: 210px;
        background-position: center;
    }

    .axtr-breadcrumb-inner h1 {
        font-size: 30px;
    }

    .axtr-breadcrumb-nav .breadcrumb-item {
        font-size: 13px;
    }
}

/* breadcrumb end */


.gallery_img_box img
    {
        width: 100%;
        border-radius: 10px;
    }