.fleet-box {
    padding: 100px 20px;
}

.fleet-box h1,
p {
    text-align: center;
}

.fleet-container {
    width: 100%;
    max-width: 1000px;
    margin: auto;
}


/* Header */
.fleet-header {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    color: #000;
    padding: 12px;
    font-weight: bold;
    border-radius: 6px 6px 0 0;
}


/* Single row wrapper */
.fleet-row-wrapper {
    margin-top: 5px;
}


.fleet-row-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #f3f3f3;
    padding: 12px;
    border-radius: 10px;
    transition: 0.25s;
}


.fleet-row-content:hover {
    background: #1176b6;
    transform: scale(1.01);
    cursor: pointer;
    color: whitesmoke;
}


/* Clients Section */

.clients-box {
    padding: 100px 20px;
}


.clients-container {
    width: 100%;
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}


/* Client Card */

.client-card {

    background: #f3f3f3;
    border-radius: 12px;
    padding: 25px;

    text-align: center;

    transition: 0.25s;
    border: 1px solid transparent;

}


.client-card:hover {

    background: #1176b6;
    transform: translateY(-8px);
    cursor: pointer;
    color: whitesmoke;

}


/* Logo Area */

.client-logo {

    height: 120px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #fff;

    border-radius: 10px;

    margin-bottom: 20px;

}


.client-logo img {

    max-width: 80%;
    max-height: 90px;

    object-fit: contain;

}


/* Client Name */

.client-name {

    font-size: 18px;
    font-weight: 600;

}

/* Clients Heading */

.clients-title {

    text-align: center;

    font-size: 36px;
    font-weight: 700;

    color: #1176b6;

    margin-bottom: 50px;

    position: relative;

}


/* Small underline effect */

.clients-title::after {

    content: "";

    width: 70px;
    height: 3px;

    background: #1176b6;

    display: block;

    margin: 15px auto 0;

}


/* Responsive */

@media(max-width:992px) {

    .clients-container {

        grid-template-columns: repeat(2, 1fr);

    }

}


@media(max-width:576px) {

    .clients-container {

        grid-template-columns: repeat(1, 1fr);

    }

}


.st-team-area {
    background: #f8f9fa;
}


.team-card {

    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

}


.team-card:hover {

    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}



.team-img {

    width: 100%;
    height: 280px;
    overflow: hidden;

}



.team-img img {

    width: 100%;
    height: 100%;
    object-fit: cover;

}



.team-content {

    padding: 25px 15px;

}



.team-content h3 {

    font-size: 22px;
    color: #111;
    margin-bottom: 8px;

}



.team-content h5 {

    color: #0056b3;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 15px;

}



.team-content p a {

    color: #555;
    font-size: 14px;
    text-decoration: none;

}



.team-content p a:hover {

    color: #0056b3;

}



@media(max-width:767px) {

    .team-img {
        height: 250px;
    }

}