:root {

    --color-primary: #FF60E6;

    --color-secondary: #333333;
    --color-secondary-light: #666666;
    --color-accent: #007acc;
    --color-background: #F8F5F0;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text-primary: #1F392C;
    --font-primary: "Kulim Park", "SF Pro", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-secondary: "SF Pro", "Kulim Park", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

@font-face {
    font-family: "Kulim Park";
    src: url("fonts/KulimPark-Regular.woff2") format("woff2"),
        url("fonts/KulimPark-Regular.woff") format("woff"),
        url("fonts/KulimPark-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Kulim Park";
    src: url("fonts/KulimPark-Bold.woff2") format("woff2"),
        url("fonts/KulimPark-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro";
    src: url("fonts/SF Pro/SF-Pro-Text-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro";
    src: url("fonts/SF Pro/SF-Pro-Text-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

body {

    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--color-background);
}

*::-webkit-scrollbar {
    display: none;
}

.nav-container {

    width: 100%;
    height: 112px;

}

.nav-content {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
    max-width: 1200px;
    /* padding: 0 20px; */
    margin: 0 auto;



}

.nav-container .header {
    display: flex;
    align-items: center;
    gap: 10px;
    /* Space between logo and text */
}

/* 3. CLEAN UP: Remove the old manual margins! */
.nav-container .header span {
    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-primary);

}

.nav-container .nav-button {
    background-color: var(--color-primary);
    color: var(--color-text-primary);
    border: none;
    padding: 12px 32px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    border-radius: 100px;
    /* margin-right: 100px; <-- REMOVE THIS */
}

/* Your links CSS can stay mostly the same */
.nav-links ul {
    display: flex;
    padding: 0;
    margin: 0;
}

.nav-links a {
    font-family: var(--font-secondary);
    color: var(--color-text-primary);
    font-weight: 500;
    text-decoration: none;
    margin: 0 15px;
    font-size: 20px;
}

.nav-links ul li {
    list-style-type: none;
}

.nav-links a:hover {
    text-decoration: underline;
}



/* hero section */


.hero-section {

    height: 80vh;
    width: 100%;
    margin: auto;
    align-content: center;
    position: relative;
    text-align: center;
}

.hero-section .hero-image {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: none;
    z-index: 1;
    object-fit: cover;
    pointer-events: none;
}

/* for shape img */
.hero-section .hero-image img,
.partner-shape img,
.review-shape img {
    position: absolute;
    display: block;
    max-width: none;
    height: auto;
}

.hero-image .curve {
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
}

.hero-image .rightside-curve {
    top: 30%;
    right: 0;
    height: 100%;
    width: auto;
}

.hero-image .rightside-hand {
    top: 50%;
    right: 0;
    height: 100%;
    width: auto;
}

.hero-image .rightside-facebook {
    top: 25%;
    right: 0;
    height: 100%;
    width: auto;
}

.hero-image .rightside-bulb {
    top: 35%;
    right: 15%;
    height: 100%;
    width: auto;
}

.hero-image .rightside-youtube {
    bottom: 19%;
    right: 9%;
    height: 100%;
    width: auto;
}

.hero-image .instagram {
    height: 100%;
    width: auto;
    top: 35%;
    left: 2%;

}

.hero-image .facebook {
    height: 100%;
    width: auto;
    bottom: 18%;
    left: 8%;

}

.hero-image .bulb {
    height: 100%;
    width: auto;
    top: 35%;
    left: 15%
}

.hero-image .line {
    height: 100%;
    width: auto;
    top: 32%;
    left: 21%;

}

.hero-section .hero-title {
  
    font-size: 105px;
    color: var(--color-text-primary);
    font-family: var(--font-secondary);
    margin-bottom: 20px;
    font-weight: 700;
  
    /* letter-spacing: 1px; */
}

.hero-section .hero-subtitle {
    font-size: 20px;
    color: var(--color-text-primary);
    margin: auto;
    font-weight: 400;
    font-family: var(--font-secondary);
    line-height: 1.5;
    max-width: 800px;
    margin-bottom: 50px;
}

.hero-input {
    margin-top: 30px;
    padding: 10px 20px;
    border: 1px solid transparent;
    width: 50%;
    border-radius: 100px;
    font-size: 16px;
}

/* Keeps the button locked inside */
.input-wrapper {
    align-items: center;
    margin: auto;
    justify-items: center;
    text-align: center;
    display: flex;
    border-radius: 50px;
    padding: 5px 10px;
    width: 100%;
    max-width: 500px;
    background-color: var(--color-white);
}

/*  The Input: Needs extra space on the right */
.hero-input {
    margin: auto;
    border: none;
    width: 80%;
    padding: 12px 20px;
    font-size: 16px;
    outline: none;

}

/*  The Button: Floats on the right side */
.join-button {
    align-items: center;
    background: var(--color-primary);
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    font-family: var(--font-secondary);
    color: var(--color-text-primary);
    padding: 12px 32px;
    border-radius: 24px;
}

.join-button:hover {
    background-color: var(--color-primary);
    color: var(--color-black);
}

.hero-section .hero-title,
.hero-section .hero-subtitle,
.hero-section .input-wrapper {
    position: relative;
    z-index: 2;
}

/* partner section */

.partner-section {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    font-family: var(--font-secondary);
    color: var(--color-text-primary);
}

/* partner shape  */
.partner-shape {
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    position: absolute;
    z-index: -1;
}

.partner-shape .curve {
    top: 0;
    left: 0;
    height: auto;
    width: auto;
}

.partner-shape .line {
    top: 23%;
    left: 48%;
    height: auto;
    width: auto;
}



.partner-section .partner-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.partner-section .partner-card {

    margin: 0 auto;

    width: 75%;
    /* max-width: 1200px; */
    height: 340px;
    background-color: var(--color-white);
    border-radius: 24px;

}


/* inner layout: left column + horizontal list on the right */
.partner-card-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

/* left side */
.partner-left {
    padding-left: 104px;
    align-items: center;
    justify-content: center;
}

.partner-left span {

    font-size: 48px;

    font-family: var(--font-secondary);
    font-weight: 700;
}

.partner-left p {

    font-size: 20px;
    line-height: 1.4;
    word-spacing: 8px;

    max-width: 520px;
}

/* right list: horizontal cards, scrollable on narrow screens  */
.partner-list {
    position: absolute;
    top: 45%;
    left: 55%;
    right: 0;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 6px;

}


/* individual partner card */
.partner-item {
    width: 404px;


    background: linear-gradient(135deg, #FF7CE0 0%, #FF60E6 100%);

    border-radius: 18px;
    padding: 24px;
    gap: 16px;

}

.partner-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-item-title {

    width: 100%;
    display: flex;
    align-items: center;

    justify-content: space-between;

}


/* partner content inside card */

.partner-year {
    font-weight: 700;
    margin-bottom: 8px;
    color: rgba(0, 0, 0, 0.9);
}

.partner-item p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;

    font-weight: 400;
    color: var(--color-text-primary);
    text-align: justify;
}

/* partner card responsive */
@media (max-width: 1200px) {
    .partner-section .partner-card {

        width: 100%;
    }



    .partner-left p {
        max-width: 40%;
    }

    .partner-list {

        top: 50%;
        left: 50%;
        right: auto;
        width: 50%;

    }
}

.partner-shape .line img {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
}

/* how we work section */
.how-work-section {
    margin-top: 50px;
    padding: 64px 0px;
    color: var(--color-text-primary);
    font-family: var(--font-secondary);
    position: relative;
    text-align: center;
}

.how-work-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
}

.how-work-content-body {
    width: 100%;
    height: 100%;
    margin-top: 50px;
    padding: 64px 0px;
    text-align: center;
    position: relative;

}

.how-work-content-end {
    width: 100%;
    height: 100%;

    text-align: center;
    position: relative;
}

.how-work-content-end .card1,
.card2,
.card3 {
    display: flex;
    gap: 30px;
    justify-content: center;
    width: 60%;
    margin: 0 auto;
    padding: 60px;


}

.how-work-content-end .card1 .title,
.how-work-content-end .card2 .title,
.how-work-content-end .card3 .title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;


}

.how-work-content-end .card1 .subtitle,
.how-work-content-end .card2 .subtitle,
.how-work-content-end .card3 .subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
}

.how-work-content-body .how-work-subtitle {
    margin: 60px 0px;
    font-size: 32px;
    line-height: 1.2;
    word-spacing: 8px;
    font-weight: 700;
    margin-bottom: 20px;
}

.how-work-content-body .how-work-subtitle2 {
    margin: 60px 0px;
    font-size: 20px;
    line-height: 1.2;
    word-spacing: 8px;
    font-weight: 400;
}

.how-work-content-body .how-work-image .hand {
    position: absolute;
    top: -20%;
    left: 0%;
    width: auto;
    height: auto;
}

.how-work-content-body .how-work-image .right-hand {
    position: absolute;
    bottom: -10%;
    right: 0%;
    width: auto;
    height: auto;
}

.how-work-content-body .how-work-image .right-vector {
    position: absolute;
    top: 20%;
    right: 0%;
    width: auto;
    height: auto;
}

.how-work-content-body .how-work-image .right-love {
    position: absolute;
    top: 25%;
    right: 13%;
    width: auto;
    height: auto;
}

.how-work-content-body .how-work-image .left-love {
    position: absolute;
    top: 45%;
    left: 10%;
    width: auto;
    height: auto;
}

.how-work-content-body .how-work-image .left-vector {
    position: absolute;
    top: -5%;
    left: 0%;
    width: auto;
    height: auto;
}

/* review section */
.review-section {
    justify-content: center;
    height: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 64px 160px;

    font-family: var(--font-secondary);
    color: var(--color-text-primary);
}

.review-section .review-label {
    font-size: 20px;
    text-align: center;
    margin-bottom: 100px;
}

.review-section .review-title {

    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;

}


.review-section .review-title img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
    height: 1.05em;
    width: auto;
}

.review-shape .vector1 {
    width: auto;
    height: auto;
    z-index: -1;
    top: 11%;
    left: 30%;

}

.review-shape .vector2 {
    width: auto;
    height: auto;
    z-index: -1;
    top: 19%;
    left: 23%;
}

/* Review Carousel Layout */
.review-carousel-container {
    width: 100%;
    margin-top: 50px;
    font-family: var(--font-secondary);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-right: 20px;
    /* safety padding */
}

.review-header-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--color-text-primary);
}

.review-nav-buttons {
    display: flex;
    gap: 16px;
}

.nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--color-text-primary);
}

.nav-btn:hover {
    background-color: var(--color-primary);
    /* Pink hover */
    border-color: var(--color-primary);
    color: var(--color-black);
}

.nav-btn svg {
    display: block;
}

/* Carousel Scroll Area */
.review-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.review-track {
    display: flex;
    overflow-x: auto;
    gap: 24px;
    padding-bottom: 20px;

    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;

}

.review-track::-webkit-scrollbar {
    display: none;
}

/* Individual Review Card */
.review-card-item {
    min-width: 350px;
    width: 508px;
    background-color: #FFADF2;


    border-radius: 16px;
    padding: 24px 56px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.review-card-item-2 {
    background-color: var(--color-primary);
}

.review-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 5px;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-name {

    font-size: 32px;
    font-weight: 500;
    color: var(--color-text-primary);
}



.client-review {
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
    color: var(--color-text-primary);
    opacity: 0.9;
}

/* charity section */
.charity-section {

    display: flex;
    justify-content: center;
    margin: 0 auto;
    margin-top: 10%;
    height: 515px;
    color: var(--color-text-primary);
    font-family: var(--font-secondary);
    gap: 20px;
}

.charity-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-radius: 20px;
    padding: 0;

    padding-top: 40px;
    width: 45%;
    background-color: var(--color-primary);
    overflow: hidden;
}

.charity-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 20px;
    padding: 56px 0px 0px 56px;
    width: 45%;
    background-color: var(--color-white);
}

.charity-down-content {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    width: 85%;
    padding: 0 40px 40px;
    /* Padding for text */
    color: var(--color-text-primary);
}

.charity-down-content2 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
    width: 90%;
}

.charity-up-image {
    display: flex;
    gap: 41px;
    /* User preferred gap */
    white-space: nowrap;
    /* Prevent wrapping */
    padding-left: 01px;
    margin-bottom: 0px;
}


.charity-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

/* Footer Section */
.footer-section {
    width: 100%;
    background-color: var(--color-background);
    color: var(--color-text-primary);
    font-family: var(--font-secondary);
    padding: 100px 0 50px;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

.footer-subtitle {
    font-size: 18px;
    color: var(--color-text-primary);
    margin-bottom: 50px;
}

/* Footer Input */
.footer-input-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto 100px;
    display: flex;
    align-items: center;
    border-radius: 100px;
    padding: 8px;
    background-color: var(--color-white);
}

.footer-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 100px;
    color: var(--color-text-primary);
}


.footer-join-btn {
    background-color: var(--color-primary);
    color: #000;
    border: none;
    padding: 12px 35px;
    border-radius: 100px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.2s;
}

.footer-join-btn:hover {
    background-color: var(--color-primary)
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;


    padding-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--color-text-primary);
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 400;
    font-size: 20px;
}

.footer-nav a:hover {
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a img {
    width: 24px;
    height: 24px;
    display: block;
}

@media (max-width: 768px) {
    .footer-title {
        font-size: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;

}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: transparent;

    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}


/* animaton  */

.text-focus-in {
    -webkit-animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
    animation: text-focus-in 1s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.shake-lr {
    -webkit-animation: shake-lr 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
    animation: shake-lr 6s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

.heartbeat {
    -webkit-animation: heartbeat 6s ease-in-out infinite both;
    animation: heartbeat 6s ease-in-out infinite both;
}

@-webkit-keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@keyframes text-focus-in {
    0% {
        -webkit-filter: blur(12px);
        filter: blur(12px);
        opacity: 0;
    }

    100% {
        -webkit-filter: blur(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

@-webkit-keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@keyframes heartbeat {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    10% {
        -webkit-transform: scale(0.91);
        transform: scale(0.91);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    17% {
        -webkit-transform: scale(0.98);
        transform: scale(0.98);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }

    33% {
        -webkit-transform: scale(0.87);
        transform: scale(0.87);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }

    45% {
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
}

@-webkit-keyframes shake-lr {

    0%,
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
    }

    10% {
        -webkit-transform: rotate(8deg);
        transform: rotate(8deg);
    }

    20%,
    40%,
    60% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }

    30%,
    50%,
    70% {
        -webkit-transform: rotate(10deg);
        transform: rotate(10deg);
    }

    80% {
        -webkit-transform: rotate(-8deg);
        transform: rotate(-8deg);
    }

    90% {
        -webkit-transform: rotate(8deg);
        transform: rotate(8deg);
    }
}