:root {
    --primary-color: #4CAF50;
    --secondary-color: #388E3C;
    --accent-color: #8BC34A;
    --dark-color: #2E7D32;
    --light-color: #C8E6C9;
    --text-color: #333;
    --light-text: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

.navbar {
    background-color: #fec253;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    /* padding: 15px 0; */
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255,255,255,0.95);
}

.navbar-brand {
    font-weight: 700;
    color: var(--dark-color);
    font-size: 1.8rem;
}

.navbar-brand img {
    /* height: 40px; */
    margin-right: 10px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: var(--light-color);
    color: var(--dark-color);
}

.hero-section {
   
    background-size: cover;
    background-position: center;
    color: white;
    
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.section-title {
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background: var(--accent-color);
    bottom: -10px;
    left: 0;
}

.feature-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-weight: 600;
    color: var(--dark-color);
}

.about-section {
    background-color: #f9f9f9;
    position: relative;
    overflow: hidden;
}

.about-section:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--light-color);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: 0.5;
}

.about-section:after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--light-color);
    border-radius: 50%;
    bottom: -100px;
    left: -100px;
    opacity: 0.5;
}

.product-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
    margin-bottom: 30px;
    border: none;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-img {
    height: 200px;
    object-fit: cover;
}

.product-title {
    font-weight: 600;
    color: var(--dark-color);
}

.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    padding: 30px;
    margin: 15px;
    background: white;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 600;
    color: var(--dark-color);
}

.contact-info {
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.2s;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

/* Animations */
.animate-up {
    animation: fadeInUp 1s ease;
}

.animate-left {
    animation: fadeInLeft 1s ease;
}

.animate-right {
    animation: fadeInRight 1s ease;
}

.animate-delay-1 {
    animation-delay: 0.2s;
}

.animate-delay-2 {
    animation-delay: 0.4s;
}

.animate-delay-3 {
    animation-delay: 0.6s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 150px 0 100px;
}

.carousel {
    position: relative;
}

.carousel-indicators {
    bottom: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border: none;
    transition: all 0.3s;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s;
}

.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
    opacity: 1;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev-icon, 
.carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

 /* Add these styles to your existing CSS */
 .why-choose-us {
    background-color: #fec253;
    position: relative;
    overflow: hidden;
}

.why-choose-us:before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: var(--light-color);
    border-radius: 50%;
    top: -150px;
    right: -150px;
    opacity: 0.3;
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    transform: scale(1);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-bg {
    background-color: rgba(76, 175, 80, 0.2);
    transform: scale(1.1);
}

.feature-icon {
    position: relative;
    font-size: 2rem;
    color: var(--primary-color);
    line-height: 80px;
}

.feature-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-text {
    color: #666;
    margin-bottom: 20px;
}

.feature-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 25px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
}

.feature-progress {
    margin-top: 25px;
}

.progress-item {
    margin-bottom: 15px;
}

.progress-label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
}

.progress {
    height: 8px;
    border-radius: 4px;
    background-color: #f0f0f0;
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 4px;
}

.yield-comparison {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 200px;
    margin-top: 25px;
}

.yield-item {
    text-align: center;
    margin: 0 15px;
    width: 80px;
}

.yield-bar {
    width: 100%;
    border-radius: 8px 8px 0 0;
    position: relative;
    transition: height 1s ease;
}

.our-yield {
    background-color: var(--primary-color);
}

.avg-yield {
    background-color: #ddd;
}

.yield-value {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    font-weight: 600;
}

.yield-label {
    display: block;
    margin-top: 10px;
    font-size: 0.9rem;
}

.trust-indicators {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.trust-item {
    text-align: center;
    padding: 10px 20px;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.trust-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .trust-indicators {
        flex-direction: column;
    }
    
    .trust-item {
        margin-bottom: 20px;
    }
    
    .yield-comparison {
        height: 150px;
    }
    
    .yield-item {
        width: 60px;
        margin: 0 10px;
    }
}

.hover-zoom {
    transition: transform 0.3s ease;
}
.hover-zoom:hover {
    transform: scale(1.02);
}
.hover-lift {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}
.bg-soft-primary {
    background-color: rgba(25, 135, 84, 0.05);
}

.hover-lift {
    transition: all 0.25s ease;
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.1) !important;
}
.product-img {
    transition: transform 0.5s ease;
}
.product-card:hover .product-img {
    transform: scale(1.05);
}
   
.cta-compact {
    height: 250px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cta-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-text {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 20px;
    max-width: 500px;
}

.cta-btn {
    background: white;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: fit-content;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    background: #f8f8f8;
}

.cta-btn i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.cta-graphic {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    opacity: 0.9;
    transform: translateX(10%);
    transition: all 0.5s ease;
}

.cta-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.1) 0%, transparent 30%);
}

@media (max-width: 768px) {
    .cta-compact {
        height: 220px;
        text-align: center;
    }
    
    .cta-content {
        padding: 20px;
        align-items: center;
    }
    
    .cta-graphic {
        opacity: 0.4;
        transform: translateX(30%);
    }
    
    .cta-text {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.cta-compact:hover {
    animation: pulse 2s ease infinite;
}

.testimonials-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.section-tag {
    display: inline-block;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.testimonial-slider-container {
    position: relative;
    /* padding: 0 60px; */
}

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    gap: 30px;
    padding-bottom: 20px;
}

.testimonial-slide {
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    min-width: 0;
}

@media (max-width: 992px) {
    .testimonial-slide {
        flex: 0 0 100%;
    }
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    padding: 30px;
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.rating {
    color: #FFC107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text:before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 50px;
    color: rgba(76, 175, 80, 0.1);
    font-family: Georgia, serif;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid rgba(76, 175, 80, 0.2);
    margin-right: 15px;
    object-fit: cover;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border: none;
    cursor: pointer;
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-control:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Hide scrollbar for cleaner look */
.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.faq-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background-color: rgba(76, 175, 80, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 20px 60px 20px 25px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 500px;
}

.faq-toggle {
    position: absolute;
    right: 25px;
    top: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    color: var(--primary);
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    background-color: var(--primary);
    color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 15px 50px 15px 20px;
        font-size: 1rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-up {
    animation: fadeIn 0.6s ease forwards;
}

.back-to-top{
    position: fixed;
    left: 0;
    bottom: 10px;
}