body {
    background: #fff !important;
}

/* Base improvements */
.work-together-section {
    padding: 10px 0;
    /* position: relative; */
}
/* .work-together-section::after{
        background: url(https://www.motadata.com/wp-content/themes/motadata/assets/images/brand-icon-2.svg) left top no-repeat;
    width: 50vw;
    height: 50vw;
    content: " ";
    position: absolute;
    right: -14vw;
    top: 20.083vw;
    z-index: -9;
} */
.partner-header-section {
    padding: 100px 0px;
}

.partner-header {
    font-size: 3.3rem;
    color: #142b63;
}

.partner-content {
    padding: 25px 160px 25px 0px;
    font-size: 20px;
    color: #4b5563;
}

.partner-image {
    overflow: auto;
    /* padding-left: 87px; */
    height: 700px !important;
    width: 700px !important;
}

.consultation-btn {
    background: #142b63;
    padding: 15px 30px;
    text-decoration: none;
    color: #ffff;
    border-radius: 8px;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease, border-radius 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.consultation-btn:hover {
    border-radius: 40px;
    transform: scale(1.1);
    background: #0d1e46;
}

/* Global Partners */
.global-header h2 {
    color: #142b63;
    font-size: 3.3rem;
}

.global-header p {
    color: #4b5563;
    padding: 0 120px;
    text-align: center;
}

/* Layout for multiple cards */
.card-wrapper {
    display: flex;
    justify-content: center;
    padding: 15px 0px;
}

/* Card container (same size for all) */
.card {
    width: 100%;
    max-width: 320px;
    height: 140px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    background: #fff;

    /* center image */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Image */
.card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    /* keep full logo visible */
    transition: transform 0.6s ease;
}


/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 43, 99, 0.7);
    transform: scale(1.2);
    opacity: 0;
    transition: all 0.4s ease;
}

/* Overlay text */
.overlay span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 0 10px;
}

/* Hover effects */
.card:hover img {
    transform: scale(1.05);
}

.card:hover .overlay {
    opacity: 1;
    transform: scale(1);
}


/* Global-Map-Section Start here */

.global-map-section {
    background: #f9f9f9 !important;
    padding: 40px 0;
}

.map-header h2 {
    font-size: 3rem;
    color: #142b63;
    text-align: center;
}

/* Map container */
.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 50px auto;
}

/* Map background */
.map {
    position: relative;
    width: 100%;
    padding-top: 50%;
    /* aspect ratio */
    background: url("/assets/images/partners/map-bg.png") no-repeat center;
    background-size: contain;
}

/* Blinking point base */
.point {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #1fb6d1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Pulse animation */
.point::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(31, 182, 209, 0.4);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Point positions (adjust as needed) */
.usa {
    top: 35%;
    left: 22%;
}

.brazil {
    top: 65%;
    left: 35%;
}

.uk {
    top: 28%;
    left: 48%;
}

.india {
    top: 45%;
    left: 68%;
}

.singapore {
    top: 55%;
    left: 75%;
}

.australia {
    top: 75%;
    left: 85%;
}

/* Contact-Us Partner */
.contect-us-partner-section {
    padding-top: 50px;
}

.contact-us-image img {
    width: 600px;
    height: 550px;
}

.wave-top {
    margin-top: 0 !important;
}

.right-side-section h2 {
    font-size: 3rem;
    color: #142b63;
}

.right-side-section h2 span {
    font-weight: 800;
    color: #142b63;
}

.right-side-section p {
    margin: 30px 0;
}


@media (max-width: 576px) {
    .partner-header-section {
        padding: 25px 0px;
    }

    .partner-header {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .partner-content {
        padding: 0;
    }

    .partner-image {
        height: 235px !important;
        width: 295px !important;
    }

    .consultation-btn {
        width: 100%;
        text-align: center;
        font-size: 1rem !important;
    }

    .partnerimage-section {
        text-align: center;
    }

    .global-header h2 {
        font-size: 2.2rem !important;
    }


    .card {
        height: 200px;
    }


    .partner-program-header h2 {
        font-size: 1.9rem !important;
    }

    .partner-program-header p {
        padding: 0 10px;
        font-size: 14px;
    }

    .partner-common-card {
        padding: 18px;
        border-radius: 0 40px 0 0;
    }

    .partner-common-card h3 {
        font-size: 1.1rem;
    }

    .partner-common-card p {
        font-size: 13.5px;
    }
}

@media (max-width: 768px) {
    .work-together-section {
        padding: 0 !important;
    }

    .left-side-section {
        padding-top: 0 !important;
        text-align: center;
    }

    .header-content {
        padding-bottom: 25px;
    }

    .header-content h1 {
        font-size: 2rem;
    }

    .header-text {
        margin: 20px auto;
        font-size: 15px;
        text-align: center;
    }

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

    .recognition-logo {
        justify-content: space-between;
        /* gap: 15px; */
        /* margin-top: 20px; */
    }


    .recognition-logo img {
        max-height: 45px;
    }

    .download-section {
        /* flex-direction: column;
        gap: 15px;
        text-align: center; */
        margin-top: 25px;
        justify-content: space-between;
    }

    .download-content .download-text {
        font-size: 1.4rem;
    }

    .download-icon span img {
        width: 50px;
        height: 55px;
    }

    .together-image img {
        max-width: 320px;
    }

    .partner-header-section {
        padding: 15px 0px;
    }

    .global-header h2 {
        font-size: 2.8rem;
    }

    .global-header p {
        padding: 0;
    }

    .become-partner-header h2 {
        font-size: 2.6rem !important;
    }

    .content-block h3 {
        font-size: 1.3rem !important;
    }

    .content-block p {
        font-size: 1rem !important;
    }

    .card {
        max-width: 90%;
        height: 100px;
        margin: 10px 0 !important;
    }

    .point {
        width: 8px;
        height: 8px;
    }

    .partner-benifits-header {
        padding: 20px;
    }

    .partner-benifits-header h2 {
        font-size: 2rem !important;
    }

    .partner-benifits-content {
        padding: 40px 20px;
    }

    .partner-program-section {
        margin: 70px 0 20px 0;
    }

    .partner-program-header h2 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .partner-program-header p {
        padding: 0 20px;
        font-size: 14px;
        margin-bottom: 40px;
    }

    .partner-program-card-list {
        margin-top: 30px;
    }

    .partner-common-card {
        padding: 20px;
        border-radius: 0 50px 0 0;
    }

    .partner-common-card h3 {
        font-size: 1.2rem;
    }

    .partner-common-card p {
        font-size: 14px;
    }

    .portal-partner-card {
        flex-direction: column;
        text-align: center;
        border-radius: 0 60px 0 0;
        padding: 40px 25px;
    }

    .portal-item {
        margin-bottom: 40px;
    }

    .portal-item:last-child {
        margin-bottom: 0;
    }

    .partner-membership-section {
        padding: 70px 0;
    }

    .membership-content {
        margin-bottom: 50px;
    }

    .membership-content h2 {
        font-size: 1.9rem !important;
    }

    .sub-text {
        font-size: 1.1rem !important;
    }

    .stage-title {
        font-size: 1.1rem !important;
    }
}

/* ========== Small phones (400px and below) ========== */
@media (max-width: 400px) {
    .recognition-logo {
        flex-direction: column;
    }

    .download-content .download-about {
        font-size: .7rem !important;
    }
}

@media (max-width: 480px) {
    .become-partner-page{
        padding: 0 !important;
    }
    .partner-benifits-header h2 {
        font-size: 1.8rem !important;
    }

    .become-partner-header h2 {
        font-size: 2rem !important;
    }

    .become-partner-header p {
        font-size: 1rem !important;
    }

    .header-content h1 {
        font-size: 1.7rem !important;
    }

    .download-icon span img {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 15px;
    }

    .header-text {
        font-size: 14px;
    }

    .download-content .download-text {
        font-size: 1rem !important;
    }

    .recognition-logo img {
        max-height: 40px;
    }

    .partner-program-header h2 {
        font-size: 1.7rem;
    }

    .partner-common-card {
        padding: 15px;
    }

    .portal-partner-section {
        padding: 60px 0;
    }

    .portal-partner-card {
        padding: 30px 20px;
        border-radius: 0 40px 0 0;
    }

    .portal-item h3 {
        font-size: 1.1rem;
    }

    .portal-item p {
        font-size: 13.5px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
    }

    .icon-box img {
        width: 26px;
    }

    .partner-membership-section {
        padding: 60px 0 !important;
    }

    .membership-content h2 {
        font-size: 1.6rem !important;
    }

    .membership-form h3 {
        font-size: 1.2rem;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }
}

/* Become-Partner-Section */
.become-partner-page {
    padding: 30px 0;
}

.left-side-section {
    padding-top: 55px;
}

.header-content {
    padding-bottom: 40px;
}

.header-text {
    margin: 35px 0;
    /* max-width: 520px; */
}

.header-content h1 {
    font-size: 3.3rem;
    color: #142b63;
    font-weight: 800;
    line-height: 1.2;
}

.recognition-logo {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.recognition-logo .delolite-logo {
    margin: 0 10px;
}

.recognition-logo img {
    max-height: 60px;
    width: auto;
}

.download-section {
    display: flex;
    column-gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.download-content .download-about {
    color: #142b63;
    font-weight: 600;

}

.download-content .download-text {
    font-size: 2rem;
    color: #142b63;
    font-weight: 800;
}

.download-icon span img {
    width: 50px;
    height: 65px;
    cursor: pointer;
}

.together-image img {
    width: 100%;
    height: auto;
    max-width: 520px;
    display: block;
    margin-left: auto;
}

/* become-partner-section */
.become-partner-section {
    padding: 60px 0 30px 0;
    position: relative;
}

.become-partner-section::before {
    background: url(https://www.motadata.com/wp-content/themes/motadata/assets/images/pattern.svg) left top;
    width: 100%;
    height: 230px;
    content: " ";
    position: absolute;
    left: 0;
    top: 65%;
    display: block !important;
}

.become-partner-header {
    padding-top: 50px;
    text-align: center;
}

.become-partner-header h2 {
    font-size: 3.3rem;
    color: #142b63;
    margin-bottom: 30px;
}

.become-partner-header h2 span {
    font-weight: 700;
}

.become-partner-header p {
    text-align: center;
}

.partner-cards-list {
    margin-top: 90px;
    position: relative;
}



.partner-cards-list .card {
    height: 90px !important;
    max-width: 380px !important;
    border-radius: 0px 40px 10px 0px;
    border: none;
    /* border-bottom: 6px solid #8b7a42; */
    position: relative;
}

.partner-cards-list .card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #1f2f5f 30%, #1f2f5f 0%, #f4b223 75%, #f4b223 100%);
}

.comon-card h3 {
    color: #142b63;
    font-size: 1.5rem;
}

.comon-card h3 span {
    font-weight: 600;
}


.partner-benifits-section {
    margin-top: 80px;
    padding: 70px 0;
    background-color: #80808030;
}

/* Main card */
.partner-benifits-card {
    position: relative;
    border-radius: 0 120px 0 0;
    padding-bottom: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
}

/* Bottom gradient line */
.partner-benifits-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #1f2f5f, #f4b223);
}

/* Header ribbon */
.partner-benifits-header {
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, #1f2f5f, #f4b223);
    padding: 25px 60px 25px 30px;
    border-radius: 0 40px 0 0;
    margin-top: 45px;
    margin-left: -42px;
}

/* angled cut on left */
.partner-benifits-header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -40px;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-top: 40px solid rgba(31, 47, 95, 0.3);
}

/* header inner layout */
.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 15px;
}

/* icon circle */
.icon-circle {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    font-size: 28px;
    color: #1f2f5f;
}

/* header text */
.partner-benifits-header h2 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0;
}

/* content */
.partner-benifits-content {
    padding: 60px 60px 20px 60px;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d1b3e;
    margin-bottom: 10px;
}

.content-block p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

/* partner-program-section */
.partner-program-section {
    margin: 90px 0px 30px 0;
}

.partner-program-header {
    text-align: center;
}

.partner-program-header h2 {
    font-size: 3.3rem;
    color: #142b63;
    margin-bottom: 30px;

}

.partner-program-header h2 span {
    font-weight: 700;
}

.partner-program-header p {
    text-align: center;
    padding: 0 125px;
    margin-bottom: 60px;
}

.partner-program-card-list {
    margin-top: 50px;
}

.partner-common-card {
    position: relative;
    border-radius: 0 85px 0 0;
    padding-bottom: 40px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 25px 40px;
    min-height: 175px;
    /* instead of fixed height */
    margin-bottom: 25px;

}

/* Bottom gradient line */
.partner-common-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #1f2f5f, #f4b223);
}

.partner-common-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #142b63;
}

.partner-common-card p {
    font-size: 15px;
    margin-top: 15px;
}


/* ========== Large tablets (992px and below) ========== */
@media (max-width: 992px) {

    .partner-program-header h2 {
        font-size: 2.6rem;
    }

    .partner-program-header p {
        padding: 0 40px;
        font-size: 15px;
    }

    .partner-common-card {
        padding: 22px 25px;
        border-radius: 0 60px 0 0;
    }

    .partner-common-card h3 {
        font-size: 1.2rem;
    }

    .portal-partner-card {
        padding: 50px 30px;
        gap: 25px;
    }

    .portal-item h3 {
        font-size: 1.3rem;
    }

    .portal-item p {
        font-size: 14px;
        text-align: center;
    }

    .membership-content h2 {
        font-size: 2.2rem;
    }

    .membership-form h3 {
        font-size: 1.4rem;
    }

    .header-content h1 {
        font-size: 2.6rem;
    }

    .download-content .download-text {
        font-size: 1.6rem;
    }

    .together-image {
        text-align: center;
        margin-top: 40px;
    }

    .together-image img {
        margin: 0 auto;
        max-width: 420px;
    }
}


/* portal-partner-section */
/* Section Background */
.portal-partner-section {
    /* padding: 100px 0; */
    padding: 90px 0 150px 0;
    background: #f5f7fa;
    position: relative;
}

/* Container width */
.portal-partner-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.portal-partner-section::before {
    background: url(https://www.motadata.com/wp-content/themes/motadata/assets/images/pattern.svg) left top;
    width: 100%;
    height: 230px;
    content: " ";
    position: absolute;
    left: 0;
    top: 65%;
    display: block !important;
}

/* Main Card */
.portal-partner-card {
    background: #fff;
    border-radius: 0 120px 0 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    padding: 60px 40px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

/* Bottom Gradient Line */
.portal-partner-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, #1f2f5f, #f4b223);
}

/* Each Column */
.portal-item {
    flex: 1;
    text-align: center;
}

/* Icon Box */
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: #e9f1f5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 32px;
}

.icon-box .network-icon {
    width: 77px;
}

.icon-box span i {
    font-size: 30px;
    color: #142b63;
}

/* Heading */
.portal-item h3 {
    font-size: 1.5rem;
    color: #142b63;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Text */
.portal-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    text-align: center;
}


/* partner-membership-section */

/* Section Background */
.partner-membership-section {
    position: relative;
    padding: 100px 0;
    background: url('https://images.unsplash.com/photo-1521791136064-7986c2920216') center/cover no-repeat;
}

/* Blue overlay */
.partner-membership-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 43, 99, 0.92);
}

/* Container fix */
.partner-membership {
    position: relative;
    z-index: 2;
    color: #fff;
}

/* Left Content */
.membership-content h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.membership-content h2 span {
    font-weight: 700;
}

.sub-text {
    margin-bottom: 25px;
    opacity: 0.9;
}

.stage-title {
    font-weight: 600;
    margin-bottom: 20px;
}

.stage-list {
    list-style: none;
    padding: 0;
}

.stage-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.stage-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border: 2px solid #28c0c6;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
}

/* Right Form */
.membership-form h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
}

.membership-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.membership-form input,
.membership-form select {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 5px;
    color: #fff;
    font-size: 15px;
    outline: none;
}

.membership-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.checkbox {
    font-size: 13px;
    opacity: 0.9;
}

.checkbox input {
    margin-right: 8px;
}

/* Button */
.cta-btn {
    background: #2ec4c7;
    border: none;
    padding: 14px 25px;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    width: fit-content;
    cursor: pointer;
    transition: 0.3s;
}

.cta-btn:hover {
    background: #25a9ac;
}

.wave-top {
    margin-top: -30px !important;
}