:root {
   --primary-color: #8FD52F;
   --default-textcolor: #000000;
   --default-font: 'latoregular';
   --bg-light: #f8f9fa;
   --error-color: #FF0000;
}

/*======================================== 
Font Import
======================================== */
@font-face {
   font-family: 'latolight';
   src: url('../fonts/lato-light-webfont.woff2') format('woff2'),
        url('../fonts/lato-light-webfont.woff') format('woff');
   font-weight: normal;
   font-style: normal;
}
@font-face {
   font-family: 'latoregular';
   src: url('../fonts/lato-regular-webfont.woff2') format('woff2'),
        url('../fonts/lato-regular-webfont.woff') format('woff');
   font-weight: normal;
   font-style: normal;
}
@font-face {
   font-family: 'latobold';
   src: url('../fonts/lato-bold-webfont.woff2') format('woff2'),
        url('../fonts/lato-bold-webfont.woff') format('woff');
   font-weight: normal;
   font-style: normal;
}
/*======================================== 
Default Setup
======================================== */
html {
   scroll-behavior: smooth;
}
body {
   font-family: var(--default-font);
   color: var(--default-textcolor);
   font-weight: 400;
   font-size: 16px;
   scroll-behavior: smooth;
}

a {
   text-decoration: none;
}

img {
   max-width: 100%;
}

.section {
   padding: 60px 0;
}

.primary-color {
   color: var(--primary-color);
}

.primary-button {
   font-size: 16px;
   color: #fff;
   font-weight: 400;
   padding: 5px 22px;
   height: 44px;
   min-width: 140px;
   background-color: var(--primary-color);
   border-radius: 44px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   border: solid 1px var(--primary-color);
}

a.primary-button .icon,
button.primary-button .icon {
   margin-right: 10px;
   width: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   font-family: 'latobold';
   color: var(--text-color);
}

.owl-carousel .owl-item img {
   width: auto;
}
.owl-height-equal .owl-stage {
   display: flex;
}
.owl-height-equal .owl-item > .item {
	height: 100%;
}

/*======================================== 
Default Heading
======================================== */
.heading {
   text-align: center;
   margin-bottom: 50px;
}

.heading h2 {
   font-size: 48px;
   line-height: 1.4;
   margin-bottom: 0;
}

.heading p {
   margin-top: 16px;
}

.heading .heading-label {
   font-family: 'latolight';
   font-size: 32px;
   margin-bottom: -5px;
}
.ctm-list {
	margin: 0;
	padding: 0;
   list-style: none;
}
.ctm-list li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 16px;
}
.ctm-list li:before {
   content: "";
   position: absolute;
   top:5px;
   left: 1px;
   width: 18px;
   height: 18px;
   background-size: 18px;
   background-image: url("../images/icons/green-checkmark.svg");
   background-repeat: no-repeat;
   background-position: center center; 
}
.ctm-list .hilite {
   font-family: 'latobold';
	font-size: 16px;
}
/*================================================== 
Default Form
==================================================*/
.form-group label {
   margin-bottom: 4px;
   font-weight: 400;
}

form .form-group,
form .form-select {
   margin-bottom: 12px;
}

.form-control,
.form-select {
   border: solid 1px #CECECE;
   border-radius: 4px;
   height: 48px;
}

textarea.form-control {
   height: 60px;
}

.form-group label span.required {
   color: var(--error-color);
}

/*================================================== 
Main Header CSS
==================================================*/
header.main-header {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   z-index: 99;
   padding: 10px 0;
   -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;

  

}

header.main-header.scrolled {
   background: rgb(54, 63, 80, 0.5);
}

.main-header a.logo img {
   width: 86px;
   -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
}

.main-header.scrolled a.logo img {
   width: 64px;
}

.main-header .content {
   display: flex;
   justify-content: space-between;
   align-items: center;
   width: 100%;
   -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
}

.main-header .right .contacts {
   display: flex;
   align-items: center;
}

.main-header .phone-number {
   font-size: 24px;
   color: #fff;
   margin-right: 20px;
   -webkit-transition: all 0.3s ease;
   transition: all 0.3s ease;
}

/*================================================== 
Main Banner CSS
==================================================*/


/*================================================== 
Service Section
==================================================*/
.services-section {
   background: #f3f7ee;
}

.service-card {
   background: #fff;
   box-shadow: 0px 0px 6px #00000029;
   border-radius: 16px;
   padding: 34px 46px;
   height: 100%;
}

.service-card .service-img img {
   width: 100%;
}

.service-card .service-content {
   margin-top: 14px;
   text-align: center;
}

.service-card .service-content h4 {
   font-size: 28px;
   color: var(--text-color);
   margin-bottom: 8px;
}

.service-card .service-content p {
   margin-bottom: 16px;
   min-height: 48px;
}

/*================================================== 
About Section
==================================================*/
.about-section {
   background: #f6fdf6;
}

.about-content .heading {
   text-align: left;
   margin-bottom: 16px;
}

.about-section .about-img {
   margin-top: -90px;
}

/*================================================== 
Testimonials Section
==================================================*/
.testimonials-section {
   padding: 60px 0;
}

.testimonial-card {
   background: #fff;
   padding: 24px 24px;
   box-shadow: 0px 3px 6px #00000029;
   border-radius: 16px;
   margin: 8px 5px;
	height: calc(100% - 16px);
}

.testimonial-profile {
   display: flex;
   align-items: center;
   margin-bottom: 20px;
}

.testimonial-profile .profile-img {
   width: 46px;
    min-width: 46px;
    height: 46px;
    min-height: 46px;
    background: #8fd52f;
    border-radius: 50%;
    overflow: hidden;
    text-align: center;
    vertical-align: middle;
    line-height: 44px;
    font-size: 20px;
    color: #fff;
}

.testimonial-profile .profile-content {
   padding-left: 14px;
}

.testimonial-profile .profile-content .author {
   color: #629E00;
   line-height: 1.3;
}

.testimonial-profile .profile-content .role {
   font-size: 10px;
}

.testimonialVideo-card {
   background: #999;
   overflow: hidden;
   border-radius: 16px;
   width: 100%;
}
.testimonialVideo video {
   width: 100%;
   height: 400px;
}

.testimonialVideo iframe {
   width: 100%;
   display: block;
   height: 380px;
}
.videoReview-wrap {
	margin-top: 26px;
}
/* OWL Carousel Rounded nav design  */
.owl-carousel.rounded-nav .owl-nav {
   text-align: right;
}

.owl-carousel.rounded-nav .owl-nav button {
   width: 28px;
   height: 28px;
   border-radius: 50%;
   background: #fff;
   border: solid 1px #A5A5A5;
   position: relative;
   margin: 0 5px;
   left: 0;
}

.owl-carousel.rounded-nav .owl-nav button:after {
   content: '';
   width: 0;
   height: 0;
   border-right: solid 7px #A5A5A5;
   border-top: solid 7px transparent;
   border-bottom: solid 7px transparent;
   display: block;
   position: absolute;
   top: 6px;
   left: 7px;
}

.owl-carousel.rounded-nav .owl-nav button.owl-next:after {
   border-left: solid 7px #A5A5A5;
   border-right: none;
   left: 12px;
}

.owl-carousel.rounded-nav .owl-nav button span {
   display: none;
}
/*================================================== 
Whyus Section
==================================================*/
.whyus-card {
   background-color: #fff;
    box-shadow: 0px 0px 6px #00000029; 
   border-radius: 16px;
   height: 100%;
   text-align: center;
   padding: 20px 0px 0px 0px;
}

.whyus-card .whyus-content {
   text-align: center;
   padding: 24px 24px 0px 24px;
}

.whyus-card .whyus-content h4 {
   font-size: 18px;
   color: var(--text-color);
   margin-bottom: 10px;
}

/*================================================== 
Food Plan Section
==================================================*/
.foodplan-section {
	background-color: #F8FAFC;
}
.foodplan-card {
   box-shadow: 0px 3px 6px #00000029;
   border-radius: 16px;
   padding: 36px 24px;
   background-color: #fff;
   height: 100%;
}

.foodplan-card.custom-plan {
   background-color: #F5F5F5;
}

.foodplan-card h4 {
   font-size: 25px;
   text-align: center;
   margin-bottom: 16px;
}

.foodplan-card .price-wrap {
   text-align: center;
   margin-bottom: 20px;
}

.foodplan-card .price-wrap p.tagline {
   margin: 0;
   font-size: 28px;
}

.foodplan-card .price-wrap p.price {
   font-family: 'latobold';
   font-size: 36px;
   line-height: 1;
   margin-bottom: 6px;
}
.foodplan-card ul.list {
   margin-bottom: 0;
}
.foodplan-card ul.list li {
   margin-bottom: 10px;
}
.foodplan-card ul.list li:last-child {
   margin-bottom: 0;
}
.foodplan-card .catering-tagline {
   margin: 0;
	font-size: 20px;
}
.catering-tagline2 {
	font-size: 24px;
   font-family: 'latobold';
}
/*================================================== 
Contact Form
==================================================*/
.contactForm-section {
   background-image: url(../images/contact-form-bg.png);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.contactForm-wrap {
   padding: 58px 40px;
   box-shadow: 0px 3px 6px #00000029;
   border-radius: 16px;
   background-color: #fff;
}

.contactForm-img img {
   width: 100%;
   border-radius: 16px;
}

.contactForm-wrap .title {
   font-size: 30px;
   margin-bottom: 20px;
   font-weight: 800;
}

.contact-form .btn-wrap {
   text-align: right;
   margin-top: 26px;
}

/*================================================== 
Footer
==================================================*/
.footer {
   background-color: #363F50;
   padding-top: 26px;
   color: #fff;
}

.footer a {
   color: #fff;
}

.footer-logo {
   margin-bottom: 24px;
}

.footer-logo img {
   width: 228px;
}

.social-icons a {
   color: #fff;
   font-size: 30px;
   margin-right: 24px;
}

.social-title {
   margin-bottom: 8px;
}

.footer-heading {
   font-family: 'latobold';
   margin-bottom: 26px;
   font-size: 20px;
}

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

.footer-services li {
   margin-bottom: 20px;
}

.footer-services li:last-child {
   margin-bottom: 0;
}

.footer-contact i {
   font-size: 20px;
   margin-right: 10px;
   display: inline-block;
   vertical-align: middle;
}

.footer-contact .whatsapp i {
   font-size: 25px;
}

.footer-contact .whatsapp {
   font-size: 28px;
}

.copyright-wrap {
   margin-top: 42px;
   padding: 16px 0;
   border-top: solid 1px rgba(255, 255, 255, 0.4);
   font-size: 14px;
}

.copyright-text {
   margin: 0;
}

.termsConditions-menu a {
   color: #fff;
}

.animate-wiggle {
	animation: wiggle 5s ease-in-out infinite;
}

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

.animation-scroll {
	animation: scroll 50s linear infinite;
}
@keyframes scroll {
   0% {
      transform: translate(0);
   }
   100% {
      transform: translate(calc(-100% - var(--gap)));
   }
}

.animate-dance3 {
	animation: dance3 2s alternate infinite;
}
@keyframes dance3 {
   0% {
      transform: translate(0);
   }

   100% {
      transform: translate(-35px);
   }
}


.animate-rotate {
	animation: rotate 20s linear infinite;
}
@keyframes rotate {
   0% {
      content: var(--tw-content);
      transform: rotate(0);
   }

   100% {
      content: var(--tw-content);
      transform: rotate(360deg);
   }
}

.animate-movebtn {
	animation: movebtn 3s linear infinite;
}
@keyframes movebtn {
   0% {
      transform: translateY(0);
   }
   
   50% {
      transform: translateY(20px);
   }  
}
/*================================================== 
END CSS 
==================================================*/

.main-banner {
   color: white;
   position: relative;
   height: 95vh;
   overflow: hidden;
   background: linear-gradient(
       45deg,
       #2d4a3e,
       #345447,
       #2b403a,
       #1d2f28,
       #284237,
       #2d4a3e
   );
   background-size: 400% 400%;
   animation: gradientBg 15s ease infinite;
   box-shadow: inset 0 0 100px rgba(29, 47, 40, 0.5);
}

/* Update glowing effect color */
.main-banner::after {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: radial-gradient(
       circle at center,
       rgba(27, 218, 138, 0.3) 0%,
       rgba(55, 226, 161, 0.2) 50%,
       transparent 100%
   );
   animation: glowPulse 4s ease-in-out infinite;
   z-index: 1;
   pointer-events: none;
}

@keyframes gradientBg {
   0% {
       background-position: 0% 50%;
       filter: hue-rotate(0deg);
   }
   50% {
       background-position: 100% 50%;
       filter: hue-rotate(10deg);
   }
   100% {
       background-position: 0% 50%;
       filter: hue-rotate(0deg);
   }
}

@keyframes glowPulse {
   0% {
       opacity: 0.5;
       transform: scale(1);
   }
   50% {
       opacity: 0.8;
       transform: scale(1.05);
   }
   100% {
       opacity: 0.5;
       transform: scale(1);
   }
}
/* Update glow effect colors */
.glow-effect {
   background: radial-gradient(
       circle,
       rgba(45, 74, 62, 0.2) 0%,
       rgba(29, 47, 40, 0.1) 30%,
       transparent 70%
   );
}

@keyframes glowPulse {
   0% {
       opacity: 0.5;
       transform: scale(1);
   }
   50% {
       opacity: 0.8;
       transform: scale(1.05);
   }
   100% {
       opacity: 0.5;
       transform: scale(1);
   }
}

/* Update gradient animation for smoother transition */
@keyframes gradientBg {
   0% {
       background-position: 0% 50%;
       filter: hue-rotate(0deg);
   }
   50% {
       background-position: 100% 50%;
       filter: hue-rotate(10deg);
   }
   100% {
       background-position: 0% 50%;
       filter: hue-rotate(0deg);
   }
}

/* Add a subtle overlay for better text readability */
.main-banner::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.3);
   z-index: 1;
}

/* Ensure content stays above the overlay */
.hero-section {
   position: relative;
   z-index: 2;
}

/* Animation keyframes */
@keyframes gradientBg {
   0% {
       background-position: 0% 50%;
   }
   50% {
       background-position: 100% 50%;
   }
   100% {
       background-position: 0% 50%;
   }
}

.hero-section {
   width: 100%;
   height: 100%;
   padding-top: 80px;
}

.hero-wrapper {
   display: flex;
   align-items: center;
   height: calc(100% - 80px);
   gap: 30px;
}

.text-slider-column {
   width: 60%;
   height: auto;
   display: flex;
   align-items: center;
   padding: 0 30px 30px 0;
}

.slide-content {
   width: 100%;
   position: relative;
   min-height: 350px;
   display: flex;
   flex-direction: column;
}

h1.banner-title {
   font-size: 64px;
   line-height: 1.2;
   font-weight: 800;
   margin-bottom: 20px;
}

.phone-btn {
   margin-top: auto;
}


/* whyus-img */
.whyus-img img{
   width: 50%;
}
.whyus-video {
   position: relative;
   height: 100%;
   min-height: 400px;
   border-radius: 15px;
   overflow: hidden;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whyus-video video {
   width: 100%;
   height: 100%;
   object-fit: cover;
   position: absolute;
   top: 0;
   left: 0;
}

.text-slider {
   position: relative;
   padding-bottom: 50px; /* Add space for pagination */
}

.swiper-pagination {
   position: absolute;
   bottom: 0 !important;
   left: 0;
   width: 100%;
}

.swiper-pagination-bullet {
   width: 10px;
   height: 10px;
   background: #ffffff;
   opacity: 0.5;
}

.swiper-pagination-bullet-active {
   opacity: 1;
   background: #ffffff;
}
.main-banner::after {
   content: '🌿';
   position: absolute;
   font-size: 40px;
   animation: floatingLeaves 15s linear infinite;
   opacity: 0.3;
}

.main-banner::before {
   content: '🌱';
   position: absolute;
   font-size: 30px;
   animation: floatingLeaves2 20s linear infinite;
   opacity: 0.2;
   left: 20%;
}

/* Add multiple leaf elements using pseudo elements */
.hero-section::before {
   content: '🍃';
   position: absolute;
   font-size: 35px;
   animation: floatingLeaves3 18s linear infinite;
   opacity: 0.25;
   left: 40%;
}

.hero-section::after {
   content: '☘️';
   position: absolute;
   font-size: 45px;
   animation: floatingLeaves4 25s linear infinite;
   opacity: 0.2;
   left: 80%;
}

@keyframes floatingLeaves {
   0% {
       transform: translate(-100%, -100%);
       top: 100%;
   }
   100% {
       transform: translate(100vw, -100vh);
       top: 0;
   }
}

@keyframes floatingLeaves2 {
   0% {
       transform: translate(-50%, -100%);
       top: 100%;
   }
   100% {
       transform: translate(50vw, -100vh);
       top: 0;
   }
}

@keyframes floatingLeaves3 {
   0% {
       transform: translate(0, -100%);
       top: 100%;
   }
   100% {
       transform: translate(-50vw, -100vh);
       top: 0;
   }
}

@keyframes floatingLeaves4 {
   0% {
       transform: translate(50%, -100%);
       top: 100%;
   }
   100% {
       transform: translate(-100vw, -100vh);
       top: 0;
   }
}

@keyframes floatingIcons1 {
   0% {
       transform: translate(-20vw, 100vh);
       top: 0;
   }
   100% {
       transform: translate(20vw, -100vh);
       top: 100%;
   }
}

@keyframes floatingIcons2 {
   0% {
       transform: translate(20vw, 100vh);
       top: 0;
   }
   100% {
       transform: translate(-20vw, -100vh);
       top: 100%;
   }
}

@keyframes floatingIcons3 {
   0% {
       transform: translate(-30vw, 100vh);
       top: 0;
   }
   100% {
       transform: translate(30vw, -100vh);
       top: 100%;
   }
}

@keyframes floatingIcons4 {
   0% {
       transform: translate(30vw, 100vh);
       top: 0;
   }
   100% {
       transform: translate(-30vw, -100vh);
       top: 100%;
   }
}

@keyframes pulseGlow {
   0% {
       transform: scale(1);
       opacity: 0.5;
   }
   50% {
       transform: scale(1.1);
       opacity: 0.7;
   }
   100% {
       transform: scale(1);
       opacity: 0.5;
   }
}

/* Add more floating icons */
.floating-icon-5::before {
   content: '🥗';
   position: absolute;
   font-size: 36px;
   animation: floatingIcons1 23s linear infinite;
   opacity: 0.3;
   left: 25%;
}

.floating-icon-6::before {
   content: '🍱';
   position: absolute;
   font-size: 38px;
   animation: floatingIcons2 26s linear infinite;
   opacity: 0.25;
   left: 45%;
}

.floating-icon-7::before {
   content: '🥪';
   position: absolute;
   font-size: 34px;
   animation: floatingIcons3 21s linear infinite;
   opacity: 0.3;
   left: 75%;
}

.floating-icon-8::before {
   content: '🍛';
   position: absolute;
   font-size: 40px;
   animation: floatingIcons4 24s linear infinite;
   opacity: 0.25;
   left: 95%;
}

.swiper-pagination{
   text-align: right !important;
}
.swiper-pagination-bullet-active{
   background: var(--primary-color) !important;
} 

 /* testimonialVideo*/

.testimonialVideo-card {
   background:transparent;
   overflow: hidden;
   border-radius: 16px;
   width: 100%;
   height: 250px;
}

.testimonialVideo {
   width: 100%;
   height: 100%;
}

.testimonialVideo video,
.testimonialVideo iframe {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.youtube-video-thumb {
   position: relative;
   cursor: pointer;
   border-radius: 10px;
   overflow: hidden;
   height: 100%;
}

.youtube-video-thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;
}


.video-container {
   position: relative;
   height: 100%;
   width: 100%;
}
.video-column {
   width: 40%;
   height: 85vh;
   padding: 5% 0px 5% 0px;
}
.video-column video {
   width: 100%;
   height: 100%;
   object-fit: cover;
   border-radius: 10px;
}


.video-container img,
.video-container iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
}


.call-btn .icon {
   margin-right: 8px;
   vertical-align: middle;
}
/* Update existing media query */

@media (max-width: 767px) {
   .whyus-video {
       min-height: 300px;
       margin-bottom: 30px;
   }
}
@media (max-width: 1400px) {
   .hero-section {
       padding-top: 70px;
   }
   
   .hero-wrapper {
       height: calc(100% - 70px);
   }
   
   .slide-content {
       min-height: 300px;
   }
   
   .video-column {
       height: 70vh;
   }
}
@media (max-width: 1200px) {
   h1.banner-title {
       font-size: 48px;
   }
   .video-column {
       padding: 50px 0;
   }
}
@media (max-width: 991px) {
   h1.banner-title {
       font-size: 40px;
   }
   .des {
       font-size: 16px;
   }
   .video-column {
       padding: 40px 0;
   }
}
@media (max-width: 768px) {
   .hero-wrapper {
       flex-direction: column-reverse;
       padding: 30px 0;
   }
   
   .text-slider-column,
   .video-column {
       width: 100%;
       padding: 20px;
       height: auto;
   }
   
   .video-column {
       max-height: 45vh;
   }
   
   h1.banner-title {
       font-size: 36px;
       text-align: center;
       margin-bottom: 20px;
   }
   
   .slide-content {
       min-height: auto;
       align-items: center;
       text-align: center;
   }
   
   .phone-btn {
       position: relative;
       bottom: auto;
       left: auto;
       margin-top: 30px;
       display: flex;
       justify-content: center;
   }
   
   .des {
       text-align: center;
   }
}
@media (max-width: 576px) {
   h1.banner-title {
       font-size: 28px;
       line-height: 1.3;
   }
   
   .text-slider-column,
   .video-column {
       padding: 15px;
   }
   
   .video-column {
       /* max-height: 35vh; */
   }
   
   .primary-button {
       padding: 10px 20px;
       font-size: 14px;
   }
   
   .des {
       font-size: 14px;
       line-height: 1.4;
   }
}
@media (max-width: 420px) {
   h1.banner-title {
       font-size: 24px;
   }
   
   .video-column {
       /* max-height: 30vh; */
   }
}
@media (max-width: 768px) {
   .text-slider {
       padding-bottom: 40px;
   }
   
   .swiper-pagination {
       bottom: 10px !important;
   }
}

