* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    color: #fff;
}

/* Main section container */
.partner-section {
    background: #000;
    display: flex;
    width: 100%;
    height: 50vh;
    margin-top: 2px;
}

/* LEFT IMAGE FULL WIDTH, FULL HEIGHT */
.left {
    width: 50%;
}

.left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* RIGHT CONTENT */
.right {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.right h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
}
.right h1 span {
    color: #06bbcc;
    font-size: 48px;
    font-weight: 700;
}

.right p {
    color: #ccc;
    margin-top: 20px;
    font-size: 20px;
    line-height: 1.5;
}

.underline {
    width: 80px;
    height: 3px;
    background: #06bbcc;
    margin: 25px 0;
}

.btn-apply {
    padding: 12px 25px;
    background: #06bbcc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    width: max-content;
}
.btn-apply:hover {
    background: #05a3b0;
    transition: 0.3s;
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .partner-section {
        flex-direction: column;
        height: auto;
    }

    .left,
    .right {
        width: 100%;
    }

    .right {
        padding: 30px;
        text-align: center;
    }

    .underline {
        margin: 20px auto;
    }

    .btn-apply {
        margin: 0 auto;
    }
}
.partner-quote-box {
    display: flex;
    width: 100%;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin: 20px 0;
}

/* LEFT "US" BOX */
.quote-us {
    width: 20%;
    background: #06bbcc;
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 10px;
}

/* RIGHT CONTENT */
.quote {
    width: 80%;
    padding: 20px 25px;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Make both paragraphs align properly */
.partner-quote-box .quote + .quote {
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .partner-quote-box {
        flex-direction: column;
    }

    .quote-us {
        width: 100%;
        font-size: 36px;
        padding: 15px;
    }

    .quote {
        width: 100%;
        padding: 20px;
        font-size: 16px;
    }
}
.partners-receive-section {
    padding: 60px 0;
    background: #f8f9ff;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.receive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.receive-item {
    display: flex;
    align-items: flex-start;
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    border-left: 5px solid #06bbcc;
    box-shadow: 0 4px 10px rgba(0,0,0,0.07);
    transition: .3s;
}

.receive-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.receive-item .icon {
    font-size: 28px;
    color: #06bbcc;
    margin-right: 15px;
    margin-top: 4px;
}

.receive-item p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* Responsive */
@media (max-width: 992px) {
    .receive-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .receive-grid {
        grid-template-columns: 1fr;
    }
}

.teqto-cta-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #06bbcc, #066c75);
    color: #fff;
    text-align: center;
    margin-top: 40px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtext {
    font-size: 17px;
    max-width: 700px;
    margin: 0 auto 35px auto;
    opacity: 0.95;
}

.cta-contact-box {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.cta-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    backdrop-filter: blur(4px);
}

.cta-icon {
    font-size: 20px;
}

.cta-bottom-text {
    font-size: 18px;
    font-weight: 500;
    margin-top: 10px;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 576px) {
    .cta-title {
        font-size: 26px;
    }
    .cta-item {
        width: 100%;
        justify-content: center;
    }
}
.who-partner-alt-section {
    padding: 70px 0;
    background: #ffffff;
}

.partner-alt-intro {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
}

.partner-alt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.partner-alt-item {
    background: #f8f9ff;
    padding: 22px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-align: center;
    border: 1px solid #e6e9f5;
    transition: all 0.3s ease;
}

.partner-alt-item:hover {
    transform: translateY(-6px);
    border-color: #06bbcc;
    box-shadow: 0 10px 25px rgba(6, 187, 204, 0.15);
}

.partner-alt-note {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 17px;
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .partner-alt-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .partner-alt-grid {
        grid-template-columns: 1fr;
    }
}
