@import url('fontPoppins.css');
@import url('font.css');


/* body css */

html {
    scroll-behavior: smooth;
}

body {
     min-height: 100vh;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #FFFAEF;
    /*cursor: none; */
      
}



.nav-link::after {
    content: '';
    display: block;
    width: 0%;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s;
    margin-top: 2px;
}

.nav-link:hover::after {
    width: 100%;
}

.float-in {
    animation: floatDown 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(-30px);
}

@keyframes floatDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navbar  css*/
/* Wrap & Hero Section */
.wrap {
    margin-top: 95px;
    position: relative;
    background: #fdf7f7;
    overflow: hidden;
}

.hero-section {
    position: relative;
    z-index: 2;
    padding: 80px 15px 150px;
}

.hero-text {
    position: relative;
    z-index: 5;
    padding: 20px;
    border-radius: 10px;
}

.hero-text h5 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 30px;
    font-weight: 400;
    color: #5e2c2c;
    margin-bottom: 15px;
}

.hero-text h1 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 90px;
    font-weight: 800;
    color: #111;
    line-height: 1.2;
}

.hero-text h1 span.scroll-text {
    color: #cc2c2c;
    font-weight: 400;
}

.hero-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.hero-text .btn-primary {
    background-color: #2f2f9d;
    border: none;
    border-radius: 70px;
    padding: 14px 30px;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    box-shadow: 4px 4px 0px #e74c3c;
    transition: all 0.3s ease-in-out;
}

.hero-text .btn-primary:hover {
    background-color: #1f1f6d;
    transform: translateY(-2px);
}

/* Product Image Styling */
/* .ice-img {
    width: 500px;
    object-fit: contain;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    transition: none;
    z-index: 2;
} */

.ice-img.unoq-animation {
    animation: fadeZoomIn 1s ease-out forwards;
}

/* Animation Classes */
@keyframes fadeZoomIn {
    0% {
        opacity: 0;
        transform: scale(1.2);
    }

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

@keyframes slideFromTextArea {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

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

.ice-img.unoq-animation {
    animation: slideFromTextArea 1s ease-out forwards;
}

/* Background Circle */
.slider-bg {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    transition: background-image 0.6s ease-in-out, opacity 0.6s ease-in-out;
    position: relative;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 1;
}

/* Optional Ellipse BG (if needed) */
.image-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 15px;
}

/* Background Ellipse */
.ellipse-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    background-image: url('assets/image/your-ellipse-image.png');
    /* Replace with your image path */
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

/* Main Image */
.ice-img {
    max-width: 400px;
    width: 100%;
    left: 10px;
    height: auto;
    position: relative;
    z-index: 2;
    display: block;
}

/* Overflow visible for carousel */
/* .carousel,
.carousel-inner,
.carousel-item,
.d-flex.flex-wrap {
    overflow: visible !important;
} */

.carousel-inner {
    overflow: visible;
}

.carousel.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
    transform: scale(1.1);
    /* zoom effect start */
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.carousel.carousel-fade .carousel-item.active,
.carousel.carousel-fade .carousel-item-next.carousel-item-start,
.carousel.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transform: scale(1);
    /* zoom to normal */
    position: relative;
    z-index: 3;
}

/* Disable Bootstrap's default slide transform */
.carousel-item-next,
.carousel-item-prev,
.carousel-item.active.carousel-item-end,
.carousel-item.active.carousel-item-start {
    transform: none !important;
}

@keyframes slideInFromBottomRightArc {
    0% {
        opacity: 0;
        transform: translate(120px, 120px) rotateZ(25deg) scale(0.9);
        transform-origin: center;
    }

    50% {
        opacity: 0.6;
        transform: translate(40px, -30px) rotateZ(10deg) scale(1.05);
    }

    100% {
        opacity: 1;
        transform: translate(0, 0) rotateZ(0deg) scale(1);
    }
}

.ice-img.animate-from-right-tilted {
    animation: slideInFromBottomRightArc 1s ease-out forwards;
    position: relative;
    z-index: 5;
    will-change: transform, opacity;
}

@keyframes slideInLeftFade {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

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

.ice-img.animate-from-left {
    animation: slideInLeftFade 1s ease-out forwards;
}

@keyframes fadeInFromLeftToCenter {
    0% {
        opacity: 0;
        transform: translateX(-150px) scale(0.95);
    }

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

.ice-img.first-load-animation {
    animation: fadeInFromLeftToCenter 1s ease-out forwards;
}


@keyframes fadeInIcon {
    0% {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

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

#floatingIcon.animate-fade {
    animation: fadeInIcon 0.6s ease-in-out;
}

@keyframes normalImageFade {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

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

.ice-img.animate-normal {
    animation: normalImageFade 0.8s ease-out forwards;
}

.hero-image {
    opacity: 0;
    transform: translateX(-100%);
    animation-fill-mode: forwards;
}

.hero-image.animate-slide-in {
    animation: heroImageSlideIn 1.2s ease-out forwards;
}

@keyframes heroImageSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

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


@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(1.1);
    }

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

.animate-from-left {
    animation: slideInFromLeft 0.8s ease-out forwards;
}

/* Carousel Arrow Base */
.custom-arrow {
    opacity: 0;
    pointer-events: none;
    /* Prevents user clicks when hidden */
    transition: opacity 0.5s ease;
}

.custom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.carousel-control-prev.custom-arrow {
    left: 20px;
}

.carousel-control-next.custom-arrow {
    right: 30px;
}

/* Icon Styling */
.custom-arrow-icon {
    font-size: 24px;
    color: #ff4d6d;
    /* Sweet-themed pink/red */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* Hover Effect */
.custom-arrow:hover {
    background-color: #ff4d6d;
    transform: translateY(-50%) scale(1.1);
}

.custom-arrow:hover .custom-arrow-icon {
    color: #fff;
}


/* Wave Animation */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 150px;
    width: 400vw;
    background: #d03030;
    --mask: radial-gradient(75.15px at 50% 101.5px, #000 99%, #0000 101%) calc(50% - 70px) 0/140px 100%,
        radial-gradient(75.15px at 50% -66.5px, #0000 99%, #000 101%) 50% 35px/140px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    animation: waveMove 50s linear infinite alternate;
    z-index: 5;
}

.wavelabale {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 400vw;
    background: #d03030;
    --mask: radial-gradient(75.15px at 50% 101.5px, #000 99%, #0000 101%) calc(50% - 70px) 0/140px 100%,
        radial-gradient(75.15px at 50% -66.5px, #0000 99%, #000 101%) 50% 35px/140px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    animation: waveMove 50s linear infinite alternate;
    z-index: 1;
}

.waveproduct {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 400vw;
    background: #37357B;
    --mask: radial-gradient(75.15px at 50% 101.5px, #000 99%, #0000 101%) calc(50% - 70px) 0/140px 100%,
        radial-gradient(75.15px at 50% -66.5px, #0000 99%, #000 101%) 50% 35px/140px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    animation: waveMove 50s linear infinite alternate;
    z-index: 1;
}

@keyframes waveMove {
    100% {
        transform: translate3d(-300vw, 0, 0.1px);
    }
}

.about-secation {
    margin-top: -145px;
    background-color: #d03030;
}


/* Grid Layout */

.txt-side {
    text-align: left;
}

.section-title {
    margin-top: 90px;
    font-size: 50px;
    margin-bottom: 20px;
}


.flavor {
    background-color: #fff985;
}

.natural {
    background-color: #fdbbfb;
}

.exclusive {
    background-color: #b7ffa1;
}

.icecream-icon {
    width: 65px;
    vertical-align: middle;
    margin-right: 8px;
}

/* Ice Cream Cone Image */
/* .icecream-image {
    max-width: 480px;
    position: absolute;
    right: -60px;
    top: 45%;
    transform: translateY(-50%);
    z-index: 2;
} */

/* Floating Cone Animation */
/* .animated-cone {
    animation: float 3s ease-in-out infinite;
} */

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) translateY(0px);
    }

    50% {
        transform: translateY(-50%) translateY(-15px);
    }
}

/* Responsive */


@keyframes pulseLoop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

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

.bounce-span {
    display: inline-block;
    animation: bounceInScale 0.8s ease-out, pulseLoop 3s ease-in-out infinite;
    animation-fill-mode: both;
    padding: 5px 25px;
    border-radius: 10px;
}

.bounce-span::after {
    content: "🍦";
    display: inline-block;
    margin-left: 5px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0.9) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.3) rotate(20deg);
    }
}

.bounce-span {
    font-size: 26px;
    border: #000;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    color: #000;
    font-weight: 500;
}

.text-right-p {
    margin: 0px 0px 0px 100px;
}

.strong {
    font-weight: bold;
    font-size: 25px;
    margin: 10px 10px;
}

.compromises {
    margin: 0px 0px 15px 75px;
}

.deserve {
    margin: 10px 10px 10px 10px;
}

.eco-friendly {
    margin: 15px 10px 10px 150px;
}

.bg-drip {
    /* margin-top: -175px; */
    background-color: #ffc7c9;
    overflow: hidden;
    /* padding-bottom: 160px; */
    padding: 50px 20px 160px 0px;
    text-align: center;
    transition: background-color 0.6s ease-in-out;
}

.section-heading {
    font-family: "Berkshire Swash", cursive;
    color: #cf202f;
    font-size: 3.5rem;
    font-weight: bold;
}

.section-heading span {
    color: #2b2b99;
}

.category-text {
    color: #f26c63;
    margin-top: 20px;
    margin-bottom: 0px;
    font-size: 1rem;
    margin-bottom: 20px;
}

.main-title {
    color: #dc2626;
    font-family: "Berkshire Swash", cursive;
    font-size: 30px;
    margin-bottom: 30px;
}

/* Category Icons */
.category-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.category-icons img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #ffc7c9;
    padding: 10px;
    background-color: white;
    box-shadow: 0px 1px 0px 4px #ffffff, 0 4px 8px rgb(255 0 0);
    transition: 0.3s ease;
    cursor: pointer;
    object-fit: contain;
}

.category-icons img:hover,
.category-icons img.active-category {
    transform: scale(1.1);
    border-color: #2b2b99;
}

/* Product Display */
#product-display {
    transition: opacity 0.5s ease-in-out;
}

/* Image Styling */
.ice-cream-img,
.ice-cream-imgcenter {
    width: 550px;
    height: 450px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    transition: transform 0.3s ease, opacity 0.5s ease-in-out;
    cursor: pointer;
    padding: 10px;
    opacity: 0;
    transform: scale(0.95);
}

/* Animate In */
.animated-image.loaded {
    opacity: 1;
    transform: scale(1);
}

/* If single image, center it */
#product-display.single-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    margin: -85px 0px -40px 0px;
}

/* Default hidden state */
#product-display .animated-image {
    opacity: 0;
    transform: translate(-100px, 100px);
    /* ⬅️⬇️ left-bottom */
    transition: all 0.6s ease-in-out;
}

/* Left Bottom to Right Top Animation (when going to next) */
#product-display.slide-in-right .animated-image {
    transform: translate(-100px, 100px);
    /* ⬅️⬇️ left-bottom */
    opacity: 0;
}

/* Right Top to Left Bottom Animation (when going to previous) */
#product-display.slide-in-left .animated-image {
    transform: translate(100px, -100px);
    /* ➡️⬆️ right-top */
    opacity: 0;
}

/* Final position after animation completes */
#product-display.slide-in .animated-image.loaded {
    transform: translate(0, 0);
    opacity: 1;
}

.wave-wrapper {
    position: relative;
    margin-top: -150px;
    /* Pull wave up to overlap previous section */
    height: 150px;
    overflow: hidden;
    z-index: 0;
}

.custom-bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400vw;
    /* Extend width for smoother continuous animation */
    height: 150px;
    background: #37357b;

    --mask:
        radial-gradient(75.15px at 50% 101.5px, #000 99%, #0000 101%) calc(50% - 70px) 0/140px 100%,
        radial-gradient(75.15px at 50% -66.5px, #0000 99%, #000 101%) 50% 35px/140px 100% repeat-x;

    -webkit-mask: var(--mask);
    mask: var(--mask);
    animation: waveMove 60s linear infinite;
    z-index: 1;
}



/* Smooth, endless wave scroll */
@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-300vw);
    }
}

.promo-section {
    background-color: #37357b;
    position: relative;
    color: #fff;
    padding: 100px 50px;
    overflow: hidden;
    min-height: 70vh;
}

.white-triangle {
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: white;
    clip-path: polygon(100% 0, 100% 100%, 0% 100%);
    animation: fadeInLeft 2s ease-in-out forwards;
    z-index: 1;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.promo-text h1 {
    font-family: 'Berkshire Swash', cursive;
    margin: 0px 150px;
    font-size: 6rem;
    font-weight: bold;
    animation: colorChange 1s infinite alternate;
}

@keyframes colorChange {
    0% {
        color: #ff003c;
    }

    100% {
        color: #ffffff;
    }
}

.promo-text p {
    margin: 0px 150px;
    font-size: 1.3rem;
    color: #e5e5e5;
}

.product-box {
    position: relative;
    z-index: 2;
}

.product-img {
    max-width: 655px;
    transition: transform 0.5s ease;
}

.product-img:hover {
    transform: scale(0.95);
}

.discount-badge {
    position: absolute;
    top: 20px;
    left: -30px;
    width: 80px;
    /* Ensure equal width */
    height: 80px;
    /* Ensure equal height */
    background: orange;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    /* Make it round */
    display: flex;
    /* Center content */
    align-items: center;
    /* Vertically center */
    justify-content: center;
    /* Horizontally center */
    animation: moveRightLeft 1s infinite alternate;
    z-index: 3;
    text-align: center;
    line-height: 1.1;
}

@keyframes moveRightLeft {
    0% {
        transform: translateY(10);
    }

    100% {
        transform: translateX(10px);
    }
}

.product-group {
    position: relative;
    z-index: 2;
}

.special-dotedarrow {
    margin: -90px 0px -113px -330px;
}


.testimonial-heading {
    font-family: 'Berkshire Swash', cursive;
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-heading h2 {
    font-size: 2.5rem;
    font-weight: bold;
}

.testimonial-heading span {
    color: #fff;
}

.testimonial-card {
    background: white;
    color: black;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin: 15px;
}

.quote-icon {
    font-size: 30px;
    color: #e91e63;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-footer img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-footer .name {
    font-weight: bold;
    color: #e91e63;
}

.carousel-indicators [data-bs-target] {
    background-color: #fff;
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.testimonial-main {
    background-color: #d03030;
}

.wave-wrapper-test {
    position: relative;
    margin-top: -50px;
    /* Pull wave up to overlap previous section */
    height: 150px;
    overflow: hidden;
    z-index: 0;
}

.custom-bottom-wave-test {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400vw;
    /* Extend width for smoother continuous animation */
    height: 150px;
    background: #FFFAEF;

    --mask:
        radial-gradient(75.15px at 50% 101.5px, #000 99%, #0000 101%) calc(50% - 70px) 0/140px 100%,
        radial-gradient(75.15px at 50% -66.5px, #0000 99%, #000 101%) 50% 35px/140px 100% repeat-x;

    -webkit-mask: var(--mask);
    mask: var(--mask);
    animation: waveMove 60s linear infinite;
    z-index: 1;
}


.nav-link.active {
    font-weight: bold;
    color: #2d2b73 !important;
    border-bottom: 2px solid #2d2b73;
}

.footer {
    background-color: #fffaef;
    position: relative;
    margin-top: 50px;
    margin-bottom: 150px;
}


.footer-content {
    position: relative;
    z-index: 2;
}

.ice-cream-left,
.ice-cream-right {
    position: absolute;
    bottom: 0;
    width: 140px;
    z-index: 1;
}

.ice-cream-left {
    margin: 0px 0px -150px 2px;
    left: 0;
}

.ice-cream-right {
    top: 10px;
    right: 0;
}

.footer-logo {
    font-size: 48px;
    color: #cf2e2e;
    font-weight: bold;
    font-family: cursive;
}

.footer-logo-sub {
    letter-spacing: 8px;
    color: #2d2462;
    font-size: 16px;
    margin-top: -10px;
}

.logo-footer {
    max-width: 70% !important;
}

.footer h5 {
    color: #cf2e2e;
    font-weight: 800;
    font-size: 22px;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer ul li {
    margin: 12px 0;
    font-size: 14px;
    color: #2d2462;
}

.footer ul li::before {
    content: "• ";
    color: #2d2462;
}

.footer a {
    color: #2d2462;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background-color: #cf2e2e;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 18px;
}

.contact-icon {
    color: #cf2e2e;
    font-size: 20px;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .footer-logo {
        text-align: center;
    }

    .footer-logo-sub {
        text-align: center;
        display: block;
    }

    .footer .row>div {
        margin-bottom: 30px;
    }
}


.about-main {

    padding: 80px;
}

.tagline {
    font-size: 20px;
    font-weight: 500;
    color: #2d2b73;
    z-index: 2;
}


.label-main {
    font-family: 'Berkshire Swash', cursive;
    font-size: 4rem;
    font-weight: 400;
    line-height: 1.4;
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

/* Section Background */
.about-section {
    margin-top: -75px;
    background-color: #d03030;
}

/* Animated Gradient Text */
.animated-gradient {
    background: linear-gradient(90deg, #37357B, #6561E1);
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    animation: gradient-move 5s linear infinite;
    display: inline-block;
}

.about-section .wrapp-ab {
    background-image: url("../image/Frame 2147224180.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    /* padding: 160px 220px 25px; */
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.timeline-title {
    /* position: absolute; */
    top: 100px;
    left: 50%;
    /* transform: translateX(-50%); */
    font-family: 'Berkshire Swash', cursive;
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    z-index: 2;
    margin: 35px 0 20px;
    /* padding-top: 40px; */
}

.color-ourstory {
    color: #d03030;
}

.year-line {
    /* margin-top: -150px; */
    gap: 30px;
}

.year {
    display: inline-block;
    padding: 0px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #d03030;
    border-radius: 30px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    margin: 0px 0px 0px 0px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.year:hover {
    background: #fdd835;
    color: #2d2b73;
    transform: scale(1.1);
}

/* Card */
.year-card {
    background: white;
    color: #333;
    border-radius: 12px;
    padding: 20px 25px;
    width: 600px;
    /* Fixed width */
    max-width: 90%;
    /* Responsive fallback for smaller screens */
    /* height: 315px; */
    /* Optional: fixed height */
    margin: 60px auto 100px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: fadeIn 0.3s ease-in-out;
    overflow: hidden;
    /* Prevents overflow if content is too long */
}

/* Inner content layout */
.year-card .card-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    text-align: left;
    flex-wrap: wrap;
    /* Prevents layout break on smaller devices */
}

/* Arrow styling */
.year-card .arrow {
    font-weight: bold;
    font-size: 22px;
    color: #ff0000;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility: Hide element */
.d-none {
    display: none !important;
}

/* Car image styling */
.car-img {
    position: absolute;
    width: 80px;
    bottom: 0px;
    transition: left 0.4s ease-in-out;
    z-index: 0;
}

.timeline-line {
    position: absolute;
    bottom: 0%;
    left: 30px;
    height: 4px;
    background-color: red;
    z-index: 0;
    width: 0;
    transition: width 0.4s ease-in-out;
}

.mission-section {
    padding: 60px 20px;
    position: relative;
}

.mission-heading {
    font-size: 3.5rem;
    font-weight: bold;
    font-family: 'Berkshire Swash', cursive;
}

.red {
    color: #d32f2f;
}

.blue {
    color: #2c3e94;
}

.mission-description {
    color: #c62828;
    margin-top: 20px;
    font-size: 1rem;
}

/* .image-group {
    width: 400px;
    height: 400px;
    position: relative;
    margin: 0 auto;
} */

/* .round-image {
    width: 225px;
    height: 225px;
  border-radius: 50%;
    overflow: hidden;
    position: absolute;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
} */

.round-image img {
    width: auto;
    height: 100%;
    /* object-fit: cover; */
}


/* Positioning to match design overlap */
.image-1 {
    /* top: 120px;
    left: 0; */
    z-index: 2;
    animation: beat1 2s infinite;
}

.image-2 {
    /* top: 0;
    left: 120px; */
    z-index: 3;
    animation: beat2 2s infinite;
}

.image-3 {
    /* top: 150px;
    left: 200px; */
    z-index: 1;
    animation: beat3 2s infinite;
}

.image-4 {
    /* top: 150px;
    left: 200px; */
    z-index: 1;
    animation: beat3 2s infinite;
}

.image-group.position-relative {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Beat Animations with z-index switch */
@keyframes beat1 {

    0%,
    100% {
        transform: scale(1);
        z-index: 5;
    }

    50% {
        transform: scale(1.07);
        z-index: 1;
        /* temporarily behind others */
    }
}

@keyframes beat2 {

    0%,
    100% {
        transform: scale(1);
        z-index: 4;
    }

    50% {
        transform: scale(1.07);
        z-index: 3;
    }
}

@keyframes beat3 {

    0%,
    100% {
        transform: scale(1);
        z-index: 0;
    }

    50% {
        transform: scale(1.07);
        z-index: 1;
    }
}

/* Optional: light background icon */
.bg-ice-cream {
    position: absolute;
    right: 0;
    bottom: 10px;
    max-width: 200px;
    opacity: 0.05;
}

.bg-ice-creamleft {
    position: absolute;
    left: 0;
    bottom: 10px;
    max-width: 180px;
    opacity: 1.1;
    z-index: 0;
}

/* .image-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    space between images
} */

.statistics-section {
    background-color: #d03030;
    padding: 5px 0px 90px 20px;
    color: #000;
    font-family: 'Segoe UI', sans-serif;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.section-title .highlight {
    color: #203269;
}

.subtitle {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 50px;
}

.stats-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-card {
    background: linear-gradient(to bottom right, #fefef0, #fff);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 6px 0 #2c2f78;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
    font-family: 'Berkshire Swash';
}

.plus,
.percent {
    color: #d9382b;
    font-size: 1rem;
    margin-left: 3px;
}

.label {
    font-size: 0.95rem;
    margin-top: 10px;
    color: #555;
}

.product-section {
    background-color: #37357B;
    height: 200px;
    position: relative;
}

.pdp-wrapp {
    overflow: hidden;
}

.product-text {
    color: #fff;
}

.product-main-title {
    font-family: 'Berkshire Swash', cursive;
    color: #fdf7f7;
    font-weight: bold;
    font-size: 2.8rem;
}

/* 

.orbit-wrapper {
    position: fixed;
    top: 60%;
    right: -160px;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 10;
}

.orbit-container {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(0deg);
    transition: transform 0.7s ease-in-out;
}

.orbit-item {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    border: 2px solid #d50000;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.orbit-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.background-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    border: 10px solid white;
    border-radius: 50%;
    z-index: 0;
} */
.orbit-wrapper {
    position: absolute;
    top: 100%;
    right: -161px;
    /* transform: translateY(-50%); */
    width: 460px;
    height: 460px;
    border-radius: 50%;
    overflow: hidden;
    z-index: 20;
    pointer-events: none;
}

/* .orbit-wrapper {
    position: fixed;
    top: 50%;
    right: -180px;
    transform: translateY(-50%);
    width: 460px;
    height: 460px;
    border-radius: 50%;
    overflow: visible;
    z-index: 20;
    pointer-events: none;
} */

.orbit-container {
    position: relative;
    width: 100%;
    height: 100%;
    animation: spin 20s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.orbit-item {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #ff1744;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
    pointer-events: auto;
}

.orbit-item:hover {
    transform: scale(1.2);
    z-index: 2;
}

.orbit-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* .background-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    border: 10px dashed #ffffff;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.6;
} */

.ice-cream-grid {
    padding: 0;
    font-family: 'Segoe UI', sans-serif;
}

.ice-cream-grid .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-item {
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 20px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
    align-items: center;
}

.grid-item img {
    width: 220px;
    height: auto;
    margin-top: 10px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.grid-item:hover img {
    transform: scale(1.0) translateY(-20px);
}



.cup,
.icecream,
.cone {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cup.active,
.icecream.active,
.cone.active {
    display: block;
    opacity: 1;
}


#shared-bg {
    transition: opacity 1s ease-in-out;
}

#floatingIcon {
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

#floatingIcon {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-30px);
    /* initial position off-screen */
    transition: none;
}

#floatingIcon.animate-slide-in {
    animation: slideFadeIn 0.6s ease-out forwards;
}

@keyframes slideFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

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

.can-wrapp {
    display: flex !important;
    align-items: center;
    margin-left: 25px;
}



.section-wrapper {
    background-color: #d03030;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 20px 0 20px;
}

.openings {

    max-width: 350px;
    flex: 1;
}

.openings h2 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 28px;
    margin-bottom: 30px;
}

.openings h2 span {
    color: #18206f;
}

.job-button {
    width: 100%;
    display: block;
    padding: 12px 25px;
    margin: 15px 0;
    border-radius: 30px;
    border: none;
    font-size: 16px;
    text-align: left;
    background-color: #fff;
    color: #d73234;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.job-button.active {
    background-color: #2e256d;
    color: #fff;
}

.form-box {
    flex: 1;
    max-width: 700px;
    background-color: #2e256d;
    padding: 35px 30px;
    border-radius: 25px;
    position: relative;
}

.form-box::after {
    content: "";
    background: url(../image/shep/Group.png) no-repeat top right;
    background-size: 80px;
    position: absolute;
    top: -55px;
    right: -31px;
    width: 80px;
    height: 80px;
}

.form-box h2 {
    font-family: 'Berkshire Swash', cursive;
    font-size: 40px;
    text-align: center;
    margin-bottom: 25px;
}

.form-box h2 span {
    color: #d73234;
}

.form-box input,
.form-box textarea,
select.custom-dropdown.form-control {
    width: 100%;
    padding: 20px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    outline: none;
    height: 60px;
}

.form-box textarea {
    overflow: hidden;
}

.form-box .half-inputs {
    display: flex;
    gap: 10px;
}

.form-box .half-inputs input {
    flex: 1;
}

.form-box button {
    background-color: #d73234;
    color: white;
    border: none;
    padding: 12px 75px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid black;
    box-shadow: -1px 2px 0px #fdfde8;
}

.conteact {
    background: #d03030;
}

/* .contect-bg {
    background-color: #37357B;
} */

.rounded {
    border-radius: 10px !important;
}

.gallery-section {
    background-color: #37357b;
    /* padding: 5px 0px 90px 20px; */
    color: #000;
    font-family: 'Segoe UI', sans-serif;
}


.video-section {
    padding: 60px 20px;
    background-color: #37357b;
    text-align: center;
}



.video-wrapper {
    width: 100%;
    max-width: 1000px;
    height: 550px;
    margin: 30px auto;
    position: relative;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: none;
}


/* Chandani New Csss */

/* .my-bgg {
    background: linear-gradient(135deg, #d6fbbf 0%, #fef1e7 100%) !important;
} */

span.highlight.bounce-span {
    border: 3px solid #000;
}

.img-wrapp {
    background-color: #fffaef;
    padding: 25px;
    border-radius: 25px;
}

i.fa-solid.fa-location-dot.fa-flip-horizontal.me-2.mt-1,
i.fa-solid.fa-envelope.me-2.mt-1,
i.fa-solid.fa-phone.me-2.mt-1 {
    background-color: #cf2e2e;
    padding: 10px;
    border-radius: 100%;
    font-size: 18px;
}

.d-flex.fsocial-icons {
    margin-top: 15px;
    margin-left: 45px;
}


@media (min-width:1440px) {

    .img-side img {
        width: 400px;
        max-width: 100%;
        position: static;
        height: 400px;
        object-fit: contain;
    }

    .can-wrapp.third-rd {
        margin-left: 15%;
        margin-top: 30px;
    }

    .main-title {
        margin-top: 50px;
    }

    .testimonial-heading h2 {
        font-size: 3.5rem;
    }

    .testimonial-card {
        padding: 50px 25px;
    }

    .d-flex {
        gap: 10px;
    }

    .btm-imh {
        max-width: 1200px;
        width: 1200px;
        margin: 0 auto;
        position: relative;
    }

    .img-wrapp {
        /* height: 925px; */
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }
}

@media(max-width:899px) {


    .btm-imh {
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        position: relative;
    }

    .floating-label {
        display: none;
    }

    .bounce-span {
        font-size: 18px;
        padding: 0px 10px;
        border-radius: 5px;
    }

    .section-title {
        margin-top: 0;
    }

    .section-title {
        font-size: 25px;
    }

    .icecream-image {
        margin: 0 0 0 0 !important;
    }

    h5.deserve,
    h5.compromises {
        font-size: 15px;
    }

    h5.eco-friendly {
        font-size: 10px;
    }

    .img-wrapp .strong {
        font-size: 12px;
    }

    .ice-cream-img,
    .ice-cream-imgcenter {
        height: 350px;
        width: 100%;
    }

    .product-img {
        height: 100%;
        width: 100%;
    }

}

@media(max-width:767px) {
    .promo-section.d-flex {
        flex-wrap: wrap;
    }

    .promo-section {

        min-height: 30vh;
    }

    .promo-section .text-start {
        text-align: center !important;
    }

    .promo-section {
        min-height: 45vh;
        padding: 0;
        overflow: visible;
        justify-content: center !important;
        gap: 0;
    }

    .promo-text h1 br {
        display: none;
    }

    .white-triangle {
        bottom: 0;
        top: unset;
    }

    .product-group.d-flex.flex-column.align-items-center.position-relative.product-anim-wrapper {
        display: block !important;
    }

    .product-img {
        height: 100%;
        width: 100%;
    }
}

@media(min-width:1024px) {
    h6.last-call {
        display: flex;
        gap: 6px;
    }
}

@media(max-width:414px) {

    /* .icecream-container {
        
    background: url('../image/mobile_bg.png') no-repeat bottom center;
    background-size: contain;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 50px 40px;
    margin: 0 auto;
    height: 925px;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 80px;
} */
    img.BOOTOM-IMG-NW {
        position: absolute;
        right: 0;
        margin-right: 18px;
        bottom: -93px !important;
        z-index: 1;
        height: 115px !important;
        width: 150px !important;
    }

    .img-wrapp {

        padding-bottom: 150px;
    }

    img.icecream-image.animated-cone {
        height: 200px;
        width: 200px;
        object-fit: contain;
    }

    .img-wrapp {
        position: relative;
        height: -webkit-fill-available;
        display: flex;
        flex-direction: column;
    }

    .img-side {
        position: absolute;
        bottom: 0;
        left: 0%;
    }
}

img.BOOTOM-IMG-NW {
    position: absolute;
    right: 0;
    /* margin-right: 30px; */
    bottom: -167px;
    z-index: 1;
    height: 222px;
    width: 500px;
}


.btm-imh {
    position: relative;
}

@media(min-width:767px) and (max-width:1439px) {
    .img-wrapp {
        display: flex;
    }

    img.BOOTOM-IMG-NW {
        position: absolute;
        right: 0;
        /* margin-right: 30px; */
        bottom: -120px;
        z-index: 1;
        height: auto;
        width: auto;
    }

    .img-side img {
        width: 300px;
        max-width: 100%;
        position: static;
        height: 300px;
        object-fit: contain;
    }
}

@media(max-width:766px) {
    .footer-main {
        text-align: left;
    }

    h6.last-call {
        display: flex;
    }

    .d-flex.fsocial-icons {
        justify-content: center;
        margin-left: 0;
    }

    .img-side {
        height: 200px;
        width: 200px;
        margin: 0 auto;
    }

    .can-wrapp {
        justify-content: center;
    }

    .txt-side.my-npst {
        text-align: center;
    }

    .img-wrapp {
        margin: 0 5%;
    }

    img.BOOTOM-IMG-NW {
        position: absolute;
        right: 0;
        margin-right: 37px;
        bottom: -120px;
        z-index: 1;
        height: auto;
        width: auto;
    }

    .btm-imh {
        position: relative;
    }
}




/* About Us Page  */
/* .year-line.d-flex.justify-content-center.gap-4.flex-wrap.position-relative {
    display: flex
;
} */
.round-image.image-1 img {
    width: 100% !important;
}

.round-image.image-4 img {
    width: 100% !important;
}

@media(min-width:1024px) {
    .row.align-items-center {
        max-width: 1400px;
        margin: 0 auto;
    }

    .timeline-box.rounded-4.position-relative.text-white.text-center {
        padding: 130px 200px 25px 200px;
    }
}

.step-wrap {
    display: flex;
    gap: 15px;
    padding: 0 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.year-line.d-flex.justify-content-center {
    flex-direction: column;
}

.ab-imgwrapp img {
    width: 100%;
    height: 100%;
}


.styled-select {
    width: 100%;
    padding: 12px 16px;
    background-color: #ffffff;
    color: #333;
    border: 2px solid #c83232;
    border-radius: 30px;
    font-size: 16px;
    appearance: none;
}

.styled-select option {
    background-color: #c83232;
    color: #fff;
    padding: 12px 16px;
    border-radius: 25px;
}

@media(min-width:768px) and (max-width:1023px) {
    .timeline-box.rounded-4.position-relative.text-white.text-center {
        padding: 70px 100px 25px 100px;
    }
}

@media(max-width:767px) {
    .year-card {
        width: 100%;
    }

    span.year {
        font-size: 15px;
        padding: 0px 8px;
    }

    .step-wrap {
        gap: 5px;
        justify-content: center;
    }

    .timeline-line {
        top: 95px;
    }

    .car-img {
        width: 60px;
        top: 35px;
    }

    div#year-detail-card {
        margin-top: 50px !important;
        margin-bottom: 0;
    }

    .about-main {
        padding: 40px;
    }

    .about-section {
        margin-top: 0;
    }

    .about-main section.hero-section {
        padding: 0;
    }

    h1.about-title {
        font-size: 22px;
    }

    h1.about-title br {
        display: none;
    }

    h2.mission-heading,
    h1.carrer-title,
    .gallery-title,
    .contact-title,
    .product-title2 {
        font-size: 22px;
    }

    p.mission-description {
        font-size: 11px;
        margin-bottom: 15px;
    }
}

/* .orbit-wrapper {
   
    top: 100%;
    right: -170px;
    transform: none;
}


.product-section {
    position: relative;
} */







/* ==================================================GAllery Page  ================================================*/



.momai-image.slick-initialized.slick-slider {
    overflow: hidden;
}

.momai-image {
    visibility: hidden;
}

.momai-image.slick-initialized.slick-slider {
    visibility: visible;
}

.momai-image .slider-image img {
    width: 100%;
    height: 600px;
    max-height: 100%;
    object-fit: cover;
}

.momai-image {
    padding-top: 80px;
}

.momai-image.slick-initialized.slick-slider {
    margin-top: -80px;
}

.momai-image .slick-prev {
    position: absolute;
    z-index: 11;
    top: 50px;
    right: 150px !important;
    left: unset;
}

.momai-image .slick-next {
    position: absolute;
    top: 50px;
    right: 75px;
    z-index: 11;
}

.momai-image .slick-arrow {
    background-color: #fff;
    border: 2px solid #37357b;
    border-radius: 36px;
    padding: 12px;
    height: 50px;
    width: 50px;
}

.momai-image svg.slick-arrow:hover path {
    fill: #fff !important;
}

.momai-image svg.slick-arrow:hover {
    background-color: #C43130;
    transition: 1s;
}

@media screen and (max-width: 768px) {

    .momai-image .slick-next,
    .momai-image .slick-prev {
        top: 57px;
    }

    .momai-image .slick-next {
        right: 30px;
    }

    .momai-image .slick-prev {
        right: 100px !important;
    }

    .momai-image .slick-arrow {
        padding: 13px;
    }

    .momai-image .slider-image img {
        height: 500px;
    }
}

.icecream-section {
    background-color: #C43130;
    color: #fff;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    overflow: hidden;
}

.icecream-container2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.icecream-box {
    background: none;
}

.icecream-img-wrapper {
    width: 100%;
    height: 600px;
    border: 5px solid #fff;
    overflow: hidden;
    margin-bottom: 20px;
}

.icecream-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.icecream-img-wrapper:hover .icecream-img {
    transform: scale(1.2);
}

.icecream-box h2 {
    font-size: 31px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
    margin-top: 0px;
}

.icecream-box p {
    font-size: 16px;
    color: white;
    line-height: 20px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .icecream-section {
        padding-left: 60px;
        padding-right: 60px;
    }

    .icecream-box h2 {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .icecream-container2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .icecream-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .icecream-box h2 {
        font-size: 25px;
    }

    .icecream-box p {
        font-size: 15px;
    }

    .icecream-img-wrapper {
        height: 400px;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}


/* ================================================== GAllery Page end  ================================================*/


/* ================================product slider  =====================================================*/
.product-carousel {
    visibility: hidden;
}

.product-carousel.slick-initialized.slick-slider {
    visibility: visible;
}

.product-sectionn .momai-product {
    max-width: 1240px;
    margin: 0 auto;
    padding-bottom: 30px
}

.product-sectionn .momai-product .slick-track {
    padding-bottom: 20px;
    padding-top: 50px;
}

.product-sectionn .momai-product .product-card {
    padding: 17px;
    background-color: #fff;
}

.product-sectionn .momai-product .momai-product-img {
    background: linear-gradient(137.64deg, #D3F2F9 0%, #E7FAB3 50%, #FFF7EE 100%);
    border-radius: 22px;
}

.product-sectionn .product-card {
    border-radius: 20px;
    padding: 20px 0;
    margin: 10px;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.product-sectionn .product-image {
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.6s ease-in-out, filter 0.4s ease;
    position: relative;
    z-index: 2;
}

.product-sectionn .product-card:hover .product-image {
    transform: scale(1.3) translate(40px, -40px) rotate(-5deg);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
}

.product-sectionn .momai-product .momai-product-outer {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.product-sectionn .momai-product .product-card {
    margin: 10px 20px;
}

.product-sectionn .momai-product .product-title {
    font-weight: 600;
    margin: 0;
    /* font-size: 17px; */
    height: 50px;
    max-width: 100%;
}

.product-sectionn .momai-product .momai-rating {
    font-size: 13px;
    border-radius: 0.5em;
    display: inline-block;
    font-weight: 600;
    width: 70px;
}

.product-sectionn .momai-product .product-description {
    font-size: 16px;
    color: #555;
    margin-top: 10px;
    line-height: 24px;
    text-align: start;
}

.product-sectionn .momai-product .slick-dots li button:before {
    font-size: 15px;
}

.product-sectionn .momai-product .slick-dots li.slick-active button:before {
    color: #37357B;
    font-size: 20px;
}

.product-sectionn .momai-product .slick-dots {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    padding-left: 0;
    list-style: none;
}

.product-sectionn .momai-product .slick-dots li {
    margin: 0;
}

.product-sectionn .momai-product .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    font-size: 0;
}

.product-sectionn .momai-product .slick-dots li.slick-active button {
    background-color: #27216B;
    /* active dot color */
    opacity: 1;
    width: 17px;
    height: 17px;
}

/* ================================  product slider end =====================================================*/



button.p-3.rounded-full.bg-white.shadow.border.border-indigo-200 {
    padding: 0.7rem 1rem !important;
}



/* ================================================contact page  ==============================================*/
.contect-bg {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 70px 0;
}

img.cone-contact {
    top: 0px !important;
    width: 100px;
    transform: rotate(358deg);
    z-index: 2;
    right: -37px;
}

.CONTACT-CONTENT {
    background-color: #37357B;
    border-radius: var(--bs-border-radius-lg) !important;
    padding: 25px 50px;
    margin: 0;
}

.contact-map {
    overflow: hidden;
    border-radius: 25px;
}

.contect-bg {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 70px 0 !important;
}

h2.cont-heading {
    font-family: 'Berkshire Swash';
    font-size: 35px;
}

.contect-bg input.form-control.rounded-pill {
    width: 100%;
    padding: 20px 15px;
    margin-bottom: 15px;
    border: none;
    font-size: 14px;
    outline: none;
    height: 50px;
}

button.contact-btn.btn.btn-danger.rounded-pill {
    background-color: #d73234;
    color: white;
    border: none;
    padding: 12px 75px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid black;
    box-shadow: -1px 2px 0px #fdfde8;
}

.CONTACT-CONTENT p {
    margin-bottom: 35px !important;
}

.ledt-contact.col-lg-6 {
    margin-top: 0;
}

@media(max-width:767px) {
    .CONTACT-CONTENT {
        padding: 20px;
        margin: 20px;

    }
}

/* ================================================contact page  end ==============================================*/























.section-title {
    font-family: 'Berkshire Swash', cursive;
    font-size: 3.5rem;
    color: #fff;
}

.section-title .highlight {
    color: #203269;


}

h2.firstst.section-title {
    margin-top: 0;
}


.subtitle {
    font-size: 1.1rem;
    color: #f5f5f5;
}


.carousel-item {
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.product-card {
    /* background: linear-gradient(to bottom right, #e0f7fa, #fffde7); */
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin: 10px;
    position: relative;
    color: #333;
    height: 400px;
    width: 250px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    overflow: visible;
    /* 🔑 Allow image to overflow attractively */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}


.product-image {
    height: 200px;
    width: 250px;
    object-fit: contain;
    padding: 10px;
    border-radius: 10px;
    transition: transform 0.6s ease-in-out, filter 0.4s ease;
    position: relative;
    z-index: 2;
}

.product-card:hover .product-image {
    transform: scale(1.3) translate(40px, -40px) rotate(-5deg);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.4));
}

.product-title {
    font-weight: 600;
    margin-top: 15px;
    /* font-size: 1.1rem; */
}

.rating {
    font-size: 0.8rem;
    padding: 0.3em 0.6em;
    border-radius: 0.5em;
    display: inline-block;
}

.product-description {
    font-size: 0.85rem;
    color: #555;
    margin-top: 10px;
    padding: 0 5px;
    text-align: start;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #333;
}

.carousel-indicators .active {
    background-color: #ffffff;
}


.main-div {
    position: relative;
}

.floating-label {
    position: absolute;
    top: 108px;
    right: 250px;
    background-color: #fdbbfb;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 20px;
    border: 2px solid #000;
    z-index: 3;
    transform: rotate(17deg);
    animation: snakeWave 4s ease-in-out infinite;
}

/* Section Container */
@media(min-width:900px) {

    /* .icecream-container {
    background: url('../image/Union.png') no-repeat bottom center;
    background-size: contain;
    border-top-left-radius: 40px;
    border-bottom-right-radius: 40px;
    padding: 50px 40px;
    margin: 0 auto;
    height: 925px;
    max-width: 1200px;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 80px;
} */
    .img-wrapp {
        display: grid;
        grid-template-columns: 2fr 1fr;
        align-items: center;
        gap: 30px;
    }

}










.cus-review .testimonial-slider .slick-slide {
    margin: 15px;
}

.cus-review .testimonial-section {
    background: #c32c32;
    padding: 60px 20px;
    text-align: center;
}

.cus-review .testimonial-slider {
    max-width: 1200px;
    margin: auto;
}

.cus-review .testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.cus-review .testimonial-card .quote {
    font-size: 32px;
    color: #e91e63;
    margin-bottom: 15px;
}

.cus-review .testimonial-card p {
    font-size: 16px;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cus-review .client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cus-review .client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.cus-review .client-info .stars {
    color: #ffc107;
    font-size: 14px;
    line-height: 1;
}

.cus-review .client-info strong {
    color: #e91e63;
    font-size: 16px;
}

.cus-review .client-info span {
    color: #777;
    font-size: 14px;
}

.cus-review .slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.6;
}

.cus-review .slick-dots li.slick-active button:before {
    color: #2d2b73;
    opacity: 1;
}


.cus-review {
    background: #c32c32;
}

#pageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-gif {
    width: 100%;
    height: 100%;
}


 /*.cursor {*/
 /*     width: 40px;*/
 /*     height: 90px;*/
 /*     position: absolute;*/
 /*     top: 50%;*/
 /*     left: 50%;*/
 /*     transform: translate(-50%);*/
 /*     border-radius: 50%;*/
 /*     background: url('../image/couser.png') no-repeat center center / cover;*/
 /*     pointer-events: none;*/
 /*     z-index: 111;*/
 /*     transition: all 0.2s ease-out;*/
 /*     animation: moveCursor1 0.5s infinite alternate;*/
 /*   }*/
    
    
    /* ==== SVG Dot Trail Animation ==== */
.animated-dots {
    stroke-dasharray: 8 10;
    stroke: #ffffff;
    stroke-width: 3;
    fill: none;
    animation: dashMove 4s linear infinite;
}

@keyframes dashMove {
    to {
        stroke-dashoffset: -1000;
    }
}

/* ==== Floating / Pulsing Emojis, Logos, Badges ==== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.logo-float, .timeline-emoji {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

.logo-pulse, .year-badge {
    animation: pulse 2s ease-in-out infinite;
}

.year-badge {
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
}

/* ==== Timeline Item Animations ==== */
.timeline-item {
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s ease-in-out;
}

.timeline-item.animate-left {
    animation: slideInFromLeft 1s ease-out forwards;
}

.timeline-item.animate-right {
    animation: slideInFromRight 1s ease-out forwards;
}

.timeline-item.animate-center {
    animation: bounceIn 1s ease-out forwards;
}

@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px) scale(0.5) rotate(-180deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px) scale(0.5) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1) rotate(0deg);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

/* ==== Timeline Connector Glow ==== */
.timeline-item .justify-center {
    justify-content: center;
    position: relative;
}

.timeline-item .w-1\/2.flex.justify-center:after {
    content: '';
    position: absolute;
    top: 111px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 205%;
    background: white;
    border-radius: 9999px;
    /* Optional glowing line animation if re-enabled
    animation: glow-line 1.5s infinite alternate; */
}

@keyframes glow-line {
    0% {
        opacity: 0;
        height: 0;
    }
    100% {
        opacity: 1;
        height: 30px;
    }
}

/* ==== Curved SVG Path Drawing Effect ==== */
.curved-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawPath 3s ease-in-out forwards;
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 1000;
    }
    100% {
        stroke-dashoffset: 0;
    }
}

/* ==== Background Wave Effect at Bottom ==== */
.wavelabale_j {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 400vw;
    background: linear-gradient(to bottom, #d32f2f, #8b1e1e);
    --mask: radial-gradient(75.15px at 50% 101.5px, #000 99%, #0000 101%) calc(50% - 70px) 0/140px 100%,
            radial-gradient(75.15px at 50% -66.5px, #0000 99%, #000 101%) 50% 35px/140px 100% repeat-x;
    -webkit-mask: var(--mask);
    mask: var(--mask);
    animation: waveMove 50s linear infinite alternate;
    z-index: 1;
}

@keyframes waveMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==== Section Background (Optional) ==== */
.journey {
    background-color: #d03030;
}
