/* Global Layout Fixes */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    /* ahmad */
    /* overflow-x: hidden; */
    /* ahmad */
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Custom minimal styles */
.hero .card-search .form-control:focus {
    box-shadow: none
}

.navbar .nav-link {
    font-weight: 500
}

.feature-card {
    border: 1px solid rgba(0, 0, 0, .05)
}

.card-search {
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .1);
    overflow: hidden
}

.card-search .segment {
    padding: .6rem 1.25rem
}

.card-search .title {
    font-weight: 700;
    font-size: 1.25rem;
    color: #2b2f33
}

.card-search .subtitle {
    color: #6c757d;
    font-size: .9rem
}

.search-input-field {
    border: 0;
    width: 100%;
    background: transparent;
    outline: 0;
    color: #2b2f33;
    font-size: .95rem
}

.search-input-field::placeholder {
    color: #6c757d;
    opacity: 1
}

/* Carousel Styles */
.carousel-container {
    overflow: visible;
    margin: 2rem 0;
    padding: 0 2rem;
}

.carousel-wrapper {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: relative;
}

.carousel-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.carousel-slide-left {
    left: 0;
    width: 35%;
    opacity: 0.7;
    z-index: 1;
    transform: translateX(-15%);
}

.carousel-slide-center {
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    opacity: 1;
    z-index: 3;
}

.carousel-slide-right {
    right: 0;
    width: 35%;
    opacity: 0.7;
    z-index: 1;
    transform: translateX(15%);
}

.carousel-slide-hidden {
    opacity: 0;
    z-index: 0;
    pointer-events: none;
}

.carousel-card {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide-center .carousel-card {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #f8f9fa;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
    left: -24px;
}

.carousel-arrow-right {
    right: -24px;
}

.carousel-arrow i {
    font-size: 20px;
    color: #333;
}

/* Service Cards Styles */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0 !important;
    background: #ffffff;
    border-radius: 15px !important;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1) !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.service-card:hover h4,
.service-card:hover h6,
.service-card:hover p {
    color: white !important;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.service-icon img {
    max-height: 100px !important;
    width: auto;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h4 {
    color: #2c3e50;
    font-size: 1.4rem;
    transition: color 0.3s ease;
}

.service-card h6 {
    color: #3498db;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.service-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
    transition: color 0.3s ease;
}

/* Footer Styles */
.footer-section {
    background-color: #f8f9fa !important;
    border-top: 1px solid #e9ecef;
}

.footer-title {
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-subtitle {
    color: #6c757d;
    font-weight: 500;
    font-size: 1rem;
}

.contact-info p {
    color: #6c757d;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: #2c3e50;
}

.footer-links a {
    color: #6c757d !important;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #0b63c9 !important;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0b63c9;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #094a8a;
    color: white;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 18px;
}

.app-link img {
    transition: transform 0.3s ease;
}

.app-link:hover img {
    transform: scale(1.05);
}

/* Business Partners Styles */
.partner-logo {
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
    border: 1px solid #f0f0f0;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #0b63c9;
}

.partner-logo img {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
}

/* Why Choose Us Styles */
.why-choose-card {
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0 !important;
    background: #ffffff;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #0b63c9;
}

.why-choose-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 80px;
}

.why-choose-card h4 {
    color: #2c3e50;
    font-size: 1.3rem;
    line-height: 1.3;
}

.why-choose-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6c757d;
}

.card-search .divider {
    width: 1px;
    height: 56px;
    background: rgba(0, 0, 0, .12)
}

.icon-circle {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12)
}

.icon-circle i {
    font-size: 20px
}

/* Floating WhatsApp Button - Global */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
    transition: all .3s ease;
    animation: pulse 2s infinite;
    border: 3px solid #fff
}

.whatsapp-button:hover {
    background-color: #128C7E;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .6)
}

.whatsapp-button i {
    font-size: 36px
}
/* ahmad */
.card-services{
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15) !important;
    margin: 10px 18px !important;
}

/* Right Arrow */
#chooseCargoSlider {
    padding: 0px 7px;
}
#chooseCargoSlider .slick-next {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 10;
    right: -15px;

}
#chooseItemSlider .slick-next {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 10;
    right: -18px;

}
/* 👇 Right Arrow Icon */
#chooseCargoSlider .slick-next::before  , #chooseItemSlider .slick-next::before {
    content: "\f105"; /* Font Awesome: chevron-right */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* solid style */
    font-size: 15px;
    color: #000000;
}

/* Left Arrow */
#chooseCargoSlider .slick-prev{
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 10;
    left: -6px;
}
#chooseItemSlider .slick-prev {
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.3s ease;
    z-index: 10;
    left: -18px;
}

/* 👇 Left Arrow Icon */
#chooseCargoSlider .slick-prev::before , #chooseItemSlider .slick-prev::before {
    content: "\f104"; /* Font Awesome: chevron-left */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* solid style */
     font-size: 15px;
    color: #000000;
}
#language-menu ul li{
    margin: 5px 10px !important;
}
main > section:first-child {
  margin-top: 65px;
}
/* ahmad */
/* haroon */
.CarouselMainContainer{
    width: 100%;
    max-width: 1200px;
    padding: 0px 20px;
    margin: auto;
}
#topnav .container .menu-extras .menu-item button{
    border: none !important;
    display: flex;
    justify-content: center;
    align-items: end;
   transition: transform 0.5s
ease, -webkit-transform 0.5s
ease;
}
    #topnav .container .menu-extras .menu-item button .lines span{
        margin: 5px 0 !important;
    }
    #topnav .container .menu-extras .menu-item button:hover{
        background: transparent !important;
    }
 #topnav .container .navbar-toggle.active .lines span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    #topnav .container .navbar-toggle.active .lines span:nth-child(2) {
        opacity: 0;
    }
    #topnav .container .navbar-toggle.active .lines span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

/* haroon */

/* test */
    .slider-slide {
  overflow: hidden;
}

.slider-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

#chooseItemSlider .slick-list .slick-track .slick-slide, #chooseItemSlider .slick-list .slick-track .slick-slide .slider-prev, #chooseItemSlider .slick-list .slick-track .slick-slide .slider-image{
    height: unset !important;
}
#chooseItemSlider .slick-prev{

}
#chooseItemSlider .slick-next{

}

@keyframes pulse {
    0% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, .4)
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, .8)
    }

    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, .4)
    }
}

/* Global Responsive Utilities */
@media (max-width: 1200px) {
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-button {
        width: 70px;
        height: 70px;
    }

    .whatsapp-button i {
        font-size: 32px;
    }

    .row {
        margin-left: -0.75rem;
        margin-right: -0.75rem;
    }

    .row>* {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
      #navigation {
      display: none;
      flex-direction: column;
      width: 100%;
      background: white; /* optional */
    }
  }


@media (max-width: 768px) {
    .container {
        padding-left: 0.875rem;
        padding-right: 0.875rem;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-button {
        width: 60px;
        height: 60px;
    }

    .whatsapp-button i {
        font-size: 28px;
    }

    h1,
    .display-4 {
        font-size: 1.75rem !important;
    }

    h2,
    .display-6 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.35rem !important;
    }

    h4 {
        font-size: 1.25rem !important;
    }

    h5 {
        font-size: 1.15rem !important;
    }

    h6 {
        font-size: 1.05rem !important;
    }

    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }

    .btn {
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }

    .row {
        margin-left: -0.5rem;
        margin-right: -0.5rem;
    }

    .row>* {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    img {
        max-width: 100%;
        height: auto;
    }
    .CarouselMainContainer{
        padding:30px 20px !important;

    }

}

@media (max-width: 576px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .whatsapp-float {
        bottom: 12px;
        right: 12px;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        border-width: 2px;
    }

    .whatsapp-button i {
        font-size: 26px;
    }

    h1,
    .display-4 {
        font-size: 1.5rem !important;
    }

    h2,
    .display-6 {
        font-size: 1.35rem !important;
    }

    h3 {
        font-size: 1.25rem !important;
    }

    h4 {
        font-size: 1.15rem !important;
    }

    h5 {
        font-size: 1.05rem !important;
    }

    h6 {
        font-size: 1rem !important;
    }

    .lead {
        font-size: 1rem !important;
    }

    p {
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.6rem 0.875rem;
        font-size: 0.85rem;
    }

    .btn-sm {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
    }

    .card {
        border-radius: 12px;
    }

    .card-body {
        padding: 1rem;
    }

    .row {
        margin-left: -0.375rem;
        margin-right: -0.375rem;
    }

    .row>* {
        padding-left: 0.375rem;
        padding-right: 0.375rem;
    }
}

@media (max-width: 400px) {

    h1,
    .display-4 {
        font-size: 1.35rem;
    }

    h2,
    .display-6 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    h4 {
        font-size: 1.05rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
    }

    .whatsapp-button i {
        font-size: 24px;
    }
}

/* Tablet Landscape Optimizations */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }

}

/* Responsive Images */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Responsive Tables */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 0.875rem;
    }

    .table th,
    .table td {
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
    }

}

@media (max-width: 576px) {

    .table th,
    .table td {
        padding: 0.5rem 0.35rem;
        font-size: 0.8rem;
    }
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    .py-4 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }

    .mb-4 {
        margin-bottom: 1.5rem !important;
    }
}

@media (max-width: 576px) {
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .py-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .mb-5 {
        margin-bottom: 1.5rem !important;
    }

    .mb-4 {
        margin-bottom: 1rem !important;
    }
#chooseItemSlider .slick-prev {
    left: 22px;
}
#chooseItemSlider .slick-next {
    right: 22px;
}
}