*{
	padding: 0;
	margin: 0;
	font-family: 'Raleway', sans-serif;
	font-family: 'Roboto', sans-serif;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}

body {
	font-family: 'Raleway', sans-serif;
}

nav{
	display: flex;
	height: 150px;
	width: 100%;
	background: whitesmoke;
	align-items: center;
	justify-content: space-between;
	padding: 0 50px 0 100px;
	flex-wrap: wrap;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  }
  nav .logo img{
	max-height: 100px;
  }
  nav ul{
	display: flex;
	flex-wrap: wrap;
	list-style: none;
  }
  nav ul li{
	margin: 0 5px;
  }
  nav ul li a{
	color: #147b2e;
	text-decoration: none;
	font-size: 18px;
	font-weight: 500;
	padding: 8px 15px;
	border-radius: 5px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
  }
  nav ul li a.active,
  nav ul li a:hover{
	color: #229915;
	background: #fff;
  }
  nav .menu-btn i{
	color: #1b1919;
	font-size: 22px;
	cursor: pointer;
	display: none;
  }
  input[type="checkbox"]{
	display: none;
  }
  @media (max-width: 1000px){
	nav{
	  padding: 0 40px 0 50px;
	}
  }
  @media (max-width: 920px) {
	nav .menu-btn i{
	  display: block;
	}
	#click:checked ~ .menu-btn i:before{
	  content: "\f00d";
	}
	nav ul{
	  position: fixed;
	  top: 80px;
	  left: -100%;
	  background: #fffdfd;
	  height: 100vh;
	  width: 100%;
	  text-align: center;
	  display: block;
	  transition: all 0.3s ease;
	}
	#click:checked ~ ul{
	  left: 0;
	}
	nav ul li{
	  width: 100%;
	  margin: 40px 0;
	}
	nav ul li a{
	  width: 100%;
	  margin-left: -100%;
	  display: block;
	  font-size: 20px;
	  transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
	}
	#click:checked ~ ul li a{
	  margin-left: 0px;
	}
	nav ul li a.active,
	nav ul li a:hover{
	  background: none;
	  color: rgb(46, 143, 54);
	}
  }


  .img-responsive {
	animation-name: fadeIn;
	animation-duration: 3.5s;
	display: flex;
	justify-content: center;
	margin-top: 2%;
	margin-bottom: 2%;
	margin-top: auto;
	margin-bottom: a
  }
  
  @keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
  }
  
  

  .carousel {
	width: 100%;
	height: 100vh;
	position: relative;
  }
  
  .carousel > ul {
	margin: 0;
	padding: 0;
	list-style: none;
  }
  
  .slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: 200ms opacity ease-in-out;
	transition-delay: 200ms;
  }
  
  .slide > img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
  }
  
  .slide[data-active] {
	opacity: 1;
	z-index: 1;
	transition-delay: 0ms;
  }

  .overlay-text {
	font-family: 'Raleway', sans-serif;
	position: absolute;
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%); 
	background-color: rgba(0,0,0,.6);
	color: #fff; 
	padding: 10px 20px; 
	font-size: 16px; 
	text-align: center;
  }
  
  @media (max-width: 950px) {
	.overlay-text {
	  width: 50%;
	  padding: 2%;
	  font-family: 'Raleway', sans-serif;
	  font-size: 14px;
	}}

  .carousel-button {
	position: absolute;
	z-index: 2;
	background: none;
	border: none;
	font-size: 2.8rem;
	top: 50%;
	transform: translateY(-50%);
	color: rgba(255, 255, 255, .5);
	cursor: pointer;
	border-radius: .25rem;
	padding: 0 .5rem;
	background-color: rgba(0, 0, 0, .1);
  }
  
  .carousel-button:hover,
  .carousel-button:focus {
	color: white;
	background-color: rgba(0, 0, 0, .2);
  }
  
  .carousel-button:focus {
	outline: 1px solid black;
  }
  
  .carousel-button.prev {
	left: 1rem;
  }
  
  .carousel-button.next {
	right: 1rem;
  }

/*portfolio section*/

.portfolio-heading {
	padding: 50px;
	justify-content: center;
	text-align: center;
}

.portfolio-heading h2 {
	padding-top: 15px;
	font-family: 'Raleway', sans-serif;
	font-size: 3vw;
	color: #14600c;
}

.container-portfolio {
	position: relative;
	min-height: 100vh;
	background: #fff;
}


.container-portfolio .image-container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	padding:5px;	
}

.container-portfolio .image-container .image {
	height: 300px;
	width: 400px;
	border: 10px solid #fff;
	box-shadow: 0 5px 15 rgba (0,0,0,1);
	overflow:hidden;
	cursor:pointer;
}
.container-portfolio .image-container .image img {
 height: 100%;
 width: 100%;
 object-fit:cover;
transition: .2s linear;
}
.container-portfolio .image-container .image:hover img {
	transform: scale(1.5);
}



/*TESTIMONIALS*/

.testomnials-heading {
	padding: 20px;
	justify-content: center;
	text-align: center;
	font-size: 2vw ;
	color:#14600c ;
	padding-top: 5%;
	
}



.testimonialsCONTAINER{
	display: flex;
	margin: 1%;
	flex-wrap: wrap;
	justify-content: center;
}

.TESIMONIALSbox {
padding: 1%;
 width: 20%;
 align-items: center;
 justify-content: center;
 margin: 10px;
 background-color: #e9eae9;
 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.TESIMONIALSbox h3{
	color: #10511a;
	font-family: 'Raleway', sans-serif;
	font-size: 24px;
	padding: 2%;
}

.TESIMONIALSbox h4{
	color: #33823f;
	font-family: 'Raleway', sans-serif;
	font-size: 20px;
	padding: 2%;
}

.TESIMONIALSbox p {
	color: #10511a;
	font-size: 16px;	
}

@media (max-width: 1250px) {
	.testimonialsCONTAINER {
		display: flex;
		margin: 1%;
		flex-wrap: wrap;
		justify-content: center;
	}

	.TESIMONIALSbox {
		padding: 1%;
		 width: 75%;
		 align-items: center;
		 justify-content: center;
		 margin: 10px;
		 background-color: #e9eae9;
		 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		 margin-left: 15%;
		}

		.TESIMONIALSbox h3{
			color: #10511a;
			font-family: 'Raleway', sans-serif;
			font-size: 24px;
			padding: 2%;
		}
		
		.TESIMONIALSbox h4{
			color: #33823f;
			font-family: 'Raleway', sans-serif;
			font-size: 20px;
			padding: 2%;
		}
		
		.TESIMONIALSbox p {
			color: #10511a;
			font-size: 16px;	
		}

}

@media (max-width: 950px) {
	.testimonialsCONTAINER {
		display: flex;
		margin: 1%;
		flex-direction: column;
	}

	.TESIMONIALSbox {
		padding: 1%;
		 width: 75%;
		 align-items: center;
		 justify-content: center;
		 margin: 10px;
		 background-color: #e9eae9;
		 box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		 margin-left: 15%;
		}
		.TESIMONIALSbox h3{
			color: #10511a;
			font-family: 'Raleway', sans-serif;
			font-size: 20px;
			padding: .5%;
		}
		
		.TESIMONIALSbox h4{
			color: #33823f;
			font-family: 'Raleway', sans-serif;
			font-size: 16px;
			padding: .5%;
		}
		
		.TESIMONIALSbox p {
			color: #10511a;
			font-size: 12px;	
		}
}


/*GOLF DAY 2025*/ 

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'raleway', sans-serif;
	background-color: #f5f5f5;
	color: 2c5530;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

.golf-day-heading {
	text-align: center;
	margin-bottom: 40px;
}

.golf-day-heading h1 {
	font-size: 2.5rem;
	color: #2c5530;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.golf-day-heading h2 {
	font-size: 1.58rem;
	color: #14600c;
	margin-bottom: 5px;
}


.golf-day-heading p {
	font-size: 1.1rem;
	color: #666;
}

.golf-day-gallery {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
	margin-bottom: 40px;
}

.golfday {
	position: relative;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	cursor: pointer;
}

.golfday:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.golfday img {
	width: 100%;
	height: 250px;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}

.golfday:hover img {
	transform: scale(1.05);
}

.modal {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	backdrop-filter: blur(3px);
}

.modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 90%;
	max-height: 90%;
	background: white;
	border-radius: 8px;
	padding: 20px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.modal-content img {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.close {
	position: absolute;
	top: 10px;
	right: 15px;
	color: #aaa;
	font-size: 28px;
	font-weight: bold;
	cursor: pointer;
	transition: color 0.3s ease;
}

.close:hover {
	color: #333;
}

@media (max-width: 768px) {
	.golf-day-gallery {
		grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
		gap: 15px;
	}
	
	.golf-day-heading h1 {
		font-size: 2rem;
	}
	
	.modal-content {
		max-width: 95%;
		max-height: 95%;
		padding: 15px;
	}
}

/*contact page*/

/* Contact Page Specific Styles */

/* Google Maps Section */
.google-maps {
	width: 100%;
	margin-bottom: 40px;
}

.google-maps iframe {
	width: 100%;
	height: 400px;
	border: none;
	filter: saturate(0.8);
}

/* Contact Section */
.contact-section {
	padding: 60px 20px;
	background: #f9f9f9;
}

.contact-container {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: start;
}

/* Contact Info Column */
.contact-info {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.logo-hybrid-agri {
	text-align: center;
	margin-bottom: 40px;
}

.logo-hybrid-agri img {
	max-width: 70%;
	height: auto;
}

.contact-details {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	background: #f8f8f8;
	border-radius: 8px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #14600c;
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.contact-icon:hover {
	background: #229915;
}

.contact-icon a {
	color: white;
	text-decoration: none;
	font-size: 24px;
}

.contact-text h4 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #14600c;
	margin: 0 0 8px 0;
	font-family: 'Raleway', sans-serif;
}

.contact-text p {
	font-size: 1rem;
	color: #666;
	margin: 0;
	line-height: 1.5;
}

/* Get In Touch Column */
.get-in-touch {
	background: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.get-in-touch h2 {
	font-size: 2.5rem;
	color: #14600c;
	font-family: 'Raleway', sans-serif;
	margin-bottom: 20px;
	text-align: center;
}

.get-in-touch p {
	font-size: 1.1rem;
	color: #666;
	line-height: 1.8;
	margin-bottom: 40px;
	text-align: center;
}

.business-hours {
	background: #e9f5ea;
	padding: 30px;
	border-radius: 8px;
	border-left: 4px solid #14600c;
}

.business-hours h3 {
	font-size: 1.5rem;
	color: #14600c;
	font-family: 'Raleway', sans-serif;
	margin-bottom: 15px;
}

.business-hours p {
	font-size: 1rem;
	color: #333;
	line-height: 1.6;
	margin: 0;
	text-align: left;
}

/* Meet The Team Section */
.team-heading {
	padding: 80px 20px 40px;
	text-align: center;
	background: #fff;
}

.team-heading h1 {
	font-size: 2.5rem;
	color: #14600c;
	font-family: 'Raleway', sans-serif;
	margin: 0;
}

.card-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 80px;
}

.card {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.card .content {
	padding: 25px;
	text-align: center;
}

.card .content h2 {
	font-size: 1.4rem;
	color: #14600c;
	font-family: 'Raleway', sans-serif;
	margin: 0 0 10px 0;
}

.card .content p {
	font-size: 1rem;
	color: #666;
	margin: 0;
	font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
	.contact-container {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.contact-info,
	.get-in-touch {
		padding: 30px 20px;
	}
	
	.google-maps iframe {
		height: 300px;
	}
	
	.contact-item {
		flex-direction: column;
		text-align: center;
		gap: 15px;
	}
	
	.contact-text h4 {
		font-size: 1.1rem;
	}
	
	.contact-text p {
		font-size: 0.9rem;
	}
	
	.get-in-touch h2 {
		font-size: 2rem;
	}
	
	.get-in-touch p {
		font-size: 1rem;
	}
	
	.team-heading h1 {
		font-size: 2rem;
	}
	
	.card-container {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 20px;
	}
	
	.card .content h2 {
		font-size: 1.2rem;
	}
	
	.card .content p {
		font-size: 0.9rem;
	}
}

@media (max-width: 480px) {
	.contact-section {
		padding: 40px 15px;
	}
	
	.contact-info,
	.get-in-touch {
		padding: 25px 15px;
	}
	
	.google-maps iframe {
		height: 250px;
	}
	
	.contact-icon {
		width: 50px;
		height: 50px;
	}
	
	.contact-icon a {
		font-size: 20px;
	}
	
	.get-in-touch h2 {
		font-size: 1.8rem;
	}
	
	.business-hours {
		padding: 20px;
	}
	
	.business-hours h3 {
		font-size: 1.3rem;
	}
	
	.team-heading {
		padding: 60px 15px 30px;
	}
	
	.card-container {
		padding: 0 15px 60px;
	}
}


/*OUR SOLUTIONS*/

.hr-heading {
	padding: 50px;
	justify-content: center;
	text-align: center;
}

.hr-heading h2{
	padding-top: 15px;
	font-family: 'Raleway', sans-serif;
	font-size: 3.5vw;
	color: #14600c;
}


.container-logos {
	position: relative;
	min-height: 100vh;
	background: #f7f4f4;
}

.hricon {
	animation-name: fadeIn;
	animation-duration: 3.5s;
	display: flex;
	justify-content: center;
	margin-top: 2%;
	margin-bottom: 2%;
	margin-top: auto;
	margin-bottom: a
  }
  
  @keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; }
  }
  

.container-logos .logo-container {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: center;
	padding:5px;	
	color: #ffffff;
	padding-bottom: 25px;
}

.container-logos .logo-container .image {
	height: 250px;
	width: 350px;
	border: 10px solid #fff;
	box-shadow: 0 5px 15 rgba (0,0,0,1);
	overflow:hidden;
	cursor:pointer;
	background-color:#fff;
}
.container-logos .logo-container .image img {
 height: 100%;
 width: 100%;
 object-fit: contain;
transition: .2s linear;
}
.container-logos .logo-container .image:hover img {
	transform: scale(1.5);
}


/*MEET THE TEAM*/

.team-heading h1{
	padding: 5%;
	justify-content: center;
	text-align: center;
	font-size:2vw ;
	color:#14600c;
}

.card-container{
	display: flex;
	justify-content: space-evenly;
	flex-wrap: wrap;
	margin-top: 3%;
}

.card {
	width: 20%;
	background-color: #f3f3f3;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
	margin-bottom: 3%;
}

.card img{
	width: 100%;
	max-height: 200px;
	object-fit: cover;
	margin-bottom: 2%;
}

.content {
	padding: 3%;
	color:#11952c;
}
.content h2 {
	font-size: 1.8vw;
	margin-bottom: 10px;
}

.content p {
	font-size: 1.5vw;
	margin-bottom: 2%;
}

/*Our Field days*/

.FieldDaysHeading {
	padding-top: 25px;
	font-family: 'Raleway', sans-serif;
	font-size: 2.5vw;
	color: #14600c;
	text-align: center;
	padding: 10px;
	margin-top: 10px;
}

.FieldDaysHeading p{
font-size: 1.25vw;
font-family: 'Raleway', sans-serif;
width: 50%;
margin: auto;
padding: .5%;
font-weight: 500;
}

.fieldHeading h2 {
	margin: auto;
	padding: 20px;
	padding-top: 25px;
	font-family: 'Raleway', sans-serif;
	font-size: 2vw;
	color: #ac4f11;
	text-align: center;
	padding: 10px;
	margin-top: 5px;
}

.fieldHeading h3{
	margin: auto;
	padding: 20px;
	padding-top: 15px;
	font-family: 'Raleway', sans-serif;
	font-size: 1.8vw;
	color: #167c20;
	text-align: center;
	padding: 10px;
	margin-top: 5px;
	color: #ffffff;
	border: 1px solid green;
	background-color: #094511;
    border-radius: 5px;
    padding: 10px 20px;

            
}

.fieldHeading p{
	margin: auto;
	padding: 15px;
	padding-top: 15px;
	font-family: 'Raleway', sans-serif;
	font-size: 1.6vw;
	font-weight: 600;
	color: #ac4f11;
	text-align: center;
	padding: 10px;
}

.dateOfFieldDay{
	margin: auto;
	padding: 15px;
	padding-top: 15px;
	font-family: 'Raleway', sans-serif;
	font-size: 1.6vw;
	font-weight: 550;
	color: #11ac16;
	text-align: center;
	padding: 10px;
}

.fieldDaysWrapper {
	position: relative;
	min-height: 75vh;
	background: #fff;
}


.fieldDaysWrapper .fieldaysBox {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
	padding:5px;	
}

.fieldDaysWrapper .fieldaysBox .fieldaysimage {
	height: 300px;
	width: 400px;
	border: 10px solid #fff;
	box-shadow: 0 5px 15 rgba (0,0,0,1);
	overflow:hidden;
	cursor:pointer;
}
.fieldDaysWrapper .fieldaysBox .fieldaysimage img {
 height: 100%;
 width: 100%;
 object-fit:cover;
transition: .2s linear;
}
.fieldDaysWrapper .fieldaysBox .fieldaysimage:hover img {
	transform: scale(1.5);
}







/*FOOTER*/

.section-footer {
  width: 100%;
  display: inline-block;
  background: #847f7f;
  height: 30vh;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  text-decoration: underline;
  padding-top: 2%;;
}

.footer-distributed{
	background: #cecfce;
	box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.12);
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	font: bold 16px sans-serif;
	padding: 20px 20px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
	display: inline-block;
	vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left{
	width: 40%;
}

/* The company logo */

.footer-distributed h3{
	color:  #ffffff;
	font: normal 36px 'Open Sans', cursive;
	margin: 0;
}

.footer-distributed h3 span{
	color:  rgb(255, 255, 255);
}

/* Footer links */

.footer-distributed .footer-links{
	color:  #ffffff;
	margin: 10px 0 8px;
	padding: 2%;
}

.footer-distributed .footer-links a{
	display:inline-block;
	line-height: 1.8;
  font-weight:400;
	text-decoration: none;
	color:  inherit;
	padding-left: 30px;
}

.footer-distributed .footer-company-name{
	color:  #ffffff;
	font-size: 14px;
	font-weight: normal;
	margin: 0;
	padding-left: 30px;
}

/* Footer Center */

.footer-distributed .footer-center{
	width: 35%;
}

.footer-distributed .footer-center i{
	background-color:  #7f7f7f;
	color: #ffffff;
	font-size: 25px;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	text-align: center;
	line-height: 42px;
	margin: 10px 15px;
	vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
	font-size: 17px;
	line-height: 38px;
}

.footer-distributed .footer-center p{
	display: inline-block;
	color: #ffffff;
  font-weight:400;
	vertical-align: middle;
	margin:0;
}

.footer-distributed .footer-center p span{
	display:block;
	font-weight: normal;
	font-size:14px;
	line-height:2;
}

.footer-distributed .footer-center p a{
	color:  rgb(250, 251, 251);
	text-decoration: none;;
}

.footer-distributed .footer-links a:before {
  content: "|";
  font-weight:300;
  font-size: 20px;
  left: 0;
  color: #fff;
  display: inline-block;
  padding-right: 5px;
}

.footer-distributed .footer-links .link-1:before {
  content: none;
}

/* Footer Right */



/* If you don't want the footer to be responsive, remove these media queries */

@media (max-width: 880px) {

	.footer-distributed{
		font: bold 14px sans-serif;
	}

	.footer-distributed .footer-left,
	.footer-distributed .footer-center,
	.footer-distributed .footer-right{
		display: block;
		width: 100%;
		margin-bottom: 40px;
		text-align: center;
	}

	.footer-distributed .footer-center i{
		margin-left: 0;
	}

}


