    body {
        background: var(--color-bg);
        max-width: 100vw;
        overflow-x: hidden;
    }

    main {
        margin: auto;
        width: calc(100% - 10px);
    }

    .hero_bg {
        position: absolute;
        top: -140px;
        left: 0;
        right: 0;
        display: flex;
        justify-content: center;

    }

    .hero_bg img {
        width: auto;
        max-height: 800px;
        opacity: 0.18;
        max-width: 100vw;
    }


    .heading {
        font-size: 2.8rem;
        font-weight: 900;
        text-align: center;
        color: var(--color-accent) !important;
    }

    .heading .red {
        color: var(--color-accent);
    }

    .heading .yellow {
        color: var(--color-accent);
    }

    @media screen and (max-width: 600px) {
        .heading {
            font-size: 1.2rem;
        }
    }



    /* ====================================================================== Header Section */

    header {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        align-items: center;
        padding: 10px;
        border-bottom: 3px solid var(--color-primary);
        margin-bottom: 10px;
    }

    .logo {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .logo img {
        width: auto;
        max-width: 100%;
        object-fit: contain;
        max-height: 140px;
    }

    .tagline {
        color: var(--color-primary);
        padding: 10px 0;
        font-weight: bold;
        font-size: 20px;
        font-style: italic;
        margin-top: 10px;
        text-transform: uppercase;
        letter-spacing: -1px;
        max-width: 100%;
        margin: 10px;
        min-height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;

        border-left: 3px solid var(--color-primary);

        animation: bling_drop 1.5s linear infinite;
        background-color: transparent;
    }

    @media (max-width: 720px) {
        header {
            border-bottom: none;
        }

        .logo {
            justify-content: center;
        }

        .tagline {
            border-left: none;
            border-top: 3px solid var(--color-primary);
            border-bottom: 3px solid var(--color-primary);
        }
    }


    /* ====================================================================== Hero Section */

    .hero {
        display: grid;
        grid-template-columns: 1fr 1fr;
        width: 100%;
        gap: 10px;
        position: relative;
    }

    .hero .left,
    .hero .right {
        position: relative;
        z-index: 1;
    }

    /* Hero Left Section */

    .hero .left {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .hero .left .message {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 20px;
        height: 100%;
    }

    .hero .left ul.points {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .hero .left ul.points li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
        font-size: 20px;
        line-height: 1.5;
        color: white;
        font-weight: bold;
    }

    .hero .left .check-icon {
        width: 24px;
        height: 24px;
        color: #28a745;
        fill: #28a745;
        flex-shrink: 0;
    }

    @media (max-width: 360px) {
        .hero .site_name {
            font-size: 1.5rem;
            justify-content: center;
        }
    }

    @media (max-width: 720px) {
        .hero {
            grid-template-columns: 1fr;
        }

        .hero .left .message {
            display: block;
            width: max-content;
            margin: 20px auto;
        }

        .hero .left ul.points li {
            font-size: 16px;
        }
    }


    /* Hero Right Section */

    .hero .right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: -20px;
    }


    .hero .order_form_section {
        display: flex;
        justify-content: end;
        align-items: center;
        width: 100%;
        margin-top: 40px;

    }

    /* Form section  */
    .order-box {
        background-color: #000;
        border: 1px solid #fff;
        border-radius: 10px;
        padding: 25px 20px;
        width: 100%;
        max-width: 500px;
        box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    }

    .order-box h2 {
        color: #ffcc00;
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }

    .order-box label {
        color: #fff;
        font-size: 16px;
        display: block;
        margin-bottom: 6px;
    }

    .order-box input[type="text"],
    .order-box input[type="tel"] {
        width: 100%;
        padding: 12px;
        border: 2px solid #ccc;
        border-radius: 8px;
        margin-bottom: 15px;
        font-size: 16px;
        outline: none;
        transition: border-color 0.3s;

    }

    .order-box input[type="text"]:invalid,
    .order-box input[type="tel"]:invalid {
        border-color: red;
    }

    .order-box button {
        width: 100%;
        background: linear-gradient(to right, #ffcc00, #ff9900);
        border: none;
        border-radius: 30px;
        padding: 10px;
        font-size: 18px;
        font-weight: 900;
        color: #000;
        cursor: pointer;
        box-shadow: 0 0 15px #ffc107, 0 0 25px #ff9900;
        text-transform: uppercase;
        animation: bling 1.5s infinite;
        margin-top: 10px;
    }

    .order-box button:hover {
        background: linear-gradient(to right, #ff9900, #ffcc00);
        transform: scale(1.05);
    }


    @media (max-width: 720px) {

        .hero .order_form_section {
            justify-content: center;
        }

        .order-box {
            padding: 20px 15px;
        }

        .order-box h2 {
            font-size: 22px;
        }
    }

    /* ====================================================================== Save Section  */

    section.save {
        position: relative;
        top: -40px;
    }

    section.save img {
        width: 100%;
        height: auto;
    }

    @media (max-width: 720px) {
        section.save {
            position: relative;
            top: 10px;
        }

    }


    /* ================================================================= Male Virility Section */

    section.male_virility {
        margin: auto;
        padding: 20px;
        text-align: center;
    }


    section.male_virility .subheading {
        font-size: 1.8rem;
        font-weight: bold;
        margin-top: 15px;
        color: var(--color-primary);
    }

    section.male_virility .paragraph {
        margin-top: 25px;
        font-size: 1rem;
        line-height: 1.7;
        color: #ddd;
    }

    section.male_virility .paragraph.hindi {
        margin-top: 15px;
        font-size: 1rem;
        color: var(--color-accent);
    }

    /* ✅ Responsive Styles for Mobile */
    @media screen and (max-width: 600px) {
        section.male_virility .subheading {
            font-size: 1rem;
        }

        section.male_virility .paragraph,
        section.male_virility .paragraph.hindi {
            font-size: 0.8rem;
        }
    }


    /* ====================================================================== Slider Section */

    .sliders {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        overflow-x: auto;
        gap: 10px;
        padding: 20px;
        margin: 0 10px;
    }

    .sliders .slider {
        width: 100%;
    }

    .sliders .slider {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
    }

    .sliders .slider img {
        width: 100%;
        height: auto;
        border-radius: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .sliders .slider .caption {
        font-size: 1.3rem;
        color: #666;
        text-align: center;
        margin: 0 15px;
        color: var(--color-white);
    }

    .sliders.big {
        grid-template-columns: 1fr 1fr;
    }

    @media screen and (max-width: 600px) {
        .sliders.big {
            grid-template-columns: 1fr;
        }
    }


    /* ====================================================================== Problem Section */

    .solution {
        margin-top: 20px;
    }

    .solution_content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 10px;
    }

    @media screen and (max-width: 600px) {
        .solution_content {
            grid-template-columns: 1fr;
        }
    }

    .solution_content .image {
        width: 100%;
    }

    .solution_content .image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .solution_content .solution_message * {
        color: #fff;
    }

    /* ====================================================================== Problem Section */

    .ingredients {
        margin: 20px auto;
        text-align: center;
        /* mask-image: radial-gradient(circle at top left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: radial-gradient(circle at top left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 70%, rgba(0, 0, 0, 0) 100%);
        mask-composite: exclude; */
    }

    .ingredients img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        /* filter: blur(2px);  */
    }

    .grayscale {
        filter: grayscale(80%);
    }



    /* ====================================================================== Review Slider */




    .slider-container {
        max-width: 1200px;
        margin: 0 auto;
        position: relative;
        padding: 0 60px;
    }

    .slider-wrapper {
        overflow: hidden;
        position: relative;
        border-radius: 15px;
    }

    .slider {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        will-change: transform;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    .card {
        flex: 0 0 calc(33.333% - 20px);
        padding: 30px;
        box-sizing: border-box;
        border: 2px solid #ffc107;
        border-radius: 15px;
        margin: 0 10px;
        background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        min-height: max-content;
    }

    .card img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
        margin-bottom: 20px;
        border: 3px solid #ffc107;
        box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        filter: blur(5px);
    }

    .card h3 {
        color: #ffc107;
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .card p {
        font-size: 16px;
        line-height: 1.7;
        color: #eee;
        margin: 0;
    }

    .nav-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #ffc107;
        color: #000;
        border: none;
        font-size: 28px;
        width: 50px;
        height: 50px;
        cursor: pointer;
        border-radius: 50%;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }

    .nav-btn:hover {
        background: #ffd700;
        transform: translateY(-50%) scale(1.1);
    }

    .prev {
        left: 0;
    }

    .next {
        right: 0;
    }

    .dots-container {
        display: none;
        justify-content: center;
        margin-top: 30px;
    }

    .dot {
        width: 12px;
        height: 12px;
        background: #333;
        border-radius: 50%;
        margin: 0 5px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot.active {
        background: #ffc107;
        transform: scale(1.2);
    }

    @media (max-width: 992px) {
        .card {
            flex: 0 0 calc(50% - 20px);
        }
    }

    @media (max-width: 768px) {
        .slider-container {
            padding: 0 40px;
        }

        .card {
            flex: 0 0 calc(100% - 20px);
        }

        .nav-btn {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        h1 {
            font-size: 36px;
        }
    }

    @media (max-width: 480px) {
        .slider-container {
            padding: 0 30px;
        }

        .card {
            padding: 20px;
            min-height: 350px;
        }

        .card img {
            width: 80px;
            height: 80px;
        }

        h1 {
            font-size: 28px;
        }
    }


    /* ====================================================================== Footer */


    footer {
        padding: 20px;
        text-align: center;
    }

    footer h2 {
        font-size: 22px;
        color: #ffc107;
        margin-bottom: 15px;
    }


    .delivery-info {
        color: orange;
        font-size: 16px;
        margin: 10px 0;
        padding-bottom: 10px;
    }

    .bold-line {
        font-size: 20px;
        color: #ffc107;
        font-weight: bold;
        margin: 15px 0;
    }

    .order-btn {
        margin-top: 15px;
    }

    .order-btn button {
        background: linear-gradient(to right, yellow, orange);
        border: none;
        padding: 12px 25px;
        font-weight: bold;
        border-radius: 25px;
        font-size: 16px;
        cursor: pointer;
        transition: transform 0.3s;
        animation: bling_scale 1.5s linear infinite;
    }

    .order-btn button:hover {
        transform: scale(1.05);
    }

    .copyright {
        margin-top: 30px;
        font-size: 14px;
        color: #f8f8f8;
    }

    .copyright p,
    .copyright strong {
        color: #ccc;
    }

    .copyright a {
        color: #ccc;
        margin: 0 5px;
        text-decoration: underline;
    }



    .shipping_images {
        display: grid;
        grid-template-columns: 3fr 2fr;
        border-bottom: 1px solid red;
        grid-gap: 15px;
    }

    .shipping_images .left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .shipping_images .left img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 10px;
    }

    .shipping_images .right {
        display: flex;
        align-items: flex-end;
    }

    .shipping_images .right img {
        width: 50%;
        height: auto;
    }

    .shipping_images .right img.drop_shadow {
        filter: drop-shadow(0px 0px 20px rgba(15, 149, 238, 0.644));
    }

    @media (max-width: 600px) {
        .shipping_images {
            grid-template-columns: 1fr;
        }

        .shipping_images .left,
        .shipping_images .right {
            width: 100%;
            margin-bottom: 20px;
        }
    }