* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --them-color: #FF585F;
    --white: #fff;
    --black: #000;
    --primary: #412628;
    --font-family: "Poppins", Arial, sans-serif;
}

/* ==== basic css start === */

.section-padding {
    padding: 80px 0;
}

.section-padding-top {
    padding-top: 80px;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

.section-margin {
    margin: 80px 0;
}

.section-margin-top {
    margin-top: 80px;
}

.section-margin-bottom {
    margin-bottom: 80px;
}

/* ==== basic css end === */


/* === Banner section Start === */
.banner_wrapper {
    position: relative;
    width: 100%;
    height: 560px;
    /* overflow: hidden;     */
    /* hides overflow from skew */
}

.banner_wrapper::before {
    content: "";
    position: absolute;
    top: -120px;
    /* adjust to control angle */
    left: 0;
    width: 100%;
    height: 120%;
    /* extra height for skew */
    background: linear-gradient(80deg,
            rgba(255, 157, 0, 1) 0%,
            rgba(255, 129, 18, 1) 12%,
            rgba(255, 107, 210, 1) 41%,
            rgba(135, 108, 255, 1) 76%,
            rgba(0, 255, 30, 1) 100%);
    transform: skewY(6deg);
    /* diagonal effect */
    transform-origin: bottom right;
    z-index: -1;
    animation: waveGradient 8s ease-in-out infinite;
    background-size: 200% 200%;
}

@keyframes waveGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


.banner_wrapper .main-logo img {
    width: 155px;
    height: 40px;
    margin-top: 40px;
}

.banner_wrapper .maib-banner-content {
    display: flex;
    gap: 20px;
}

.banner_wrapper .banner-title {
    font-family: var(--font-family);
    color: var(--black);
    font-size: 65px;
    font-weight: 600;
    margin-top: 70px;
}

/* .banner_wrapper .banner-main-img  {
    width: 300px;
    overflow: hidden;
} */
.banner_wrapper .banner-main-img video {
    width: 100%;
    height: 402px;
    object-fit: contain;
    margin-top: 96px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 22px;
    /* transition: transform 1.2s ease, opacity 1.2s ease; */
}



.banner-left-img {
    position: absolute;
    bottom: 0;
    /* top: auto; */
    top: 192px;
    right: 0;
    z-index: -1;

    display: flex;
    align-items: center;
}

.banner-left-img img {
    max-width: 476px;
    height: 480px;
    /* max-height: 500px; */
    display: block;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 12px 0 0 12px;
}

/* Left bottom image */
.banner-left-bottom-img {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}


.banner-left-bottom-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Right center image */
.banner-right-center-img {
    position: absolute;
    top: 78%;
    right: 175px;
    transform: translateY(-50%);
    /* vertically center */
    z-index: -1;
}

.banner-right-center-img img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* === Banner section End === */

/* === platform section start === */

.platform_wrapper .platform-text {
    font-size: 19px;
    font-family: var(--font-family);
    color: var(--black);
    font-weight: 400;
}

.platform_wrapper .launch-box {
    background-color: transparent;
    font-size: 20px;
    font-family: var(--font-family);
    border-radius: 30px;
    border: 1px solid var(--black);
    padding: 8px 15px;
    text-transform: uppercase;
    color: var(--black) !important;
}

.main-start-box {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    max-width: 402px;
    /* slightly wider for desktop */
    width: 100%;
    /* center horizontally */
    background: #FFEDED;
    border-radius: 29px;
    padding: 5px 8px;
    position: relative;
}

.main-start-box input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 15px;
    font-size: 18px;
    color: #333;
    font-family: var(--font-family);
    min-width: 0;
    /* fix flex shrinking issue */
}

.main-start-box input::placeholder {
    font-family: var(--font-family);
    color: var(--black);
    opacity: 0.7;
}

.start-btn {
    background: var(--them-color);
    border: none;
    color: var(--white);
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    /* keep text from wrapping */
}

.start-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* === platform section end === */

/* === collaborate start === */
.collaborate-img img {
    width: 100%;
    height: 350px;
    object-fit: contain;
    /* height: 100%; */
}

.collaborate_wrapper .collaborate-title {
    font-size: 40px;
    font-family: var(--font-family);
    color: var(--black);
    font-weight: 600;
}

.collaborate_wrapper .collaborate-text {
    font-size: 20px;
    font-family: var(--font-family);

}

/* === collaborate end === */



/* === footer start === */

.footer_wrapper {
    background-color: var(--them-color);
    padding-top: 60px;
}

.footer_wrapper .footer-logo img {
    width: 223px;
    height: 52px;

}

.footer_wrapper .footer-title {
    font-size: 30px;
    font-weight: 500;
    color: var(--white);
    font-family: var(--font-family);
}

.footer_wrapper .footer-contect .map-icon {
    height: 30px;
    width: 22px;
}

.footer_wrapper .footer-contect .mail-icon {
    height: 18px;
    width: 24px;
}

.footer_wrapper .footer-contect a {
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-family);
    font-size: 16px;
}

.footer_wrapper .footer-link {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 12px 0;
}

.footer_wrapper .footer-text {
    font-size: 18px;
    color: var(--white);
    font-family: var(--font-family);
    margin-bottom: 0px !important;
}

/* === footer end === */

/* === Process Section Styles === */
.process-wrapper {
    background: #412628;
    margin-top: 150px;
}

.process-wrapper .main-concept {
    display: flex;
    justify-content: space-between;
    /* gap: 40px; */
}

.process-wrapper .main-concept .concept-img {
    display: flex;
    justify-content: center;
}

.process-wrapper .main-concept .concept-img img {
    height: 100%;
    width: 180px;
}

.process-wrapper .main-concept .concept-title {
    font-size: 24px;
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 600;
}

.process-wrapper .main-concept .concept-text {
    font-size: 16px;
    color: var(--white);
    font-family: var(--font-family);
}


/* === main email section start ===== */

.onboarding-card {
    background: var(--them-color);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
    min-height: 200px;
    margin-top: -137px;
}


.card-title {
    font-size: 32px;
    color: var(--white);
    font-family: var(--font-family);
    font-weight: 500;
}


.onboarding_wrapper .email-signup-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.onboarding_wrapper .email-signup-form {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    width: 100%;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.onboarding_wrapper .email-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 18px;
    font-size: 16px;
    border-radius: 50px;
    font-family: var(--font-family);
    color: var(--white) !important;
    background: transparent;
}

.onboarding_wrapper .email-input::placeholder {
    color: var(--white) !important;
}

.start-now-btn {
    background: var(--white);
    /* change to your brand color */
    color: var(--black);
    border: none;
    outline: none;
    padding: 12px 24px;
    font-size: 16px;
    font-family: var(--font-family);
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.start-now-btn:hover {
    transform: scale(1.05);
}

.onboarding_wrapper {
    position: relative;
    z-index: 99;
}

.bottom-right-img {
    position: absolute;
    bottom: 0;
    top: 71px;
    right: 76px;
    max-width: 200px;
    /* adjust size as needed */
    pointer-events: none;
    z-index: -1;
}

.conncept-right-arrow {
    position: relative;
}

.process-arrow1 {
    position: absolute;
    right: -95px;
    top: 153px;
    height: 99px;
    width: auto;
}


/* === main email section end === */



/* === supplier section start === */

.suppliers-section {
    background-color: #FF585F;
    color: white;
    padding: 80px 0;
}

.suppliers-title {
    font-size: 45px;
    font-weight: 600;
    margin-bottom: 30px;
}

.suppliers-description {
    font-size: 19px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Tab Switch Container ===== */
.tab-switch {
    display: flex;
    position: relative;
    border: 2px solid #fff;
    border-radius: 40px;
    background: transparent;
    overflow: hidden;
    width: 420px;
    max-width: 100%;
    margin: 0 auto 40px;
}

/* Sliding active background */
.tab-switch .active-bg {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 50%;
    height: calc(100% - 4px);
    background: #fff;
    border-radius: 40px;
    transition: all 0.4s ease;
    z-index: 0;
}

/* Tab buttons */
.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--white);
    padding: 12px 0;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.tab-btn.active {
    color: #000;
}

/* ===== Content Grids ===== */
.tab-content {
    justify-content: center;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    opacity: 0;
    transform: translateY(20px);
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.tab-content.active {
    opacity: 1;
    transform: translateY(0);
    max-height: 1000px;
    /* enough to fit content */
}

/* ===== Items (Goods & Services) ===== */
.goods-item,
.service-item {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    padding: 8px 20px;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    cursor: default;
    width: 100%;
    text-align: center;
}









/* === supplier section end === */