/* Global Solutions CTA Section - Dubai / UAE Tone */

.global-solutions-section {
    position: relative;
    margin-left: 24px;
    margin-right: 24px;
    border-radius: 10px;
    padding: 40px 24px;

    background-image: url("../images/banner/dubai-skyline.png");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    border: 1px solid rgba(0,115,62,0.15);
    overflow: hidden;

    transition: all 0.35s ease;
}

/* White overlay filter */

.global-solutions-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.65) 0%,
        rgba(255,255,255,0.55) 45%,
        rgba(255,255,255,0.65) 100%
    );

    z-index: 1;
}

/* UAE Flag Accent Line */

.global-solutions-section::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;

    background: linear-gradient(
        to bottom,
        #ff0000 0%,
        #00732f 50%,
        #000000 100%
    );

    z-index: 2;
}

/* Hover Effect */

.global-solutions-section:hover {
    border-color: rgba(0,115,62,0.35);
    box-shadow: 0 6px 26px rgba(0,115,62,0.15);
    transform: translateY(-2px);
}

/* Content above overlay */

.global-solutions-section .container {
    position: relative;
    z-index: 3;
}

/* Heading */

.global-heading {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: "Jost", sans-serif;

    background: linear-gradient(
        135deg,
        #00732f 0%,
        #c552a0 100%
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */

.global-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

/* Logo */

.global-logo img {
    max-height: 150px;
    filter: drop-shadow(0px 4px 10px rgba(0,0,0,0.12));
}

/* Button */
.global-solutions-section .global-btn {
    background: rgba(0, 115, 47, 0.55); /* UAE green transparent */
    color: #fff;
    border: 1px solid rgba(0,115,47,0.6);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

/* Hover */
.global-solutions-section .global-btn:hover {
    box-shadow: 0 6px 18px rgba(255,0,0,0.35);
    transform: translateY(-2px);
}
/* Desktop spacing */

@media (min-width: 992px) {
    .global-solutions-section {
        margin-left: 48px;
        margin-right: 48px;
    }
}

/* Mobile */

@media (max-width: 767px) {

    .global-solutions-section {
        margin-left: 15px;
        margin-right: 15px;
        padding-left: 16px;
        padding-right: 16px;
    }

    .global-heading {
        font-size: 24px;
        text-align: center;
    }

    .global-text {
        font-size: 15px;
        text-align: center;
    }

    .global-solutions-section .text-md-end {
        text-align: center !important;
    }

}
