

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* Body */
body{
    font-family: Poppins, Arial, Helvetica, sans-serif;
    
}

p{
    font-size: 18px;
    color:#1e1e1eb8 ;

}

/* navbar */

nav{
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

    .nav-left{
        margin: 43px 0;
        display: flex;
        justify-content: space-between;
        gap: 120px;


        .nav-links{
            display: flex;
            gap: 48px;

            a{
                font-size: 18px;
                color: #1E1E1E;
                text-decoration: none;
            }
        }
    }

    .nav-right{
        display: flex;
        gap: 51px;
    }


    @media (max-width:768px){

        .nav-left{

            .nav-links{
                display: none;
            }
        }


    }}




/* Hero Section */
.hero {
    width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background-color: #C1DCDC;
    border-radius: 40px;
    padding: 60px 80px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
}

@media (max-width:992px){

.hero{
    flex-direction:column;
    text-align:center;
    padding:40px;
}

.hero-content h1{
    font-size:40px;
}

.hero-stats{
    justify-content:center;
}

.hero-image img{
    width:220px;
    left:0;
    top:0;
}

}



.hero-content {
    flex: 1;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    /* color: var(--dark-color); */
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.stat-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    /* color: var(--dark-color); */
}

.stat-label {
    font-size: 18px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background-color: rgba(0,0,0,0.1);
}

.search-bar {
    display: flex;
    background: white;
    padding: 10px;
    border-radius: 15px;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 15px 20px;
    outline: none;
    font-family: inherit;
    font-size: 16px;
}

.search-bar button {
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 18px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 300px;
    height: auto;
    z-index: 1;
    position: relative;
    top: -30px;
    left: 35px;
}

.hero-image .postion{
    width:350px;
    height: 300px;
    background-color: #000000;
    border-radius:100% 100% 0 100% ;
    position: absolute;
}

section{
    width: 90%;
    margin: 0 auto;
    .selling-plant{
        display: flex;
        justify-content: center;
        gap: 12px;

        .head-left{

            h2{
                font-size: 32px;
                font-weight: bold;
                color:#000000 ;

            }
            p{
                margin: 15px 0;
            }

            button{
                width: 168px;
                height: 51px;
                font-size: 18px;
                border: none;
                border-radius: 8px;
                background-color: #C1DCDC;
            }

        }

        .cards{
            display: flex;
            
            .card{
                width: 299px;
                height: 436px;
                transition: 2s;

                &:hover{
                    transform: scale(1.1);
                }
                
    
                img{
                    width: 249px;
                    height: 313px;
                    border-radius: 12px;
                    
                }
    
                h3{
                    font-size: 18px;
                    font-weight: bold;
                    color: #000000;
                    margin: 8px 0;
                }
    
               
            }
        }    
    }

    @media (max-width:992px){

.selling-plant{
    flex-direction:column;
    align-items:center;

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

.cards{
   flex-direction: column;
   align-items: center;
   

   .card{
    width:100%;
    max-width:300px;
    
}
    
}



}

}



section{
    /* width: 90%;
    margin: 0 auto; */
    .head{
        text-align: center;
    }
    .about-us{
        text-align: center;
        h2{
            font-size: 32px;
            color: #1E1E1E;
            margin: 113px 0 12px 0;
        }

        p{
            margin-bottom: 48px;
        }
        .content-about{
            display: flex;
            justify-content: center;
            align-items: center;

            .card-icon{
                width: 400px;
                height: 213px;
                padding: 20px;
                display: flex;
                flex-direction: column;
                align-items: center;
                
                .image{
                    width: 96px;
                    padding: 20px;
                    border-radius: 50%;
                    align-items: center;
                    background-color: #C1DCDC;
                }

                h4{
                    font-size: 18px; 
                    color: #1E1E1E;
                    margin: 24px 0 12px 0;
                }

            }
        }
    }
    @media (max-width:768px){

.content-about{
    flex-direction:column;
    gap:30px;
}

.card-icon{
    width:100%;
}

}

}





/* Section */
.categories{
    text-align:center;
    padding:60px 40px;
    

}


.categories p{
    margin: 20px 0;
}

.subtitle{
    color:gray;
    margin-bottom:40px;
}


.categories-container{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:40px;
    
}

.category-card{
    width:260px;
    text-align:center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.middle-card {
    margin-top: 30px; 
}

.category-card:hover{
    transform: translateY(-10px);
   
}


.category-card img{
    width:100%;
    height:360px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}


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


.category-card h3{
    margin-top:15px;
    font-size:18px;
    font-weight:600;
}

.category-card p{
    margin-top:10px;
    font-size:14px;
    color:#555;
}

.category-card button{
    margin-top:25px;
    padding:10px 22px;
    background-color:#C1DCDC;
    border:none;
    border-radius:25px;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    transition:  0.3s;
}

.middle-card img{
    height:350px;
}

@media (max-width:768px){

.categories-container{
    flex-direction:column;
    align-items:center;
}

.category-card{
    width:100%;
    max-width:300px;
}

}


/* Contact Section */

.contact {
    padding: 80px 10%;
    text-align: center;
    
}

.contact h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    color: gray;
    margin-bottom: 50px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}


/* Form */

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: 320px;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-form button {
    padding: 12px;
    border: none;
    background: #2a9d8f;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #21867a;
}


/* Info */

.contact-info {
    text-align: left;
    max-width: 300px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #555;
}

@media (max-width:768px){

.contact-container{
    flex-direction:column;
    align-items:center;
}

}

/* Footer */
.footer {
    background-color: #C1DCDC;
    padding: 80px 0 40px;
    border-radius: 40px 40px 0 0;
}

.footer-top {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.footer-brand p {
    margin: 20px 0;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-color);
    transition: 0.3s;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-group h5 {
    font-size: 20px;
    margin-bottom: 25px;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group a {
    text-decoration: none;
    color: var(--accent-color);
    transition: 0.3s;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.1);
    color: var(--accent-color);
}

@media (max-width:768px){

.footer-top{
    text-align:center;
}

.footer-links{
    flex-direction:column;
    gap:30px;
}

.link-group ul{
    padding:0;
}

.social-links{
    justify-content:center;
}

}

