/* Transport Cards Styling */
.transport-section {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.transport-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px auto;
    max-width: 1200px;
}

.transport-card {
    width: 320px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.transport-card-image {
    height: 180px;
    background-color: #38b6e6;
    position: relative;
    overflow: hidden;
}

.transport-card-content {
    padding: 20px;
}

.transport-card-title {
    color: #38b6e6;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.transport-card-details {
    margin-bottom: 5px;
    font-size: 1rem;
    color: #555;
}

.transport-card-details span {
    font-weight: 600;
    color: #333;
}

/* Car styling */
.car-transport .transport-card-image {
    position: relative;
}

.car-transport .car-image {
    position: absolute;
    bottom: 0;
    left: 20px;
    height: 80%;
    width: auto;
}

/* Motorbike styling */
.motorbike-transport .motorbike-image {
    position: absolute;
    bottom: 0;
    left: 30px;
    height: 80%;
    width: auto;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .transport-card {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .transport-card {
        width: 100%;
        max-width: 320px;
    }
}
