/* General styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e0d9d9 ;
    color: #333;
    line-height: 1.6;
}

section {
    padding: 50px 20px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
}
/* Hero Section */

#hero {
    background-image: url('webpage.jpeg');
    background-size: cover;
    background-position: center;
    color: white;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 20px; /* Add padding for small screen margins */
    text-align: center; /* Ensure text stays centered on smaller devices */
}
/* background for mobile */


/* Background image for tablets (screens between 768px and 1024px) */
@media (max-width: 1024px) {
    #hero {
        background-image: url('WEB\ PAGE\ MOBILE.JPEG.webp');
    }
}

/* Background image for mobile devices (screens below 768px) */
@media (max-width: 768px) {
    #hero {
        background-image: url('WEB\ PAGE\ MOBILE.JPEG.webp');
    }
}

/* Background image for smaller mobile devices (screens below 480px) */
@media (max-width: 480px) {
    #hero {
        background-image: url('WEB\ PAGE\ MOBILE.JPEG.webp');
    }
}
/* Hero Section - Text Styling */
#hero h1 {
    font-size: 3rem; /* Default font size for large screens */
    margin-bottom: 20px;
}

#hero p {
    font-size: 1.5rem; /* Default paragraph size for large screens */
    max-width: 800px; /* Ensure text doesn't get too wide */
    line-height: 1.5;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2.5rem; /* Reduce heading size on smaller screens */
    }

    #hero p {
        font-size: 1.2rem; /* Adjust paragraph size for readability */
    }
}

@media (max-width: 480px) {
    #hero {
        background-size: cover; /* Ensure background scales properly */
        height: 80vh; /* Slightly reduce height for very small screens */
    }

    #hero h1 {
        font-size: 2rem; /* Further reduce heading size for mobile */
    }

    #hero p {
        font-size: 1rem; /* Further reduce paragraph size */
        max-width: 100%; /* Remove width restriction for small devices */
    }
}




.cta-button {
    position:relative ;
    top: 150px;
    padding: 10px 20px;
    background-color: #2dcf4e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.cta-button {
    position: relative;
    top: 150px;
    padding: 10px 20px;
    background-color: #2dcf4e;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 16px; /* Default font size */
    text-align: center;
}

/* Responsive styles for tablet and smaller screens */
@media (max-width: 768px) {
    .cta-button {
        top: 100px; /* Adjust the position */
        padding: 8px 18px; /* Reduce padding slightly */
        font-size: 14px; /* Decrease font size */
    }
}

/* Responsive styles for mobile screens */
@media (max-width: 480px) {
    .cta-button {
        top: 80px; /* Further adjust the position */
        padding: 6px 16px; /* Reduce padding more for small screens */
        font-size: 12px; /* Decrease font size further for smaller devices */
        width: 100%; /* Ensure the button takes up full width on small screens */
        box-sizing: border-box; /* Ensure padding doesn't exceed container */
    }
}


.cta-button:hover {
    background-color: #9ee1ad;
}

/* Plant Showcase */
.plant-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.plant-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: 30%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.plant-card:hover {
    transform: translateY(-5px);
}

.plant-card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

/* Animation for sliding in and fading */
@keyframes slideIn {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.animate-slide-in {
    opacity: 0;
    animation: slideIn 1s forwards;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 2s forwards;
}

/* Additional Sections */
.value-content,
.tips-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.info-box,
.tip-card {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    width: 30%;
    margin: 10px;
}
/* footer {
    background-color: #f4f4f4;
    padding: 20px;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer .contact {
    display: inline-block;
    text-decoration: none;
}

footer .contact img {
    width: 50px; /* Adjust the size of the WhatsApp logo */
    /* height: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

footer .contact img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
} */ 
#whatmakeusdifferent{
    margin-left: 2000px;
    border: 2px solid red;
    text-align: calc(500px);
    background-color: #f9f5f5;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    width: 100%;
}

/* .kyari-difference h2 {
    font-size: 2rem;
    color: #4917bf;
    margin-bottom: 40px; */


.features {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.feature-item {
    flex: 1;
    max-width: 220px;
    text-align: center;
}

.feature-item img.feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.2rem;
    color: #2a5d24;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    color: #333;
}
/* .about-us {
    background-color: #e0e7db;
    text-align: left;
    padding: 50px;
    margin-top: 50px;
}

.about-us h2 {
    text-align: center;
}

.about-us p, .about-us ul {
    margin-bottom: 20px;
}

.about-us ul li {
    margin-bottom: 10px;
} */
 /* General section styling */
#about-us {
    background-color: #f0f8f5; /* Soft background color for the section */
    padding: 60px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1200px;
    margin: 0 auto;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

#about-us h2 {
    font-size: 2.5rem;
    color: #2a5d24;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.info-section h3,
.contact-section h3 {
    font-size: 1.8rem;
    color: #2a5d24;
    margin-bottom: 10px;
    text-align: left;
}

.info-section p,
.contact-section p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    text-align: left;
}

/* Contact list */
.contact-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.contact-list li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    padding-left: 25px;
    position: relative;
}

/* Icons for contact details */
.contact-list li::before {
    content: "📞"; /* Default icon, update per item */
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    color: #2a5d24;
}

.contact-list li:nth-child(2)::before {
    content: "✉️"; /* Email icon */
}

.contact-list li:nth-child(3)::before {
    content: "🏠"; /* Address icon */
}

.contact-list li:nth-child(4)::before {
    content: "⏰"; /* Timings icon */
}

/* Link styles */
a {
    color: #28a745;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    color: #1e7a39;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #about-us {
        padding: 40px 15px;
    }

    #about-us h2 {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1.1rem;
    }

    .info-section h3,
    .contact-section h3 {
        font-size: 1.5rem;
    }

    .contact-list li {
        font-size: 1rem;
    }
}


footer {
    text-align: center;
    padding: 20px;
    background-color: #2a5d24;
    color: white;
}

footer a {
    color: white;
    text-decoration: underline;
}





/* For tablets (768px and up) */
@media (max-width: 768px) {
    .plant-card, .info-box, .tip-card {
        width: 45%; /* Adjust width for smaller screens */
    }
}

/* For mobile devices (480px and up) */
@media (max-width: 480px) {
    .plant-card, .info-box, .tip-card {
        width: 100%; /* Full width for mobile */
        margin: 10px 0; /* Adjust margins for stacking */
    }
    
    .features {
        flex-direction: column; /* Stack the feature items vertically */
        align-items: center;
    }

    .feature-item {
        max-width: 100%; /* Take full width */
    }

    h2 {
        font-size: 1.8em; /* Adjust font size for smaller screens */
    }

    .cta-button {
        padding: 8px 16px; /* Slightly smaller button for mobile */
    }

    section {
        padding: 20px; /* Reduce padding */
    }

    #hero {
        height: 60vh; /* Reduce hero height for small screens */
    }


    
} 
