        /* Global Styles */
      

        h2 {
            font-size: 2rem;
            font-weight: 600;
            color: #e67e22; /* Gold color for headings */
            text-align: center;
            margin-bottom: 20px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(to right, #e67e22, #ffd901,#e67e22);
            color: white;
            text-align: center;
            overflow: hidden;
        }

        .hero-slideshow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            overflow: hidden;
        }

        .slide {
            flex: 1;
            background-size: cover;
            background-position: center;
            height: 100%;
        }

        .hero-content {
    position: absolute; /* Ensure the position is relative to the parent */
    top: 50%; /* Adjust vertical position */
    left: 65%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Center the element precisely */
    z-index: 2; /* Ensure it's above the slideshow */
    text-align: center; /* Center-align text */
    color: white; /* Make the text color white */
    background: rgba(0, 0, 0, 0.5); /* Dark background with some transparency */
    padding-top: 0px; /* Add padding around the text */
    padding-bottom: 50px;
    padding-left: 300px;
    padding-right: 300px;
    border-radius: 15px; /* Optional: rounded corners */
    animation: fadeIn 5s ease-in-out forwards;
}





        /* Section Styles */
        section {
            padding: 60px 20px;
        }

       /* Co-op Section Styles */
.coop {
    padding: 60px 20px;
    background-color: #f8f8f8;
    text-align: center;
    
}
@media (max-width: 768px) { 
    .coop {
        padding: 40px 15px; /* Reduce padding for smaller screens */
        text-align: center;
        background-color: #f8f8f8;
    }
}

@media (max-width: 480px) { 
    .coop {
        padding: 30px 10px; /* Further reduce padding for very small screens */
        top: 100%;
    }
}

.coop h2 {
    font-size: 2.5rem;
    background: linear-gradient(to right, #e67e22, #ffd901,#e67e22);
    background-clip: text; /* Clips the background to the text */
    color: transparent; /* Makes the text color transparent so the gradient is visible */
    margin-bottom: 40px;
}


.coop-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.coop-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    flex: 1 1 calc(33.33% - 20px); /* Ensures 3 boxes per row */
    max-width: calc(33.33% - 20px); /* Consistent width */
    display: flex;
    flex-direction: column; /* Aligns content vertically */
}

.coop-image {
    width: 100%; /* Ensures images stretch to the container width */
    height: 450px; /* Fixed height for consistency */
    object-fit: fill; /* Ensures the image scales and crops to fill the area */
    border-radius: 10px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth transition */
}

/* Adjust height for smaller screens */
@media (max-width: 1024px) { /* Tablets */
    .coop-image {
        height: 400px;
    }
}

@media (max-width: 768px) { /* Small tablets & large phones */
    .coop-image {
        height: 300px;
    }
}

@media (max-width: 480px) { /* Mobile phones */
    .coop-image {
        height: 300px;
    }
}
.coop-image:hover {
    transform: scale(1.05); /* Slightly enlarges the image */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Adds shadow on hover */
}


.coop-details {
    flex-grow: 1; /* Ensures the content stretches to fill available space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.coop-details h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.coop-details p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 10px;
}

.coop-details ul {
    list-style-type: disc;
    padding-left: 20px;
    color: #333;
}

.coop-details ul li {
    margin: 5px 0;
}

/* Force 3 boxes per row on medium-sized screens */
@media (max-width: 1024px) {
    .coop-item {
        flex: 1 1 calc(33.33% - 20px);
        max-width: calc(33.33% - 20px);
    }
}

/* Adjust for smaller screens (tablet size) */
@media (max-width: 768px) {
    .coop-item {
        flex: 1 1 calc(50% - 20px); /* 2 boxes per row */
        max-width: calc(50% - 20px);
    }
}

/* Adjust for very small screens (mobile size) */
@media (max-width: 480px) {
    .coop-item {
        flex: 1 1 100%; /* 1 box per row */
        max-width: 100%;
    }
}



        .intro, .mission, .vision{
            background: linear-gradient(to bottom,#fae9b3, #ffffff, #ffffff); /* From white to light grey */
            border-radius: 10px;
            margin: 30px 0;
            padding: 30px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.5s ease-in-out;
        }

        .mission h2, .vision h2 {
            color: #e67e22; /* Gold color for section titles */
        }

        .mission p, .vision p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #555;
            margin-top: 15px;
        }

       
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 20px;
        }

        footer .social a {
            color: #fff;
            margin: 0 10px;
            text-decoration: none;
        }

        footer .social a:hover {
            text-decoration: underline;
        }

