/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f9f4;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    background-color: rgba(222, 255, 217, 0.95);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
}
.logo {
    height: 50px;
    object-fit: contain;
}
/* Slideshow */
.slideshow-section {
    padding-top: 70px;
}

.slideshow-container {
    max-width: 1200px;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 0.5rem 0 0.5rem;
}

.mySlides {
    display: none;
    height: 800px;
}

.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: 0;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
}

.next {
    right: 8px;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dot-container {
    text-align: center;
    padding: 20px 0;
    background-color: #f1f1f1;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

/* Sections */
.section {
    padding: 60px 10px;
    background-color: white;
}

.section-title {
    text-align: center;
    color: #2c5e1a;
    margin-bottom: 30px;
    border-bottom: 2px solid #b5d3a1;
    padding-bottom: 10px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.grid-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.grid-img:hover {
    transform: scale(1.05);
}

.services-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-text, .services-text {
    flex: 1;
}

.aboutText{
    text-align: justify;
}

.services-text ul {
    list-style-type: none;
    text-align: center;
}

.services-text li {
    margin: 10px 0;
    padding: 10px;
    background-color: #f4f9f4;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-size: 18px;
}

.services-text li:hover {
    background-color: #e6f3e6;
}

/* Hero Section */
.main-header {
    padding-top: 100px;
    background: linear-gradient(to right, rgba(244, 249, 244, 0.95), rgba(244, 249, 244, 0.8));
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Decorative background patterns */
.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('./leaf3.png');
    opacity: 0.1;
    z-index: 0;
}

/* Add floating decorative elements */
.decorative-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.floating-leaf {
    position: absolute;
    width: 150px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.15;
}

.leaf-1 {
    top: 10%;
    left: 5%;
    background-image: url('./leaf.png');
    animation: float 8s ease-in-out infinite;
}

.leaf-2 {
    top: 60%;
    right: 5%;
    background-image: url('./leaf(1).png');
    animation: float 6s ease-in-out infinite reverse;
}

.leaf-3 {
    bottom: 10%;
    left: 15%;
    background-image: url('./leaf(2).png');
    animation: float 7s ease-in-out infinite;
}

/* Quick stats or highlights */
.header-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.highlight-box {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.highlight-box h3 {
    color: #2c5e1a;
    font-size: 2rem;
    margin-bottom: 5px;
}

.highlight-box p {
    color: #4a4a4a;
    font-size: 0.9rem;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.header-content {
    width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.header-left {
    text-align: center;
}

.header-logo {
    max-width: 600px;
    height: auto;
    margin-bottom: 20px;
}

.header-right {
    padding: 20px;
}

.header-right h1 {
    font-size: 2.5rem;
    color: #2c5e1a;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.5rem;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.header-cta {
    display: flex;
    gap: 20px;
}

/* Adjusted Hero Section */
.hero {
    background-color: white;
    padding: 60px 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c5e1a;
    color: white;
    z-index: 100;
}

.btn-primary:hover {
    background-color: #4CAF50;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #2c5e1a;
    color: #2c5e1a;
    z-index: 100;
}

.btn-secondary:hover {
    background-color: #2c5e1a;
    color: white;
}

/* Footer */
.footer {
    background-color: #2c5e1a;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #90ee90;
}

.contact-info {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #90ee90;
}
.about-text p {
    font-size: 1.4rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navbar adjustments */
    .navbar {
        padding: 10px 0;
    }

    .logo {
        height: 40px;
    }

    /* Header adjustments */
    .main-header {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .header-left {
        padding: 0 20px;
    }

    .header-logo {
       display: block;
        margin: auto;
        width: 400px;
    }

    .header-right {
        padding: 20px;
    }

    .header-right h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .tagline {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .mySlides {
        display: none;
        height: 600px;
    }

    /* CTA buttons */
    .header-cta {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    /* Highlights section */
    .header-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 25px;
    }

    .highlight-box {
        padding: 15px;
    }

    .highlight-box h3 {
        font-size: 1.8rem;
    }

    /* Slideshow adjustments */
    .slideshow-container {
        margin: 0;
        padding: 0 10px;
    }

    .prev, .next {
        padding: 10px;
        font-size: 16px;
    }

    /* Services section */
    .services-content {
        padding: 0 10px;
    }

    .services-text li {
        margin: 15px 0;
        padding: 15px;
    }

    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-text {
        padding: 0 15px;
        text-align: center;
    }

    .about-text p {
        font-size: 1rem;
        text-align: justify;
    }

    /* Footer adjustments */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section {
        margin: 15px 0;
        padding: 15px;
    }

    /* Container width adjustment */
    .container {
        padding: 0 15px;
    }

    /* Decorative elements adjustments */
    .floating-leaf {
        width: 80px;
        height: 80px;
    }

    .leaf-1 {
        top: 5%;
        left: 2%;
    }

    .leaf-2 {
        top: 50%;
        right: 2%;
    }

    .leaf-3 {
        bottom: 5%;
        left: 5%;
    }
}

/* Mobile-specific adjustments for very small screens */
@media (max-width: 500px) {
    body {
        font-size: 14px;
    }

    .navbar {
        position: relative;
    }

    .navbar-content {
        flex-direction: column;
        align-items: center;
    }

    .

    .logo {
        max-width: 100px;
        height: auto;
    }

    .main-header {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 20px;

    }

    .header-logo {
        display: block;
        width: 400px;
        margin: auto;
        padding: 0;
    }

    .header-right {
        padding: 10px;
    }

    .header-right h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    /* Header highlights */
    .header-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .highlight-box {
        padding: 10px;
    }

    .highlight-box h3 {
        font-size: 1.5rem;
    }

    .highlight-box p {
        font-size: 0.8rem;
    }

    /* Decorative elements */
    .floating-leaf {
        width: 60px;
        height: 60px;
    }


    .slideshow-container {
        box-shadow: none;
    }

    .section {
        padding: 20px 10px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    /* Services section */
    .services-text li {
        margin: 8px 0;
        padding: 12px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .mySlides {
        display: none;
        height: 500px;
    }

    .mySlides img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* About section */
    .about-content {
        gap: 15px;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .image-grid {
        gap: 8px;
    }

    .grid-img {
        height: 150px;
    }

    .footer-section {
        min-width: 100%;
        margin: 10px 0;
    }


}

@media (max-width: 418px) {
    body {
        font-size: 14px;
    }

    .navbar {
        position: relative;
    }

    .navbar-content {
        flex-direction: column;
        align-items: center;
    }

    .

    .logo {
        max-width: 100px;
        height: auto;
    }

    .main-header {
        min-height: auto;
        padding-top: 20px;
        padding-bottom: 30px;
    }

    .header-content {
        grid-template-columns: 1fr;
        gap: 20px;

    }

    .header-logo {
        display: block;
        width: 300px;
        margin: auto;
        padding: 0;
    }

    .header-right {
        padding: 10px;
    }

    .header-right h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .tagline {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    /* Header highlights */
    .header-highlights {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 20px;
    }

    .highlight-box {
        padding: 10px;
    }

    .highlight-box h3 {
        font-size: 1.5rem;
    }

    .highlight-box p {
        font-size: 0.8rem;
    }

    /* Decorative elements */
    .floating-leaf {
        width: 60px;
        height: 60px;
    }


    .slideshow-container {
        box-shadow: none;
    }

    .section {
        padding: 20px 10px;
    }

    .section-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    /* Services section */
    .services-text li {
        margin: 8px 0;
        padding: 12px;
    }

    .service-icon {
        width: 40px;
        height: 40px;
    }

    .mySlides {
        display: none;
        height: 500px;
    }

    .mySlides img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* About section */
    .about-content {
        gap: 15px;
    }

    .about-text p {
        font-size: 0.9rem;
    }

    .image-grid {
        gap: 8px;
    }

    .grid-img {
        height: 150px;
    }

    .footer-section {
        min-width: 100%;
        margin: 10px 0;
    }


}