:root {
    --brand: #0160c0;
    --sub: #ffd700;
    --body: #f74b00;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--body) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--brand) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}
    :root {
    --body: #f74b00;
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

/* Navbar wrapper */
.nav-wrapper {
    background: #ffffff;
    box-shadow: var(--shadow);
    padding: 14px 40px;
}

/* Brand */
.brand-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--body);
}

/* Force body color */
.nav-wrapper a,
.nav-wrapper .nav-link,
.nav-wrapper .dropdown-item {
    color: var(--body) !important;
}

/* Nav links */
.navbar-nav .nav-link {
    font-weight: 500;
    margin-left: 20px;
}

/* Dropdown */
.premium-dropdown {
    border: none;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 8px;
}

.dropdown-item {
    padding: 10px 14px;
    border-radius: 6px;
}

.dropdown-item:hover {
    background: rgba(247, 75, 0, 0.1);
}

/* Call Now button */
.call-now-btn {
    border: 2px solid var(--body);
    padding: 8px 22px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.call-now-btn:hover {
    background: var(--body);
    color: #ffffff !important;
}

/* Mobile view */
@media (max-width: 991px) {

    .nav-wrapper {
        padding: 12px 20px;
    }

    .navbar-collapse {
        margin-top: 15px;
        background: #ffffff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: var(--shadow);
    }
    /* Bootstrap Icon Toggler */
.navbar-toggler {
    border: 2px solid var(--body);
    padding: 6px 10px;
}

.navbar-toggler i {
    font-size: 1.6rem;
    color: var(--body);
}


    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 12px 0;
    }

    .call-now-btn {
        width: 100%;
        text-align: center !important;
        margin-top: 15px;
    }
}
@media (max-width: 768px) {
    .call-now-btn {
        display: none;
    }
}
/*** Carousel Hero Header Start ***/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f3f4f6;
    min-height: 100vh;
}

.slider-container {
    position: relative;
    width: 100%;
}

.slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: all 0.7s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #ffffff;
    padding: 32px;
    text-align: center;
}

.slide-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 16px;
    color: #ffffff;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-in-out;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-description {
    font-size: 1.25rem;
    color: #ffffff;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease-in-out 0.15s;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    padding: 12px;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.nav-button:hover {
    background-color: white;
    transform: translateY(-50%) scale(1.1);
}

.nav-button svg {
    width: 24px;
    height: 24px;
    display: block;
}

.nav-button.prev {
    left: 16px;
}

.nav-button.next {
    right: 16px;
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    padding: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #9ca3af;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: #6b7280;
}

.dot.active {
    width: 32px;
    background-color: #9333ea;
}

@media (max-width: 768px) {
    .slider {
        height: 400px;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-description {
        font-size: 1rem;
    }
    
    .nav-button {
        padding: 8px;
    }
    
    .nav-button svg {
        width: 20px;
        height: 20px;
    }
}
/*** Carousel Hero Header End ***/

.logo-design {
    display: flex;
    align-items: center;
    color: #f74b00;
}

.logo-design .logo-img img {
    height: 70px !important;
    max-width: max-content;
}

.logo-design .logo-text {
    margin-left: 10px;
    font-size: 20px;
    font-family: "Lato", sans-serif;
}

@media (max-width: 768px) {
    .logo-img img {
        max-height: 60px;
        /* adjust size */
        width: auto;
    }

    .logo-text {
        font-size: 15px !important;
    }
}

.navbar-toggler .fa-bars {
    font-size: 18px;
    /* change to your preferred size */
}


.section-title-overview {
    font-size: 1.5rem !important;
    font-family: "Lato", sans-serif;
    background: linear-gradient(90deg, #ffa27a, #fa7f4b, #e24b0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.gradient-text-1 {
    background: linear-gradient(90deg, #034383, #277ed4, #359aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;


}

.gradient-text-2 {
    background: linear-gradient(90deg, #e24b0a, #fa7f4b, #ffa27a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fs-5 {
    font-size: 16px !important;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
}


/*******************************/
/******* Experience CSS ********/
/*******************************/
.experience .section-title {
    font-size: 2rem;
    font-family: "Lato", sans-serif;
    color: var(--brand);
    font-weight: 700;
    padding: 20px 20px !important;

}

.experience {
    position: relative;
    padding: 0px 0 15px 0;
    overflow-x: hidden;
}

.experience .timeline {
    position: relative;
    width: 100%;
}

.experience .timeline::after {
    content: '';
    position: absolute;
    width: 2px;
    background: var(--brand);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -1px;
}

.experience .timeline .timeline-item {
    position: relative;
    background: inherit;
    width: 50%;
    margin-bottom: 30px;
}

.experience .timeline .timeline-item.left {
    left: 0;
    padding-right: 30px;
}

.experience .timeline .timeline-item.right {
    left: 50%;
    padding-left: 30px;
}

.experience .timeline .timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 48px;
    right: -8px;
    background: #ffffff;
    border: 2px solid var(--body);
    border-radius: 16px;
    z-index: 1;
}

.experience .timeline .timeline-item.right::after {
    left: -8px;
}

.experience .timeline .timeline-item::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    top: 46px;
    right: 10px;
    z-index: 1;
    border: 10px solid;
    border-color: transparent transparent transparent var(--brand);
}

.experience .timeline .timeline-item.right::before {
    left: 10px;
    border-color: transparent var(--brand) transparent transparent;
}

.experience .timeline .timeline-date {
    position: absolute;
    width: 100%;
    top: 44px;
    font-size: 16px;
    font-weight: 600;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
}

.experience .timeline .timeline-item.left .timeline-date {
    text-align: left;
    left: calc(100% + 55px);
}

.experience .timeline .timeline-item.right .timeline-date {
    text-align: right;
    right: calc(100% + 55px);
}

.experience .timeline .timeline-text {
    padding: 30px;
    background: #ffffff;
    position: relative;
    border-right: 5px solid var(--brand);
    box-shadow: 0 0 60px rgba(0, 0, 0, .08);
}

.experience .timeline .timeline-item.right .timeline-text {
    border-right: none;
    border-left: 5px solid var(--brand);
}

.experience .timeline .timeline-text h2 {
    margin: 0 0 5px 0;
    font-size: 22px;
    font-weight: 600;
}

.experience .timeline .timeline-text h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
}

.experience .timeline .timeline-text p {
    margin: 0;
    font-size: 16px;
}

@media (max-width: 767.98px) {
    .experience .timeline::after {
        left: 8px;
    }

    .experience .timeline .timeline-item {
        width: 100%;
        padding-left: 38px;
    }

    .experience .timeline .timeline-item.left {
        padding-right: 0;
    }

    .experience .timeline .timeline-item.right {
        left: 0%;
        padding-left: 38px;
    }

    .experience .timeline .timeline-item.left::after,
    .experience .timeline .timeline-item.right::after {
        color: var(--body);
        left: 0;
    }

    .experience .timeline .timeline-item.left::before,
    .experience .timeline .timeline-item.right::before {
        left: 18px;
        border-color: transparent var(--body) transparent transparent;
    }

    .experience .timeline .timeline-item.left .timeline-date,
    .experience .timeline .timeline-item.right .timeline-date {
        position: relative;
        top: 0;
        right: auto;
        left: 0;
        text-align: left;
        margin-bottom: 10px;
    }

    .experience .timeline .timeline-item.left .timeline-text,
    .experience .timeline .timeline-item.right .timeline-text {
        border-right: none;
        border-left: 3px solid var(--body);
    }
}

.timeline-date i {
    color: var(--body) !important;
}


.top-services-section .subheading {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.top-services-section .section-title {
    font-size: 2.2rem;
    color: var(--brand);
    font-family: "Lato", sans-serif;
}

.top-services-section .section-desc {
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* DP World card style */

.dp-service-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s ease-in-out;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.dp-img-box {
    height: 230px;
    overflow: hidden;
}

.dp-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 0.5s ease;
}

.dp-service-card:hover .dp-img-box img {
    transform: scale(1);
}

.dp-content {
    padding: 20px;
    position: relative;
}

.dp-title {
    font-size: 15px;
    font-weight: 700;
    font-family: "Lato", sans-serif;
    margin-bottom: 10px;
}

.dp-desc {
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    line-height: 1.5;
    color: #666;
    transition: all 0.5s ease-in-out;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0;
}

.dp-service-card:hover .dp-desc {
    font-family: "Poppins", sans-serif;
    max-height: 120px;
    opacity: 1;
    padding-top: 12px;
}

.dp-explore {
    margin-top: 12px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    color: var(--brand);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}

.dp-explore:hover {
    border-bottom: 2px solid var(--sub);
}

.dp-arrow {
    color: var(--sub);
    margin-left: 6px;
    transition: transform 0.3s ease;
}

.dp-explore:hover .dp-arrow {
    color: var(--sub);
    transform: translateX(4px);
}

.cta-section {
    background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
        url(../img/image-4/agents-1.jpg);
    background-size: cover;
    /* Ensures the image fully covers the section */
    background-position: center;
    /* Keeps image centered */
    background-repeat: no-repeat;
    /* Prevents tiling */
    background-attachment: fixed;
    /* Parallax effect */
    padding: 120px 0;
}


/* CTA Heading */
.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Lato", sans-serif;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Subtext */
.cta-section p {
    font-size: 1.1rem;
    font-weight: 300;
    color: #eaeaea;
    max-width: 700px;
    margin: auto;
    margin-bottom: 25px;
}

/* CTA Buttons */
.cta-section .btn-cta {
    padding: 12px 32px;
    background: var(--brand);
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: 0.3s ease;
    text-decoration: none;
}

/* Hover effect */
.cta-section .btn-cta:hover {
    background: var(--body);
    transform: translateY(-3px);
}


.why-choose-us .choose-box {
    /* border: 1px solid var(--sub); */
    border-left: 2px solid hsla(51, 100%, 66%, 0.664);
    padding: 25px;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

/* .why-choose-us .choose-box:hover {
    border: 1px solid var(--sub);
    border: 1px solid var(--body); 
    border-left: 3px solid var(--body); 
    border-right: 3px solid var(--body); 
    border-color: var(--body);  
    transform: translateY(-5px);
} */

.why-choose-us .section-title {
    color: var(--brand);
    font-family: "Lato", sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}


/* Uniform icon/image size */
.why-choose-us .icon-wrapper img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Headings */
.why-choose-us h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--brand);
}

.why-choose-us .choose-box:hover h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}


/* Text */
.why-choose-us p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.contact-section .section-title {
    font-size: 2rem;
    font-family: "Lato", sans-serif;
    color: var(--brand);
    font-weight: 700;
}

.contact-sub {
    font-size: 1.1rem;
    padding: 20px !important;
    color: #666;
}


.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    /* margin-top: calc(-1 * var(--bs-gutter-y)); */
    margin-top: 30px !important;
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    row-gap: 50px !important;
}

.contact-box {
    background: #edf6ff;
    border: 1px solid var(--brand);
    border-radius: 30px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    padding: 25px 20px 25px;
    /* Extra top space for floating icon */
    text-align: center;
    height: 100%;
    position: relative;
    overflow: visible;
    /* Allow image to float outside */
    transition: 0.3s ease;
}

.contact-box:hover {
    border: 1px solid var(--sub);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.contact-box-middle {
    background: #fff;
    border: 1px solid var(--sub);
    border-radius: 30px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    padding: 25px 20px 25px;
    /* Extra top space for floating icon */
    text-align: center;
    height: 100%;
    position: relative;
    overflow: visible;
    /* Allow image to float outside */
    transition: 0.3s ease;
}

.contact-box-middle:hover {
    border: 1px solid var(--brand);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.contact-box-middle h4 {
    color: #0b2775;
}

.contact-box-middle p {
    color: #000;
}

.contact-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    position: absolute;
    top: -35px;
    /* THIS makes the icon float above the box */
    left: 50%;
    transform: translateX(-50%);
}

.contact-box h4 {
    margin-top: 40px;
    /* Push text down after icon */
}

.contact-box a {
    color: var(--brand) !important;
}

.contact-box:hover a {
    color: #cfb102 !important;
}


.map-wrapper {
    border-radius: 12px;
    overflow: hidden;

}

.faq-section {
    background: #ffffff;
}

.faq-title {
    font-size: 2rem;
    font-family: "Lato", sans-serif;
    text-align: center;
    color: var(--brand) !important;
    font-weight: 700;
    color: #000;
}

.accordion-item {
    border: none;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.accordion-button {
    font-weight: 600;
    font-size: 16px;
    padding: 15px 18px;
}

.accordion-button:not(.collapsed) {
    background-color: #f5f5f5;
    color: var(--brand);
    box-shadow: none;
}

.accordion-body {
    background: #fff;
    color: #555;
    padding: 15px 18px;
    font-size: 15px;
    line-height: 1.6;
}

/* Testimonial Items */
.hec-testimonial-carousel .owl-item .testimonial-item {
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    height: 100%;
    border: 1px solid transparent;
    transform: scale(.85);
    transition: .5s;
    background: #fff;
}

/* Center zoom effect */
.hec-testimonial-carousel .owl-item.center .testimonial-item {
    box-shadow: none;
    border-color: var(--brand);
    transform: scale(1);
}

.text-brand {
    font-size: 2rem !important;
    padding-bottom: 20px;
    /* font-family: "Lato", sans-serif; */
    font-weight: 700;

}


/* Uniform text height */
.review-text {
    min-height: 105px;
    /* ensures equal box height */
    display: block;
}

/* Carousel images (if added later) */
.hec-testimonial-carousel .owl-item .testimonial-item img {
    width: 50px;
    height: 50px;
}

.fa-quote-left:before {
    color: var(--sub);
}

/* Navigation */
.hec-testimonial-carousel .owl-nav {
    margin-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
}

.hec-testimonial-carousel .owl-nav .owl-prev,
.hec-testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand);
    border: 1px solid var(--brand);
    border-radius: 45px;
    transition: .5s;
}

.hec-testimonial-carousel .owl-nav .owl-prev:hover,
.hec-testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--sub);
    background: var(--brand);
}


.payment-section h2 {
    font-family: 'Lato', sans-serif;
    color: var(--brand);
    font-weight: 700;
}

.payment-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: 0.3s;
}

.payment-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.payment-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}


/* ======== COURIER PAGE HERO ======== */
.courier-hero {
    position: relative;
    padding: 3rem 2rem;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 350px !important;
}

.courier-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.courier-container {
    position: relative;
    z-index: 2;
    max-width: 1350px;
    margin: auto;
}

.courier-header {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.courier-title {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    font-weight: 600;
    color: #fff;
}

.courier-highlight {
    font-family: "Playfair Display", serif;
    font-style: italic;
    color: #ff8c28;
}

.courier-side {
    max-width: 420px;
}

.courier-text {
    color: #fff;
    line-height: 1.6;
}

.courier-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 500;

}

.courier-btn:hover {
    padding-left: 6px;
    color: var(--brand);
    transition: .3s;
}

/* ===================== MOBILE FIX FOR BANNER ===================== */
@media (max-width: 768px) {

    /* stack heading + text + button vertically */
    .courier-header {
        flex-direction: column;
        align-items: center;
        /* center horizontally */
        text-align: center;
        /* center text */
        gap: 1.5rem;
    }

    .courier-hero {
        position: relative;
        padding: 3rem 2rem;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        height: 500px !important;

    }

    .courier-heading,
    .courier-side {
        max-width: 100%;
    }

    /* heading size adjust */
    .courier-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    /* text size adjust */
    .courier-text {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* center button */
    .courier-btn {
        display: inline-block;
        margin-top: 12px;
    }
}


/* ======== ABOUT IMAGE ======== */
.courier-image {
    height: 470px !important;
    object-fit: cover;
    border-radius: 12px !important;
}

/* ======== ABOUT ICON BOXES ======== */
.courier-icon-box {
    background-color: rgb(32, 32, 32);
    border-radius: 12px;
}

.courier-icon-box:hover {
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);

}

.d-inline-block {
    font-family: "Poppins", sans-serif;
}

.display-4 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    color: var(--body);
}

@media (max-width: 768px) {

    /* Fix the image column to behave normally */
    .courier-image {
        height: 250px !important;
        position: relative !important;
    }

    .position-relative.h-100 {
        height: auto !important;
        position: relative !important;
    }

    .position-relative.h-100 img {
        position: relative !important;
        height: 350px !important;
    }

    /* Fix section spacing */
    #courier-services .col-lg-7 {
        margin-top: 0px !important;
    }

    .mb-5 {
        margin-bottom: 0px !important;
    }

    /* Center align heading block */
    .mb-4 {
        text-align: center;
        width: 100%;
    }

    .mb-4 h1 {
        font-size: 28px;
        color: var(--body);
        line-height: 1.3;
    }

    .mb-4 p {
        text-align: center;
    }

    /* Icon boxes responsive */
    .courier-icon-box {
        padding: 20px 10px;
    }
}

.container-fluid {
    padding-bottom: 0px !important;
}

/* ========= ALTERNATING SERVICE SECTIONS ========= */
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    row-gap: 20px;
}

.courier-services-alt {
    padding-top: 0px !important;
}

.service-alt-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    /* border-radius: 12px; */
    border-left: 10px solid var(--body) !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.13);
}

.service-alt-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--brand);
    margin-bottom: 12px;
}

.service-alt-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .service-alt-img {
        height: 260px;
    }
}

.service-icon-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px 0;
}

.service-icon-list li {
    font-size: 15px;
    color: #444;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-icon-list i {
    font-size: 18px;
    color: var(--brand);
}

:root {
  --brand: #0160c0;   /* Primary Blue */
  --sub: #ffd700;     /* Accent Gold */
  --body: #f74b00;    /* Highlight Orange */
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

/* Section Background */
.bg-100 {
  background: #f8f9fb;
  padding: 80px 0;
}

/* Section Title */
.bg-100 h3 {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: 1px;
}

.bg-100 .short {
  height: 4px;
  background: var(--sub);
  border: none;
  margin: 16px auto 0;
  border-radius: 10px;
}

/* Image Holder */
.bg-holder {
  background-size: cover;
  background-position: center;
  height: 100%;
  box-shadow: var(--shadow);
}

/* Service Content Box */
.bg-white {
  box-shadow: var(--shadow);
  position: relative;
  transition: all 0.4s ease;
}

.bg-white:hover {
  transform: translateY(-6px);
}

/* Caret Arrow */
.elixir-caret {
  position: absolute;
  top: 50%;
  left: -15px;
  width: 30px;
  height: 30px;
  background: var(--brand);
  transform: rotate(45deg) translateY(-50%);
}

/* Service Title */
.bg-white h5 {
  color: var(--brand);
  font-size: 22px;
  font-weight: 700;
  position: relative;
}

.bg-white h5::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--sub);
  margin-top: 10px;
  border-radius: 4px;
}

/* Service Description */
.bg-white p {
  color: #555;
  line-height: 1.7;
  font-size: 15px;
}

/* Learn More Link */
.bg-white a {
  color: var(--body);
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.bg-white a:hover {
  color: var(--brand);
  letter-spacing: 0.5px;
}

.bg-white a span {
  color: var(--sub);
  font-size: 20px;
}

/* Rounded Corners Enhancement */
.rounded-ts-lg,
.rounded-te-lg,
.rounded-bs-lg,
.rounded-be-lg {
  border-radius: 18px;
}

/* Responsive Fix */
@media (max-width: 991px) {
  .elixir-caret {
    display: none;
  }

  .bg-white {
    border-radius: 18px;
    margin-top: 15px;
  }
}
:root {
    --body: #f74b00;
}

.slider-container {
    width: 100%;
    height: 100vh;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.slide-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.slide-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide.active .slide-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Slide Button Styles */
.slide-button {
    background-color: var(--body);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(247, 75, 0, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.slide.active .slide-button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.slide-button:hover {
    background-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(247, 75, 0, 0.6);
    transition-delay: 0s;
}

.slide-button:active {
    transform: translateY(-1px);
}

/* Navigation Buttons */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(247, 75, 0, 0.8);
    border: 2px solid var(--body);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.nav-button:hover {
    background: var(--body);
    transform: translateY(-50%) scale(1.1);
}

.nav-button.prev {
    left: 20px;
}

.nav-button.next {
    right: 20px;
}

/* Slide Indicators */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.indicator.active {
    background-color: var(--body);
    width: 30px;
    border-radius: 6px;
    border-color: var(--body);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .slider-container {
        height: 70vh;
        min-height: 500px;
    }

    .slide-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .slide-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    .slide-content {
        padding: 15px;
    }

    .slide-button {
        padding: 12px 30px;
        font-size: 16px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .nav-button.prev {
        left: 10px;
    }

    .nav-button.next {
        right: 10px;
    }

    .slider-indicators {
        bottom: 20px;
        gap: 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    .indicator.active {
        width: 24px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 60vh;
        min-height: 400px;
    }

    .slide-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .slide-content {
        padding: 10px;
    }

    .slide-button {
        padding: 10px 25px;
        font-size: 14px;
    }

    .nav-button {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .nav-button.prev {
        left: 5px;
    }

    .nav-button.next {
        right: 5px;
    }

    .slider-indicators {
        bottom: 15px;
        gap: 8px;
    }

    .indicator {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }

    .indicator.active {
        width: 20px;
    }
}
