:root {
    --primary-green: #2d7a3e;
    --light-green: #2d7a3e;
    --cream: #fef8f0;
    --earth-brown: #8b6f47;
}
    
.hero-section-agro {
    background: linear-gradient(rgba(13, 83, 163, 0.8), rgba(76, 175, 80, 0.8)), 
                url('images/flerimo/agro-banner.jpg') right/cover;
    color: white;
    /* padding: 120px 0; */
    text-align: center;
    height: 380px;
}

.hero-section-agro h1 {
    font-size: 3.5rem; 
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    padding-top: 40px;
}

.hero-section-agro .tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-custom {
    background: white;
    color: var(--primary-green);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s;
    border: none;
}

.btn-custom:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: var(--primary-green);
    text-decoration: none;
}

.product-link { 
    color: var(--primary-green); 
    font-weight: 500; 
    transition: all 0.3s; 
    text-decoration: none;
}

.product-link:hover { 
    transform: translateY(-2px); 
    color: var(--primary-green);
    text-decoration: none;
}

.section-title {
    color: var(--primary-green); 
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--light-green);
}

.feature-card {
    padding: 2rem;
    border-radius: 15px;
    background: white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    height: 100%;
    border: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}



.about-section {
    background: var(--cream);
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.value-card:hover {
    transform: scale(1.05);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.product-section {
    background: #f8f9fa;
}

.product-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    background: white;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: white;
    padding: 60px 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fff;
}

.cta-section {
    background: var(--primary-green);
    color: white;
    padding: 80px 0;
    text-align: center;
}
    
.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--light-green);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin: 0 5px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.owl-carousel .owl-item {
    padding: 20px 0;
}

.main-navigation ul li a:focus, .main-navigation ul li a:hover, .main-navigation ul li.current-menu-item a,  .main-navigation ul li.current_page_item a {
	opacity: 1;
	color: #fff;
	background-color: var(--primary-green) !important;
}

@media screen and (max-width: 767px) {
  .hero-section-agro h1 {
      font-size: 2rem; 
      padding-top: 20px;
  }
}