/* ======== services ============= */
.service-image{
    width: 90%;
    margin: 50px auto;

}
.pre-service .btn-pre-service{
    border: none;
    color: #fff;
}

/*  ========== pre service section ======== */
.service-cards{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.card{
    margin-bottom: 30px;
    /* margin-right: 30px; */
    /* margin-left: 50px; */
    border-radius: 15px;
    outline: none !important;
    border: none !important;
    padding: 0;
    text-align: start;
    cursor: pointer;
    transition: all .3s ease-in-out;
    /* background-color: black; */
   
}
 .card-img-top{
    height: 200px !important;
    object-fit: cover !important; 
    border-radius: 15px 15px 0 0; 
}
.card-body{
    background-color:#004A5B;
    color: #fff;
    border-bottom-left-radius: 13px;
    border-bottom-right-radius: 13px;

}
.card-body h5{
    margin-bottom: 10px;
    font-weight: 700;
}
.card-text{
    font-size: 15px;
}
.card:hover {
    transform: scale(1.05) !important;
    outline: none !important;
    border: none!important;
}
.brands-card h3{
    text-align: center;
}
.brands-card p{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
}
.brands-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 80px;
}
.brands-logo img{
    margin-top: 20px;
    width: 100px;
    height: 80px;
    background-color: pink;
}

/* ====== what-we-do section ========== */

.what-we-do-body{
    margin-bottom: 50px;
    background-color:#004A5B;
    padding: 20px;
    border-radius: 5px;
    
}
.what-we-do{
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #555;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}
.what-we-do p{
    color: #fff;
}
h1 {
    color: #fff;
    font-weight: 900;
}
h1 span {
    color:  #0097B2;
    font-weight: 700;
}
.button-container {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
button {
    padding: 10px 20px;
    border: none;
    background-color: #f1f1f1;
    cursor: pointer;
    transition: background-color 0.3s;
}
button.active {
    background-color: #0097B2;
    color: white;
}
#content {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
}
#content h2{
    color: #007A92;
    font-size: 25px;
    font-weight: 900;
}
#content ul li{
    color: #007A92;
}
/* =====build someething ======= */
.build-something{
    color: #555;
    text-align: center;
    padding: 50px;
}
.build-something h3{
    margin-top: 20px;
    margin-bottom: 20px;
    color: #007A92;
    font-size: 25px;
    font-weight: 900;
}
.btn{
    color: #007A92;
    border: 2px solid#007A92;
    
}
/* ========= media queries ========= */

@media screen and (max-width:1115px) {
    .service-cards{
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width:1015px) {
  .service-cards{
    display: flex;
    justify-content: center;
    align-items: center;
  }
 
}

@media screen and (max-width:935px) {
    .service-cards{
      text-align: center !important;
    }
    .service-cards .card{
        width: 80% !important;
        background-color: black;
    }
    .card-img-top {
        height: 150px !important;
    }
    .brands-logo{
        gap: 35px;
    }
}
@media (max-width: 730px) {
  
   button{
    padding: 8px 15px;
    font-size: 18px;
   }

}

@media (max-width: 580px) {
    button{
        padding: 6px 12px;
        font-size: 16px;
    }

}
@media (max-width: 480px) {
    .service-image{
        width: 100%;
        height: 100%;
        margin: 20px auto;
    }
    button{
        font-size: 10px;
    }
}