/* Juice Hero Styles */
.full-curve {
    position: absolute;
    bottom: 25%;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 6;
    opacity: 0.9;
}

.full-curve path {
    stroke-linecap: round;
}

.juice-hero {
   background: linear-gradient(to right, #000000 0%, #18974E 100%);

    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
@keyframes subtle-bubble-up {
    0% {
        background-position: center 0px;
    }
    100% {
        /* Subtler rise */
        background-position: center -50px;
    }
}

.splash-bg {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-54%);
    width: 890px;
    height: 903px;
    z-index: 1;
    background-image: url('https://zin8.in/wp-content/uploads/2026/02/water_splash-1-1.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.6s forwards;
}

.splash-bg::after {
    content: '';
    position: absolute;
    /* Dhyan dein: Isey 0px se badal kar 20px kar diya */
    top: 20px;
    left: 0;
    width: 100%;
    /* Height ko thoda kam karna pad sakta hai agar duplicate bahar nikal raha ho */
    height: 100%;
    z-index: 2;
/*     background-image: url('https://zin8.in/wp-content/uploads/2026/02/water_splash.png'); */
    background-size: contain;
    background-repeat: repeat-y;
    /* Slow and realistic speed */
    animation: subtle-bubble-up 8s linear infinite;
}


/* Main Content Container */
.content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 40px;
}

/* Smooth Fade In Keyframe */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Heading */
.hero-heading {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 20;
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.hero-heading h1 {
	    font-family: 'Montserrat';
    font-size: 85px;
    font-weight: 900 !important;
    color: white;
    line-height: 1.1;
}

.hero-heading .line1 {
    margin-right: 160px;
    display: block;
}

.hero-heading .line2 {
    margin-left: 160px;
}

.hero-heading .straight {
    color: white;
    -webkit-text-stroke: 3px white;
    -webkit-text-fill-color: transparent;
    font-weight: 900 !important;
    letter-spacing: 0;
}

/* Cans Container */
.cans-container {
    position: relative;
    height: 370px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 20px;
    overflow: visible;
}

.can {
    position: absolute;
    width: auto;
    height: auto;
    z-index: 15;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.can img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    display: block;
}

.can.lemon {
    right: 22%;
    transform: rotate(17deg) translateX(-40px);
}

.can.lime {
    left: 22%;
    transform: rotate(-17deg) translateX(40px);
}

/* Lemon → move from right to left */
@keyframes lemonSwap {
    0% {
        right: 22%;
        left: auto;
        transform: rotate(17deg) translateX(-40px);
    }
    50% {
        right: 50%;
        left: auto;
        transform: rotate(0deg) translateX(0);
    }
    51% {
        right: auto;
        left: 50%;
        transform: rotate(0deg) translateX(0);
    }
    100% {
        right: auto;
        left: 22%;
        transform: rotate(-17deg) translateX(40px);
    }
}

/* Lime → move from left to right */
@keyframes limeSwap {
    0% {
        left: 22%;
        right: auto;
        transform: rotate(-17deg) translateX(40px);
    }
    50% {
        left: 50%;
        right: auto;
        transform: rotate(0deg) translateX(0);
    }
    51% {
        left: auto;
        right: 50%;
        transform: rotate(0deg) translateX(0);
    }
    100% {
        left: auto;
        right: 22%;
        transform: rotate(17deg) translateX(-40px);
    }
}

/* Apply animations - SMOOTH EASING ADDED */
.can.lemon.swapping {
    animation: lemonSwap 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.can.lime.swapping {
    animation: limeSwap 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


/* Bubbles */
.bubble {
    position: absolute;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 50%;
    pointer-events: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

@keyframes bubbleFloat {
    0% {
        opacity: 0;
        transform: translateY(0) translateX(0) scale(0.5);
    }
    10% {
        opacity: 1;
        transform: translateY(-50px) translateX(var(--drift)) scale(1);
    }
    80% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
        transform: translateY(-250px) translateX(calc(var(--drift) * 1.5)) scale(0.8);
    }
}
/* Fruit Elements */
.fruit {
    position: absolute;
    z-index: 50;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: floatFruit 3s ease-in-out infinite;
    opacity: 0;
}

.fruit img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.fruit:hover {
    transform: scale(1.15) rotate(8deg);
    animation-play-state: paused;
}

/* Orange - Left top */
.fruit.orange {
    top: 52%;
    left: 0%;
    width: auto;
    animation: floatFruit 3s ease-in-out infinite, fadeIn 0.6s ease-out 1.8s forwards;
}

/* Blueberry - Left bottom */
.fruit.blueberry {
    bottom: 3%;
    left: 4%;
    width: auto;
    animation: floatFruit 3s ease-in-out 0.7s infinite, fadeIn 0.6s ease-out 2s forwards;
}

/* Watermelon - Right bottom */
.fruit.watermelon {
    bottom: 13%;
    right: 0;
    width: 200px;
    animation: floatFruit 3s ease-in-out 1.2s infinite, fadeIn 0.6s ease-out 2.2s forwards;
}

@keyframes floatFruit {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(3deg);
    }
    66% {
        transform: translateY(-8px) rotate(-3deg);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
	   .juice-hero {
        min-height: 60vh;
    }
	
 .hero-heading{
margin-bottom: 100px;
	}
    .hero-heading h1 {
        font-size: 4.5rem;
    }

    .hero-heading .line1,
    .hero-heading .line2 {
        margin: 0;
    }

    .can img {
        width: 200px;
    }

    .cans-container {
        height: 250px;
    }

    /* Adjust can positions for tablet */
    .can.lemon {
        right: 10%;
        transform: rotate(17deg) translateX(-10px);
    }

    .can.lime {
        left: 10%;
        transform: rotate(-17deg) translateX(10px);
    }

    /* Update animations for tablet */
    @keyframes lemonSwap {
        0% {
            right: 10%;
            left: auto;
            transform: rotate(17deg) translateX(-10px);
        }
        50% {
            right: 50%;
            left: auto;
            transform: rotate(0deg) translateX(0);
        }
        51% {
            right: auto;
            left: 50%;
            transform: rotate(0deg) translateX(0);
        }
        100% {
            right: auto;
            left: 10%;
            transform: rotate(-17deg) translateX(10px);
        }
    }

    @keyframes limeSwap {
        0% {
            left: 10%;
            right: auto;
            transform: rotate(-17deg) translateX(10px);
        }
        50% {
            left: 50%;
            right: auto;
            transform: rotate(0deg) translateX(0);
        }
        51% {
            left: auto;
            right: 50%;
            transform: rotate(0deg) translateX(0);
        }
        100% {
            left: auto;
            right: 10%;
            transform: rotate(17deg) translateX(-10px);
        }
    }

   

  
    .splash-bg {
        width: 800px;
        height: 938px;
    }
    .full-curve {
        bottom: 15%;
    }
}


@media (max-width: 769px) {
    .juice-hero {
        min-height: 60vh;
    }
	
	
	.hero-heading{
margin-bottom: 175px;
	}
    .hero-heading h1 {
        font-size: 2.5rem;
    }

    .hero-heading .line1,
    .hero-heading .line2 {
        margin: 0;
    }

    .can img {
        width: 200px;
    }

    .cans-container {
        height: 250px;
    }

    /* Adjust can positions for tablet */
    .can.lemon {
        right: 10%;
        transform: rotate(17deg) translateX(-10px);
    }

    .can.lime {
        left: 10%;
        transform: rotate(-17deg) translateX(10px);
    }

    /* Update animations for tablet */
    @keyframes lemonSwap {
        0% {
            right: 10%;
            left: auto;
            transform: rotate(17deg) translateX(-10px);
        }
        50% {
            right: 50%;
            left: auto;
            transform: rotate(0deg) translateX(0);
        }
        51% {
            right: auto;
            left: 50%;
            transform: rotate(0deg) translateX(0);
        }
        100% {
            right: auto;
            left: 10%;
            transform: rotate(-17deg) translateX(10px);
        }
    }

    @keyframes limeSwap {
        0% {
            left: 10%;
            right: auto;
            transform: rotate(-17deg) translateX(10px);
        }
        50% {
            left: 50%;
            right: auto;
            transform: rotate(0deg) translateX(0);
        }
        51% {
            left: auto;
            right: 50%;
            transform: rotate(0deg) translateX(0);
        }
        100% {
            left: auto;
            right: 10%;
            transform: rotate(17deg) translateX(-10px);
        }
    }

    /* Hide fruits on tablet/mobile */
    .fruit {
        display: none;
    }

  
    .splash-bg {
        width: 800px;
        height: 938px;
    }
    .full-curve {
        bottom: 15%;
    }
}

@media (max-width: 480px) {
    .juice-hero {
        min-height: 90vh;
    }

    .hero-heading h1 {
        font-size: 2.5rem;
    }

    .can img {
        width: 130px;
    }

    .cans-container {
        height: 135px;
    }

    /* Adjust can positions for mobile */
    .can.lemon {
        right: 5%;
        transform: rotate(17deg) translateX(0);
    }

    .can.lime {
        left: 5%;
        transform: rotate(-17deg) translateX(0);
    }

    /* Update animations for mobile */
    @keyframes lemonSwap {
        0% {
            right: 5%;
            left: auto;
            transform: rotate(17deg) translateX(0);
        }
        50% {
            right: 50%;
            left: auto;
            transform: rotate(0deg) translateX(0);
        }
        51% {
            right: auto;
            left: 50%;
            transform: rotate(0deg) translateX(0);
        }
        100% {
            right: auto;
            left: 5%;
            transform: rotate(-17deg) translateX(0);
        }
    }

    @keyframes limeSwap {
        0% {
            left: 5%;
            right: auto;
            transform: rotate(-17deg) translateX(0);
        }
        50% {
            left: 50%;
            right: auto;
            transform: rotate(0deg) translateX(0);
        }
        51% {
            left: auto;
            right: 50%;
            transform: rotate(0deg) translateX(0);
        }
        100% {
            left: auto;
            right: 5%;
            transform: rotate(17deg) translateX(0);
        }
    }
.splash-bg {
	top: 10%;
        width: 450px;
        height: 1000px;
    }
    .full-curve {
        bottom: 10%;
    }
}
        /* /******************************************************************************************** */

        
       .hero-section {
    background: #fff;
    min-height: 50vh;
    display: flex;
    align-items: center;
/*     padding: 90px 0 100px 30px; */
padding:0px 0 0px 30px;
    position: relative;
    overflow: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.7fr 0.5fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.content {
    z-index: 2;
}

.content h1 {
    font-size: 65px;
    font-weight: 700 !important;
    line-height: 75px;
    margin-bottom: 30px;
    color: black;
}

.content p {
	    font-family: 'Montserrat';
    text-align: center;
    font-size: 45px;
    line-height: 1.1;
    color: #000000;
    margin-bottom: 35px;
    font-weight: 900;
}

.cta-button {
    width: fit-content;
    display: block;
    padding: 15px 30px;
    background: #18974E;
    border: 2px solid #18974E;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600 !important;
    color: #fff;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease, border-color 0.4s ease;
    z-index: 0;
    margin: 0px auto 0;
}

.cta-button::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -60%;
    transform: translateX(-50%) scale(0);
    width: 200%;
    height: 200%;
    background: #000; /* Changed from #b61138 to black */
    border-radius: 50%;
    transition: transform 0.6s ease-out;
    z-index: -1;
}

.cta-button span {
    position: relative;
    z-index: 2;
}

.cta-button:hover::before {
    transform: translateX(-50%) scale(1);
    bottom: -20%;
}


.cta-button:hover {
    color: #fff;
    border-color: #000;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.product-image {
    position: relative;
    z-index: 2;
/*     animation: floatUpDown 3s ease-in-out infinite; */
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.product-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
}

.splash-particles {
    position: absolute;
    bottom: 80%;
    left: 43%;
    transform: translateX(-55%);
    width: 260px;
    height: 315px;
    pointer-events: none;
    z-index: 10;
}

.particle {
    position: absolute;
    background: #d33907;
    border-radius: 50%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.particle::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 25%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.particle1 { width: 17px; height: 17px; animation: splash1 2s ease-out infinite; animation-delay: 0s; }
.particle2 { width: 16px; height: 16px; animation: splash2 2s ease-out infinite; animation-delay: 0.1s; }
.particle3 { width: 19px; height: 19px; animation: splash3 2s ease-out infinite; animation-delay: 0.2s; }
.particle4 { width: 18px; height: 18px; animation: splash4 2s ease-out infinite; animation-delay: 0.3s; }
.particle5 { width: 20px; height: 20px; animation: splash5 2s ease-out infinite; animation-delay: 0.4s; }
.particle6 { width: 17px; height: 17px; animation: splash6 2s ease-out infinite; animation-delay: 0.5s; }
.particle7 { width: 16px; height: 16px; animation: splash7 2s ease-out infinite; animation-delay: 0.6s; }
.particle8 { width: 18px; height: 18px; animation: splash1 2s ease-out infinite; animation-delay: 0.7s; }
.particle9 { width: 20px; height: 20px; animation: splash2 2s ease-out infinite; animation-delay: 0.8s; }
.particle10 { width: 17px; height: 17px; animation: splash3 2s ease-out infinite; animation-delay: 0.9s; }
.particle11 { width: 19px; height: 19px; animation: splash4 2s ease-out infinite; animation-delay: 1s; }
.particle12 { width: 18px; height: 18px; animation: splash5 2s ease-out infinite; animation-delay: 1.1s; }
.particle13 { width: 16px; height: 16px; animation: splash6 2s ease-out infinite; animation-delay: 1.2s; }
.particle14 { width: 17px; height: 17px; animation: splash7 2s ease-out infinite; animation-delay: 1.3s; }
.particle15 { width: 20px; height: 20px; animation: splash1 2s ease-out infinite; animation-delay: 1.4s; }
.particle16 { width: 18px; height: 18px; animation: splash2 2s ease-out infinite; animation-delay: 1.5s; }
.particle17 { width: 21px; height: 21px; animation: splash3 2s ease-out infinite; animation-delay: 1.6s; }
.particle18 { width: 19px; height: 19px; animation: splash4 2s ease-out infinite; animation-delay: 1.7s; }
.particle19 { width: 17px; height: 17px; animation: splash5 2s ease-out infinite; animation-delay: 1.8s; }
.particle20 { width: 20px; height: 20px; animation: splash6 2s ease-out infinite; animation-delay: 1.9s; }

@keyframes splash1 {
    0% { transform: translate(-50%, 0) scale(0); opacity: 0; }
    5% { opacity: 1; transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(calc(-50% + 40px), -120px) scale(0.5); opacity: 0; }
}

@keyframes splash2 {
    0% { transform: translate(-50%, 0) scale(0); opacity: 0; }
    5% { opacity: 1; transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(calc(-50% - 45px), -100px) scale(0.5); opacity: 0; }
}

@keyframes splash3 {
    0% { transform: translate(-50%, 0) scale(0); opacity: 0; }
    5% { opacity: 1; transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(calc(-50% + 60px), -140px) scale(0.5); opacity: 0; }
}

@keyframes splash4 {
    0% { transform: translate(-50%, 0) scale(0); opacity: 0; }
    5% { opacity: 1; transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(calc(-50% - 30px), -130px) scale(0.5); opacity: 0; }
}

@keyframes splash5 {
    0% { transform: translate(-50%, 0) scale(0); opacity: 0; }
    5% { opacity: 1; transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(calc(-50% + 20px), -110px) scale(0.5); opacity: 0; }
}

@keyframes splash6 {
    0% { transform: translate(-50%, 0) scale(0); opacity: 0; }
    5% { opacity: 1; transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(calc(-50% - 55px), -125px) scale(0.5); opacity: 0; }
}

@keyframes splash7 {
    0% { transform: translate(-50%, 0) scale(0); opacity: 0; }
    5% { opacity: 1; transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(calc(-50% + 35px), -95px) scale(0.5); opacity: 0; }
}

/* Tablet View (1024px and below) */
@media (max-width: 1024px) {
    .hero-section {
        padding: 80px 20px 80px 20px;
    }

    .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
        padding: 0 20px;
    }

    .content h1 {
        font-size: 52px;
        line-height: 60px;
        margin-bottom: 25px;
    }

    .content p {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
        margin-bottom: 35px;
    }

    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }

    .product-image img {
        max-width: 350px;
        margin: 0 auto;
    }

    .splash-particles {
        width: 200px;
        height: 240px;
        left: 50%;
        bottom: 75%;
    }
}

/* Mobile View (768px and below) */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 15px 60px 15px;
        min-height: auto;
    }

    .container {
        gap: 35px;
        padding: 0 15px;
    }

    .content h1 {
        font-size: 38px;
        line-height: 46px;
        margin-bottom: 20px;
    }

    .content p {
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 15px;
        border-radius: 40px;
    }

    .product-image img {
        max-width: 280px;
    }

    .splash-particles {
        width: 150px;
        height: 180px;
        bottom: 70%;
    }

    .particle {
        transform: scale(0.8) translateX(-50%);
    }

    /* Reduce animation intensity on mobile */
    @keyframes floatUpDown {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }
}

/* Small Mobile View (480px and below) */
@media (max-width: 480px) {
    .hero-section {
        padding: 32px 5px 18px 5px;
    }

    .container {
        gap: 25px;
        padding: 0 0px;
    }
	.content {
    z-index: 2;
    padding: 10px;
}
.image-container {
	padding: 2px 9px 30px 0px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
    .content h1 {
		text-align:left;
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 18px;
    }

    .content p {
		text-align:center;
        font-size: 20px;
        line-height: 1.0;
        margin-bottom: 25px;
    }

    .cta-button {
	    margin: 40px auto 10px;
        padding: 11px 22px;
        font-size: 14px;
       
    }

    .product-image img {
        max-width: 280px;
    }

    .splash-particles {
        width: 120px;
        height: 150px;
        bottom: 68%;
    }

    .particle {
        transform: scale(0.6) translateX(-50%);
    }

    .particle1, .particle2, .particle3, .particle4, .particle5,
    .particle6, .particle7, .particle8, .particle9, .particle10,
    .particle11, .particle12, .particle13, .particle14, .particle15,
    .particle16, .particle17, .particle18, .particle19, .particle20 {
        width: 12px;
        height: 12px;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .content h1 {
        font-size: 28px;
        line-height: 34px;
    }

    .content p {
        font-size: 13px;
    }

    .product-image img {
        max-width: 200px;
    }

    .splash-particles {
        width: 100px;
        height: 130px;
    }
}

        /***********************************************************************************************/
 .container-one{
      width: 100%;
      max-width: 1400px;
      padding: 40px 20px;
    }

    svg {
      width: 100%;
      height: 400px;
      display: block;
    }

.wave-text {
        font-family: 'Montserrat';
    font-size: 36px;
    font-weight: 700 !important;
    fill: #16A34A;
}

.char {
  animation: charAppear 0.4s ease-out forwards;
  opacity: 0;
}

@keyframes charAppear {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Wave bounce - ONE TIME only */
@keyframes waveBounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-25px);
  }
}

.char.wave {
  animation: charAppear 0.4s ease-out forwards, waveBounce 2s ease-in-out 1;
}

    @media (max-width: 768px) {
      .wave-text {
        font-size: 48px;
      }
      svg {
        height: 140px;
      }
    }
       
        /* Freshness Section */
        .freshness-section {
			margin-top: -4px;
            background: #000;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        /* Wave at top */
        .wave-container {
            width: 100%;
            position: relative;
            z-index: 3;
        }

    
    
        /* Video and Features Container */
        .video-features-wrapper {
            flex: 1;
            position: relative;
            min-height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
/*             padding: 60px 0; */
        }

        /* Video in center */
        .video-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            aspect-ratio: 16/9;
            border-radius: 20px;
            overflow: hidden;
            z-index: 1;
        }

        .video-container video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Features Container */
        .features-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 2;
        }

        .feature-box {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 15px;
            pointer-events: auto;
        }

        .feature-text {
			font-family: 'Montserrat';
            font-size: 28px;
            font-weight: 900 !important;
            color: #fff;
            white-space: nowrap;
            line-height: 1.3;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
        }

        .arrow-icon {
            width: 200px;
            height: auto;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
        }

        /* Top-left corner of video */
       .feature-1 {
    top: 20%;
    left: 15%;
}

        /* Top-right corner of video */
        .feature-2 {
    top: 20%;
    right: 7%;
}

        .feature-2 .arrow-icon {
            transform: scaleX(-1);
            order: 0;
        }

        .feature-2 .feature-text {
            order: 1;
        }

        /* Bottom-left corner of video */
       .feature-3 {
    bottom: 25%;
    left: 12%;
}

        /* Bottom-right corner of video */
      .feature-4 {
    bottom: 25%;
    right: 7%;
}

        .feature-4 .arrow-icon {
            transform: scaleX(-1);
            order: 0;
        }

        .feature-4 .feature-text {
            order: 1;
        }

        /* Tablet View */
        @media (max-width: 1200px) {
            .wave-text {
                font-size: 32px;
            }

            .video-container {
                width: 70%;
            }

            .feature-1, .feature-3 {
                left: 5%;
            }

            .feature-2, .feature-4 {
                right: 5%;
            }

            .arrow-icon {
                width: 150px;
            }

            .feature-text {
                font-size: 24px;
            }
        }

        @media (max-width: 1024px) {
            .wave-text {
                font-size: 40px;
            }

            .video-container {
                width: 75%;
            }

            .arrow-icon {
                width: 130px;
            }

            .feature-text {
                font-size: 20px;
            }

            .video-features-wrapper {
                min-height: 600px;
            }
        }

        /* Mobile View */
        @media (max-width: 767px) {
			.freshness-section {
    background: #000;
				min-height: 60vh;
			}
            .wave-container {
                padding: 0px 0 0px;
            }

            .wave-text {
                font-size: 40px;
            }

            .video-features-wrapper {
                min-height: 350px;
                padding: 0px 0;
            }

            .video-container {
                width: 85%;
            }

            .arrow-icon {
                display: none !important;
            }

            .feature-box {
                gap: 0;
            }

            .feature-text {
                font-size: 14px;
                white-space: normal;
                text-align: center;
                max-width: 120px;
            }

            .feature-1 {
                top: 10%;
                left: 3%;
            }

            .feature-2 {
                top: 10%;
                right: 3%;
            }

            .feature-3 {
                bottom: 10%;
                left: 3%;
            }

            .feature-4 {
                bottom: 10%;
                right: 3%;
            }
        }

        /* Small Mobile View */
        @media (max-width: 480px) {
			.freshness-section {
                background: #000;
				min-height: 95vh;
			}
            .wave-text {
                font-size: 37px;
            }

            .video-features-wrapper {
                min-height:400px;
            }

            .video-container {
                width: 100%;
            }

            .feature-text {
                font-size: 20px;
                max-width: 100px;
            }

            .feature-1, .feature-2 {
                top: 5%;
            }

            .feature-3, .feature-4 {
                bottom: 10%;
            }

            .feature-1, .feature-3 {
                left: 5%;
            }

            .feature-2, .feature-4 {
                right: 5%;
            }
        }

        /************************************************************************************************/

           .hero-section-two {
/* 			   background:#18974E; */
            background-image: url('https://jainnetis.com/drink/wp-content/uploads/2025/10/Rectangle-10.png');
            background-size: cover;
            background-position: inherit;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            border-radius: 50px;
            margin: 100px 28px;
            padding: 60px 40px;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 1200px;
            width: 100%;
            position: relative;
            z-index: 2;
        }

      .center-content {
    flex: 1;
    text-align: center;
    max-width:810px;
}

        .center-content h1 {
            font-size: 65px;
            font-weight: 700 !important;
            color: #fff;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .center-content p {
            font-size: 16px;
            color:#fff;
            line-height: 1.6;
            margin-bottom: 40px;
        }

     .shop-btn {
    display: inline-block;
    padding: 15px 40px;
    background: #fff; /* white base */
    border: 2px solid #fff;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600 !important;
    color: #000; /* black text */
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
    z-index: 0;
}

/* ripple animation background */
.shop-btn::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -60%;
    transform: translateX(-50%) scale(0);
    width: 200%;
    height: 200%;
    background: #000; /* black hover color */
    border-radius: 50%;
    transition: transform 0.6s ease-out;
    z-index: -1;
}

/* span keeps text above ripple */
.shop-btn span {
    position: relative;
    z-index: 2;
}

/* hover effect */
.shop-btn:hover::before {
    transform: translateX(-50%) scale(1);
    bottom: -20%;
}

.shop-btn:hover {
    color: #fff;
    border-color: #000;
}


        @media (max-width: 768px) {
            .center-content h1 {
                font-size: 30px;
            }

.hero-section-two {
        background-position: center top; /* better visible area */
        border-radius: 25px; /* less rounding on small screen */
        margin: 40px 15px; /* reduce side spacing */
        padding: 40px 20px; /* less padding */
        flex-direction: column; /* stack content nicely */
    }        }


        /* ****************************************************************************************** */

    .testimonials-wrapper {
/*     padding-top: 65px; */
    background: white;
    perspective: 1000px;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.testimonials-scroll {
    display: flex;
    gap: 70px;
    animation: scroll 12s linear infinite;
    will-change: transform;
    padding: 20px 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-320px * 4 - 70px * 4));
    }
}
.testi {
	font-family: 'Montserrat';
    text-align: center;
    color: #000000;
    padding: 60px 0 70px;
    font-size: 45px;
    font-weight: 900 !important;
}

.testi span {
    color: #18974E;
}
@media (max-width: 768px) {
	.testi {
    text-align: center;
    color: #000000;
    padding: 60px 0 50px;
    font-size: 35px;
    font-weight: 900 !important;
}
}

.testimonial-card {
    min-width: 425px;
    width: 360px;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    transform-origin: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
}

.testimonial-card.card-1 {
    background: #000000;
    transform: rotateZ(-3deg);
}

.testimonial-card.card-2 {
    background: #18974E;
    transform: rotateZ(2deg);
}

.testimonial-card.card-3 {
    background: #000000;
    transform: rotateZ(-4deg);
}

.testimonial-card.card-4 {
    background: #18974E;
    transform: rotateZ(3deg);
}

/* Remove the hover rule with !important - let JS handle it */

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
}

.name-rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.name {
	    font-family: 'Montserrat';
    font-weight: 500 !important;
    color: #fff;
    font-size: 17px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    width: 16px;
    height: 16px;
    fill: #ffffff;
}

.review-text {
    font-size: 15px;
    color: #fff;
    line-height: 1.6;
    font-style: normal;
}

@media (max-width: 768px) {
    .header h2 {
        font-size: 32px;
    }
    
    .testimonials-wrapper {
        height: 450px;
    }
    
    .testimonials-scroll {
        gap: 40px;
    }
    
    .testimonial-card {
        min-width: 280px;
        width: 280px;
        padding: 24px;
        min-height: 200px;
        /* Cards will be straight on mobile - JS handles this */
    }
    
    .testimonial-card.card-1,
    .testimonial-card.card-2,
    .testimonial-card.card-3,
    .testimonial-card.card-4 {
        transform: rotateZ(0deg);
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 4 - 40px * 4));
        }
    }
}
/*********************************************************************************************/

/*******************************************************************************************/
.juice__container {
    background: white;
    min-height: 150vh;
    position: relative;
}

.juice__sticky__wrapper {
    padding: 185px 0px 550px 0px;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.juice__content__area {
    position: relative;
    width: 100%;
    height: 100%;
}

.juice__images__stack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 50;
}

.juice__image__card {
    position: absolute;
    width: 430px;
    height: 300px;
    border-radius: 24px;
    overflow: hidden;
    top: 50%;
    left: 50%;
}

.juice__image__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Initial stacked positions - center of screen */
.juice__card__1 {
    transform: translate(-50%, -50%) rotate(-3deg);
    z-index: 1;
}

.juice__card__2 {
    transform: translate(-50%, -50%) rotate(2deg);
    z-index: 2;
}

.juice__card__3 {
    transform: translate(-50%, -50%) rotate(-1deg);
    z-index: 3;
}

.juice__card__4 {
    transform: translate(-50%, -50%) rotate(3deg);
    z-index: 4;
}

.juice__heading__box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 30;
    pointer-events: auto;
}

.juice__heading__box.juice__visible {
    pointer-events: auto;
}

.juice__heading__box .cta-button,
.juice__heading__box .ctaa-button {
    position: relative;
    z-index: 51;
    pointer-events: auto !important;
    cursor: pointer;
    display: inline-block;
}

.juice__main__title {
    font-size: 53px;
    font-weight: 700 !important;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.juice__spacer__bottom {
    height: 100vh;
}

/* Tablet responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .juice__image__card {
        width: 350px;
        height: 240px;
    }
    
    .juice__main__title {
        font-size: 2.5rem;
    }
}

/* Mobile responsive */
@media (max-width: 860px) {
    .juice__container {
        min-height: auto;
    }
    
    .juice__sticky__wrapper {
        position: relative;
        height: auto;
        padding: 60px 20px 80px 20px;
    }

    .juice__content__area {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 0;
        height: auto;
    }

    .juice__heading__box {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        margin-bottom: 40px;
        order: 1;
        z-index: 30 !important;
        opacity: 1;
        pointer-events: auto !important;
    }

    .juice__heading__box .cta-button,
    .juice__heading__box .ctaa-button {
        z-index: 31 !important;
        pointer-events: auto !important;
        cursor: pointer;
        min-height: 48px;
        min-width: 120px;
    }

    .juice__images__stack {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 350px;
        height: 260px;
        order: 2;
        pointer-events: none;
        z-index: 50 !important;
    }

    .juice__image__card {
        width: 160px;
        height: 120px;
        border-radius: 16px;
    }

    .juice__main__title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    /* Mobile: Images in 2x2 grid - NO rotation */
    .juice__card__1 {
        top: 25% !important;
        left: 25% !important;
        transform: translate(-50%, -50%) rotate(0deg) !important;
    }

    .juice__card__2 {
        top: 25% !important;
        left: 75% !important;
        transform: translate(-50%, -50%) rotate(0deg) !important;
    }

    .juice__card__3 {
        top: 75% !important;
        left: 25% !important;
        transform: translate(-50%, -50%) rotate(0deg) !important;
    }

    .juice__card__4 {
        top: 75% !important;
        left: 75% !important;
        transform: translate(-50%, -50%) rotate(0deg) !important;
    }
    
    .juice__spacer__bottom {
        height: 0;
        display: none;
    }
}

@media (max-width: 480px) {
    .juice__sticky__wrapper {
        padding: 40px 20px 60px 20px;
    }
    
    .juice__images__stack {
        max-width: 300px;
        height: 220px;
    }
    
    .juice__image__card {
        width: 130px;
        height: 100px;
    }

    .juice__main__title {
        font-size: 1.5rem;
    }

    .juice__heading__box {
        z-index: 100 !important;
        pointer-events: auto !important;
    }

    .juice__heading__box .cta-button,
    .juice__heading__box .ctaa-button {
        z-index: 101 !important;
        pointer-events: auto !important;
    }
}
