:root {
    --primary-color: #2C5F2D;
    --secondary-color: #97BC62;
    --accent-color: #FF8811;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-dark: #333333;
    --text-light: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}
.fixed-icon {
    width: 100px;
    /*top:90%;*/
    z-index: 22222;
    position: fixed;
    top: 84%;
    right: 10px;
    font-size: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
    /*color:green;*/
    /*background-color:green;*/
}
.navbar {
    background: rgba(44, 95, 45, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
/*.fw-small {
    width: 40px;
    border-radius: 50%;
}*/
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    transition: all 0.3s ease;
}

    .navbar-brand:hover {
        color: var(--secondary-color);
        transform: scale(1.05);
    }

    .navbar-brand i {
        margin-right: 0.5rem;
        color: var(--secondary-color);
    }

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}
.btn-submite {
    background-color: #38b667;
    color: #ffffff;
    padding: 10px 20px;
}
    .btn-submite:hover {
        background-color: #3b8b59;

    }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

    .nav-link:hover {
        color: var(--secondary-color);
    }

        .nav-link:hover::after {
            width: 80%;
        }

.fa-small {
    width: 30px;
    border-radius: 50%;
}
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-image: linear-gradient(135deg, rgba(44, 95, 45, 0.9), rgba(151, 188, 98, 0.8)), url('../Images/home.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

    .hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        line-height: 1.2;
    }

    .hero-content .lead {
        font-size: 1.3rem;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 136, 17, 0.3);
}

    .btn-primary:hover {
        background-color: #e67700;
        border-color: #e67700;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 136, 17, 0.4);
    }

.btn-outline-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-light:hover {
        background-color: #ffffff;
        color: var(--primary-color);
        transform: translateY(-2px);
    }

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        color: #ffffff;
        transform: translateY(-2px);
    }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: var(--accent-color);
        border-radius: 2px;
    }

.feature-box {
    padding: 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

    .feature-box:hover {
        background-color: var(--light-color);
        transform: translateY(-5px);
    }

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.stats-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
}

    .stats-section .counter {
        font-size: 3rem;
        margin-bottom: 0.5rem;
    }

.product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

.product-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.pispices {
    background-image: url("../Images/spices.jpg")
}
.piseeds {
    background-image: url("../Images/seeds.jpg")
}
.piherbs {
    background-image: url("../Images/herbs.jpg")
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
}

.product-content {
    padding: 2rem;
}

    .product-content h4 {
        color: var(--primary-color);
        margin-bottom: 1rem;
        font-weight: 700;
    }

.btn-custom {
    background-color: #38b667;
    
}

    .btn-custom:hover {
        background-color: #3b8b59;
    }
.products-section {
    padding: 80px 0;
}

    .products-section h2 {
        color: var(--primary-color);
        font-weight: bold;
        text-align: center;
        margin-bottom: 50px;
    }

.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(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .product-card img {
        height: 250px;
        object-fit: cover;
        width: 100%;
    }

    .product-card .card-body {
        padding: 20px;
    }

    .product-card .card-title {
        color: var(--primary-color);
        font-weight: bold;
        font-size: 1.3rem;
    }

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: forestgreen;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}
.service-card {
    padding: 2rem;
    border-radius: 15px;
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        background: var(--light-color);
    }

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.contact-info .contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-form {
    background: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .form-control:focus,
    .form-select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(44, 95, 45, 0.15);
    }

.footer {
    background: var(--dark-color);
    color: #ffffff;
}

    .footer a {
        color: #adb5bd;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /*transition: all 0.3s ease;*/
    font-size: 1.2rem;
}

    .social-links a:hover {
        background: var(--primary-color);
        color: #ffffff;
        /*transform: translateY(-3px);*/
    }

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .lead {
        font-size: 1rem;
    }

    .btn-lg {
        padding: 0.5rem 1.5rem;
        font-size: 1rem;
    }

    .product-image {
        height: 200px;
    }
}
footer {
    background: #212529;
    color: white;
    padding: 40px 0 20px;
}

    footer a {
        color: #d4af37;
        
        text-decoration: none;
    }

        footer a:hover {
            color: #c49b2e;
        }
