/* Hero Section Styles */
.hero-bg {
    background-image: url('../img/hero/h1_hero.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-subtitle {
    color: #f15f22;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 70px;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
    color: #fff;
}

.hero-text {
    color: #e0e0e0;
    font-size: 18px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.text-theme {
    color: #f15f22;
}

.btn-primary {
    background: #f15f22 !important;
    border-color: #f15f22 !important;
    padding: 25px 45px;
    font-weight: 600;
}

.btn-outline-white {
    padding: 23px 45px;
    font-weight: 600;
    border: 2px solid #fff;
    background: transparent;
    color: #fff !important;
}

.btn-outline-white:hover {
    background: #fff;
    color: #f15f22 !important;
}

.trust-item i {
    color: #f15f22;
    font-size: 24px;
    margin-right: 12px;
}

.trust-item span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.track-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.track-card h3 {
    color: #2c234d;
    font-weight: 700;
    margin-bottom: 10px;
}

.track-card p {
    color: #616875;
    font-size: 14px;
    margin-bottom: 25px;
}

.track-card .form-control {
    height: 60px;
    border-radius: 6px;
    border: 1px solid #ddd;
}

.track-card .quick-services a {
    color: #2c234d;
    font-weight: 600;
    font-size: 13px;
    transition: color 0.3s;
}

.track-card .quick-services a:hover {
    color: #f15f22;
}

/* About Page Styles (keep existing or merge) */
.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #f15f22;
    color: #fff;
    padding: 25px 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(241, 95, 34, 0.3);
    z-index: 2;
}

.experience-badge span {
    font-size: 40px;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge p {
    margin: 0;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.single-info-item {
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.single-info-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1) !important;
}

.single-about-info h5 i {
    font-size: 1.2rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #2c234d;
}

.about-caption h2 {
    font-size: 45px;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 45px;
    }

    .hero__caption {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .experience-badge {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 20px;
        display: inline-block;
    }

    .about-caption h2 {
        font-size: 32px;
    }
}

/* Partner Logos Section */
.partner-area {
    padding: 50px 0;
    background: #fdfdfd;
    border-bottom: 1px solid #eee;
}

.partner-title {
    margin-bottom: 0;
    color: #2c234d;
    font-weight: 700;
    opacity: 0.7;
}

.partner-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0.6;
}

.partner-logo {
    margin: 15px;
    transition: opacity 0.3s;
}

.partner-logo:hover {
    opacity: 1;
}

.partner-dhl {
    height: 30px;
}

.partner-fedex {
    height: 30px;
}

.partner-ups {
    height: 40px;
}

.partner-aramex {
    height: 25px;
}

.partner-dpd {
    height: 30px;
}

@media (max-width: 991px) {
    .partner-title {
        text-align: center;
        margin-bottom: 20px;
    }

    .partner-wrapper {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-btns .btn {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .trust-signals {
        justify-content: center;
    }

    .hero__caption {
        text-align: center;
    }
}