* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* ===== SECTION ===== */
.nxh-hero-wrap {
    padding: 60px 6%;
    z-index: 100;
    position: relative;
    /* < !--background: #0f0f0f;
    -->color: #fff; */
}

.nxh-hero-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

/* ===== LOGO IMAGE ===== */
.nxh-logo {
    margin-bottom: 30px;
}

.nxh-logo img {
    width: 140px;
    /* Logo size control */
    height: auto;
    display: block;
}

/* ===== LEFT CONTENT ===== */
.nxh-hero-content {
    flex: 1;
    text-align: left;
}

.nxh-main-heading {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.nxh-accent-text {
    color: #007bff;
    border-bottom: 4px solid #007bff;
    display: inline-block;
    padding-bottom: 4px;
}

.nxh-hero-para {
    color: #aaa;
    font-size: 18px;
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 40px;
}

/* ===== BUTTONS ===== */
.nxh-btn-group {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 55px;
}

.nxh-btn-primary {
    background: #007bff;
    color: #ffffff;
    padding: 14px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.nxh-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(169, 255, 92, 0.35);
}

.nxh-btn-secondary {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px solid #007bff;
    padding-bottom: 4px;
}

/* ===== STATS ===== */
.nxh-stats-row {
    display: flex;
    gap: 60px;
    border-top: 1px solid #222;
    padding-top: 40px;
}

.nxh-stat-block h3 {
    font-size: 32px;
    font-weight: 700;
}

.nxh-stat-block span {
    color: #007bff;
}

.nxh-stat-block p {
    color: #777;
    font-size: 14px;
    margin-top: 6px;
}

/* ===== RIGHT IMAGE ===== */
.nxh-hero-media {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nxh-hero-img {
    width: 100%;
    max-width: 650px;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 0 0 60px rgba(169, 255, 92, 0.08);
    background: black;
}

/* ===== TABLET ===== */
@media(max-width:992px) {

    .nxh-hero-container {
        flex-direction: column;
        gap: 60px;
    }

    .nxh-main-heading {
        font-size: 42px;
    }

    .nxh-hero-media {
        justify-content: center;
    }
}

/* ===== MOBILE ===== */
@media(max-width:600px) {

    .nxh-hero-wrap {
        padding: 50px 20px;
    }

    .yuv-services-wrapper {
        padding: 20px !important;
    }

    .nxh-hero-content {
        text-align: center;
    }

    .nxh-logo img {
        margin: 0 auto 20px;
        width: 110px;
    }

    .nxh-main-heading {
        font-size: 30px;
        line-height: 1.25;
    }

    .nxh-hero-para {
        font-size: 15px;
        margin: 0 auto 30px;
    }

    .nxh-btn-group {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        margin-bottom: 35px;
    }

    .nxh-btn-primary {
        padding: 10px 18px;
        font-size: 13px;
    }

    .nxh-btn-secondary {
        font-size: 13px;
    }

    .nxh-stats-row {
        justify-content: center;
        gap: 25px;
        padding-top: 25px;
        text-align: center;
    }

    .nxh-stat-block h3 {
        font-size: 22px;
    }

    .roas-slider-section {
        padding: 20px !important;
    }

}

.ymx-brand-section-wrap {
    padding: 40px 5%;
    /* background: #000; */
    display: flex;
    justify-content: center;
}

.ymx-brand-grid-layout {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    /* updated for 5 logos */
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

/* Box */
.ymx-brand-box-item {
    background: #0d0d0d;
    border: 1px solid #1f1f1f;
    border-radius: 14px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 100px;
}

.ymx-brand-box-item:hover {
    border-color: #2a2a2a;
    transform: translateY(-4px);
}

/* Logo */
.ymx-brand-logo-img {
    width: 100%;
    max-width: 190px;
    height: auto;
    object-fit: contain;
}

/* Tablet */
@media(max-width:992px) {
    .ymx-brand-grid-layout {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media(max-width:600px) {
    .ymx-brand-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }

    .ymx-brand-box-item {
        padding: 8px;
        min-height: 90px;
    }

    .ymx-brand-logo-img {
        max-width: 150px;
    }
}

.yx-sec {
    padding: 20px;
}

.yx-wrap {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.yx-left {
    flex: 1;
    min-width: 320px;
    color: #fff;
    text-align: left !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start !important;
}

.yx-tag {
    color: #007bff;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
}

.yx-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: black;
}

.yx-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.yx-item {
    display: flex;
    gap: 15px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.yx-item p {
    font-size: 17px;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

.yx-item b {
    color: #000000;
}

.yx-icon {
    width: 42px;
    height: 42px;
    background: #007bff17;
    color: #007bff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

.yx-accent {
    color: #007bff;
    font-weight: 600;
}

/* RIGHT IMAGE */
.yx-right {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yx-img {
    width: 100%;
    max-width: 800px;
    height: 600px;
    border-radius: 20px;
    display: block;
    object-fit: contain;
}

/* RESPONSIVE FIXED */
@media (max-width: 768px) {

    .yx-wrap {
        flex-direction: column;
        gap: 20px;
        /* gap reduce */
    }

    .yx-title {
        font-size: 32px;
    }

    .yx-item p {
        font-size: 14px;
    }

    .yx-right {
        margin: 0;
        padding: 0;
    }

    .yx-img {
        max-width: 100%;
        height: auto;
        /* fixed height removed */
        margin: 0;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


/* ====== SERVICES SECTION ====== */
.yuv-services-wrapper {
    padding: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* background: #000; */
}

/* 🔥 GREEN GLOW */
.yuv-services-wrapper::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 900px;
    height: 900px;
    transform: translate(-50%, -50%);
    /* background: radial-gradient(circle,
            rgba(0, 123, 255, 0.75) 0%,
            rgba(0, 123, 255, 0.45) 20%,
            rgba(0, 123, 255, 0.20) 35%,
            rgba(0, 0, 0, 0.98) 55%); */
    z-index: 0;
    pointer-events: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Content above glow */
.yuv-services-wrapper>* {
    position: relative;
    z-index: 1;
}

/* Title */
.yuv-services-heading {
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #000000;
}

/* Subtext */
.yuv-services-subtext {
    max-width: 750px;
    margin: 0 auto 80px;
    color: #000000;
    line-height: 1.8;
    font-size: 16px;
}

/* Grid */
.yuv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card */
.yuv-service-box {
    background: #ffffff;
    border: 1px solid #007bff8c;
    border-radius: 22px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
    transition: all 0.35s ease;
    text-align: left;
    box-shadow:
        0 0 0 1 rgba(255, 255, 255, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.7);
}

/* Hover effect */
.yuv-service-box:hover {
    transform: translateY(-8px);
    border-color: #007bff;
    box-shadow:
        0 0 0 1 #007bff,
        0 20px 45px rgba(169, 255, 92, 0.45);
}

/* Icon */
.yuv-service-icon {
    font-size: 36px;
    background: #007bff;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    border: 1px solid #2a2a2a;
    transition: 0.3s ease;
}

.yuv-service-box:hover .yuv-service-icon {
    background: #007bff;
    color: #000;
    box-shadow: 0 0 28px rgba(169, 255, 92, 0.9);
}

/* Text */
.yuv-service-title {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}

/* Center last item in 3 column layout */
.yuv-services-grid>.yuv-service-box:last-child:nth-child(3n+1) {
    grid-column: 2 / 3;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media(max-width:992px) {
    .yuv-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .yuv-services-grid>.yuv-service-box:last-child:nth-child(2n+1) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 450px;
        width: 100%;
    }

    .yuv-service-box {
        padding: 24px 28px;
        gap: 18px;
    }

    .yuv-service-icon {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .yuv-service-title {
        font-size: 17px;
    }

    .yuv-services-heading {
        font-size: 36px;
    }

    .yuv-services-subtext {
        font-size: 15px;
        margin-bottom: 60px;
    }
}

/* Mobile - 2 column layout */
@media(max-width:600px) {

    .yuv-services-heading {
        font-size: 28px;
    }

    .yuv-services-subtext {
        font-size: 14px;
        margin-bottom: 40px;
    }

    .yuv-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .yuv-service-box {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 18px 12px;
        gap: 12px;
        text-align: center;
    }

    .yuv-service-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }

    .yuv-service-title {
        font-size: 15px;
    }

}

.roas-slider-section {
    overflow: hidden;
    position: relative;
    padding: 100px;
}

.roas-main-heading {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #007bff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.roas-sub-heading {
    text-align: center;
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 60px;
    line-height: 1.2;
}

.roas-slider-wrapper {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

.roas-slider-track {
    display: flex;
    transition: 0.6s ease-in-out;
}

.roas-slide-item {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.roas-slide-image {
    flex: 1;
    text-align: center;
}

.roas-slide-image img {
    width: 100%;
    max-width: 500px;
    height: 700px;
    border-radius: 12px;
    display: block;
    margin: auto;
}

.roas-slide-content {
    flex: 1;
    text-align: left;
}

.roas-slide-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 40px;
}

.roas-stat-row {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.roas-stat-box {
    background: #007bff;
    border: 1px solid #007bff;
    color: #ffffff;
    font-size: 36px;
    font-weight: bold;
    padding: 18px 35px;
    margin-right: 25px;
    border-radius: 8px;
    flex-shrink: 0;
}

.roas-stat-text {
    font-size: 22px;
    color: #000000;
    flex: 1;
}

.roas-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.roas-nav-btn {
    background: #e2e5e8;
    color: #007bff;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    font-size: 18px;
    font-weight: normal;
    border-radius: 8px;
    transition: 0.3s;
}

.roas-nav-btn:hover {
    color: white;
    background: #007bff;
}

@media(max-width:992px) {
    .roas-slide-item {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .roas-slide-content {
        text-align: center;
    }

    .roas-slide-image img {
        max-width: 100%;
        height: auto;
    }

    .roas-slide-content h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .roas-stat-row {
        flex-direction: column;
        margin-bottom: 20px;
    }

    .roas-stat-box {
        margin-right: 0;
        margin-bottom: 8px;
        width: 100%;
    }

    .roas-stat-text {
        font-size: 18px;
    }

    .roas-sub-heading {
        font-size: 34px;
    }
}

@media(max-width:600px) {
    .roas-sub-heading {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .roas-slide-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0 10px;
    }

    .roas-slide-content {
        text-align: center;
    }

    .roas-slide-content h2 {
        font-size: 22px;
        margin-bottom: 20px;
    }

    .roas-stat-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
    }

    .roas-stat-box {
        font-size: 24px;
        padding: 12px 25px;
        margin: 5px;
        width: 45%;
    }

    .roas-stat-text {
        font-size: 16px;
        width: 100%;
        margin-bottom: 10px;
    }

    .roas-slide-image img {
        max-width: 90%;
        margin-bottom: 10px;
        height: auto;
    }
}

/* ===== LOGO CAROUSEL SECTION ===== */
.logo-carousel-section {
    padding: 60px 0;
    /* background: #000; */
    overflow: hidden;
    position: relative;
}

/* Fade edges */
.logo-carousel-section::before,
.logo-carousel-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logo-carousel-section::before {
    left: 0;
    /* background: linear-gradient(to right, #000 0%, transparent 100%); */
}

.logo-carousel-section::after {
    right: 0;
    /* background: linear-gradient(to left, #000 0%, transparent 100%); */
}

/* Track */
.logo-carousel-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 40s linear infinite;
}

/* Logo Box */
.logo-carousel-item {
    flex-shrink: 0;
    border: 2px solid #007bff4f;
    /* ✅ Green Border */
    border-radius: 18px;
    overflow: hidden;
}

/* Image */
.logo-carousel-item img {
    height: 120px;
    /* ✅ Big Size */
    width: auto;
    display: block;
    object-fit: contain;
}

/* Hover */
.logo-carousel-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(169, 255, 92, 0.4);
    transition: 0.3s ease;
}

/* Infinite animation */
@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px) {
    .logo-carousel-item img {
        height: 85px;
    }
}

#yv-reel-section {
    /* background: #0a0a0a; */
    color: #fff;
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* ===== Heading ===== */
#yv-reel-section .main-heading {
    font-size: 14px;
    letter-spacing: 3px;
    color: #007bff;
    margin-bottom: 10px;
    text-transform: uppercase;
}

#yv-reel-section .sub-heading {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Fade edges */
#yv-reel-section::before,
#yv-reel-section::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

#yv-reel-section::before {
    left: 0;
    /* background: linear-gradient(to right, #0a0a0a, transparent); */
}

#yv-reel-section::after {
    right: 0;
    /* background: linear-gradient(to left, #0a0a0a, transparent); */
}

/* Track */
#yv-reel-section .reel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: yvReelScroll 25s linear infinite;
}

#yv-reel-section:hover .reel-track {
    animation-play-state: paused;
}

/* Reel Card */
#yv-reel-section .reel {
    width: 200px;
    height: 360px;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    transition: transform 0.4s ease;
}

#yv-reel-section .reel:hover {
    transform: scale(1.08);
}

#yv-reel-section .reel iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Animation */
@keyframes yvReelScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mobile */
@media (max-width: 600px) {
    #yv-reel-section .sub-heading {
        font-size: 22px;
        margin-bottom: 30px;
    }

    #yv-reel-section .reel {
        width: 160px;
        height: 280px;
    }

    .yv-why-section {
        padding: 20px !important;
    }
}

/* ================= SECTION ================= */
.yv-why-section {
    padding: 100px;
    position: relative;
    overflow: hidden;
}

.yv-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    gap: 80px;
    /* slightly reduced gap */
    align-items: flex-start;
}

/* ================= LEFT SIDE ================= */
.yv-left {
    flex: 1;
}

/* ===== GROWTH BOX ===== */
.yv-growth-box {
    background: linear-gradient(145deg, #161616, #0c0c0c);
    padding: 25px;
    /* Reduced padding inside growth box */
    border-radius: 32px;
    margin-bottom: 50px;
    border: 1px solid rgba(169, 255, 92, 0.18);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
    transition: 0.4s ease;
}

.yv-growth-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(169, 255, 92, 0.18);
}

/* ===== IMAGE FIX + BRIGHT ===== */
.yv-growth-image {
    width: 100%;
    height: 250px;
    /* Slightly bigger */
    object-fit: contain;
    margin-bottom: 0;
    filter: brightness(1.15) drop-shadow(0 0 30px rgba(169, 255, 92, 0.6));
}

/* ================= FEATURE GRID ================= */
.yv-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    /* slightly reduced gap between boxes */
}

.yv-feature-card {
    background: #000000;
    padding: 20px;
    /* Reduced padding inside cards */
    border-radius: 24px;
    border: 1px solid #1f1f1f;
    transition: 0.35s ease;
}

.yv-feature-card:hover {
    border-color: #007bff;
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(169, 255, 92, 0.12);
}

.yv-feature-icon {
    width: 42px;
    margin-bottom: 12px;
    /* reduced spacing under icon */
    filter: drop-shadow(0 0 12px rgba(169, 255, 92, 0.4));
}

.yv-feature-card h4 {
    margin-bottom: 8px;
    /* reduced spacing under heading */
    font-size: 20px;
    color: white;
}

.yv-feature-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.5;
    /* reduced line height */
}

/* ================= RIGHT SIDE ================= */
.yv-right {
    flex: 1;
}

.yv-tag {
    color: #007bff;
    letter-spacing: 3px;
    font-size: 13px;
    margin-bottom: 15px;
    /* reduced spacing */
    text-transform: uppercase;
}

.yv-main-heading {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    /* reduced spacing */
}

.yv-description {
    color: #bbb;
    margin-bottom: 40px;
    /* reduced spacing */
    line-height: 1.6;
    /* tighter line height */
    font-size: 17px;
    max-width: 520px;
}

.yv-point {
    padding: 20px 0;
    /* reduced padding */
    border-bottom: 1px solid #1a1a1a;
    transition: 0.3s;
}

.yv-point:hover {
    padding-left: 8px;
    /* reduced left shift */
}

.yv-point span {
    color: #007bff;
    font-weight: 700;
    margin-right: 10px;
    /* reduced spacing */
}

.yv-point h5 {
    font-size: 22px;
    margin-bottom: 8px;
    /* reduced spacing */
}

.yv-point p {
    color: #999;
    font-size: 15px;
    line-height: 1.5;
    /* tighter line height */
}

/* ================= RESPONSIVE ================= */
@media(max-width:992px) {

    .yv-container {
        flex-direction: column;
        gap: 50px;
        /* reduced gap on mobile */
    }

    .yv-main-heading {
        font-size: 38px;
    }

    .yv-feature-grid {
        grid-template-columns: 1fr;
    }

}

.zrx-section-wrapper {
    padding: 100px;
    /* background: #000; */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.zrx-section-heading {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 60px;
}

.zrx-section-heading span {
    color: #007bff;
}

/* Grid */
.zrx-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    /* slightly tighter */
}

/* Card */
.zrx-card-item {
    background: #ffffff;
    border: 1px solid #007bff;
    border-radius: 14px;
    padding: 18px 18px;
    /* 🔥 REDUCED PADDING */
    transition: 0.3s ease;
    display: flex;
    gap: 14px;
    align-items: center;
    /* 🔥 PERFECT CENTER ALIGN */
}

.zrx-card-item:hover {
    transform: translateY(-6px);
    border-color: #007bff50;
    box-shadow: 0 10px 30px rgba(169, 255, 92, 0.08);
}

/* Icon */
.zrx-card-icon {
    font-size: 30px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007bff;
    border-radius: 10px;
}

/* Content */
.zrx-card-content h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.zrx-card-content p {
    font-size: 13px;
    color: #000000;
    line-height: 1.5;
}

/* Tablet */
@media(max-width:992px) {
    .zrx-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .zrx-section-heading {
        font-size: 30px;
    }
}

/* Mobile */
@media(max-width:600px) {

    .zrx-section-wrapper {
        padding: 60px 20px;
    }

    .zrx-section-heading {
        font-size: 22px;
        margin-bottom: 40px;
    }

    .zrx-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .zrx-card-item {
        padding: 16px;
    }

    #yv-growth-form-wrapper .yv-form-container {
        margin-bottom: 50px !important;
    }

}

.ymx-growth-cta-wrapper {
    /* background: #000; */
    padding: 10px 0 0 0;
    /* bottom padding remove */
    margin-bottom: 0;
    text-align: center;
}

.ymx-growth-cta-badge {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #007bff;
    color: #007bff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.ymx-growth-cta-heading {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.1;
    color: #f1f1f1;
    max-width: 1000px;
    margin: 0 auto 15px;
    /* bottom margin reduce */
}

.ymx-growth-highlight {
    color: #007bff;
}

.ymx-growth-cta-desc {
    max-width: 850px;
    margin: 0 auto;
    /* bottom margin remove */
    font-size: 16px;
    color: #9c9c9c;
    line-height: 1.8;
}

/* Responsive */

@media(max-width:992px) {
    .ymx-growth-cta-heading {
        font-size: 48px;
    }
}

@media(max-width:600px) {

    .ymx-growth-cta-wrapper {
        padding: 10px 0 0 0;
        /* mobile me bhi bottom padding remove */
    }

    .ymx-growth-cta-heading {
        font-size: 34px;
    }

    .ymx-growth-cta-desc {
        font-size: 14px;
    }
}

/* =========================
   UNIQUE FORM CSS
========================= */

#yv-growth-form-wrapper {
    width: 100%;
    padding: 40px 20px;
    /* background: #000000; */
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

#yv-growth-form-wrapper .yv-form-container {
    max-width: 1100px;
    margin: auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

#yv-growth-form-wrapper h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 34px;
    color: #111827;
    font-weight: 700;
}

/* GRID */

#yv-growth-form-wrapper .yv-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* FORM GROUP */

#yv-growth-form-wrapper .yv-form-group {
    display: flex;
    flex-direction: column;
}

#yv-growth-form-wrapper .yv-form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1f2937;
    text-align: left;
}

/* INPUTS */

#yv-growth-form-wrapper input,
#yv-growth-form-wrapper select,
#yv-growth-form-wrapper textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
    box-sizing: border-box;
    background: #fff;
}

#yv-growth-form-wrapper input:focus,
#yv-growth-form-wrapper select:focus,
#yv-growth-form-wrapper textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* FULL WIDTH */

#yv-growth-form-wrapper .yv-full-width {
    margin-top: 25px;
}

/* CHECKBOX GRID */

#yv-growth-form-wrapper .yv-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 12px;
}

#yv-growth-form-wrapper .yv-checkbox-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f9fafb;
    padding: 14px;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    transition: 0.3s ease;
}

#yv-growth-form-wrapper .yv-checkbox-item:hover {
    border-color: #2563eb;
    background: #eff6ff;
}

#yv-growth-form-wrapper .yv-checkbox-item input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

#yv-growth-form-wrapper .yv-checkbox-item span {
    font-size: 14px;
    color: #374151;
}

/* CONFIRM */

#yv-growth-form-wrapper .yv-confirm-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 30px;
    margin-bottom: 30px;
}

#yv-growth-form-wrapper .yv-confirm-group input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
}

#yv-growth-form-wrapper .yv-confirm-text {
    font-size: 14px;
    line-height: 1.7;
    color: #4b5563;
}

/* BUTTON */

#yv-growth-form-wrapper .yv-submit-btn {
    width: 100%;
    border: none;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: #fff;
    padding: 18px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

#yv-growth-form-wrapper .yv-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.25);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    #yv-growth-form-wrapper {
        padding: 20px 14px;
    }

    #yv-growth-form-wrapper .yv-form-container {
        padding: 24px;
    }

    #yv-growth-form-wrapper h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    #yv-growth-form-wrapper .yv-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    #yv-growth-form-wrapper .yv-checkbox-grid {
        grid-template-columns: 1fr;
    }

    #yv-growth-form-wrapper .yv-confirm-group {
        gap: 10px;
    }

    #yv-growth-form-wrapper .yv-submit-btn {
        padding: 16px;
        font-size: 16px;
    }
}

.yv-submit-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.yv-btn-loader {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yv-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: yvSpin 0.7s linear infinite;
}

@keyframes yvSpin {
    to {
        transform: rotate(360deg);
    }
}