/* Header*/

.top-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 18px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fef9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

/* Hidden when scrolling down */
.top-header.hide {
    transform: translateY(-100%);
}

/* Visible state with separation */
.top-header.show {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.top-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Company name / logo */

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0rem;
}


.logo-icon {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
}


.logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    line-height: 1.1;
}

.logo-text-container a {
    text-decoration: none;
}

.logo-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.735);
    letter-spacing: 0.02em;
    margin: 0;
    padding: 0;
    line-height: 1;
}

.logo-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #5D8A3A;
    letter-spacing: 0.05em;
    margin: 0;
    padding: 0;
    margin-top: 2px;
    line-height: 1;
}



/*Side Nav */
.side-nav {
    position: fixed;
    top: 0;
    right: -360px;
    width: 320px;
    height: 100%;
    background: linear-gradient(to bottom right, #f0fdf4, white);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
    padding: 24px;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
}

.side-nav.open {
    right: 0;
}

/*Mobile Layout */
@media (max-width: 768px) {
    .side-nav {
        width: 100%;
        right: -100%;
    }

    .logo {
        font-size: 16px;
    }
}


/* Hero Section */
.hero {
    padding: 8rem 1rem 4rem;
    background: white;

}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    border-radius: 1.5rem;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #9ca3af;
    text-align: center;

}

.hero-image svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.hero-carousel {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

/* Trust Indicators */
.trust-section {
    padding: 3rem 1rem;
    background: white;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #15803d;
    margin-bottom: 0.5rem;
}

.trust-item-text {
    color: #6b7280;
}

/* Features Section */
.features {
    padding: 4rem 1rem;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b7280;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: #dcfce7;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #15803d;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
}

/* Home About Section Styles */
.home-about {
    padding: 6rem 1rem;
    background-color: #f8fef9;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Typography & Content */
.section-badge {
    display: inline-block;
    color: #15803d;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    background: #dcfce7;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-content p {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Image Wrapper */
.about-image-wrapper {
    position: relative;
    height: 450px;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

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

/* Placeholder for when image has not loaded or missing */
.about-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.about-placeholder svg {
    width: 80px;
    height: 80px;
}

/* CTA Section */
.cta {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: white;
}

.cta-container {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #111827;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #6b7280;
}

.btn-cta {
    background: #15803d;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-cta:hover {
    background: #166534;
    transform: translateY(-1px);
}

/* Footer */
footer {
    background: #090c12e2;
    color: white;
    padding: 3rem 1rem;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section div {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.footer-section a{
    text-decoration: none;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9ca3af;
}


/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: #9ca3af;
}

.social-links a:hover {
    background: #15803d;
    color: white;
    transform: translateY(-3px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

/* Contact Items with Icons */
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #9ca3af;
}

.contact-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #9ca3af;
}

.contact-item span {
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-wrapper {
        height: 350px;
        order: -1;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .trust-container {
        grid-template-columns: 1fr;
    }

    .footer-container{
        grid-template-columns: 1fr;
    }
}