body {
	font-family: 'Poppins', sans-serif;
	overflow-x: hidden;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  p {
	  margin-bottom: 0px;
	  font-size: 16px;
	  color: #121212;
	  line-height: 30px;
  }
  a {
	  text-decoration: none!important;
  }
  ul {
	  padding: 0;
	  margin: 0;
	  list-style: none;
  }
  
  h1,h2,h3,h4,h5,h6 {
	  margin: 0px;
  }
  
  a.filled-button {
	  background-color: #a4c639;
	  color: #fff;
	  font-size: 13px;
	  text-transform: uppercase;
	  font-weight: 700;
	  padding: 12px 30px;
	  border-radius: 30px;
	  display: inline-block;
	  transition: all 0.3s;
  }
  
  a.filled-button:hover {
	  background-color: #fff;
	  color: #a4c639;
  }
  
  a.border-button {
	  background-color: transparent;
	  color: #fff;
	  border: 2px solid #fff;
	  font-size: 13px;
	  text-transform: uppercase;
	  font-weight: 700;
	  padding: 10px 28px;
	  border-radius: 30px;
	  display: inline-block;
	  transition: all 0.3s;
  }
  
  a.border-button:hover {
	  background-color: #fff;
	  color: #a4c639;
  }
  
  .section-heading {
	  text-align: center;
	  margin-bottom: 80px;
  }
  
  .section-heading h2 {
	  font-size: 36px;
	  font-weight: 600;
	  color: #1e1e1e;
  }
  
  .section-heading em {
	  font-style: normal;
	  color: #a4c639;
  }
  
  .section-heading span {
	  display: block;
	  margin-top: 15px;
	  text-transform: uppercase;
	  font-size: 15px;
	  color: #666;
	  letter-spacing: 1px;
  }
  
  #preloader {
	overflow: hidden;
	background: #a4c639;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	position: fixed;
	z-index: 9999999;
	color: #fff;
  }
  
  #preloader .jumper {
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	position: absolute;
	margin: auto;
	width: 50px;
	height: 50px;
  }
  
  #preloader .jumper > div {
	background-color: #fff;
	width: 10px;
	height: 10px;
	border-radius: 100%;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	position: absolute;
	opacity: 0;
	width: 50px;
	height: 50px;
	-webkit-animation: jumper 1s 0s linear infinite;
	animation: jumper 1s 0s linear infinite;
  }
  
  #preloader .jumper > div:nth-child(2) {
	-webkit-animation-delay: 0.33333s;
	animation-delay: 0.33333s;
  }
  
  #preloader .jumper > div:nth-child(3) {
	-webkit-animation-delay: 0.66666s;
	animation-delay: 0.66666s;
  }
  
  @-webkit-keyframes jumper {
	0% {
	  opacity: 0;
	  -webkit-transform: scale(0);
	  transform: scale(0);
	}
	5% {
	  opacity: 1;
	}
	100% {
	  -webkit-transform: scale(1);
	  transform: scale(1);
	  opacity: 0;
	}
  }
  
  @keyframes jumper {
	0% {
	  opacity: 0;
	  -webkit-transform: scale(0);
	  transform: scale(0);
	}
	5% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	}
  }
  
  /* Sub Header Style */
  
  .sub-header {
	  background-color: #a4c639;
      max-width: auto;
	  height: 46px;
	  line-height: 46px;
  }
  
  .sub-header ul li {
	  display: inline-block;
  }
  
  .sub-header ul.left-info li {
	  border-left: 1px solid rgba(250,250,250,0.3);
	  padding: 0px 20px;
  }
  
  .sub-header ul.left-info li:last-child {
	  border-right: 1px solid rgba(250,250,250,0.3);
  }
  
  .sub-header ul.left-info li i {
	  margin-right: 10px;
	  font-size: 18px;
  }
  
  .sub-header ul.left-info li a {
	  color: #ffffff;
	  font-size: 16px;
	  font-weight: 600;
  }
  
  .sub-header ul.right-icons {
	  float: right;
  }
  
  .sub-header ul.right-icons li {
	  margin-right: -4px;
	  width: 46px;
	  display: inline-block;
	  text-align: center;
	  border-right: 1px solid rgba(250,250,250,0.3);
  }
  
  .sub-header ul.right-icons li:first-child {
	  border-left: 1px solid rgba(250,250,250,0.3);
  }
  
  .sub-header ul.right-icons li a {
	  color: #fff;
	  transition: all 0.3s;
  }
  
  .sub-header ul.right-icons li a:hover {
	  opacity: 0.75;
  }
  
  
 /* Header Style */
header {
    position: absolute;
    z-index: 99999;
    width: 100%;
    background-color: transparent!important;
    height: 80px;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

header .navbar {
    padding: 20px 0px;
}

.background-header .navbar {
    padding: 10px 0px;
}

.background-header {
    top: 0;
    position: fixed;
    background-color: #fff!important;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.1);
}

.background-header .navbar-brand h2 {
    color: #a4c639!important;
}

.background-header .navbar-nav a.nav-link {
    color: #1e1e1e!important;
}

.background-header .navbar-nav .nav-link:hover,
.background-header .navbar-nav .active>.nav-link,
.background-header .navbar-nav .nav-link.active,
.background-header .navbar-nav .nav-link.show,
.background-header .navbar-nav .show>.nav-link {
    color: #a4c639!important;
}

.navbar .navbar-brand {
    float: left;
    margin-top: 12px;
    outline: none;
}

.navbar .navbar-brand h2 {
    color: #fff;
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 700;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
}

.navbar .navbar-brand h2 em {
    font-style: normal;
    font-size: 16px;
}

#navbarResponsive {
    z-index: 999;
}

.navbar-collapse {
    text-align: center;
}

.navbar .navbar-nav .nav-item {
    margin: 0px 15px;
}

.navbar .navbar-nav a.nav-link {
    text-transform: capitalize;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: #fff;
    transition: all 0.5s;
    margin-top: 5px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .active>.nav-link,
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link.show,
.navbar .navbar-nav .show>.nav-link {
    color: #a4c639;
    border-bottom: 3px solid #a4c639;
}

.navbar .navbar-toggler-icon {
    background-image: none;
}

.navbar .navbar-toggler {
    border-color: #fff;
    background-color: #fff;    
    height: 36px;
    outline: none;
    border-radius: 0px;
    position: absolute;
    right: 30px;
    top: 20px;
}

.navbar .navbar-toggler-icon:after {
    content: '\f0c9';
    color: #a4c639;
    font-size: 18px;
    line-height: 26px;
    font-family: 'FontAwesome';
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    header {
        height: auto;
        position: relative;
    }

    .navbar .navbar-brand {
        float: none;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .navbar .navbar-brand h2 {
        font-size: 20px;
        margin-top: 10px;
    }

    .navbar .navbar-nav {
        flex-direction: column;
        margin: 0;
    }

    .navbar .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar .navbar-nav a.nav-link {
        font-size: 18px;
        margin-top: 10px;
    }

    .navbar .navbar-toggler {
        top: 10px;
        right: 15px;
    }
}

  /* Banner Style */
  
  .img-fill{
	width: 100%;
	display: block;
	overflow: hidden;
	position: relative;
	text-align: center
  }
  .img-fill:before {
	  content: '';
	  z-index: 1;
	  position: absolute;
	  top: 0;
	  left: 0;
	  bottom:0;
	  right: 0;
	  background-color: rgba(0,0,0,.6)
  }
  .Modern-Slider .text-content{
	  z-index: 2;
  }
  
  .img-fill img {
	min-height: 100%;
	min-width: 100%;
	position: relative;
	display: inline-block;
	max-width: none;
  }
  
  *,
  *:before,
  *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
  }
  
  .Grid1k {
	padding: 0 15px;
	max-width: 1200px;
	margin: auto;
  }
  
  .blocks-box,
  .slick-slider {
	margin: 0;
	padding: 0!important;
  }
  
  .slick-slide {
	float: left;
	padding: 0;
  }
  
  .Modern-Slider .item .img-fill {
	  background-size: cover;
	  background-position: center center;
	  background-repeat: no-repeat;
	  height:95vh;
  }
  
  .Modern-Slider .item-1 .img-fill {
	  background-image: url(../images/slider-hero1.jpg);
  }
  
  .Modern-Slider .item-2 .img-fill {
	  background-image: url(../images/slider-hero2.jpg);
  }
  
  .Modern-Slider .item-3 .img-fill {
	  background-image: url(../images/slider-hero3.jpg);
  }
  
  .Modern-Slider .NextArrow{
	position:absolute;
	top:50%;
	right:30px;
	border:0 none;
	background-color: transparent;
	text-align:center;
	font-size: 36px;
	font-family: 'FontAwesome';
	color:#FFF;
	z-index:5;
	outline: none;
	cursor: pointer;
  }
  
  .Modern-Slider .NextArrow:before{
	content:'\f105';
  }
  
  .Modern-Slider .PrevArrow {
	position:absolute;
	top:50%;
	left:30px;
	border:0 none;
	background-color: transparent;
	text-align:center;
	font-size: 36px;
	font-family: 'FontAwesome';
	color:#FFF;
	z-index:5;
	outline: none;
	cursor: pointer;
  }
  
  .Modern-Slider .PrevArrow:before{
	content:'\f104';
  }
  
  ul.slick-dots {
	display: none!important;
  }
  
  .Modern-Slider .text-content {
	  text-align: left;
		width: 75%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
  }
  
  .Modern-Slider .item h6 {
	margin-bottom: 15px;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	color:#a4c639;
	animation:fadeOutRight 1s both;
  }
  
  .Modern-Slider .item h4 {
	margin-bottom: 30px;
	text-transform: uppercase;
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 2.5px;
	color:#FFF;
	overflow:hidden;
	animation:fadeOutLeft 1s both;
  }
  
  .Modern-Slider .item p {
	  max-width: 570px;
	  color: #fff;
	  font-size: 15px;
	  font-weight: 400;
	  line-height: 30px;
	  margin-bottom: 40px;
  }
  
  .Modern-Slider .item a {
	margin: 0 5px;
  }
  
  .Modern-Slider .item.slick-active h6{
	animation:fadeInDown 1s both 1s;
  }
  
  .Modern-Slider .item.slick-active h4{
	animation:fadeInLeft 1s both 1.5s;
  }
  
  .Modern-Slider .item.slick-active{
	animation:Slick-FastSwipeIn 1s both;
  }
  
  .Modern-Slider .buttons {
	position: relative;
  }
  
  .Modern-Slider {background:#000;}
  
  
  /* ==== Slick Slider Css Ruls === */
  .slick-slider{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}
  .slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}
  .slick-list:focus{outline:none}.slick-list.dragging{cursor:hand}
  .slick-slider .slick-track,.slick-slider .slick-list{-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}
  .slick-track{position:relative;top:0;left:0;display:block}
  .slick-track:before,.slick-track:after{display:table;content:''}.slick-track:after{clear:both}
  .slick-loading .slick-track{visibility:hidden}
  .slick-slide{display:none;float:left /* If RTL Make This Right */ ;height:100%;min-height:1px}
  .slick-slide.dragging img{pointer-events:none}
  .slick-initialized .slick-slide{display:block}
  .slick-loading .slick-slide{visibility:hidden}
  .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}
  
  
  
  
  /* Request Form */
  
  .request-form {
	  background-color: #a4c639;
	  padding: 40px 0px;
	  color: #fff;
  }
  
  .request-form h4 {
	  font-size: 22px;
	  font-weight: 600;
  }
  
  .request-form span {
	  font-size: 15px;
	  font-weight: 400;
	  display: inline-block;
	  margin-top: 10px;
  }
  
  .request-form a.border-button {
	  margin-top: 12px;
	  float: right;
  }
  
  
  
  
  /* Services */
  
  .services {
	  margin-top: 140px;
  }
  
  .service-item img {
	  width: 100%;
	  overflow: hidden;
  }
  
  .service-item .down-content {
	  background-color: #f7f7f7;
	  padding: 30px;
  }
  
  .service-item .down-content h4 {
	  font-size: 20px;
	  font-weight: 700;
	  letter-spacing: 0.25px;
	  margin-bottom: 15px;
  }
  
  .service-item .down-content p {
	  margin-bottom: 20px;
  }
  
  .page-link:hover,
  .page-link {
	  color: #a4c639;
  }
  
  .btn-primary {
	  border-color: #a4c639;
	  background-color: #a4c639;
  }
  
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active,
  .btn-primary:active:focus{
	  opacity: 0.6;
	  border-color: #a4c639;
	  background-color: #a4c639;
  }
  
  
  /* Fun Facts */
  
  .fun-facts {
	  margin-top: 140px;
	  background-image: url(../images/section2-image4.jpg);
	  background-position: center center;
	  background-repeat: no-repeat;
	  background-size: cover;
	  background-attachment: fixed;
	  padding: 140px 0px;
	  color: #fff;
	  position: relative;
  }
  
  .fun-facts .container {
	  position: relative;
	  z-index: 2;
  }
  
  .fun-facts:before {
	  content: '';
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  background-color: rgba(0,0,0,0.5);
	  z-index: 1;
  }
  
  .fun-facts span {
	  text-transform: uppercase;
	  font-size: 15px;
	  color: #fff;
	  letter-spacing: 1px;
	  margin-bottom: 10px;
	  display: block;
  }
  
  .fun-facts h2 {
	  font-size: 36px;
	  font-weight: 600;
	  margin-bottom: 35px;
  }
  
  .fun-facts em {
	  font-style: normal;
	  color: #a4c639;
  }
  
  .fun-facts p {
	  color: #fff;
	  margin-bottom: 40px;
  }
  
  .fun-facts .left-content {
	  margin-right: 45px;
  }
  
  .count-area-content {
	  text-align: center;
	  background-color: rgba(250,250,250,0.1);
	  padding: 25px 30px 35px 30px;
	  margin: 15px 0px;
  }
  
  .count-digit {
	  margin: 5px 0px;
	  color: #a4c639;
	  font-weight: 700;
	  font-size: 36px;
  }
  .count-title {
	  font-size: 20px;
	  font-weight: 600;
	  color: #fff;
	  letter-spacing: 0.5px;
  }
  
  
  
  /* More Info */
.more-info {
    margin-top: 140px;
    margin-bottom: 50px;
}

.more-info .left-image img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
}

.more-info .more-info-content {
    background-color: #f7f7f7;
}

.about-info .more-info-content {
    background-color: transparent;
}

.about-info .right-content {
    padding: 0px!important;
    color: #121212;
    margin-right: 30px;
}

.more-info .right-content {
    padding: 45px 45px 45px 30px;
}

.more-info .right-content span {
    text-transform: uppercase;
    font-size: 15px;
    color: #666;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.more-info .right-content h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 35px;
}

.more-info .right-content em {
    font-style: normal;
    color: #a4c639;
}

.more-info .right-content p {
    margin-bottom: 30px;
    color: #121212; /* Ensure the paragraph text color is black */
}

.more-info .right-content span {
    font-size: 16px;
    color: #121212;
}

/* Media Queries for Mobile and Tablet Responsiveness */
@media (max-width: 1024px) {
    .more-info {
        margin-top: 100px;
        margin-bottom: 40px;
    }

    .more-info .right-content {
        padding: 30px 30px 30px 20px;
    }

    .more-info .right-content h2 {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .more-info .right-content span {
        font-size: 16px;
        color: #121212;
    }
}

@media (max-width: 768px) {
    .more-info {
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .more-info .right-content {
        padding: 20px;
    }

    .more-info .right-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .more-info .right-content span {
        font-size: 13px;
    }

    .more-info .left-image img {
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .more-info {
        margin-top: 60px;
        margin-bottom: 20px;
    }

    .more-info .right-content {
        padding: 15px;
    }

    .more-info .right-content h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .more-info .right-content span {
        font-size: 14px;
    }

    .more-info .right-content p {
        margin-bottom: 20px;
        color: #121212;
    }
}

  
  /* Testimonials Style */
  
  .about-testimonials {
	  margin-top: 0px!important;
  }
  
  .testimonials {
	  margin-top: 140px;
	  background-color: #f7f7f7;
	  padding: 140px 0px;
  }
  .testimonial-item .inner-content {
	  text-align: center;
	  background-color: #fff;	
	  padding: 30px;
	  border-radius: 5px;
  }
  .testimonial-item p {
	  font-size: 16px;
	  font-weight: 400;
  }
  .testimonial-item h4 {
	  font-size: 19px;
	  font-weight: 700;
	  color: #1e1e1e;
	  letter-spacing: 0.5px;
	  margin-bottom: 0px;
  }
  .testimonial-item span {
	  display: inline-block;
	  margin-top: 8px;
	  font-weight: 600;
	  font-size: 16px;
	  color: #a4c639;
  }
  .testimonial-item img {
	  max-width: 60px;
	  border-radius: 50%;
	  margin: 25px auto 0px auto;
  }
  
  
  
  
  /* Call Back Style */
  
  .callback-services {
	  border-top: 1px solid #eee;
	  padding-top: 140px;
	  padding-bottom: 100px;
	  margin-bottom: 50px;
  }
  
  .contact-us {
	  background-color: #f7f7f7;
	  padding: 140px 0px;
  }
  
  .contact-us .contact-form {
	  background-color: transparent!important;
	  padding: 0!important;
  }
  
  .callback-form {
	  margin-top: 140px;
  }
  
  .callback-form .contact-form {
	  background-color: #a4c639;
	  padding: 60px;
	  border-radius: 5px;
	  text-align: center;
  }
  
  .callback-form .contact-form input {
	  border-radius: 20px;
	  height: 40px;
	  line-height: 40px;
	  display: inline-block;
	  padding: 0px 15px;
	  color: #6a6a6a;
	  font-size: 13px;
	  text-transform: none;
	  box-shadow: none;
	  border: none;
	  margin-bottom: 35px;
  }
  
  .callback-form .contact-form input:focus {
	  outline: none;
	  box-shadow: none;
	  border: none;
  }
  
  .callback-form .contact-form textarea {
	  border-radius: 20px;
	  height: 120px;
	  max-height: 200px;
	  min-height: 120px;
	  display: inline-block;
	  padding: 15px;
	  color: #6a6a6a;
	  font-size: 13px;
	  text-transform: none;
	  box-shadow: none;
	  border: none;
	  margin-bottom: 35px;
  }
  
  .callback-form .contact-form textarea:focus {
	  outline: none;
	  box-shadow: none;
	  border: none;
  }
  
  .callback-form .contact-form ::-webkit-input-placeholder { /* Edge */
	color: #aaa;
  }
  .callback-form .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #aaa;
  }
  .callback-form .contact-form ::placeholder {
	color: #aaa;
  }
  
  .callback-form .contact-form button.border-button {
	  background-color: transparent;
	  color: #fff;
	  border: 2px solid #fff;
	  font-size: 13px;
	  text-transform: uppercase;
	  font-weight: 700;
	  padding: 10px 28px;
	  border-radius: 30px;
	  display: inline-block;
	  transition: all 0.3s;
	  outline: none;
	  box-shadow: none;
	  text-shadow: none;
	  cursor: pointer;
  }
  
  .callback-form .contact-form button.border-button:hover {
	  background-color: #fff;
	  color: #a4c639;
  }
  
  .contact-us .contact-form button.filled-button {
	  background-color: #a4c639;
	  color: #fff;
	  border: none;
	  font-size: 13px;
	  text-transform: uppercase;
	  font-weight: 700;
	  padding: 12px 30px;
	  border-radius: 30px;
	  display: inline-block;
	  transition: all 0.3s;
	  outline: none;
	  box-shadow: none;
	  text-shadow: none;
	  cursor: pointer;
  }
  
  .contact-us .contact-form button.filled-button:hover {
	  background-color: #fff;
	  color: #a4c639;
  }
  
  
  
  /* Partners Style */
  
  .contact-partners {
	  margin-top: -8px!important;
  }
  
  .partners {
	  margin-top: 140px;
	  background-color: #f7f7f7;
	  padding: 60px 0px;
  }
  
  .partners .owl-item {
	  text-align: center;
	  cursor: pointer;
  }
  
  .partners .partner-item img {
	  max-width: 156px;
	  margin: auto;
  }
  
  
  
  /* Footer Style */
  
  footer {
	  background-color: #232323;
	  padding: 80px 0px;
	  color: #fff;
  }
  
  footer h4 {
	  color: #fff;
	  font-size: 20px;
	  font-weight: 600;
	  letter-spacing: 0.25px;
	  margin-bottom: 35px;
  }
  footer p {
	  color: #fff;
  }
  
  footer ul.social-icons {
	  margin-top: 25px;
  }
  
  footer ul.social-icons li {
	  display: inline-block;
	  margin-right: 5px;
  }
  
  footer ul.social-icons li:last-child {
	  margin-right: 0px;
  }
  
  footer ul.social-icons li a {
	  width: 34px;
	  height: 34px;
	  display: inline-block;
	  line-height: 34px;
	  text-align: center;
	  background-color: #fff;
	  color: #232323;
	  border-radius: 50%;
	  transition: all 0.3s;
  }
  
  footer ul.social-icons li a:hover {
	  background-color: #a4c639;
  }
  
  footer ul.menu-list li {
	  margin-bottom: 13px;
  }
  
  footer ul.menu-list li:last-child {
	  margin-bottom: 0px;
  }
  
  footer ul.menu-list li a {
	  font-size: 14px;
	  color: #fff;
	  transition: all 0.3s;
  }
  
  footer ul.menu-list li a:hover {
	  color: #a4c639;
  }
  
  footer .contact-form input {
	  border-radius: 20px;
	  height: 40px;
	  line-height: 40px;
	  display: inline-block;
	  padding: 0px 15px;
	  color: #aaa!important;
	  background-color: #343434;
	  font-size: 13px;
	  text-transform: none;
	  box-shadow: none;
	  border: none;
	  margin-bottom: 15px;
  }
  
  footer .contact-form input:focus {
	  outline: none;
	  box-shadow: none;
	  border: none;
	  background-color: #343434;
  }
  
  footer .contact-form textarea {
	  border-radius: 20px;
	  height: 120px;
	  max-height: 200px;
	  min-height: 120px;
	  display: inline-block;
	  padding: 15px;
	  color: #aaa!important;
	  background-color: #343434;
	  font-size: 13px;
	  text-transform: none;
	  box-shadow: none;
	  border: none;
	  margin-bottom: 15px;
  }
  
  footer .contact-form textarea:focus {
	  outline: none;
	  box-shadow: none;
	  border: none;
	  background-color: #343434;
  }
  
  footer .contact-form ::-webkit-input-placeholder { /* Edge */
	color: #aaa;
  }
  footer .contact-form :-ms-input-placeholder { /* Internet Explorer 10-11 */
	color: #aaa;
  }
  footer .contact-form ::placeholder {
	color: #aaa;
  }
  
  footer .contact-form button.filled-button {
	  background-color: transparent;
	  color: #fff;
	  background-color: #a4c639;
	  border: none;
	  font-size: 13px;
	  text-transform: uppercase;
	  font-weight: 700;
	  padding: 12px 30px;
	  border-radius: 30px;
	  display: inline-block;
	  transition: all 0.3s;
	  outline: none;
	  box-shadow: none;
	  text-shadow: none;
	  cursor: pointer;
  }
  
  footer .contact-form button.filled-button:hover {
	  background-color: #fff;
	  color: #a4c639;
  }
  
  
  
  /* Sub-footer Style */
  
  .sub-footer {
	  background-color: #343434;
	  text-align: center;
	  padding: 25px 0px;
  }
  
  .sub-footer p {
	  color: #fff;
	  font-weight: 300;
	  letter-spacing: 0.5px;
  }
  
  .sub-footer a {
	  color: #fff;
  }
  
  
  .page-heading {
	  text-align: center;
	  background-image: url(/assets/images/banner-image-1-1920x500.jpg);
	  background-position: center center;
	  background-repeat: no-repeat;
	  background-size: cover;
	  padding: 230px 0px 150px 0px;
	  color: #fff;
	  position: relative;
  }
  .page-heading .container {
	  position: relative;
	  z-index: 2;
  }
  
  .page-heading:before {
	  content: '';
	  position: absolute;
	  top: 0;
	  left: 0;
	  right: 0;
	  bottom: 0;
	  background-color: rgba(0,0,0,0.5);
	  z-index: 1;
  }
  
  .page-heading h1 {
	  text-transform: capitalize;
	  font-size: 36px;
	  font-weight: 700;
	  letter-spacing: 2px;
	  margin-bottom: 18px;
  }
  
  .page-heading span {
	  font-size: 15px;
	  text-transform: uppercase;
	  letter-spacing: 1px;
	  color: #fff;
	  display: block;
  }
  
  
  /* team */
  
  .team {
	  background-color: #f7f7f7;
	  margin-top: 140px;
	  margin-bottom: -140px;
	  padding: 120px 0px;
      color: #121212;
  }
  
  .team-item img {
	  width: 100%;
	  overflow: hidden;
  }
  
  .team-item .down-content {
	  background-color: #fff;
	  padding: 30px;
  }
  
  .team-item .down-content h4 {
	  font-size: 20px;
	  font-weight: 700;
	  letter-spacing: 0.25px;
	  margin-bottom: 10px;
      color: #121212;
  }
  
  .team-item .down-content span {
	  color: #a4c639;
	  font-weight: 600;
	  font-size: 14px;
	  display: block;
	  margin-bottom: 15px;
  }
  
  .team-item .down-content p {
	  margin-bottom: 20px;
      color: #121212;
  }
  
  
  /* Single Service */
  
  .single-services {
	  margin-top: 140px;
  }
  
  #tabs ul {
	margin: 0;
	padding: 0;
  }
  #tabs ul li {
	margin-bottom: 10px;
	display: inline-block;
	width: 100%;
  }
  #tabs ul li:last-child {
	margin-bottom: 0px;
  }
  #tabs ul li a {
	  text-transform: capitalize;
	  width: 100%;
	  padding: 20px;
	  display: inline-block;
	  background-color: #a4c639;
		font-size: 18px;
		color: #121212;
		letter-spacing: 0.5px;
		font-weight: 700;
		transition: all 0.3s;
  }
  #tabs ul li a i {
	  float: right;
	  margin-top: 5px;
  }
  #tabs ul .ui-tabs-active span {
	background: #faf5b2;
	border: #faf5b2;
	line-height: 90px;
	border-bottom: none;
  }
  #tabs ul .ui-tabs-active a {
	color: #fff;
  }
  #tabs ul .ui-tabs-active span {
	color: #1e1e1e;
  }
  .tabs-content {
	  margin-left: 30px;
	text-align: left;
	display: inline-block;
	transition: all 0.3s;
  }
  .tabs-content img {
	  max-width: 100%;
	  overflow: hidden;
  }
  .tabs-content h4 {
	  font-size: 20px;
	  font-weight: 700;
	  letter-spacing: 0.25px;
	  margin-bottom: 15px;
	  margin-top: 30px;
  }
  .tabs-content h4 a {
	  color: inherit;	
  }
  .tabs-content p {
	font-size: 14px;
	color: #121212;
	margin-bottom: 0px;
  }
  
  .dropdown-item.active, 
  .dropdown-item:active {
	  background-color: #a4c639;
  }
  
  /* Contact Information */
  
  .contact-information {
	  margin-top: 140px;
  }
  
  .contact-information .contact-item {
	  padding: 60px 30px;
	  background-color: #f7f7f7;
	  text-align: center;
  }
  
  .contact-information .contact-item i {
	  color: #a4c639;
	  font-size: 48px;
	  margin-bottom: 40px;
  }
  
  .contact-information .contact-item h4 {
	  font-size: 20px;
	  font-weight: 700;
	  letter-spacing: 0.25px;
	  margin-bottom: 15px;
  }
  
  .contact-information .contact-item p {
	  margin-bottom: 20px;
  }
  
  .contact-information .contact-item a {
	  font-weight: 600;
	  color: #a4c639;
	  font-size: 15px;
  }
  
  
  
  
  /* Responsive Style */
  @media (max-width: 768px) {
	  .sub-header {
		  display: none;
	  }
	  .Modern-Slider .item h6 {
		margin-bottom: 15px;
		font-size: 18px;
	  }
	  .Modern-Slider .item h4 {
		margin-bottom: 25px;
		font-size: 28px;
		line-height: 36px;
		letter-spacing: 1px;
	  }
	  .Modern-Slider .item p {
		  max-width: 570px;
		  line-height: 25px;
		  margin-bottom: 30px;
	  }
	  .Modern-Slider .NextArrow{
		right:5px;
	  }
	  .Modern-Slider .PrevArrow {
		left:5px;
	  }
	  .request-form {
		  text-align: center;
	  }
	  .request-form a.border-button {
		  float: none;
		  margin-top: 30px;
	  }
	  .services .service-item {
		  margin-bottom: 30px;
	  }
	  .fun-facts .left-content {
		  margin-right: 0px;
		  margin-bottom: 30px;
	  }
	  .more-info .right-content  {
		  padding: 30px;
	  }
	  footer {
		  padding: 80px 0px 20px 0px;
	  }
	  footer .footer-item {
		  border-bottom: 1px solid #343434;
		  margin-bottom: 30px;
		  padding-bottom: 30px;
	  }
	  footer .last-item {
		  border-bottom: none;
	  }
	  .about-info .right-content {
		  margin-right: 0px;
		  margin-bottom: 30px;
	  }
	  .team .team-item {
		  margin-bottom: 30px;
	  }
	  .tabs-content {
		  margin-left: 0px;
		  margin-top: 30px;
	  }
	  .contact-item {
		  margin-bottom: 30px;
	  }
  }
  
  @media (max-width: 992px) {
	  .navbar .navbar-brand {
		  position: absolute;
		  left: 30px;
		  top: 10px;
	  }
	  .navbar .navbar-brand {
		  width: auto;
	  }
	  .navbar:after {
		  display: none;
	  }
	  #navbarResponsive {
		  z-index: 99999;
		  position: absolute;
		  top: 80px;
		  left: 0;
		  width: 100%;
		  text-align: center;
		  background-color: #fff;
		  box-shadow: 0px 10px 10px rgba(0,0,0,0.1);
	  }
	  .navbar .navbar-nav .nav-item {
		  border-bottom: 1px solid #eee;
	  }
	  .navbar .navbar-nav .nav-item:last-child {
		  border-bottom: none;
	  }
	  .navbar .navbar-nav a.nav-link {
		  padding: 15px 0px;
		  color: #1e1e1e!important;
	  }
	  .navbar .navbar-nav .nav-link:hover,
	  .navbar .navbar-nav .active>.nav-link,
	  .navbar .navbar-nav .nav-link.active,
	  .navbar .navbar-nav .nav-link.show,
	  .navbar .navbar-nav .show>.nav-link {
		  color: #a4c639!important;
		  border-bottom: none!important;
	  }
  }
  
  h5 a { 
    color: #a4c639; 
} 

h5 a:hover { 
    color: inherit; 
} 

.full-width-section, .full-width-section2 {
    width: 100%;
    background-color: transparent;
    padding: 0;
}

.container-fluid {
    padding: 0;
}

.row {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0;
}

.colorful-box, .colorful-box2 {
    height: 200px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.colorful-box {
    background-color: #3a523a;
}

.colorful-box2 {
    background-color: #ffd81d;
}

.colorful-box h3, .colorful-box2 h3 {
    margin: 0;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    font-size: 18px;
    opacity: 1.5;
}

.colorful-box h3 {
    color: #ffd81d;
}

.colorful-box2 h3 {
    color: #fff;
}

.colorful-box i, .colorful-box2 i {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 32px;
    transition: transform 0.3s ease;
}

.colorful-box i {
    color: #ffd81d;
}

.colorful-box2 i {
    color: #fff;
}

.colorful-box i:hover, .colorful-box2 i:hover {
    transform: scale(1.4);
}

.hover-image img, .hover-image2 img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.hover-image:hover img, .hover-image2:hover img {
    border-color: #ffd81d;
}

.hover-image:before, .hover-image2:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.329);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-image:hover:before, .hover-image2:hover:before {
    opacity: 0.7;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 0.7;
        transform: translateY(0);
    }
}

.animated-heading {
    animation: fadeIn 1.5s ease-in-out;
}

/* Responsive styles */
@media (max-width: 992px) { /* Tablet and below */
    .col-md-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .colorful-box, .colorful-box2 {
        height: 150px;
    }

    .colorful-box h3, .colorful-box2 h3 {
        font-size: 16px;
        padding: 10px;
    }

    .colorful-box i, .colorful-box2 i {
        font-size: 28px;
    }
}

@media (max-width: 768px) { /* Mobile */
    .col-md-3 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .colorful-box, .colorful-box2 {
        height: 120px;
    }

    .colorful-box h3, .colorful-box2 h3 {
        font-size: 14px;
        padding: 8px;
    }

    .colorful-box i, .colorful-box2 i {
        font-size: 24px;
    }
}


 /*about us page*/
 body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
}

p {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 10px;
    color: #424242;
    font-size: 17px;
}

/* Media Queries for Responsive Typography */
@media (max-width: 1024px) {
    h1 {
        font-size: 2rem; /* Adjust as needed */
        margin-bottom: 8px;
    }
    h2 {
        font-size: 1.75rem; /* Adjust as needed */
        margin-bottom: 8px;
    }
    h3 {
        font-size: 1.5rem; /* Adjust as needed */
        margin-bottom: 8px;
    }
    p {
        font-size: 16px;
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.75rem; /* Adjust as needed */
        margin-bottom: 6px;
    }
    h2 {
        font-size: 1.5rem; /* Adjust as needed */
        margin-bottom: 6px;
    }
    h3 {
        font-size: 1.25rem; /* Adjust as needed */
        margin-bottom: 6px;
    }
    p {
        font-size: 15px;
        margin-bottom: 6px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem; /* Adjust as needed */
        margin-bottom: 5px;
    }
    h2 {
        font-size: 1.25rem; /* Adjust as needed */
        margin-bottom: 5px;
    }
    h3 {
        font-size: 1rem; /* Adjust as needed */
        margin-bottom: 5px;
    }
    p {
        font-size: 14px;
        margin-bottom: 5px;
    }
}


/* Section 1 */
.section1 {
    position: relative;
    height: 600px;
    background: url(../images/about-scroll.jpg) center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: fadeOutRight;
    background: rgba(54, 54, 54, 0.527);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    opacity: 70px;
}

.arrow-container {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    animation: moveDown 2s infinite;
}

.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 5px;
    transform: rotate(45deg);
}

@keyframes moveDown {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(10px);
    }
    60% {
        transform: translateY(5px);
    }
}

@keyframes move_wave {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }
    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.55);
    }
    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

.waveWrapper {
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
}

.waveWrapperInner {
    position: absolute;
    width: 100%;
    overflow: hidden;
    height: 100%;
    bottom: -1px;
    background-image: linear-gradient(to top, #86377b 20%, #27273c 80%);
}

.bgTop {
    z-index: 15;
    opacity: 0.5;
}

.bgMiddle {
    z-index: 10;
    opacity: 0.75;
}

.bgBottom {
    z-index: 5;
}

.wave {
    position: absolute;
    left: 0;
    width: 200%;
    height: 100%;
    background-repeat: repeat no-repeat;
    background-position: 0 bottom;
    transform-origin: center bottom;
}

.waveTop {
    background-size: 50% 100px;
}

.waveAnimation .waveTop {
    animation: move_wave 3s;
    -webkit-animation: move_wave 3s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.waveMiddle {
    background-size: 50% 120px;
}

.waveAnimation .waveMiddle {
    animation: move_wave 10s linear infinite;
}

.waveBottom {
    background-size: 50% 100px;
}

.waveAnimation .waveBottom {
    animation: move_wave 15s linear infinite;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section1 {
        height: 500px;
        padding-top: 30px;
    }

    .arrow-container {
        width: 25px;
        height: 25px;
    }

    .arrow {
        padding: 4px;
    }
}

@media (max-width: 480px) {
    .section1 {
        height: 400px;
        padding-top: 20px;
    }

    .arrow-container {
        width: 20px;
        height: 20px;
    }

    .arrow {
        padding: 3px;
    }

    .overlay {
        padding: 0 10px;
    }
}

/* Section 2 */
.section2 {
    background: #a4c639;
    text-align: center;
    padding: 50px 70px;
    height: 400px;
    font-size: 19px;
}

h1 {
    padding-top: 230px;
    font-family: 'Poppins', sans-serif;
    font-weight: bolder;
    color: #ffffff;
    font-size: 44px;
}

p {
    color: #ffffff;
    margin-bottom: 20px;
}

.icon {
    width: 100px;
    height: 100px;
    color: whitesmoke;
    margin-bottom: 30px;
    background: url(../images/coffee-beans.png) center/cover no-repeat;
    margin: 0 auto 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .section2 {
        padding-top: 50px;
        height: 500px;
        font-size: 17px;
    }

    h1 {
        padding-top: 120px;
        font-size: 36px;
    }

    p {
        font-size: 16px;
        margin-bottom: 0;
    }

    .icon {
        width: 80px;
        height: 80px;
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .section2 {
        padding-top: 50px;
        height: 500px;
        font-size: 16px;
    }

    h1 {
        padding-top: 100px;
        font-size: 28px;
    }

    p {
        font-size: 14px;
        margin-bottom: 0;
    }

    .icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }
}

.section3 {
    display: flex;
    height: 500px;
}

.column1 {
    flex: 1;
    background: url(../images/image3.jpg) center/cover no-repeat;
    border-left: 30px solid #3a523a;
    border-bottom: 30px solid #3a523a;
    border-top: 30px solid #3a523a;
    transition: transform 0.3s ease-in-out;
}

.column2 {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-right: 30px solid #3a523a;
    border-bottom: 30px solid #3a523a;
    border-top: 30px solid #3a523a;
    color: #121212;
}
p {
    color: #121212;
}

@media (max-width: 768px) {
    .section3 {
        flex-direction: column;
        height: auto;
    }

    .column1, .column2 {
        flex: 1;
        border: 30px solid #3a523a;
        border-top: none;
        height: auto;
        padding: 20px;
    }

    .column1 {
        border-left: none;
        border-bottom: none;
    }

    .column2 {
        border-right: none;
    }
}

/* pageheader */
.pageheader {
    position: relative;
    height: 400px;
    background: url(../images/g1.jpg) center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;


}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	animation:fadeOutRight ;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
	text-align: center;
}

@media (max-width: 768px) {
    .section1 {
        height: 300px;
    }

    .arrow-container {
        width: 25px;
        height: 25px;
    }

    .arrow {
        padding: 4px;
    }
}
/*page header*/


.image-overlay {
    position: relative;
    width: 100%;
    height: 400px; /* Adjust height as needed */
}

.image-overlay img {
    width: 100%;
    height: 100%;
    object-fit:cover;
	background-color: #3a523a;
	opacity: 0.7;

}

.overlay {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.overlay h1 {
    font-size: 36px;
    font-weight: bold;
    /* Add any additional styles as needed */
}
/* cacao farms*/
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #eee;
    color: #6c6c6c;
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    background-color: white;
}


/* General Styles */
.tilted-section {
    height: 800px;
    position: relative;
    background: url('../images/image7.jpg') no-repeat center center/cover;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    padding: 50px 0;
    margin-bottom: 50px;
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.column-left, .column-right {
    flex: 1;
}

.circle-content {
    height: 500px;
    width: 500px;
    background-color: #ffff;
    border-radius: 50%;
    padding: 35px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 30px auto;
}

.circle-content .heading {
    padding-top: 30px;
    color: #a4c639;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.circle-content .subheading {
    color: #3a523a;
    font-size: 20px;
    margin-bottom: 20px;
}

.circle-content .text {
    font-size: 17px;
    margin-bottom: 20px;
}

.circle-content .btn {
    background-color: #3a523a;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-style: inherit;
    font-weight: 700;
    transition: background-color 0.3s;
}

.circle-content .btn:hover {
    background-color: #a4c639;
}

/* Media Queries */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .column-left, .column-right {
        flex: none;
        width: 100%;
    }

    .circle-content {
       
        padding: 20px;
        height: 700px;
        width: 300px;
        border-radius: 0%;
        padding-top: 50px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .circle-content .heading {
        font-size: 28px;
        padding-top: 15px;
    }

    .circle-content .subheading {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .circle-content .text {
        font-size: 16px;
    }

    .tilted-section {
        clip-path: none;
    }
}

@media (max-width: 480px) {
   
    .circle-content {
        height: 600px;
        width: 300px;
        border-radius: 0%;
        padding-top: 50px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .circle-content .heading {
        font-size: 36px;
        padding-top: 10px;
    }

    .circle-content .subheading {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .circle-content .text {
        font-size: 16px;
    }

    .tilted-section {
        clip-path: none;
    }
}

/* Tilted Section 2 */
.tilted-section-2 {
    position: relative;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 85%);
    padding: 50px 0;
    margin-bottom: 50px;
}

.tilted-section-2 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.tilted-section-2 .column-left, .tilted-section-2 .column-right {
    flex: 1;
}

.tilted-section-2 .text-content {
    padding: 20px;
}

.tilted-section-2 .text-content .heading {
    color: #a4c639;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.tilted-section-2 .text-content {
    color: #3a523a;
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
}

.tilted-section-2 .text-content .text {
    font-size: 1rem;
    margin-bottom: 20px;
}

.tilted-section-2 .text-content .btn {
    background-color: #3a523a;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-style: inherit;
    font-weight: 700;
    transition: background-color 0.3s;
}

.tilted-section-2 .text-content .btn:hover {
    background-color: #a4c639;
}

.tilted-section-2 .circle-img-container {
    text-align: center;
}

.tilted-section-2 .circle-img-container img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    width: 500px;
    height: 500px;
}

/* Media Queries */
@media (max-width: 768px) {
    .tilted-section-2 .container {
        flex-direction: column;
    }

    .tilted-section-2 .column-left, .tilted-section-2 .column-right {
        flex: none;
        width: 100%;
    }

    .tilted-section-2 .text-content {
        padding: 20px 0;
    }

    .tilted-section-2 .circle-img-container img {
        max-width: 80%;
        width: 300px;
        height: 300px;
    }

    .tilted-section-2 {
        clip-path: none;
    }
}

@media (max-width: 480px) {
    .tilted-section-2 .circle-img-container img {
        max-width: 80%;
        width: 200px;
        height: 200px;
    }
}

/* Tilted Section 3 */
.tilted-section-3 {
    position: center;
    height: 700px;
    background-image: url('../images/image\ 11.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 15%, 100% 85%, 0% 100%);
    padding: 50px 0;
    margin-bottom: 50px;
}

.tilted-section-3 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.tilted-section-3 .column-left, .tilted-section-3 .column-right {
    flex: 1;
}

.tilted-section-3 .circle-content {
    background-color: #fff;
    border-radius: 50%;
    margin: 50px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    height: 500px;
    margin: 3px auto;
}

.tilted-section-3 .circle-content .heading {
    color: #a4c639;
    font-size: 36px;
    margin-bottom: 5px;
}

.tilted-section-3 .circle-content .subheading {
    color: #3a523a;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.tilted-section-3 .circle-content .text {
    font-size: 17px;
    margin-bottom: 20px;
}

.tilted-section-3 .circle-content .btn {
    background-color: #a4c639;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.tilted-section-3 .circle-content .btn:hover {
    background-color: #3a523a;
}

/* Media Queries */
@media (max-width: 768px) {
    .tilted-section-3 .container {
        flex-direction: column;
    }

    .tilted-section-3 .column-left, .tilted-section-3 .column-right {
        flex: none;
        width: 100%;
    }

    .tilted-section-3 .circle-content {
        padding: 20px;
        height: 600px;
        width: 300px;
        border-radius: 0%;
        padding-top: 50px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .tilted-section-3 .circle-content .heading {
        font-size: 36px;
        padding-top: 15px;
    }

    .tilted-section-3 .circle-content .subheading {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .tilted-section-3 .circle-content .text {
        font-size: 16px;
    }

    .tilted-section-3 {
        clip-path: none;
    }
}

@media (max-width: 468px) {
    .tilted-section-3 .circle-content {
        height: 550px;
        width: 300px;
        border-radius: 0%;
        padding-top: 50px;
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .tilted-section-3 .circle-content .heading {
        font-size: 36px;
        padding-top: 10px;
    }

    .tilted-section-3 .circle-content .subheading {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .tilted-section-3 .circle-content .text {
        font-size: 16px;
    }

    .tilted-section-3 {
        clip-path: none;
    }
}

/* Tilted Section 4 */
.tilted-section-4 {
    position: relative;
    background-color: white;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    padding: 50px 0;
    margin-bottom: 50px;
}

.tilted-section-4 .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.tilted-section-4 .column-left, .tilted-section-4 .column-right {
    flex: 1;
}

.tilted-section-4 .text-content {
    padding: 20px;
}

.tilted-section-4 .text-content .heading {
    color: #a4c639;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.tilted-section-4 .text-content .subheading {
    color: #3a523a;
    font-size: 20px;
    margin-bottom: 20px;
}

.tilted-section-4 .text-content .text {
    font-size: 1rem;
    margin-bottom: 20px;
    text-align: left;
}

.tilted-section-4 .circle-img-container {
    text-align: center;
}

.tilted-section-4 .circle-img-container img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    width: 500px;
    height: 500px;
}

/* Media Queries */
@media (max-width: 768px) {
    .tilted-section-4 .container {
        flex-direction: column;
    }

    .tilted-section-4 .column-left, .tilted-section-4 .column-right {
        flex: none;
        width: 100%;
    }

    .tilted-section-4 .circle-img-container img {
        max-width: 80%;
        width: 300px;
        height: 300px;
    }

    .tilted-section-4 {
        clip-path: none;
    }
}

@media (max-width: 480px) {
    .tilted-section-4 .circle-img-container img {
        max-width: 80%;
        width: 200px;
        height: 200px;
    }
}

/* farm mission*/

  @keyframes colorChange {
	0% {
	  color: #a4c639;
	}
	50% {
	  color: #3a523a;
	}
	100% {
	  color: #ffd81d;
	}
  }
  
  .section-container-farm {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	padding: 20px;
  }
  
  .section1-farm {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
  }
  
  .box-container {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
  }
  
  .colorful-box-f {
	margin-top: 50px;
	margin-bottom: 0px;
	background-color:#a4c639;
	padding: 50px;
	width: 800px;
	text-align: center;
	border-radius: 0px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .icon-f {
	display: inline-block;
	margin: 10px;
	transition: transform 0.3s;
  }
  
  .icon-f img {
	width: 100px;
  }
  
  .icon-f:hover {
	transform: scale(1.2);
  }
  
  .text-column-farm h2 {
	animation: colorChange 3s infinite;
	color: green; /* Initial color */
	font-size: 35spx;
	font-weight: bold;
  }
  
  .text-column-farm h3 {
	color: #ffffff;
  }
  
  .text-column-farm p {
	color: #ffffff;
	margin-top: 20px;
  }
  
  .a-btn {
	display: inline-block;
	padding: 10px 20px;
	background-color: #a4c639; 
	color: #fff;
	text-align: center;
	text-decoration: none;
	font-size: 15px;
	font-weight: bold;
	border-radius: 50px; 
	transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .a-btn:hover {
	background-color: #3a523a; /* Change this color as needed */
	color: #fff;
  }

  /*fixed section*/
  .fun-facts-farm {
    padding: 50px 20px; /* Reduce padding for smaller screens */
    background-image: url(../images/bg.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.overlay-farm {
    background: transparent;
    padding: 30px 0;
    opacity: 2.7;
}

.container-farm {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.left-content-farm {
    margin-bottom: 30px;

}

.left-content-farm span {
    font-size: 18px; /* Slightly smaller font size */
    color: #555;
}

.left-content-farm h2 {
    font-size: 36px; /* Slightly smaller font size */
    font-weight: bold;
    font-family: poppins, sans-serif;
    color: #333;
    margin: 10px 0;
}

.left-content-farm h2 em {
    font-style: normal; /* Correcting invalid font-style value */
    color: #a4c639;
}

.left-content-farm p {
    font-size: 16px; /* Slightly smaller font size */
    color: #121212;
    line-height: 1.6;
}

.mini-images-container-farm {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.mini-image-box-farm {
    width: 150px; /* Smaller width for smaller screens */
    height: 150px; /* Smaller height for smaller screens */
    overflow: hidden;
    border-radius: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mini-image-box-farm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.mini-image-box-farm:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.mini-image-box-farm:hover img {
    transform: scale(1.1);
}

.arrow-container-farm {
    margin-top: 20px; /* Reduce margin for smaller screens */
    cursor: pointer;
    align-content: center;
    animation: bounce-farm 2s infinite;
}

.arrow-circle-farm {
    width: 40px; /* Smaller circle for smaller screens */
    height: 40px;
    border-radius: 50%;
    background-color: #a4c639;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes bounce-farm {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .fun-facts-farm {
        padding: 50px 20px;
    }

    .container-farm {
        padding: 0 10px;
    }

    .left-content-farm span {
        font-size: 16px;
    }

    .left-content-farm h2 {
        font-size: 24px;
    }

    .left-content-farm p {
        font-size: 14px;
        color: #121212;
    }

    .mini-image-box-farm {
        width: 120px;
        height: 120px;
    }

    .arrow-circle-farm {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .fun-facts-farm {
        padding: 30px 10px;
    }

    .left-content-farm span {
        font-size: 14px;
        color: #121212;
    }

    .left-content-farm h2 {
        font-size: 20px;
    }

    .left-content-farm p {
        font-size: 14px;
        color: #121212;
    }

    .mini-image-box-farm {
        width: 100px;
        height: 100px;
    }

    .arrow-circle-farm {
        width: 30px;
        height: 30px;
    }
}

 
/* Fun Facts */
.fun-facts-home {
    background-image: url(../images/section2-image4.jpg); /* Replace with your background image path */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 0;
    padding: 10% 5%; /* Adjust padding for responsiveness */
    color: #fff;
    position: relative;
}

.fun-facts-home .container-home {
    position: relative;
    z-index: 2;
    text-align: center;
}

.fun-facts-home:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.fun-facts-home span {
    text-transform: uppercase;
    font-size: 15px;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.fun-facts-home h2 {
    font-size: 36px;
    font-weight: 600;
    color: white;
    margin-bottom: 35px;
}

.fun-facts-home em {
    font-style: normal;
    color: #a4c639;
}

.fun-facts-home p {
    color: #fff;
    margin-bottom: 40px;
    font-size: 16px;
}

.filled-button-home {
    background-color: #a4c639;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.filled-button-home:hover {
    background-color: #333;
    color: #fff;
}

/* Utility Classes */
.row-home {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.col-md-6 {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.align-self-center {
    align-self: center;
}

/* Media Queries */
@media (min-width: 768px) {
    .col-md-6 {
        width: 50%; /* Make columns 50% width on tablets */
    }
}

/* Home Tilt Section */
.home-tilt-section {
    position: relative;
    margin-bottom: 50px;
    background-color: white;
    padding: 5% /* Adjust padding for responsiveness */
    
}

.home-tilt-section .home-tilt-container {
    display: flex;
    flex-direction: row; /* Change flex direction to row for desktop */
    justify-content: space-between; /* Space between columns */
    padding: 0 5%; /* Adjust padding for responsiveness */
}

.home-tilt-section .home-tilt-column-left, 
.home-tilt-section .home-tilt-column-right {
    flex: 1;
    width: 50%; /* Adjust width for two columns layout */
    text-align: left; /* Align text to the left */
    margin-bottom: 20px; /* Add margin for spacing */
}

.home-tilt-section .home-tilt-column-right {
    text-align: center; /* Center align image in the right column */
}

.home-tilt-section .home-tilt-text-content {
    padding: 20px;
}

.home-tilt-section .home-tilt-text-content .home-tilt-heading {
    color: #a4c639;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.home-tilt-section .home-tilt-text-content .home-tilt-subheading {
    color: #3a523a;
    font-size: 20px;
    margin-bottom: 20px;
}

.home-tilt-section .home-tilt-text-content .home-tilt-text {
    font-size: 1rem;
    color: #121212;
    margin-bottom: 20px;
}

.home-tilt-section .home-tilt-text-content .home-tilt-btn {
    background-color: #3a523a;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-style: inherit;
    font-weight: 700;
    transition: background-color 0.3s;
}

.home-tilt-section .home-tilt-text-content .home-tilt-btn:hover {
    background-color: #a4c639;
}

.home-tilt-section .home-tilt-circle-img-container {
    text-align: center;
}

.home-tilt-section .home-tilt-circle-img-container img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    width: 400px;
    height: 400px;
}

/* Media Queries */
@media (max-width: 768px) {
    .home-tilt-section .home-tilt-container {
        flex-direction: column; /* Change flex direction to column for mobile and tablet */
        align-items: center; /* Center align items */
    }

    .home-tilt-section .home-tilt-column-left, 
    .home-tilt-section .home-tilt-column-right {
        width: 100%; /* Adjust width for single column layout */
        text-align: center; /* Center align text */
    }
}

@media (max-width: 468px) {
    .home-tilt-section .home-tilt-column-right {
        order: -1; /* Move right column above left column */
    }

    .home-tilt-section .home-tilt-circle-img-container img {
        width: 200px;
        height: 200px;
        margin-top: 20px; /* Adjust margin for smaller screens */
    }
}

/* Farm Retreats Section */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/*=================================
\* 1. Globals
/*===============================*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 22px;
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin: 5px 0;
}
h1 {
    font-size: 40px;
    line-height: 50px;
}
h2 {
    font-size: 35px;
    line-height: 45px;
}
h3 {
    font-size: 28px;
    line-height: 35px;
}
.lead {
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.5em;
}
.clearfix:after {
    content: "";
    display: table;
    clear: both;
}
.btn:hover {
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.link-small {
    font-size: 0.5em;
}

/*=================================
\* 2. Grid
/*===============================*/
.row {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap; /* Allow columns to wrap */
}
.row:after {
    content: "";
    display: table;
    clear: both;
}
.col {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: 50% 50%;
    min-height: 400px;
    flex-basis: 50%; /* Allow columns to take half width by default */
}
@media (max-width: 768px) {
    .col {
        width: 100%;
        min-height: 150px;
        flex-basis: 100%; /* Take full width on small screens */
    }
    .row.col-rev {
        flex-direction: column-reverse;
    }
}

/*=================================
\* 3. Intro
/*===============================*/
#intro {
    background-image: url("../images/bg-intro.png");
    background-attachment: fixed;
    height: 100vh;
    padding-top: 30vh;
}
@media (max-width: 1200px) {
    #intro {
        padding: 50px 0;
        height: auto;
    }
}
@media (max-width: 768px) {
    #intro {
        padding: 30px 0;
        height: auto;
    }
}

.main-title-wrapper {
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
@media (max-width: 1200px) {
    .main-title-wrapper {
        width: 75%;
    }
}
@media (max-width: 768px) {
    .main-title-wrapper {
        width: 90%;
    }
}

.main-title {
    color: #090;
}
.btn-main {
    padding: 10px 30px;
    color: #090;
    border: 2px #090 solid;
    display: inline-block;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 300;
}
.btn-main:hover {
    background-color: #090;
    color: #fff;
}

/*=================================
\* 4. Cities
/*===============================*/
.rome, .paris, .new-york {
    background-size: cover;
    background-position: center;
}

.rome {
    background-image: url(../images/farmretreats.jpg);
}

.paris {
    background-image: url(../images/farm-retreats5.jpg);
}

.new-york {
    background-image: url(../images/farm-retreats1.jpg);
}

.city-title {
    color: #fff;
    text-shadow: 3px 3px 3px rgba(0,0,0,.8);
}
.city-desc {
    padding: 100px;
}
@media (max-width: 768px) {
    .city-desc {
        padding: 40px;
    }
}

/*=================================
\* 5. Subscribe
/*===============================*/
#subscribe {
    background-color: #a4c639;
    color: #fff;
    text-align: center;
    padding: 50px 0;
}
@media (min-width: 1500px) {
    #subscribe {
        padding: 100px 0;
    }
}
.subscribe-wrapper {
    width: 50%;
    margin: 0 auto;
}
@media (max-width: 1200px) {
    .subscribe-wrapper {
        width: 75%;
    }
}
@media (max-width: 768px) {
    .subscribe-wrapper {
        width: 90%;
    }
}
#subscribe-form {
    padding: 20px 0;
}
.text-field,
.submit-field {
    float: left;
    padding: 0 10px;
}
.text-field {
    width: 70%;
}
.submit-field {
    width: 30%;
}
@media (max-width: 500px) {
    .text-field,
    .submit-field {
        width: 100%;
        margin-top: 10px;
    }
}
#subscribe-email,
#subscribe-submit {
    width: 100%;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 20px;
}
.input-field {
    padding: 8px;
    border-radius: 50px;
    background-color: rgba(256,256,256,.3);
    color: #fff;
}
.btn-submit {
    padding: 5px 20px;
    border: 2px #fff solid;
    color: #000;
    border-radius: 50px;
    background-color: #fff;
    cursor: pointer;
}
.btn-submit:hover {
    background-color: #fff;
    color: #090;
}

/* Larger Screen Adjustments */
@media (min-width: 1500px) {
    body {
        font-size: 20px;
        line-height: 25px;
    }
    .main-title {
        font-size: 60px;
        line-height: 75px;
    }
}
@media (max-width: 768px) {
    body {
        font-size: 14px;
        line-height: 20px;
    }
    .lead {
        font-size: 1em;
    }
    .main-title {
        font-size: 30px;
        line-height: 40px;
    }
}


.video-container {
    max-width: 700px;
    width: 90%;
    align-items: center;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 10px solid #a4c639; /* Changing border color to #a4c639 */
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    margin-left: 330px;
    margin-bottom: 50px;
}

video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Responsive adjustments for tablets and mobile devices */
@media (max-width: 1024px) {
    .video-container {
        max-width: 100%;
        border-radius: 15px;
        margin-left: 0;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    video {
        border-radius: 5px;
    }
}

@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        border-radius: 10px;
        margin-left: 0;
        margin-top: 30px;
        margin-bottom: 30px;
        align-items: center;
    }
    

    video {
        border-radius: 5px;
    }
}

/* images tokenization */
.images {
    display: flex;
    justify-content: center; /* Center-align images horizontally */
    margin-top: 20px; /* Add top margin for spacing */
}

.images img {
    max-width: 500px; /* Make sure images don't exceed their container width */
    height: 400px;
     /* Ensure aspect ratio is maintained */
    margin: 0 5px; /* Add horizontal margin between images */
}

/* Media query for mobile responsiveness */
@media (max-width: 768px) {
    .images {
        flex-direction: column; /* Stack images vertically on smaller screens */
        align-items: center; /* Center-align images vertically */
    }

    .images img {
        margin: 15px 0; /* Add vertical margin between images */
        max-width: 500px; /* Make sure images don't exceed their container width */
        height: 400px;
    }
}
@media (max-width: 468px) {
    .images {
        flex-direction: column; /* Stack images vertically on smaller screens */
        align-items: center; /* Center-align images vertically */
    }

    .images img {
        margin: 35px 30px; /* Add vertical margin between images */
        max-width: 400px; /* Make sure images don't exceed their container width */
        height: 300px;
        background-size: contain;

    }
}
.logos {
    display: flex;
    justify-content: center;
    align-items: left;
    margin-top: 30px;
  }
  .logos img {
    margin: 0 10px;
    max-width: 150px; /* Adjust the maximum width as needed */
    max-height: 150px; /* Adjust the maximum height as needed */
    object-fit: contain; /* Ensure the images are contained within the specified dimensions */
  }
  .container-terms {
    width: 80%;
    margin: 0 auto;
    padding: 50px;
    background-color: transparent;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 align-items: center;
  }
 
  .terms-list {
    list-style-type: disc;
    margin-left: 40px;
  }
  .terms-list li {
    margin-bottom: 10px;
  }
  .social-icons {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  .social-icons li {
    margin: 0 10px;
  }
  .social-icons a {
    color: #000000;
    text-decoration: none;
    font-size: 24px;
  }
  /* community page*/
  .community-gallery {
    display: grid;

    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 80px;
    padding-top: 30px;
    background-color: #EEEEEE;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    width: 100%;
}

.gallery-item img {
    position: relative;
    width: 100%; /* Maintain the original width of the image */
    height: 100%; /* Maintain the original height of the image */
    object-fit: contain; /* Do not resize the image */
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Media Queries for Responsive Design */
@media (max-width: 1200px) {
    .community-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .community-gallery {
        grid-template-columns: 1fr;
    }
}
