@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@200;300;400;500;600;700;800;900&family=Merienda:wght@300;400;500;600;700;800;900&display=swap');
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

:root{
    --primary: #62A814;
    --secondary: #03ADE0;
    --black: #0F0F0F;
    --bg: #FAFAFA;
    --bg-black: #182628;
    --white: #fff;
    --primary-font: 'Merienda', cursive;
    --secondary-font: 'League Spartan', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--primary-font);
    color: var(--secondary);
    overflow-x: hidden;
    background: var(--bg);
}

a {
    color: var(--primary);
    text-decoration: none;
    font-family: var(--secondary-font);
}
.nav-link {
    color: var(--bg-black);
}
.nav-link:hover {
    color: var(--primary);
}
.nav-link.active{
    color: var(--primary);
}
a:hover {
    color: var(--primary);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font);
}

p{
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: var(--secondary);
}

ul{
    list-style: none;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary);
    width: 40px;
    height: 40px;
    transition: all 0.4s;
    border-radius: 50px;
}

.back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover i{
    color: var(--primary);
}

.back-to-top:hover {
    background: var(--secondary);
    color: var(--primary);
    margin-bottom: 10px;
    border: 2px solid var(--primary);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

}

#preloader img {
    
    width: 100px;
    height: 100px;
    -webkit-animation: animate-preloader 2s linear infinite;
    animation: animate-preloader 2s linear infinite;
}

@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# HEADER
--------------------------------------------------------------*/
header {
    height: 100px;
    position: sticky;
    top: 0px;
    z-index: 999;
    background: var(--bg);
    padding: 0px 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.logo-section {
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 170px;
    height: 100px;
    border-left: 3px solid var(--primary);
    border-right: 3px solid var(--secondary);
}
.logo-section .logo{
    width: 150px;
}
header nav a{
    color: var(--bg-black);
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 500;
    line-height: 29px; 
}
.nav-call img{
    width: 40px;
    height: 40px;
}
.nav-call h6{
    color: #62A814;
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 20px;
}
.nav-call h4{
    color: #182628;
    font-size: 22px;
    font-weight: 800;
    line-height: 29px;
}
.nav-call-icon{
    width: 60px;
    height: 60px;
    border-radius: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
}
.contact-page .nav-call h4 {
    font-size: 20px;
    letter-spacing: 1px;
}

/*--------------------------------------------------------------
# TOP BAR
--------------------------------------------------------------*/
.top-bar{
    background: linear-gradient(90deg, #03ADE0 0%, #62A814 100%);
    color: var(--white);
}
.top-bar h6{
    font-size: 14px;
    font-weight: 400;
    line-height: 29px; 
}
.top-bar h6 b{
    font-weight: 800;
}

.blink-soft {
    animation: blinker 1.5s linear infinite;
}
@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.highlights-box{
    border: 1px solid rgba(69, 152, 8, 0.10);
    background: var(--bg);
    padding: 50px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: all ease .35s;
    position: relative;
    overflow: hidden;
    height: 355px;
}
.highlights-box-title h4{
    color: #182628;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    z-index: 2;
}
.highlights-box:hover{
    flex-direction: column-reverse;
    transition: all ease .15s;
    border: 1px solid rgba(69, 152, 8, 0.04);
    transition-delay: .4s;
    background: radial-gradient(72.14% 72.14% at 50% 50%, #03ADE0 0%, #0388B0 100%);
}
.highlights-box:hover .highlights-box-title h4{
    visibility: hidden;

}
.highlights-box-title-animated{
    transition: 0.5s ease-in;
    position: absolute;
}
.highlights-box-title-animated h4{
    top: calc(100% + 20px);
    transform: translate(-0%,100%);
    width: 100%;
    right: 0;
    left: 0;
    margin: auto;
    transition: all ease .35s;
    color: #fef9da00;
    z-index: 1;
    font-size: 10px;
}
.highlights-box-img{
    position: relative;
}
.highlights-box-img img{
    z-index: 99 !important;
    position: relative;
    width: 120px;
    height: 120px;
    transition: all ease .35s;
    filter: drop-shadow(0px 4px 15px #03ace02e);
}
.highlights-box:hover .highlights-box-img img{
    filter: drop-shadow(0px 4px 15px rgba(217, 217, 217, 0.45));
    transform: rotate(20deg);
    transition-delay: .4s;
}
.highlights-box-img svg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 1;
}
.highlights-box:hover .highlights-box-title-animated h4{
    top: 100px;
    transform: translate(-0%,-135%);
    color: #fff;
    font-size: 24px;
    z-index: -1;
    font-weight: 700;
}

.highlights-box:hover svg.left-drops {
    transform: translate(-85%,80%);
    transition: all ease .25s;
    transition-delay: .4s;
}
.highlights-box:hover svg.right-drops {
    transform: translate(100%,-80%);
    transition: all ease .25s;
    transition-delay: .4s;
}

/*--------------------------------------------------------------
# LETTER SCROLL
--------------------------------------------------------------*/
.m-scroll {
    display: flex;
    position: relative;
    margin: auto;
    overflow: hidden;
    z-index: 1;
    height: 150px;
    width: 100%;
  }
  .m-scroll__title {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    white-space: nowrap;
    transform: scale(2);
    transition: all 1s ease;
  }
  .m-scroll__title > div {
    display: flex;
    -webkit-animation: scrollText 33s infinite linear;
            animation: scrollText 33s infinite linear;
  }
  .m-scroll__title h1 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: 4px;
    transition: all 2s ease;
    -webkit-text-stroke: 0.5px #07add81f;
    color: transparent;
    font-family: var(--secondary-font);
  }
  
  /*div:hover {
    animation-play-state: paused;
  }*/
  @-webkit-keyframes scrollText {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }
  @keyframes scrollText {
    from {
      transform: translateX(0%);
    }
    to {
      transform: translateX(-50%);
    }
  }



.about-bg img.about-img{
    overflow: hidden;
    width: 90%;
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
}
.natural {
    position: absolute;
    top: 20px;
    right: 40px;
    background: #62A814;
    stroke: #FFF;
    filter: drop-shadow(0px 4px 15px rgba(83, 83, 83, 0.50));
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 200px;
    border: 2px solid #fff;
    transform: translatey(0px);
	animation: float-two 6s ease-in-out infinite;
}
.natural img{
    width: 60%;
}



  @keyframes float {
	0% {
		transform: translatey(0px);
	}
	50% {
		transform: translatey(-20px);
	}
	100% {
		transform: translatey(0px);
	}
}
@keyframes float-two {
	0% {
		transform: translatey(-10px);
	}
	50% {
		transform: translatey(-0px);
	}
	100% {
		transform: translatey(-10px);
	}
}


#about h6 {
    color: var(--primary);
    font-family: var(--secondary-font);
    font-size: 22px;
    font-weight: 500;
}
#about h2 {
    font-size: 54px;
    font-weight: 700;
    color: var(--bg-black);
}
#about h3{
    font-size: 60px;
    font-weight: 400;
    color: var(--bg-black);
}
#about p {
    font-size: 20px;
    font-weight: 300;
    line-height: 26px;
    color: var(--bg-black);
    font-family: var(--secondary-font);
}
.check img {
    background: var(--secondary);
    padding: 5px;
    border-radius: 20px;
    border: 2px solid var(--white);
    filter: drop-shadow(0px 4px 5px rgba(183, 183, 183, 0.5));
}


.product-block{
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-radius: 24px;
    transition: all .35s ease-in-out;
    /* background-color: var(--white);
    border-radius: 30px 30px 0 0; */
}
.product-transition {
    overflow: hidden;
    position: relative;
    transition: all .35s ease-in-out;
    padding: 14px;
}
.product-transition::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(35%);
    border-radius: 24px 24px 0 0;
    background-color: var(--white);
    transition: all .35s ease-in-out;
    z-index: -1;
    width: 100%;
}
.product-image img {
    display: block;
    width: 260px;
    height: 260px;
    object-fit: contain;
    border-radius: 20px;
}
.product-image.image-main {
    display: flex;
    justify-content: center;
}
.product-caption {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 30px 30px;
    background-color: var(--white);
    border-radius: 0 0 24px 24px ;
}
.product-caption h4{
    color: var(--bg-black);
    font-family: var(--secondary-font);
    font-size: 18px;
    font-weight: 700;
}
.product-caption h4 span{
    font-size: 14px;
    font-weight: 600;
}
.product-caption h6{
    color: var(--bg-black);
    font-size: 20px;
}
.product-caption a {
    border-radius: 30px;
    background: linear-gradient(180deg, #03ADE0 0%, #62A814 100%);
    padding: 10px;
    color: var(--white);
}
.product-caption a:hover{
    background: linear-gradient(180deg, #62A814 0%, #03ADE0 100%);
}
.product-block:hover .product-transition::before{
    height: calc(100%);
    filter: drop-shadow(0px 4px 5px rgba(183, 183, 183, 0.5));
}

.title h6{
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--secondary-font);
    letter-spacing: 1px;
}
.title h4{
    font-size: 44px;
    font-weight: 500;
    color: var(--bg-black);
}
.title h4 span{
    font-weight: 800;
}

.title p{
    color: var(--bg-black);
    line-height: 22px;
    font-size: 18px;
    font-weight: 400;
    font-family: var(--secondary-font);
}

.title p b{
    font-weight: 700;
}

.dishes-banner {
    background: var(--primary);
    background-image: url("../img/Diary-King-Farmhouse-Milk-Cow.jpg");
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
}
.founder-box {
    padding: 30px;
    background: #fff;
    border-radius: 30px;
}
.founder-box img{
    border-radius: 24px;
}
.founder-message {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding-left: 30px;
    border-left: 5px solid var(--primary);
}
.founder-message h6{
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.64px;
    font-family: var(--secondary-font);
    color: var(--primary);
}
.founder-message h4{
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
}
.founder-message p{
    font-size: 20px;
    font-weight: 400;
    line-height: 29px;
    font-family: var(--secondary-font);
    color: var(--bg-black);
}
.founder-message p span{
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
}
.founder-message h3{
    font-size: 20px;
    font-weight: 600;
    line-height: 29px;
    font-family: var(--secondary-font);
    color: var(--bg-black);
}
.founder-message h5{
    font-size: 20px;
    font-weight: 400;
    line-height: 29px;
    font-family: var(--secondary-font);
    color: var(--bg-black);
}
.team-img img{
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    object-fit: cover;
}
.team-section h3{
    font-size: 18px;
    font-weight: 600;
    line-height: 21px; 
    color: var(--bg-black);
    font-family: var(--secondary-font);
}
.team-section h6{
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    color: var(--bg-black);
    font-family: var(--secondary-font);
}


.contact-form {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--secondary), transparent 50%);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.contact-box {
    border-radius: 30px;
    background: linear-gradient(180deg, #62A814 0%, #03ADE0 100%);
    box-shadow: 0px 4px 27px 0px rgba(0, 0, 0, 0.07);
    padding: 30px;
}
.form-control{
    background: transparent;
    color: var(--bg-black);
    border: 0px solid #ced4da;
    border-bottom: 2px solid color-mix(in srgb, var(--secondary), transparent 50%);
    border-radius: 0px;
    padding: 6px 0px;
    font-family: var(--secondary-font);
}
.form-control:focus {
    color: var(--primary);
    background-color: transparent;
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13, 109, 253, 0);
}
::placeholder {
    color: var(--bg-black) !important;
    opacity: 1;
  }
  
  ::-ms-input-placeholder {
    color: var(--white);
  }
  button.idrBtn {
    background: var(--secondary);
    border: 0px;
    padding: 12px;
    border-radius: 40px;
    color: var(--bg);
}
button.idrBtn:hover {
    background: var(--primary);
    color: var(--white);
}
.bg-black-contact {
    background: #182628;
    height: 50%;
    width: 100%;
    position: absolute;
    bottom: 0px;
    z-index: -1;
}




.copyrights {
    font-size: 16px;
    color: var(--secondary);
    font-family: var(--secondary-font);
    padding-bottom: 70px !important;
}
.social a:hover img {
    background: #03ADE0;
    border-radius: 100%;
}
.copyrights a{
    color: var(--secondary);
    text-decoration: underline;
}
.social-footer a:hover img {
    background: var(--primary);
    border-radius: 100%;
    /* padding: 1px; */
}

.pl {
    margin: auto;
    width: 8em;
    height: 8em;
  }
  .pl__line, .pl__line-g, .pl__lines {
    animation: lineRotate 2s ease-in-out infinite;
  }
  .pl__line {
    animation-name: lineMove;
    animation-timing-function: ease-in;
  }
  .pl__line-g {
    animation-name: lineFade;
    animation-timing-function: linear;
  }
  .pl__line-g:nth-child(2), .pl__line-g:nth-child(2) .pl__line {
    animation-delay: 0.1666666667s;
  }
  .pl__line-g:nth-child(3), .pl__line-g:nth-child(3) .pl__line {
    animation-delay: 0.25s;
  }
  .pl__line-g:nth-child(4), .pl__line-g:nth-child(4) .pl__line {
    animation-delay: 0.3333333333s;
  }
  .pl__line-g:nth-child(5), .pl__line-g:nth-child(5) .pl__line {
    animation-delay: 0.4166666667s;
  }
  .pl__line-g:nth-child(6), .pl__line-g:nth-child(6) .pl__line {
    animation-delay: 0.5s;
  }
  .pl__line-g:nth-child(7), .pl__line-g:nth-child(7) .pl__line {
    animation-delay: 0.5833333333s;
  }
  .pl__line-g:nth-child(8), .pl__line-g:nth-child(8) .pl__line {
    animation-delay: 0.6666666667s;
  }
  .pl__line-g:nth-child(9), .pl__line-g:nth-child(9) .pl__line {
    animation-delay: 0.75s;
  }
  .pl__line-g:nth-child(10), .pl__line-g:nth-child(10) .pl__line {
    animation-delay: 0.8333333333s;
  }
  .pl__line-g:nth-child(11), .pl__line-g:nth-child(11) .pl__line {
    animation-delay: 0.9166666667s;
  }
  .pl__line-g:nth-child(12), .pl__line-g:nth-child(12) .pl__line {
    animation-delay: 1s;
  }
  .pl__lines {
    transform-origin: 64px 64px;
  }
  .pl__layer .pl__lines {
    stroke: var(--primary);
  }
  .pl__layer + .pl__layer .pl__lines {
    stroke: var(--secondary);
  }
  
  /* Dark theme */
  @media (prefers-color-scheme: dark) {
    :root {
      --bg: hsl(var(--hue),90%,10%);
      --fg: hsl(var(--hue),90%,90%);
    }
  }
  /* Animations */
  @keyframes lineRotate {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(0.5turn);
    }
  }
  @keyframes lineFade {
    from, 50%, to {
      opacity: 0;
    }
    10%, 45% {
      opacity: 1;
    }
  }
  @keyframes lineMove {
    from {
      stroke-dashoffset: -32;
    }
    50%, to {
      stroke-dashoffset: 32;
    }
  }


  .service-section{
    background: var(--white);
  }
  .service-card {
    padding: 10px;
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--secondary), transparent 50%);
    text-align: center;
}
img.service-card-img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
}
.service-card h3{
    font-family: var(--secondary-font);
    font-size: 23px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.service-card p{
    font-family: var(--secondary-font);
    font-size: 19px;
    font-weight: 400;
    color: var(--bg-black);
}

.service-detail-section img.service-card-img{
    height: 400px;
}

/*--------------------------------------------------------------
# GALLERY
--------------------------------------------------------------*/
.gallery-section {
    display: grid;
    min-height: 420px;
    gap: 0.5rem;
    grid-template-columns: repeat(6, 100px);
    grid-template-rows: repeat(3, 100px);
    justify-items: center;
    justify-content: center;
  }
  .gallery-section img {
    max-width: 200px;
    aspect-ratio: 1;
    display: grid;
    grid-column: span 2;
    object-fit: cover;
    clip-path: path("M 80 20 C 100 0 100 0 120 20 C 140 40 160 60 180 80 C 200 100 200 100 180 120 C 160 140 140 160 120 180 C 100 200 100 200 80 180 C 60 160 40 140 20 120 C 0 100 0 100 20 80 Z");
    transition: transform 0.3s ease, filter 0.3s ease, clip-path 0.3s ease;
    /* filter: blur(2px) saturate(138%) contrast(175%) invert(13%); */
  }
  .gallery-section img:nth-of-type(4) {
    grid-column: 2/span 2;
  }
  .gallery-section img:hover {
    clip-path: path("M 0 0 C 100 0 100 0 200 0 C 200 50 200 50 200 80 C 200 100 200 100 200 120 C 200 150 200 150 200 200 C 100 200 100 200 0 200 C 0 150 0 150 0 120 C 0 100 0 100 0 80 Z");
    filter: blur(0) saturate(100%) contrast(100%) invert(0);
    transform: scale(1.1);
    z-index: 3;
  }
  .gallery-section img:not(:hover) {
    animation: Index 0.2s ease;
  }
  
  @keyframes Index {
    0%, 100% {
      z-index: 1;
    }
  }

/*--------------------------------------------------------------
# Avalilabe Platform
--------------------------------------------------------------*/
  .now-available-section {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}
a.now-available-card {
    background: var(--white);
    border: 1px solid color-mix(in srgb, var(--secondary), transparent 50%);
    padding: 20px 30px;
    border-radius: 10px;
}
a.now-available-card img{
    height: 40px;
}

/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
footer{
    background: var(--white);
}
.top-footer {
    width: 100%;
    background: var(--white);
    padding: 40px 0px;
    text-align: center;
}
img.footer-img {
    height: 146px;
}
.footer-main{
    background: url('../img/footer-bg.png');
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}
.footer-main .title h6, .footer-main .title h4, .footer-main .title p{
    color: var(--white);
}
.footer-main  .title h4{
    line-height: 54px;
}
img.grass {
    position: absolute;
    bottom: -2px;
    height: 54px;
}
img.farm-house {
    position: absolute;
    right: 0px;
    width: 700px;
    bottom: 0px;
}
.contact-content-footer {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.contact-content-footer img{
    width: 40px;
    height: 40px;
}
.contact-content-footer h6{
    font-size: 16px;
    font-weight: 400;
}
.contact-content-footer p{
    font-size: 20px;
    font-weight: 700;
    line-height: 28px;
    font-family: var(--primary-font);
}



.breadcrumb-section{
    background: linear-gradient(90deg, #03ADE0 0%, #62A814 100%);
    color: var(--white);
    padding: 30px 0px;
    text-align: center;
}
.breadcrumb-section h2{
    font-weight: 800;
    font-size: 32px;
    margin-bottom: 10px;
}
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    padding: 0 0;
    margin-bottom: 1rem;
    list-style: none;
    justify-content: center;
}
.breadcrumb a{
    color: var(--bg);
    text-decoration: underline;
}
.breadcrumb-item.active, .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white);
}


/* Apply Animation to Active Carousel Items */
.carousel-item.active img {
    animation: fadeZoom 1.5s ease-out;
}

/* Optional: Text Animation (if captions are enabled) */
.carousel-caption h5,
.carousel-caption p {
    animation: slideInRight 1s ease-out;
}


.whatsapp-float img {
    position: fixed;
    bottom: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    z-index: 1000;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    border-radius: 50px;
    animation: vibrate 1s infinite alternate;
}

/* Vibrate Animation */
@keyframes vibrate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(2deg); }
    50% { transform: rotate(-2deg); }
    75% { transform: rotate(2deg); }
    100% { transform: rotate(0deg); }
}

/* Hover Effect */
.whatsapp-float img:hover {
    animation: none; /* Stops vibration on hover */
    transform: scale(1.1);
}
.fancybox__container{
    z-index: 9999 !important;
}

.tariff-button {
    font-size: 16px;
    padding: 12px 25px;
    color: white;
    border: none;
    cursor: pointer;
    background-size: 300% 300%;
    border-radius: 15px 15px 0 0;
    transition: 0.5s;
    font-weight: 400;
    letter-spacing: 1px;
    background-image: linear-gradient(45deg, #ff416c, #ff4b2b, #1e90ff, #1e90ff);
    animation: gradientMove 3s ease infinite;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: fit-content;
    font-family: var(--secondary-font);
    z-index: 9999;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.tariff-button:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/

@media screen and (max-width: 600px) {
    .top-bar h6 {
        font-size: 14px;
        line-height: 20px;
        text-align: center;
    }
    header {
        height: 75px;
    }
    .logo-section{
        position: relative;
        top: 0px;
        width: 120px;
        height: 75px;
    }
    .logo-section .logo {
        width: 110px;
    }
    .organic {
        top: 15px;
        right: -5px;
        width: 90px;
        height: 90px;
    }
    .about-bg {
        padding: 20px;
        width: 100%;
        height: 380px;
        margin-bottom: 0px;
    }
    a.now-available-card img {
        height: 26px;
    }
    a.now-available-card {
        padding: 15px 23px;
        display: flex;
        align-items: center;
    }
    img.footer-img {
        height: 100px;
    }
    img.farm-house {
        position: relative;
        right: 0px;
        width: 100%;
        bottom: 0px;
    }
    img.grass {
        position: absolute;
        bottom: 0px;
        height: 6px;
        width: 100%;
        background: #ffffff;
    }
    #about h6 {
        font-size: 18px;
    }
    #about h2 {
        font-size: 40px;
    }
    #about h3 {
        font-size: 42px;
    }
    #about p {
        font-size: 18px;
        line-height: 21px;
    }
    .title h4 {
        font-size: 30px;
        line-height: 43px;
    }
    .highlights-box {
        height: 230px;
    }
    .highlights-box-title h4 {
        font-size: 18px;
    }
    .about-bg img.about-img{
        width: 100%;
    }
    .highlights-box:hover .highlights-box-title-animated h4 {
        font-size: 18px;
        line-height: 26px;
    }
    .highlights-box-img svg {
        width: 35%;
    }
    .highlights-box-img {
        text-align: center;
    }
    .highlights-box-img img {
        width: 85px;
        height: 85px;
    }
    .founder-message p {
        font-size: 16px;
    }
    .dishes-banner {
        min-height: 150px;
        background-attachment: inherit;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    div#offcanvasExample {
        border-radius: 0 16px 16px 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        width: 70%;
    }
    .offcanvas{
        background: none;
    }
    .nav-link {
        color: var(--white);
    }
    .nav-link:hover {
        color: var(--white);
    }
    .product-image img {
        width: 100%;
        height: 200px;
    }
    .product-caption h4 {
        font-size: 14px;
    }
    .product-caption h4 span {
        font-size: 12px;
        font-weight: 600;
    }
    .product-caption {
        padding: 0px 10px 20px;
        border-radius: 0 0 14px 14px;
    }
    .product-caption h6 {
        font-size: 14px;
    }
    .product-transition::before {
        height: calc(50%);
    }
    .form-control{
        font-size: 0.88rem;
    }
    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }
  }
  @media screen and (max-width: 400px) {
      .highlights-box-title h4 {
            font-size: 13px;
            line-height: 18px;
        }
        .highlights-box:hover .highlights-box-title-animated h4 {
        font-size: 14px;
        line-height: 27px;
    }
  }