.air-tracking {
            width: 100%;
            padding: 32px 20px;
        }

        .air-tracking-box {
            max-width: 705px;
            margin: 0 auto;
            padding: 34px;

            background: #ffffff;
            border: 1px solid #eadbd6;
            border-radius: 10px;

            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
        }

        /* TITLE */

        .air-tracking-title {
            margin: 0 0 62px;

            font-size: 50px;
            line-height: 1.15;
            font-weight: 800;

            color: #171313;
        }

        /* DESCRIPTION */

        .air-tracking-description {
            margin: 0 0 46px;

            font-size: 20px;
            line-height: 1.5;

            color: #493c39;
        }

        /* LABEL */

        .air-tracking-label {
            display: block;

            margin-bottom: 10px;

            font-size: 22px;
            line-height: 1.3;
            font-weight: 800;

            color: #211817;
        }

        /* INPUT */

        .air-tracking-input {
            display: block;

            width: 100%;
            height: 60px;

            padding: 0 16px;

            border: 1px solid #eadbd6;
            border-radius: 10px;

            background: #ffffff;

            font-family: Arial, Helvetica, sans-serif;
            font-size: 21px;
            font-weight: 700;

            color: #171313;

            outline: none;

            transition: all 0.25s ease;
        }

        .air-tracking-input::placeholder {
            color: #999;
            font-weight: 500;
        }

        .air-tracking-input:focus {
            border-color: #ef5636;

            box-shadow:
                0 0 0 3px rgba(239, 86, 54, 0.10);
        }

        /* BUTTON */

        .air-tracking-button {
            width: 100%;
            height: 56px;

            margin-top: 48px;

            border: 0;
            border-radius: 10px;

            background: #ef5636;
            color: #ffffff;

            font-family: Arial, Helvetica, sans-serif;
            font-size: 21px;
            font-weight: 800;

            cursor: pointer;

            box-shadow:
                0 15px 30px rgba(239, 86, 54, 0.15);

            transition: all 0.25s ease;
        }

        .air-tracking-button:hover {
            background: #dc482b;
            transform: translateY(-2px);
        }

        .air-tracking-button:active {
            transform: translateY(0);
        }

        /* SEARCH ICON */

        .search-icon {
            position: relative;

            display: inline-block;

            width: 18px;
            height: 18px;

            margin-right: 9px;

            border: 2px solid #fff;
            border-radius: 50%;

            vertical-align: -2px;
        }

        .search-icon::after {
            content: "";

            position: absolute;

            width: 7px;
            height: 2px;

            right: -6px;
            bottom: -3px;

            background: #fff;

            transform: rotate(45deg);
            border-radius: 2px;
        }

        /* ERROR */

        .tracking-error {
            display: none;

            margin-top: 18px;
            padding: 14px 16px;

            border: 1px solid #ffd1c8;
            border-radius: 8px;

            background: #fff1ee;
            color: #c9361d;

            font-size: 15px;
            font-weight: 600;
        }

        /* LOADING */

        .tracking-loading {
            display: none;

            margin-top: 18px;

            text-align: center;

            color: #ef5636;

            font-size: 14px;
            font-weight: 600;
        }

        .loading-circle {
            display: inline-block;

            width: 17px;
            height: 17px;

            margin-right: 7px;

            border: 3px solid #f4cfc7;
            border-top-color: #ef5636;

            border-radius: 50%;

            vertical-align: -4px;

            animation: loading 0.7s linear infinite;
        }

        @keyframes loading {
            100% {
                transform: rotate(360deg);
            }
        }

        /* MOBILE */

        @media (max-width: 767px) {

            .air-tracking {
                padding: 15px;
            }

            .air-tracking-box {
                padding: 25px 20px;
            }

            .air-tracking-title {
                margin-bottom: 40px;
                font-size: 36px;
            }

            .air-tracking-description {
                margin-bottom: 35px;
                font-size: 17px;
            }

            .air-tracking-label {
                font-size: 19px;
            }

            .air-tracking-input {
                height: 56px;
                font-size: 18px;
            }

            .air-tracking-button {
                height: 55px;
                margin-top: 35px;
                font-size: 18px;
            }
        }
.calculator-section{
    padding:70px 15px;
}
.calculator-section .container{
  max-width: 1100px; margin: auto;  
}
.history-page__single-content p{
    text-align:justify;
} 

.calculator-box{
    background:#fff;
    border-radius:14px;
    padding:45px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
}

.calculator-title{
    text-align:center;
    margin-bottom:30px;
}

.calculator-title span{
    color:#f58220;
    font-size:14px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1.5px;
}

.calculator-title h1{
    color:#172b4d;
    font-size:34px;
    margin:10px 0;
}

.calculator-title p{
    color:#777;
    font-size:15px;
}

/* MODE SWITCH */

.mode-switch{
    display:flex;
    justify-content:center;
    margin-bottom:35px;
}

.mode-btn{
    border:1px solid #ddd;
    background:#fff;
    color:#333;
    padding:13px 35px;
    cursor:pointer;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.mode-btn:first-child{
    border-radius:6px 0 0 6px;
}

.mode-btn:last-child{
    border-radius:0 6px 6px 0;
}

.mode-btn.active{
    background:#f58220;
    border-color:#f58220;
    color:#fff;
}

/* FORM */

.form-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-bottom:20px;
}

.form-group label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
}

.form-group input,
.form-group select{
    width:100%;
    height:50px;
    border:1px solid #ddd;
    border-radius:6px;
    padding:0 13px;
    font-size:15px;
    outline:none;
    background:#fff;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#f58220;
    box-shadow:0 0 0 3px rgba(245,130,32,.10);
}

.calculate-area{
    text-align:center;
    margin-top:25px;
}

.calculate-btn{
    background:#f58220;
    color:#fff;
    border:0;
    border-radius:6px;
    padding:14px 40px;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.calculate-btn:hover{
    background:#172b4d;
}

/* RESULTS */

.results{
    display:none;
    margin-top:40px;
    border-top:1px solid #eee;
    padding-top:30px;
}

.results h2{
    text-align:center;
    color:#172b4d;
    font-size:25px;
    margin-bottom:25px;
}

.result-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.result-card{
    background:#f7f9fb;
    border-radius:8px;
    padding:25px 15px;
    text-align:center;
    border:1px solid #eee;
}

.result-card .value{
    font-size:27px;
    font-weight:700;
    color:#172b4d;
    margin-bottom:8px;
}

.result-card .label{
    color:#777;
    font-size:14px;
    font-weight:600;
}

.chargeable-result{
    margin-top:20px;
    background:#172b4d;
    color:#fff;
    padding:25px;
    border-radius:8px;
    text-align:center;
}

.chargeable-result .value{
    font-size:32px;
    font-weight:700;
    margin-bottom:6px;
}

.chargeable-result .label{
    font-size:14px;
}

/* ERROR */

.error{
    display:none;
    color:#d93025;
    text-align:center;
    margin-top:15px;
    font-size:14px;
}

/* INFO */

.calculator-info{
    margin-top:30px;
    text-align:center;
    color:#888;
    font-size:13px;
    line-height:1.7;
}

/* MOBILE */

@media(max-width:768px){

    .calculator-section{
        padding:45px 15px;
    }

    .calculator-box{
        padding:30px 20px;
    }

    .calculator-title h1{
        font-size:27px;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .mode-switch{
        width:100%;
    }

    .mode-btn{
        width:50%;
        padding:12px 10px;
    }

    .result-grid{
        grid-template-columns:1fr;
    }

}

.air-tracking-section {
    padding: 70px 0;
    background: #f6f8fb;
}

.tracking-box {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

.tracking-heading {
    text-align: center;
    margin-bottom: 30px;
}

.tracking-heading span {
    display: inline-block;
    color: #a4212a;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.tracking-heading h2 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
    color: #172b4d;
}

.tracking-heading p {
    margin: 0;
    color: #777;
    font-size: 15px;
}

.tracking-form {
    display: flex;
    align-items: end;
    gap: 15px;
}

.tracking-field {
    flex: 1;
}

.tracking-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.tracking-field input {
    width: 100%;
    height: 52px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: 0.3s;
    box-sizing: border-box;
}

.tracking-field input:focus {
    border-color: #f58220;
    box-shadow: 0 0 0 3px rgba(245,130,32,0.10);
}

.tracking-btn {
    height: 52px;
    padding: 0 28px;
    border: 0;
    border-radius: 6px;
    background: #f58220;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
}

.tracking-btn:hover {
    background: #172b4d;
}

.tracking-btn span {
    margin-left: 8px;
    font-size: 18px;
}

.tracking-error {
    display: none;
    margin-top: 15px;
    text-align: center;
    color: #d93025;
    font-size: 14px;
}

/* Mobile */
@media(max-width: 767px) {

    .air-tracking-section {
        padding: 45px 15px;
    }

    .tracking-box {
        padding: 30px 20px;
    }

    .tracking-heading h2 {
        font-size: 26px;
    }

    .tracking-form {
        display: block;
    }

    .tracking-field {
        margin-bottom: 15px;
    }

    .tracking-btn {
        width: 100%;
    }
}
.about-one__content-text p{
    text-align:justify;
}
 .industries-section {
            position: relative;
            padding: 90px 0;
            background: #f6f8fc;
            overflow: hidden;
        }


        /* Background Decoration */

       .industries-section .industries-section::before {
            content: "";
            position: absolute;

            width: 420px;
            height: 420px;

            border-radius: 50%;

            background: rgba(10, 40, 89, 0.04);

            top: -200px;
            left: -160px;
        }


       .industries-section .industries-section::after {
            content: "";
            position: absolute;

            width: 350px;
            height: 350px;

            border-radius: 50%;

            background: rgba(226, 29, 45, 0.04);

            right: -140px;
            bottom: -170px;
        }


        .industries-section .container {
            position: relative;
            z-index: 2;
        }


        /* =========================================
           SECTION HEADING
        ========================================= */

       .industries-section .industry-heading {
            max-width: 800px;
            margin: 0 auto 55px;
            text-align: center;
        }


       .industries-section .industry-heading .subtitle {
            display: inline-block;

            margin-bottom: 10px;

            color: #e21d2d;

            font-size: 14px;
            font-weight: 700;

            letter-spacing: 2px;
            text-transform: uppercase;
        }


       .industries-section .industry-heading h2 {
            margin: 0 0 15px;

            color: #0a2859;

            font-size: 42px;
            font-weight: 800;

            line-height: 1.2;
            text-transform: uppercase;
        }


      .industries-section  .industry-heading h2 span {
            color: #e21d2d;
        }


       .industries-section .industry-heading p {
            max-width: 700px;

            margin: 0 auto;

            color: #667085;

            font-size: 16px;
            line-height: 1.8;
        }


        /* =========================================
           INDUSTRY CARD
        ========================================= */

       .industries-section .industry-card {
            position: relative;

            height: 100%;

            padding: 30px 25px;

            background: #ffffff;

            border: 1px solid #e6eaf0;
            border-radius: 14px;

            overflow: hidden;

            text-align: center;

            box-shadow:
                0 8px 30px rgba(10, 40, 89, 0.06);

            transition:
                transform 0.4s ease,
                box-shadow 0.4s ease,
                border-color 0.4s ease;
        }


        /* Red Top Line */

      .industries-section  .industry-card::before {
            content: "";

            position: absolute;

            width: 0;
            height: 4px;

            top: 0;
            left: 0;

            background: #e21d2d;

            transition: width 0.4s ease;
        }


      .industries-section  .industry-card:hover::before {
            width: 100%;
        }


       .industries-section .industry-card:hover {
            transform: translateY(-8px);

            border-color: rgba(226, 29, 45, 0.25);

            box-shadow:
                0 20px 45px rgba(10, 40, 89, 0.12);
        }


        /* =========================================
           ICON
        ========================================= */

       .industries-section .industry-icon {
            width: 65px;
            height: 65px;

            margin: 0 auto 20px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: #0a2859;
            color: #ffffff;

            font-size: 27px;

            transition:
                background 0.4s ease,
                transform 0.4s ease;
        }


         .industries-section .industry-card:hover .industry-icon {
            background: #e21d2d;
            transform: rotateY(180deg);
        }


        /* =========================================
           INDUSTRY NAME
        ========================================= */

       .industries-section .industry-card h3 {
            margin: 0;

            color: #0a2859;

            font-size: 18px;
            font-weight: 700;

            line-height: 1.5;

            transition: color 0.3s ease;
        }


      .industries-section  .industry-card:hover h3 {
            color: #e21d2d;
        }


        /* =========================================
           NUMBER
        ========================================= */

       .industries-section .industry-number {
            position: absolute;

            top: 12px;
            right: 18px;

            color: #edf0f5;

            font-size: 32px;
            font-weight: 800;

            line-height: 1;

            transition: color 0.3s ease;
        }


      .industries-section  .industry-card:hover .industry-number {
            color: rgba(226, 29, 45, 0.08);
        }


        /* =========================================
           BOTTOM CTA
        ========================================= */

       .industries-section .industry-bottom {
            margin-top: 50px;

            padding: 25px 30px;

            background: #0a2859;

            border-radius: 12px;

            text-align: center;

            color: #ffffff;
        }


      .industries-section  .industry-bottom p {
            margin: 0;

            font-size: 15px;
            line-height: 1.7;
        }


        /* =========================================
           TABLET
        ========================================= */

        @media (max-width: 991px) {

           .industries-section .industries-section {
                padding: 70px 0;
            }

           .industries-section .industry-heading h2 {
                font-size: 36px;
            }

          .industries-section  .industry-card {
                padding: 28px 20px;
            }

        }


        /* =========================================
           MOBILE
        ========================================= */

        @media (max-width: 767px) {

           .industries-section .industries-section {
                padding: 55px 0;
            }

         .industries-section   .industry-heading {
                margin-bottom: 35px;
            }

          .industries-section  .industry-heading h2 {
                font-size: 30px;
            }

          .industries-section   .industry-heading p {
                font-size: 14px;
                line-height: 1.7;
            }

            .industries-section .industry-card {
                padding: 25px 20px;
            }

           .industries-section .industry-icon {
                width: 58px;
                height: 58px;

                font-size: 23px;
            }

           .industries-section .industry-card h3 {
                font-size: 17px;
            }

           .industries-section .industry-bottom {
                margin-top: 35px;
                padding: 20px;
            }

        }


        /* =========================================
           SMALL MOBILE
        ========================================= */

        @media (max-width: 480px) {

           .industries-section .industry-heading h2 {
                font-size: 26px;
            }

            .industry-heading .subtitle {
                font-size: 12px;
            }

          .industries-section  .industry-icon {
                width: 52px;
                height: 52px;

                font-size: 21px;
            }

           .industries-section .industry-number {
                font-size: 28px;
            }

        }

 
  .mission-vision-section {
            position: relative;
            padding: 90px 0;
            background: #f6f8fc;
            overflow: hidden;
        }


        /* Background Circle 1 */

        .mission-vision-section::before {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(10, 40, 89, 0.04);
            top: -180px;
            left: -150px;
        }


        /* Background Circle 2 */

        .mission-vision-section::after {
            content: "";
            position: absolute;
            width: 350px;
            height: 350px;
            border-radius: 50%;
            background: rgba(226, 29, 45, 0.04);
            bottom: -170px;
            right: -120px;
        }


        .mission-vision-section .container {
            position: relative;
            z-index: 2;
        }


        /* =========================================
           SECTION HEADING
        ========================================= */

       .mission-vision-section .section-heading {
            max-width: 780px;
            margin: 0 auto 55px;
            text-align: center;
        }


      .mission-vision-section  .section-subtitle {
            display: inline-block;
            margin-bottom: 10px;
            color: #e21d2d;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
        }


      .mission-vision-section  .section-heading h2 {
            margin: 0 0 15px;
            color: #0a2859;
            font-size: 44px;
            font-weight: 800;
            line-height: 1.2;
            text-transform: uppercase;
        }


      .mission-vision-section  .section-heading h2 span {
            color: #e21d2d;
        }


     .mission-vision-section   .section-heading p {
            max-width: 700px;
            margin: 0 auto;
            color: #667085;
            font-size: 16px;
            line-height: 1.8;
        }


        /* =========================================
           CARDS
        ========================================= */

     .mission-vision-section   .mv-card {
            position: relative;
            height: 100%;
            padding: 40px;
            display: flex;
            align-items: flex-start;
            gap: 25px;

            background: #ffffff;

            border: 1px solid #e6eaf0;
            border-radius: 14px;

            overflow: hidden;

            box-shadow:
                0 10px 35px rgba(10, 40, 89, 0.07);

            transition:
                transform 0.4s ease,
                box-shadow 0.4s ease;
        }


        /* Red Left Border */

    .mission-vision-section    .mv-card::before {
            content: "";
            position: absolute;

            width: 5px;
            height: 0;

            top: 0;
            left: 0;

            background: #0e1f3b;

            transition: height 0.4s ease;
        }


      .mission-vision-section  .mv-card:hover {
            transform: translateY(-8px);

            box-shadow:
                0 20px 45px rgba(10, 40, 89, 0.13);
        }


      .mission-vision-section  .mv-card:hover::before {
            height: 100%;
        }


        /* =========================================
           ICON
        ========================================= */

      .mission-vision-section  .mv-icon {
            flex: 0 0 70px;

            width: 70px;
            height: 70px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: #0a2859;
            color: #ffffff;

            font-size: 28px;

            transition:
                background 0.4s ease,
                transform 0.4s ease;
        }


     .mission-vision-section   .mv-card:hover .mv-icon {
            background: #e21d2d;
            transform: rotateY(180deg);
        }


        /* =========================================
           CONTENT
        ========================================= */

       .mission-vision-section .mv-content {
            flex: 1;
        }


      .mission-vision-section  .mv-label {
            display: block;

            margin-bottom: 5px;

            color: #e21d2d;

            font-size: 13px;
            font-weight: 700;

            letter-spacing: 2px;
        }


     .mission-vision-section   .mv-content h3 {
            margin: 0 0 15px;

            color: #0a2859;

            font-size: 28px;
            font-weight: 800;

            text-transform: uppercase;
        }


     .mission-vision-section   .mv-content p {
            margin: 0;

            color: #667085;

            font-size: 16px;
            line-height: 1.8;
        }


        /* =========================================
           VISION CARD
        ========================================= */

       .mission-vision-section .vision-card .mv-icon {
            background: #e21d2d;
        }


     .mission-vision-section   .vision-card:hover .mv-icon {
            background: #0a2859;
        }


        /* =========================================
           BOTTOM CTA
        ========================================= */

      .mission-vision-section  .mv-bottom {
            margin-top: 45px;
            text-align: center;
        }


     .mission-vision-section   .mv-bottom p {
            margin: 0;

            color: #667085;

            font-size: 15px;
        }


       .mission-vision-section .mv-bottom strong {
            color: #0a2859;
        }


        /* =========================================
           TABLET
        ========================================= */

        @media (max-width: 991px) {

          .mission-vision-section  .mission-vision-section {
                padding: 70px 0;
            }

          .mission-vision-section  .section-heading h2 {
                font-size: 36px;
            }

         .mission-vision-section   .mv-card {
                padding: 30px;
            }

        }


        /* =========================================
           MOBILE
        ========================================= */

        @media (max-width: 767px) {

            .mission-vision-section {
                padding: 55px 0;
            }

            .section-heading {
                margin-bottom: 35px;
            }

            .section-heading h2 {
                font-size: 30px;
            }

            .section-heading p {
                font-size: 15px;
                line-height: 1.7;
            }

            .mv-card {
                padding: 25px;
                gap: 18px;
            }

            .mv-icon {
                flex: 0 0 55px;

                width: 55px;
                height: 55px;

                font-size: 22px;
            }

            .mv-content h3 {
                font-size: 23px;
            }

            .mv-content p {
                font-size: 14px;
                line-height: 1.7;
            }

        }


        /* =========================================
           SMALL MOBILE
        ========================================= */

        @media (max-width: 480px) {

            .mv-card {
                display: block;
                padding: 25px 22px;
            }

            .mv-icon {
                margin-bottom: 20px;
            }

           .mission-vision-section .section-heading h2 {
                font-size: 27px;
            }

            .section-subtitle {
                font-size: 12px;
            }

        }






.custom-clearance-section {
            position: relative;
            padding: 90px 0;
            background: #f6f8fc;
            overflow: hidden;
        }


        /* Background Decorations */

        .custom-clearance-section::before {
            content: "";
            position: absolute;

            width: 400px;
            height: 400px;

            border-radius: 50%;

            background: rgba(10, 40, 89, 0.04);

            top: -180px;
            left: -150px;
        }


        .custom-clearance-section::after {
            content: "";
            position: absolute;

            width: 350px;
            height: 350px;

            border-radius: 50%;

            background: rgba(226, 29, 45, 0.04);

            bottom: -170px;
            right: -120px;
        }


        .custom-clearance-section .container {
            position: relative;
            z-index: 2;
        }


        /* =====================================
           SECTION HEADING
        ===================================== */

       .custom-clearance-section .section-heading {
            max-width: 800px;
            margin: 0 auto 55px;
            text-align: center;
        }


        .section-heading .subtitle {
            display: inline-block;

            margin-bottom: 10px;

            color: #e21d2d;

            font-size: 14px;
            font-weight: 700;

            letter-spacing: 2px;
            text-transform: uppercase;
        }


      .custom-clearance-section  .section-heading h2 {
            margin: 0 0 15px;

            color: #0a2859;

            font-size: 42px;
            font-weight: 800;

            line-height: 1.2;
            text-transform: uppercase;
        }


        .section-heading h2 span {
            color: #e21d2d;
        }


        .section-heading p {
            max-width: 700px;

            margin: 0 auto;

            color: #667085;

            font-size: 16px;
            line-height: 1.8;
        }


        /* =====================================
           SERVICE CARD
        ===================================== */

        .clearance-card {
            position: relative;

            height: 100%;

            padding: 30px 25px;

            background: #ffffff;

            border: 1px solid #e6eaf0;
            border-radius: 12px;

            overflow: hidden;

            box-shadow:
                0 8px 30px rgba(10, 40, 89, 0.06);

            transition:
                transform 0.4s ease,
                box-shadow 0.4s ease,
                border-color 0.4s ease;
        }


        /* Top Red Line */

        .clearance-card::before {
            content: "";

            position: absolute;

            width: 0;
            height: 4px;

            top: 0;
            left: 0;

            background: #e21d2d;

            transition: width 0.4s ease;
        }


        .clearance-card:hover::before {
            width: 100%;
        }


        .clearance-card:hover {
            transform: translateY(-7px);

            border-color: rgba(226, 29, 45, 0.25);

            box-shadow:
                0 18px 40px rgba(10, 40, 89, 0.12);
        }


        /* =====================================
           ICON
        ===================================== */

        .clearance-icon {
            width: 55px;
            height: 55px;

            margin-bottom: 20px;

            display: flex;
            align-items: center;
            justify-content: center;

            border-radius: 50%;

            background: #0a2859;
            color: #ffffff;

            font-size: 22px;

            transition:
                background 0.3s ease,
                transform 0.3s ease;
        }


        .clearance-card:hover .clearance-icon {
            background: #e21d2d;
            transform: rotateY(180deg);
        }


        /* =====================================
           CARD TITLE
        ===================================== */

        .clearance-card h3 {
            margin: 0;

            color: #0a2859;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 18px;
            font-weight: 700;

            line-height: 1.5;

            transition: color 0.3s ease;
        }


        .clearance-card:hover h3 {
            color: #e21d2d;
        }


        /* =====================================
           NUMBER
        ===================================== */

       .custom-clearance-section .service-number {
            position: absolute;

            top: 18px;
            right: 20px;

            color: #edf0f5;

            font-size: 35px;
            font-weight: 800;

            line-height: 1;

            transition: color 0.3s ease;
        }


        .clearance-card:hover .service-number {
            color: rgba(226, 29, 45, 0.08);
        }


        /* =====================================
           BOTTOM INFO
        ===================================== */

        .clearance-bottom {
            margin-top: 50px;

            padding: 25px 30px;

            background: #0a2859;

            border-radius: 10px;

            text-align: center;

            color: #ffffff;
        }


        .clearance-bottom p {
            margin: 0;

            font-size: 15px;
            line-height: 1.7;
        }


        .clearance-bottom strong {
            color: #ffffff;
        }


        /* =====================================
           TABLET
        ===================================== */

        @media (max-width: 991px) {

            .custom-clearance-section {
                padding: 70px 0;
            }

            .custom-clearance-section .section-heading h2 {
                font-size: 36px;
            }

            .clearance-card {
                padding: 25px 22px;
            }

        }


        /* =====================================
           MOBILE
        ===================================== */

        @media (max-width: 767px) {

            .custom-clearance-section {
                padding: 55px 0;
            }

          .custom-clearance-section  .section-heading {
                margin-bottom: 35px;
            }

          .custom-clearance-section  .section-heading h2 {
                font-size: 29px;
            }

         .custom-clearance-section   .section-heading p {
                font-size: 14px;
                line-height: 1.7;
            }

            .clearance-card {
                padding: 25px 22px;
            }

            .clearance-card h3 {
                font-size: 17px;
            }

            .clearance-bottom {
                margin-top: 35px;
                padding: 20px;
            }

        }


        /* =====================================
           SMALL MOBILE
        ===================================== */

        @media (max-width: 480px) {

           .custom-clearance-section .section-heading h2 {
                font-size: 26px;
            }

           .custom-clearance-section .clearance-icon {
                width: 50px;
                height: 50px;

                font-size: 20px;
            }

           .custom-clearance-section .service-number {
                font-size: 30px;
            }

        }



/* ==============================
   BRANCH SECTION
================================ */

.branches-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #fff;
}

/* Background decoration */

.branches-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(242, 84, 45, 0.05);
    top: -180px;
    left: -180px;
}

.branches-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(242, 84, 45, 0.04);
    bottom: -150px;
    right: -100px;
}


/* ==============================
   HEADING
================================ */

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 8px 15px;

    border-radius: 50px;

    background: #fff1ec;
    color: #ef5735;

    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.section-title {
    margin-top: 18px;

    font-size: 48px;
    line-height: 1.15;

    font-weight: 800;

    color: #1d1d1d;
}

.section-title span {
    color: #ef5735;
}

.section-description {
    max-width: 600px;
    margin: 18px auto 0;

    color: #777;
    font-size: 15px;
    line-height: 1.8;
}


/* ==============================
   BRANCH CARD
================================ */

.branch-card {
    position: relative;

    display: flex;
    gap: 28px; 

    padding: 35px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #eeeeee;
    border-radius: 24px;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.055);

    transition: all 0.35s ease;
}


/* Orange left border */

.branch-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 4px;

    background: #ef5735;

    transform: scaleY(0);

    transform-origin: bottom;

    transition: 0.35s ease;
}

.branch-card:hover::before {
    transform: scaleY(1);
}


.branch-card:hover {
    transform: translateY(-7px);

    border-color: rgba(239, 87, 53, 0.2);

    box-shadow:
        0 20px 55px rgba(0, 0, 0, 0.09);
}


/* ==============================
   NUMBER
================================ */

.branch-number {
    position: absolute;

    top: 18px;
    right: 25px;

    color: #eeeeee;

    font-size: 55px;
    line-height: 1;

    font-weight: 800;

    z-index: 0;
}


/* ==============================
   ICON
================================ */

.branch-icon {
    position: relative;
    z-index: 2;

    flex: 0 0 64px;

    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: #fff1ec;

    color: #ef5735;

    font-size: 27px;

    transition: all 0.3s ease;
}

.branch-card:hover .branch-icon {
    background: #ef5735;
    color: #fff;

    transform: rotate(-5deg) scale(1.05);
}


/* ==============================
   CONTENT
================================ */

.branch-content {
    position: relative;
    z-index: 2;

    flex: 1;
}

.branch-label {
    display: block;

    margin-bottom: 7px;

    color: #ef5735;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.5px;
}

.branch-content h3 {
    margin-bottom: 12px;

    font-size: 27px;

    font-weight: 500;

    color: #1d1d1d;
}

.branch-content p {
    margin: 0;

    max-width: 500px;

    color: #707070;

    font-size: 14px;
    line-height: 1.8;
}


/* ==============================
   BUTTON
================================ */

.location-btn {
    display: inline-flex;

    align-items: center;
    gap: 9px;

    margin-top: 20px;

    color: #1e1e1e;

    text-decoration: none;

    font-size: 13px;
    font-weight: 800;

    transition: 0.3s ease;
}

.location-btn i {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 27px;
    height: 27px;

    border-radius: 50%;

    background: #ef5735;
    color: #fff;

    font-size: 12px;

    transition: 0.3s ease;
}

.location-btn:hover {
    color: #ef5735;
}

.location-btn:hover i {
    transform: translate(3px, -3px);
}


/* ==============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .branches-section {
        padding: 80px 0;
    }

    

    .branch-card {
        padding: 30px;
    }

}


@media (max-width: 767px) {

    .branches-section {
        padding: 65px 0;
    }

    

    .section-description {
        font-size: 14px;
    }

    .branch-card {
        min-height: auto;

        padding: 26px;

        gap: 18px;

        border-radius: 20px;
    }

    .branch-icon {
        flex: 0 0 52px;

        width: 52px;
        height: 52px;

        border-radius: 14px;

        font-size: 22px;
    }

    .branch-content h3 {
        font-size: 23px;
    }

    .branch-content p {
        font-size: 13px;
        line-height: 1.7;
    }

    .branch-number {
        font-size: 45px;
    }

}


@media (max-width: 480px) {

    .branches-section {
        padding: 55px 0;
    }

     
    .section-tag {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .branch-card {
        display: block;

        padding: 25px 22px;
    }

    .branch-icon {
        margin-bottom: 20px;
    }

    .branch-content h3 {
        font-size: 22px;
    }

    .branch-content p {
        font-size: 13px;
    }

    .branch-number {
        top: 15px;
        right: 18px;
        font-size: 40px;
    }

}



:root{
    --red:#e50052;
    --blue:#081d4a;
    --light:#e8eef5;
}
 
.hero-banner{
    background:
    linear-gradient(rgba(8,29,74,.80),rgba(8,29,74,.80)),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?q=80&w=2070&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    height:450px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.hero-banner h1{
    font-size:60px;
    font-weight:700;
}

.hero-banner p{
    font-size:18px;
    opacity:.9;
}

/* Counter Strip */
.counter-strip{
    margin-top:-70px;
    position:relative;
    z-index:99;
}

.counter-card{
    min-height:190px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    border-right: 2px solid white;
}

.red-bg{
    background:#a42129;
    color:#fff;
}
.red-bg h6{
    color:#fff;
     font-family:"Roboto", sans-serif;
}

.blue-bg{
    background:#0e1f3b;
    color:#fff;
}
.blue-bg h6{ 
    color:#fff;
    font-family:"Roboto", sans-serif;
}
.light-bg{
   background: #fff !important;
   color: #000 !important;
}
.light-bg h6{
   font-family:"Roboto", sans-serif;
   color: #000 !important;
}
.icon-box{
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background:#fff;
    color:#a42129;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-right:25px;
    flex-shrink:0;
}

.light-bg .icon-box {
    background: white;
    color: #a42129;
}

.icon-box i{
    font-size:34px;
}

.counter-content h6 {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 500;
     
}

.counter-number {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
    /*color: white;*/
}

/* Mobile */
@media(max-width:991px){

.counter-card{
    flex-direction:column;
    text-align:center;
}

.icon-box{
    margin-right:0;
    margin-bottom:15px;
}

.counter-strip{
    margin-top:-30px;
}

.counter-number{
    font-size:45px;
}

.hero-banner h1{
    font-size:36px;
}
} 
 
 
 
.small{display:block;color:#c61e28;font-weight:bold;margin-top:-10px}
.bg-cover {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
}
.sec-padding {
    padding: 120px 0;
}
.sec-intro {
    margin: 0 0 60px;
    max-width: 700px;
}
.text-center {
    text-align: center !important;
}
.mx-auto {
    margin-right: auto !important;
    margin-left: auto !important;
}
.sub-title, .sub-title2 {
    text-transform: uppercase;
    display: inline-block;
    color: #fd5523;
    font-weight: 600;
    margin-bottom: 10px;
}
.sec-title {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-size: 48px;
}
.sub-title2{
    position: relative;
    display: inline-block;
    z-index: 1;
}

.sub-title2::before,
.sub-title2::after{
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #fd5523;
    transform: translateY(-50%);
}

.sub-title2::before{
    right: -55px;
}

.sub-title2::after{
    left: -55px;
}

.sub-title2{
  position: relative;
    z-index: 1;  
}
 
.sub-title2:after {
    content: "";
    left: -60px;
}
 
.sub-title2:after, .sub-title2:before {
    width: 40px;
    height: 1px;
    background-color: #a4212a;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}
*, ::after, ::before {
    box-sizing: border-box;
}
.sub-title, .sub-title2 {
    text-transform: uppercase;
    display: inline-block;
    color: #fd5523;
    font-weight: 600;
    margin-bottom: 10px;
}
.text-center {
    text-align: center !important;
}
.choose-sec2 .single-choose:not(:last-child) {
    margin-bottom: 80px;
}
.choose-sec2 .reverse-choose .single-choose:first-child:after{
    left: -50%!important;
}
.choose-sec2 .single-choose {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 20px 20px 60px;
    position: relative;
    text-align: right;
}
.choose-sec2 .single-choose:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
   background-color: #ecf0f1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 8% 100%);
     z-index: 1;
}
.choose-sec2 .single-choose, .choose-sec2 .single-choose:before {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
}
 .choose-sec2 .reverse-choose .single-choose:before {
    background-color: #ecf0f1;
    clip-path: polygon(0 0, 100% 1%, 92% 100%, 0 100%);
}
.bg-primary {
    background-color: #A4212A !important;
}
.choose-sec2 .single-choose span.icon{
   width: 68px;
    height: 68px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px; 
    position: relative;
    z-index: 1;
}
.choose-sec2 .single-choose{
   z-index: 1; 
}
.choose-sec2 .single-choose h3 {
    z-index: 2;
    position: relative;
}
.display-6{
   font-size: 18px;
    font-weight: 600;
    line-height: 1.2;
    color: #020e28;
    font-family: "Rethink Sans", sans-serif;
}
.fw-bold {
    font-weight: 700 !important;
}
.choose-sec2 .single-choose:after {
    background: url(https://digiitsoft.com/project/arnexlogistics/resources/media/1784442554_choose-s-b_0.png) no-repeat 50% / contain;
    content: "";
    width: 100%;
    height: 40px;
    left: 100%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: -1;
}
.choose-sec2 .reverse-choose .single-choose {
    flex-direction: row-reverse;
    padding-left: 20px;
    padding-right: 60px;
    text-align: left;
}
.choose-sec2 .reverse-choose .single-choose:after {
    left: -100%!important;
    background: url(https://digiitsoft.com/project/arnexlogistics/resources/media/1784442554_choose-sb2_1.png) no-repeat 50% / contain;
}
.choose-sec2 .single-choose span.icon-lg:before, .choose-sec2 .single-choose span.icon-xl:before, .choose-sec2 .single-choose span.icon-xs:before, .choose-sec2 .single-choose span.icon:before {
    background-color: #fff;
    height: 4px;
    width: 39px;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
}
.icon, .icon-lg, .icon-xl, .icon-xs {
    height: 46px;
    width: 46px;
    text-align: center;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.choose-sec2 .reverse-choose .single-choose:nth-child(2):after {
    left: -30%!important;
}
.choose-sec2 .single-choose:nth-child(2):after {
    left: 60%;
}
.choose-sec2 .single-choose:nth-child(3):after {
    left: 50%;
}
.choose-sec2 .single-choose:not(:last-child) {
    margin-bottom: 80px;
}
.choose-sec2 .single-choose span.icon:before {
    background-color: #fff;
    height: 4px;
    width: 39px;
    border-radius: 20px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
}
 
.choose-sec2 .single-choose h3 {
    z-index: 2;
    position: relative;
}
.choose-sec2 .single-choose h3 {
    max-width: 130px;
}
.sub-title, .sub-title2 {
    text-transform: uppercase;
    display: inline-block;
    color: #a4212a;
    font-weight: 600;
    margin-bottom: 10px;
}
 
 @media(max-width:768px){.counter-card h2{font-size:40px}.counter-card{margin-top:40px}}
 
 
 
 /* =====================================================
   FIX HORIZONTAL / SIDE SCROLLING
   ARNEX LOGISTICS
===================================================== */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Bootstrap rows sometimes create overflow */
.row {
    margin-left: 0;
    margin-right: 0;
}

/* Prevent media from going outside viewport */
img,
svg,
video,
iframe {
    max-width: 100%;
}

img {
    height: auto;
}

/* Sections should never exceed viewport */
section,
header,
footer,
main {
    max-width: 100%;
}

/* Containers */
.container,
.container-fluid {
    max-width: 100%;
}

/* Slider / carousel */
.carousel,
.owl-carousel,
.swiper,
.slider,
.banner,
.hero,
.hero-section {
    max-width: 100%;
    overflow: hidden;
}

/* Owl Carousel common overflow */
.owl-stage-outer {
    overflow: hidden !important;
}

/* Prevent positioned elements from creating horizontal scroll */
[class*="shape"],
[class*="element"],
[class*="decoration"] {
    max-width: 100%;
}

/* Mobile/tablet safety */
@media (max-width: 991.98px) {
    .container,
    .container-fluid {
        width: 100%;
        max-width: 100%;
    }

    .row {
        --bs-gutter-x: 1.5rem;
        margin-left: 0;
        margin-right: 0;
    }
}

/* Large desktop */
@media (min-width: 1200px) {
    html,
    body {
        overflow-x: hidden !important;
    }
}