html {
    font-size: 16px;
}
body,
button,
input,
textarea{
  font-family: "Manrope", sans-serif;
}
button{
  border: none;
}

@media (max-width: 1690px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 1600px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 1440px) {
  html {
    font-size: 13px !important;
  }
}

@media (max-width: 1300px) {
  html {
    font-size: 12px !important;
  }
}

@media (max-width: 1024px) {
  html {
    font-size: 12px !important;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 11px !important;
  }
}

@media (max-width: 521px) {
  html {
    font-size: 13px !important;
  }
}
.section-header h2{
  margin-bottom: 1.5rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




h1 {
    font-size: 5rem;
    line-height: 1;
}

button {
   padding: 1rem 2rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: white;
}


h2 {
    font-size: 4rem;
    line-height: 1;
}

h3 {
    font-size: 3.25rem;
    line-height: 1.3;
}

h4 {
    font-size:1.8rem;
    font-weight: 400;
}

a {
    text-decoration: none;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;

}

p {
    font-size: 1.25rem;
    line-height: 1.6;
}


@media (max-width: 1160px) {
  h2 {
    font-size: 3.3rem;
  }

  h1 {
    font-size: 4rem;
  }
}
@media (max-width: 511px) {
  h2 {
    font-size: 2rem;
  }

  h1 {
    font-size:2.3rem;
  }
  p{
    font-size: 1rem;
  }
  h4{
    font-size: 1.1rem;
  }
}

/* @media (max-width: 391px) {
  h2 {
    font-size: 2.5rem;
  }
} */

body {
    margin: 0;
    padding-top: 7rem;
    /* font-family: Arial, sans-serif; */
}
.btn {
  padding: 1rem 2rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  
}
.btn-green{
  background-color: rgba(82, 174, 50, 1);
  padding: 1rem 2rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  border: none;

}
.padding {
padding-left: 6rem;
padding-right: 6rem;
}
@media (max-width: 750px){
  .padding {
padding-left: 1rem;
padding-right: 1rem;
}

}
@media (max-width: 480px) {
 .padding {
padding-left: 1rem;
padding-right: 1rem;
}
}
.mb{
margin-bottom: 2rem;
}
.mb3{
    margin-bottom: 3rem;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 6rem;
  background: transparent;
  transition: all 0.3s ease;
  z-index: 1000;
}

.header.scrolled {
  background: #fff;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.08);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 3.5rem;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  padding: 0.7rem 1.8rem;
  border-radius: 3rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(1px);
  border: 1px solid rgba(255,255,255,0.3);
}

.nav-menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.header.scrolled .nav-menu {
  background: transparent;
  border: 1px solid #e5e5e5;

}
.header.scrolled {

  padding: 0.7rem 6rem;
 
}
.header.scrolled .nav-menu a {
  color: #000;
}

.contact-btn a {
  background: #4CAF2F;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 8px;
}

.menu-toggle span {
  width: 40px;
  height: 3px;
  background: rgb(0, 0, 0);
  transition: 0.3s;
}

@media (max-width: 768px) {

  .contact-btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }
.header.scrolled .nav-menu {
 background-color: white;
 width: 70%;

}
.header.scrolled .nav-menu a {
text-align: left;

}
.header{
  background-color: white;
  padding-left: 1.3rem;
  padding-right: 1.3rem;
}
  .nav-menu {
    position: fixed;
    top: 5.2rem;
    left: -100%; 
    width: 100%; 
    height: 100vh;
      background: white;
border: none;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    transition: 0.3s ease;
    z-index: 999;
    border-radius: 0rem;
    gap: 2rem;
  }

  .nav-menu a {
    padding: 0rem;
    font-size: 1.3rem;
    width: 100%;
    text-align: left;
    color: #000000; 
  }

  .nav-menu.active {
    left: 0; 
  }

  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
 .menu-toggle.active {
  gap: 4px;
}
}







.gga-footer {
  position: relative;
  background: url("../images/footer-background-image.webp") center/cover no-repeat;
  padding: 6rem 0;
  color: #fff;
}

.gga-footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.gga-footer-container {
  max-width: 120rem;
  margin: 0 auto;
  
  position: relative;
  z-index: 2;
}

.gga-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr auto;
  gap: 4rem;
  align-items: start;
}

.gga-footer-logo {
  width: 11rem;
  margin-bottom: 2rem;
}
.gga-footer-about{
  margin-top: -3rem;
}
.gga-footer-about p {
  color: rgba(255, 255, 255, 1);
 font-weight: 400;
  opacity: 0.9;
}

.gga-footer-col h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.gga-footer-links {
  list-style: none;
  padding: 0;
}

.gga-footer-links li {
  margin-bottom: 1.2rem;
}

.gga-footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
color: rgba(255, 255, 255, 1);
  font-weight: 400;
  opacity: 0.9;
}

.gga-footer-social {
  margin-top: 1rem;
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

.gga-footer-social img {
 
  height: 2rem;
   width: auto;
  object-fit: contain;
}
@media (max-width: 1000px){
  .gga-footer-grid{
     grid-template-columns: 1fr;
  }
}










.hero-home{
  background: url("../images/hero-background.webp") center/cover no-repeat;
}
.hero-exporting{
   background: url("../images/exporting-hero.webp") center/cover no-repeat;
}
.hero-services{
  background: url("../images/hero-services.webp") center/cover no-repeat;
}
.hero-gallery{
   background: url("../images/hero-gallery.webp") center/cover no-repeat;
}
.hero-about{
   background: url("../images/hero-about.webp") center/cover no-repeat;
}
.hero-product{
   background: url("../images/hero-product.webp") center/cover no-repeat;
}
.hero-contact{
   background: url("../images/hero-contact.webp") center/cover no-repeat;
}
.hero-importing{
   background: url("../images/hero-importing.webp") center/cover no-repeat;
}
.hero-retail{
   background: url("../images/hero-retail.webp") center/cover no-repeat;
}
.hero-ship{
   background: url("../images/hero-ship.webp") center/cover no-repeat;
}
.hero-wholesale{
   background: url("../images/hero-wholesale.webp") center/cover no-repeat;
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  max-width: 70rem;
  color: white;
}

.hero-content h1 {
  font-weight: 400;
  line-height: 1.15;
  
}

.hero-content h4 {
margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.5rem;
 
  max-width: 42rem;
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
}



.btn-learn {
  background: #f59e0b;
  color: white;
}

.btn-contact {
  background: #dc2626;
  color: white;
}

.hero {
  margin-top: -8rem;
}
@media (max-width: 1024px) {


  .hero-content {
    max-width: 100%;
  }

  .hero-content h1 {
   
    line-height: 1.2;
  }

  .hero-content h4 {
  
    max-width: 100%;
  }

  .hero-buttons {
    gap: 1rem;
  }
}
@media (max-width: 768px) {

  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    
  }



  .hero-buttons {
  
    align-items: center;
    width: 100%;
    justify-content: center;
  }

  .hero-buttons a {
    width: 42%;
    max-width: 250px;
    text-align: center;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media (max-width: 480px) {

  /* .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content h4 {
    font-size: 0.9rem;
  } */

  
}
.achievements {
 padding-bottom: 4rem;
  text-align: center;
  background: url("../images/map.webp") center 3.2rem /contain no-repeat;

}

.section-header {
   
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
   margin-bottom: 1.5rem;
}

.title-icon {
  width: 7rem;
  margin-bottom: 1.2rem;
}

.subtitle {
  color:rgba(250, 26, 26, 1);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.section-header h2 {
 text-align: center;
  font-weight:700;
}
.section-header h2 span{
    color:rgba(82, 174, 50, 1);
}
.section-header p{
    max-width: 50vw;
    line-height: 1.78;
    margin-bottom: 1rem;
    text-align: center;
}
.quote-contact .section-header p{
  text-align: center;
}
@media (max-width:800px){
  .section-header p{
    max-width: 80vw;
  }
}
@media (max-width: 480px) {
 .subtitle{
  font-size: 0.9rem;
 }
  .section-header p{
    max-width: 90vw ;
    margin-bottom: 1rem;
  }
  .section-header h2{
    margin-bottom: 1rem;
  }
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: start;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-item img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
  margin-bottom: 1rem;
}

.stat-item h3 {
 
  margin-bottom: 0.5rem;
  min-height: 2.5rem;
  display: flex;
  align-items: center;
}

.stat-item p {
  color:rgba(98, 98, 98, 1);
 
  min-height: 1.5rem;
}
@media (max-width: 1024px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-item img {
    width: 4rem;
    height: 4rem;
  }
}
@media (max-width: 480px) {
  .stat-item img {
    width: 3.5rem;
    height: 3.5rem;
  }
.achievements{
  background:url("../images/map.webp") center 13.2rem / auto 23rem no-repeat;
  padding-bottom: 0rem;
}
  .stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
  }

  
}

.btn.red {
    background-color:rgba(188, 12, 12, 1);
   
}

.btn.orange {
    background-color:rgba(255, 145, 0, 1);
  
}

.home-veg-img img{
    width: 100%;
}
@media (max-width: 768px){
  .home-veg-img{
    padding: 0rem;
overflow: hidden;
  }
  .home-veg-img img{
    margin-left: -3rem;
    width: 130%;
    
  }
}
.hero-description {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0rem;
}

.hero-left h2 {

    font-weight: 700;
    line-height: 1.2;
}

.hero-left {
    flex: 0 0 55%;
}

.hero-right {
    flex: 0 0 45%;
}

.highlight {
    color:rgba(82, 174, 50, 1);
}

.hero-right {

    display: flex;
    flex-direction: column;
    align-items: flex-end;
}


.hero-right p {
    margin-bottom: 0.9375rem;
    margin-left: 4%;
   
    list-style: none;
    color: #333;
    line-height: 2rem;
}

.btn-group {
    display: flex;
    gap: 0.9375rem;
    
}
.btn-group {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 1rem;
}

.btn-group .btn {
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {

  .hero-description {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .hero-left,
  .hero-right {
    flex: 100%;
    width: 100%;
  }

  .hero-left h2 {
    text-align: center;
    
  }
br{
  display: none;
}
  
  .hero-right {
    align-items: center;
  }

  .hero-right p {
    text-align: center;
    line-height: 1.6;
  }

 
  .btn-group {
    display: flex;
   width: 100%;
    max-width: 27rem;
    gap: 0.8rem;
  }

  .btn-group .btn {
    width: 100%;
    padding-bottom: 1rem;
    padding-left: 1rem;
  }
  .btn{
    font-size: 0.8rem;
  }
}


/* card */
.service-section{
    background-color: rgba(243, 245, 248, 0.58);
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  height: 1000px;
}

.card {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}



.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  color: #fff;
  transition: background 0.4s ease;
}
.overlay h3{
  text-align: center;
}
.card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.08);
}

.card:hover .overlay {
  background: linear-gradient(
    to top,
    rgba(0, 76, 23, 1) 0%,
    rgba(123, 194, 74, 0.3) 100%
  );
}


.overlay h3,
.overlay p,
.buttonc {
  transition: transform 0.4s ease, opacity 0.4s ease;
}


.buttonc {
  border: 2px solid #ffffff;
  border-radius: 7px;
  background: transparent;
  color: #ffffff;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: inherit;
  margin-top: 5%;
  opacity: 0;
  transform: translateY(100%);
}

.buttonc img {
  width: 0.7rem;
}

.card:hover .overlay h3,
.card:hover .overlay p {
  transform: translateY(-10px);
}

.card:hover .buttonc {
  opacity: 1;
  transform: translateY(-5px);
}

.overlay h3 {
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.overlay p {
  font-size: 1.3rem;
  opacity: 0.8;
  text-align: center;
  padding: 0 10%;
}


@media (max-width: 600px) {
    .overlay h3 {
        font-size: 1.2rem;
    }

    .overlay p {
        font-size: 0.75rem;
    }
}

@media (max-width: 1149px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        gap: 1rem;
    }

    .overlay h3 {
        font-size: 1.5rem;
    }

    .overlay p {
        font-size: 1rem;
        padding: 0 5%;
    }

    .buttonc {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        gap: 0.5rem;
    }

    .buttonc img {
        height: 10px;
        width: 10px;
    }
}

@media (max-width: 760px) {


    .overlay h3 {
        font-size: 1.2rem;
    }

    .overlay p {
        font-size: 0.9rem;
        padding: 0 8%;
    }

    .buttonc {
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
        gap: 0.4rem;
    }

    .buttonc img {
        height: 9px;
        width: 9px;
    }
}

@media (max-width: 510px) {
    .grid-container {
        grid-template-columns: 1fr;
        height: auto;
        gap: 1rem;
    }
  }




.imge-overlay-service-section{
    background-color:white;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.imge-overlay-grid-container{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
 
  height: 1000px;
}

.imge-overlay-card{
  position: relative;
  overflow: hidden;
 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.imge-overlay-overlay{

  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
  color: #fff;
  transition: background 0.4s ease;
}

.imge-overlay-card img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.imge-overlay-overlay a img{
  height: auto;
}
.imge-overlay-card:hover img{
  transform: scale(1.08);
}

.imge-overlay-card:hover .imge-overlay-overlay{
  background: linear-gradient(
    to top,
    rgba(0, 76, 23, 1) 0%,
    rgba(123, 194, 74, 0.3) 100%
  );
}

.imge-overlay-overlay h3,
.imge-overlay-overlay p,
.imge-overlay-buttonc{
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.imge-overlay-buttonc{
  border: 2px solid #ffffff;
  border-radius: 7px;
  background: transparent;
  color: #ffffff;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-family: inherit;
  margin-top: 5%;
  opacity: 0;
  transform: translateY(100%);
}

.imge-overlay-buttonc img{
  width: 0.7rem;
}

.imge-overlay-card:hover .imge-overlay-overlay h3,
.imge-overlay-card:hover .imge-overlay-overlay p{
  transform: translateY(-10px);
}

.imge-overlay-card:hover .imge-overlay-buttonc{
  opacity: 1;
  transform: translateY(-5px);
}

.imge-overlay-overlay h3{
  font-size: 1.9rem;
  margin-bottom: 0.5rem;
}

.imge-overlay-overlay p{
  font-size: 1.3rem;
  opacity: 0.8;
  text-align: center;
  padding: 0 10%;
}
@media (max-width: 768px) {

 

  .imge-overlay-grid-container {
  
    
    height: auto;
  }

  .imge-overlay-card {
    height: 280px;
  }

  .imge-overlay-overlay h3 {
    font-size: 1.4rem;
  }

  .imge-overlay-overlay p {
   
    padding: 0 5%;
  }

  .imge-overlay-buttonc {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
  }
}


@media (max-width: 480px) {
  .imge-overlay-service-section{
    padding-top: 0rem;
    padding-bottom: 0rem;
  }
 .imge-overlay-grid-container {
    grid-template-columns: 1fr;
    
    height: auto;
  }
  .imge-overlay-card {
    height: 240px;
  }

  .imge-overlay-overlay h3 {
    font-size: 1.6rem;
  }

  .imge-overlay-overlay p {
    font-size: 0.9rem;
  }
}
 

.gallery-section {
 
  margin: 3rem 0rem;
}

.gallery-wrapper {

  margin: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.gallery-item {
  border-radius: 2rem;
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
 .gallery-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.gallery-item{
  border-radius: 0rem;
}
}






.why-choose {
 
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.container {
  margin: auto;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.content-box {
  flex: 5;   
}
.tomato-img{
  width: 7rem;
  margin-bottom: 0.5rem;
}
.subtitle-whychooseus{
  margin-bottom: 0.5rem;
}
.image-box {
  flex: 5;
}

.image-box img {
  width: 100%;
  border-radius: 1.5rem;
  display: block;
}
.subtitle {
  color: #e63946;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
 .subtitle{
  font-size: 1rem;
  margin-bottom: 1rem;
 }
  .title-icon{
    margin-bottom: 0.3rem;
  }
}
.content-box h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.content-box h2 span {
 
  font-weight: bold;
}
.subtitle-whychooseus{
  color: rgba(250, 26, 26, 1);
  font-size: 1.6rem;
}
.description {
  
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.6;
}


.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card-why-choose-us {
  background: #fff;
  padding: 0.8rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.05);
}

.icon-why-choose-us {
  background: rgba(18, 136, 7, 1);
  color: #ffffff;

  padding: 0.8rem;
  border-radius: 0.8rem;
}

.card-why-choose-us h4 {
  font-size: 1rem;
  color: rgba(18, 136, 7, 1);
  margin-bottom: 0.3rem;
}

.card-why-choose-us p {
  font-size: 0.9rem;
  color: #666;
}

@media (max-width: 62rem) {
  .container {
    flex-direction: column;
  }

 
.icon-why-choose-us img{
  width: 2rem;
}

  .content-box h2 {
    font-size: 1.8rem;
  }
}
@media (max-width: 550px) {
 
  .features {
    grid-template-columns: 1fr;
  }

}
@media (max-width: 62rem){
.subtitle-whychooseus{
  font-size: 1rem;
}
.subtitle-whychooseus,.content-box h2,.description{
  text-align: center;
}
.content-box{
  display: flex;
  flex-direction: column;
  align-items: center;
}

}
.freshness-section{
  padding-bottom: 1.5rem;
} 


.freshness-trest {
 padding-bottom: 3rem;
 
}



.freshness-trest-top {
  margin-bottom: 3rem;
}

.freshness-trest-container .freshness-trest-top p {

 
  color: #555;
  margin-bottom: 2rem;
}

.freshness-trest-container h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 3rem 0;
  color: #111;
}

.freshness-trest-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 4rem;
}

.freshness-trest-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
}

.freshness-trest-icon img {
  width: 2.6rem;
  height: 2.6rem;
 
}

.freshness-trest-item p {
 

  color: #444;
}
.trest-img{
  display: flex;
  align-items: center;
  justify-content: center;
}
.trest-img img{
  width: 100%;
}

@media (max-width: 724px){
 .freshness-trest-top p{
    text-align: center;
  }
  .freshness-trest-container h3{
    text-align: center;
  }
}



@media (max-width: 768px) {
  .freshness-trest-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}



.quote-contact{
 padding-top: 5rem;
 padding-bottom: 5rem;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #e8f3ec 100%
  );
}

.quote-container{

  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2rem;
}

.quote-card{
  background:#fff;
  border-radius:1.2rem;
  padding: 2rem;
  text-align:center;
  box-shadow:0 0.3rem 0.8rem rgba(0,0,0,0.05);
  border:0.1rem solid #e8e8e8;
}

.quote-icon{
  width:5.5rem;
  height:5rem;
  background:#128c12;
  border-radius:1rem;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 1.2rem;
}

.quote-icon img{
  width:3rem;
}

.quote-title{
  font-size:2.1rem;
  font-weight:600;
  margin-bottom:1.2rem;
}

.quote-info{
  background:#dce8dd;
  padding:0.8rem 1.5rem;
  border-radius:2rem;
  font-size:1.7rem;
  color:#128c12;
  font-weight:500;
   width:100%;     
  text-align:center;
  display:inline-block;
}
@media (max-width: 830px) {
.quote-container{

  grid-template-columns:repeat(1,1fr);
max-width: 480px;
}

}
@media (max-width: 480px){
  .quote-title, .quote-info{
    font-size: 1.3rem;
  }
.quote-container{
    grid-template-columns:repeat(1,1fr);
}
}

.contact-section {
    display: flex;
    width: 100%;
    height:auto;
    margin-top: 5rem;
    margin-bottom: 4rem;
    border-radius: 1rem;
    overflow: hidden;
    background-color:rgba(224, 240, 223, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-image {
    flex: 0 0 40%;
}

.contact-image img {
    width: 100%;

    object-fit: cover;
    display: block;
}

.contact-form {
    flex: 0 0 60%;
    padding: 2rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.input {
    font-size: 1.3rem;
}

.contact-form h4 {
    color:rgba(123, 194, 74, 1);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form h2 {
    font-size: 4rem;
    margin: 0 0 1rem;
    font-weight: bold;
}

.contact-form h2 span {
    color:rgba(250, 26, 26, 1);
}

.contact-form p {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 2rem;
}
.form-row{
  display:flex;
  gap:1rem;
  margin-bottom:2rem;
}

.form-control{
  flex:1;
  padding:0.9rem 1.2rem;
  border:none;
  border-radius:2rem;
  font-size:1rem;
  width:100%;
}

/* left column email + contact */
.form-left{
  flex:1;
  display:flex;
  flex-direction:column;
  gap:1rem;
}

/* message area */
.textarea{
  flex:1;
  border-radius:1rem;
  resize:none;
  height:100%;
  min-height:8rem;
}
.form-left{
  flex:0 0 50%;
}

.textarea{
  flex:0 0 50%;
}
.submit-btn{
  padding:0.9rem 2rem;
  background:rgba(255, 153, 51, 1);
  color:#fff;
  border:none;
  border-radius:2rem;
  font-size:1rem;
  cursor:pointer;
width: 12.25rem;
  display:block;
  margin:0 auto;  
  margin-top: 4rem;
}
.submit-btn:hover {
    background-color: #001a66;
}
.form-control:focus,
textarea:focus {
  outline: none;
  box-shadow: none;
  border: none; 
}
@media (max-width: 1389px) and (min-width: 111px) {
   
    .contact-form h4 {
        font-size: 1.8rem;
    }

    .contact-form h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .contact-form p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .form-control {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .form-control.textarea {
        height: 100px;
    }

    .submit-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}


@media (min-width: 847px) and (max-width: 1111px) {
    .contact-section {
        padding: 1rem 2rem;
        height: auto;
    }

    .contact-form h4 {
        font-size: 1.8rem;
    }

    .contact-form h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .contact-form p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .form-control {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .form-control.textarea {
        height: 100px;
    }

    .submit-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}
@media (max-width: 1000px) {
    .contact-section {
        flex-direction: column;
        height: auto;
        padding: 1rem 2rem;
    }
  }
@media (max-width: 845px) {
    .contact-section {
        flex-direction: column;
        height: auto;
        padding: 1rem 2rem;
    }

    .contact-image {
        display: none;
    }

    .contact-form {
        flex: 0 0 auto;
        width: 100%;
        padding: 1.5rem 0;
    }

    .contact-form h4 {
        font-size: 1.6rem;
    }

    .contact-form h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .contact-form p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .form-control {
        flex: 1 1 100%;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }

    .form-control.textarea {
        height: 100px;
    }

    .submit-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 527px) {
    .contact-section {
        flex-direction: column;
        height: auto;
        padding: 0.5rem 1rem;
    }

    .contact-image {
        width: 100%;
        height: 180px;
    }
.contact-section{
margin-top: 0rem;
  border-radius: 0px;
}
.form{
  margin-top: 0rem;
  padding: 0rem;
}

    .contact-form {
        width: 100%;
        padding: 1rem 0;
    }

    .contact-form h4 {
        font-size: 1.3rem;
    }

    .contact-form h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .contact-form p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .form-control {
        padding: 0.5rem 0.8rem;
        font-size: 1rem;
    }

    .form-control.textarea {
        height: 80px;
    }

    .submit-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        align-self: stretch;
        text-align: center;
    }
}
.faq-section{
  display: flex;
  padding-left: 6rem;
}
.faq-section-header h2{
  text-align: left;
}
.faq-section{
  display:flex;
  align-items:center;
  
  gap: 0rem;
 
}

/* .faq-left{
  flex:1;
}

.faq-right{
  flex:1;
  text-align:center;
} */

.faq-right img{
  width:100%;
  
}
.faq-section-header{
  align-items: start;
  margin-bottom: 2rem;
}
.faq-container {


  margin: 0 auto;



  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.faq-left{
  flex:0 0 38%;
}

.faq-right{
  flex:0 0 62%;
}
.faq-item {
  background-color: #fff;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  max-height: 18rem;
  padding: 0rem 0;
  width: 100%;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;

  cursor: pointer;
  background-color: #fff;
  transition: background-color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  background-color: #fff;
 
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-icon img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  user-select: none;
}

.faq-item.active .faq-question,
.faq-item.active .faq-answer {
  background-color:rgba(82, 174, 50, 1);
  color: white;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 1.5rem 2rem;
}

@media (max-width: 600px) {
  .faq-container {
    width: 100%;
    padding: 0px;
  }

  .faq-item {
    width: 100%;
  }

  .faq-question {
    font-size: 1.1rem;
    padding: 1rem 1.2rem;
  }

  .faq-icon img {
    width: 20px;
    height: 20px;
  }

  .faq-answer {
    font-size: 1rem;
    padding: 0 1.2rem;
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.2rem;
  }
}
@media (max-width: 1024px){
.faq-section{
  flex-direction: column;
  padding-left: 6rem;
  padding-right: 6rem;
}
}
@media (max-width: 750px){
  .faq-section{
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.subtitlewhychooseus {
  color: #6bbd3f;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pricinghead {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;

}

.subtitlewhychooseus img {
  width: 2.5rem;
}

.pricinghead h1 {
  font-size: 3rem;
  font-weight: bold;
  margin: 0.5rem 0;
  color: #000;
}

.pricinghead h2 {
  font-size: 3rem;
  color: #0070c9;
  margin-bottom: 3.5rem;
}

@media (max-width: 1400px) {
  .subtitlewhychooseus {
    font-size: 1.4rem;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .subtitlewhychooseus img {
    width: 2rem;
  }
 .faq-answer {
    font-size: 1.2rem;
    
  }
  .pricinghead h1 {
    font-size: 2.5rem;
    margin: 0.4rem 0;
  }

  .pricinghead h2 {
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 480px) {
    .faq-question{
        font-size: 1rem;
    }
    .faq-answer{
        font-size: 1rem;
    }
    .faq-container{
        margin: 0px;
    }
}
@media (max-width: 1000px){
  .faq-section-header{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 656px) {
  .pricinghead {
    gap: 1px;
    margin-bottom: 10px;
  }

  .pricinghead h1,
  .pricinghead h2 {
    font-size: 2rem !important;
    margin: 0.4rem 0;
    text-align: center;
  }


}









































/* 
.mv-section{

} */

.mv-container{
  display:flex;
  gap:6rem;
  justify-content:space-between;
}


.mv-item h2{
  
  margin-bottom:1.5rem;
}

.mv-item h2 span{
  color:#59a93a;
}

.mv-item p{

  color:rgba(98, 98, 98, 1);
}

@media (max-width:800px){
  .mv-container{
    flex-direction: column;
    gap: 2rem;
  }
  .mv-container .mv-item h2,.mv-item p{
    text-align: center;
  }
}


.visionary-voice-section{
  background:rgba(243, 245, 248, 0.58);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.visionary-voice-wrapper{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:6rem;
}

.visionary-voice-left{
  max-width:55rem;
}

.visionary-voice-subtitle span{
  color:rgba(250, 26, 26, 1);
  font-size:1.25rem;
  font-weight:500;
}

.visionary-voice-heading h2{
  font-size: 3rem;
  margin:1rem 0 2rem;
  line-height:1.2;
}

.visionary-voice-heading span{
  color:rgba(82, 174, 50, 1);
}

.visionary-voice-text p{
  
  color:rgba(47, 47, 47, 0.84);
}

.visionary-voice-right{
  display:flex;
  justify-content:center;
}

.visionary-voice-image-card{
  position:relative;
  border-radius:2rem;
  overflow:hidden;
}

.visionary-voice-image-card img{

  height:auto;
  display:block;
  border-radius:2rem;
  width: 100%;

}

.visionary-voice-name{
  position:absolute;
  bottom:1.5rem;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  padding:0.8rem 3rem;
  border-radius:1.2rem;
  box-shadow:0 0.5rem 1rem rgba(0,0,0,0.1);
}

.visionary-voice-name span{
  color:rgba(82, 174, 50, 1);
  font-size:1.6rem;
  font-weight:600;
}

@media (max-width: 1200px){
  .visionary-voice-left{
    max-width: none;
  }
  .visionary-voice-wrapper{
    flex-direction: column;
    gap: 1rem;
  }
  .visionary-voice-subtitle,.visionary-voice-heading h2,.visionary-voice-text p{
    text-align: center;
  }
  .visionary-voice-image-card img{
     max-width:32rem;
  }
}
@media (max-width: 480px){
  .visionary-voice-wrapper{
    flex-direction: column;
    gap: 1rem;
  }
  .visionary-voice-image-card img{
    width: 90vw;
  }
  .visionary-voice-name span{
    font-size: 1rem;
  }
}






.service-page{
  background-color: white;
}


.food{
padding:4rem 6rem;
background:#f5f5f5;
}


.food__categories{
display:flex;
gap:2rem;
margin-bottom:3rem;
}

.food__category{
position:relative;
border-radius:1rem;
overflow:hidden;
cursor:pointer;
transition:all .3s ease;
}

.food__category.active{
box-shadow:0 0 0 3.25rem #4CAF50 inset;
}

.food__category img{
width:100%;
height:100%;
object-fit:cover;
transition:transform .4s ease;
}

.food__category:hover img{
transform:scale(1.1);
}


.food__category h2{
font-size:2.5rem;
color:#fff;
text-align: center;
}

.food__category.active{
box-shadow:0 0 0 0.25rem #4CAF50 inset;
}

.food__category-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:1.5rem;
font-weight:700;
background:rgba(214, 211, 211, 0.1);
transition:background .3s ease;
}


.food__category:hover .food__category-overlay{
background:rgba(0,0,0,0.45);
}
@media (max-width: 768px) {

  .food__categories {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding-bottom: 10px;

    
    scroll-behavior: smooth;

   
    scrollbar-width: none;
  }
  .food__items{

grid-template-columns:repeat(2,1fr) !important;
gap:1rem;
}
.food{
  padding-left: 1rem;
  padding-right: 1rem;
}
  .food__categories::-webkit-scrollbar {
    display: none;
  }
.food__category h2{
  font-size: 2rem;
}
  .food__category {
    max-width: 15rem;
    flex: 0 0 auto;  
  }
}

@media (max-width: 768px) {

  .scroll-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
  }

  .scroll-dot {
    cursor: pointer;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    transition: 0.3s;
  }

  .scroll-dot.active {
    background: #4CAF50; /* active color */
    transform: scale(1.3);
  }
}
@media (max-width: 480px){
  .food__items{

grid-template-columns:repeat(1,1fr) !important;

}
}

.food__title{
text-align:center;
margin:3rem 0;
}

.food__title h2{
font-size:2.5rem;
}

.food__items{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:2rem;
}

.food-card{
background:#fff;
padding:4rem 2rem 1rem;
border-radius:1rem;
text-align:center;
margin-top: 3rem;
position:relative;
transition:transform .3s ease;
 border: 2px solid rgba(219, 219, 219, 1);
 
   box-shadow: 
    -15px 0 60px rgba(252, 252, 252, 0.13),  
    15px 0 60px rgba(196, 206, 192, 0.13),  
    0 15px 60px rgba(82, 174, 50, 0.13);   
  
}

.food-card__image{
position:absolute;
bottom: 83%;
left:50%;
transform:translateX(-50%);
transition:transform .35s ease;
}

.food-card__image img{
width:8rem;
display:block;
}

.food-card__content{
margin-top:1rem;
transition:transform .35s ease;
}

.food-card__content h2{
font-size:1.4rem;
margin-bottom:0.5rem;
}

.food-card__content p{
font-size:0.9rem;
color:#666;
}

.buttonb{
display:inline-flex;
align-items:center;
 gap: 1rem;
 border: 2px solid rgba(82, 174, 50, 1);
margin-top:0rem;
padding: 0.5rem 1rem;
background:#ffffff;
color:rgba(82, 174, 50, 1);
font-size:.8rem;
 border-radius: 7px;
text-decoration:none;

opacity:0;
transform:translateY(1rem);
transition:.35s ease;
}

.buttonb img{
width:0.7rem;
}

.food-card:hover{
transform:translateY(-0.3rem);
}

.food-card:hover .food-card__image{
transform:translate(-50%,-1rem);
}

.food-card:hover .food-card__content{
transform:translateY(-1rem);
}

.food-card:hover .buttonb{
opacity:1;
transform:translateY(0);
}





.gallery-tabs{
    display:flex;
    justify-content:center;
    gap:1rem;
    margin-bottom:3rem;
    
}

.gallery-tab{
    padding:.7rem 1.8rem;
    border:2px solid rgba(82, 174, 50, 1);
    border-radius:20px;
    background:white;
    color: black;
    cursor:pointer;
    width: 8rem;
}

.gallery-tab.active{
    background:rgba(82, 174, 50, 1);
    color:white;
}








.eventsheading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 1rem 5%;
  box-sizing: border-box;
  height: 200px;
  background-color: rgb(0, 0, 0);
  max-width: 1920px;
}

.eventsheadingt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 3%;
  box-sizing: border-box;
  height: 200px;
  background-color: black;
}

.eventsheading1 {
  font-size: 45px;
}

.eventsheadingg {
  font-size: 40px;
}

.eventsa {
  color: white;
  text-decoration: underline;
  font-size: 20px;
}

.booknow3 {
  color: #d62828;
  background-color: white;
  font-size: 1.3rem;
  border-radius: 10px;
  padding:0.9375rem 1.25rem;
  border: none;
}
.icon-box{
  width:6rem;
  height:6rem;
  background:rgba(18, 136, 7, 1);
  border-radius:19px;
  display:flex;
  justify-content:center;
  align-items:center;
  margin-bottom: 2rem;
}

.icon-box img{
  width:4rem;
}
.familyparty3 {
  margin-bottom: 7rem;
  font-size: 6rem;
}

.date3 {
  margin-bottom: 60px;
  font-size: 19px;
}

.heading3 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.content3 {
  margin-bottom: 40px;
  line-height: 1.8rem;
  font-size: 1.2rem;
  padding-right: 10%;
}
.events-wrapper{
  position:relative;
}

.Events2{
  position:sticky;
  top:0;
  /* height:100vh; */
  display:flex;
  align-items:center;
}

.Events2:nth-child(1){
  z-index:1;
}

.Events2:nth-child(2){
  z-index:2;
}

.Events2:nth-child(3){
  z-index:3;
}

.Event-content2{
  display:flex;
  width:100%;
  height:100%;
}

.Event-left2{
  width:50%;
  padding:5%;
}

.Event-right2{
  width:50%;
}

.event-img2{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* reverse layout */
.reverse .Event-content2{
  flex-direction:row-reverse;
}
@media (max-width: 750px){
.events-wrapper .section-header{
  padding-left: 1rem;
  padding-right: 1rem;
}
}
@media screen and (max-width: 500px) {
  .eventsheading {
    height: auto;
    max-width: 430px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 26px 16px !important;
  }

  .eventsheading1 {
    font-size: 18px !important;
    white-space: nowrap !important;
  }

  .eventsq {
    padding-bottom: 7%;
  }

  .eventsheadingg {
    font-size: 18px !important;
    white-space: nowrap !important;
  }

  .eventsa {
    font-size: 14.28px !important;
    white-space: nowrap !important;
    text-decoration: underline;
  }

  .Event-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 20px 16px !important;
    gap: 20px !important;
  }

  .Event-left {
    text-align: center !important;
  }


  .Event-left h1 {
    font-size: 20px !important;
    margin: 12px 0 !important;
  }

  .Event-left p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  .Event-left a {
    display: inline-block !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
  }

  .Event-right {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .event-img,
  .event-video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .event-video {
    display: none !important;
  }

  .event-video.show {
    display: block !important;
  }

  .booknow3 {
    padding: 10px;
    border-radius: 4px;
    font-size: 1rem;
  }

  .familyparty3 {
    margin-bottom: 8%;
    font-size: 15px;
    margin-top: 0px;
  }

  .date3 {
    margin-bottom: 3%;
    font-size: 1rem;
  }

  .heading3 {
    margin-bottom: 3%;
    font-size: 27.28px;
  }

  .content3 {
    margin-bottom: 8%;
    line-height: 2rem;
    font-size:1rem;
  }
}

@media screen and (min-width: 501px) and (max-width: 716px) {

  .eventsheading {
    height: auto;
    max-width: 716px;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    padding: 26px 16px !important;
  }

  .eventsheading1 {
    font-size: 28px !important;
    white-space: nowrap !important;
  }

  .eventsq {
    padding-bottom: 7%;
  }

  .eventsheadingg {
    font-size: 28px !important;
    white-space: nowrap !important;
  }

  .eventsa {
    font-size: 14.28px !important;
    white-space: nowrap !important;
    text-decoration: underline;
  }

  .Event-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 20px 16px !important;
    gap: 20px !important;
  }

  .Event-left {
    text-align: center !important;

  }

  .Event-left h1 {
    font-size: 20px !important;
    margin: 12px 0 !important;
  }

  .Event-left p {
    font-size: 14px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  .Event-left a {
    display: inline-block !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
  }

  .Event-right {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  .event-img,
  .event-video {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .event-video {
    display: none !important;
  }

  .event-video.show {
    display: block !important;
  }

  .booknow3 {
    font-size: 15px;
    padding: 11px 15px;
    border-radius: 8px;
  }

  .familyparty3 {
    margin-bottom: 8%;
    font-size: 25px;
    margin-top: 0px;
  }

  .date3 {
    margin-bottom: 3%;
    font-size: 19.93px;
  }

  .heading3 {
    margin-bottom: 3%;
    font-size: 27.28px;
  }

  .content3 {
    margin-bottom: 8%;
    font-size: 17.09px;
  }
}

@media screen and (min-width: 881px) and (max-width: 1476px) {
  .eventsheading {
    height: 150px;
    padding: 20px 4%;
  }

  .eventsheading1 {
    font-size: 36px;
  }

  .eventsheadingg {
    font-size: 32px;
  }

  .eventsa {
    font-size: 16px;
  }

  .booknow3 {
    font-size: 18px;
    padding: 14px 18px;
    border-radius: 8px;
  }

  .familyparty3 {
    font-size: 1.5rem;
    margin-bottom: 100px;
  }

  .date3 {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .heading3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .content3 {
    font-size: 1rem;
    line-height: 28px;
    margin-bottom: 32px;
    padding-right: 8%;
  }

  .Event-content {
    height: 75vh;
  }

  .event-img,
  .event-video {
    height: 75vh;
    object-fit: cover;
  }

  .Event-left {
    padding-left: 4%;
    padding-top: 2%;
  }
}

@media screen and (min-width: 717px) and (max-width: 880px) {
  .eventsheading {
    height: 130px;
    padding: 20px 4%;
  }

  .eventsheading1 {
    font-size: 32px;
  }

  .eventsheadingg {
    font-size: 31px;
  }

  .eventsa {
    font-size: 16px;
  }

  .booknow3 {
    font-size: 15px;
    padding: 11px 15px;
    border-radius: 8px;
  }

  .familyparty3 {
    font-size: 1.5rem;
    margin-bottom: 100px;
  }

  .date3 {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .heading3 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .content3 {
    font-size: 0.9rem;
    line-height: 28px;
    margin-bottom: 32px;
    padding-right: 8%;
  }

  .Event-content {
    height: 75vh;
  }

  .event-img,
  .event-video {
    height: 75vh;
    object-fit: cover;
  }

  .Event-left {
    padding-left: 4%;
    padding-top: 2%;
  }
}
.background-grey{
  background-color: rgba(243, 245, 248, 0.58);
}
.about-explore-section {
  margin-bottom: 0rem;
}
.about-explore-section p{
  text-align: center;
  color: rgba(47, 47, 47, 0.84);
  margin-bottom: 1.5rem;
}
.explore-image{
  margin-bottom: 1.5rem;
}
.explore-image img{
  width: 100%;
}

.detail-btn{
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}





.Events2 {
  position: sticky;
  top: -200px;
  z-index: 6;
  background-color: black;
  max-width: 1920px;
}

.Event-content2 {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100vh;
  max-height: 53rem;
  color: white;
 background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(255, 255, 255));
  box-sizing: border-box;
  overflow: hidden;
}

.Event-left2 {
  flex: 0 0 25%;
  padding-left: 5%;
  padding-top: 3%;
  transition: flex 0.4s ease;
 background: linear-gradient(to bottom, rgba(82, 174, 50, 1), rgba(18, 136, 7, 1));
  box-sizing: border-box;
}

.Event-right2 {
  flex: 0 0 75%;
  position: relative;
  transition: flex 0.4s ease;
  overflow: hidden;
  box-sizing: border-box;
}

.event-img2,
.event-video2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-video2 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.event-video2.show2 {
  opacity: 1;
}

.Events2:hover .Event-left2 {
  flex: 0 0 30%;
}

.Events2:hover .Event-right2 {
  flex: 0 0 70%;
}


@media screen and (max-height: 717px) and (min-width: 700px)  {
  .Event-content2 {
    min-height: 500px;
  }

  .event-img2,
  .event-video2 {
    min-height: 500px !important;
  }
}




@media screen and (max-width: 500px) {
  .Event-content2, .reverse .Event-content2 {
    flex-direction: column;
    height: auto;
    overflow: hidden;
    background: linear-gradient(162.53deg, #B21E25 14.71%, #0A0A0B 159.68%);
    padding: 0;
  }

  .Event-left2 {
    flex: 0 0 auto;
    width: 100%;
    padding: 20px 16px;
    text-align: start;
  }

  .Event-right2 {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    display: flex;          
    justify-content: center;
    align-items: center;
    overflow: hidden;
    line-height: 0;          
  }

  .event-img2,
  .event-video2 {
    width: 100% !important;
    height: auto !important;           
    display: block !important;
    object-fit: contain !important;   
    margin: 0 auto !important;
    padding: 0 !important;
  }
}


@media screen and (min-width: 501px) and (max-width: 720px) {
 .Event-content2, .reverse .Event-content2 {
    flex-direction: column;
    height: auto;
    max-height: 70rem;
    overflow: hidden;
    background: linear-gradient(162.53deg, #B21E25 14.71%, #0A0A0B 159.68%);
    padding: 0;
  }
  .Event-left2 {
    flex: 0 0 100%;
    width: 100%;
    padding: 20px 16px;
    text-align: start;
  }

  .Event-right2 {
    width: 100%;
    height: auto;
  }

  .event-img2,
  .event-video2 {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
}


@media screen and (min-width: 721px) and (max-width: 879px) {
  .Event-left2 {
    flex: 0 0 40%;
    padding-left: 3%;
    padding-top: 2%;
  }

  .Event-right2 {
    flex: 0 0 60%;
  }

  .event-img2,
  .event-video2 {
    object-fit: cover;
  }

  .Events2:hover .Event-left2 {
    flex: 0 0 43%;
  }

  .Events2:hover .Event-right2 {
    flex: 0 0 57%;
  }
}


@media screen and (min-width: 880px) and (max-width: 1200px) {
  .Event-left2 {
    flex: 0 0 30%;
    padding-left: 3%;
    padding-top: 2%;
  }

  .Event-right2 {
    flex: 0 0 70%;
  }

  .event-img2,
  .event-video2 {
    object-fit: cover;
  }

  .Events2:hover .Event-left2 {
    flex: 0 0 35%;
  }

  .Events2:hover .Event-right2 {
    flex: 0 0 65%;
  }
}


@media screen and (min-width: 1201px) {
  .Event-left2 {
    flex: 0 0 25%;
  }

  .Event-right2 {
    flex: 0 0 75%;
  }

  .Events2:hover .Event-left2 {
    flex: 0 0 30%;
  }

  .Events2:hover .Event-right2 {
    flex: 0 0 70%;
  }
}
.product-view{
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}
.product-view button{
  background-color: rgba(82, 174, 50, 1);
  cursor: pointer;
  border: none;
}



@media (max-width: 768px) {

  .gallery-tabs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 0 16px 10px;
    scroll-behavior: smooth;
justify-content: start;
    scrollbar-width: none;
    margin-bottom: 1rem;
  }

  .gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  .gallery-tab {
    flex: 0 0 auto;
    white-space: nowrap;
    min-width: 100px;
    height: 40px;
  }
}
.gallery-tabs {
  scroll-snap-type: x mandatory;
  
}

.gallery-tab {
  scroll-snap-align: start;
}
@media (max-width: 768px) {

  .gallery-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 1rem;
  }

  .gallery-dot {
    cursor: pointer;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    transition: 0.3s;
  }

  .gallery-dot.active {
    background: #4CAF50;
    transform: scale(1.3);
  }
}