*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'roboto', sans-serif;
    scroll-behavior: smooth;
   
}

:root {
    --primary-color: #4CAF50;
    --primary-color2: #8BC34A;
    --secondary-color: #FFEB3B;
    --text-color: #F5F5F5;
    --heading-color: #212121;
    --light-text-color: #848484;
}

/* Navbar */
nav{
    background-color: var(--primary-color);
    padding: 0 6rem;
    height: 3rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 99;
}
.logo{
    display: flex;
    align-items: center;
    padding: 0 1rem;
}
.logo img{
    width: 1.5rem;
    height: auto;
    margin-bottom: .8rem;
}

.logo h1{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}
.logo h2{
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
    display: none;
}

.nav-2{
    display: flex;
    align-items: center;
}

.nav-2 ul{
    display: flex;
    align-items: center;
    list-style: none;
}
.nav-2 ul li{
    padding: 1rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    transition: all ease 0.3s;
    overflow: hidden;
    width: 100%;
}


.nav-2 ul li::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--text-color);
    left: 0;
    bottom: -100%;
    transition: all ease 0.3s;
    border-radius: 50%;
}

.nav-2 ul li:hover::after{
    bottom: 0;
    border-radius: 0;
}
.nav-2 ul li a {
    width: 100%;
    height: 100%;
    text-align: center;
    box-sizing: border-box;
    text-decoration: none;
    color: var(--text-color);
}


.nav-2 ul a{
    text-decoration: none;
    color: var(--text-color);
    z-index: 9;
    position: relative;
    transition: all ease 0.3s;
}
.nav-2 li:hover a{
    color: var(--primary-color);
}

#menu-icon, #close-icon {
    display: none;
    cursor: pointer;
}
#mobile-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; 
    right: 0;
    background-color: var(--primary-color);
    width: 100%;
    text-align: center;
    padding:  0;
    z-index: 10;
    width: 100%;
}

/*hero section*/
.hero {
    height: 50vh;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fade 15s infinite;
}

.slide1 { background-image: url('../Images/Logo/background2.jpg'); animation-delay: 0s; }
.slide2 { background-image: url('../Images/Logo/about.jpg'); animation-delay: 3s; }
.slide3 { background-image: url('../Images/Logo/background3.jpg'); animation-delay: 6s; }
.slide4 { background-image: url('../Images/Logo/background5.jpg'); animation-delay: 9s; }
.slide5 { background-image: url('../Images/Logo/background1.jpg'); animation-delay: 12s; }

.hero-overlay {
    position: relative;
    z-index: 2;
}

.hero-overlay img{
    width: auto;
    height: 18rem;
    margin-bottom: .8rem;
}

@keyframes fade {
    0%, 20% { opacity: 1; }
    25%, 100% { opacity: 0; }
}

/* News Ticker Container */
.news-ticker {
    background-color: var(--primary-color);
    padding: 10px;
    overflow: hidden;
    position: relative;
    font-size: 16px;
    font-weight: bold;
    color: var(--text-color);
    cursor: default;
  }
 
  /* Scrolling Items */
  .news-items {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 20s linear infinite; /* Default duration for larger screens */
  }
  
  .news-items span {
    display: inline-block;
    margin-right: 50px; /* Space between items */
  }
  
  /* Scrolling Animation */
  @keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
  }
  

/*service-1*/
.s-hd{
    margin: 0 6rem;
    display: flex; 
    justify-content: center;
    flex-wrap: wrap;
}
.s-hd h1{
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: bold;
    margin-top: .5rem;
}
.service-1{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 2rem;
}
#service-1 a{
    text-decoration: none;
}
#service-1 .card{
    text-align: center;
    margin: 0;
} 
#service-1 .card-img-top {
    width: 18rem;
    height: 12rem;
    border-radius: 1rem;
    object-fit: cover;
    transition: all ease 0.3s;
}
#service-1 .card-img-top:hover{
    height: 13rem;
    opacity: 0.5;
}
#service-1 .card-body h5{
    font-size: 1rem;
}


/*about section*/

.about {
    padding: 0 6rem;
    display: flex;
}

.about .left-text{
    height: 100vh;
    width: 65%;
    padding-left:  1rem;
    padding-top:  1rem;
    background-color:var(--primary-color);
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
}


.about .left-text h1{
    color: var(--secondary-color);
    font-size: 2.8rem;
    font-weight: bold;
}
.about .left-text h3{
    color: var(--secondary-color);
    font-weight: bold;
}

.about .left-text p{
    color: white;
    font-size: 1rem;
    font-weight: 300;
    padding-right: 1rem;
    line-height: 1.5rem;
}
.about .left-text .ab-details{
    margin: 1rem 4.8rem 0 0;
}
.ab-details .d-1{
    border-bottom: .5px solid var(--light-text-color);
    margin: 2rem 0;
}
.about .right-image{
    margin-top: 3rem;
    height: 100vh;
    width: 35%;
    /* background-color:red; */
}
.about .right-image img{
    width: 28vw; 
    height: 50rem; 
    object-fit: cover; 
    border-radius: 10px;
    margin: 1rem 0 0 1rem;
    border-radius: 1rem;
}

/*service section*/
.services{
    padding: 3rem 6rem 0rem 6rem;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.services h1{
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.service-item{
    /* background-color: #4CAF50; */
    height: auto;
    width: 50%;
    display: flex;
    flex-direction: column;
    /* margin-left: 10.5rem; */
    padding-bottom: 2rem;
}
.service-hd{
    display: flex;
    justify-content: center;
    margin-top: .5rem;
    color: var(--light-text-color);
}
.service-para{
    margin-top: .2rem;
    margin-left: 2rem;
    color: var(--light-text-color);
    text-align: center;
}
.service-item h3{
    color: var(--light-text-color);
    font-size: 1rem;
}
.service-hd i{
    color: var(--primary-color2);
    padding-right:.5rem ;
    font-size: 1.5rem;
}
.service-para p{
    font-size: 1rem;
    
}

/*team*/
.stack-area{
    margin: 0 0 2rem 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.stack-area .left{
    /* height: 100vh; */
    flex-basis: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.stack-area .left h1{
    /* padding: 0 0 0 6rem; */
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: bold;
}
.stack-area .left h5{
    margin: 0;
    /* padding: 0 0 0 6rem ; */
    font-size: 1rem;
    color: var(--light-text-color);
}
.stack-area .right{
    width: 60%;
    flex-basis: 70%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* justify-content: center; */
}
.stack-area .card{
    margin: 1rem;
    padding: 0;
    width: 16rem;
    height: 19rem;

}
.stack-area .right .card .c-1{
    width: 16rem;
    height: 16rem;
    border-radius: 1.5rem;
    background: url('../Images/Team/bansilal.png') no-repeat center center/cover;
}

.stack-area .right .card .c-3{
    width: 16rem;
    height: 16rem;
    border-radius: 1.5rem;
    background: url('../Images/Team/vikas.png') no-repeat center center/cover;
}
.stack-area .right .card .c-4{
    width: 16rem;
    height: 16rem;
    border-radius: 1.5rem;
    background: url('../Images/Team/vishal.png') no-repeat center center/cover;
}
.stack-area .right .card .c-5{
    width: 16rem;
    height: 16rem;
    border-radius: 1.5rem;
    background: url('../Images/Team/narinder.png') no-repeat center center/cover;
}
.stack-area .right .card .c-6{
    width: 16rem;
    height: 16rem;
    border-radius: 1.5rem;
    background: url('../Images/Team/ravi.png') no-repeat center center/cover;
}
.stack-area .right .card h1{
    padding: 0 0 0 1rem;
    font-size: 1.2rem;
    margin: 0;
    color: var(--light-text-color);
}
.stack-area .right .card p{
    padding: 0 0 0 1rem;
    font-size: 1rem;
    margin: 0;
    color: var(--light-text-color);
}
.stack-area .right .card h4{
    padding: .5rem 0 0 1rem;
    margin: 0;
    color: var(--primary-color);
}
.thanks{
    height: 75vh;
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
}
.thanks .card .c-2{
    width: 20rem;
    height: 25rem;
    border-radius: 1.5rem;
    background: url('../Images/Team/prem.png') no-repeat center center/cover;
    margin: 1rem 0;
}
.thanks .card h1{
    color: var(--primary-color);
}
/*fruit*/
.f-hd{
    margin: 0 6rem;
    /* background-color: #4CAF50; */
    display: flex; 
    justify-content: center;
    flex-wrap: wrap;
}
.f-hd h1{
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}
.fruits{
    margin: 0 6rem;
    /* background-color: #4CAF50; */
    display: flex; 
    justify-content: center;
    flex-wrap: wrap;
}

.fruits a{
    text-decoration: none;
}
.card {
    padding: 1rem;
    margin: 1rem;
    
  }
  
.card-img-top {
    width: 20rem;
    height: 15rem;
    border-radius: 1rem;
    object-fit: cover;
    transition: all ease 0.3s;
}
.card-img-top:hover{
    width: 23rem;
    /* opacity: 0.5; */
}

.card-body {
    padding: .8rem 1rem;
    
}
.card-body a{
  color: var(--primary-color);
}
.card-body h5{
    font-size: 1.5rem;
    /* padding: .5rem 1.5rem; */
    font-weight: bold;
    color: var(--light-text-color);
}
/*certificates*/
/* Certificates Section */
.certificates {
    text-align: center;
    padding: 2rem 6rem;
    background-color: #f9f9f9; /* Light background */
}

.certificates h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Carousel */
.certificates-carousel {
    justify-content: center;
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    
    
}

.certificate-slide {
    flex: 0 0 auto;
    scroll-snap-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    background-color: #fff;
    text-align: center;
    width: 20rem; /* Slide width */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.certificate-slide:hover {
    transform: scale(1.05);
}

.certificate-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.certificate-slide p {
    font-size: 1rem;
    color: #333;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
    border-radius: 10px;
}

.modal p {
    color: #fff;
    text-align: center;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* Contact Us Section */
.contact-us {
    padding: 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-us h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-us p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-form, .contact-details {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    flex: 1 1 300px;
    max-width: 500px;
}

.contact-form .form-group {
    margin-bottom: 1rem;
    text-align: left;
}

.contact-form label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form button {
    padding: 0.75rem 2rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: var(--primary-color2);
}

.contact-details h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-details p {
    font-size: 1rem;
    margin: 0.5rem 0;
    color: #555;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}

.site-footer .footer-content p {
    margin: 0.5rem 0;
}

.site-footer a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: var(--primary-color2);
}

.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.footer-links a {
    color: #fff;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color2);
}

/*main fruits*/
.m-fruit{
    display: flex;
    width: 100%;
    width:100%;

}
.m-fruit .left-data{
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content:  center;
    margin: 6rem 6rem;
}
.m-fruit .right-data{
    width: 35%;
    margin: 6rem 6rem;
}
.m-fruit h1{
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.m-fruit p{
    color: var(--light-text-color);
    font-size: 1.2rem;
}
.m-fruit .right-data img{
    /* padding:6rem 3rem; */
    height: 100%;
    width: 100%;
    object-fit: cover; 
}
.btn{
    display: flex;
    margin: 1rem 0;
}
.btn a{
    text-decoration: none;
    background-color: #25D366;
    color: white;
    border: 1px solid;
    padding: .5rem;
    border-radius: 50px;
    margin-bottom: .5rem;
}
.btn a:hover{
    background-color: white;
    color: #25D366;
    border: 1px solid #25D366;
}

/*gallery*/
.gallery{
    padding-top: 3rem;
}

.gallery .row{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(100px,1fr));
}
.gallery .column{
    grid-column: span 3;
    width: auto;
    height: auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed; /* Fixed position on the screen */
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    width: 60px; /* Button width */
    height: 60px; /* Button height */
    background-color: #25D366; /* WhatsApp green color */
    border-radius: 50%; /* Circular button */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Shadow effect */
    z-index: 1000; /* Ensure it stays on top of other elements */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth animations */
    
}

.whatsapp-float img {
    width: 30px; /* Icon size */
    height: 30px;
}

/* Hover Effect */
.whatsapp-float:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3); /* Enhance shadow on hover */
}


/*                                                MOBILE                                                    */
@media (max-width:575.98px) {
    nav{
        padding: 0 1rem 0 0;
        height: 60px;
        width: 100vw;
    }
    .logo img{
        width: 1.5rem;
        height: auto;
        margin-bottom: .8rem;
    }
    .logo h1{
        display: none;
    }
    .logo h2{
        display: block;
    }
    .nav-2 ul{
        display: none;
    }
    
    #menu-icon {
        display: block;
        font-size: 1.5rem;
        color: var(--text-color);
    }
    #close-icon {
        display: none;
        font-size: 1.5rem;
        color: var(--text-color);
    }
    .nav-2.active #menu-icon {
        display: none;
    }
    .nav-2.active #close-icon {
        display: block;
    }
    .nav-2.active #mobile-menu {
        display: flex; /* Show the mobile menu */
    }

    .nav-2 ul li a{
        padding: 1rem 10rem;
    }

    /*news*/
    .news-items{
        animation: ticker2 20s linear infinite;
      }
    @keyframes ticker2 {
        0% { transform: translateX(30%); }
        100% { transform: translateX(-100%); }
      }
    /*hero*/
    .hero-overlay img{
        height: 12rem;
    }
    .hero-overlay h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }
    
    .hero{
        height: 50vh; 
    }
    .hero-overlay p{
        font-size: .1rem;
        margin-bottom: 2rem;
    }

    /*about*/
   
    .about{
        padding: 0;
    }


    .about .right-image{
        
        display: none;
        /* background-color:red; */
    }
    .about .left-text{
        margin: 0;
        width: 100%;
        padding:.5rem .8rem;
        height: 100%;
    }
    .about .left-text .ab-details{
        margin: 1rem .5rem 0 0;
    }

    /*service*/
    .services{
        height: 100%;
        display: block;
        padding: 1rem 0;
    }
    .service-hd{
        justify-content: start;
    }
    .service-para{
        text-align: left;
    }
    .services h1{
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-align: center;
    }
    .service-item{
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-left: 0;
        padding-left: .5rem;
        padding-right:.5rem ;
        padding-bottom: 1.5rem;
    }

    /*team*/
    .stack-area{
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .left{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    .stack-area .left h1{
        padding: 0;
        font-size: 2rem;
        margin: 0;
    }
    .stack-area .left h5{
        padding: 0;
        font-size: .8rem;
        color: var(--light-text-color);
    }
    .stack-area .right{
        justify-content: center;
    }

    /*service-1*/
    #service-1{
        display: none;
    }
    /*plants*/
    .f-hd{
        margin: 0 1rem;
    }
    .f-hd h1{
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-align: center;
    }
   
    .fruits{
        /* margin: 0 1rem; */
        display: flex;
    }
    .card {
        padding: 0 .1rem;
        margin: 0;
        
    }
    .card-body{
        padding-top: 0;
        padding-bottom: 1rem;
    }
    .card-body h5{
        font-size: 1rem;
    }
    
    .fruits{
        margin: 0 1rem;

    }
    .card-img-top {
        width: 8rem;
        height: 8rem;
        border-radius: 1rem;
        object-fit: cover;
        transition: none;

    }
    .card-img-top:hover{
        width: 10rem;
    }
    /*certificate*/
    .certificates{
        padding: 0;
    }
   

    .certificates-carousel > * {
        width: 100%; /* Make child elements take up full width */
    }
    /*main fruits*/
    .m-fruit .left-data{
        width: 100%;
        margin: 4rem 0 0 0;
        padding: 0 1rem;
        display: block;
    }
    .m-fruit .right-data{
        display: none;
    }
    /*whatsapp*/
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
        margin:.5rem ;
    }

    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }
}


/*-----------------------------------------------------------------------*/
@media (min-width:576px) and (max-width:991.98px) {
    nav{
        padding: 0 1rem 0 0;
        height: 60px;
    }
    .logo img{
        width: 1.5rem;
        height: auto;
        margin-bottom: .8rem;
    }
    .logo h1{
        display: none;
    }
    .logo h2{
        display: block;
    }
    .nav-2 ul{
        display: none;
    }
    #menu-icon {
        display: block;
        font-size: 1.5rem;
        color: var(--text-color);
    }
    #close-icon {
        display: none;
        font-size: 1.5rem;
        color: var(--text-color);
    }
    .nav-2.active #menu-icon {
        display: none;
    }
    .nav-2.active #close-icon {
        display: block;
    }
    .nav-2.active #mobile-menu {
        display: flex; /* Show the mobile menu */
    }
      /*news*/
      .news-items{
        animation: ticker2 10s linear infinite;
      }
    @keyframes ticker2 {
        0% { transform: translateX(40%); }
        100% { transform: translateX(-100%); }
      }
    /*hero*/
    .hero{
        height: 100vh; 
    }

    /*about*/
   
    .about{
        padding: 0;
    }
    .about .right-image{
        display: none;
        /* background-color:red; */
    }
    .about .left-text{
        width: 100%;
        padding:.5rem .8rem;
        height: 100%;
    }
    .about .left-text .ab-details{
        margin: 1rem .5rem 0 0;
    }
    /*service-1*/
    #service-1{
        display: none;
    }
    /*service*/
    .services{
        height: 100%;
        display: block;
        padding: 1rem 0;
    }
    .services h1{
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-align: center;
    }
    .service-item{
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-left: 0;
        padding-left: .5rem;
        padding-bottom: 1.5rem;
    }
    .f-hd{
        margin: 0 1rem;
    }
    .f-hd h1{
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 1rem;
        text-align: center;
    }
   
    .fruits{
        margin: 0 1rem;
        display: flex;
    }
    .card {
        padding: 0 .5rem;
        margin: 0;
        
    }
    .card-body{
        padding-top: 0;
        padding-bottom: 1rem;
    }
    .card-body h5{
        font-size: 1rem;
    }

    /*team*/
    .stack-area{
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .left{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    .stack-area .left h1{
        padding: 0;
        font-size: 2rem;
        margin: 0;
    }
    .stack-area .left h5{
        padding: 0;
        font-size: .8rem;
        color: var(--light-text-color);
    }
    .stack-area .right{
        justify-content: center;
    }

    /*fruits*/
    .fruits{
        margin: 0 1rem;
        justify-content: space-between;
    }
    .card-img-top {
        width: 10rem;
        height: 8rem;
        border-radius: 1rem;
        object-fit: cover;
        transition: none;

    }
    .card-img-top:hover{
        width: 10rem;
    }
    .m-fruit .left-data{
        width: 100%;
        margin: 4rem 0 0 0;
        padding: 0 1rem;
        display: block;
    }
    .m-fruit .right-data{
        display: none;
    }
}

/*                                                large-screen                                                    */
@media (max-width: 1900px) {
    .about .left-text{
        height: 100%;
    }
    .services{
        height: 100%;
    }
}

