.div-tab-style{
    margin-bottom: auto;
}
@media only screen and (max-width: 600px){
    .div-tab-style{
        margin-top:0px;
    }
}
@media (min-width: 768px){
    .div-tab-style{
        margin-top:0px;
    }
}

.tabs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.tabs label {
    display: block;
    width: 33%;
    padding: 1rem 2rem;
    margin-left: 0.2rem;
    cursor: pointer;
    background: #007bff;
    color: #ffffff;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background 0.3s ease, transform 0.2s ease;
}

.tabs label:hover {
    background: #0056b3;
    transform: translateY(-3px);
}
.tabs .tab {
    -webkit-box-ordinal-group: 100;
    -webkit-order: 99;
    -ms-flex-order: 99;
    order: 99;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 1rem;
    background: #fafafa;
}

.tabs input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.tabs input[type="radio"]:checked+label {
    background: #004085;
    transform: translateY(0);
}

.tabs input[type="radio"]:checked+label+.tab {
    display: block;
}
.enquiry {
    background: #001f2e;
    display: block;
    white-space: nowrap;
    padding: 13px;
    box-sizing: border-box;
    color: white;
    transition: all 0.2s ease;
    font-family: Roboto, sans-serif;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 5px 6px 0 rgba(0, 0, 0, 0.2);
}
.enquiry:hover{
    color:orange;
    text-decoration:none;
}
table{
    font-size: 0.9rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
table img{
    height:100px;
    border-radius:50%;
}
@media (max-width: 45em) {

    .tabs .tab,
    .tabs label {
        -webkit-box-ordinal-group: NaN;
        -webkit-order: initial;
        -ms-flex-order: initial;
        order: initial;
    }

    .tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }
}