/* ===== SEARCH ENGINE MARKETING SECTION ===== */
.sem-section {
    background: #ffffff;
    padding: 90px 0;
}

.sem-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* LEFT TEXT */
.sem-text {
    flex: 1;
}

.sem-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #222;
}

/* RIGHT IMAGE */
.sem-image {
    flex: 1;
    text-align: right;
}

.sem-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .sem-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .sem-image {
        text-align: center;
        margin-top: 30px;
    }

    .sem-text h2 {
        font-size: 26px;
    }
}


.sem-intro {
    background: #ffffff;
    padding: 60px 0;
}

.sem-card {
    background: #fff;
    padding: 35px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.sem-card p {
    font-size: 15px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 15px;
}


.sem-services {
    background: #ffffff;
    padding: 70px 0;
}

.section-heading {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0b0b3b;
}

.service-block {
    margin-bottom: 25px;
}

.service-block h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0b0b3b;
}

.service-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.sem-benefits {
    background: linear-gradient(135deg, #0b3c7a, #0d5cab);
    padding: 80px 0;
}

.benefits-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.benefits-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0b0b3b;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.benefits-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    font-size: 15px;
    color: #444;
}

.benefits-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: #0d5cab;
}

.btn-enquiry {
    display: inline-block;
    background: #0d5cab;
    color: #fff;
    padding: 10px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}