/* Transport Services Section Styling - Admission Card Style */

.transport-services-section {
    background-image: url('../images/transportbackground.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

/* Dark overlay on background */
.transport-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.transport-services-section .container {
    position: relative;
    z-index: 2;
}

.transport-services-section .section-title {
    text-align: center;
    margin-bottom: 60px;
}

.transport-services-section .section-title h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.transport-services-section .section-title p {
    color: rgba(255,255,255,0.95);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Transport Features */
.transport-features {
    margin-bottom: 60px;
}

/* EXACT ADMISSION CARD STYLE */
.transport-feature-card {
    background: rgba(31, 41, 55, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 40px 35px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.transport-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    background: rgba(31, 41, 55, 0.85);
}

.transport-feature-card .feature-icon {
    font-size: 56px;
    margin-bottom: 25px;
    display: block;
}

.transport-feature-card h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transport-feature-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Teal button like admission card */
.btn-transport {
    display: inline-block;
    background: #78D1C5;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-transport:hover {
    background: #5ab8ad;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(120, 209, 197, 0.4);
    color: white;
    text-decoration: none;
}

/* Bus Gallery */
.bus-gallery {
    margin-bottom: 50px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle h4 {
    color: white;
    font-size: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #78D1C5;
    box-shadow: 0 2px 8px rgba(120, 209, 197, 0.4);
}

.bus-image-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    border: 2px solid rgba(120, 209, 197, 0.3);
}

.bus-image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border-color: rgba(120, 209, 197, 0.8);
}

.bus-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.bus-caption {
    padding: 20px;
    text-align: center;
    background: white;
}

.bus-caption p {
    color: #555;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
}

/* Transport Contact */
.transport-contact {
    margin-top: 40px;
}

.contact-box {
    background: linear-gradient(135deg, #78D1C5 0%, #0097A7 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.contact-box h5 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-box p {
    color: white;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box a {
    color: white;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.contact-box a:hover {
    color: #1e3a8a;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
    .transport-services-section {
        padding: 80px 0;
        background-attachment: scroll;
    }
    
    .transport-services-section .section-title h2 {
        font-size: 2rem;
    }
    
    .section-subtitle h4 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .transport-services-section {
        padding: 60px 0;
        background-attachment: scroll;
    }
    
    .transport-services-section .section-title h2 {
        font-size: 1.8rem;
    }
    
    .transport-services-section .section-title p {
        font-size: 1rem;
    }
    
    .transport-feature-card {
        padding: 30px 25px;
    }
    
    .transport-feature-card h3 {
        font-size: 1.3rem;
    }
    
    .bus-img {
        height: 200px;
    }
    
    .contact-box {
        padding: 30px 20px;
    }
    
    .contact-box h5 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .transport-services-section {
        padding: 50px 0;
    }
    
    .transport-services-section .section-title h2 {
        font-size: 1.5rem;
    }
    
    .transport-services-section .section-title p {
        font-size: 0.95rem;
    }
    
    .transport-feature-card {
        padding: 25px 20px;
    }
    
    .transport-feature-card .feature-icon {
        font-size: 48px;
    }
    
    .transport-feature-card h3 {
        font-size: 1.2rem;
    }
    
    .btn-transport {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .section-subtitle h4 {
        font-size: 20px;
    }
    
    .bus-img {
        height: 180px;
    }
}
