@import url('https://fonts.googleapis.com/css2?family=Karantina:wght@300;400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/bebas-neue');
@import url('https://fonts.cdnfonts.com/css/poppins');
body{
    min-height: 100vh;
    margin: 0;
    font-family: Poppins;
    color: #1E1E1E;
    background-color: #CDCDCD;
    linear-gradient(to right, #CDCDCDcc, #CDCDCDcc),
    url(images/bg.jpg);
    overflow-x: hidden; /* Prevent horizontal overflow */
}
*{
    padding: 0;
    margin: 0;
}




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



.word:hover span {
  text-decoration: underline;
  transform: rotateX(-360deg);
  color: #37a7a7;
}
.word span {
  display: inline-block;
  padding: 0 0.1rem;
  font-weight: 500;
  /* font-size: 2.5em; */
  transition: transform .5s linear, color .5s linear;
}
.word1 span:nth-child(1) {
  transition-delay: 0.1s;
}
.word1 span:nth-child(2) {
  transition-delay: 0.2s;
}
.word1 span:nth-child(3) {
  transition-delay: 0.3s;
}
.word1 span:nth-child(4) {
  transition-delay: 0.4s;
}
.word1 span:nth-child(5) {
  transition-delay: 0.5s;
}
.word1 span:nth-child(6) {
  transition-delay: 0.6s;
}
.word1 span:nth-child(7) {
  transition-delay: 0.7s;
}
.word1 span:nth-child(8) {
  transition-delay: 0.8s;
}
.word1 span:nth-child(9) {
  transition-delay: 0.9s;
}
.word2 span:nth-child(1) {
  transition-delay: 0.1s;
}
.word2 span:nth-child(2) {
  transition-delay: 0.2s;
}
.word2 span:nth-child(3) {
  transition-delay: 0.3s;
}
.word2 span:nth-child(4) {
  transition-delay: 0.4s;
}
.word2 span:nth-child(5) {
  transition-delay: 0.5s;
}
.word2 span:nth-child(6) {
  transition-delay: 0.6s;
}
.word2 span:nth-child(7) {
  transition-delay: 0.7s;
}
.word2 span:nth-child(8) {
  transition-delay: 0.8s;
}
.word3 span:nth-child(1) {
  transition-delay: 0.1s;
}
.word3 span:nth-child(2) {
  transition-delay: 0.2s;
}
.word3 span:nth-child(3) {
  transition-delay: 0.3s;
}
.word3 span:nth-child(4) {
  transition-delay: 0.4s;
}
.word3 span:nth-child(5) {
  transition-delay: 0.5s;
}
.word3 span:nth-child(6) {
  transition-delay: 0.6s;
}
.word3 span:nth-child(7) {
  transition-delay: 0.7s;
}
.word3 span:nth-child(8) {
  transition-delay: 0.8s;
}
.word4 span:nth-child(1) {
  transition-delay: 0.1s;
}
.word4 span:nth-child(2) {
  transition-delay: 0.2s;
}
.word4 span:nth-child(3) {
  transition-delay: 0.3s;
}
.word4 span:nth-child(4) {
  transition-delay: 0.4s;
}
.word4 span:nth-child(5) {
  transition-delay: 0.5s;
}
.word4 span:nth-child(6) {
  transition-delay: 0.6s;
}
.word4 span:nth-child(7) {
  transition-delay: 0.7s;
}
.word4 span:nth-child(8) {
  transition-delay: 0.8s;
}
.word4 span:nth-child(9) {
  transition-delay: 0.9s;
}
.word4 span:nth-child(10) {
  transition-delay: 1s;
}


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

/* Basic header styling */

/* Header background when scrolled */
header.scrolled {
  background-color: white; /* White background when scrolled */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional shadow for effect */
}
/* Basic header styling */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  z-index: 1000;
}

.left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.left img {
  width: 5rem;
}

.brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: #1E1E1E;
  margin: 0;
}

nav.right {
  margin-right: 3rem;
  position: relative;
}

nav.right ul.menu {
  display: flex; /* Show menu in desktop view */
  list-style: none;
  gap: 2rem;
}

nav.right a {
  text-decoration: none;
  color: #1E1E1E;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

nav.right a:hover {
  color: #666;
}

/* Hamburger Icon Styling */
/* Hamburger Icon Styling */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 0.3rem;
  z-index: 1001; /* Ensure it’s above the menu */
  position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #1E1E1E;
  transition: 0.3s ease;
}

/* Mobile Menu Styling */
@media (max-width: 768px) {
  nav.right ul.menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background-color: rgba(255, 255, 255, 0.9);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      padding: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
      z-index: 999;
  }
  .category-tab{
    /* overflow: hidden; */
    padding: 1rem .9rem;
    font-size: .9rem;
    overflow: hidden;

  }

  nav.right ul.menu.show {
      display: flex;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  /* Show hamburger icon on mobile */
  .hamburger {
      display: flex;
      position: absolute;
      right: 15px;
  }
  
}


/* Hamburger animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


/***************************/
/* header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 1000;
    
}


.left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.left img {
    width: 5rem;
    position: static; 
}

.brand {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #1E1E1E;
    margin: 0;
}
nav.right{
    margin-right:3rem ;
}

nav.right ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav.right a {
    text-decoration: none;
    color: #1E1E1E;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

nav.right a:hover {
    color: #666;
} */

/* header img{
    width: 5rem;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    box-shadow: #1E1E1E;
    box-shadow: inset;
} */

/* .banner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
} */


/* -----------------------------------------------------------------*/
/* Fade-out animation */
.fade-out {
    animation: fadeOut 0.5s forwards;
}

.fade-in {
    animation: fadeIn 0.5s forwards;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Additional styles for products list */
/* .products_list {
    padding: 20px;
    text-align: center;
}

.products_list img {
    max-width: 100%;
    height: auto;
} */
/*--------------------------------------------------------------------------*/
.product{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 170px;
    z-index: 2;
    width: 500px;
    transition: 0.7s;
}
.product .soda{
    position: absolute;
    bottom: 30px;
    left: calc(50%);
    transform: translateX(-50%);
    width: 380px;
    height: 500px;
}
.soda{
    
    --left: 0px;
    background: 
        var(--url) var(--left),
        url(images/mockup.png) 0 0;
    background-size: auto 100%;
    width: 380px;
    aspect-ratio: 2 / 4;
    background-blend-mode: multiply;
    transition: 0.8s;
    mask-image: url(images/mockup.png);
    mask-size: auto 100%;
}
.soda:nth-child(2){
    opacity: 0;
}
.product:hover{
    bottom: 300px;
}
.product:hover .soda:nth-child(2){
    opacity: 1;
    --left: 500px;
}
.product:hover .soda:nth-child(1){
    opacity: 0;
    --left: 500px;
}
/************/


/* bag section  */


.product .bag{
    position: absolute;
    bottom: 30px;
    left: calc(50%);
    transform: translateX(-50%);
    width: 300px;
    height: 400px;

}
.bag{
    
    --left: 0px;
    background: 
        var(--url) var(--left),
        url(images/bagbg.png) 0 0;
    background-size: auto 100%;
    width: 380px;
    aspect-ratio: 2 / 4;
    background-blend-mode: multiply;
    transition: 0.8s;
    mask-image: url(images/bagbg.png);
    mask-size: auto 100%;
}
.bag:nth-child(2){
    opacity: 0;
}
.product:hover{
    bottom: 300px;
}
.product:hover .bag:nth-child(2){
    opacity: 1;
    --left: 500px;
}
.product:hover .bag:nth-child(1){
    opacity: 0;
    --left: 500px;
}

/* pizza section  */


.product .pizza{
    position: absolute;
    bottom: 28px;
    left: calc(50%);
    transform: translateX(-50%);
    width: 480px;
    height: 270px;

}
.pizza{
    
    --left: 0px;
    background: 
        var(--url) var(--left),
        url(images/pizza.png) 0 0;
    background-size: auto 100%;
    width: 380px;
    aspect-ratio: 2 / 4;
    background-blend-mode: multiply;
    transition: 0.8s;
    mask-image: url(images/pizza.png);
    mask-size: auto 100%;
}
.pizza:nth-child(2){
    opacity: 0;
}
.product:hover{
    bottom: 300px;
}
.product:hover .pizza:nth-child(2){
    opacity: 1;
    --left: 500px;
}
.product:hover .pizza:nth-child(1){
    opacity: 0;
    --left: 500px;
}

.pizza .rock img:nth-child(2){
    position: absolute;
    height: 80%;
    left: 0;
    bottom: 0;
    transition: 0.7s;
    /* rotate: -25deg; */
    z-index: 1;
}

/*ice cream*/

.product .icecream{
    position: absolute;
    bottom: 30px;
    left: calc(50%);
    transform: translateX(-50%);
    width: 360px;
    height: 400px;

}
.icecream{
    
    --left: 0px;
    background: 
        var(--url) var(--left),
        url(images/icecream.png) 0 0;
    background-size: auto 100%;
    width: 380px;
    aspect-ratio: 2 / 4;
    background-blend-mode: multiply;
    transition: 0.8s;
    mask-image: url(images/icecream.png);
    mask-size: auto 100%;
}
.icecream:nth-child(2){
    opacity: 0;
}
.product:hover{
    bottom: 300px;
}
.product:hover .icecream:nth-child(2){
    opacity: 1;
    --left: 500px;
}
.product:hover .icecream:nth-child(1){
    opacity: 0;
    --left: 500px;
}

/* petscup section  */


.product .petscup{
  position: absolute;
  bottom: 28px;
  left: calc(50%);
  transform: translateX(-50%);
  width: 300px;
  height: 490px;

}
.petscup{
  
  --left: 0px;
  background: 
      var(--url) var(--left),
      url(images/petscup.png) 0 0;
  background-size: auto 100%;
  width: 380px;
  aspect-ratio: 2 / 4;
  background-blend-mode: multiply;
  transition: 0.8s;
  mask-image: url(images/petscup.png);
  mask-size: auto 100%;
}
.petscup:nth-child(2){
  opacity: 0;
}
.product:hover{
  bottom: 300px;
}
.product:hover .petscup:nth-child(2){
  opacity: 1;
  --left: 500px;
}
.product:hover .petscup:nth-child(1){
  opacity: 0;
  --left: 500px;
}

.petscup .rock img:nth-child(2){
  position: absolute;
  height: 80%;
  left: 0;
  bottom: 0;
  transition: 0.7s;
  /* rotate: -25deg; */
  z-index: 1;
}

.rock{
    position: absolute;
    inset: 0 0 0 0;
    width: 100%;
    pointer-events: none;
}
.rock img:nth-child(1){
    position: absolute;
    height: 170px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
    transition: 0.7s;
    z-index: 1;
}
.rock img:nth-child(2){
    position: absolute;
    height: 50%;
    left: 0;
    bottom: 0;
    transition: 0.7s;
    /* rotate: -25deg; */
    z-index: 1;
}
.rock img:nth-child(3){
    position: absolute;
    max-height: 800px;
    /* height: 100%; */
    right: -310px;
    /* left: 0; */
    bottom: -200px;
    rotate: -25deg;
    transition: 0.7s;
    z-index: 1;
}
.banner:has(.product:hover) .rock img:nth-child(1){
    transform: translateX(-50%) translateY(50px);
}
.banner:has(.product:hover) .rock img:nth-child(2){
    transform: translateX(-100px) translateY(100px);
}
.banner:has(.product:hover) .rock img:nth-child(3){
    transform: translateX(100px) translateY(100px);
}
.banner:has(.rock:hover) .rock img:nth-child(1){
  transform: translateX(-50%) translateY(50px);
}
.banner:has(.rock:hover) .rock img:nth-child(2){
  transform: translateX(-100px) translateY(100px);
}
.banner:has(.rock:hover) .rock img:nth-child(3){
  transform: translateX(100px) translateY(100px);
}

.slider{
    
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    overflow: hidden;
}


/*landing****************************/

/* .list .item:first-child {
  display: block !important;
} */


.slider .list .item{
    position: absolute;
    inset: 0 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
}
.slider .list .item .content{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    /* max-width: 100%; */
    text-align: center;
    display: grid;
    grid-template-columns: repeat(2, 630px);
    text-align: left;
    /* gap: 500px;
     */
    column-gap: 420px;
    row-gap: 15px;
    font-size: 1.2em;
    /* text-transform: uppercase; */
    font-family: Poppins;
    /* text-shadow: 0 0 80px #000; */
}
.slider .list .item .content h2{
    font-size: 8em;
    font-family: 'Bebas Neue', sans-serif;
    line-height: 0.9em;
    transform: translateY(-100%);
    transition: transform 1s;
    grid-row-start: 1;
    grid-row-end: 3;
}


.slider .list .item .content p:last-child{
    display: flex;
    justify-content: start;
    align-items: end;
    padding-bottom: 25px;
}
/* item default */
.slider .list .item .image{
    flex-shrink: 0;
    width: var(--diameter);
    height: var(--diameter);
    background-image: var(--url);
    background-size: var(--diameter) var(--diameter);
    background-position: center;
    border-radius: 50%;
    transform: rotate(-60deg);
    position: relative;
    transition: 1s;
}
.slider .list .item .image::before, 
.slider .list .item .image::after{
    position: absolute;
    width: 70%;
    height: 70%;
    content: '';
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%)  rotate(-120deg);
    background-image: 
    linear-gradient(to right, #0004, #0004),
    var(--url);
    background-size: var(--diameter) var(--diameter);
    background-position: center;
    transition: 1s;
}
.slider .list .item .image::after{
    width: 30%;
    height: 30%;
    background-image: var(--url);
    border: 3px solid #fff2;
    transform: translate(-50%, -50%) rotate(-170deg);
}

/* default  */
.slider .list .item .image{
    filter: blur(6px);
}

.slider .list .item{
    pointer-events: none;
    opacity: 0;
}
/* item active */
.slider .list .item.active{
    pointer-events: auto;
    opacity: 1;
}
.slider .item.active .image{
    filter: blur(5px);
    transform: rotate(40deg);
}
.slider .item.active .image::before,
.slider .item.active .image::after
{
    transform: translate(-50%, -50%) rotate(0deg) ;
}
.slider .list .item.active .content h2{
    transform: translateY(0);
}

/* item phía sau */
.slider .list .item.active ~ .item{
    opacity: 0;
}
.slider .item.active ~ .item .image{
    transform: rotate(60deg);
}
.slider .item.active ~ .item .image::before
{
    transform: translate(-50%, -50%) rotate(120deg) ;
}
.slider .item.active ~ .item .image::after
{
    transform: translate(-50%, -50%) rotate(170deg) ;
}
.slider .list .item.active ~ .item .content h2{
    transform: translateY(100%);
}
/* arrows */
.arrows{
    position: absolute;
    /* bottom: 30px; */
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* padding: 0 20px; */
    
}
.arrows button {
    all: unset;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.651);
    border-radius: 10px;
    padding: 10px 20px;
    color: white;
    transform: scale(1.2); /* Reduced initial scale */
    transition: transform 0.3s ease, background-color 0.3s ease;
    animation: pulse 1.5s infinite; /* Pulse animation */
    z-index: 1;
}
.slider .list::after{
    position: absolute;
    content: '';
    bottom: 0;
    width: min(1000px, 100vw);
    height: 70%;
    left: 50%;
    transform: translateX(-50%);
    background-image: url(img/model.png);
    background-size: cover;
    background-position: top;
    pointer-events: none;
    animation: showModel 2s ease-in-out 2 forwards;
}
/* Hover effect */
.arrows button:hover {
    transform: scale(1.4); /* Slightly larger on hover */
    background-color: #51bcbc; /* Darker background on hover */
    color: #000;
}
/* Adjust arrow positions */
.arrows button.left {
    position: absolute;
    left: 20px;
}

.arrows button.right {
    position: absolute;
    right: 20px;
    
}    
/* WhatsApp, Call, and Mail Button Styling */
.action-buttons {
    position: fixed;
    bottom: 20px; /* Adjust as needed for placement */
    right: 20px;  /* Adjust as needed for placement */
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* z-index: 1000; */
}

.action-buttons .icon-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    cursor: pointer;
    animation: pulse 1.5s infinite;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.icon-button.call {
    background-color: #34B7F1;
}

.icon-button.mail {
    background-color: #F39C12;
}

/************   category tab       ***************/

.category-tabs {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #eee;
}

.category-tab {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
  border: none;
  background: none;
  color: #666;
}

.category-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #37a7a7;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.category-tab.active {
  color: #37a7a7;
}

.category-tab.active::after {
  transform: scaleX(1);
}

/* Products Section */
.products-section {
  padding: 50px;
  text-align: center;
  background-color: #f9f9f9;
}

.products-section h2 {
  font-size: 2.5em;
  /* margin-bottom: 20px; */
}

/* Grid Layout */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.products-grid.visible {
  opacity: 1;
  transform: translateY(0);
}
.hidden {
  display: none;
}

/* Product Card */
.product-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: left;
  padding: 15px;
  opacity: 0; /* Initial state for fade-in */
  transform: translateY(20px); /* Initial position for fade-in */
  transition: opacity 0.3s ease, transform 3s ease;
}

/* Hover effect */
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* Image styling */
.product-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 8px;
}

/* Card Text Styling */
.product-card h3 {
  font-size: 1.5em;
  margin: 10px 0 5px;
}

.product-card p {
  color: #555;
  font-size: 0.9em;
  margin: 5px 0 0;
}

/* Fade-in when in view */
.product-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}



/*contact us form*/

.contact_us_green * {
    font-family: Nunito, sans-serif;
  }
  
  .contact_us_green .responsive-container-block {
    min-height: 75px;
    height: fit-content;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 0px;
    margin-right: auto;
    /* margin-bottom: 60px; */
    margin-left: auto;
  }
  
  .contact_us_green input:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
  }
  
  .contact_us_green textarea:focus {
    outline-color: initial;
    outline-style: none;
    outline-width: initial;
  }
  
  .contact_us_green .text-blk {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    line-height: 25px;
  }
  
  .contact_us_green .responsive-cell-block {
    min-height: 75px;
    min-width: 350px;
  }
  
  .contact_us_green .responsive-container-block.container {
    /* max-width: 1320px; */
    margin-top: 60px;
    margin-right: auto;
    margin-bottom: 60px;
    margin-left: auto;
  }
  
  .contact_us_green .responsive-container-block.big-container {
    padding-top: 0px;
    padding-right: 50px;
    padding-bottom: 0px;
    padding-left: 50px;
  }
  
  .contact_us_green .text-blk.contactus-head {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 10px;
    margin-left: 0px;
  }
  
  .contact_us_green .text-blk.contactus-subhead {
    max-width: 385px;
    color: #3b3b3b;
    font-size: 18px;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
  }
  
  .contact_us_green .contact-svg {
    padding-top: 0px;
    padding-right: 25px;
    padding-bottom: 0px;
    padding-left: 0px;
    width: 65px;
    height: 40px;
  }
  
  .contact_us_green .social-media-links {
    /* margin-top: 80px; */
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    width: 250px;
    display: flex;
    justify-content: space-evenly;
  }

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


  /* Back-to-Top Button Styles */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(129deg, #406364, #37a7a7, #406363);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 123, 255, 0.5);
}

/* Icon Styles */
.icon {
  width: 24px;
  height: 24px;
  stroke: white;
}



/* Add hover effect */
.back-to-top:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease-in-out;
}

  
  /****************************/
  .contact_us_green .social-svg {
    width: 35px;
    height: 35px;
  }
  
  .contact_us_green .text-box {
    display: flex;
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 50px;
    margin-left: 0px;
  }
  
  .contact_us_green .contact-text {
    color: #3b3b3b;
  }
  
  .contact_us_green .input {
    height: 50px;
    width: 90%;
    border-top-width: 2.5px;
    border-right-width: 2.5px;
    border-bottom-width: 2.5px;
    border-left-width: 2.5px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #a2a2a2;
    border-right-color: #a2a2a2;
    border-bottom-color: #a2a2a2;
    border-left-color: #a2a2a2;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 16px;
    padding-top: 5px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-left: 15px;
  }
  
  .contact_us_green .textinput {
    height: 200px;
    width: 95%;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: #a2a2a2;
    border-right-color: #a2a2a2;
    border-bottom-color: #a2a2a2;
    border-left-color: #a2a2a2;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    font-size: 16px;
    padding-top: 20px;
    padding-right: 30px;
    padding-bottom: 20px;
    padding-left: 20px;
  }

  .btn-wrapper {
    margin-top: 20px;
}

.submit-btn {
    background-color: #4CAF50; /* Green background */
    color: white; /* White text */
    padding: 10px 20px; /* Padding */
    border: none; /* Remove borders */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    font-size: 16px; /* Font size */
    position: relative; /* For absolute positioning of icon */
}

.submit-btn:disabled {
    background-color: #ccc; /* Gray background when disabled */
}

.tick-icon {
    margin-left: 8px; /* Space between text and icon */
    color: white; /* White color for the icon */
}


  
  .contact_us_green .submit-btn {
    min-width: 290px;
    height: 60px;
    background-color: #1c3b28;
    font-size: 18px;
    font-weight: 700;
    color: white;
    border-top-width: 2px;
    border-right-width: 2px;
    border-bottom-width: 2px;
    border-left-width: 2px;
    border-top-style: none;
    border-right-style: none;
    border-bottom-style: none;
    border-left-style: none;
    border-top-color: #767676;
    border-right-color: #767676;
    border-bottom-color: #767676;
    border-left-color: #767676;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    cursor: pointer;
  }
  
  .contact_us_green .btn-wrapper {
    display: flex;
    justify-content: center;
  }
  
  .contact_us_green .text-blk.input-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-top: 15px;
    margin-right: 0px;
    /* margin-bottom: 15px; */
    margin-left: 0px;
  }
  
  .contact_us_green .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    margin-left: 0px;
  }
  
  .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
    padding-top: 0px;
    padding-right: 0px;
    padding-bottom: 0px;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact_us_green .head-text-box {
    display: none;
  }
  
  .contact_us_green .line {
    border-right-width: 1.8px;
    border-right-style: solid;
    border-right-color: #a2a2a2;
  }
  
  .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
    padding-top: 0px;
    padding-right: 20px;
    padding-bottom: 0px;
    padding-left: 0px;
  }
  
  @media (max-width: 1024px) {
    .contact_us_green .responsive-container-block.container {
      justify-content: center;
    }
  
    .contact_us_green .text-blk.contactus-subhead {
      max-width: 90%;
    }
  
    .contact_us_green .head-text-box {
      display: block;
    }
  
    .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-7.wk-ipadp-10.line {
      padding-top: 0px;
      padding-right: 20px;
      padding-bottom: 60px;
      padding-left: 0px;
    }
  
    .contact_us_green .line {
      border-right-width: initial;
      border-right-style: none;
      border-right-color: initial;
      border-bottom-width: 1.8px;
      border-bottom-style: solid;
      border-bottom-color: #a2a2a2;
    }
  
    .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
      margin-top: 60px;
      margin-right: 0px;
      margin-bottom: 0px;
      margin-left: 0px;
    }
  
    .contact_us_green .workik-contact-bigbox {
      display: flex;
    }
  
    .contact_us_green .responsive-cell-block.wk-tab-12.wk-mobile-12.wk-desk-5.wk-ipadp-10 {
      padding-top: 0px;
      padding-right: 0px;
      padding-bottom: 0px;
      padding-left: 0px;
    }
  }
  
  @media (max-width: 768px) {
    .contact_us_green .text-content {
      display: none;
    }
  
    .contact_us_green .input {
      width: 100%;
    }
  
    .contact_us_green .textinput {
      width: 100%;
    }
  
    .contact_us_green .text-blk.contactus-head {
      font-size: 30px;
    }
    
  }
  
  @media (max-width: 500px) {
    .contact_us_green .responsive-container-block.big-container {
      padding-top: 0px;
      padding-right: 20px;
      padding-bottom: 0px;
      padding-left: 20px;
    }
  
    .contact_us_green .workik-contact-bigbox {
      display: block;
    }
  
    .contact_us_green .text-blk.input-title {
      font-size: 16px;
    }
  
    .contact_us_green .text-blk.contactus-head {
      font-size: 26px;
    }
  
    .contact_us_green .text-blk.contactus-subhead {
      font-size: 16px;
      line-height: 23px;
    }
  
    .contact_us_green .input {
      height: 45px;
    }
  
    .contact_us_green .responsive-cell-block.wk-ipadp-6.wk-tab-12.wk-mobile-12.wk-desk-6 {
      margin: 0 0 25px 0;
    }
  }



  @import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;600;700;800&amp;display=swap');

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
}

.wk-desk-1 {
  width: 8.333333%;
}

.wk-desk-2 {
  width: 16.666667%;
}

.wk-desk-3 {
  width: 25%;
}

.wk-desk-4 {
  width: 33.333333%;
}

.wk-desk-5 {
  width: 41.666667%;
}

.wk-desk-6 {
  width: 50%;
}

.wk-desk-7 {
  width: 58.333333%;
}

.wk-desk-8 {
  width: 66.666667%;
}

.wk-desk-9 {
  width: 75%;
}

.wk-desk-10 {
  width: 83.333333%;
}

.wk-desk-11 {
  width: 91.666667%;
}

.wk-desk-12 {
  width: 100%;
}

@media (max-width: 1024px) {
  .wk-ipadp-1 {
    width: 8.333333%;
  }

  .wk-ipadp-2 {
    width: 16.666667%;
  }

  .wk-ipadp-3 {
    width: 25%;
  }

  .wk-ipadp-4 {
    width: 33.333333%;
  }

  .wk-ipadp-5 {
    width: 41.666667%;
  }

  .wk-ipadp-6 {
    width: 50%;
  }

  .wk-ipadp-7 {
    width: 58.333333%;
  }

  .wk-ipadp-8 {
    width: 66.666667%;
  }

  .wk-ipadp-9 {
    width: 75%;
  }

  .wk-ipadp-10 {
    width: 83.333333%;
  }

  .wk-ipadp-11 {
    width: 91.666667%;
  }

  .wk-ipadp-12 {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .wk-tab-1 {
    width: 8.333333%;
  }

  .wk-tab-2 {
    width: 16.666667%;
  }

  .wk-tab-3 {
    width: 25%;
  }

  .wk-tab-4 {
    width: 33.333333%;
  }

  .wk-tab-5 {
    width: 41.666667%;
  }

  .wk-tab-6 {
    width: 50%;
  }

  .wk-tab-7 {
    width: 58.333333%;
  }

  .wk-tab-8 {
    width: 66.666667%;
  }

  .wk-tab-9 {
    width: 75%;
  }

  .wk-tab-10 {
    width: 83.333333%;
  }

  .wk-tab-11 {
    width: 91.666667%;
  }

  .wk-tab-12 {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .wk-mobile-1 {
    width: 8.333333%;
  }

  .wk-mobile-2 {
    width: 16.666667%;
  }

  .wk-mobile-3 {
    width: 25%;
  }

  .wk-mobile-4 {
    width: 33.333333%;
  }

  .wk-mobile-5 {
    width: 41.666667%;
  }

  .wk-mobile-6 {
    width: 50%;
  }

  .wk-mobile-7 {
    width: 58.333333%;
  }

  .wk-mobile-8 {
    width: 66.666667%;
  }

  .wk-mobile-9 {
    width: 75%;
  }

  .wk-mobile-10 {
    width: 83.333333%;
  }

  .wk-mobile-11 {
    width: 91.666667%;
  }

  .wk-mobile-12 {
    width: 100%;
  }
}
/* Keyframes for pulsing animation */
@keyframes pulse {
    0%, 100% {
        transform: scale(1.3);
    }
    50% {
        transform: scale(1.1);
    }
}
@keyframes showModel{
    from{
        transform: translateX(-50%) scale(1.3) translateY(88px);
    }
}

.arrows button.d-none{
    opacity: 0;
    pointer-events: none;
}

/* Adjustments for smaller screens */
@media (max-width: 1024px) {
    header {
        padding: 0.5rem;
    }
    
    header .left img {
        width: 3rem;
    }

    header .brand {
        font-size: 1.5rem;
    }

    nav.right ul {
        gap: 1rem;
    }

    .product {
        width: 80%;
        max-width: 400px;
    }

    .slider .list .item .content {
        grid-template-columns: 1fr;
        font-size: 1em;
    }

    .slider .list .item .content h2 {
        font-size: 4em;
    }
}

@media (max-width: 768px) {
  .arrows{
    display: none;
  }
    header {
        flex-direction: column;
        padding: 0.5rem;
    }

    header .brand {
        font-size: 1.2rem;
    }

    nav.right ul {
        gap: 0.5rem;
        flex-direction: column;
        align-items: center;
    }

    .product {
        width: 90%;
        max-width: 350px;
    }

    .slider .list .item .content {
        font-size: 0.9em;
        height: 100vh;
    }

    .slider .list .item .content h2 {
        font-size: 7em;
    }
}

@media (max-width: 480px) {
  .category-tab{
    /* overflow: hidden; */
    padding: 1rem .9rem;
    font-size: .7rem;
    overflow: hidden;
    font-weight: 700;

  }
    header .brand {
        font-size: 1rem;
    }
    .products-grid{
      justify-content: center;
    }
    .product .bag {
        width: -webkit-fill-available;
        max-height: 230px;
        bottom: -70px;
    }
    .product .pizza {
      width: 75%;
      max-height: 145px;
      bottom: -80px;

  }
  .product .icecream {
    width: 60%;
    max-height: 200px;
    bottom: -70px;

}
.product .petscup {
  width: 40%;
  max-height: 200px;
  bottom: -80px;

}
.product .soda {
  width: 40%;
  max-height: 200px;
  bottom: -80px;

}

    .slider .list .item .content {
        /* font-size: 0.8em; */
        height: 100vh;
    }

    .slider .list .item .content h2 {
        font-size: 7.5em;
    }
}
@media all and (max-width: 1024px) {
    .slider .list .item .content {
        grid-template-columns: repeat(2, 300px);
        gap: 300px; /* Reduced gap for better spacing */
    }
    
    .slider .list .item .content h2 {
        font-size: 7em; /* Slightly reduced from 8em */
    }
    
    nav.right {
        margin-right: 2rem; /* Reduced margin */
    }
}

@media all and (max-width: 767px) {
    /* Header adjustments */
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 0.5rem 1rem;
        background-color: rgba(255, 255, 255, 0.9); /* Optional: adds slight background */
    }

    .brand {
        font-size: 1.5rem; /* Smaller brand text */
    }

    nav.right {
        margin-right: 0;
    }

    nav.right ul {
        gap: 0.8rem;
    }

    nav.right a {
        font-size: 0.8rem;
    }

    /* Content adjustments */
    .slider .list .item .content {
        grid-template-columns: 90%; /* Single column layout */
        gap: 1rem;
        top: 100px; /* Adjusted top position */
        padding: 0 1rem;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
    }

    .slider .list .item .content h2 {
        font-size: 3em; /* Smaller heading size */
        line-height: 1;
        margin-bottom: 1rem;
        text-align: center;
    }

    .slider .list .item .content p {
        font-size: 0.9rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .slider .list .item .content p:last-child {
        justify-content: center;
        padding-bottom: 15px;
    }

    /* Hide elements as per your existing code */
    /* .soda {
        display: none;
    } */

    .rock {
        display: none;
    }

    header img {
        /* display: none; */
    }
    .bag{
        height: 10px;
    }
}

/* Add a new breakpoint for very small devices */
@media all and (max-width: 480px) {

    header {
        padding: 0.5rem;
    }

    .brand {
        font-size: 1.2rem;
    }

    nav.right ul {
        gap: 0.5rem;
    }

    nav.right a {
        font-size: 0.7rem;
    }

    .slider .list .item .content {
        /* top: 80px; */
        height: 100vh;
    }

    .slider .list .item .content h2 {
      font-size: 5em;
      position: relative; /* To position pseudo-element correctly */
      object-fit: fill;
      z-index: 1; /* Ensure text stays on top */
  }
  
  .slider .list .item .content h2::before {
      content: ""; /* Add pseudo-element for background blur */
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url(./images/landmob.png) no-repeat;
      background-size: cover;
      filter: blur(4px); /* Adjust blur intensity as needed */
      z-index: -1; /* Place behind the text */
      border-radius: inherit; /* Ensure the blur matches any border radius */
      object-fit: fill;
  }
  

    .slider .list .item .content p {
        font-size: 0.8rem;
    }

    /* Adjust arrow buttons */
    .arrows button {
        transform: scale(1.2);
        padding: 8px 16px;
    }
    .banner h1 {
        font-size: 1.5rem;
    }

    .banner p {
        font-size: 0.9rem;
    }

    .products_list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .products_list .product-card {
        max-width: 100%;
        padding: 0.8rem;
    }

    .slider .content {
        font-size: 0.8rem;
    }
}

/* Add styles for medium-sized tablets */
@media all and (min-width: 768px) and (max-width: 1023px) {
    .slider .list .item .content {
        grid-template-columns: repeat(2, 250px);
        gap: 200px;
    }

    .slider .list .item .content h2 {
        font-size: 5em;
    }

    .soda {
        width: 300px;
    }

    nav.right {
        margin-right: 2rem;
    }
}

/* About Us Section Styles */
.about-us-section {
  padding: 80px 20px;
  background: #f9f9f9;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 70px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #37a7a7;
}

.about-container {
  /* max-width: 1200px; */
  margin: 0 auto;
  display: flex;
  gap: 90px;
  align-items: center;
}

.about-content {
  flex: 1;
  padding: 20px;
}

.about-content h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.feature {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.feature i {
  font-size: 2rem;
  color: #37a7a7;
  margin-bottom: 15px;
}

.feature h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.about-image {
  flex: 1;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 10px;
}

/* Animation Classes */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.fade-in-left.active, 
.fade-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 968px) {
  .about-container {
      flex-direction: column;
  }
  
  .about-content,
  .about-image {
      width: 100%;
  }
  
  .about-features {
      grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 2rem;
  }
  
  .about-content h3 {
      font-size: 1.5rem;
  }
}
@media(max-width:480px){
  .footer p{
    font-size: .8rem;
  }
}