* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #e9f5db, #f0f7ed);
    color: #2c3e50;
    overflow-x: hidden;
}

header {
    background: linear-gradient(135deg, #88d498, #4caf50);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    animation: slideInFromTop 1s ease-in-out;
}

header nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

header nav a {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #ffd700;
    transition: width 0.3s ease;
}

header nav a:hover {
    color: #ffd700;
    transform: scale(1.1);
}

header nav a:hover::after {
    width: 100%;
}



.hero-section {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(135deg, #88d498, #c4e3cb);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    animation: fadeIn 2s ease-in-out;
}

.hero-section h1 {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: textGlowNature 3s infinite alternate;
}

.hero-section p {
    margin-top: 20px;
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1.5s ease-out;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 30px;
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, #56ab2f, #a8e063);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.cta-button:hover {
    transform: translateY(-5px);
    background: #88d498;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}



main {
    padding: 50px 20px;
}

main h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 30px;
    animation: fadeInDown 1.2s ease-in-out;
}

main h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: #4caf50;
    margin: 10px auto;
    border-radius: 2px;
}



.remedy-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    margin: 20px auto;
    max-width: 700px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: scaleUp 1.5s ease-out;
}

.remedy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 25px rgba(0, 0, 0, 0.2);
}

.remedy-card h2 {
    font-size: 1.8rem;
    color: #4caf50;
    margin-bottom: 10px;
}

.remedy-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.remedy-card .read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #56ab2f;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    font-size: 1rem;
    transition: background 0.3s, transform 0.3s;
}

.remedy-card .read-more:hover {
    background: #88d498;
    transform: translateY(-3px);
}



.detail-section {
    background: #e9f5db;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 30px auto;
    text-align: center;
    animation: fadeInUp 1s ease-in-out;
}

.detail-section img {
    max-width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.detail-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #2c3e50;
}



footer {
    background: linear-gradient(135deg, #4caf50, #88d498);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    color: #ff6f61;
    text-decoration: underline;
}



@keyframes slideInFromTop {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleUp {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes textGlowNature {
    0% {
        text-shadow: 0 0 10px #88d498, 0 0 20px #4caf50;
    }
    100% {
        text-shadow: 0 0 20px #88d498, 0 0 40px #56ab2f;
    }
}



@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    header nav a {
        font-size: 1rem;
    }

    main h1 {
        font-size: 2rem;
    }
}
.contact-section {
    padding: 50px 20px;
    background: linear-gradient(to bottom, #f0f7ed, #e9f5db);
    text-align: center;
}

.contact-section h1 {
    font-size: 2.5rem;
    color: #4caf50;
    margin-bottom: 15px;
    animation: fadeInDown 1.5s ease-in-out;
}

.contact-section p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-in-out;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}



.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    flex: 1;
    animation: fadeInLeft 1s ease-in-out;
}

.contact-form .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 2px solid #4caf50;
    border-radius: 5px;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #88d498;
}

.submit-btn {
    background: linear-gradient(135deg, #56ab2f, #a8e063);
    color: white;
    padding: 12px 25px;
    font-size: 1.1rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px);
    background: #88d498;
}



.contact-info {
    text-align: left;
    max-width: 400px;
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 1s ease-in-out;
}

.contact-info h2 {
    font-size: 1.8rem;
    color: #4caf50;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}



@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


header nav a.active {
    color: #ffd700;
}


.about-header {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(to bottom, #88d498, #c4e3cb);
    color: #fff;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    animation: fadeIn 2s ease-in-out;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1.5s ease-in-out;
}

.about-header p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    animation: fadeInUp 1.5s ease-in-out;
}


.about-main {
    padding: 50px 20px;
    background: #f0f7ed;
}

.about-content {
    margin: 30px auto;
    max-width: 800px;
    padding: 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    animation: slideIn 1.5s ease-in-out;
}

.about-content h2 {
    font-size: 2rem;
    color: #4caf50;
    margin-bottom: 15px;
    animation: fadeInLeft 1s ease-in-out;
}

.about-content p,
.about-content ul {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    animation: fadeInRight 1s ease-in-out;
}

.about-content ul {
    list-style-type: disc;
    margin-left: 20px;
}


footer {
    background: linear-gradient(135deg, #4caf50, #88d498);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 1rem;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    color: #ff6f61;
    text-decoration: underline;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f0f7ed, #e9f5db);
    color: #2c3e50;
    overflow-x: hidden;
}


header nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: linear-gradient(135deg, #4caf50, #88d498);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav a {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease, transform 0.3s;
}

header nav a.active {
    color: #ffd700;
}

header nav a:hover {
    color: #ffd700;
    transform: scale(1.1);
}


.remedies-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #88d498, #4caf50);
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    animation: fadeIn 1.5s ease-in-out;
}

.remedies-header h1 {
    font-size: 2.5rem;
    animation: fadeInDown 1.2s ease-in-out;
}

.remedies-header p {
    margin-top: 15px;
    font-size: 1.2rem;
    animation: fadeInUp 1.2s ease-in-out;
}


.remedies-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background: #f0f7ed;
}


.remedy-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1.5s ease-in-out;
}

.remedy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.remedy-card h2 {
    font-size: 1.8rem;
    color: #4caf50;
    margin-bottom: 10px;
}

.remedy-card p {
    font-size: 1rem;
    color: #555;
}

.remedy-card .read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background: linear-gradient(to right, #56ab2f, #88d498);
    text-decoration: none;
    border-radius: 20px;
    transition: background 0.3s, transform 0.3s;
}

.remedy-card .read-more:hover {
    background: #4caf50;
    transform: translateY(-3px);
}


footer {
    background: linear-gradient(135deg, #4caf50, #88d498);
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    color: #ff6f61;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f9f9f9, #e3ffe7);
    color: #2c3e50;
    overflow-x: hidden;
}


header nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    background: linear-gradient(135deg, #4caf50, #81c784);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header nav a {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease, transform 0.3s;
}

header nav a.active {
    color: #ffd700;
}

header nav a:hover {
    color: #ffd700;
    transform: scale(1.1);
}


.remedies-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #81c784, #4caf50);
    color: white;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    animation: fadeIn 1.5s ease-in-out;
}

.remedies-header h1 {
    font-size: 2.5rem;
    animation: fadeInDown 1.2s ease-in-out;
}

.remedies-header p {
    margin-top: 15px;
    font-size: 1.2rem;
    animation: fadeInUp 1.2s ease-in-out;
}


.remedies-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px 20px;
    background: #f9f9f9;
}


.remedy-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: fadeInUp 1.5s ease-in-out;
}

.remedy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.remedy-card h2 {
    font-size: 1.8rem;
    color: #4caf50;
    margin-bottom: 10px;
}

.remedy-card p {
    font-size: 1rem;
    color: #555;
}

.remedy-card .read-more {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background: linear-gradient(to right, #56ab2f, #81c784);
    text-decoration: none;
    border-radius: 20px;
    transition: background 0.3s, transform 0.3s;
}

.remedy-card .read-more:hover {
    background: #4caf50;
    transform: translateY(-3px);
}


footer {
    background: linear-gradient(135deg, #4caf50, #81c784);
    color: white;
    text-align: center;
    padding: 20px;
}

footer a {
    color: #ffd700;
    text-decoration: none;
}

footer a:hover {
    color: #ff6f61;
}


@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


body, h1, p, a {
    margin: 0;
    padding: 0;
}


body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f4c3; 
    color: #4a4a4a;
}

header {
    background-color: #81c784; 
    padding: 20px;
    text-align: center;
}

nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

nav a:hover {
    color: #388e3c; 
}


.hero-section {
    background: linear-gradient(45deg, #66bb6a, #43a047); 
    color: white;
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 15px;
    animation: fadeIn 2s ease-in-out;
}

.hero-section p {
    font-size: 22px;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out 0.5s;
}

.cta {
    font-size: 20px;
    background-color: #388e3c; 
    padding: 15px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.cta:hover {
    background-color: #66bb6a; 
    transform: scale(1.05); 
}


footer {
    background-color: #66bb6a;
    text-align: center;
    padding: 15px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

