/* =========================
   SERVICE PAGE SECTION
========================= */

.gism-service-page {
    padding: 50px 0;
    background: #f7f9fc;
}

/* =========================
   ROW
========================= */

.gism-service-row {
    display: flex;
    align-items: stretch; /* equal height */
    gap: 60px;
    margin-bottom: 100px;
}

/* alternate layout */
.gism-service-row.reverse {
    flex-direction: row-reverse;
}

/* =========================
   IMAGE (BIG + PREMIUM)
========================= */

.gism-service-img {
    flex: 1.1; /* slightly bigger than content */
    height: 380px;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
}

.gism-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* hover zoom */
.gism-service-img:hover img {
    transform: scale(1.12);
}

/* overlay */
.gism-service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10,27,90,0.05),
        rgba(10,27,90,0.25)
    );
    opacity: 0;
    transition: 0.3s;
}

.gism-service-img:hover::after {
    opacity: 1;
}

/* =========================
   CONTENT
========================= */

.gism-service-content {
    flex: 0.9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* heading */
.gism-service-content h3 {
    font-size: 33px;
    font-weight: 700;
    color: #0a1b5a;
    margin-bottom: 8px;
}

/* sub heading */
.gism-service-content h5 {
    font-size: 17px;
    font-weight: 600;
    color: #f1971a;
    margin-bottom: 15px;
}

/* paragraph */
.gism-service-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 12px;
}

/* hover text effect */
.gism-service-row:hover h3 {
    color: #f1971a;
    transition: 0.3s;
}

/* =========================
   DIVIDER (PREMIUM TOUCH)
========================= */

.gism-service-row:not(:last-child) {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 60px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {

    .gism-service-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 70px;
    }

    .gism-service-row.reverse {
        flex-direction: column;
    }

    .gism-service-img {
        height: 260px;
    }

    .gism-service-content {
        text-align: center;
    }

    .gism-service-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 576px) {

    .gism-service-page {
        padding: 70px 0;
    }

    .gism-service-img {
        height: 220px;
        border-radius: 10px;
    }

    .gism-service-content h3 {
        font-size: 22px;
    }

    .gism-service-content h5 {
        font-size: 14px;
    }

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