 body {


     background-color: #f8f8f8;
 }

 .hero {
     background: url('../images/crops3.jpg') center/cover no-repeat;
     height: 90vh;
     display: flex;
     align-items: flex-end;
     /* Align content to the bottom initially */
     justify-content: center;
     text-align: center;
     color: white;
     position: relative;
     padding: 0 20px;
     overflow: hidden;
     /* Prevents any overflow when the hero text moves */
 }

 .hero-text {
     background: rgba(0, 0, 0, 0.6);
     border: 1px solid rgba(255, 255, 255, 0.6) !important;
     padding: 30px 40px;
     border-radius: 5px;
     position: absolute;
     bottom: 10px;
     left: 50%;
     transform: translateX(-50%);
     width: 90%;
     max-width: 1200px;
     margin-bottom: 20px;
     transition: transform 0.5s ease-out;
     /* Smooth transition for the movement */
 }

 /* Additional styling for when the hero text is centered */
 .hero-text.scrolled {
     transform: translateX(-50%) translateY(-50%);
     /* Moves the text to the center */
 }

 label {
     color: #43a047 !important;

 }

 .hero h1 {
     font-size: 3rem;
     margin: 0;
 }

 .hero p {
     font-size: 1.5rem;
 }

 /* @keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}About Section */
 .about {
     text-align: center;
     padding: 50px;
     background: #3b2f2f;
     opacity: 0.8;
     color: white;
 }

 .about h2 {
     font-size: 2rem;
 }

 .about p {
     font-size: 1.2rem;
     width: 70%;
     margin: auto;
 }

 /* Image Gallery */
 .gallery {
     text-align: center;
     padding: 50px;
 }

 .gallery h2 {
     font-size: 2rem;
 }

 .gallery-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 15px;
 }

 .gallery-container img {
     width: 300px;
     height: 200px;
     object-fit: cover;
     border-radius: 5px;
     opacity: 0;
     transform: translateY(20px);
     transition: opacity 1.5s ease, transform 1.5s ease;
 }





 .underline {
     display: inline-block;
     border-bottom: 3px solid #e6b400;
     padding-bottom: 5px;
 }

 /* Image Grid */
 .grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     padding: 40px;
 }

 .grid-item {
     position: relative;
     overflow: hidden;
     border-radius: 10px;
 }

 .grid-item img {
     width: 100%;
     height: auto;
     display: block;
     transition: transform 0.5s;
 }

 .grid-item:hover img {
     transform: scale(1.1);
 }

 .caption {
     position: absolute;
     bottom: 0;
     width: 100%;
     background: rgba(0, 0, 0, 0.7);
     color: #e6b400;
     padding: 10px 0;
     font-size: 1.2rem;
 }

 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes slideUp {
     from {
         transform: translateY(20px);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }



 /* Vision & Mission Container */
 .vision-container {
     max-width: 100%;
     margin: 0px auto;
     padding: 20px;
     background: #fff;
     border-radius: 4px;
     box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
 }

 .vision-header {
     text-align: center;
     margin-bottom: 40px;
 }

 .vision-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #333;
     margin-bottom: 20px;
 }

 .mission-text {
     font-size: 1.2rem;
     color: #666;
     line-height: 1.6;
 }

 .vision-pillars {
     display: flex;
     justify-content: space-between;
     gap: 30px;
     flex-wrap: wrap;
     text-align: center;
 }

 .pillar-item {
     background: #f9f9f9;
     padding: 30px;
     border-radius: 8px;
     width: 30%;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .pillar-item:hover {
     transform: translateY(-10px);
 }

 .pillar-item i {
     color: #3c8c4a;
     /* Custom green tone */
     margin-bottom: 20px;
 }

 .pillar-item h3 {
     font-size: 1.5rem;
     color: #333;
     margin-bottom: 15px;
 }

 .pillar-item p {
     font-size: 1rem;
     color: #555;
     line-height: 1.5;
 }



 /* General Section Styling */
 .vision-mission-section {
     background-color: #ffffff;
     /* Clean white background */
     padding: 50px 20px;
     /* Proper padding for spacing */
     text-align: center;
     max-width: 1200px;
     margin: 0 auto;
     box-sizing: border-box;
 }

 .vision-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #3c8c4a;
     /* Earthy green */
     margin-bottom: 40px;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .vision-mission-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
     margin-top: 20px;
 }

 .section-title {
     font-size: 1.8rem;
     font-weight: 600;
     color: #333;
     margin-bottom: 15px;
     text-transform: uppercase;
     letter-spacing: 1px;
     border-bottom: 2px solid #3c8c4a;
     /* Green underline for distinction */
     padding-bottom: 10px;
 }

 .vision-text,
 .mission-text {
     font-size: 1.1rem;
     color: #555;
     line-height: 1.8;
     margin-bottom: 30px;
     text-align: left;
     /* For readability */
 }

 /* Responsive Design */
 @media (max-width: 567px) {
     .vision-mission-content {
         grid-template-columns: 1fr;
         /* Stacks the sections vertically on smaller screens */
     }

     .vision-text,
     .mission-text {
         font-size: 1rem;
         /* Slightly smaller text on smaller devices */
     }

     .btn {


         padding: 5px 15px;
         /* Padding for the button */
         font-size: 85rem;
         font-weight: 300;
         border-radius: 4px;
         text-decoration: none;

     }

     .vision-pillars {
         flex-direction: column;
         align-items: center;
     }

     .pillar-item {
         width: 80%;
         margin-bottom: 20px;
     }
 }

 /* Center the "What We Do" title */
 .what-we-do-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #3c8c4a;
     /* Green color for consistency */
     text-align: center;
     /* Center-align the text */
     margin-top: 40px;
     margin-bottom: 30px;
     text-transform: uppercase;
     letter-spacing: 2px;
 }



 .underline-green {

     text-decoration: underline;
     text-decoration-color: #3c8c4a;
     /* Green color for the underline */
     text-decoration-thickness: 1px;

 }

 /* Button Styling */
 .button-container {
     text-align: center;
     /* Center align the button */
     margin-top: 40px;
     /* Add space between the pillars and the button */
 }

 .btn {
     display: inline-block !important;
     background-color: #3c8c4a !important;
     /* Green background color */
     color: white !important;
     /* White text */
     padding: 10px 20px;
     /* Padding for the button */
     font-size: 1rem;
     font-weight: 400;
     border-radius: 4px;
     text-decoration: none;
     /* Remove underline */
     text-transform: uppercase;
     /* Capitalize text */
     letter-spacing: 1px !important;
     transition: background-color 0.3s ease, transform 0.3s ease !important;
 }

 .btn:hover {
     background-color: #2a6e36;
     /* Darker green on hover */
     transform: translateY(-5px);
     /* Subtle lift effect */
 }



 /*@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/