﻿html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

a:hover, a:focus {
    color: #2a6496;
    text-decoration: none;
}

.container {
    max-width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin-left: 0px;
    margin-right: 0px;
}

.top-container {
    background-color: #3f6eb0;
    padding: 10px 10px 15px 10px;
    text-align: left;
    color: #fff;
}

.slider-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .slider-container {
        max-width: 1200px;
    }
}
/***Header STart****/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /*font-family: "Segoe UI", sans-serif;*/
    font-family: "lato";
}

/*.glass-header {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 20px 0;
}

.glass-nav {
    max-width: 1250px;
    margin: auto;  
    background: rgb(255 255 255 / 0%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    animation: fadeSlide 0.6s ease;
}*/
.glass-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 20px 0;
    transition: all 0.4s ease;
}

.glass-nav {
    max-width: 1250px;
    margin: auto;
    /*background: rgba(255,255,255,0.08);*/
    background: #ffffff;
    opacity: 0.9;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 60px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    transition: all 0.4s ease;
}

@keyframes fadeSlide {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-wrapper { 
    display: flex; 
    align-items: center; 
    justify-content: space-around; 
    padding: 10px 10px;

}

.logo img {
    height: 40px;
    transition: all 0.4s ease;
    margin-left: -80px
}

.nav-menu a {
    font-size: 0.9em;
    transition: all 0.4s ease;
    color: #2D486C;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
}

/*.logo img {
    height: 50px;
}*/

.list-unstyled {
    padding-left: 0;
    list-style: none;
}


.nav-menu {
    list-style: none;
    display: flex;
    column-gap: 15px;
    margin-bottom: 0px;
}

    .nav-menu li {
        position: relative;
    }

    /*.nav-menu a {
        color: #fff;
        text-decoration: none;
        font-weight: 500;
        padding: 6px 0;
        transition: 0.3s;
    }*/


    .nav-menu a::after {
        content: '';
        width: 0;
        height: 2px;
        background: #2C476B;
        position: absolute;
        left: 0;
        bottom: -4px;
        transition: 0.3s;
    }

    .nav-menu a:hover::after {
        width: 100%;
    }

    .nav-menu a:hover {
        color: #f15924;
    }


.dropdown-list {
    position: absolute;
    top: 140%;
    left: 0;
    /*background: rgba(255,255,255,0.95);*/
    background: radial-gradient(circle at top, #1e5a9e, #0A66C2);
    min-width: 220px;
    border-radius: 14px;
    box-shadow: 0 20px 30px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.4s;
}

.dropdown:hover .dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    list-style: none;
}

.dropdown-list a {
    display: block;
    padding: 12px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
}

    .dropdown-list a:hover {
        background: #f15924;
        color: #fff;
    }


.quote-btn {
    background: linear-gradient(135deg, #f15924, #ff7b45);
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

    .quote-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(241,89,36,0.4);
        background: #fff;
        color: #f15924;
    }


.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

    .hamburger span {
        width: 26px;
        height: 3px;
        background: #0A66C2;
        border-radius: 3px;
    }
/* ===============================
   STICKY HEADER ON SCROLL
================================ */

.glass-header.scrolled {
    position: fixed;
    padding: 10px 16px;
    animation: slideDown 0.4s ease;
}

    .glass-header.scrolled .glass-nav {
        /*border-radius: 0;
    max-width: 100%;*/
        /*background: rgba(8, 20, 40, 0.85);*/
        box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    }

    /* Smaller logo */
    .glass-header.scrolled .logo img {
        height: 40px;
    }

    /* Smaller menu text */
    .glass-header.scrolled .nav-menu a {
        font-size: 14px;
    }

        /* Remove underline animation thickness */
        .glass-header.scrolled .nav-menu a::after {
            height: 1px;
        }

    /* CTA button shrink */
    .glass-header.scrolled .quote-btn {
        padding: 8px 20px;
        font-size: 14px;
    }

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
/*@media (max-width: 992px) {
    .glass-header.scrolled .glass-nav {
        border-radius: 20px;
    }
}*/
@media (max-width: 992px) {

    /*.glass-nav {
        border-radius: 30px;
    }*/

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        backdrop-filter: blur(12px);
        border-radius: 25px;
        flex-direction: column;
        display: none;
        padding: 15px 0;
    }

        .nav-menu.active {
            display: flex;
        }

        .nav-menu li {
            text-align: center;
        }

        .nav-menu a {
            padding: 14px;
            display: block;
        }

    .quote-btn {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}


/***Header End***/


/*********footer start**********/


.kc-footer {
    position: relative;
    background-image: url('../images/Services/1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 80px 0 30px;
    overflow: hidden;
}

.kc-footer-overlay {
    position: absolute;
    inset: 0;
    /*background: radial-gradient(circle at top, #1e5a9e, #060b16);*/
    z-index: 0;
    background: #f1f1f1;
    box-shadow: 0 20px 40px rgb(0 0 0 / 25%);
}

.kc-footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* Grid */
.kc-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

/* Logo */
.kc-footer-logo {
    max-width: 50px;
    margin-bottom: 3px;
}

/* Text */
.kc-footer-text {
    color: #2B4568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
}
/* Add right border only to the first grid item */
.kc-footer-grid > div:first-child {
    border-right: 2px solid #eee; /* Change the color and thickness as needed */
    justify-content:space-between;
}

/* Ensure no borders for the rest of the items */
.kc-footer-grid > div:not(:first-child) {
    border-right: none;
}
/* Social */
.kc-footer-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.kc-footer-social a{
    width:44px;
    height:44px;
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:all 0.3s ease;
}

/* ICON COLOR */
.kc-footer-social a i{
    color:#fff;
    font-size:20px;
}

.kc-footer-social .facebook{
    background-color:#1877f2;
}

.kc-footer-social .instagram{
    background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
}

.kc-footer-social .whatsapp{
    background-color:#25d366;
}

.kc-footer-social .linkedin{
    background-color:#0a66c2;
}

/* Hover Effect */
.kc-footer-social a:hover{
    transform:translateY(-3px);
    box-shadow:0 6px 12px rgba(0,0,0,0.25);
}

/* Titles */
.kc-footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    /*color: #0A66C2;*/
    color: #2B4568;
    margin-top: 4px;
}

    .kc-footer-title::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 40px;
        height: 3px;
        background: #f15924;
    }

/* Links */
.kc-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .kc-footer ul li {
        margin-bottom: 12px;
    }

        .kc-footer ul li a {
            /*color: #0A66C2;*/
            color: #2B4568;
            font-size: 15px;
            transition: all 0.3s ease;
        }

            .kc-footer ul li a:hover {
                color: #f15924;
                padding-left: 6px;
            }

/* Contact */
.kc-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.kc-footer-contact i {
    color: #f15924;
    margin-top: 4px;
}

/* Bottom */
.kc-footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    /*margin-top: 50px;
    padding-top: 20px;*/
    text-align: center;
}

    .kc-footer-bottom p {
        font-size: 14px;
        color: #ffffff;
        background-color: #ee612e;
    }

    .kc-footer-bottom a {
        color: #fff;
        font-weight: 600;
    }

        .kc-footer-bottom a:hover {
            color: #0A66C2;
        }

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {
    .kc-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .kc-footer {
        text-align: center;
    }

    .kc-footer-grid {
        grid-template-columns: 1fr;
    }

    .kc-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .kc-footer-contact li {
        justify-content: center;
        text-align: left;
    }
}
/**************************************END FOOTER***************************************/

/**************************************Sldier STrat***************************************/
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s ease, transform 1.5s ease;
}

    .slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgb(0 57 106 / 18%), rgba(0,57,106,0.3) );
        /*background: linear-gradient( 90deg, rgb(0 57 106), rgb(0 57 106 / 62%) );*/
    }

    .slide.active {
        opacity: 1;
        transform: scale(1);
        z-index: 1;
    }


.slide-content {
    position: absolute;
    left: 7%;
    top: 55%;
    transform: translateY(-50%);
    max-width: 925px;
    padding: 40px;
    border-radius: 25px;
    /*background: rgba(255,255,255,0.12);*/
    /*backdrop-filter: blur(14px);*/
    color: #fff;
    animation: slideText 1.2s ease;
    /*position: absolute;
    left: 7%;
    top: 55%;
    transform: translateY(-50%);
    max-width: 620px;
    padding: 40px;
    border-radius: 25px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(14px);
    color: #fff;
    animation: slideText 1.2s ease;*/
}

@keyframes slideText {
    from {
        opacity: 0;
        transform: translate(-40px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}


.tagline {
    color: #f15924;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.slide-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin: 15px 0;
}

    .slide-content h1 span {
        color: #ee612e;
    }

.slide-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.slider-btn {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, #f15924, #ee612e);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

    .slider-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(241,89,36,0.4);
        background: #fff;
        color: #f15924;
    }

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 10%;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
    z-index: 10;
}

    .slider-nav:hover {
        background: #f15924;
        transform: translateY(-50%) scale(1.15);
    }

.prev {
    left: 0px;
}

.next {
    right: 0px;
}
/* ===============================
   HERO SLIDER TYPOGRAPHY UPGRADE
   (NO STRUCTURE CHANGE)
================================ */

.slide-content h1 {
    font-size: 60px; /* Bigger */
    font-weight: 800; /* Bold like Transhub */
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

    .slide-content h1 span {
        font-weight: 900; /* Extra bold highlight */
    }

.tagline {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    /*background: rgba(255,255,255,0.12);*/
    padding: 5px;
}

.slide-content p {
    font-size: 18px;
    font-weight: 500;
    /*max-width: 520px;*/
    line-height: 1.7;
}

/* Button stronger */
.slider-btn {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ===============================
   RESPONSIVE SAFE SCALE
================================ */

@media(max-width: 992px) {
    .slide-content h1 {
        font-size: 48px;
    }
}

@media(max-width: 768px) {
    .slide-content h1 {
        font-size: 34px;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 16px;
    }
}

@media(max-width: 768px) {
    .slide-content {
        left: 5%;
        right: 5%;
        padding: 25px;
    }

        .slide-content h1 {
            font-size: 28px;
        }
}

/****************************************Slider End*****************************************/


#scrollUp {
    background: #ee612e none repeat scroll 0 0;
    bottom: 90px;
    color: #ffffff;
    cursor: pointer;
    display: none;
    font-size: 20px;
    height: 45px;
    line-height: 39px;
    position: fixed;
    text-align: center;
    z-index: 9999;
    border: 2px solid #fff;
    -webkit-transition: .3s;
    transition: .3s;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

    #scrollUp:hover {
        background: #fff none repeat scroll 0 0;
        color: #0c6db6;
    }


/**Whatsapp Button Start**/
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 150px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 99999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
        color: #fff;
    }

/* Mobile spacing fix */
/*@media (max-width: 576px) {
    .whatsapp-float {
        right: 15px;
        bottom: 75px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}*/

/**Whatsapp Button End**/
/***Section Start***/
.section-padding {
    padding: 60px 0;
}

.section-title h2 {
    font-family: Radio Canada Big,sans-serif;
    margin: 0;
    padding: 0;
    color: #0A66C2;
    text-transform: capitalize;
    transition: all .4s ease-in-out;
    font-weight: 700;
    line-height: 117%;
    font-size: 25px;
}

.section-title h6 {
    color: #db4900;
    /*font-size: 20px;
    font-weight: 600;
    line-height: 140%;*/
    margin-bottom: 15px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    font-weight: 700;
    line-height: 117%;
    font-size: 25px;
}

@media (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
}


.main-button {
    position: relative;
    display: flex;
    align-items: center;
    /*margin-top: 50px;*/
}

    .main-button .theme-btn {
        position: relative;
        z-index: 2;
        display: inline-block;
        border: none;
        text-transform: uppercase;
        text-align: center;
        background-color: #db4900;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        line-height: 1;
        padding: 18px 32px;
        letter-spacing: .5px;
        border-radius: 32px;
        font-family: Radio Canada Big,sans-serif;
    }

    .main-button .arrow-btn {
        width: 56px;
        height: 56px;
        line-height: 56px;
        text-align: center;
        background: #db4900;
        color: #fff;
        border-radius: 50%;
        display: inline-block;
        transition: all .4s ease-in-out;
    }

    .main-button:hover .theme-btn, .main-button:hover .arrow-btn {
        background-color: #000;
    }

    .main-button .arrow-btn:hover {
        background: #000;
    }

.align-items-center {
    align-items: center !important;
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

.section-bg {
    background-color: #f1f1f1;
}

/**Section End***/

/****************************************About End*****************************************/
/*.about-wrapper .about-content {
    margin-right: 30px;
}

    .about-wrapper .about-content .icon-box .icon {
        margin-right: 15px;
    }

.about-wrapper .about-image {
    position: relative;
    z-index: 9;
}

    .about-wrapper .about-image .about-count-box {
        position: relative;
        position: absolute;
        bottom: 0;
        left: 0;
    }

        .about-wrapper .about-image .about-count-box .about-counter-item h2 {
            font-size: 64px;
            color: #fff;
        }

.about-wrapper .about-content .icon-box .content h4 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
}

.about-wrapper .about-content .icon-box .content p {
    max-width: 410px;
    color: #777d7f;
}

.about-wrapper .about-image .about-count-box .about-counter-item p {
    color: #fff;
    font-weight: 600;
}

.about-wrapper .about-image .about-count-box .about-counter-item {
    position: absolute;
    bottom: 23%;
    left: 33%;
}

.about-wrapper .about-content .icon-box {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}

@media (max-width: 1399px) {
    .about-wrapper .about-image img {
        width: 100%;
        height: 100%;
        margin-top: 20px;
    }
}*/
.about-ref-section {
    /*padding: 100px 0;*/
    background: #fff;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* IMAGE SIDE */
.about-image-wrap {
    position: relative;
}

.circle-image {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;
    position: relative;
    z-index: 2;
    animation: floatImg 6s ease-in-out infinite;
}

    .circle-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.bg-image {
    position: absolute;
    left: -60px;
    bottom: -80px;
    z-index: 1;
}

    .bg-image img {
        max-width: 420px;
    }

/* CONTENT */
.about-content-wrap .sub-title {
    color: #f15924;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    display: inline-block;
}

.about-content-wrap h2 {
    font-size: 27px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #00396a;
}

.about-content-wrap p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

.about-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin-bottom: 30px;
}

    .about-points .point {
        font-size: 15px;
        font-weight: 500;
        color: #00396a;
    }

    .about-points span {
        color: #f15924;
        margin-right: 6px;
    }

/* ACTIONS */
.about-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.about-btn {
    background: #f15924;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

    .about-btn:hover {
        background: #00396a;
        transform: translateY(-3px);
        color: #fff;
    }

.call-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .call-box i {
        width: 45px;
        height: 45px;
        background: #00396a;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .call-box small {
        display: block;
        color: #777;
    }

    .call-box strong {
        color: #f15924;
    }

/* ABOUT LEFT DESIGN */
.about-left-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding-right: 40px;
}

.about-img {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .about-img:hover img {
        transform: scale(1.08);
    }

/* Individual positioning */
.img-1 {
    grid-column: 1 / 2;
}

.img-2 {
    grid-column: 2 / 3;
}

.img-3 {
    grid-column: 1 / 2;
}

.img-4 {
    grid-column: 2 / 3;
}

/* Experience Box */
.about-exp-box {
    position: absolute;
    top: 35%;
    left: 35%;
    width: 180px;
    height: 180px;
    /*background: #ff8c42;*/
    background: radial-gradient(circle at top, #1e5a9e, #060b16);
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    box-shadow: 0 25px 60px rgba(255,140,66,0.45);
    animation: floatBox 4s ease-in-out infinite;
}

    .about-exp-box .icon {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .about-exp-box h3 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .about-exp-box p {
        font-size: 14px;
        opacity: 0.95;
    }

/* Floating Animation */
@keyframes floatBox {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}


/* FLOAT ANIMATION */
@keyframes floatImg {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .circle-image {
        margin: auto;
    }

    .about-points {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .about-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* RESPONSIVE */
/*@media (max-width: 991px) {
    .about-left-wrap {
        padding-right: 0;
    }

    .about-exp-box {
        position: relative;
        top: auto;
        left: auto;
        margin: 20px auto 0;
    }*/
}

@media (max-width: 575px) {
    .about-left-wrap {
        grid-template-columns: 1fr;
    }

    /*.about-exp-box {
        width: 160px;
        height: 160px;
    }*/
}

@media (max-width: 765px) {
    .about-exp-box {
        width: auto;
        height: auto;
        left: 25%;
        padding: 10px;
    }

    .about-left-wrap {
        padding-right: 0px;
    }

    .about-exp-box h3 {
        font-size: 17px;
    }
}

/****************************************About End*****************************************/

/****************************************Services Strat*****************************************/
/* ================================
   SERVICE SLIDER – PRO DESIGN
================================ */

.owl-carousel2 .owl-stage{
    display:flex;
    gap:25px;
}

.service-box-items{
    border-radius:24px;
    overflow:hidden;
    position:relative;
    transition:all 0.45s ease;
    margin-top:20px;
    background-color:#f5f5f5;
    border:1px solid #d9d9d9;

    width:100%;
    max-width:390px;
    min-height:500px;
    height:auto;
    margin-left:auto;
    margin-right:auto;
}

.service-box-items:hover{
    transform:translateY(-10px);
}

/* IMAGE AREA */
.service-image{
    position:relative;
    overflow:hidden;
    border-radius:24px 24px 0 0;
    height:300px;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform 0.6s ease;
}

.service-box-items:hover .service-image img{
    transform:scale(1.08);
}

/* IMAGE DARK OVERLAY */
.service-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 120deg, rgba(3, 16, 46, 0.75), rgba(250, 100, 68, 0.75) );
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-box-items:hover .service-image::after {
    opacity: 1;
}

/* CONTENT */
.service-content {
    padding: 30px 25px;
    text-align: left;
    position: relative;
}

/* ICON */
.service-icon {
    width: 64px;
    height: 64px;
    background: #0A66C2;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.45s ease;
}

    .service-icon svg,
    .service-icon img {
        width: 32px;
        transition: all 0.45s ease;
        filter: brightness(0) invert(1);
    }

.service-box-items:hover .service-icon {
    background: #ee612e;
    transform: rotate(12deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(250,100,68,0.5);
}

    .service-box-items:hover .service-icon svg path {
        fill: #ffffff;
    }

/* TITLE */
.service-content h3 a {
    font-size: 22px;
    font-weight: 700;
    color: #03102e;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

    .service-content h3 a::after {
        content: "";
        width: 0;
        height: 3px;
        background: #fa6444;
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: width 0.4s ease;
    }

.service-box-items:hover h3 a {
    color: #fa6444;
}

    .service-box-items:hover h3 a::after {
        width: 60%;
    }

/* VIEW DETAILS BUTTON (IF ADDED LATER) */
.view-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-weight: 600;
    color: #03102e;
    transition: all 0.4s ease;
}

    .view-btn i {
        background: #03102e;
        color: #fff;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }

.service-box-items:hover .view-btn {
    color: #fa6444;
}

    .service-box-items:hover .view-btn i {
        background: #fa6444;
        transform: translateX(6px);
    }

/* SLIDER NAV BUTTONS */
.array-button button {
    width: 40px;
    height: 40px;
    border-radius: 10%;
    background: #0A66C2;
    line-height: 1;
    color: #fff;
    border: none;
    transition: all 0.4s ease;
    margin-top: 10px;
}

    .array-button button:hover {
        background: #fa6444;
        transform: scale(1.1);
        box-shadow: 0 12px 25px rgba(250,100,68,0.6);
    }
/*.service-section {
    position: relative;
    z-index: 9;
}

.service-box-items {
    border-radius: 12px;
    background-color: #fff;
    border: 1.5px solid #fff;
    padding: 30px 50px;
    margin-top: 30px;
    transition: all .4s ease-in-out;
}

.service-section .service-shape-1 {
    position: absolute;
    z-index: -1;
    bottom: 0;
    right: 0;
}

.service-box-items .service-image img {
    width: 100%;
    height: 100%;
}

.service-box-items .service-content {
    text-align: center;
}

    .service-box-items .service-content .service-icon {
        position: relative;
        width: 64px;
        height: 64px;
        background-color: #f1f1f1;
        line-height: 85px;
        margin: -35px auto 0;
        border-radius: 50%;
        transition: all .4s ease-in-out;
    }

.service-icon img {
    padding: 10px;
}

    .service-icon img:hover {
        filter: sepia(1);
    }

.service-box-items:hover .service-content .service-icon {
    background-color: #db4900;
}

    .service-box-items:hover .service-content .service-icon svg path {
        fill: #fff;
    }

.service-box-items .service-content .service-icon svg {
    position: relative;
    z-index: 3;
    text-align: center;
}

.service-box-items .service-content h3 {
    margin-top: 22px;
}

.swiper-horizontal {
    touch-action: pan-y;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
    transform: translateZ(0);
}

.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}

.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
}

.service-section .array-button .array-prev {
    position: absolute;
    content: "";
    top: 23%;
    left: 18%;
    z-index: 99;
}

.service-section .array-button .array-next {
    position: absolute;
    content: "";
    top: 23%;
    right: 18%;
    z-index: 99;
}

.array-button .array-next {
    background-color: #db4900;
    color: #fff;
}

.member-box {
    padding: 10px;
}


@media (max-width: 1399px) {
    h3 {
        font-size: 21px;
    }

    .service-section .array-button {
        display: none;
    }
}*/

/****************************************Services End*****************************************/

/****************************************work-process End*****************************************/


.kp-work-process {
    background: radial-gradient(circle at top, #1e5a9e, #060b16);
    padding: 100px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.kp-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}


/* Section Header */
.kp-section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 70px;
}

.kp-badge {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 30px;
    background: rgba(255,255,255,0.08);
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.kp-section-head h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
}

.kp-section-head p {
    color: #cbd5e1;
    font-size: 16px;
}

/*Flow-process*/
.kp-process-flow{
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:25px;
    width:100%;
    padding:20px 10px;
    flex-wrap:nowrap;
}

.kp-process-step{
    position:relative;
    width:180px;
    text-align:center;
    flex-shrink:0;
}

/* ARROW */

.kp-process-step:not(:last-child)::after{
    content:'➜';
    position:absolute;
    top:68px;
    right:-20px;
    font-size:22px;
    color:#0b4ea2;
    font-weight:700;
}

/* CIRCLE */

.kp-circle{
    width:140px;
    height:140px;
    border-radius:50%;
    margin:auto;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
}

.kp-circle::before{
    content:'';
    position:absolute;
    width:82%;
    height:82%;
    border-radius:50%;
    border-top:3px solid #0b4ea2;
    border-left:3px solid #0b4ea2;
    border-right:3px dotted #000;
    border-bottom:3px dotted #000;
    transform:rotate(-35deg);
}

/* STEP NUMBER */

.kp-step{
    position:absolute;
    top:-8px;
    left:50%;
    transform:translateX(-50%);
    width:38px;
    height:38px;
    border-radius:50%;
    background:#0b4ea2;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:700;
    z-index:2;
    border:3px solid #fff;
}

/* ICON */

.kp-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.kp-icon img{
    width:100%;
    height:100%;
    object-fit:contain;
}

/* TITLE */

.kp-process-step h4{
    font-size:16px;
    font-weight:700;
    color:#0c2d57;
    margin-top:8px;
    margin-bottom:8px;
    line-height:1.4;
}

/* DESCRIPTION */

.kp-process-step p{
    font-size:12px;
    line-height:1.6;
    color:#333;
    max-width:170px;
    margin:auto;
}

@media(max-width:767px){

    .kp-process-flow{
        flex-direction:column;
        align-items:center;
        gap:30px;
    }

    .kp-process-step{
        width:100%;
        max-width:240px;
    }

    .kp-process-step:not(:last-child)::after{
        content:'↓';
        display:block;
        position:relative;
        top:auto;
        right:auto;
        margin-top:15px;
        font-size:22px;
        color:#0b4ea2;
    }

    .kp-circle{
        width:120px;
        height:120px;
    }

    .kp-circle::before{
        width:78%;
        height:78%;
    }

    .kp-icon{
        width:42px;
        height:42px;
    }

    .kp-step{
        width:34px;
        height:34px;
        font-size:13px;
    }

    .kp-process-step h4{
        font-size:15px;
    }

    .kp-process-step p{
        font-size:11px;
        max-width:210px;
    }
}


/* Grid */
/*.kp-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}*/

/* Card */
/*.kp-process-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}*/

    /*.kp-process-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        background: linear-gradient(135deg, transparent, rgba(255,153,51,0.15));
        opacity: 0;
        transition: 0.4s;
    }

    .kp-process-card:hover::before {
        opacity: 1;
    }

    .kp-process-card:hover {
        transform: translateY(-12px);
        border-color: rgb(177 175 172);
    }*/

/* Icon */
/*.kp-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /*background: rgba(255,153,51,0.15);*/
    /*background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    transition: transform 0.4s ease;
}*/

    /*.kp-icon img {
        width: 34px;
    }
     .kp-process-card:hover  .kp-icon img {
          transition: all 0.45s ease;
        filter: brightness(0) invert(1);
        }
.kp-process-card:hover .kp-icon {
    transform: rotateY(180deg);
    background: #f15924;
}*/

/* Text */
/*.kp-process-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.kp-process-card p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
}*/
/* Step Number Style */
/*.kp-process-card .kp-step {
    position: absolute;
    top: 0px;
    right: 0px;
    font-size: 82px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05); /* transparent white for dark bg */
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}*/

/* Keep content above number */
.kp-process-card > *:not(.kp-step) {
    position: relative;
    z-index: 2;
}

.OPPage .kp-work-process {
    background: #fff !important;
    color: #03102e;
}

.OPPage .kp-section-head h2 {
    color: #1e5a9e;
}

.OPPage .kp-process-card h4 {
    color: #fff;
}

.OPPage .kp-process-card {
    background: radial-gradient(circle at top, #1e5a9e, #060b16);
}

    .OPPage .kp-process-card::before {
        background: linear-gradient(180deg, rgb(255 255 255 / 79%), rgba(255,255,255,0.01));
    }

.OPPage .kp-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
    .kp-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .kp-section-head h2 {
        font-size: 32px;
    }

    .kp-process-grid {
        grid-template-columns: 1fr;
    }
}

/****************************************work-process End*****************************************/

/****************************************WhyChooseUs End*****************************************/
/* ================================
   CHOOSE SECTION – TRANS HUB STYLE
================================ */

.choose-wrapper {
    padding: 80px 0;
    position: relative;
}

.choose-col {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

/* CARD */
.single-choose {
    background: #1e5a9e;
    border-radius: 18px;
    padding: 22px 24px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.45s ease;
    cursor: pointer;
    clip-path: polygon(0 0,100% 0,100% 100%,8% 100%);
    z-index: 1;
}

    .single-choose h3 {
        font-size: 18px;
        font-weight: 700;
        color: #fff;
        line-height: 1.3;
        margin: 0;
    }

    /* ICON */
    .single-choose .icon {
        width: 54px;
        height: 54px;
        border-radius: 14px;
        background: #ff5a30;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.4s ease;
    }

        .single-choose .icon img {
            width: 28px;
            filter: brightness(0) invert(1);
        }

    /* CONNECTOR DOT */
    .single-choose::after {
        content: "";
        width: 10px;
        height: 10px;
        background: #ff5a30;
        border-radius: 50%;
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
    }

/* RIGHT SIDE DOT */
.choose-col.right .single-choose::after {
    left: -25px;
    right: auto;
}

/* HOVER EFFECT */
.single-choose:hover {
    background: #03102e;
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(3,16,46,0.25);
}

    .single-choose:hover h3 {
        color: #fff;
    }

    .single-choose:hover .icon {
        background: #fff;
        transform: rotate(12deg) scale(1.1);
    }

        .single-choose:hover .icon img {
            filter: none;
        }

/* CENTER IMAGE */
.choose-media img {
    max-width: 100%;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .choose-col {
        gap: 20px;
    }

    .single-choose::after {
        display: none;
    }
}

@media (max-width: 575px) {
    .single-choose {
        padding: 18px;
        clip-path: initial;
    }

        .single-choose h3 {
            font-size: 16px;
        }
}

.logistics-counter {
    padding: 0px 0px 60px 0px;
}
/* GRID */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* COUNTER BOX */
.counter-box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 35px 30px;
    border-radius: 18px;
    background: rgb(241 105 57);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    position: relative;
}

    /* Vertical divider (desktop only) */
    .counter-box:not(:first-child)::before {
        content: "";
        position: absolute;
        left: -15px;
        top: 50%;
        width: 1px;
        height: 60%;
        background: #fff;
        transform: translateY(-50%);
        box-shadow: 0 10px 30px rgb(0 0 0 / 35%);
    }

    /* ICON */
    .counter-box .icon {
        min-width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #0A66C2;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.4s ease;
    }

        .counter-box .icon img {
            width: 36px;
            filter: brightness(0) invert(1);
        }

    /* TEXT */
    .counter-box h3 {
        font-size: 36px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1;
    }

        .counter-box h3 span {
            font-size: 20px;
            color: #ffffff;
        }

    .counter-box p {
        margin-top: 4px;
        font-size: 15px;
        color: #fff;
    }

    /* HOVER EFFECT */
    .counter-box:hover {
        transform: translateY(-8px);
        background: rgb(102 95 95 / 72%);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

        .counter-box:hover .icon {
            background: #ff6a00;
            transform: rotate(8deg) scale(1.1);
        }

/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .counter-box::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .counter-grid {
        grid-template-columns: 1fr;
    }

    .counter-box {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}
/****************************************Couner End*****************************************/

/****************************************OurClients Start*****************************************/


.trusted-section {
    padding: 70px 20px;
}

.trusted-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    /*background: rgb(241 89 36 / 10%);*/
    background: #4180c0;
    border-radius: 26px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.oc-desc {
    color: #fff;
}

/* LEFT CONTENT */
.trusted-content .sub-title {
    color: #ff6a00;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.trusted-content h2 {
    font-size: 34px;
    font-weight: 700;
    color: #0b1c39;
    margin-bottom: 15px;
}

.trusted-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* ===============================
   LOGO SLIDER
================================= */

.logo-slider {
    position: relative;
    overflow: hidden;
    /*background: linear-gradient(145deg, #1e5a9e, #243d63);*/
    background: linear-gradient(145deg, #fffffffc, #ffffff);
    border-radius: 22px;
    padding: 25px 0;
}

/* TRACK */
.logo-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

/* LOGO ITEM */
.logo-item {
    min-width: 180px;
    height: 90px;
    /*background: rgb(255 255 255);*/
    background: rgb(242 242 242);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(8px);
}

    /* IMAGE FIX (IMPORTANT) */
    .logo-item img {
        max-width: 140px;
        max-height: 60px;
        object-fit: contain;
        /*filter: brightness(0) invert(1);*/
        opacity: 0.9;
        transition: 0.4s ease;
    }

    /* HOVER EFFECT */
    .logo-item:hover {
        background: #ffffff;
        transform: translateY(-6px) scale(1.05);
    }

        .logo-item:hover img {
            filter: none;
            opacity: 1;
        }

/* ===============================
   SCROLL ANIMATION
================================= */

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* PAUSE ON HOVER */
.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 991px) {
    .trusted-container {
        grid-template-columns: 1fr;
        padding: 35px;
    }

    .trusted-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .logo-item {
        min-width: 140px;
        height: 80px;
    }

        .logo-item img {
            max-width: 110px;
        }
}

/****************************************OurClients End*****************************************/

/****************************************3 Easy Steps start*****************************************/
/* ===============================
   FLOW SECTION – NO CONFLICT
================================ */

.thx-flow-sec {
    border: dashed 1px #d9d9d98a;
    border-radius: 10px;
        background: #f1f1f1;
}


/* TOP LINE */
.thx-flow-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

    .thx-flow-line::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 5%;
        right: 5%;
        border-top: 1px dashed #ddd;
        z-index: 0;
    }

.thx-flow-no {
    width: 50px;
    height: 50px;
    background: #f2f2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    z-index: 1;
}

.thx-flow-plane {
    color: #f15924;
    font-size: 18px;
    z-index: 1;
}

/* ITEMS */
.thx-flow-items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* ITEM */
.thx-flow-item {
    text-align: center;
    width: 260px;
    transition: transform 0.4s ease;
}

    .thx-flow-item:hover {
        transform: translateY(-10px);
    }

/* IMAGE */
.thx-flow-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: auto auto 25px;
    overflow: hidden;
    border: 3px solid #dad5d5a3;
    transition: all 0.4s ease;
}

    .thx-flow-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

/* Hover */
.thx-flow-item:hover .thx-flow-img img {
    transform: scale(1.1);
}

/* Active */
.thx-active .thx-flow-img {
    border-color: #f15924;
    box-shadow: 0 0 0 6px rgba(241, 89, 36, 0.15);
}

/* Arrows */
.thx-flow-arrow {
    width: 60px;
    height: 40px;
    position: relative;
}

    .thx-flow-arrow::before,
    .thx-flow-arrow::after {
        content: "››";
        position: absolute;
        font-size: 60px;
        color: rgba(241, 89, 36, 0.25);
        animation: thx-arrow-move 1.6s infinite;
    }

    .thx-flow-arrow::after {
        left: 20px;
        opacity: 0.5;
    }

@keyframes thx-arrow-move {
    0% {
        transform: translateX(0);
        opacity: 0.3;
    }

    50% {
        transform: translateX(10px);
        opacity: 1;
    }

    100% {
        transform: translateX(0);
        opacity: 0.3;
    }
}

/* TEXT */
.thx-flow-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0A66C2;
}

.thx-flow-text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .thx-flow-line {
        display: none;
    }

    .thx-flow-arrow {
        display: none;
    }
}

@media (max-width: 575px) {
    .thx-flow-item {
        width: 100%;
        max-width: 320px;
    }

    .thx-flow-img {
        width: 150px;
        height: 150px;
    }
}

/****************************************3 Easy Steps End*****************************************/
.dropdown-list {
    display: none;
}

.dropdown.open .dropdown-list {
    display: block;
}
/****All Page Inner Page Header Start*******/
.inner-banner {
    position: relative;
    /*background-image: url('../images/Services/4.jpg');*/
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0;
    color: var(--light);
}

    .inner-banner .overlay {
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.75);
    }

.banner-content {
    position: relative;
    z-index: 2;
}

    .banner-content h1 {
        font-size: 52px;
        font-weight: 800;
        margin-bottom: 10px;
        color: #fff;
    }

.breadcrumb {
    padding: 10px 0px;
    display: flex;
    gap: 10px;
    font-size: 16px;
    background-color: transparent;
}

    .breadcrumb li {
        color: #e5e7eb;
    }

        .breadcrumb li a {
            color: var(--primary);
            font-weight: 600;
        }

/****All Page Inner Page Header End*******/

/****About Page Start*******/
.about-one {
    position: relative;
    display: block;
    background: #fff);
    padding: 120px 0px 120px;
    z-index: 1;
}

.about-one__content-text2-single {
    position: relative;
    display: block;
    background: #fff;
    -webkit-box-shadow: 0px 0px 28px 0px rgb(0 0 0 / 8%);
    box-shadow: 0px 0px 28px 0px rgb(0 0 0 / 8%);
    border-left: 2px solid #fd5523;
    padding: 25px 25px 21px;
    margin-bottom: 30px;
}

.about-one__content-text2-single-top {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 1px;
}

.about-one__content-text2-single p {
    font-size: 16px;
    margin: 0;
}

.about-one__content-text2-single-top .icon {
    position: relative;
    display: block;
    padding-right: 10px;
    font-size: 20px;
    color: #f15924;
}

    .about-one__content-text2-single-top .icon::before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 6px;
        width: 1px;
        background: #E4E4E4;
        content: "";
    }

    .about-one__content-text2-single-top .icon span::before {
        position: relative;
        display: inline-block;
        color: var(--logistiq-base);
        font-size: 30px;
        line-height: 30px;
        transition-delay: 0.1s;
        transition: all 500ms ease;
    }

.about-one__content-text2-single-top .title-box {
    position: relative;
    display: block;
    margin-left: 10px;
    flex: 1;
}

    .about-one__content-text2-single-top .title-box h3 {
        font-size: 18px;
        line-height: 26px;
        font-weight: 700;
        text-transform: capitalize;
    }

.about-one__img {
    position: relative;
    display: block;
    max-width: 425px;
    width: 100%;
}

    .about-one__img .shape1 {
        position: absolute;
        top: -5px;
        right: -26px;
        z-index: -1;
    }

    .about-one__img .shape2 {
        position: absolute;
        top: 135px;
        right: -40px;
        z-index: -1;
    }

.about-one__img1 {
    position: relative;
    display: block;
    max-width: 360px;
    width: 100%;
}

    .about-one__img1 img {
        width: 100%;
    }

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
    border: solid 10px #efeeee;
    border-radius: 10px;
}

.about-one__img2 {
    position: absolute;
    bottom: -145px;
    right: 0px;
    z-index: 2;
}

    .about-one__img2::before {
        position: absolute;
        top: -10px;
        left: -10px;
        bottom: 0px;
        right: 0px;
        background: #fff;
        content: "";
        z-index: -1;
    }

.about-one__img2-inner {
    position: relative;
    display: block;
    overflow: hidden;
    z-index: 1;
}

.about-one__round-text-box {
    position: absolute;
    bottom: 80px;
    left: -80px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: #fd5523;
    z-index: 5;
}

    .about-one__round-text-box .inner {
        position: relative;
        display: block;
        width: 150px;
        height: 150px;
    }

.about-one__curved-circle {
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 0;
    right: 0;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--thm-font-2);
    letter-spacing: 0px;
    word-spacing: 2px;
    transform: rotate(0deg);
    height: 150px !important;
}

.about-one__round-text-box .overlay-icon-box {
    position: absolute;
    top: 30px;
    left: 30px;
    bottom: 30px;
    right: 30px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .about-one__round-text-box .overlay-icon-box a {
        position: relative;
        display: inline-block;
        color: #fd5523;
        font-size: 40px;
    }

.about-one__img2 .shape3 {
    position: absolute;
    left: -90px;
    bottom: -30px;
    z-index: -1;
}

.about-one__content-bottom {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 18px;
}

    .about-one__content-bottom .contact-box {
        position: relative;
        display: flex;
        align-items: center;
        margin-left: 85px;
    }

        .about-one__content-bottom .contact-box .icon {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: #fd5523;
            -webkit-box-shadow: 0px 0px 28px 0px rgb(0 0 0 / 8%);
            box-shadow: 0px 0px 28px 0px rgb(0 0 0 / 8%);
            border-radius: 50%;
        }

            .about-one__content-bottom .contact-box .icon i {
                color: #fff;
            }

        .about-one__content-bottom .contact-box .text-box {
            position: relative;
            display: block;
            margin-left: 15px;
            flex: 1;
        }

            .about-one__content-bottom .contact-box .text-box p {
                font-size: 16px;
                color: #f15924;
            }

            .about-one__content-bottom .contact-box .text-box h4 {
                font-size: 17px;
                line-height: 27px;
                font-weight: 700;
            }

@keyframes rotateme {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes rotateme {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes rotateme {
    from {
        -moz-transform: rotate(0deg);
    }

    to {
        -moz-transform: rotate(360deg);
    }
}

@-o-keyframes rotateme {
    from {
        -o-transform: rotate(0deg);
    }

    to {
        -o-transform: rotate(360deg);
    }
}


.rotate-me {
    animation-name: rotateme;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-name: rotateme;
    -webkit-animation-duration: 24s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: rotateme;
    -moz-animation-duration: 24s;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -ms-animation-name: rotateme;
    -ms-animation-duration: 24s;
    -ms-animation-iteration-count: infinite;
    -ms-animation-timing-function: linear;
    -o-animation-name: rotateme;
    -o-animation-duration: 24s;
    -o-animation-iteration-count: infinite;
    -o-animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

@keyframes float-bob-y {
    0% {
        transform: translateY(-20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(-20px);
    }
}

.float-bob-y {
    -webkit-animation-name: float-bob-y;
    animation-name: float-bob-y;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}
/* ===============================
   RESPONSIVE ABOUT PAGE
================================ */

/* Large screens (Desktops <1200px) */
@media (max-width: 1199px) {
    .about-one {
        padding: 100px 0;
    }

    .about-one__img {
        max-width: 380px;
    }

    .about-one__img1 {
        max-width: 330px;
    }

    .about-one__round-text-box {
        left: -60px;
        bottom: 60px;
        width: 140px;
        height: 140px;
    }

    .about-one__curved-circle {
        font-size: 11px;
    }
}

/* Medium screens (Tablets landscape <992px) */
@media (max-width: 991px) {
    .about-one {
        padding: 80px 0;
    }

    .about-one__img,
    .about-one__img1 {
        max-width: 100%;
        margin: 0 auto;
    }


    .about-one__round-text-box {
        position: relative;
        left: 0;
        bottom: 0;
        margin: 30px auto 0;
    }

    .about-one__img .shape1 {
        position: absolute;
        top: 0px;
        right: 0px;
        z-index: -1;
    }

    .about-one__img .shape2 {
        position: absolute;
        top: 159px;
        right: 0px;
        z-index: -1;
    }

    .about-one__circle-text {
        display: none;
    }

    .about-one__content-bottom .contact-box {
        /*margin-left: 0;*/
        margin-top: 15px;
        margin-left: 0px;
    }
}

/* Small tablets & large mobiles (<768px) */
@media (max-width: 767px) {
    .about-one__img2 {
        position: absolute;
        top: 100px;
        right: 0px;
        z-index: 2;
    }

    .reveal img {
        height: 70%;
        width: 60%;
    }

    .about-one {
        padding: 60px 0;
    }

    .about-one__content-text2-single {
        padding: 20px;
    }

        .about-one__content-text2-single p {
            font-size: 15px;
        }

    .about-one__content-text2-single-top {
        flex-direction: row;
    }

        .about-one__content-text2-single-top .title-box h3 {
            font-size: 16px;
        }

    .about-one__round-text-box {
        width: 120px;
        height: 120px;
    }

        .about-one__round-text-box .inner {
            width: 120px;
            height: 120px;
        }

    .about-one__curved-circle {
        font-size: 10px;
        height: 120px !important;
    }

    .about-one__round-text-box .overlay-icon-box {
        top: 25px;
        left: 25px;
        right: 25px;
        bottom: 25px;
    }

        .about-one__round-text-box .overlay-icon-box a {
            font-size: 30px;
        }

    .about-one__circle-text {
        display: none;
    }
}

/* Mobile devices (<576px) */
@media (max-width: 575px) {
    .about-one__img2 {
        position: absolute;
        top: 100px;
        right: 0px;
        z-index: 2;
    }

    .about-one {
        padding: 50px 0;
    }

    .about-one__content-text2-single {
        margin-bottom: 20px;
    }

    .about-one__content-text2-single-top {
        align-items: flex-start;
    }

        .about-one__content-text2-single-top .icon {
            font-size: 18px;
        }

        .about-one__content-text2-single-top .title-box h3 {
            font-size: 15px;
            line-height: 22px;
        }

    .about-one__content-text2-single p {
        font-size: 14px;
    }

    .about-one__img2::before {
        display: none;
    }

    .about-one__round-text-box {
        width: 100px;
        height: 100px;
    }

        .about-one__round-text-box .inner {
            width: 100px;
            height: 100px;
        }

    .about-one__curved-circle {
        font-size: 9px;
        height: 100px !important;
    }

    .about-one__round-text-box .overlay-icon-box {
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

        .about-one__round-text-box .overlay-icon-box a {
            font-size: 24px;
        }

    .about-one__content-bottom {
        margin-top: 10px;
        justify-content: space-around;
    }

    .about-one__circle-text {
        display: none;
    }
    /*.about-one__img2 {     
        display:none;
    }*/
}

/* Extra small devices (<400px) */
@media (max-width: 399px) {
    .about-one__curved-circle {
        font-size: 8px;
        letter-spacing: 0;
    }

    .about-one__circle-text {
        display: none;
    }
}



.otop-info-counter-section {
    width: 100%;
    background: #ffffff;
}

.otop-info-counter-row {
    display: flex;
    flex-wrap: wrap;
}

/* LEFT IMAGE */
.otop-info-image {
    width: 50%;
}

    .otop-info-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* RIGHT CONTENT */
.otop-info-content {
    width: 50%;
    padding: 60px 60px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 35%);
}

.otop-info-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    color: #9a9a9a;
    text-transform: uppercase;
}

.otop-info-title {
    font-size: 42px;
    color: #0b1c2d;
    margin: 15px 0;
    line-height: 1.2;
}

    .otop-info-title span {
        color: #e08b2c;
        font-style: italic;
    }

.otop-info-text {
    color: #777;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
}

/* COUNTER BOX */
.otop-info-counter-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    padding: 35px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 5px solid #f0f0f0;
    padding: 0 35px;
    margin-left: -150px;
    margin-top: 40px;
}

.otop-info-counter-item {
    text-align: center;
    padding: 20px;
    transition: all 0.35s ease;
}

    .otop-info-counter-item:hover {
        transform: translateY(-8px);
    }

.otop-info-counter-number {
    font-size: 48px;
    font-weight: 600;
    color: #0b1c2d;
    border-bottom: solid 1px #f6f4f4;
}

.otop-info-counter-item span {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
    color: #9a9a9a;
    margin-top: 5px;
}

.otop-info-counter-item p {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .otop-info-image,
    .otop-info-content {
        width: 100%;
    }

    .otop-info-content {
        padding: 60px 30px;
    }

    .otop-info-counter-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .otop-info-title {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .otop-info-counter-box {
        grid-template-columns: 1fr;
        margin-left: 0px;
    }


    .otop-info-title {
        font-size: 28px;
    }
}


/* ===== ABOUT TABS SECTION ===== */
.about-tabs {
    padding: 100px 0;
    background: #f7f7f7;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LEFT IMAGE */
.about-image {
    position: relative;
    flex: 1;
}

    .about-image img {
        width: 100%;
        border-radius: 16px;
        transition: transform 0.6s ease;
        /*border: solid 10px #f15924;*/
        border-radius: 10px;
           filter: drop-shadow(0 25px 36px rgba(20,21,13,0.25));
    }

        .about-image img.fade {
            opacity: 0;
            transform: scale(0.95);
        }

.experience-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #fd5523;
    color: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    font-weight: 600;
}

/* RIGHT CONTENT */
.about-content {
    flex: 1;
}

.subtitle {
    color: #fd5523;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 25px;
    margin: 10px 0 15px;
}

.intro {
    color: #666;
    margin-bottom: 30px;
}

/* TABS */
.tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.tab {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid #eee;
    background: #d7d7d7;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .tab.active {
        background: #fd5523;
        color: #fff;
        border-color: #fd5523;
    }

/* TAB CONTENT */
.tab-content {
    display: none;
    animation: fadeUp 0.5s ease;
}

    .tab-content.active {
        display: block;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .about-tabs {
        padding: 70px 0;
    }

    .tabs {
        flex-wrap: wrap;
    }

    .tab {
        padding: 8px 18px;
        font-size: 14px;
    }
}
/****About Page End*******/

/****Contact Us Page Start*******/

/* CONTACT SECTION */
.contact-section {
    padding: 80px 20px;
    background-image: url('../images/shape/service-bg-img.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

    .contact-section::before {
        content: "";
        position: absolute;
        inset: 0;
        /*background: rgba(15, 23, 42, 0.85);*/
    }

.contact-container {
    /*max-width: 1100px;*/
    margin: auto;
    display: flex;
    position: relative;
    z-index: 2;
    border-radius: 18px;
    overflow: hidden;
    animation: fadeUp 1s ease;
}

/* LEFT PANEL */
.contact-info {
    width: 40%;
    padding: 40px;
    background: linear-gradient(160deg, #1e3a8a, #0f172a);
    color: #fff;
}

    .contact-info h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .contact-info p {
        opacity: 0.8;
        margin-bottom: 30px;
            font-size: 16px;
    }

    .contact-info ul li {
        list-style: none;
        margin-bottom: 15px;
        font-size: 16px;
    }

    .contact-info i {
        color: #f15924;
        margin-right: 10px;
    }

.social a {
    display: inline-block;
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

    .social a:hover {
        color: #facc15;
    }

/* RIGHT FORM */
.contact-form {
    width: 60%;
    padding: 40px;
    background: rgb(212 212 212 / 28%);
    backdrop-filter: blur(12px);
}

/*.row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}*/

input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.subject {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    color: #fff;
}

textarea {
    min-height: 120px;
    resize: none;
}

button {
    margin-top: 15px;
    padding: 14px;
    width: 100%;
    border: none;
    border-radius: 30px;
    background: #f15924;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s;
}

    button:hover {
        transform: translateY(-2px);
        background: #03102e;
        color: #fff;
    }

/* MAP */
.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        width: 100%;
    }
}

.form-block .form-group {
    margin-bottom: 0;  
}

.contact-form .about-btn {
    border-color: #fff;
}

.form-block input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    margin: 0 0 15px;
    color: #172b43;
    font-size: 16px;
    outline: 0;
    background: #fff;
    border: 0;
    border-bottom: 2px solid #e6e6e6;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.help-block.with-errors {
    color: #ff5050;
    margin: 0 0 0 10px;
    font-size: 13px;
    position: relative;
    bottom: 12px;
}

.form-block select {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    margin: 0 0 15px;
    color: #172b43;
    font-size: 16px;
    outline: 0;
    background: #fff;
    border: 0;
    border-bottom: 2px solid #e6e6e6;
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

.form-block textarea {
    height: 100px;
    width: 100%;
    padding: 15px;
    margin: 0 0 15px;
    color: #172b43;
    font-size: 16px;
    outline: 0;
    background: #fff;
    border: 0;
    border-bottom: 2px solid #e6e6e6;
    border-radius: 4px;
}

/****Contact Us Page End*******/

/*********** PREMIUM NETWORK PAGE ************/

.global-network-section {
    position: relative;
    /*padding: 130px 0;*/
    min-height: 100vh;
    /*background: url('../images/Networks/2.png') center center / cover no-repeat;*/
    background-attachment: fixed;
    color: #fff;
    overflow: hidden;
    background-size: contain;
}

    /* PREMIUM DARK GRADIENT OVERLAY */
    .global-network-section::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgb(235 235 235 / 85%) 0%, rgb(177 178 180 / 63%) 50%, rgb(225 225 225 / 88%) 100% );
        z-index: 1;
    }

    .global-network-section .container {
        position: relative;
        z-index: 2;
        width: 90%;
        margin: auto;
        align-items: center;
    }

    /* LAYOUT */
    .global-network-section .row {
        display: flex;
        gap: 60px;
        align-items: flex-start;
    }

    .global-network-section .col-left {
        flex: 2;
        position: relative;
    }

    .global-network-section .col-right {
        flex: 1;
        width: 100%;
    }

/* BIG FADED TEXT */
.big-bg-text {
    font-size: 110px;
    font-weight: 900;
    opacity: 0.04;
    position: absolute;
    top: -50px;
    left: 0;
    letter-spacing: 6px;
    pointer-events: none;
}

/* CONTENT TEXT */
.content-box p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #000;
    align-items: center;
}

/* CERTIFICATE */
.certificate-box{
    padding:80px 50px;
    background:#f8fafc;
    border-radius:35px;
    position:relative;
    overflow:hidden;
}

/* Heading */

.certificate-header{
    max-width:760px;
    margin:-20px auto 50px;
}

.certificate-header span{
    display:inline-block;
    color:#f15924;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.certificate-header h3{
    font-size:42px;
    line-height:1.2;
    color:#132238;
    font-weight:800;
    margin-bottom:18px;
}

.certificate-header p{
    font-size:16px;
    line-height:1.8;
    color:#666;
}

/* Certificate Layout */

.certificate-images{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
}

/* Card */

.certificate-card{
    position:relative;
    width:320px;
    border-radius:28px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,0.08);
    transition:0.4s ease;
    cursor:pointer;
}

.certificate-card:hover{
    transform:translateY(-8px);
}

.certificate-card img{
    width:92%;
    height:380px;
    object-fit:contain;
    display:block;
    transition:0.4s ease;
    padding-left:25px;
}

.certificate-card:hover img{
    transform:scale(1.04);
}

/* Overlay */

.certificate-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    padding:22px;
    background:linear-gradient(to top,
    rgba(19,34,56,0.95),
    rgba(19,34,56,0.2),
    transparent);
}

.certificate-overlay h4{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:6px;
}

.certificate-overlay span{
    color:#f15924;
    font-size:14px;
    font-weight:600;
}

/* Responsive */

@media(max-width:767px){

    .certificate-box{
        padding:60px 20px;
    }

    .certificate-header h3{
        font-size:30px;
    }

    .certificate-card{
        width:100%;
    }

    .certificate-card img{
        height:360px;
    }
}
/*.certificate-box {
    margin-top: 70px;
}

    .certificate-box h3 {
        font-size: 24px;
        margin-bottom: 15px;
        color: #000;
    }

    .certificate-box p {
        color: #000;
    }

.certificate-images {*/
    /*display: flex;*/
    /*gap: 25px;
    flex-wrap: wrap;
    margin-top: 25px;
}

    .certificate-images img {*/
        /*width: 130px;*/
        /*border-radius: 10px;
        cursor: pointer;
        transition: all 0.4s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        margin: 0 10px;
    }

        .certificate-images img:hover {
            transform: scale(1.1);
        }*/

/* SIDEBAR PREMIUM */
.service-sidebar {
    background: rgba(15, 23, 42, 0.75);
    padding: 40px 30px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

    .service-sidebar h3 {
        color: #fff;
        margin-bottom: 25px;
        font-size: 24px;
        font-weight: bold;
    }

    .service-sidebar ul {
        list-style: none;
        padding: 0;
    }

        .service-sidebar ul li {
            margin-bottom: 15px;
        }

            .service-sidebar ul li a {
                text-decoration: none;
                padding: 12px 18px;
                display: block;
                border-radius: 8px;
                transition: all 0.3s ease;
                background: rgba(255,255,255,0.05);
                color: #03102e;
            }

                .service-sidebar ul li a:hover {
                    background: linear-gradient(135deg, #ff6600, #ff8533);
                    padding-left: 25px;
                }

.service-wrapper .service-sidebar ul li a {
    color: #f15924;
    border-radius: 0px;
}

.service-wrapper .service-sidebar ul .active a {
    color: #fff;
}

.service-wrapper ul li a:hover {
    color: #fff;
}
/* RESPONSIVE */

@media (max-width: 1200px) {
    .big-bg-text {
        font-size: 80px;
    }
}

@media (max-width: 992px) {

    .global-network-section {
        padding: 90px 0;
        background-attachment: scroll;
    }

        .global-network-section .row {
            flex-direction: column;
            align-items: center
        }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .big-bg-text {
        font-size: 60px;
    }
}

@media (max-width: 576px) {

    .global-network-section {
        padding: 70px 0;
    }

    .big-bg-text {
        font-size: 40px;
        top: -20px;
    }

    .content-box p {
        font-size: 15px;
    }

    .certificate-images img {
      width: 100%;
    margin: 10px 0px;
    }
}



.cert-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    padding: 30px;
}

    .cert-modal.show {
        opacity: 1;
        visibility: visible;
    }

    /* CENTER WRAPPER */
    .cert-modal img {
        display: block;
        max-width: 100%;
        max-height: 92vh;
        width: auto;
        height: auto;
        object-fit: contain;
        margin: auto;
        border-radius: 14px;
        box-shadow: 0 25px 60px rgba(0,0,0,0.8);
        transform: scale(0.85);
        transition: transform 0.3s ease;
    }

    /* ZOOM EFFECT */
    .cert-modal.show img {
        transform: scale(1);
    }

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    right: 25px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 1000000;
    transition: 0.3s;
}

    .close-btn:hover {
        color: #ff6600;
        transform: rotate(90deg);
    }

/* MOBILE FIX */
@media (max-width: 768px) {

    .cert-modal {
        padding: 15px;
        overflow: hidden; /* ✅ disable scroll */
    }

        .cert-modal img {
            max-width: 100%;
            max-height: 100vh; /* ✅ full screen fit */
            width: auto;
            height: auto;
            object-fit: contain;
        }

    .close-btn {
        font-size: 26px;
        top: 15px;
        right: 15px;
        color: #ed1212;
    }
}

.cert-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999 !important; /* VERY HIGH */
}

.cert-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.96);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999999 !important; /* VERY HIGH */
}

/*********** PREMIUM NETWORK End ************/


/*********** Services Category Wise Start ************/


/* CONTACT BOX */
.contact-box {
    background: #0c2d48;
    padding: 25px;
    margin-top: 30px;
    color: #fff;
    border-radius: 8px;
    animation: fadeUp 1s ease;
}

    .contact-box h4 {
        margin-bottom: 20px;
        line-height: 1.23;
    }

.contact-item {
    display: block;
    margin-bottom: 15px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

    .contact-item i {
        margin-right: 10px;
    }

    .contact-item:hover {
        transform: translateX(5px);
        color: #f15924;
    }

/* RIGHT SIDE */
.service-content {
    width: 100%;
}

.service-title {
    font-size: 48px;
    font-weight: bold;
}

    .service-title span {
        color: #ff6600;
    }

.subtitle {
    font-size: 20px;
    margin-bottom: 20px;
    color: #777;
}

/* GALLERY */
.gallery {
   display: flex;
    column-gap: 20px;
    margin-top: 30px;
    width: 100%;
    min-width: 100%;
    /* width: 45%; */
    height: 300px;
}

    .gallery img {
        margin: 2px 0px;
        width: 45%;
        cursor: pointer;
        border-radius: 8px;
        transition: 0.4s;
        height: 300px;
        object-fit:cover;
    }

        .gallery img:hover {
            transform: scale(1.05);
            border: solid 2px #fff;
        }

/* MODAL */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

    .image-modal img {
        max-width: 80%;
        max-height: 80vh;
    }

    .image-modal.active {
        display: flex;
    }

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 15px;
    width: 35px;
    height: 35px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 10%;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.4s;
    z-index: 10;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

/* CTA */
.cta-section {
    background: #ff7f3f;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #fff;
    color: #ff6600;
    border-radius: 50px;
    text-decoration: none;
    transition: 0.4s;
}

    .cta-btn:hover {
        background: #000;
        color: #fff;
    }


/* RESPONSIVE */
@media(max-width:992px) {
    .service-grid {
        flex-direction: column;
    }

    .service-sidebar,
    .service-content {
        width: 100%;
    }

    .gallery {
        flex-direction: column;
    }

        .gallery img {
            width: 100%;
        }
}
/*********** Services Category Wise End ************/
/**Logo Text Start***/
.ke-logo {
    font-size: 25px;
    color: #0A66C2;
    margin-top: 3px !important;
    text-transform: uppercase;
    font-weight: 600;
    font-family: Stencil;
}

.navbar-brand {
    float: left;
    padding: 0px 0px;
    font-size: 18px;
    line-height: 20px;
    margin-right:100px;
}

.ke-text {
    font-size: 11px;
    color: #fff;
    font-family: poppins;
    margin-top: 3px !important;
    background-color: #ee612e;
    /*border-radius: 5px;*/
    text-align: center;
   letter-spacing: 3px;
}
/* =========================
   EXTRA LARGE (1400px+)
========================= */
@media (min-width: 1400px) {
    .glass-nav {
        max-width: 1350px;
    }

    .nav-menu {
        column-gap: 20px;
    }

    .ke-logo {
        font-size: 28px;
    }
}

/* =========================
   DESKTOP (1200px - 1400px)
========================= */
@media (max-width: 1400px) {
    .navbar-brand {
        margin-right: 70px;
    }

    .nav-menu {
        column-gap: 14px;
    }
}

/* =========================
   LAPTOP (992px - 1200px)
========================= */
@media (max-width: 1200px) {
    .glass-nav {
        border-radius: 40px;
    }

    .nav-wrapper {
        padding: 8px 16px;
    }

    .logo img {
        height: 40px;
    }

    .ke-logo {
        font-size: 22px;
    }

    .ke-text {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .nav-menu {
        column-gap: 12px;
    }

    .nav-menu a {
        font-size: 14px;
    }
}

/* =========================
   TABLET (768px - 992px)
========================= */
@media (max-width: 992px) {

    .glass-nav {
        border-radius: 30px;
    }

    .nav-wrapper {
        justify-content: space-between;
        padding: 8px 16px;
    }

    /* Hide menu initially */
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: #ffffff;
        padding: 20px;
        display: none;
        box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        border-radius: 0 0 20px 20px;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        margin-bottom: 10px;
    }

    .nav-menu a {
        font-size: 15px;
    }

    .navbar-brand {
        margin-right: 0;
    }

    .logo img {
        height: 40px;
    }

    .ke-logo {
        font-size: 20px;
    }

    .ke-text {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .hamburger {
        display: flex;
    }

    .dropdown-list {
        position: relative;
        top: 0;
        background: #0A66C2;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 10px;
        margin-top: 10px;
    }
}

/* =========================
   MOBILE LARGE (576px - 768px)
========================= */
@media (max-width: 768px) {

    .glass-header {
        padding: 10px;
    }

    .logo img {
        height: 40px;
    }

    .ke-logo {
        font-size: 18px;
        
    }

    .ke-text {
        font-size: 8px;
        padding: 2px 6px;
    }

    .nav-wrapper {
        padding: 10px 15px;
    }

    .nav-menu {
        padding: 15px;
    }
}

/* =========================
   MOBILE (400px - 576px)
========================= */
@media (max-width: 576px) {

    .glass-nav {
        border-radius: 20px;
    }

    .logo img {
        height: 40px;
    }

    .navbar-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ke-logo {
        font-size: 16px;
    }

    .ke-text {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .nav-menu a {
        font-size: 14px;
    }
}

/* =========================
   SMALL MOBILE (below 400px)
========================= */
@media (max-width: 400px) {

    .logo img {
        height: 40px;
    }

    .ke-logo {
        font-size: 14px;
    }

    .ke-text {
        font-size: 6px;
    }

    .nav-menu {
        padding: 10px;
    }
}
/**Logo Text End**/

/**About page first section new design start***/
/* SECTION */
.about-details{
padding:80px 0;
background:#f7f7f7;
}

/* LEFT SIDE */

.about-thumb img{
width:100%;
border-radius:20px;
margin-bottom:25px;
}

.about-thumb h2{
font-size:40px;
font-weight:700;
color:#0b1c39;
line-height:1.3;
margin-bottom:25px;
}

/* RIGHT GRID */

.abs-info-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:25px;
}

/* CARD */

.abs-info{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
min-height:220px;
display:flex;
flex-direction:column;
justify-content:center;
}

/* TITLE */

.abs-info h3{
font-size:18px;
font-weight:600;
margin-bottom:15px;
color:#0b1c39;
}

/* NUMBER AREA */

.info-number{
display:flex;
align-items:center;
justify-content:space-between;
border-bottom:1px solid #eee;
padding-bottom:12px;
}

.info-number img{
width:38px;
}

.info-number span{
font-size:46px;
font-weight:700;
color:#0b1c39;
}

/* TEXT */

.abs-info p{
font-size:14px;
color:#777;
margin-top:15px;
}

/* ORANGE CARD */

.abs-info.orange{
background:#ff5722;
color:#fff;
}

.abs-info.orange h3,
.abs-info.orange p,
.abs-info.orange span{
color:#fff;
}

/* DARK CARD */

.abs-info.dark{
background:#071a3c;
color:#fff;
}

.abs-info.dark h3,
.abs-info.dark p,
.abs-info.dark span{
color:#fff;
}

/* ---------- RESPONSIVE ---------- */

/* Laptop */

@media (max-width:1200px){

.about-thumb h2{
font-size:34px;
}

}

/* Tablet */

@media (max-width:992px){

.about-details{
padding:60px 0;
}

.about-thumb{
margin-bottom:40px;
}

.about-thumb h2{
font-size:30px;
}

.info-number span{
font-size:38px;
}

}

/* Mobile */

@media (max-width:768px){

.abs-info-grid{
grid-template-columns:repeat(2,1fr);
gap:15px;
}

.about-thumb h2{
font-size:26px;
}

.abs-info{
padding:25px;
min-height:180px;
}

.info-number span{
font-size:32px;
}

}

/* Small Mobile */

@media (max-width:480px){

.abs-info-grid{
grid-template-columns:1fr;
}

.about-thumb h2{
font-size:22px;
}

}
/**About page first section new design End***/

@media (max-width:992px){

.glass-nav{
border-radius:60px;
transition:all 0.4s ease;
}

.nav-menu{
border-radius:60px;
transition:all 0.4s ease;
}

/* WHEN MENU OPEN */

.nav-menu.active{
border-radius:0px;
}

.nav-menu.active + .glass-nav,
.glass-nav:has(.nav-menu.active){
border-radius:0px;
}

}
/* MOBILE MENU */
@media (max-width:992px){

.nav-menu{
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
flex-direction:column;
max-height:0;
overflow:hidden;
transition:0.4s;
}

.nav-menu.active{
max-height:80vh;
overflow-y:auto;
padding:20px 0;
}

/* DROPDOWN */

.dropdown-list{
display:none;
position:static;
box-shadow:none;
max-height:200px;
overflow-y:auto;
}

.dropdown.open .dropdown-list{
display:block;
}

/* DROPDOWN HEADER */

.dropdown > a{
/*display:flex;*/
justify-content:space-between;
align-items:center;
}

/* DROPDOWN ITEM */

.dropdown-list li a{
padding:10px 20px;
display:block;
}

}

/* ===== INNER BANNER ===== */
.inner-banner {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inner-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.banner-content {
    position: relative;
    color: #fff;
    text-align: center;
    z-index: 2;
}

.banner-title-wrap h1 {
    font-size: 42px;
    font-weight: 700;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    list-style: none;
}

.breadcrumb li a {
    color: #fff;
    text-decoration: none;
}

/* ===== FLOATING SERVICE CARDS ===== */
.top-services {
    position: relative;
    margin-top: 30px;
    z-index: 5;
}

.slider {
    overflow: hidden;
    max-width: 100%;
    margin: auto;
}

.slide-track {
    display: flex;
    gap: 15px;
    justify-content: center;
}




/* ===== SERVICE CONTENT ===== */


.service-title {
    font-size: 36px;
    margin-bottom: 10px;
    margin-top: 78px;
}

.service-title span {
    color: #ff6600;
}

.subtitle {
    font-style: italic;
    margin-bottom: 20px;
}

/* ===== CTA ===== */
.cta-section {
    background: #ff7a3d;
    padding: 40px;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.cta-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background: #fff;
    color: #ff6600;
    border-radius: 20px;
    text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
    .banner-title-wrap h1{
        font-size:28px;
    }

    .slide-track{
        overflow-x:auto;
    }

    .gallery{
        flex-direction:column;
    }
}

.slider {
    overflow: hidden;
    width: 100%;
}

.slide-track {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.top-services {
    width: 100%;
    padding: 10px 0;
}

.slide-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 6 equal columns */
    gap: 15px;
}

.service-card {
    background: #0A66C2;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
    color:white;
    padding: 8px 15px;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.service-card a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    display: block;
    margin-top:20px;
    font-size:1.5rem;
    font-weight:bold;
}

.service-card:hover {
    background: #0A66C2;
    transform: translateY(-3px);
}

.service-card:hover a {
    color: #fff;
}

@media (max-width: 992px) {
    .slide-track {
        grid-template-columns: repeat(3, 1fr); /* 3 per row */
    }
}

@media (max-width: 576px) {
    .slide-track {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
    }
}

/*Network Section*/

.kes-network-section{
    position:relative;
    padding:100px 0;
    background:
        linear-gradient(rgba(255,255,255,0.94),
        rgba(255,255,255,0.94)),
        url('YOUR-BACKGROUND-IMAGE');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

/* CENTER WHOLE SECTION */
.kes-network-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    width:100%;
}

/* CONTENT */
.kes-network-content{
    width:100%;
    max-width:1100px;
    margin:0 auto;
    text-align:center;
}

/* SUBTITLE */
.kes-subtitle{
    display:inline-block;
    font-size:15px;
    font-weight:600;
    letter-spacing:1px;
    color:#f15924;
    margin-bottom:15px;
    text-transform:uppercase;
    padding-top:40px;
}

/* HEADING */
.kes-network-content h2{
    font-size:30px;
    line-height:1.2;
    font-weight:800;
    color:#132238;
    margin-bottom:20px;
    text-align:center;
    white-space:nowrap;
    margin-top: -39px
}

/* PARAGRAPH */
.kes-network-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:22px;
    text-align:center;
    padding-left:0;
    max-width:900px;
    margin-left:auto;
    margin-right:auto;
}

/* FEATURE GRID */
.feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:35px;
    padding-left:0;
}

/* CARD */
.feature-card{
    background:#444b5d;
    padding:18px 16px;
    border-radius:12px;
    transition:all 0.4s ease;
    position:relative;
    overflow:hidden;

    min-height:95px;
    max-width:320px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    text-align:center;

    margin:0 auto;

    box-shadow:0 8px 18px rgba(0,0,0,0.10);
}

/* HOVER */
.feature-card:hover{
    background:#ff6b08;
    transform:translateY(-6px);
    box-shadow:0 16px 35px rgba(255,107,8,0.30);
}

/* LIGHT EFFECT */
.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:3px;
    background:rgba(255,255,255,0.8);
    transition:0.45s ease;
}

.feature-card:hover::before{
    left:0;
}

/* TITLE */
.feature-card h4{
    font-size:16px;
    font-weight:700;
    color:#fff;
    margin-bottom:10px;
    line-height:1.4;
}

/* TEXT */
.feature-card p{
    font-size:16px;
    line-height:1.5;
    color:#fff;
    margin:0;
    text-align:center;
}

/* REMOVE SERVICE SECTION */
.kes-services-panel{
    display:none;
}

/* RESPONSIVE */
@media(max-width:991px){

    .kes-network-content h2{
        font-size:38px;
        white-space:normal;
    }

    .feature-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){

    .kes-network-section{
        padding:70px 0;
    }

    .kes-network-content h2{
        font-size:30px;
    }

    .kes-network-content p{
        font-size:15px;
    }

    .feature-grid{
        grid-template-columns:1fr;
    }
}

.delivery-section{
    width:100%;
    display:flex;
    align-items:stretch;
    min-height:700px;
    margin-top:100px;
}

/* LEFT IMAGE */
.delivery-left{
    height: 730px;
    width:50%;
}

.delivery-left img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* RIGHT CONTENT */
.delivery-right{
    height: 730px;
    width:52%;
    background:#f7f7f7;
    padding:60px 70px;
}

/* HEADING */
.process-heading{
    margin-bottom:55px;
}

.process-heading h2{
    font-size:30px;
    font-weight:300;
    color:#222;
    margin-bottom:35px;
    letter-spacing:1px;
}

.yellow-line{
    width:70px;
    height:4px;
    background:#f4a300;
    margin-bottom:28px;
}

.delivery-desc{
    font-size:17px;
    line-height:1.5;
    color:#666;
    max-width:520px;
}

/* STEP */
.step-box{
    display:flex;
    align-items:flex-start;
    gap:22px;
    margin-bottom:28px;
}

/* NUMBER */
.step-number{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:50%;
    background:#0B4EA2;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:600;
    margin-top:6px;
    margin-left:-10px;
}

/* CONTENT */
.step-content{
    flex:1;
}

.step-content h3{
    font-size:22px;
    font-weight:400;
    color:#222;
    margin-bottom:14px;
    line-height:1.2;
    margin-top:6px;
}

.step-content p{
    font-size:16px;
    line-height:1.9;
    color:#666;
    max-width:470px;
    margin-top:-13px;
}

/* RESPONSIVE */
@media(max-width:991px){

    .delivery-section{
        flex-direction:column;
    }

    .delivery-left,
    .delivery-right{
        width:100%;
    }

    .delivery-right{
        padding:50px 30px;
    }

    .delivery-right h2{
        font-size:38px;
    }

    .step-content h3{
        font-size:28px;
    }

    .step-content p,
    .delivery-desc{
        font-size:18px;
    }
}

@media(max-width:600px){

    .step-box{
        flex-wrap:wrap;
    }

    .step-icon{
        margin-top:15px;
    }

    .delivery-right h2{
        font-size:30px;
    }
}

/* ===========================
   CONTACT SECTION
=========================== */

.kx-contact-section{
    padding:100px 0 !important;
    background:#f7f9fc !important;
}

.kx-contact-wrapper{
    display:flex !important;
    gap:60px !important;
    justify-content:space-between !important;
    align-items:flex-start !important;
}

.kx-contact-left{
    width:40% !important;
    padding-top:11px !important;
    margin-left:30px !important;
}

.kx-contact-form-box{
    width: 600px;
    background:#fff !important;
    padding:45px !important;
    border-radius:25px !important;
    box-shadow:0 15px 45px rgba(0,0,0,0.08) !important;
    height: 583px;
    margin-right: 92px;
}

.kx-contact-tag{
    color:#f15924 !important;
    font-size:14px !important;
    font-weight:700 !important;
    letter-spacing:1px !important;
}

.kx-contact-left h2{
    font-size:16px !important;
    font-weight:800 !important;
    line-height:1.5 !important;
    color:#132238 !important;
    margin:18px 0 9px !important;
}

.kx-contact-left p{
    font-size:16px !important;
    line-height:1.9 !important;
    color:#666 !important;
    padding-top:0 !important;
}

.kx-form-heading span{
    color:#f15924 !important;
    font-size:13px !important;
    font-weight:700 !important;
    letter-spacing:1px !important;
    top:-8px !important;
}

.kx-form-heading h3{
    font-size:12px !important;
    font-weight:800 !important;
    color:#132238 !important;
    margin:5px 0 8px !important;
    line-height: 1.8;
    transform: translateY(-26px);
}

.kx-form-grid{
    display:grid !important;
    grid-template-columns:repeat(2,1fr) !important;
    gap:17px !important;
}

.full-width{
    grid-column:1/-1 !important;
}

.kx-form-group label{
    display:block !important;
    margin-bottom:10px !important;
    font-weight:600 !important;
    color:#132238 !important;
}

.kx-form-group input,
.kx-form-group textarea{
    width:100% !important;
    border:1px solid #dfe5ec !important;
    background:#fafbfd !important;
    border-radius:14px !important;
    padding:16px 18px !important;
    font-size:15px !important;
}

.kx-form-group input{
    height:50px !important;
}

.kx-form-group textarea{
    height:150px !important;
    resize:none !important;
}

.kx-form-group input:focus,
.kx-form-group textarea:focus{
    outline:none !important;
    border-color:#f15924 !important;
}

.kx-submit-btn{
    margin:30px auto 0 auto !important;
    height:48px !important;
    width:195px !important;
    border:none !important;
    padding:0 35px !important;
    border-radius:14px !important;
    background:#f15924 !important;
    color:#fff !important;
    font-size:16px !important;
    font-weight:700 !important;
    cursor:pointer !important;

    display:block !important;
}

/* MOBILE */

@media(max-width:991px){

    .kx-contact-wrapper{
        flex-direction:column !important;
    }

    .kx-contact-left,
    .kx-contact-form-box{
        width:100% !important;
    }

}

@media(max-width:767px){

    .kx-form-grid{
        grid-template-columns:1fr !important;
    }

    .kx-contact-left h2{
        font-size:34px !important;
    }

}