﻿.services-benefits {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.container {
    max-width: 1200px;
    margin: auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.box {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
}

    .box:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 50px rgba(14, 89, 169, 0.18);
    }

    .box h2 {
        font-size: 26px;
        font-weight: 800;
        color: #005da4;
        margin-bottom: 25px;
    }

.highlight {
    position: relative;
    overflow: hidden;
}

    .highlight::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #0e59a9, #3b82f6);
        opacity: 0.06;
    }

/* Check List */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

    .check-list li {
        font-size: 15px;
        color: #333;
        padding-left: 28px;
        position: relative;
        line-height: 1.6;
    }

        .check-list li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: #0e59a9;
            font-weight: bold;
        }

/* Mobile */
@media (max-width: 600px) {
    .box h2 {
        font-size: 22px;
    }
}


.stats-section {
    padding: 80px 20px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.stats-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-card {
    background: #ffffff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

    .stat-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, #0e59a9, #3b82f6);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .stat-card:hover::before {
        opacity: 0.08;
    }

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(14, 89, 169, 0.2);
    }

.stat-number {
    font-size: 42px;
    font-weight: bold;
    color: #005da4;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 16px;
    font-weight: 500;
    color: #555;
    position: relative;
    z-index: 1;
}

/* Mobile */
@media (max-width: 600px) {
    .stat-number {
        font-size: 34px;
    }
}


/*expertise*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", system-ui, sans-serif;
}

body {
    background: #ffffff;
}

.expertise-section {
    text-align: center;
    padding: 70px 5%;
}

    .expertise-section h2 {
        font-size: 38px;
        font-weight: 700;
        color: #0a1f44;
    }

.subtitle {
    margin-top: 10px;
    color: #6b7280;
    font-size: 16px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

/* Card */
.expertise-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: left;
    transition: all 0.35s ease;
    animation: fadeUp 0.8s ease forwards;
}

    .expertise-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(0,0,0,0.12);
    }

/* Icon */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.expertise-card:hover .icon-box {
    transform: rotate(5deg) scale(1.1);
}

/* Card text */
.expertise-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #0a1f44;
}

.expertise-card p {
    color: #6b7280;
    font-size: 15px;
    line-height: 1.6;
}

.expertise-card a {
    display: inline-block;
    margin-top: 18px;
    font-weight: 600;
    text-decoration: none;
}

/* Colors */
.blue .icon-box {
    background: #eef4ff;
    color: #2563eb;
}

.blue a {
    color: #2563eb;
}

.teal .icon-box {
    background: #ecfeff;
    color: #0ea5a4;
}

.teal a {
    color: #0ea5a4;
}

.purple .icon-box {
    background: #f5f3ff;
    color: #7c3aed;
}

.purple a {
    color: #7c3aed;
}

.red .icon-box {
    background: #fff1f2;
    color: #e11d48;
}

.red a {
    color: #e11d48;
}

.orange .icon-box {
    background: #fff7ed;
    color: #f97316;
}

.orange a {
    color: #f97316;
}

.cyan .icon-box {
    background: #ecfeff;
    color: #06b6d4;
}

.cyan a {
    color: #06b6d4;
}


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

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

.expertise-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s ease;
}

    .expertise-card.show {
        opacity: 1;
        transform: translateY(0);
    }


/*end*/



/* ANIMATIONS */
@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*/




#ddlServiceQuery {
    border-radius:25px 0 0 25px;
}
#btnbookHome {
    height:60px;
    border-radius:0 25px 25px 0;
    font-size:20px;
    font-weight:bold;
}
.awesomplete .form-control1 {
    height: 60px;
    font-size: 18px;
    color: #000;
}
.h1 {
    color: #f9e608;
    letter-spacing:0px;
    font-size:48px;
}
.missed-call-size a {
font-size:30px;
}



@media (max-width: 768px) {
    #ddlServiceQuery {
        border-radius: 0px;
    }

    #btnbookHome {
        height: 45px;
        border-radius: 0;
        font-size: 16px;
        font-weight: bold;
    }

    .awesomplete .form-control1 {
        height: 45px;
        font-size: 15px;
        color: #000;
    }
}