



.service-hero {
    padding: 80px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-left {
    width: 50%;
}

.service-left h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
}

.service-left p {
    color: #bfc6cc;
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.5;
}

.primary-btn {
    background: #167cff;
    padding: 12px 26px;
    border-radius: 8px;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 15px;
}

.service-right {
    width: 45%;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 90%;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 0 25px rgba(0,0,0,0.5);
}
.custom-mesh {
    padding: 60px 60px;
}

.custom-mesh h2 {
    font-size: 26px;
    margin-bottom: 25px;
}

.custom-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.custom-box {
    width: 23%;
    background: rgba(255,255,255,0.05);
    border: 1px solid #1d3c40;
    padding: 25px;
    border-radius: 12px;
}

.custom-box h3 {
    margin-top: 12px;
    margin-bottom: 8px;
}

.custom-box p {
    color: #b9c2c8;
    line-height: 1.4;
}

.icon-big {
    font-size: 32px;
    color: #25befc;
}


.premier-choice {
    padding: 60px 60px;
}

.premier-choice h2 {
    font-size: 26px;
}

.sub-text {
    color: #b9c2c8;
    margin: 10px 0 30px;
    font-size: 15px;
}

.premier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.premier-box {
    background: rgba(255,255,255,0.05);
    border: 1px solid #1d3c40;
    padding: 25px;
    border-radius: 12px;
}

.premier-box h3 {
    margin: 10px 0;
}

.premier-box p {
    color: #b9c2c8;
}
.cta-section {
    width: 80%;
    margin: 50px auto;
    padding: 35px 40px;
    background: rgba(255,255,255,0.04);
    border: 1px solid #1d3c40;
    border-radius: 14px;
    text-align: center;
}

.cta-section h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-section p {
    color: #bfc6cc;
    margin-bottom: 20px;
    font-size: 14px;
}

.cta-btn {
    margin-top: 10px;
}


/* ================================*/


/* ===== SERVICE HERO RESPONSIVE ===== */
@media (max-width: 1024px) {
    .service-hero {
        flex-wrap: wrap;
        padding: 60px 40px;
    }

    .service-left,
    .service-right {
        width: 100%;
        text-align: center;
    }

    .service-left h1 {
        font-size: 36px;
    }

    .service-left p {
        font-size: 14px;
    }

    .hero-img {
        width: 80%;
        margin: 20px auto 0;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 40px 20px;
        flex-direction: column;
    }

    .service-left h1 {
        font-size: 28px;
    }

    .service-left p {
        font-size: 13px;
    }

    .primary-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .hero-img {
        width: 100%;
    }
}

/* ===== CUSTOM MESH RESPONSIVE ===== */
@media (max-width: 1024px) {
    .custom-row {
        flex-wrap: wrap;
        gap: 20px;
    }

    .custom-box {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .custom-row {
        flex-direction: column;
    }

    .custom-box {
        width: 100%;
    }

    .custom-box h3 {
        font-size: 18px;
    }

    .custom-box p {
        font-size: 14px;
    }
}

/* ===== PREMIER CHOICE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .premier-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .premier-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .premier-box h3 {
        font-size: 18px;
    }

    .premier-box p {
        font-size: 14px;
    }
}

/* ===== CTA SECTION RESPONSIVE ===== */
@media (max-width: 768px) {
    .cta-section {
        width: 95%;
        padding: 25px 20px;
    }

    .cta-section h2 {
        font-size: 20px;
    }

    .cta-section p {
        font-size: 13px;
    }

    .cta-btn {
        width: 100%;
        padding: 10px 0;
        font-size: 14px;
    }
}
