* {
    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: 56px;
    font-weight: 600;
    margin-top: 120px;
}

/* .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);

}

/* Outer section with background image */
.vidoe-bg {
    position: relative;
    width: 100%;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* ✅ Use a pseudo-element for background image */
.vidoe-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url(../img/shap/cricle-img.png) no-repeat left;
    background-size: contain;
    opacity: 1;
    z-index: 0;
    left: 0;
}

.collaborate-video {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: end;
    align-items: center;
}

/* Wrapper for video */
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* height: 450px; */
    display: flex;
    justify-content: end;
}

.video-wrapper video {
    width: 78%;
    height: 290px;
    border-radius: 15px;
    display: block;
    object-fit: cover;
    background-color: var(--white);
    border: 10px solid var(--white);
    box-shadow: rgb(255 88 94 / 18%) 0px 2px 8px 0px;
    /* object-fit: contain; */
}

/* === Play Button === */
.play-btn {
    position: absolute;
    right: 50px;
    bottom: -17px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    overflow: visible;
}

/* SVG play icon inside */
.play-btn img {
    width: 40px;
    height: 40px;
    z-index: 2;
    /* filter: invert(1); */
}

/* Pulse animation layers */
.play-btn::before,
.play-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 75, 43, 0.4);
    animation: pulse 2s infinite;
    z-index: 1;
}

.play-btn::after {
    animation-delay: 0.6s;
}

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

    70% {
        transform: scale(2.3);
        opacity: 0;
    }

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

/* === 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_wrapper .whatapp-text {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer_wrapper .div-wp-icon img {
    height: 20px;
    width: 20px;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.footer_wrapper .div-wp-icon img:hover {
    transform: rotate(15deg) scale(1.1);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
}

/* --- Text --- */
.footer_wrapper .footer-content-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    font-family: var(--font-family);
    margin-bottom: 4px;
}

.footer_wrapper .footer-number a {
    font-size: 16px;
    text-decoration: none;
    color: var(--white);
    font-family: var(--font-family);
    transition: color 0.3s ease;
}


/* --- Social Icons --- */
.footer_wrapper .main-social-media-icon a {
    height: 34px;
    width: 34px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.footer_wrapper .main-social-media-icon a img {
    height: 18px;
    width: 18px;
    transition: transform 0.3s ease;
}

/* Hover effects */
.footer_wrapper .main-social-media-icon a:hover {
    background: var(--them-color);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.footer_wrapper .main-social-media-icon a:hover img {
    transform: rotate(360deg);
    filter: brightness(0) invert(1);
}


/* === 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 === */


.padding-left-100 {
    padding-left: 100px !important;
}


.phone-frame {
    width: 320px;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.slides {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: transform 0.5s ease-in-out;
    /* padding-top: 20px; */
}

.slide {
    width: 100%;
    height: 100%;
    position: relative;
    /* padding: 20px 0px; */
}

.slide img {
    width: 100%;
    height: 97%;
    object-fit: cover;
    /* padding-top: 20px; */
    object-position: center;
    border-radius: 0px;
}

.caption {
    position: absolute;
    bottom: 20px;
    left: 10px;
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-shadow: 0 0 5px black;
}

.banner_wrapper .banner-main-img .phone-frame {
    width: 240px;
    height: 500px;
    position: relative;
    border-radius: 20px;
    overflow: hidden !important;
    margin-top: 53px;
    display: flex;
    justify-content: center;
    align-items: center;
    isolation: isolate;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.banner_wrapper .banner-main-img .phone-frame::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/mobile-frem-main2.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
    pointer-events: none;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px; */
}

.banner_wrapper .banner-main-img .phone-frame .slides {
    width: calc(100% + 14px);
}

.slides {
    transform: translateZ(0);
    backface-visibility: hidden;
}


.banner_wrapper .banner-main-img .phone-frame::after {
    content: "";
    position: absolute;
    bottom: -26px;
    left: 0;
    width: 100%;
    height: 64px;
    background: #ffffff !important;
    z-index: 0;
    pointer-events: none;
}