.mission-section {
        padding: 60px 0;
        background: #f9f9f9;
    }

    .mission-card {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        padding: 30px;
        width: 100%;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .mission-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .mission-card .icon-box img {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .mission-card h3 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 10px;
        text-transform: capitalize;
        color: #283132;
    }

    .mission-card p {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }

    /* Responsive */
    @media (max-width: 576px) {
        .mission-card {
            padding: 20px;
        }

        .mission-card h3 {
            font-size: 20px;
        }

        .mission-card p {
            font-size: 15px;
        }
    }
    .our-team {
        padding: 0px 0;
    }

    .section-title h3 {
        text-transform: uppercase;
        font-size: 18px;
        color: #283132;
        margin-bottom: 10px;
    }

    .section-title h2 {
        font-size: 32px;
        font-weight: bold;
        margin-bottom: 20px;
    }

    .team-member-item {
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        padding:10px;
    }

    .team-member-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    }

    .team-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.4s ease;
    }

    .team-member-item:hover .team-image img {
        transform: scale(1.05);
    }

    .team-body {
        padding: 20px;
    }

    .team-content h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .team-content p {
        font-size: 14px;
        color: #777;
    }

    .team-social-icon ul {
        list-style: none;
        padding: 0;
        margin: 15px 0 0;
        display: flex;
        justify-content: center;
        gap: 12px;
    }

    .team-social-icon a {
        color: #283132;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .team-social-icon a:hover {
        color: #ff6600;
    }

    /* Responsive Grid */
    @media (min-width: 992px) {
        .team-col {
            flex: 0 0 25%;
            max-width: 25%;
        }
    }

    @media (min-width: 768px) and (max-width: 991px) {
        .team-col {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }

    @media (max-width: 767px) {
        .team-col {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }
        .service-img {
        overflow: hidden;
        border-radius: .5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .service-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

    .text-gold {
        color: #9e7b49;
    }

    .bg-gold {
        background-color: #9e7b49;
        color: #fff;
    }

    .service-img {
        overflow: hidden;
        border-radius: .5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-img img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease, filter 0.4s ease;
    }

    /* Hover Effect */
    .service-img:hover img {
        transform: scale(1.08);
        filter: brightness(1.1);
    }

    .service-img:hover {
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }
    