/* ===========================
   === PARTNER-HEROSECTION ===
   =========================== */

.partner-hero {
    background-image: url('/assets1/img/mboxTool/world-section.png');
    background-size: cover;
    background-position: center;
    background-color: #1c365b;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2em;
}

.ph-container {
    background: rgba(255, 255, 255, 0.8);
    padding: 3em 4em;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.ph-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1em;
    color: #000;
}

.ph-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2em;
    color: #333;
}

.ph-btn {
    display: flex;
    flex-direction: row;
    gap: 2em;
    justify-content: center;
    flex-wrap: wrap;
}

.btn1 {
    color: #fff;
    transition: 0.3s ease;
    border: 0;
}

.btn-orange {
    background-color: #03b9e2;
    border-color: transparent !important;
    color: #fff !important;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    height: 60px;
    line-height: 56px;
    padding: 0 55px;
    border: 2px solid #ef7b23;
    box-shadow: none;
    transition: all .3s ease 0s;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-orange::after {
    position: absolute;
    content: "";
    z-index: -1;
    display: block;
    left: -20%;
    right: -20%;
    top: -4%;
    height: 150%;
    width: 150%;
    bottom: 0;
    background: #fff;
    transform: skewX(45deg) scale(0, 1);
    transition: all .5s ease 0s;
}

.btn-orange:hover {
    color: #ef7b23 !important;
}

.btn-orange:hover::after {
    transform: skewX(45deg) scale(1, 1);
}

/* ============ Responsive ============ */

@media (max-width: 768px) {
    .partner-hero {
        height: auto;
        padding: 4em 1em;
        text-align: center;
    }

    .ph-container {
        padding: 2em 1.5em;
    }

    .ph-title {
        font-size: 1.6rem;
    }

    .ph-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .ph-btn {
        flex-direction: column;
        gap: 1em;
    }

    .btn-orange {
        padding: 0 35px;
        height: 50px;
        line-height: 46px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .ph-title {
        font-size: 1.4rem;
    }

    .ph-subtitle {
        font-size: 1rem;
    }

    .btn-orange {
        font-size: 15px;
        padding: 0 25px;
        height: 45px;
        line-height: 42px;
    }
}

/* ===========================
   ===== PROGRAM-SECTION =====
   =========================== */
   .pars-bc {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* allow wrapping on smaller screens */
    gap: 1em;
}

.button-box,
.button-box-special {
    height: 150px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 200px; /* allow resizing on smaller screens */
    max-width: 300px;
}

.seven {
    background: #01b8ea;
    color: white;
    border-radius: 5px;
    transition: all 300ms;
}

.seven:hover {
    transform: scale(1.1);
    letter-spacing: 2px;
    background: white;
    color: rgb(0, 0, 0);
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.57);
}

button {
    width: auto;
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    border: none;
}

.pars-sec {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4em;
    padding: 1em;
}
.pars-title {
    font-size: 1.5em;
    font-weight: 700;
    margin-bottom: 1em;
}
.pars-t{
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 1em;
    color: #03b9e2;
}

.pars-sec>div{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pars-h {
    text-align: center;
}

.pars-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1em;
}

.pars-box {
    flex: 1 1 100%;
    background-color: white;
    padding: 1em;
    border-radius: 1em;
    border: 2px solid #03b9e2;
    margin: 1em;
    max-width: 90%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .pars-bc {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .button-box,
    .button-box-special {
        flex: 1 1 40%;
        max-width: 45%;
    }
}

@media (max-width: 768px) {
    .button-box,
    .button-box-special {
        flex: 1 1 100%;
        max-width: 90%;
    }

    .pars-box {
        margin: 1em auto;
    }
}

@media (max-width: 480px) {
    button {
        /* padding: 15px; */
        font-size: 16px;
    }

    .pars-box {
        padding: 0.5em;
    }

    .pars-title {
        font-size: 1.2em;
    }
    .button-box, .button-box-special {
        height: 60px;
        margin: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}


/* ===========================
   ==== PREMIUM-CLEIENTELE ===
   =========================== */

.pc {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3em 12em;
    text-align: center;
    gap: 2em;
}

.pc1-p {
    font-size: 1.5em;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #03b9e2;
}

.pc1-d>h3 {
    font-size: 1.5em;
    font-weight: 700;
}

@media (max-width:1024px) {
    .pc {
        padding: 2em 1em;
    }
}

@media (max-width:468px) {
    .pc {
        padding: 1em;
    }

    .pc1-p {
        font-size: 1em;
    }

    .pc1-d>h3 {
        font-size: 1em;
    }
}

/* ===========================
   ===== Comapines Scroll ====
   =========================== */
.premium-client {
    width: 100%;
    overflow: hidden;
    background-color: #f8f8f8;
    padding: 2em 0;
}

.pc {
    max-width: 1200px;
    margin: auto;
}

.pc1-d {
    text-align: center;
    margin-bottom: 1em;
}

.pc1-p {
    font-size: 1.1em;
    font-weight: 600;
    color: #555;
}

.csl-slider {
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

.csl-slider:active {
    cursor: grabbing;
}

.csl-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    padding-left: 250em;
    animation: scrollLeft 40s infinite alternate;
    gap: 2em;
}

.csl-item {
    flex: 0 0 auto;
    padding: 0.5em 2em;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 115px;
    box-sizing: border-box;
}

.csl-item img {
    width: 6em;
    height: 6em;
    object-fit: contain;
    object-position: center center;
    display: block;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width:1024px) {
    .pc {
        padding: 2em 1em;
    }

    .csl-track {
        display: flex;
        animation: scrollLeft 10s linear infinite;
    }

    .csl-item {
        flex: 0 0 auto;
        padding: 0.5em 0.5em;
    }

    .csl-item img {
        display: block;
        width: 80px;
        height: 50px;
    }

}

@media (max-width:468px) {
    .csl-track {
        display: flex;
        animation: scrollLeft 10s linear infinite;
    }

    .csl-item {
        flex: 0 0 auto;
        padding: 0.5em 0.5em;
    }

    .csl-item img {
        display: block;
        width: 80px;
        height: 50px;
    }

    .csl-track {
        animation: scrollLeft 50s linear infinite;
        gap: 0;
    }
}

/* ===========================
   ======= MBOX-FEATURES =====
   =========================== */

.features-section {
    background-color: #ecf9fd;
    border-bottom: 1px solid #1c365b;
    padding: 3em 1em;
}

.features-heading {
    text-align: center;
    font-weight: 700;
    margin: 2em 0;
}

.fh-d {
    text-align: center;
    margin-bottom: 2em;
    font-size: large;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2em;
    margin-bottom: 2em;
}

.feature-box {
    flex: 1 1 45%;
    background-color: white;
    padding: 1em;
    border-radius: 1em;
    border: 2px solid #03b9e2;
}

.feature-content {
    display: flex;
    gap: 1em;
}

.feature-text>h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5em;
    color: #1c365b;
}

.feature-text a {
    color: #db640e;
}

.feature-text>p {
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
}

/* Optional: Responsive for mobile */
@media (max-width: 768px) {
    .feature-box {
        flex: 1 1 100%;
    }

    .features-heading {
        margin-bottom: 1em;
    }
}

@media (max-width: 468px) {
    .features-section {
        padding: 2em 1em;
    }

    .feature-content>figure {
        display: none;
    }

    .features-heading {
        margin: 0;
    }
}

/* ===========================
   ==== Pioneer Solution =====
   =========================== */
.pioneer-section {
    background-color: #ECF9FD;
}

.ps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 5em 8em;
}

.ps-row {
    display: flex;
}

.ps-1 {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    width: 50%;
}

.ps-1sp {
    letter-spacing: 3px;
    font-size: 1.25em;
    color: #03b9e2;
}

.ps-1sp1 {
    letter-spacing: 3px;
    font-size: 2.5em;
    font-weight: 500;
}

.psp {
    margin: 1em 0;
    font-size: large;
    width: 80%;
}


.ps-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
}

@media (max-width: 480px) {
    .ps-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 2em;
    }

    .ps-1 {
        display: flex;
        flex-direction: column;
        align-items: left;
        justify-content: center;
        width: 100%;
    }

    .ps-1sp1 {
        line-height: 1em;
        ;
    }

    .psp {
        padding: 0;
        margin: 1em 0;
        width: 100%;
    }

    .ps-2 {
        display: none;
    }

    .ps-btn {
        text-align: center;
    }
}


/* ===========================
   ======= BTN BTN ORANGE ======
   =========================== */
.btn1 {
    color: #fff;
    transition: 0.3s ease;
    border: 0;
}

.btn-orange:focus,
.btn-orange {
    display: inline-block;
    overflow: hidden;
    z-index: 1;
    background-color: #03b9e2;
    border-color: transparent !important;
    color: #fff !important;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    height: 60px;
    line-height: 56px;
    padding: 0 55px;
    border: 2px solid #ef7b23;
    border-style: solid;
    box-shadow: none;
    transition: all .3s ease 0s;
    cursor: pointer;
    z-index: 1;
    position: relative
}

.btn-orange::after {
    position: absolute;
    content: "";
    z-index: -1;
    display: block;
    left: -20%;
    right: -20%;
    top: -4%;
    height: 150%;
    width: 150%;
    bottom: 0;
    background: #fff;
    transform: skewX(45deg) scale(0, 1);
    transition: all .5s ease 0s
}

.btn-orange:hover {
    box-shadow: none;
    color: #ef7b23 !important
}

.btn-orange:hover::after {
    transform: skewX(45deg) scale(1, 1)
}