* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Slider section */
.slider-section {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: visible;
}

/* Container */
.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slide styles */
.slide {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    animation: fade 1s ease-in-out;
}

.slide.active {
    display: block;
}

/* Image */
.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Caption */
.caption {
    position: absolute;
    bottom: 40px;
    left: 60px;
    font-size: 28px;
    font-weight: bold;
    background: rgba(255, 255, 255, 0.7);
    color: #333;
    padding: 12px 24px;
    border-radius: 8px;
    animation: fadeInText 1.2s ease-in-out;
}

/* Arrows */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 15px;
    color: #fff;
    /* background-color: rgba(0, 0, 0, 0.4); */
    padding: 8px 12px;
    border-radius: 50%;
    transform: translateY(-50%);
    user-select: none;
    transition: background-color 0.3s;
}

.prev:hover, .next:hover {
    color: #000000;
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Fade-in animations */
@keyframes fade {
    from { opacity: 0.3; }
    to { opacity: 1; }
}

@keyframes fadeInText {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeInPage 1.5s forwards;
}

@keyframes fadeInPage {
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .caption {
        font-size: 18px;
        bottom: 20px;
        left: 20px;
        padding: 8px 16px;
    }

    .prev, .next {
        font-size: 30px;
    }
}







/* sectin_1 */
.about-section {
    background: #f8f9fa; /* Light gray background */
    padding: 80px 5%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
}

.about-image {
    position: relative;
    width: 50%;
}

.about-image img {
    width: 100%;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 150px;
    object-fit: cover;
}

.decorative-elements {
    position: absolute;
    top: 10px;
    left: -20px;
}

.circle {
    width: 40px;
    height: 40px;
    background: rgba(0, 200, 0, 0.5);
    border-radius: 50%;
    position: absolute;
    bottom: -20px;
    left: 10px;
}

.arc {
    width: 100px;
    height: 50px;
    border: 6px solid green;
    border-color: green transparent transparent transparent;
    border-radius: 50%;
    position: absolute;
    top: -20px;
    left: 30px;
}

.small-circle {
    width: 15px;
    height: 15px;
    background: green;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: -10px;
}

.about-content {
    width: 50%;
    /* display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center; */
}


.about-content h2 {
    font-size: 28px;
    color: green;
    font-weight: bold;
}

.about-content h3 {
    font-size: 28px;
    font-weight: 700;
}

.about-content p {
    font-size: 16px;
    color: #666;
    text-align: justify;
    line-height: 1.6; /* Adjusts the spacing between lines */
    text-indent: 50px;
}

.rm {
    background-color: green;
    color: white;
    padding: 10px 20px;
    border: none;
    border-top-left-radius: 150px;
    border-bottom-right-radius: 150px;
    display: block;
    margin: 20px auto 0; /* Centers the button horizontally */
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 8px rgba(0, 128, 0, 0.5); /* Subtle glow */
}

.rm:hover {
    background-color: #004d00; /* Darker green */
    transform: scale(1.1); /* Slightly enlarges the button */
    /* box-shadow: 0 0 15px rgba(0, 255, 0, 0.7); */
}

.rm:active {
    transform: scale(0.95); /* Shrinks when clicked for a cool effect */
}







/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image,
    .about-content {
        width: 100%;
    }
}






/* counter section */

.counter-section {
    background: linear-gradient(to bottom, #d4f8d4, #ffffff);
    padding: 50px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    gap: 50px;
}
.counter-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 200px;
}
.counter-number {
    font-size: 40px;
    font-weight: bold;
    color: green;
}
.counter-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}
.counter-text {
    font-size: 14px;
    color: #555;
}









/* SERVICES */
.events-section {
    text-align: center;
    padding: 50px 5%;
    background: #f8f9fa;
}

.events-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.event-card {
    flex: 1;
    padding: 20px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    position: relative;
}

.event-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.event-card p {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.event-card:hover {
    transform: scale(1.1);
}

/* .events-container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25%;
    width: 2px;
    background: #ddd;
}

.events-container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #ddd;
}

.events-container div:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 75%;
    width: 2px;
    background: #ddd;
} */

.more-events {
    margin-top: 20px;
    padding: 10px 20px;
    background: green;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.more-events:hover {
    background: darkgreen;
}