*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* ///////////////////////////// Start of SECTION 01 ///////////////////////////// */

button{
    cursor: pointer;
}

#section_1{
    position: relative;
    overflow: hidden;
}

#section_1 .slide-container {
    display: none;
}

#section_1 .slide-container.active {
    display: block;
}

#section_1 .slide-container .slide{
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    z-index: -1;
}

#section_1 .slide-container .slide video{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;

    animation: fadeIn .4s linear;
}

@keyframes fadeIn{
    0%{
        transform: scale(1.5);
    }
}

#section_1 .slide-container .slide .content{
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    background: rgba(0,0,0,0.5);
    text-align: center;
    z-index: 1;  
    position: relative;
}

#section_1 .slide-container .slide .content h1{
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 0;
    font-size: 50px;
    color: white;
    text-shadow: 0 5px 10px rgba(0,0,0,0.3);
}


#section_1 .slide-container .slide .content h3{
    margin-top: -10px;
    font-size: 100px;
    color: white;
    text-shadow: 0 5px 10px rgba(0,0,0,0.3);
    color: var(--yellow);

}


#section_1 .slide-container .slide .content p{
    font-family: 'Poppins', sans-serif;
    margin-top: -10px;
    font-size: 17px;
    color: white;
    padding: 5px;
    font-weight: 400;
    text-shadow: 0 5px 10px rgba(0,0,0,0.3);
}


#section_1 .slide-container .slide .content h2{
    margin-top: 50px;
    font-size: 50px;
    color: var(--lightgreen);
    padding: 5px;
    font-weight: 500;
    text-shadow: 0 5px 10px rgba(0,0,0,0.8);
}

.container .slide-container{
    display: none;
}

.container .slide-container .active{
    display: block;
}

#section_1 .slide-container .slide button{
    margin-top: 20px;
    font-family: 'Poppins', sans-serif; 
    color: var(--yellow); 
    padding: 10px 30px;
    border: 2px solid var(--yellow);
    background-color: transparent;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}


/* Media Queries for smaller devices */

@media screen and (max-width: 768px) {
    #section_1 .slide-container .slide .content h1 {
        font-size: 40px;
    }
    #section_1 .slide-container .slide .content h3 {
        font-size: 80px;
    }
    #section_1 .slide-container .slide .content p {
        font-size: 18px;
    }
    #section_1 .slide-container .slide .content h2 {
        font-size: 40px;
    }
    #section_1 .slide-container .slide button {
        font-size: 16px;
        padding: 8px 25px;
    }
}

@media screen and (max-width: 480px) { /* Mobile */
    #section_1 .slide-container .slide .content h1 {
        font-size: 30px;
    }
    #section_1 .slide-container .slide .content h3 {
        font-size: 60px;
    }
    #section_1 .slide-container .slide .content p {
        font-size: 16px;
    }
    #section_1 .slide-container .slide .content h2 {
        font-size: 35px; 
    }
    #section_1 .slide-container .slide button {
        font-size: 14px;
        padding: 6px 20px;
    }
}


/* ///////////////////////////// End of SECTION 01 ///////////////////////////// */




/* ///////////////////////////// Start of SECTION 02 ///////////////////////////// */

#section_2{
    background-color: #EBFBF1;
    padding-top: 100px;
    padding-bottom: 50px;


    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Default styling for h1 and h2 */
#section_2 > h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 35px; 
    margin: 0;
    text-align: center; 
}

#section_2 > h2 {
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 20px; 
    margin-top: 8px;
    color: var(--green);
    text-align: center; 
}

/* Medium screens (1024px and below) */
@media screen and (max-width: 1024px) {
    #section_2 > h1 {
        font-size: 30px; /* Slightly smaller for medium screens */
    }

    #section_2 > h2 {
        font-size: 18px; /* Slightly smaller */
    }
}

/* Small screens (768px and below) */
@media screen and (max-width: 768px) {
    #section_2 > h1 {
        font-size: 26px; /* Smaller size for tablets */
    }

    #section_2 > h2 {
        font-size: 16px; /* Smaller size for tablets */
    }
}

/* Extra small screens (480px and below) */
@media screen and (max-width: 480px) {
    #section_2 > h1 {
        font-size: 22px; /* Smaller size for mobile devices */
    }

    #section_2 > h2 {
        font-size: 14px; /* Smaller size for mobile devices */
    }
}


/* Parent container styling */
.products {
    display: flex;
    justify-content: center; 
    gap: 20px; 
    flex-wrap: wrap; 
    margin: 0 auto;
    padding: 20px;
    max-width: 1200px;
}

/* Add margin for larger screens */
@media screen and (min-width: 1440px) {
    .products {
        margin: 0 10%; 
        max-width: 100%; 
    }
}

/* Card styling */
.product-card {
    flex: 1; 
    min-width: 280px;
    max-width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #fff;
    box-sizing: border-box; 
}

.product-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.product-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
    color: var(--green);
    margin: 10px 0;
}

.product-card p {
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: black;
}

.product-card button {
    margin-top: 20px;
    padding: 8px 12px;
    background-color: var(--green);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.product-card button:hover {
    background-color: #006215;
}

/* Responsive Breakpoints */


@media screen and (max-width: 1440px) and (min-width: 1024px) {
    .product-card {
        max-width: 300px;
    }
    
}



/* Medium screens (1024px) */
@media screen and (max-width: 1200px) and (min-width: 769px) {
    .products {
        margin: 0 5%; /* Reduce margin */
        padding: 20px;
    }

    .product-card {
        max-width: 300px; /* Two cards per row */
    }
}

/* Small screens (768px and below) */
@media screen and (max-width: 768px) {
    .products {
        flex-direction: column; /* Stack vertically */
        align-items: center; /* Center align */
        margin: 0 2%; /* Small margins */
    }

    .product-card {
        max-width: 90%; /* Wide cards */
    }
}



/* ///////////////////////////// End of SECTION 02 ///////////////////////////// */

/* ///////////////////////////// Start of SECTION 03 ///////////////////////////// */

#section_3 {
    background-color: #EBFBF1;
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Blue banner styling */
#section_3 .banner{
 width: 1500px;
}

.banner img{
    width: 100%;
}

/* ///////////////////////////// End of SECTION 03 ///////////////////////////// */

/* ///////////////////////////// Start of SECTION 04 ///////////////////////////// */

/* Browse Range Section */
.browse-range {
    background-color: #028E21;
    color: #fff;
    text-align: center;
    padding-top: 55px;
    padding-bottom: 40px;
}

.browse-range h2{
    font-size: 40px;
    font-family: 'Poppins', sans-serif;
}

.browse-range button {
    background-color: #fff;
    color: #028E21;
    font-size: 16px;
    font-weight: 600;
    width: 160px;
    height: 45px;
    border: none;
    border-radius: 10px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .browse-range h2 {
        font-size: 1.5em;
    }

    .browse-range button {
        font-size: 1em;
        width: 130px;
        height: 35px;
    }
}

/* ///////////////////////////// End of SECTION 04 ///////////////////////////// */

/* ///////////////////////////// Start of SECTION 05 ///////////////////////////// */

.facilities {
    text-align: center;
    padding: 3rem 1.5rem;
}

.title {
    font-size: 36px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 0.5rem;
}

.subtitle {
    color: #028E21;
    font-size: 20px;
    margin-bottom: 70px;
    font-weight: 600;
}

.card .icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-cards {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.card {
    background: transparent;
    border: none;
    padding: 1.5rem;
    width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card .icon {
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background-color: #D2FFDD;
    margin-bottom: 13px;
}

.card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #028E21;
}

.card p {
    margin-bottom: 14px;
    font-weight: 600;
}

.card button {
    font-size: 14px;
    background: #028E21;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    height: 38px;
}

.card button:hover {
    background: darkgreen;
}



/* ////////////////////////////// partnership ///////////////////////////////////// */

.partnership{
    background-color: #F2FFF5;
    height: 210px;
    padding-top: 30px;
    padding-bottom: 30px;
}

.partnership-images{
    display: flex;
    column-gap: 80px;
    justify-content: center;
    align-items: center;
}

.img-1{
    width: 120px;
}

.img-2 {
    width: 180px;
}

.img-3 {
    width: 145px;
}

.img-4 {
    width: 152px;
}

.img-5{
    width: 155px;
}

.img-6{
    width: 80px;
}

.img-7{
    width: 100px;
}

.partnership h5{
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin-top: 25px;
}

@media (max-width: 1295px) {
    .partnership-images {
        column-gap: 30px;
    }
}

@media (max-width: 1100px) {
    .partnership-images {
        column-gap: 30px;
    }

    .partnership h5{
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .partnership-images {
        column-gap: 20px;
    }

    .img-1 {
        width: 90px;
    }

    .img-2 {
        width: 165px;
    }

    .img-3 {
        width: 110px;
    }

    .img-4 {
        width: 127px;
    }

    .img-6{
        width: 65px;
    }
}

@media (max-width: 820px) {
    .partnership h5 {
        font-size: 14px;
    }

    .img-1 {
        width: 20px;
    }

    .img-2 {
        width: 85px;
    }

    .img-3 {
        width: 70px;
    }

    .img-4 {
        width: 117px;
    }

    .img-6{
        width: 50px;
    }

    .img-7{
        width: 90px;
    }
}

@media (max-width: 768px) {
    .partnership-images {
        column-gap: 10px;
    }

    .img-1 {
        width: 40px;
    }

    .img-2 {
        width: 105px;
    }

    .img-3 {
        width: 70px;
    }

    .img-4 {
        width: 117px;
    }

    .img-6{
        width: 50px;
    }

    .img-7{
        width: 90px;
    }
}

@media (max-width: 1200px) {
    .img-1 {
        width: 100px;
    }

    .img-2 {
        width: 145px;
    }

    .img-3 {
        width: 110px;
    }

    .img-4 {
        width: 117px;
    }

    .img-5{
        width: 117px; 
    }

    .img-7{
        width: 90px;
    }

}

@media (max-width: 1100px) {
    .partnership-images {
        column-gap: 20px;
    }

    .partnership h5{
        font-size: 16px;
    }
}

@media (max-width: 992px) {

    .img-1 {
        width: 110px;
    }

    .img-2 {
        width: 145px;
    }

    .img-3 {
        width: 110px;
    }

    .img-4 {
        width: 127px;
    }

    .img-5{
        width: 117px; 
    }

}

@media (max-width: 820px) {
    .partnership h5 {
        font-size: 14px;
    }

    .partnership-images{
        column-gap: 15px;
    }

    .img-1 {
        width: 80px;
    }

    .img-2 {
        width: 85px;
    }

    .img-3 {
        width: 80px;
    }

    .img-4 {
        width: 77px;
    }

    .img-5{
        width: 87px; 
    }

    .img-6{
        width: 50px;
    }

    .img-7{
        width: 90px;
    }

}

@media (max-width: 768px) {
    .partnership-images {
        column-gap: 20px;
    }

    .img-1 {
        width: 80px;
    }

    .img-2 {
        width: 85px;
    }

    .img-3 {
        width: 90px;
    }

    .img-4 {
        width: 87px;
    }

    .img-5{
        width: 97px; 
    }

    .img-6{
        width: 57px; 
    }

    .img-7{
        width: 67px; 
    }

}

@media (max-width: 700px) {
    .partnership-images {
        column-gap: 10px;
    }

    .img-1 {
        width: 80px;
    }

    .img-2 {
        width: 85px;
    }

    .img-3 {
        width: 90px;
    }

    .img-4 {
        width: 87px;
    }

    .img-5{
        width: 97px; 
    }

    .img-6{
        width: 57px; 
    }

    .img-7{
        width: 67px; 
    }

}

@media (max-width: 576px) {
    .partnership-images {
        column-gap: 10px;
    }

    .img-1 {
        width: 60px;
    }

    .img-2 {
        width: 65px;
    }

    .img-3 {
        width: 70px;
    }

    .img-4 {
        width: 77px;
    }

    .img-5{
        width: 87px; 
    }

    .img-6{
        width: 47px; 
    }

    .img-7{
        width: 57px; 
    }

    .partnership h5 {
        font-size: 11px;
    }

    .partnership{
        height: 150px;
    }
}

@media (max-width: 475px) {

    .partnership-images {
        column-gap: 10px;
    }

    .img-1 {
        width: 40px;
    }

    .img-2 {
        width: 45px;
    }

    .img-3 {
        width: 50px;
    }

    .img-4 {
        width: 57px;
    }

    .img-5{
        width: 67px; 
    }

    .img-6{
        width: 27px; 
    }

    .img-7{
        width: 47px; 
    }
}

@media (max-width: 330px) {

    .partnership-images {
        column-gap: 10px;
    }

    .img-1 {
        width: 20px;
    }

    .img-2 {
        width: 25px;
    }

    .img-3 {
        width: 30px;
    }

    .img-4 {
        width: 37px;
    }

    .img-5{
        width: 47px; 
    }

    .img-6{
        width: 17px; 
    }

    .img-7{
        width: 37px; 
    }
}