/* Services Page Styles */
.page-title {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Service Cards - White Background */
.service-card {
    background: #ffffff !important;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-card .icon-box {
    width: 70px;
    height: 70px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-card:hover .icon-box {
    background: var(--bs-primary);
    color: #fff;
}

.service-card .icon-box i {
    font-size: 28px;
    color: var(--bs-primary);
    transition: all 0.3s ease;
}

.service-card:hover .icon-box i {
    color: #fff;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 20px 0;
    text-align: center;
    color: #333;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 20px;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.service-features li {
    margin-bottom: 10px;
    color: #6c757d;
}

.service-features li i {
    color: var(--bs-primary);
    margin-right: 10px;
}

/* Sea Freight Card with Background Image */
.service-card.with-bg-image {
    background-image: url('../images/img2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.service-card.with-bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.service-card.with-bg-image > * {
    position: relative;
    z-index: 2;
}

.service-card:hover.with-bg-image::before {
    background: rgba(255, 255, 255, 0.8);
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f8f9fa;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.feature-icon i {
    font-size: 24px;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #6c757d;
    margin: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(45deg, var(--bs-primary), #2196f3);
}

.cta h2 {
    font-weight: 600;
}

.btn-light {
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .page-title {
        padding: 60px 0;
    }
    
    .why-choose-us img {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .page-title h1 {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
} 