﻿@keyframes slideDown {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeScale {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* HEADER */

/* BRANDS */
.brands {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 40px 0 60px;
}

.brand-card {
    border: 1px solid #eee;
    border-radius: 14px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    transition: transform 0.3s, box-shadow 0.3s;
}

    .brand-card:nth-child(1) {
        animation-delay: .1s
    }

    .brand-card:nth-child(2) {
        animation-delay: .2s
    }

    .brand-card:nth-child(3) {
        animation-delay: .3s
    }

    .brand-card:nth-child(4) {
        animation-delay: .4s
    }

    .brand-card:nth-child(5) {
        animation-delay: .5s
    }

    .brand-card:nth-child(6) {
        animation-delay: .6s
    }

    .brand-card:nth-child(7) {
        animation-delay: .7s
    }

    .brand-card:nth-child(8) {
        animation-delay: .8s
    }

    .brand-card:nth-child(9) {
        animation-delay: .9s
    }

    .brand-card:nth-child(10) {
        animation-delay: 1s
    }

    .brand-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    }

    /*.brand-card img {
        max-width: 140px;
        filter: grayscale(100%);
        transform: scale(1);
        transition: filter 0.4s ease, transform 0.4s ease;
    }*/

    /* Hover Effect */
    /*.brand-card:hover img {
        filter: grayscale(0%);
        transform: scale(1.08);
    }*/


    .brand-card img {
        max-width: 140px;
        transform: scale(1);
        transition: transform 0.35s ease;
    }

    /* Minor zoom on hover */
    .brand-card:hover img {
        transform: scale(1.06);
    }

/* RESPONSIVE */




/*END LOGo*/







.service-page-sub-headear {
    font-size: 16px !important;
    color: coral !important;
    z-index: 2 !important;
    margin-left: calc(10% - 0px) !important;
    font-weight: bold !important;
    text-align: left !important;
}
.top-ul li {
    color: #fff !important;
}

ul li {
    list-style-type: none; /* Remove bullets */
    color: #000;
}



h2 {
    font-size: 22px !important;
}

h3 {
    font-size: 20px !important;
}

.city-list {
    color: #015896 !important;
    font-size: 24px !important;
}

.font-color-green {
    color: darkgreen !important;
}

.font-color-red {
    color: red !important;
}

.top-ul {
    margin: 0 0 0 2em !important;
}

.panel-custom > .panel-heading {
    background-color: #e5f1f9 !important;
    color: #515da4 !important;
    width: 100% !important;
}

.fa-hand-o-right-blue {
    color: #005da4 !important;
    padding-right: 10px !important;
}


.testimonial-slider1 {
    position: relative;
    width: 80%;
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    text-align: center;
    overflow: hidden;
}

.slide1 {
    display: none;
}

    .slide1.active {
        display: block;
    }

    .slide1 img {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        object-fit: cover !important;
        margin-bottom: 10px !important;
    }

    .slide1 h3 {
        font-size: 1.5em;
        margin: 10px 0;
    }

    .slide1 p {
        font-size: 1em !important;
        color: #333 !important;
        max-width: 90% !important;
        text-align: center !important;
    }

.prev1, .next1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    /*background-color: rgba(0, 0, 0, 0.5);*/
    color: #fff;
    border: none;
    padding: 7px;
    cursor: pointer;
    border-radius: 50%;
}

.prev1 {
    left: 10px;
}

.next1 {
    right: 10px;
}
