
.project-contact-wrapper {
    position: relative;
    display: flex;
    align-items: center;

    padding: 35px 45px;

    background: linear-gradient(
        145deg,
        #0c513b 0%,
        #116b4d 55%,
        #16845b 100%
    );

    color: #ffffff;

    overflow: hidden;
}


/* Decorative circle */

.project-contact-wrapper::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    top: -170px;
    right: -120px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;
}


.project-contact-wrapper::after {
    content: "";

    position: absolute;

    width: 380px;
    height: 380px;

    bottom: -290px;
    left: -220px;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 50%;
}


/* Content */

.project-contact-content {
    position: relative;

    z-index: 2;

    width: 100%;
}


/* Icon */

.project-contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 44px;
    height: 44px;

    margin-bottom: 15px;

    border-radius: 10px;

    background: rgba(255,255,255,0.11);

    color: #a9f2cf;

    font-size: 20px;
}


/* Label */

.project-contact-label {
    display: block;

    margin-bottom: 10px;

    color: #a9f2cf;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.6px;
}


/* Heading */

.project-contact-content h3 {
    max-width: 500px;

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 40px;
    line-height: 1.12;
    font-weight: 700;
}


.project-contact-content h3 span {
    color: #a9f2cf;
}


/* Description */

.project-contact-content > p {
    max-width: 500px;

    margin: 0 0 20px;

    color: rgba(255,255,255,0.78);

    font-size: 14px;

    line-height: 1.7;
}


/* ==========================================
   POINTS
========================================== */

.project-contact-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px 15px;

    margin-bottom: 24px;
}


.project-contact-points div {
    display: flex;

    align-items: center;

    gap: 8px;

    color: rgba(255,255,255,0.82);

    font-size: 11px;
    font-weight: 500;
}


.project-contact-points span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(169,242,207,0.15);

    color: #a9f2cf;

    font-size: 10px;
}


/* ==========================================
   BUTTON
========================================== */

.project-contact-btn {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    min-width: 185px;

    padding: 7px 8px 7px 18px;

    border-radius: 7px;

    background: #ffffff;

    color: #126b4d !important;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: all 0.3s ease;
}


.project-contact-arrow {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 6px;

    background: #16845b;

    color: #ffffff;

    font-size: 18px;

    transition: transform 0.3s ease;
}


.project-contact-btn:hover {
    color: #126b4d !important;

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


.project-contact-btn:hover .project-contact-arrow {
    transform: translateX(4px);
}


/* ==========================================
   REDUCE OVERALL SECTION SPACE
========================================== */

.project-solutions-section {
    padding: 55px 0;
}


.project-solutions-wrapper {
    min-height: 0;

    max-width: 1200px;

    border-radius: 18px;
}


/* ==========================================
   LEFT SIDE - REDUCED PADDING
   Keep your existing content/design
========================================== */

.project-solutions-content {
    padding: 45px 45px;
}


/* ==========================================
   TABLET
========================================== */

@media (max-width: 991px) {

    .project-solutions-section {
        padding: 45px 0;
    }

    .project-solutions-wrapper {
        grid-template-columns: 1fr;
    }

    .project-solutions-content {
        padding: 40px;
    }

    .project-contact-wrapper {
        padding: 40px;
    }

    .project-contact-content h3 {
        font-size: 34px;
    }

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {

    .project-solutions-section {
        padding: 35px 15px;
    }

    .project-solutions-content {
        padding: 35px 25px;
    }

    .project-contact-wrapper {
        padding: 35px 25px;
    }

    .project-contact-content h3 {
        font-size: 30px;
    }

    .project-contact-content > p {
        font-size: 13px;
    }

    .project-contact-points {
        grid-template-columns: 1fr;
    }

    .project-contact-btn {
        width: 100%;
    }

}/* =========================================================
   FLOATING CARDS
   ========================================================= */

.cx-float-card {
    position: absolute;
    z-index: 8;

    display: flex;
    align-items: center;
    gap: 11px;

    min-width: 155px;
    padding: 13px 17px;

    background: #ffffff;
    border: 1px solid rgba(35, 148, 94, 0.12);
    border-radius: 14px;

    box-shadow: 0 10px 30px rgba(24, 72, 51, 0.10);

    cursor: pointer;

    /* Smooth floating + highlight effect */
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        transform 0.3s ease;
}


/* Hover effect */
.cx-float-card:hover {
    background: #e9f8f0;
    border-color: rgba(35, 148, 94, 0.25);

    box-shadow:
        0 18px 40px rgba(35, 148, 94, 0.18);

    transform: translateY(-6px);
}


/* Icon */

.cx-float-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background: #e9f8f0;
    color: #23945e;

    font-size: 18px;
    font-weight: 700;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


/* Icon changes slightly when card is hovered */

.cx-float-card:hover .cx-float-icon {
    background: #ffffff;
    color: #23945e;
    transform: scale(1.08);
}


/* Text */

.cx-float-card strong {
    display: block;
    color: #1c2923;
    font-size: 14px;
    line-height: 1.3;

    transition: color 0.3s ease;
}

.cx-float-card span {
    display: block;
    margin-top: 2px;

    color: #7b8781;
    font-size: 11px;

    transition: color 0.3s ease;
}


/* Text on hover */

.cx-float-card:hover strong {
    color: #167346;
}

.cx-float-card:hover span {
    color: #4f7562;
}/* =========================================================
   COGENTIX - WHY PARTNER SECTION
========================================================= */
/* =========================================================
   COGENTIX PARTNER SECTION
   UNIQUE PREFIX: cgs-partner-
========================================================= */

.cgs-partner-section {
    position: relative;
    width: 100%;
    padding: 110px 0;

    background: linear-gradient(
        135deg,
        #358127 0%,
        #ffffff 45%,
        #120c49 200%
    );

    overflow: hidden;
}


/* =========================================
   BACKGROUND EFFECTS
========================================= */

.cgs-partner-section::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;

    top: 40px;
    left: -300px;

    border-radius: 50%;

    background: rgba(74, 170, 77, 0.10);

    filter: blur(80px);

    pointer-events: none;
    z-index: -1;
}


.cgs-partner-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;

    right: -220px;
    bottom: 0;

    border-radius: 50%;

    background: rgba(74, 170, 77, 0.08);

    filter: blur(90px);

    pointer-events: none;
    z-index: -1;
}


/* =========================================
   CONTAINER
========================================= */

.cgs-partner-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================
   HEADING
========================================= */

.cgs-partner-heading {
    position: relative;
    z-index: 2;

    max-width: 800px;

    margin: 0 auto 70px;

    text-align: center;
}


.cgs-partner-label {
    display: inline-block;

    padding: 8px 18px;

    border: 1px solid #cfe5cc;
    border-radius: 50px;

    background: #ffffff;

    color: #319840;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 3px;
}


.cgs-partner-heading h2 {
    margin: 20px 0 18px;

    color: #142c24;

    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2.5px;
}


.cgs-partner-heading h2 span {
    color: #3da648;
}


.cgs-partner-heading p {
    max-width: 720px;

    margin: 0 auto;

    color: #697a72;

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   MAIN GRID
========================================= */

.cgs-partner-main {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: 80px;

    width: 100%;
}


/* =========================================
   LEFT VISUAL
========================================= */

.cgs-partner-visual {
    position: relative;

    width: 100%;
    min-height: 540px;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* =========================================
   ORBITS
========================================= */

.cgs-partner-orbit {
    position: absolute;

    border: 1px dashed #b9dcb5;

    border-radius: 50%;

    pointer-events: none;
}


.cgs-partner-orbit-one {
    width: 390px;
    height: 390px;

    animation: cgsPartnerOrbitOne 20s linear infinite;
}


.cgs-partner-orbit-two {
    width: 280px;
    height: 280px;

    border-color: #d5e9d2;

    animation: cgsPartnerOrbitTwo 15s linear infinite;
}


/* =========================================
   CENTER CARD
========================================= */

.cgs-partner-center {
    position: relative;
    z-index: 5;

    width: 210px;
    height: 210px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid #d7e9d5;

    box-shadow:
        0 25px 60px rgba(35, 100, 40, 0.15),
        inset 0 0 30px rgba(70, 170, 75, 0.06);
}


.cgs-partner-center-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 10px;

    border-radius: 16px;

    background: #e8f7e6;

    color: #349a42;

    font-size: 27px;
}


.cgs-partner-center strong {
    color: #142c24;

    font-size: 25px;
    line-height: 1.2;
}


.cgs-partner-center small {
    margin-top: 5px;

    color: #829087;

    font-size: 11px;
    line-height: 1.5;

    text-align: center;
}


/* =========================================
   FLOATING CARDS
========================================= */

.cgs-partner-float {
    position: absolute;
    z-index: 10;

    display: flex;

    align-items: center;

    gap: 10px;

    min-width: 145px;

    padding: 13px 16px;

    border: 1px solid #dceadd;

    border-radius: 14px;

    background: rgba(255, 255, 255, 0.96);

    box-shadow:
        0 15px 35px rgba(35, 90, 40, 0.10);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    animation: cgsPartnerFloat 4s ease-in-out infinite;
}


.cgs-partner-float-icon {
    width: 34px;
    height: 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 10px;

    background: #eaf7e8;

    color: #319b40;

    font-size: 17px;

    font-weight: bold;
}


.cgs-partner-float strong {
    display: block;

    color: #193229;

    font-size: 12px;
    line-height: 1.2;
}


.cgs-partner-float span {
    display: block;

    margin-top: 3px;

    color: #87938d;

    font-size: 9px;
    line-height: 1.2;
}


/* FLOAT POSITIONS */

.cgs-partner-float-one {
    top: 55px;
    left: 15px;
}


.cgs-partner-float-two {
    top: 80px;
    right: 0;

    animation-delay: 0.8s;
}


.cgs-partner-float-three {
    bottom: 70px;
    left: 5px;

    animation-delay: 1.5s;
}


.cgs-partner-float-four {
    bottom: 45px;
    right: 15px;

    animation-delay: 2.2s;
}


/* =========================================
   RIGHT BENEFITS
========================================= */

.cgs-partner-benefits {
    width: 100%;

    display: flex;

    flex-direction: column;

    gap: 15px;
}


.cgs-partner-benefit {
    position: relative;

    width: 100%;

    display: grid;

    grid-template-columns: 35px 52px minmax(0, 1fr);

    align-items: center;

    gap: 15px;

    padding: 20px;

    border: 1px solid transparent;

    border-radius: 18px;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease,
        transform 0.35s ease;
}


.cgs-partner-benefit:hover {
    background: #ffffff;

    border-color: #dcebd9;

    box-shadow:
        0 15px 35px rgba(40, 100, 45, 0.08);

    transform: translateX(8px);
}


/* =========================================
   BENEFIT NUMBER
========================================= */

.cgs-partner-number {
    color: #a1b2a8;

    font-size: 11px;

    font-weight: 800;
}


/* =========================================
   BENEFIT ICON
========================================= */

.cgs-partner-benefit-icon {
    width: 52px;
    height: 52px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #eaf7e8;

    color: #309b40;

    font-size: 23px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.cgs-partner-benefit:hover
.cgs-partner-benefit-icon {
    background: #329c41;

    color: #ffffff;

    transform: rotate(-5deg) scale(1.05);
}


/* =========================================
   BENEFIT CONTENT
========================================= */

.cgs-partner-benefit-content {
    min-width: 0;
}


.cgs-partner-benefit-content h3 {
    margin: 0 0 5px;

    color: #142c24;

    font-size: 18px;

    font-weight: 750;

    line-height: 1.3;
}


.cgs-partner-benefit-content p {
    margin: 0;

    color: #77857e;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================
   BOTTOM RESULTS
========================================= */

.cgs-partner-results {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 75px;

    padding: 25px;

    border: 1px solid #dceadb;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);
}


.cgs-partner-result {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 10px 25px;

    border-right: 1px solid #dfe9de;
}


.cgs-partner-result:last-child {
    border-right: 0;
}


.cgs-partner-result > strong {
    color: #43a74c;

    font-size: 22px;

    line-height: 1;
}


.cgs-partner-result span {
    display: block;

    color: #213a31;

    font-size: 13px;

    font-weight: 700;
}


.cgs-partner-result small {
    display: block;

    margin-top: 2px;

    color: #87938d;

    font-size: 10px;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes cgsPartnerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-9px);
    }
}


@keyframes cgsPartnerOrbitOne {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


@keyframes cgsPartnerOrbitTwo {

    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .cgs-partner-section {
        padding: 90px 0;
    }


    .cgs-partner-main {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .cgs-partner-visual {
        min-height: 470px;
    }


    .cgs-partner-benefits {
        max-width: 750px;

        margin: 0 auto;
    }


    .cgs-partner-results {
        grid-template-columns: repeat(2, 1fr);
    }


    .cgs-partner-result:nth-child(2) {
        border-right: 0;
    }


    .cgs-partner-result:nth-child(-n + 2) {
        border-bottom: 1px solid #dfe9de;

        padding-bottom: 20px;
    }


    .cgs-partner-result:nth-child(n + 3) {
        padding-top: 20px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .cgs-partner-section {
        padding: 70px 0;
    }


    .cgs-partner-container {
        padding-left: 15px;
        padding-right: 15px;
    }


    .cgs-partner-heading {
        margin-bottom: 35px;
    }


    .cgs-partner-label {
        font-size: 9px;

        letter-spacing: 2px;

        padding: 7px 14px;
    }


    .cgs-partner-heading h2 {
        margin-top: 17px;

        font-size: 38px;

        letter-spacing: -1.5px;
    }


    .cgs-partner-heading p {
        font-size: 14px;

        line-height: 1.7;
    }


    /* Visual */

    .cgs-partner-visual {
        min-height: 390px;

        transform: scale(0.85);

        margin: -20px 0;
    }


    .cgs-partner-orbit-one {
        width: 320px;
        height: 320px;
    }


    .cgs-partner-orbit-two {
        width: 235px;
        height: 235px;
    }


    .cgs-partner-center {
        width: 170px;
        height: 170px;
    }


    .cgs-partner-center strong {
        font-size: 21px;
    }


    .cgs-partner-float-one {
        left: 0;
    }


    .cgs-partner-float-two {
        right: 0;
    }


    .cgs-partner-float-three {
        left: 0;
    }


    .cgs-partner-float-four {
        right: 0;
    }


    /* Benefits */

    .cgs-partner-benefits {
        gap: 10px;
    }


    .cgs-partner-benefit {
        grid-template-columns: 30px 48px minmax(0, 1fr);

        gap: 10px;

        padding: 15px 8px;
    }


    .cgs-partner-benefit-icon {
        width: 48px;
        height: 48px;
    }


    .cgs-partner-benefit-content h3 {
        font-size: 15px;
    }


    .cgs-partner-benefit-content p {
        font-size: 12px;

        line-height: 1.55;
    }


    /* Results */

    .cgs-partner-results {
        grid-template-columns: 1fr;

        margin-top: 45px;

        padding: 15px;
    }


    .cgs-partner-result {
        border-right: 0 !important;

        border-bottom: 1px solid #dfe9de;

        padding: 18px 10px !important;
    }


    .cgs-partner-result:last-child {
        border-bottom: 0;
    }

}


/* =========================================
   VERY SMALL MOBILE
========================================= */

@media (max-width: 380px) {

    .cgs-partner-heading h2 {
        font-size: 33px;
    }


    .cgs-partner-visual {
        transform: scale(0.75);

        margin: -35px 0;
    }


    .cgs-partner-benefit {
        grid-template-columns: 25px 44px minmax(0, 1fr);

        gap: 8px;
    }


    .cgs-partner-benefit-icon {
        width: 44px;
        height: 44px;
    }

}