.Testiblog_Neew_only_wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Left Visuals (Desktop Only) */
.Testiblog_Neew_only_visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.Testiblog_Neew_only_bg_shape {
    position: absolute;
    top: 50%;
    left: -20%;
    transform: translateY(-50%);
    width: 100%;
    height: 90vh;
    background-color: #47a8a8;
    border-radius: 50%;
}

.Testiblog_Neew_only_product {
       position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 75%;
    z-index: 2;
    
}

.Testiblog_Neew_only_chili {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 80px;
    transform: rotate(30deg);
}

/* Up and Down Animation for Cardamom */
@keyframes Testiblog_Neew_only_updown {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

.Testiblog_Neew_only_cardamom1 {
    position: absolute;
    top: 40%;
    left: 20%;
    width: 40px;
    animation: Testiblog_Neew_only_updown 4s ease-in-out infinite;
}

.Testiblog_Neew_only_cardamom2 {
    position: absolute;
    top: 55%;
    left: 15%;
    width: 50px;
    animation: Testiblog_Neew_only_updown 5s ease-in-out infinite 1.5s;
}

/* Right Leaf for Scroll Animation */
.Testiblog_Neew_only_leaf_wrapper {
    position: absolute;
    top: 5%;
    right: 15%;
    z-index: 0;
    pointer-events: none;
}

.Testiblog_Neew_only_leaf {
    width: 170px;
    transform-origin: center;
    will-change: transform;
}

/* Content Container */
.Testiblog_Neew_only_container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
}

.Testiblog_Neew_only_content {
    width: 70%;
}

.Testiblog_Neew_only_header {
    margin-bottom: 40px;
    text-align: left;
}

.Testiblog_Neew_only_header h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #000000;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.Testiblog_Neew_only_header p {
    font-size: clamp(14px, 2vw, 16px);
    color: #333333;
    margin: 0;
    font-weight: 400;
}

/* Swiper Styling */
.Testiblog_Neew_only_swiper {
    width: 100%;
    padding: 20px 0;
}

.Testiblog_Neew_only_card {
    background: #ffffff;
    border: 1px solid #c2e0e0;
    border-radius: 4px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    box-sizing: border-box;
}

.Testiblog_Neew_only_avatar {
    width: 70px;
    height: 70px;
    margin-bottom: 25px;
}

.Testiblog_Neew_only_avatar svg {
    width: 100%;
    height: 100%;
}

.Testiblog_Neew_only_text {
    font-size: 13px;
    color: #555555;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.Testiblog_Neew_only_author {
    color: #47a8a8;
    font-weight: 600;
    font-size: 14px;
    margin: 0 0 5px 0;
}

.Testiblog_Neew_only_loc {
    color: #47a8a8;
    font-size: 13px;
    margin: 0 0 15px 0;
}

.Testiblog_Neew_only_stars {
    display: flex;
    gap: 4px;
}

.Testiblog_Neew_only_stars svg {
    width: 18px;
    height: 18px;
    fill: #47a8a8;
}

@media (max-width: 991px) {
    .Testiblog_Neew_only_visuals {
        display: none;
    }
    .Testiblog_Neew_only_container {
        justify-content: center;
    }
    .Testiblog_Neew_only_content {
        width: 100%;
        max-width: 600px;
    }
    .Testiblog_Neew_only_leaf_wrapper {
        right: 5%;
        top: 5%;
        opacity: 0.5;
    }
    .Testiblog_Neew_only_leaf {
        width: 60px;
    }
}