/* =========================================================
   AJWA FOODS
========================================================= */


:root {

    --purple: #47216b;
    --purple-dark: #35154f;
    --purple-light: #642f8d;

    --yellow: #ffb800;
    --yellow-light: #ffc52a;

    --white: #ffffff;
    --black: #111111;

    --light-bg: #faf8fc;
    --border: #e8e2ed;

    --heading-font: "Hey Comic", sans-serif;
    --body-font: "Poppins", sans-serif;

}




/* =========================================================
   HEY COMIC FONT
========================================================= */

@font-face {
    font-family: 'Hey Comic';
    src: url('../assets/fonts/hey-comic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body{
--sb-track-color: #ffffff;
  --sb-thumb-color: #530b84;
  --sb-size: 5px;
}
body::-webkit-scrollbar {
  width: var(--sb-size);
}

body::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 1px;
}

body::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 1px;
}


html {

    scroll-behavior: smooth;

    scroll-padding-top: 90px;

}

body {

    margin: 0;

    padding: 0;

    font-family: var(--body-font);

    color: var(--black);

    overflow-x: hidden;

}

img {

    max-width: 100%;

}


a {

    text-decoration: none;

}


button,
a {

    -webkit-tap-highlight-color: transparent;

}




/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    z-index: 1000;

    transition:
        background .4s ease,
        box-shadow .4s ease;

}


.site-header.scrolled {

position: fixed;

background: #590E8C;

backdrop-filter:
        blur(12px);

-webkit-backdrop-filter:
        blur(12px);

box-shadow: 0 5px 25px rgba(0, 0, 0, .1);
}


.navbar {

    padding-top: 25px;

    padding-bottom: 15px;

    transition:
        padding .4s ease;

}


.site-header.scrolled .navbar {

    padding-top: 12px;

    padding-bottom: 12px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: block;

    width: 105px;

    height: auto;

}

/* =========================================================
   NAVIGATION
========================================================= */

.navbar-nav {

gap: 5px;

left: 15%;

position: relative;
}


.nav-link {

position: relative;

color: var(--white) !important;

padding: 8px 13px !important;

font-size: 14px;

font-weight: 400;

transition:
        color .3s ease;
}


.nav-link::after {

    content: "";

    position: absolute;

    left: 12px;

    bottom: 1px;

    width: 0;

    height: 1px;

    background: var(--yellow);

    transition:
        width .3s ease;

}


.nav-link:hover,
.nav-link.active {

    color: var(--yellow) !important;

}


.nav-link:hover::after,
.nav-link.active::after {

    width:
        calc(100% - 24px);

}


/* =========================================================
   ENQUIRY BUTTON
========================================================= */

.enquiry-btn {

display: inline-flex;

align-items: center;

gap: 8px;

padding: 13px 33px;

color: var(--white);

background:
        transparent;

border:
        1px solid rgba(255,255,255,.75);

border-radius:
        100px;

font-size: 14px;

font-weight: 400;

transition:
        .3s ease;
}


.enquiry-btn i {

    transition:
        transform .3s ease;

}


.enquiry-btn:hover {

    color:
        var(--black);

    background:
        var(--yellow);

    border-color:
        var(--yellow);

    transform:
        translateY(-2px);

}


.enquiry-btn:hover i {

    transform:
        translateX(3px);

}


/* =========================================================
   HERO
========================================================= */

.hero-section {

position: relative;

width: 100%;

height: 100vh;

min-height: 750px;

max-height: 900px;

color: var(--white);


background-image:
        url("../assets/hero-texture.svg");

background-repeat:
        no-repeat;

background-size:
        cover;

background-position:
        center;

overflow:
        hidden;
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(255,184,0,.08),
            transparent 28%
        );

    animation:
        heroGlow 8s ease-in-out infinite;

}


@keyframes heroGlow {

    0%,
    100% {

        opacity: .5;

        transform:
            scale(1);

    }

    50% {

        opacity: .9;

        transform:
            scale(1.05);

    }

}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container {

    position: relative;

    z-index: 2;

    height: 100%;

}


.hero-container > .row {

    height: 100%;

}


/* =========================================================
   HERO TEXT
========================================================= */

.hero-content {

    position: relative;

    z-index: 10;

}


.hero-text {

    opacity: 0;

    transform:
        translateY(30px);

    animation:
        heroTextIn
        .9s
        cubic-bezier(.22,1,.36,1)
        .2s
        forwards;

}


@keyframes heroTextIn {

    to {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================
   HERO CONTENT CAROUSEL
========================================= */

.hero-content-carousel {
    position: relative;
    width: 100%;
    height: 470px;
    overflow: hidden;
}

.hero-content-track {
    position: relative;
    width: 100%;
    height: 100%;
}


/* =========================================
   INDIVIDUAL SLIDES
========================================= */

.hero-content-slide {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 100%;
    padding: -1px;
    opacity: 0;
    visibility: hidden;

    /* Start outside from right */
    transform: translateX(100%);
    transition:
        transform 0.8s cubic-bezier(0.65, 0, 0.35, 1),
        opacity 0.6s ease,
        visibility 0s linear 0.8s;
}


/* Active slide */

.hero-content-slide.active {
    opacity: 1;
    visibility: visible;

    transform: translateX(0);

    transition:
        transform 0.8s cubic-bezier(0.65, 0, 0.35, 1),
        opacity 0.6s ease;
}


/* Previous slide */

.hero-content-slide.previous {
    opacity: 0;
    visibility: visible;

    transform: translateX(-100%);

    transition:
        transform 0.8s cubic-bezier(0.65, 0, 0.35, 1),
        opacity 0.6s ease;
}


/* =========================================
   HERO HEADING
========================================= */

.hero-content-slide h1 {
    margin: 0 0 15px;
    font-family: 'Hey Comic', sans-serif;
    font-size: 55px;
    line-height: 1.12;
    font-weight: 500;
    color: #ffffff;
}


/* =========================================
   HERO PARAGRAPH
========================================= */

.hero-content-slide p {
    max-width: 650px;
    margin: 0 0 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: #ffffff;
}


/* =========================================
   HERO BUTTON
========================================= */

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    padding: 14px 24px;

    background: #ffb800;
    color: #25103f;

    border-radius: 50px;

    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;

    text-decoration: none;

    transition: all 0.3s ease;
}


/* Arrow */

.hero-btn span {
    font-size: 20px;
    line-height: 1;

    transition: transform 0.3s ease;
}


/* Hover */

.hero-btn:hover {
    background: #ffffff;
    color: #4b1678;
}

.hero-btn:hover span {
    transform: translateX(5px);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .hero-content-carousel {
        height: 400px;
    }

    .hero-content-slide h1 {
        font-size: 48px;
    }

    .hero-content-slide p {
        max-width: 550px;
        font-size: 15px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .hero-content-carousel {
        height: 430px;
    }

    .hero-content-slide h1 {
        font-size: 38px;
        line-height: 1.15;

        margin-bottom: 20px;
    }

    .hero-content-slide p {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.7;

        margin-bottom: 25px;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

}


/* =========================================================
   HERO BUTTON
========================================================= */

.hero-button {

display:
        inline-flex;

align-items:
        center;

gap:
        9px;

padding: 14px 24px;

color:
        var(--black);

background:
        var(--yellow);

border-radius:
        100px;

font-size: 14px;

font-weight:
        600;

transition:
        .3s ease;
}


.hero-button i {

    transition:
        transform .3s ease;

}


.hero-button:hover {

    color:
        var(--purple);

    background:
        var(--white);

    transform:
        translateY(-3px);

    box-shadow:
        0 12px 30px rgba(0,0,0,.15);

}


.hero-button:hover i {

    transform:
        translateX(4px);

}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {

    position:
        relative;

    height:
        100%;

}


/* =========================================================
   PRODUCT SHOWCASE
========================================================= */

.product-showcase {

position:
        absolute;

width:
        650px;

height:
        500px;

left: 40%;

top: 47%;

transform:
        translate(-45%, -42%)
        translate3d(0,0,0);

will-change:
        transform;

transition:
        transform .15s ease-out;
}


/* =========================================================
   PRODUCT GLOW
========================================================= */

.product-glow {

    position:
        absolute;

    width:
        430px;

    height:
        430px;

    left:
        105px;

    top:
        40px;

    border-radius:
        50%;

    background:
        radial-gradient(
            circle,
            rgba(255,184,0,.22),
            rgba(255,184,0,.06) 45%,
            transparent 70%
        );

    filter:
        blur(30px);

    animation:
        productGlow
        5s ease-in-out infinite;

}


@keyframes productGlow {

    0%,
    100% {

        transform:
            scale(.92);

        opacity:
            .45;

    }

    50% {

        transform:
            scale(1.08);

        opacity:
            .85;

    }

}


/* =========================================================
   PRODUCT PIECES
========================================================= */

.product-piece {

    position:
        absolute;

    display:
        block;

    opacity:
        0;

    pointer-events:
        none;

    user-select:
        none;

    will-change:
        transform,
        opacity;

}


/* =========================================================
   PRODUCT POSITIONS
========================================================= */

.product-1 {

width:
        205px;

left: 70px;

top:
        150px;
}


.product-2 {

    width:
        270px;

    left:
        190px;

    top:
        55px;

    z-index:
        3;

}


.product-3 {

width:
        190px;

left: 390px;

top:
        155px;

z-index:
        2;
}


.product-4 {

    width:
        150px;

    left:
        90px;

    top:
        270px;

}


.product-5 {

width: 230px;

left:
        400px;

top: 0px;
}


/* =========================================================
   PRODUCT ENTRANCE
========================================================= */

.product-piece.enter {

    animation:
        productEnter
        .9s
        cubic-bezier(.22,1,.36,1)
        forwards;

}


@keyframes productEnter {

    from {

        opacity:
            0;

        transform:
            translateY(50px)
            scale(.85)
            rotate(-4deg);

    }

    to {

        opacity:
            1;

        transform:
            translateY(0)
            scale(1)
            rotate(0);

    }

}


/* =========================================================
   PRODUCT FLOATING
========================================================= */

.product-1.float {

    animation:
        floatOne
        4.5s ease-in-out infinite;

}


.product-2.float {

    animation:
        floatTwo
        5s ease-in-out infinite;

}


.product-3.float {

    animation:
        floatThree
        4.2s ease-in-out infinite;

}


.product-4.float {

    animation:
        floatFour
        5.2s ease-in-out infinite;

}


.product-5.float {

    animation:
        floatFive
        4.8s ease-in-out infinite;

}


@keyframes floatOne {

    0%,100% {

        transform:
            translateY(0)
            rotate(-2deg);

    }

    50% {

        transform:
            translateY(-9px)
            rotate(1deg);

    }

}


@keyframes floatTwo {

    0%,100% {

        transform:
            translateY(0)
            rotate(0);

    }

    50% {

        transform:
            translateY(-13px)
            rotate(1deg);

    }

}


@keyframes floatThree {

    0%,100% {

        transform:
            translateY(0)
            rotate(2deg);

    }

    50% {

        transform:
            translateY(-10px)
            rotate(-1deg);

    }

}


@keyframes floatFour {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-8px);

    }

}


@keyframes floatFive {

    0%,100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-11px);

    }

}


.spiral-murukku {

position:
        absolute;

width: 100px;

left: 110px;

top: 340px;

z-index:
        8;

/* opacity:
        0; */

pointer-events:
        none;

animation:
        spiralEnter
        .8s ease
        1s forwards;
}


@keyframes spiralEnter {

    from {

        opacity:
            0;

        transform:
            scale(.5)
            rotate(-90deg);

    }

    to {

        opacity:
            1;

        transform:
            scale(1)
            rotate(0);

    }

}


.spiral-murukku.spin {

    animation:
        spiralRotate
        8s linear infinite;

}


@keyframes spiralRotate {

    from {

        transform:
            rotate(0deg);

    }

    to {

        transform:
            rotate(360deg);

    }

}


/* =========================================================
   FLOATING LABELS
========================================================= */

.floating-label {

position:
        absolute;

z-index:
        20;

color:
        var(--white);

font-family:
        var(--heading-font);

font-size: 19px;

pointer-events:
        none;

opacity:
        0;
}


.crispy-label {

    left:
        90px;

    top:
        90px;

    animation:
        crispyAnimation
        4s ease-in-out 1s infinite;

}


.crunchy-label {

right: 3px;

top:
        250px;

animation:
        crunchyAnimation
        4.5s ease-in-out 1.2s infinite;
}


@keyframes crispyAnimation {

    0%,
    100% {

        opacity:
            1;

        transform:
            translateY(0)
            rotate(-45deg);

    }

    50% {

        opacity:
            1;

        transform:
            translateY(-6px)
            rotate(-42deg);

    }

}


@keyframes crunchyAnimation {

    0%,
    100% {

        opacity:
            1;

        transform:
            translateY(0)
            rotate(-8deg);

    }

    50% {

        opacity:
            1;

        transform:
            translateY(-7px)
            rotate(-5deg);

    }

}


/* =====================================================
   PRODUCT ARROWS
===================================================== */

.product-arrow {
    position: absolute;
    z-index: 20;

    width: 90px;
    height: auto;

    pointer-events: none;
    user-select: none;

    opacity: 0;

    animation:
        arrowFadeIn
        .8s ease
        1.2s forwards;
}


.crispy-arrow {
    left: 120px;
    top: 105px;
    width: 75px;

    animation:
        crispyArrowMove
        4s
        ease-in-out
        1.2s
        infinite;
}


@keyframes crispyArrowMove {

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

    50% {
        opacity: 1;
        transform: translateY(-5px) rotate(2deg);
    }

}


.crunchy-arrow {
    right: 16px;
    top: 275px;
    width: 104px;
    animation:
        crunchyArrowMove
        4.5s
        ease-in-out
        1.4s
        infinite;
}


@keyframes crunchyArrowMove {

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

    50% {
        opacity: 1;
        transform: translateY(-5px) rotate(-2deg);
    }

}


/* =========================================================
   SCROLL BUTTON
========================================================= */

.scroll-button {

    position:
        absolute;

    left:
        50%;

    bottom:
        7px;

    width:
        72px;

    height:
        72px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        var(--black);

    background:
        var(--yellow);

    border-radius:
        50%;

    z-index:
        30;

    transform:
        translateX(-50%);

    animation:
        scrollAnimation
        3s ease-in-out infinite;

    transition:
        .3s ease;

}


.scroll-button i {

    font-size:
        27px;

}


.scroll-button:hover {

    color:
        var(--black);

    background:
        var(--yellow-light);

    transform:
        translateX(-50%)
        scale(1.08);

}


@keyframes scrollAnimation {

    0%,
    100% {

        transform:
            translateX(-50%)
            translateY(0);

    }

    50% {

        transform:
            translateX(-50%)
            translateY(-8px);

    }

}


/* =========================================================
   SECTION COMMON
========================================================= */

.about-section,
.rice-section,
.snacks-section,
.contact-section {

    padding:
        110px 0;

}


.section-tag {

display:
        inline-block;

margin-bottom:
        12px;

color:
        var(--yellow);

font-size: 14px;

font-weight:
        600;

letter-spacing:
        2px;
}


.purple-tag {

    color:
        var(--purple);

}


.section-title {

    margin:
        0 0 20px;

    color:
        var(--purple);

    font-family:
        var(--heading-font);

    font-size:
        clamp(42px, 5vw, 65px);

    font-weight:
        normal;

    line-height:
        1.05;

}


.section-title span {

    display:
        block;

}


.section-text {

margin:
        0 0 15px;

color: #000000;

font-size: 14px;

line-height: 1.9;
}



/* =========================================================
   BEST SELLING PRODUCTS
========================================================= */

.best-products-section {

padding: 80px 0 110px;

background: #ffffff;

overflow: hidden;
}


/* =========================================================
   HEADER
========================================================= */

.products-header {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 45px;

}


.products-title {

    margin: 0;

    color: var(--purple);

    font-family: var(--heading-font);

    font-size: clamp(38px, 4vw, 55px);

    font-weight: normal;

    line-height: 1;

}

.products-title br{
    display: none;
}


/* =========================================================
   NAVIGATION
========================================================= */

.products-navigation {

    display: flex;

    align-items: center;

    gap: 14px;

}


.products-navigation button {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--purple);

    background: #ffffff;

    border: 1px solid #777;

    border-radius: 50%;

    font-size: 16px;

    cursor: pointer;

    transition: all .3s ease;

}


.products-navigation button:hover {

    color: #ffffff;

    background: var(--purple);

    border-color: var(--purple);

    transform: translateY(-2px);

}


/* =========================================================
   OWL CAROUSEL
========================================================= */

#productsCarousel {

    position: relative;

}


#productsCarousel .owl-stage {

    display: flex;

}


#productsCarousel .owl-item {

    display: flex;

}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {

    width: 100%;

    padding: 0 8px;

}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image {

    position: relative;

    width: 100%;

    height: 300px;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}


.product-image::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 3px;

    width: 70%;

    height: 10px;

    transform: translateX(-50%);

    background: rgba(71, 33, 107, .08);

    border-radius: 50%;

    filter: blur(5px);

    z-index: 0;

}


.product-image img {

position: relative;

z-index: 1;

width: auto !important;

height: 280px;

max-width: 75%;

object-fit: contain;

transition:
        transform .45s cubic-bezier(.22,1,.36,1);
}


.product-card:hover .product-image img {

    transform:
        translateY(-8px)
        scale(1.035);

}


/* =========================================================
   PRODUCT DETAILS
========================================================= */

.product-info {

    padding:
        8px 4px 0;

}


.product-info h3 {

    margin:
        0 0 3px;

    color:
        #111111;

    font-family:
        var(--heading-font);

    font-size:
        20px;

    font-weight:
        normal;

    line-height:
        1.2;

}


.product-info p {

    margin:
        0;

    color:
        #a3a3a3;

    font-family:
        var(--heading-font);

    font-size:
        16px;

    line-height:
        1.3;

}


/* =========================================================
   OWL DEFAULT DOTS
========================================================= */


#productsCarousel .owl-dots {

    display: none;

}


/* =========================================================
   CAROUSEL ANIMATION
========================================================= */

#productsCarousel .owl-item {

    opacity: .45;

    transition:
        opacity .4s ease;

}


#productsCarousel .owl-item.active {

    opacity: 1;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .best-products-section {

        padding:
            80px 0;

    }


    .products-header {

        margin-bottom:
            30px;

    }


    .product-image {

        height:
            270px;

    }


    .product-image img {

        height:
            250px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .best-products-section {

        padding:
            50px 0;

    }


    .products-header {

        align-items:
            flex-end;
        text-align: center;    

    }

.products-header {
        flex-direction: column;
        display: flex;
        align-items: center;
        margin-bottom: 0px;
    }

    .products-title {
        max-width: 100%;
        font-size: 38px;
        margin-bottom: 30px;
    }

    .product-info {
    padding: 0px 4px 0;
    margin-top: 0px;
}

    
     .product-card {
        padding: 0 15px;
        margin-top: 0;
    }



    .products-title br{
        display: block;
    }


    .products-navigation {

        gap:
            20px;

    }


    .products-navigation button {

        width:
            60px;

        height:
            60px;

        font-size:
            13px;

    }


    .product-card {

        padding:
            0 15px;

    }


    .product-image {

        height:
            300px;

    }


    .product-image img {

        height:
            280px;

    }


    .product-info h3 {

        font-size:
            20px;

    }


    .product-info p {

        font-size:
            15px;

    }

}



/* =========================================================
   JEERAKASALA SECTION
========================================================= */

.jeerakasala-section {

    position: relative;

    width: 100%;

}



.jeerakasala-wrapper {
    position: relative;
    min-height: 680px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background-image: url("../assets/rice-texture.svg");
    background-size: cover;
    background-position: center;
}


.rice-corner-decoration {
    position: absolute;
    top: -13%;
    left: -3%;
    z-index: 5;
    pointer-events: none;
}

.corner-rice-bowl {
    width: 220px;
    height: auto;

    display: block;

    animation:
        cornerRiceFloat
        5s
        ease-in-out
        infinite;
}


@keyframes cornerRiceFloat {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(0deg);

    }

    50% {

        transform:
            translateY(-7px)
            rotate(1deg);

    }
}


.jeerakasala-row {

    min-height: 680px;

}



.rice-section-tag {

    display: inline-block;

    margin-bottom: 12px;

    color: #47216b;

    font-family: var(--body-font);

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

}


.jeerakasala-content h2 {

    margin: 0 0 20px;

    color: #47216b;

    font-family: var(--heading-font);

    font-size: clamp(40px, 4vw, 58px);

    font-weight: normal;

    line-height: 1.05;

}



.jeerakasala-content p {

    max-width: 520px;

    margin: 0 0 15px;

    color: #171717;

    font-family: var(--body-font);

    font-size: 14px;

    font-weight: 400;

    line-height: 1.75;

}


.jeerakasala-visual {
    position: relative;
    width: 100%;
    min-height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.jeerakasala-img {
    position: relative;
    width: 100%;
    height: 600px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}


.rice-packet {

    position: absolute;

    z-index: 5;

    width: clamp(220px, 20vw, 300px);

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%);

    filter:
        drop-shadow(
            0 18px 15px rgba(0,0,0,.15)
        );

    animation:
        ricePacketFloat
        5s
        ease-in-out
        infinite;

}


@keyframes ricePacketFloat {

    0%,
    100% {

        transform:
            translate(-50%, -50%)
            translateY(0)
            rotate(0deg);

    }

    50% {

        transform:
            translate(-50%, -50%)
            translateY(-10px)
            rotate(1deg);

    }

}


.rice-biriyani {

    position: absolute;

    z-index: 7;

    width: clamp(300px, 27vw, 420px);

    left: 50%;

    bottom: 55px;

    transform:
        translateX(-50%);

    filter:
        drop-shadow(
            0 15px 10px rgba(0,0,0,.16)
        );

    animation:
        biriyaniFloat
        4.5s
        ease-in-out
        infinite;

}


@keyframes biriyaniFloat {

    0%,
    100% {

        transform:
            translateX(-50%)
            translateY(0)
            scale(1);

    }

    50% {

        transform:
            translateX(-50%)
            translateY(-7px)
            scale(1.015);

    }

}


.rice-grass {

    position: absolute;

    z-index: 2;

    width: clamp(140px, 13vw, 200px);

    pointer-events: none;

    transform-origin:
        bottom center;

}


/* LEFT GRASS */

.grass-left {

left: 15%;

bottom: 21%;

animation:
        grassLeftSway
        4s
        ease-in-out
        infinite;
}


/* RIGHT GRASS */

.grass-right {

right: 17%;

bottom: 22%;

animation:
        grassRightSway
        4.5s
        ease-in-out
        infinite;
}


@keyframes grassLeftSway {

    0%,
    100% {

        transform:
            rotate(0deg);

    }

    50% {

        transform:
            rotate(3deg);

    }

}


@keyframes grassRightSway {

    0%,
    100% {

        transform:
            rotate(0deg);

    }

    50% {

        transform:
            rotate(-3deg);

    }

}


.delicious-decoration {

position: absolute;

z-index: 12;

right: 12%;

top: 35%;

display: flex;

flex-direction: column;

align-items: center;

transform: rotate(30deg);

animation:
        deliciousFloat
        4s
        ease-in-out
        infinite;
}


.delicious-decoration span {

    color: #171717;

    font-family: var(--heading-font);

    font-size: 18px;

    white-space: nowrap;

}


.delicious-arrow {

    width: 100px;

    height: auto;

    margin-top: 2px;

}


@keyframes deliciousFloat {

    0%,
    100% {

        transform:
            translateY(0)
            rotate(30deg);

    }

    50% {

        transform:
            translateY(-6px)
            rotate(24deg);

    }

}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .jeerakasala-wrapper {
        min-height: 700px;
    }

    .jeerakasala-row {
        min-height: 700px;
    }

    .jeerakasala-visual {
        min-height: 700px;
    }

    .jeerakasala-img {
        height: 700px;
    }

    .rice-packet {
        width: min(310px, 25vw);
    }

    .rice-biriyani {
        width: min(440px, 35vw);
        bottom: 55px;
    }

    .grass-left {
        left: 7%;
    }

    .grass-right {
        right: 7%;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .jeerakasala-wrapper {

min-height: auto;

background-position: left;

}


    .jeerakasala-row {

        min-height: auto;

    }


    .jeerakasala-content {

        padding:
            90px 20px 40px 0;

    }


    .jeerakasala-content h2 {

        font-size:
            clamp(38px, 5vw, 52px);

    }


    .jeerakasala-content p {

        max-width:
            100%;

    }


.jeerakasala-visual {
    min-height: 520px;
    height: auto;
}

.jeerakasala-img {
    height: 520px;
}


    .rice-packet {

        width:
            240px;

    }


    .rice-biriyani {

        width:
            350px;

        bottom:
            35px;

    }


    .grass-left {

        width:
            160px;

        left:
            8%;

        bottom:
            15%;

    }


    .grass-right {

        width:
            160px;

        right:
            8%;

        bottom:
            15%;

    }


    .delicious-decoration {

right: -6%;

top:
            35%;

}

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .jeerakasala-wrapper {

        min-height:
            auto;

    }


    .jeerakasala-content {

        padding:
            80px 20px 30px;

        text-align:
            center;

    }


    .rice-section-tag {

        font-size:
            13px;

    }


    .jeerakasala-content h2 {

        font-size:
            40px;

    }


    .jeerakasala-content p {

        font-size:
            14px;

        line-height:
            1.7;

    }


.jeerakasala-visual {
    min-height: 430px;
    height: 430px;
    margin-top: 10px;

    overflow: hidden;
}

.jeerakasala-img {
    width: 100%;
    height: 430px;
    overflow: hidden;
}


    .rice-packet {

width:
            190px;

top: 33%;

}


    .rice-biriyani {

width:
            285px;

bottom:
            25px;

top: 49%;

}


    .grass-left {

width:
            125px;

left: 8%;

bottom: 37%;

}


    .grass-right {

width:
            125px;

right: 7%;

bottom: 34%;

}


    .delicious-decoration {

        right:
            2%;

        top:
            35%;

    }


    .delicious-decoration span {

        font-size:
            14px;

    }


    .delicious-arrow {

        width:
            60px;

    }


    .rice-corner-decoration {

        left:
            -35px;

        top:
            -25px;

    }


    .corner-rice-bowl {

        width:
            140px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .jeerakasala-content {

        padding:
            75px 15px 20px;

    }


    .jeerakasala-content h2 {

        font-size:
            36px;

    }


    .jeerakasala-visual {

        height:
            390px;

    }


    .rice-packet {

        width:
            170px;

    }


    .rice-biriyani {

        width:
            260px;

        bottom:
            20px;

    }


    .grass-left,
    .grass-right {

        width:
            110px;

    }


    .delicious-decoration {

right: 35px;

top: 32%;

}

}


/* =========================================================
   ABOUT US SECTION
========================================================= */

.snacks-section {
    width: 100%;
    padding: 90px 0px;
    background: #ffffff;
    overflow: hidden;
}


/* Main wrapper */

.snacks-container {
    position: relative;
    width: 100%;
    max-width: 1080px;
    min-height: 460px;
    margin: 0 auto;
}


/* =========================================================
   IMAGE BOX
========================================================= */

.snacks-image-box {
    position: absolute;

    top: 0;
    left: 0;

    width: 60%;
    height: 340px;

    overflow: hidden;

    border-radius: 65px;

    z-index: 1;

    box-shadow:
        0 15px 40px rgba(48, 25, 70, 0.10);

    animation:
        snacksImageFloat
        6s
        ease-in-out
        infinite;
}


.snacks-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition:
        transform 0.8s ease;
}


/* Small zoom on hover */

.snacks-image-box:hover .snacks-image {
    transform: scale(1.04);
}


/* =========================================================
   PURPLE CONTENT BOX
========================================================= */

.snacks-content-box {
    position: absolute;
    right: 0;
    top: 90px;
    width: 48%;
    min-height: 340px;
    padding: 60px 50px;
    background: #590E8C;
    border-radius:
        45px 45px 75px 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 1 20px 45px rgba(48, 25, 70, 0.18);
}


.snacks-content-box h2 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: "Hey Comic", sans-serif;

    font-size: clamp(32px, 3.2vw, 43px);

    font-weight: 400;

    line-height: 1.05;
}


.snacks-content-box h2 span {
    color: #ffb900;
}


.snacks-content-box p {
    max-width: 430px;
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
}


@keyframes snacksImageFloat {

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

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

}


@keyframes snacksContentFloat {

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

    50% {
        transform:
            translateY(7px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .snacks-section {
        padding: 80px 0;
    }


.navbar-nav {
    left: 0%;
}

    .snacks-container {
        width: 90%;

        min-height: 650px;
    }


    .snacks-image-box {
        width: 65%;

        height: 330px;
    }


    .snacks-content-box {
        width: 55%;

        top: 250px;

        padding: 50px 40px;

        min-height: 330px;
    }


    .snacks-content-box h2 {
        font-size: 35px;
                    text-align: center;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

.snacks-section {
        padding: 70px 0;
    }

    .snacks-container {
        width: 88%;
        min-height: auto;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }



.snacks-image-box {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: 270px;
        border-radius: 40px;
        z-index: 1;
    }

    .snacks-content-box {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        min-height: 300px;
        margin: 0;
        padding: 45px 30px;
        border-radius: 35px 35px 55px 0;
        z-index: 2;
    }



    .snacks-content-box p {

font-size: 14px;

line-height: 1.7;
text-align: center;
max-width: 100%;

}


    .snacks-button {

        font-size: 10px;

        padding: 10px 18px;

    }

}


@keyframes mobileImageFloat {

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

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

}


@keyframes mobileContentFloat {

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

    50% {
        transform:
            translateY(8px);
    }

}


/* =========================
   CTA SECTION
========================= */

.cta-section {
    background: #ffbd00;
    padding: 45px 0;
    margin: 60px 0 0px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content h2 {
    margin: 0;
    color: #47216b;
    font-family: "Hey Comic", sans-serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #590e8c;
    color: #ffffff;
    padding: 17px 28px;
    min-width: 200px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn span {
    font-size: 20px;
    line-height: 10px;
    transition: transform 0.3s ease;
}

.cta-btn:hover {
    background: #351457;
    color: #ffffff;
    transform: translateY(-3px);
}

.cta-btn:hover span {
    transform: translateX(4px);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .cta-section {
        padding: 35px 20px;
        margin: 0px;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-btn {
        padding: 11px 20px;
    }

    .footer-brand {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
}

}


/* =========================
   FOOTER
========================= */

.footer {
    background: #fefefe;
    border-top: 3px solid #ffbd00;
    font-family: "Poppins", sans-serif;
}


/* Main Footer */

.footer-main {
    padding: 80px 0 70px;
}


/* Footer Logo */

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 120px;
    height: auto;
}


/* Footer Brand */

.footer-brand p {
    max-width: 330px;
    margin-bottom: 20px;
    color: #000000;
    font-size: 14px;
    line-height: 1.7;
}


/* Social Icons */

.footer-social {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #590e8c;
    color: #ffffff;
    border-radius: 50%;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ffbd00;
    color: #42216b;
    transform: translateY(-3px);
}


.footer h3 {
    margin: 0 0 20px;
    color: #42216b;
    font-family: "Hey Comic", sans-serif;
    font-size: 24px;
    font-weight: 700;
}


/* Quick Links */

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

.footer-links ul li {
    margin-bottom: 5px;
}

.footer-links ul li a {
    color: #000000;
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #42216b;
}

.footer-contact p {
    color: #222222;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-contact .footer-intro {
    max-width: 280px;
    margin-bottom: 15px;
}

.footer-contact strong {
    font-weight: 600;
}

.footer-contact a {
    color: #222222;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #42216b;
}

.footer-bottom {
    background: #590e8c;
    padding: 13px 0;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
    font-size: 12px;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom a:hover {
    color: #ffbd00;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .footer-main {
        padding: 40px 20px;
    }

    .footer-brand {
        margin-bottom: 35px;
    }

    .footer-links,
    .footer-contact {
        margin-bottom: 0px;
    }

    .footer h3 {
        font-size: 20px;
    }

    .footer-bottom {
        padding: 15px 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

}


/* =========================================================
   MODAL
========================================================= */

.enquiry-modal {

    overflow:
        hidden;

    border:
        0;

    border-radius:
        22px;

    box-shadow:
        0 30px 80px rgba(0,0,0,.25);

}


.enquiry-modal .modal-header {

    padding:
        25px 28px;

    color:
        var(--white);

    background:
        var(--purple);

    border:
        0;

}


.modal-tag {

display:
        block;

margin-bottom: 0px;

color:
        var(--yellow);

font-size: 14px;

font-weight:
        600;

letter-spacing: 2px;
}


.modal-title {

    margin:
        0;

    font-family:
        var(--heading-font);

    font-size:
        30px;

    font-weight:
        normal;

}


.enquiry-modal .modal-body {

    padding:
        28px;

}


.form-group {

    margin-bottom:
        17px;

}


.form-group label {

display:
        block;

margin-bottom:
        6px;

color: #000000;

font-size: 14px;

font-weight:
        500;
}


.form-control {

min-height:
        45px;

padding:
        10px 13px;

border:
        1px solid #e2e2e2;

border-radius:
        10px;

font-size: 14px;

box-shadow:
        none !important;
}


.form-control:focus {

    border-color:
        var(--purple);

    box-shadow:
        0 0 0 3px rgba(71,33,107,.08) !important;

}


.submit-button {

width:
        100%;

display:
        flex;

align-items:
        center;

justify-content:
        center;

gap:
        8px;

padding:
        13px;

color:
        var(--black);

background:
        var(--yellow);

border:
        0;

border-radius:
        100px;

font-size: 14px;

font-weight: 500;

transition:
        .3s ease;
}


.submit-button:hover {

    color:
        var(--white);

    background:
        var(--purple);

}

.hidden-input-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}


/* =========================================================
   MOBILE NAV
========================================================= */

.navbar-toggler {

    padding:
        5px 7px;

    border:
        1px solid rgba(255,255,255,.6);

}


.navbar-toggler:focus {

    box-shadow:
        none;

}


.navbar-toggler-icon {

    width:
        20px;

    height:
        20px;

    filter:
        brightness(0)
        invert(1);

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {


    .hero-section {

        height:
            auto;

        min-height:
            900px;

        max-height:
            none;

    }


    .navbar-collapse {

        margin-top:
            15px;

        padding:
            30px;

        background:
            rgba(53,21,79,.96);

        border-radius:
            15px;

        backdrop-filter:
            blur(10px);

    }


    .hero-content-slide h1 br{
        display: none;
    }

    .enquiry-btn {

        margin-top:
            10px;

    }


    .hero-container {

                padding-top: 80px;

    }


    .hero-content {

        margin-bottom:
            20px;

        text-align:
            center;

    }


    .hero-content p {

        margin-left:
            auto;

        margin-right:
            auto;

    }


    .hero-visual {

        height:
            380px;

    }




    .product-showcase {

        left:
            45%;

        transform:
            translate(-50%, -40%)
            scale(.8);
        top: 11%;

    }

    .hero-section {
    background-position: right;
}


    .contact-details {

        padding-left:
            0;

        margin-top:
            30px;

    }


}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {


    .hero-section {

        min-height:
            820px;

    }

.product-showcase {
    width: 650px;
    left: 50%;
    top: 5%;
    transform: translate(-50%, -35%) scale(0.57);
    transform-origin: center center;
}

    .navbar {
    padding-left: 20px;
    padding-right: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-around;
}



.navbar-nav {
    gap: 15px;
    left: 0%;
}



.hero-content-slide h1 br{
    display: none;
}

    .hero-container {

        padding-top:
            150px;

    }


    .hero-content h1 {

font-size: 37px;

}


    .hero-content p {

max-width:
            330px;

font-size: 14px;

}


    .hero-visual {

        height:
            360px;

    }


    .product-showcase {

        transform:
            translate(-50%, -35%)
            scale(.57);

    }


    .scroll-button {

        width:
            58px;

        height:
            58px;
            bottom: 60px;

    }


    .scroll-button i {

        font-size:
            22px;

    }


    .about-section,
    .rice-section,
    .snacks-section,
    .contact-section {

        padding:
            75px 0;

    }


    .section-title {

        font-size:
            42px;

    }


    .rice-image-box,
    .snacks-image {

        min-height:
            300px;

    }


    .cta-box {

        padding:
            40px 25px;

        border-radius:
            25px;

    }


    .cta-button {

        margin-top:
            25px;

    }


    .footer-bottom {

        align-items:
            flex-start;

        flex-direction:
            column;

    }


}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {

        scroll-behavior:
            auto;

    }


    *,
    *::before,
    *::after {

        animation-duration:
            .01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            .01ms !important;

    }

}



