/* Global styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* Navbar styles */
.navbar {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #948f8fae;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    border-radius: 8px;
    z-index: 1000;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.navbar img {
    height: 40px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-list a:hover {
    color: #007BFF;
}

/* Hero section styles */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(to bottom, #f0f8f4, #e0ebe8);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    animation: slideIn 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.hero h1 {
    font-size: 2.8rem;
    color: #087321;
    font-weight: bold;
    margin: 0;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    color: #000000;
    margin: 10px 0;
}

.hero p strong {
    font-size: 1.3rem;
    color: #a9a9a9;
}

.hero img {
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeIn 2s ease-out forwards;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 20px);
        padding: 10px 15px;
    }

    .navbar img {
        height: 35px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        overflow: hidden;
        margin: 0;
        padding: 10px 0;
    }

    .nav-list.open {
        display: flex;
    }

    .nav-list li {
        margin: 10px 0;
    }

    .nav-list a {
        padding: 10px 20px;
        width: 100%;
        display: block;
        color: #333;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}


/* Features Section */
.features {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.features-content {
    max-width: 900px;
    margin: 0 auto;
}

.features h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
}

.features p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.features-buttons .btn {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.features-buttons .btn-primary {
    background-color: #3cc14e;
    color: white;
    border: none;
}

.features-buttons .btn-primary:hover {
    background-color: #5bd06b;

}

.features-buttons .btn-secondary {
    background-color: #ffffff2c;
    color: rgb(127, 127, 127);
    border: none;
}

.features-buttons .btn-secondary:hover {
    background-color: #5a6268;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.feature-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.feature-item i {
    font-size: 2.5rem;
    color: #1c2ecd;
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .features-list {
        flex-direction: column;
        align-items: center;
    }

    .feature-item {
        width: 100%;
        max-width: 320px;
    }
}


/* Image Slider */
.image-slider {
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    position: relative;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 400%; /* 4 images, so 400% */
}

.slide {
    width: 100%;
    flex-shrink: 0;
}

.slide img {
    width: 400px;
    height: 150px;
    display: block;
    border-radius: 10px;
}

/* Philosophy Section */
.philosophy {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy h2 {
    font-size: 2.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
}

.philosophy h3 {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 20px;
}

.philosophy p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.philosophy-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 30px;
}

.philosophy-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.philosophy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.philosophy-item i {
    font-size: 2.5rem;
    color: #1c2ecd;
    margin-bottom: 15px;
}

.philosophy-item h4 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.philosophy-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

.btn-primary {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #3cc14e;
    color: white;
    border: none;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #63d472;
}

/* Responsive Design */
@media (max-width: 768px) {
    .philosophy-features {
        flex-direction: column;
        align-items: center;
    }

    .philosophy-item {
        width: 100%;
        max-width: 320px;
    }
}

/* Remedies Section */
.remedies {
    background-color: #f3f3f3;
    padding: 60px 20px;
    text-align: center;
}

.remedies-content {
    max-width: 1200px;
    margin: 0 auto;
}

.remedies h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.remedies p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.remedies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.remedy-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.remedy-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.remedy-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.remedy-item h4 {
    font-size: 1.3rem;
    color: #333;
    padding: 15px;
    background-color: #f9f9f9;
}

.btn-primary {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    background-color: #007BFF;
    color: white;
    border: none;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .remedies-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}



/* Testimonials Section */
.testimonials {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.testimonial-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.testimonial-item p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.stars {
    color: #FFD700;
    margin-bottom: 10px;
}

.stars i {
    font-size: 1.2rem;
}

.testimonial-item h4 {
    font-size: 1rem;
    color: #333;
    font-weight: bold;
}


/* Herbal Journey Section */
.herbal-journey {
    background: linear-gradient(to right, #6ABF4B, #A8E063);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.herbal-journey h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.herbal-journey p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.herbal-journey .journey-buttons {
    margin-top: 20px;
}

.herbal-journey .btn {
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    color: #6ABF4B;
    background-color: #fff;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, background-color 0.3s;
}

.herbal-journey .btn:hover {
    background-color: #e7ffe3;
    transform: scale(1.05);
}

/* Footer Section */
.footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
    font-size: 0.9rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.footer-content p {
    margin: 0;
    line-height: 1.5;
}

.social-media {
    display: flex;
    gap: 15px;
}

.social-media a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #6ABF4B; /* Matches the herbal theme */
}

.testimonial-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin: 20px;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #ddd;
}

.stars {
    color: #f4c430;
    font-size: 18px;
}

