/********** Template CSS **********/
:root {
    --primary: #ff5821;
    --secondary: #19beb7;
    --light: #F8F2F0;
    --dark: #060315;
    --primary-light: rgba(255, 88, 33, 0.1);
    --primary-medium: rgba(255, 88, 33, 0.2);
    --secondary-light: rgba(25, 190, 183, 0.1);
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}
.border-top {
    border-top: 5px solid #ff5821 !important;
}
.section-padding {
    padding: 5rem 0;
}
.text-primary {
    color: #ff5101 !important;
}
.bg-primary {
    background-color: #ff5100 !important;
}
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-secondary-light { background-color: var(--secondary-light) !important; }

.badge-primary {
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 500;
}

.badge-secondary {
    background-color: var(--secondary-light);
    color: var(--secondary);
    font-weight: 500;
}
.text-secondary {
    color: #19beb7 !important;
}
.btn-primary {
    color: #000;
    background-color: #ff5101;
    border-color: #ff5101;
    border-radius: 4px;
}
.btn-secondary {
    color: #000;
    background-color: #19beb7;
    border-color: #19beb7;
    border-radius: 4px;
}
.bg-secondary {
    background-color: #19beb7 !important;
}
.fw-medium {
    font-weight: 600 !important;
}

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


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

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

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

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

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

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


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

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

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

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

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 5px;
        top: -6px;
        left: 50%;
        background: #FFFFFF;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

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


/*** Header ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

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

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

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

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

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

.page-header {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

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


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

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

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

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


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

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

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

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


/*** Service, Price & Team ***/

.service-item,
.price-item,
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

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

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

.service-item a.btn-slide,
.price-item a.btn-slide,
.team-item div.btn-slide {
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 0;
}

.service-item a.btn-slide i,
.service-item a.btn-slide span,
.price-item a.btn-slide i,
.price-item a.btn-slide span,
.team-item div.btn-slide i,
.team-item div.btn-slide span {
    position: relative;
    height: 40px;
    padding: 0 15px;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 0 35px 35px 0;
    transition: .5s;
    z-index: 2;
}

.team-item div.btn-slide span a i {
    padding: 0 10px;
}

.team-item div.btn-slide span a:hover i {
    background: var(--secondary);
}

.service-item a.btn-slide span,
.price-item a.btn-slide span,
.team-item div.btn-slide span {
    padding-left: 0;
    left: -100%;
    z-index: 1;
}

.service-item:hover a.btn-slide i,
.price-item:hover a.btn-slide i,
.team-item:hover div.btn-slide i {
    border-radius: 0;
}

.service-item:hover a.btn-slide span,
.price-item:hover a.btn-slide span,
.team-item:hover div.btn-slide span {
    left: 0;
}

.service-item a.btn-slide:hover i,
.service-item a.btn-slide:hover span,
.price-item a.btn-slide:hover i,
.price-item a.btn-slide:hover span {
    background: var(--secondary);
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
    position: relative;
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    animation: pulse 1s ease-out .5s;
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border: 5px solid var(--light);
    border-radius: 15px;
    transition: .5s;
}

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


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

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

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

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


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(6, 3, 21, .5), rgba(6, 3, 21, .5)), url(../img/map.png) center center no-repeat;
    background-size: cover;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

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

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

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.cnt-pt-info{
    margin-top: 197px;
}
.cnt-pt-info .mxh-165{
    min-height: 175px;
}

/* ------------------------------------------------------------- */
/********** Air Freight Services Page Styles **********/
/* ------------------------------------------------------------- */

/* Section Styling */
.airfreight-section {
    margin-bottom: 4rem;
}

/* Section Title Styling */
.section-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.section-desc {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-title {
    font-weight: 600;
    color: var(--dark);
}

.service-desc {
    color: #555;
}

/* Specialty Services */
.speciality-services {
    background-color: var(--light);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.specialty-item {
    transition: var(--transition);
    padding: 1rem;
    border-radius: 8px;
}

.specialty-item:hover {
    background-color: white;
    box-shadow: var(--shadow-sm);
}

.specialty-icon {
    font-size: 1.5rem;
    min-width: 40px;
}

.specialty-title {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.specialty-desc {
    color: #666;
    margin-bottom: 0;
}

/* Industry Cards */
.industry-card {
    background: white;
    border-radius: 12px;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--secondary);
}

.industry-card:hover .industry-icon {
    color: var(--secondary);
}

.industry-icon {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.industry-title {
    font-weight: 600;
    color: var(--dark);
}

.industry-desc {
    color: #666;
    font-style: italic;
}

/* Global Reach Section */
.global-reach-container {
    background-color: var(--light);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.global-reach-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTI5LjQyOSAxMjkuNDI5YzEzMy4zMzMtMTMzLjMzMyAzNTAtMTMzLjMzMyA0ODMuMzMzIDBzMTMzLjMzMyAzNTAgMCA0ODMuMzMzLTM1MCAxMzMuMzMzLTQ4My4zMzMgMC0xMzMuMzMzLTM1MCAwLTQ4My4zMzN6IiBmaWxsPSIjZmY1ODIxIiBmaWxsLW9wYWNpdHk9Ii4wMSIvPjwvc3ZnPg==') center/cover no-repeat;
    opacity: 0.5;
    z-index: 0;
}

.destination-item {
    position: relative;
    z-index: 1;
    padding: 1rem;
    transition: var(--transition);
    border-radius: 8px;
}

.destination-item:hover {
    background-color: white;
    box-shadow: var(--shadow-sm);
}

.destination-icon {
    font-size: 2rem;
}

.destination-name {
    font-weight: 600;
    color: var(--dark);
}

/* CTA Container */
.cta-container {
    background: linear-gradient(135deg, var(--primary), rgba(255, 88, 33, 0.8));
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTAwIiBoZWlnaHQ9IjUwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNMTI5LjQyOSAxMjkuNDI5YzEzMy4zMzMtMTMzLjMzMyAzNTAtMTMzLjMzMyA0ODMuMzMzIDBzMTMzLjMzMyAzNTAgMCA0ODMuMzMzLTM1MCAxMzMuMzMzLTQ4My4zMzMgMC0xMzMuMzMzLTM1MCAwLTQ4My4zMzN6IiBmaWxsPSIjZmZmZmZmIiBmaWxsLW9wYWNpdHk9Ii4wNSIvPjwvc3ZnPg==') center/cover no-repeat;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-weight: 700;
    font-size: 2rem;
}

.cta-desc {
    font-size: 1.2rem;
    opacity: 0.9;
}

.cta-container .btn-primary {
    background-color: white;
    color: var(--primary);
    border-color: white;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-container .btn-primary:hover {
    background-color: var(--dark);
    color: white;
    border-color: var(--dark);
}

/* Animations */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-container {
        padding: 2rem !important;
    }
}

@media (max-width: 576px) {
    .service-card, 
    .industry-card, 
    .specialty-item {
        margin-bottom: 1rem;
    }
    
    .global-reach-container {
        padding: 1.5rem !important;
    }
}
/* ------------------------------------------------------------- */
/********** Sea Freight Services Page Styles **********/
/* ------------------------------------------------------------- */

.sea-fr-services .service-card {
    border: none;
    transition: transform 0.3s ease-in-out;
    height: 100%;
}

.sea-fr-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.sea-fr-services .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    color: white;
    font-size: 28px;
}

.sea-fr-services .section-title, .sea-why-value .section-title,  .sea-fr-srva .section-title, .sea-fr-insr .section-title{
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.sea-fr-services .section-title::after, .sea-why-value .section-title::after, .sea-fr-srva .section-title::after, .sea-fr-insr .section-title::after  {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary);
    bottom: 0;
    left: 0;
}

.sea-fr-services .section-title.text-center::after, .sea-why-value .section-title.text-center::after, .sea-fr-srva .section-title.text-center::after, .sea-fr-insr .section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.sea-why-value .feature-item {
    padding: 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.sea-why-value .feature-item:hover {
    background-color: var(--light);
}
.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary);
    color: white;
}

.sea-why-value .value-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 15px;
}
/* ------------------------------------------------------------- */
/********** Courier Services Page Styles **********/
/* ------------------------------------------------------------- */
.courier-header {
    background-color: var(--dark);
    padding: 1rem 0;
}

.courier-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.courier-brand-accent {
    color: var(--primary);
}

.courier-nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.courier-nav-item {
    margin-left: 1.5rem;
}

.courier-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    padding: 0.5rem 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.courier-nav-link:hover {
    color: var(--primary);
}

.courier-btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.courier-btn-primary:hover {
    background-color: #e04718;
    color: white;
}

.courier-btn-outline {
    border: 2px solid white;
    background-color: transparent;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.courier-btn-outline:hover {
    background-color: white;
    color: var(--dark);
}

.courier-hero {
    background: linear-gradient(rgba(6, 3, 21, 0.8), rgba(6, 3, 21, 0.8)), url('/api/placeholder/1200/600') no-repeat center center;
    background-size: cover;
    padding: 8rem 0;
    color: white;
    position: relative;
}

.courier-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.courier-hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
}

.courier-section {
    padding: 5rem 0;
}

.courier-section-light {
    background-color: var(--light);
}

.courier-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.courier-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.courier-section-title-center {
    text-align: center;
}

.courier-section-title-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.courier-icon-box {
    padding: 2rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.courier-icon-box:hover {
    transform: translateY(-10px);
}

.courier-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    color: white;
}

.courier-icon-primary {
    background-color: var(--primary);
}

.courier-icon-secondary {
    background-color: var(--secondary);
}

.courier-feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.courier-feature-text {
    margin-bottom: 1.5rem;
}

.courier-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.courier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.courier-card-img {
    height: 200px;
    object-fit: cover;
}

.courier-card-body {
    padding: 2rem;
}

.courier-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.courier-highlight {
    color: var(--primary);
    font-weight: 700;
}

.courier-list {
    list-style: none;
    padding-left: 0;
}

.courier-list-item {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
}

.courier-list-item::before {
    content: '✓';
    color: var(--primary);
    position: absolute;
    left: 0;
    top: 0.5rem;
    font-weight: bold;
}

.courier-industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.courier-industry-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.courier-industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary);
}

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

.courier-industry-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.courier-industry-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.courier-industry-text {
    color: #555;
    margin-bottom: 0;
}

.courier-cta {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    padding: 5rem 0;
    color: white;
    text-align: center;
}

.courier-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.courier-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.courier-badge {
    display: inline-block;
    background-color: rgb(252 251 251);
    color: #ff5821;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.courier-stat {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.courier-stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.courier-footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 2rem;
}

.courier-footer-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.courier-footer-text {
    margin-bottom: 2rem;
}

.courier-social-links {
    display: flex;
    margin-bottom: 2rem;
}

.courier-social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-right: 0.75rem;
    transition: all 0.3s ease;
}

.courier-social-link:hover {
    background-color: var(--primary);
    color: white;
}

.courier-footer-links {
    list-style: none;
    padding-left: 0;
}

.courier-footer-link-item {
    margin-bottom: 0.75rem;
}

.courier-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.courier-footer-link:hover {
    color: var(--primary);
}

.courier-contact-info {
    list-style: none;
    padding-left: 0;
}

.courier-contact-item {
    display: flex;
    margin-bottom: 1rem;
}

.courier-contact-icon {
    color: var(--primary);
    font-size: 1.25rem;
    width: 30px;
}

.courier-contact-text {
    flex: 1;
}

.courier-copyright {
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.courier-package-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .courier-hero-title {
        font-size: 2rem;
    }
    
    .courier-section-title {
        font-size: 2rem;
    }
    
    .courier-hero {
        padding: 5rem 0;
    }
    
    .courier-section {
        padding: 3rem 0;
    }
}

/* ------------------------------------------------------------- */
/********** Courier Services Page Styles **********/
/* ------------------------------------------------------------- */

/* ------------------------------------------------------------- */
/********** Temparture cargo Page Styles **********/
/* ------------------------------------------------------------- */

.tcp-shss-cs .section-title {
    position: relative;
    margin-bottom: 3rem;
}

.tcp-shss-cs .section-title::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
    bottom: -10px;
    left: 0;
}

.tcp-shss-cs .service-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
    border: none;
}

 .tcp-shss-cs.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tcp-shss-cs .service-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.tcp-shss-cs .service-card .card-body {
    padding: 1.5rem;
}

.tcp-shss-cs .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
    font-size: 1.75rem;
    color: var(--primary);
    border-radius: 50%;
    background-color: var(--primary-light);
    transition: var(--transition);
}

.tcp-shss-cs .feature-box:hover .feature-icon {
    background-color: var(--primary);
    color: white;
}

.tcp-shss-cs .feature-box {
    padding: 2rem;
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
}

.tcp-shss-cs .feature-box:hover {
    box-shadow: var(--shadow-md);
    background-color: white;
}

.tcp-shss-cs .list-check li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
}

.tcp-shss-cs .list-check li::before {
    content: "\f26a";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
}

.tcp-shss-cs .logo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.tcp-shss-cs .partner-logo:hover .logo-overlay {
    opacity: 1;
}

.tcp-shss-cs .gradient-bg {
    background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
}

.tcp-shss-cs .cold-chain-banner {
    background-image: url('/api/placeholder/1200/400');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.tcp-shss-cs .cold-chain-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(6,3,21,0.85) 0%, rgba(6,3,21,0.6) 100%);
    z-index: 1;
}

.tcp-shss-cs .cold-chain-banner .container {
    position: relative;
    z-index: 2;
}

.tcp-shss-cs .industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: inline-block;
    color: var(--primary);
}





   /* ------------------------------------------------------------- */
/********** road freight Page Styles **********/
/* ------------------------------------------------------------- */

.road-freight-section .section-title {
    position: relative;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.road-freight-section .section-title::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 4px;
    background-color: var(--primary);
    bottom: -15px;
    left: 0;
}

.road-freight-section .section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.road-freight-section .feature-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: none;
}

.road-freight-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.road-freight-section .feature-card .card-body {
    padding: 2rem;
}

.road-freight-section .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    font-size: 2rem;
    color: var(--primary);
}

.road-freight-section .service-card:hover .service-icon {
    background-color: var(--primary);
    color: white;
    transform: rotateY(180deg);
}

.road-freight-section .service-card {
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    transition: var(--transition);
    height: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.road-freight-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-light);
    transition: var(--transition);
    z-index: -1;
    border-radius: 15px;
}

.road-freight-section .service-card:hover::before {
    height: 100%;
}

.road-freight-section .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.road-freight-section .check-list {
    list-style: none;
    padding-left: 0;
}

.road-freight-section .check-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.road-freight-section .check-list li::before {
    content: "✅";
    position: absolute;
    left: 0;
    top: 0;
}

.road-freight-section .rail-list {
    list-style: none;
    padding-left: 0;
}

.road-freight-section .rail-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.road-freight-section .rail-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-size: 1.5rem;
    line-height: 1;
}

.road-freight-section .process-step {
    position: relative;
    padding-bottom: 3rem;
}

.road-freight-section .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    width: 2px;
    background-color: var(--primary-light);
    top: 70px;
    bottom: 0;
    left: 40px;
}

.road-freight-section .step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.road-freight-section .testimonial-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: none;
}

.road-freight-section .client-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1.5rem;
}

.road-freight-section .stats-counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}
.rail-freight-section {
    background-color: var(--light);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.rail-freight-section::before {
    content: '';
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-light);
    z-index: 0;
}

.rail-freight-content {
    position: relative;
    z-index: 1;
}

.road-freight-section .stat-card {
    padding: 2rem;
    border-radius: 15px;
    background-color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.road-freight-section .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.road-freight-section .benefits-list li {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: flex-start;
}

.road-freight-section .benefits-list li i {
    color: var(--primary);
    font-size: 1.25rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}



/* ------------------------------------------------------------- */
/********** rail freight Page Styles **********/
/* ------------------------------------------------------------- */


.rail-pr-frservice-sec .feature-card {
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.rail-pr-frservice-sec .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.rail-pr-frservice-sec .feature-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.rail-pr-frservice-sec .benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.rail-pr-frservice-sec .industry-card {
    padding: 1.5rem;
    border-radius: 10px;
    transition: var(--transition);
    height: 100%;
    background-color: white;
    box-shadow: var(--shadow-sm);
}

.rail-pr-frservice-sec .industry-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.rail-pr-frservice-sec .industry-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.rail-pr-frservice-sec .cta-section {
    background-color: var(--primary-light);
    padding: 5rem 0;
}

/* Animation */
.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ------------------------------------------------------------- */
/********** custom clearance Page Styles **********/
/* ------------------------------------------------------------- */
.custom-clr-pagbrs .feature-card {
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
}

.custom-clr-pagbrs .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.custom-clr-pagbrs .service-card {
    padding: 2rem;
    border-radius: 12px;
    background-color: white;
    transition: var(--transition);
    height: 100%;
    box-shadow: var(--shadow-sm);
    border-bottom: 3px solid transparent;
}

.custom-clr-pagbrs .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-bottom: 3px solid var(--primary);
}

.custom-clr-pagbrs .service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background-color: var(--primary-light);
    color: var(--primary);
}

.custom-clr-pagbrs .process-step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 2rem;
}

.custom-clr-pagbrs .process-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.custom-clr-pagbrs .shipment-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background-color: white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.custom-clr-pagbrs .shipment-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.custom-clr-pagbrs .shipment-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-light);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1rem;
}

.custom-clr-pagbrs .accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--primary);
}

.custom-clr-pagbrs .accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-light);
}

.custom-clr-pagbrs .stats-box {
    padding: 2rem;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.custom-clr-pagbrs .stats-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.custom-clr-pagbrs .stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

/* Custom border with icon */
.custom-clr-pagbrs .custom-icon-list {
    list-style: none;
    padding-left: 0;
}

.custom-clr-pagbrs .custom-icon-list li {
    padding-left: 1.75rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.custom-clr-pagbrs .custom-icon-list li i {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--primary);
}

/* ------------------------------------------------------------- */
/********** warehousing distribution Page Styles **********/
/* ------------------------------------------------------------- */

.warehdrs-page-ss .hero-badge {
    background-color: var(--secondary);
    display: inline-block;
    padding: 8px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.2s;
}
/* Services Section */
.warehdrs-page-ss .service-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.warehdrs-page-ss .service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
}

.warehdrs-page-ss .service-icon {
    background-color: var(--primary-light);
    color: var(--primary);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.warehdrs-page-ss .service-card:hover .service-icon {
    background-color: var(--primary);
    color: white;
}

.warehdrs-page-ss .service-title {
    color: var(--dark);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Solutions Section */
.warehdrs-page-ss .solutions-section {
    background-color: var(--secondary-light);
    padding: 80px 0;
}

.warehdrs-page-ss .solution-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.warehdrs-page-ss .solution-item:hover {
    background-color: white;
    box-shadow: var(--shadow-sm);
}

.warehdrs-page-ss .solution-icon {
    color: var(--primary);
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Counters */
.warehdrs-page-ss .counter-section {
    /* background: linear-gradient(rgba(6, 3, 21, 0.9), rgba(6, 3, 21, 0.9)), url('/api/placeholder/1200/600') center/cover fixed; */
    padding: 70px 0;
}

.warehdrs-page-ss .counter-box {
    text-align: center;
    padding: 20px;
}

.warehdrs-page-ss .counter-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.warehdrs-page-ss .counter-text {
    font-size: 1.1rem;
    color: #000;
}

/* CTA Section */
.warehdrs-page-ss .cta-section {
    background-color: var(--primary);
    padding: 80px 0;
    color: white;
}

.warehdrs-page-ss .cta-btn {
    background-color: white;
    color: var(--primary);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
}

.warehdrs-page-ss .cta-btn:hover {
    background-color: var(--dark);
    color: white;
    transform: translateY(-5px);
}

.warehdrs-page-ss .section-title {
    position: relative;
    margin-bottom: 50px;
    padding-bottom: 15px;
}

.warehdrs-page-ss .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background-color: var(--primary);
}

.warehdrs-page-ss .section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Keyword optimization effect */
.warehdrs-page-ss .keyword-highlight {
    color: var(--primary);
    font-weight: 600;
}