* {
    font-size: 15px;

}

/* Section Styling */
.expertise-section {
    background-color: #fff;
    padding: 40px 0;
}

.expertise-section h2 {
    font-weight: 500;
    font-size: 2rem;
    color: #000;
    margin-bottom: 50px;
}

/* Logo Card */
.expertise-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding: 30px 20px;
    height: 100%;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.expertise-card img {
    max-height: 60px;
    width: auto;
    margin-bottom: 15px;
    object-fit: contain;
}

.expertise-card p {
    margin: 0;
    font-weight: 500;
    color: #000;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .expertise-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .expertise-section h2 {
        font-size: 1.6rem;
    }
}

/* Parallax Section */
.business-section {
    position: relative;
    background-image: url(assets/images/contact\ banner.jpg);
    /* Replace with your image */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
}

/* Dark overlay */
.business-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.business-content {
    position: relative;
    z-index: 2;
}

/* Left Text */
.business-heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

.business-heading span {
    color: #ff5722;
}

/* Contact Info */
.contact-info {
    text-align: end;
    font-size: 1.1rem;
    color: #fff;
    margin-top: 10px;
}

.contact-info i {
    color: #ff5722;
    margin-right: 6px;
}

/* Button */
.quote-btn {
    background-color: #ff5722;
    border: none;
    color: #fff;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    float: right;

}

.quote-btn:hover {
    background-color: #e64a19;
}

@media (max-width: 768px) {
    .quote-btn {
        float: none;
        /* reset right float on mobile */
        display: block;
        margin: 20px auto 0;
    }

    .contact-info {
        text-align: center;
    }

    .quote-btn {
        display: block;
        margin: 20px auto 0;
    }
}

.content-section {
    display: flex;
    align-items: center;
    min-height: 40vh;
    background-color: #f9f9f9;
}

.text-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.text-content p {
    color: #555;
    line-height: 1.7;
    text-align: justify;
    text-justify: auto;
}

.image-content img {
    width: 65vh;
    height: auto;

}

.process {
    background: #fff;
    padding: 40px 0;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.process-step i {
    font-size: 2rem;
    color: #ff5722;
    /* updated icon color */
    margin-bottom: 10px;
}

/* Why Choose Us */
.why-choose {
    background: #fff3eb;
    /* lighter background to complement #ff5722 */
    padding: 80px 0;
    margin-top: 15px;
}

.why-choose i {
    color: #ff5722;
    /* updated icon color */
    font-size: 2rem;
    margin-bottom: 15px;
}

.why-choose h5 {
    font-weight: 600;
    color: #2c3e50;
    /* keep dark heading for contrast */
}


/* Section Titles */

#mobile-services-container {
    max-width: 1400px;
    width: 100%;
    background: white;
    border-radius: 25px;
    padding: 50px 40px;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.mobile-services-title {
    text-align: center;
    margin-bottom: 60px;
}

.mobile-services-title p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

.mobile-services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.mobile-service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.mobile-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.05) 0%, rgba(255, 87, 34, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.mobile-service-card:hover::before {
    opacity: 1;
}

.mobile-service-icon {
    width: 80px;
    height: 80px;
    background: #ff5722;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 87, 34, 0.3);
}

.mobile-service-card:hover .mobile-service-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%);
}

.mobile-service-icon i {
    font-size: 2rem;
    color: #fff;
}

.mobile-service-card h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.mobile-service-card:hover h3 {
    transform: translateX(5px);
    color: #ff5722;
}

.mobile-service-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mobile-service-link {
    display: inline-flex;
    align-items: center;
    color: #ff5722;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 8px;
}

.mobile-service-link i {
    transition: transform 0.3s ease;
}

.mobile-service-card:hover .mobile-service-link {
    color: #e64a19;
}

.mobile-service-card:hover .mobile-service-link i {
    transform: translateX(5px);
}

@media (max-width: 1200px) {
    .mobile-services-grid {
        flex-wrap: wrap;
    }

    .mobile-service-card {
        min-width: 220px;
    }
}

@media (max-width: 768px) {
    .mobile-services-title h2 {
        font-size: 2rem;
    }

    #mobile-services-container {
        padding: 30px 20px;
    }

    .mobile-service-card {
        min-width: 100%;
    }
}


/* new service banner start */
.strip-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 56px;

}

/* Image used as background but controlled via HTML */
.strip-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.strip-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(102, 17, 8, 0.7);
    /* 60% darker version of #FF5533 */
    z-index: 1;
}

.strip-banner .banner-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 700px;
}

.strip-banner .banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.strip-banner .banner-content p {
    font-size: 1.25rem;
    color: #f1f1f1;
    margin-bottom: 30px;
}

.strip-banner .banner-btn {
    background-color: #ff5722;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 36px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.strip-banner .banner-btn:hover {
    background-color: #e64a19;
    transform: scale(1.05);
}

.strip-banner .banner-btn i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.strip-banner .banner-btn:hover i {
    transform: translateX(6px);
}

@media (max-width: 768px) {
    .strip-banner {
        height: 70vh;
        margin-top: 0px;
    }

    .strip-banner .banner-content h1 {
        font-size: 2rem;
    }

    .strip-banner .banner-content p {
        font-size: 1rem;
    }
}

/* new service banner end */