.our-program__title-box{
    width: 280px;
}



.fleet-section{
    padding:60px 5%;
}

.fleet-container{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
}

/* LEFT SIDE TABS */
.fleet-left{
    width:30%;
}

.fleet-card{
    background:#fff;
    padding:22px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:22px;
    cursor:pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0,0,0,0.02);
}

.fleet-card img{
    width:90px;
}

.fleet-card h3{
    font-size:22px;
    font-weight: 700;
    margin-bottom:5px;
    color: #002147;
}

.fleet-card p{
    font-size:15px;
    color:#666;
    line-height:1.5;
    margin: 0;
}

.fleet-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.fleet-card.active{
    background:#008ed2;
    color:#fff;
    box-shadow: 0 15px 40px rgba(22, 213, 227, 0.35);
    border-color: transparent;
}

.fleet-card.active p{
    color:#fff;
}

/* RIGHT SIDE CONTENT */
.fleet-right{
    width:67%;
}

.tab-content .tab {
    display: none;
}

.tab-content .tab.active {
    display: block;
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.banner{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height: 610px; /* Reduced height for a more compact look */
}

.banner img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.2));
}

.hours-box{
    position:absolute;
    top:40px;
    right:40px;
    width:120px;
    height:120px;
    background:#008ed2;
    color:#fff;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    z-index:2;
}

.hours-box h2{
    font-size:45px;
    font-weight: 900;
    margin: 0;
    color: #fff;
}

.hours-box span{
    font-size:18px;
    text-transform: uppercase;
}

.banner-content{
    position:absolute;
    left:40px;
    bottom:40px;
    color:#fff;
    z-index:2;
    width: 90%;
}

.banner-content h1{
    font-size:42px;
    font-weight: 800;
    margin-bottom:15px;
    color: #fff;
}

.banner-content p{
    max-width:700px;
    font-size:18px;
    line-height:1.6;
    margin-bottom:30px;
    color: rgba(255,255,255,0.8);
}

.bottom-box{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 25px;
}

.feature{
    display:flex;
    gap:15px;
    align-items: center;
}

.feature i{
    width:60px;
    height:60px;
    background:#fff;
    color:#008ed2;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.feature h4{
    font-size:18px;
    font-weight: 700;
    margin-bottom:3px;
    color: #fff;
}

.feature span{
    color:rgba(255,255,255,0.7);
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:1200px){
    .fleet-left,
    .fleet-right{
        width:100%;
    }
    .banner {
        height: auto;
        min-height: 500px;
    }
}

@media(max-width:768px){
    .banner-content h1{
        font-size:28px;
    }
    .banner-content p{
        font-size:14px;
    }
    .fleet-card h3{
        font-size:18px;
    }
    .hours-box {
        width: 80px;
        height: 80px;
        top: 20px;
        right: 20px;
    }
    .hours-box h2 {
        font-size: 28px;
    }
}

/* ST 4000 Section Styles */
.st4000-section {
    background: #fff;
    margin-top: 200px;
}

.st4000-badge {
    display: inline-block;
    padding: 8px 20px;
    background: #f0f4f8;
    color: #007bff;
    border-radius: 30px;
    font-weight: bold;
    font-size: 14px;
    border: 1px solid #e1e8f0;
}

.st4000-title {
    font-size: 36px;
    font-weight: 800;
    color: #002147;
}

.st4000-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.st4000-right-title {
    font-size: 24px;
    font-weight: 700;
    color: #002147;
    line-height: 1.4;
    margin-top: 60px;
}

.component-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    margin-bottom: 10px;
    border: 1px solid #e1e8f0;
    align-items: stretch;
}

.component-number-bar {
    background: #007bff;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    flex-shrink: 0;
}

.component-card-body {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    flex-grow: 1;
}

.component-image-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #e1e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    background: #f8faff;
}

.component-image-circle img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.component-card-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 5px;
}

.component-card-text p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 5px;
}

.component-accuracy {
    font-size: 12px;
    color: #007bff;
    font-weight: 600;
}

.st4000-features-bar {
    display: flex;
    background: #f8faff;
    border-radius: 12px;
    padding: 25px;
    gap: 20px;
    border: 1px solid #e1e8f0;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    flex: 1;
    min-width: 200px;
}

.feature-item.large {
    flex: 2;
    border-right: 1px solid #e1e8f0;
    padding-right: 20px;
}

@media (max-width: 992px) {
    .feature-item.large {
        flex: 1;
        border-right: none;
        padding-right: 0;
    }
}

.feature-icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #002147;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}
