:root {
    --primary-color: #0d53a3;
    --secondary-color: #f26b35;
    --accent-color: #f26b35;
}
.hero-section {
    /* background: linear-gradient(135deg, rgba(13, 83, 163,0.95), rgba(107,165,72,0.95)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%236ba548" width="1200" height="600"/></svg>'); */
    /* background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%236ba548" width="1200" height="600"/></svg>');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center; */

    background: linear-gradient(rgba(13, 83, 163, 0.8), rgba(76, 175, 80, 0.8)), 
                url('images/flerimo/impex-banner.jpg') right/cover;
    color: white;
    padding: 10px 0 10px;
    text-align: center;
    height: 380px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    padding-top: 40px;
}

.hero-section p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-custom {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: 500;
    border: none;
    transition: all 0.3s;
}

.btn-custom:hover {
    background-color: #f57c00;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,152,0,0.4);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 15px;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
  
}

 

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--secondary-color);
}

.feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.product-image {
    height: 200px;
    background: linear-gradient(135deg, #2d5016, #6ba548);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.contact-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
}

.contact-info i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
}
@media screen and (max-width: 767px) {
  .hero-section h1 {
      font-size: 2rem; 
      padding-top: 0px;
  }
  .hero-section p { 
    margin-bottom: 1rem;    
    }
 
}