.navbar-brand-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 10px;
    display: inline-block;
}

.navbar-brand-mobile-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 10px;
    display: none;
}

@media (max-width: 991px) {
    .navbar-brand-mobile-image {
        display: inline-block;
    }

    .navbar-brand-image {
        display: none;
    }
}

.banner-section {
    position: relative;
    padding: 120px 0;
}

.banner_content {
    text-align: center;
    padding-top: 0;
}

.banner_content h6,
.banner_content h1,
.banner_content p {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}

.banner_content .button1,
.banner_content .button2 {
    display: inline-block;
    margin: 10px 10px 0;
}

.expertise-section {
    background: linear-gradient(135deg, #f86823, #ff8e53);
    padding: 70px 0;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #fefefe;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.expertise-card {
    background-color: #fff;
    color: #333;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.expertise-card h4 {
    font-size: 2rem;
    color: #1b1a1a;
    margin-bottom: 30px;
    font-weight: 600;
}

.expertise-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.expertise-list li {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.expertise-list li:hover {
    color: #ff6b6b;
}

.expertise-heading {
    color: whitesmoke;
}

.icon {
    color: #ff8e53;
    margin-right: 12px;
    font-size: 1.2rem;
}

.service-box {
    position: relative;
    padding: 20px;
    border-radius: 10px;
    background: #f5f5f5 !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-box img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    background: #e0e0e0 !important;
    filter: none !important;
    opacity: 1 !important;
}

.service-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1b1a1a !important;
}

.service-box p {
    font-size: 1rem;
    color: #333 !important;
    line-height: 1.6;
}

@media (max-width: 776px) {
    .navbar-brand-mobile-image {
        display: none;
    }

    .navbar-brand-image {
        display: inline-block;
    }
}