@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto&family=Send+Flowers&display=swap');

/* Reset */
/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f0f8ff;
    /* Light water-inspired background */
    color: #333;
    /* Neutral text color */
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 10;
    background: #ffffff;
    /* Deep water blue */
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: #ffffff;
    /* Darker blue for scroll effect */
    opacity: 0.95;
    transition: all 0.3s ease;
}

/* Navbar Container */
.container-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    margin-left: 10px;
    /* Space between text and image */
    height: 60px;
    /* Adjust the height for consistency */
    width: auto;
    /* Maintain aspect ratio */
    border-radius: 5px;
    /* Rounded corners for the image */
    object-fit: contain;
    /* Ensure image scales properly */
    max-width: 100%;
    /* Ensure responsiveness */
}

/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    margin-left: auto;
}

.nav-links li {
    margin: 0 10px;
}

.nav-links a {
    text-decoration: none;
    color: #000000;
    /* White text for contrast */
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ff4000;
    /* Teal hover effect */
}

/* Hamburger Menu */
.hamburger {
    display: none;
    /* Hidden by default, shown in mobile view */
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: absolute;
    right: 20px;
    width: 30px;
    height: 24px;
}

.hamburger div {
    background-color: #2cc924;
    height: 3px;
    width: 100%;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 85%;
        right: 0;
        background: rgba(209, 209, 209, 0.6);
        width: 100%;
        text-align: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        color: #000;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
        /* Ensure it becomes visible when active */
    }

    .hamburger {
        display: flex;
        /* Display hamburger menu on small screens */
    }
}

/* Media Query for Very Small Screens */
@media (max-width: 480px) {
    .logo img {
        height: 40px;
        /* Further adjust for smaller screens */
    }

    .nav-links {
        top: 70%;
        /* Adjust dropdown position */
    }

    .nav-links a {
        font-size: 14px;
        /* Reduce text size */
    }
}






/* Hero Section */
.hero {
    position: relative;
    /* Enables the use of absolutely positioned pseudo-elements */
    background-image: url('image/fire-hose-3102240_1280.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    color: rgb(255, 255, 255);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Centers content horizontally */
    padding: 0 40px;
    z-index: 1
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: -1;
    /* Ensures the overlay is below the content */
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.hero-content h2 {
    font-size: 80px;
    margin-top: 90px;
    margin-bottom: 20px;
    font-family: "Barlow Condensed", sans-serif;
    color: #ffffff;
    /* Vibrant teal */

}

.hero-content p {
    font-size: 40px;
    margin-bottom: 20px;
    font-family: "Barlow Condensed", sans-serif;
    color: #ffffff;
}

.container1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        height: 70vh;
        /* Adjusted height for tablets */
        padding: 0 20px;
        /* Adjust padding for smaller screens */
    }

    .hero-content h2 {
        font-size: 60px;
        /* Reduced font size for smaller screens */
        margin-top: 60px;
        /* Adjust margin for better spacing */
    }

    .hero-content p {
        font-size: 24px;
        /* Reduced font size */
    }

    .container {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .logo {
        font-size: 22px;
        /* Adjusted for smaller screens */
    }

    .nav-links {
        flex-direction: column;
        /* Stack nav links vertically on tablets */
        margin-top: 20px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 18px;
        /* Slightly bigger text for readability */
    }
}

/* Medium Screens (Max-width: 768px) */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
        /* Reduced height for mobile screens */
        padding: 0 10px;
        /* Reduced padding */
    }

    .hero-content h2 {
        font-size: 50px;
        /* Adjusted font size */
    }

    .hero-content p {
        font-size: 20px;
        /* Adjusted paragraph size */
    }

    .logo {
        font-size: 20px;
        /* Smaller logo font */
    }

    .nav-links {
        flex-direction: column;
        /* Stack nav links vertically on mobile */
        margin-top: 20px;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .nav-links a {
        font-size: 16px;
        /* Smaller font size for mobile */
    }
}

/* Small Screens (Max-width: 480px) */
@media (max-width: 480px) {
    .hero {
        height: 50vh;
        /* Reduced height for very small screens */
        padding: 0 10px;
        /* Reduced padding further */
    }

    .hero-content h2 {
        font-size: 40px;
        /* Smaller font size */
    }

    .hero-content p {
        font-size: 18px;
        /* Smaller description font */
    }

    .logo {
        font-size: 18px;
        /* Even smaller logo font */
    }

    .nav-links {
        flex-direction: column;
        margin-top: 10px;
        text-align: center;

    }

    .nav-links li {
        margin: 8px 0;
        /* Reduce margin for small screens */
    }

    .nav-links a {
        font-size: 14px;
        /* Adjusted font size */
    }
}


/*  ABOUT SECTION */


/* About Section Styling (Single Image) */
.about-section {
    background-color: #ffffff;
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.about-text {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
    text-align: left;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #24d439;
    margin-bottom: 20px;
    font-weight: 700;
    border-left: 4px solid #78d98b;
    padding-left: 10px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.about-text strong {
    color: #30bc24;
}

.about-image {
    flex: 1;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
    }

    .about-image {
        margin-top: 20px;
    }
}



.mission-vision-section {
    background: #8cb899;
    /* Blue gradient */
    color: #fffbfb;
    /* White text */
    padding: 80px 20px;
    text-align: center;
}

.containers {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

/* Mission & Vision Box */
.mission-vision-box {
    background: rgb(224, 227, 224);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000000;
    /* Text color for dark background */
    border-radius: 15px;
    padding: 30px 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.mission-vision-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Icons */
.icon-containers {
    width: 60px;
    height: 60px;
    background: rgba(188, 107, 107, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.icon {
    font-size: 2rem;
    color: #54ac51;
}

/* Titles */
.title {
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 1px;
}

/* Description */
.descriptions {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #000000;
    margin: 0;
    font-family: 'Roboto';
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }
}


/* Flex container for split content */
.split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

/* Responsive design for .split */
@media (max-width: 768px) {
    .split {
        flex-direction: column;
        /* Stack content vertically on smaller screens */
        gap: 20px;
        /* Add spacing between stacked items */
    }
}

/* Slider Subheading */
.slider-subheading {
    font-size: 3rem;
    /* Default large size */
    font-weight: bold;
    color: #31855b;
    text-align: center;
    margin: 20px 0;
    letter-spacing: 1.2px;
    line-height: 1.4;
    font-family: "Barlow Condensed", cursive;
}

/* Responsive Slider Subheading */
@media (max-width: 768px) {
    .slider-subheading {
        font-size: 2rem;
        /* Reduce size for smaller screens */
    }
}

/* Main Slider Section */
.slider-section {
    display: flex;
    flex-direction: column;
    /* Ensure content stacks on smaller screens */
    justify-content: center;
    align-items: center;
    height: 100vh;
    /* Full viewport height */
    background-color: #ffffff;
    padding: 30px 10px;
    /* Reduce horizontal padding for mobile */
}


.slider-header {
    margin-bottom: 30px;
}

.slider-heading {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
}

.slider-heading::after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: #ff6f00;
    /* Orange accent */
    display: block;
    margin: 10px auto 0;
    border-radius: 5px;
}

/* Slider Container */
.slider-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Slider */
.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    height: 400px;
    position: relative;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Product Info */
.product-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    max-width: 80%;
}

.product-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product-price {
    font-size: 18px;
    color: #ff6f00;
    /* Highlighted orange price */
}

/* Navigation Buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(44, 62, 80, 0.7);
    /* Dark navy */
    color: white;
    font-size: 30px;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover,
.next:hover {
    background-color: #ff6f00;
    /* Orange hover */
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-heading {
        font-size: 28px;
        /* Smaller heading on mobile */
    }

    .slider-container {
        max-width: 90%;
        /* Reduce width for smaller screens */
    }

    .prev,
    .next {
        font-size: 20px;
        /* Smaller arrows on mobile */
    }

    .product-title,
    .product-price {
        font-size: 16px;
        /* Adjust product text for smaller screens */
    }
}





.benefit-container {
    padding: 20px;
    /* max-width: 1200px; */
    background-color: #2f7c22;
    /* height: 70vh; */
}

/* Title Styles */
.title1 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.2;
    text-transform: uppercase;
    color: #c9d047;
    text-align: center;
    font-family: "Montserrat", serif;
}

.title1 span {
    color: #ffcc00;
    /* Yellow highlight */
}

/* Benefit Grid */
.benefit-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
    gap: 20px;
}

.benefit-card .icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /* Ensures image scales proportionally */
}


.benefit-card {
    background: #fff;
    color: #004d00;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    width: 180px;
    text-align: center;
    padding: 20px;
    position: relative;
    transition: transform 0.3s ease-in-out;
}

.benefit-card:hover {
    transform: translateY(-10px);
}

.number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffcc00;
    color: #004d00;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 50%;
    font-size: 1.2rem;
}

.icon {
    font-size: 2.5rem;
    margin: 20px 0;
}

.description {
    font-weight: bold;
    font-size: 1rem;
    margin-top: 10px;
    color: #004d00;
}




.sections {
    text-align: center;
    font-size: 2rem;
    color: #2b8d42;
    /* Blue theme */
    margin: 1.5rem 0;
    text-transform: uppercase;
    font-family: "Montserrat", serif;
    text-align: center;

}

/* Features Container */
.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
    padding: 1rem;
    max-width: 1200px;
}

/* Feature Card */
.feature-card {
    background: #F2FFF2;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    max-width: 350px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon img {
    height: 60px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #0077b6;
    margin-bottom: 0.75rem;
}

.feature-card p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.5;
    font-family: "roboto", serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-card {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 1rem;
    }
}







/* Section Styling */
.effortless-irrigation {
    background: #f0fdf4; /* Light green */
    color: #033b1e;
    text-align: center;
    padding: 50px 20px;
    font-family: 'Arial', sans-serif;
}

.section-header h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #047857; /* Deep green */
}

.section-header p {
    font-size: 1.2rem;
    margin: 10px 0 40px 0;
    color: #065f46;
    font-family: "Roboto", serif;
    font-weight: 400;
}

/* Content Items */
.irrigation-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
    text-align: left;
    padding: 20px;
}

.irrigation-item:nth-child(even) {
    flex-direction: row-reverse;
}

.content {
    flex: 1;
    max-width: 500px;
    padding: 20px;
}

.content h2 {
    font-size: 2rem;
    color: #047857;
    margin-bottom: 10px;
}

.content p {
    font-size: 1.2rem;
    color: #444;
    font-family: "Roboto", serif;
    font-weight: 400;
}

.image {
    flex: 1;
    height: 300px; /* Default fixed height */
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    width: 100%;
}

/* Custom Background Images */
.maize .image {
    background-image: url('image/Romania\ may\ prioritize\ maize\ and\ sunflower\ deliveries\ to\ local\ market.jpeg');
}

.rice .image {
    background-image: url('image/Rice\ field\ stock\ image_\ Image\ of\ rice\,\ landscape\,\ flora\ -\ 10819507.jpeg');
}

.vegetables .image {
    background-image: url('image/_\ \(2\).jpeg');
}

@media (max-width: 768px) {
    .irrigation-item {
        flex-direction: column !important;
    }

    .content,
    .image {
        width: 100%;
        max-width: none;
        text-align: center;
    }

    .content h2 {
        font-size: 1.8rem;
    }

    /* Ensure images are larger and more visible on smaller screens */
    .image {
        height: 400px; /* Increase the height of the image on smaller screens */
        width: 100%; /* Make image fill the container */
        max-width: 100%; /* Prevent image from stretching beyond its container */
        object-fit: cover; /* Ensure image covers the div without distortion */
        object-position: center; /* Keeps the image centered */
    }
}





/* Footer Styling */
footer {
    background-color: #047857; /* Deep green background for footer */
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* Allow sections to wrap on smaller screens */
    justify-content: space-between;
    gap: 20px; /* Optional: adds spacing between the sections */
  }
  .contact-info, .social-media, .footer-legal {
    margin-bottom: 30px;
    flex: 1 1 100%; /* Make each section take full width on smaller screens */
  }
  
  .contact-info h2, .social-media h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
  }
  
  .contact-info ul, .social-media ul {
    list-style: none;
    padding: 0;
  }
  
  .contact-info li, .social-media li {
    font-size: 1rem;
    margin: 10px 0;
  }
  
  .contact-info i, .social-media i {
    margin-right: 10px;
  }
  
  .contact-info a {
    color: #fff;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  /* Social Media Links */
  .social-media ul li a {
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .social-media ul li a:hover {
    color: #ffd700; /* Gold color for hover effect */
  }
  
  /* Footer Legal Section */
  .footer-legal p {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
  }
  
  .footer-legal ul li {
    display: inline-block;
    margin: 0 10px;
  }
  
  .footer-legal ul li a {
    color: #fff;
    font-size: 1rem;
    text-decoration: none;
  }
  
  .footer-legal ul li a:hover {
    text-decoration: underline;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column; /* Stack sections vertically on small screens */
      text-align: left; /* Align text to the left for better readability */
    }
  
    .contact-info, .social-media, .footer-legal {
      margin-bottom: 20px;
      flex: 1 1 auto; /* Let sections grow based on content */
    }
  
    .contact-info ul, .social-media ul {
      padding-left: 20px;
      text-align: left;
    }
  
    .social-media ul li a {
      font-size: 1rem; /* Make social media links slightly smaller */
    }
  
    .footer-legal ul {
      text-align: center;
    }
  
    .footer-legal ul li {
      display: inline-block;
      margin: 5px 0;
    }
  
    /* Adjust footer legal links for better spacing on mobile */
    .footer-legal ul li a {
      font-size: 1rem;
      margin: 0 5px;
    }
  }
  
  @media (max-width: 480px) {
    footer {
      padding: 20px 10px;
    }
  
    .footer-container {
      padding: 0;
    }
  
    .contact-info h2, .social-media h3 {
      font-size: 1.2rem; /* Adjust header size for small screens */
    }
  
    .footer-legal p {
      font-size: 0.9rem; /* Make legal text smaller on mobile */
    }
  }
  