@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Audiowide&family=Caprasimo&family=Delius&family=Galindo&family=Nosifer&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oldenburg&family=Rowdies:wght@300;400;700&family=Rubik+Dirt&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Audiowide&family=Caprasimo&family=Delius&family=Galindo&family=Nosifer&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oldenburg&family=Rowdies:wght@300;400;700&family=Rubik+Dirt&family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Audiowide&family=Caprasimo&family=Delius&family=Galindo&family=Nosifer&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oldenburg&family=Orbit&family=Rowdies:wght@300;400;700&family=Rubik+Dirt&family=Russo+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Akaya+Kanadaka&family=Audiowide&family=Caprasimo&family=Delius&family=Galindo&family=Nosifer&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Oldenburg&family=Orbit&family=Rowdies:wght@300;400;700&family=Rubik+Dirt&family=Rubik:ital,wght@0,300..900;1,300..900&family=Russo+One&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}
body{
    background-color: #F2F2E9;
}
.header{
    margin: auto;
    width: 86%;
    height: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    color: #524F4E;
}
.he-list{   
    height: 30px;
    display: flex;
    font-size: 14px;
    list-style:none;
    align-items: center;
    grid-gap: 10px;
}
.he1-link{
    text-decoration: none;
    color: black;

}
.he1-li , .he2-li{
     position: relative;
     padding: 0 10px;
     margin: 0 5px;
     cursor: pointer;
}
.he1-li::before,.he1-li::after{
    content:"";
    position: absolute;
    height: 0;
    background-color:#6cb33f;
    transition: .7s;
    width: 2px;
    
}
.he1-li::before{
    bottom: 0;
    left: 0;
}
.he1-li::after{
    top: 0;
    right: 0;
}
.he1-li:hover::before,.he1-li:hover::after{
    height: 100%;
}
.he1-icon{
    transition: .7s;
}
.he1-li:hover .he1-icon{
    transform: rotateY(180deg);
    color: #6cb33f;
}
.header2{
    height: 70px;
}
.he2-link{
    font-size: 19px;
    color: #524F4E;
}
.he2-link:hover ,.he2-link-center:hover {
    color: #6cb33f;
}
.he2-link-center{
    position: relative;
    font-size: 19px;
    padding: 10px;
}
.he2-link-center::before,.he2-link-center::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transition: .7s;
}
.he2-link-center::before {
    width: 100%;
    height: 93%;
    border:2px solid #6cb33f;
    border-right: hidden;
    border-left: hidden;
    transform-origin: left;
    transform: scale(0,1);
}
.he2-link-center:hover::before,.he2-link-center:hover::after{
     transform: scale(1,1);
     border-radius:10px 5px;
}
.he2-link-center::after {
    width: 98%;
    height: 100%;
    border:2px solid #6cb33f;
    border-top: hidden;
    border-bottom: hidden;
    transform-origin:bottom;
    transform: scale(1,0);
}
.cart::after{
     content: "2";
     position: absolute;
     font-size: 15px;
     top: -15px;
     left: 30%;
     width: 20px;
     height: 20px;
     border-radius:50%;
     line-height: 20px;
     text-align: center;
     color: white;
     background-color: #6cb33f;
     transition: .7s;
}
.cart:hover::after{
transform: translateY(-5px);
}
.drop-menu{
    display: flex;
    justify-content: space-between;
    position: absolute;
    width: 350px;
    height: 220px;
    background-color:#F2F2E9;
    top: 35px;
    left: -85%;
    box-shadow: 0px 1px 5px 0px #000000;
    border-radius: 10px;
    padding: 10px 30px;
    font-size: 19px;
    transform: scale(0);
    opacity: 0;
    transition: 1s;
}
.drop-li-hover:hover .drop-menu{
  transform: scale(1);
  opacity: 1;
}
.drop-li{
    padding-top: 15px;
    list-style: none;
    transition: .5s;
}
.drop-link{
    text-decoration: none;
    color: #000000;
}
.drop-li-top {
    padding-top: 8px;
    margin-bottom: 6px;
}
.drop-li:hover{
    transform: scale(1.05);
}
.drop-link:hover{
    color:#6cb33f;
}
.li-title{
    font-size: 18px;
    border-bottom: rgba(0, 0, 0, 0.8) dotted 2px;
    opacity: .8;
    padding-bottom: 5px;
    cursor:default;
}
.li-title:hover{
  color: rgba(0, 0, 0) ;
  opacity: .8;
}
.drop-li-top:hover{
 transform: scale(1);
}
.discount{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    background-color: #6cb33f;
    color: #F2F2E9;
    font-size: 17px;
    font-family:cursive;
}
.discount-link{
    padding-left: 5px;
    text-decoration: none;
    color: #524f4e;
    border-bottom: #524f4e solid 2px;
    padding-bottom: 3px;
    transition: .3s;
}
.discount-link:hover{
 letter-spacing: 2px;
}
/* //////////////////////////////////////// section1 //////////////////////////////////////////////////*/
.container{
    margin: auto;
    width: 86%;
    display: flex;
    justify-content: space-between;
    align-items: center;  
    flex-wrap: wrap; 
}
.section1{
    background-image: url(../img/panda.avif);
    background-position: center;
    background-size: cover;
}
.section1-container{
    height:90vh;
}
.section1-text{
    width: 500px;
    text-align: center;
    font-family: "Audiowide", sans-serif;
}
.section1-span{
   font-size: 40px;
   color: #ffcb59;
   padding-bottom: 18px;
}
.section1-text h1{
   font-size: 48px;
   padding-bottom: 18px;
   font-family: "Russo One", sans-serif;
   color: white;
}
.section1-text p{
    font-size: 24px;
    opacity: .9;
    margin-bottom:50px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    color: white;
}
.section1-link{
    font-size: 20px;
    padding: 15px 25px;
    background-color: #6ebf3b;
    color:white;
    text-decoration: none;
    transition: 1s;
    border: 1px solid #6ebf3b;
    font-family: "Audiowide", sans-serif;
    border-radius: 5px;
}
.section1-link:hover{
    background-color: white;
    color: #6ebf3b;
}
/* //////////////////////////////////////// section2 //////////////////////////////////////////////////*/
.section2-container{
    height: 500px;
    margin-bottom: 70px;
}
.div-1{
    position: relative;
    overflow: hidden;
    width: 30%;
    height: 400px;
}
.section2-img{
    width:100%;
    height:100%;
    transition: 1.5s;
}
.product{
    width: 100%;
    height: 30%;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    transform: translateY(65px);
    transition: 1.5s;
}
.div-1:hover .product{
    transform: translateY(20px);
}
.div-1:hover img{
    transform: scale(1.1);
}
.product-title{
    color: #ffcb59;
    text-shadow: 0px 0px 5px #000000;
    padding-bottom: 25px;
    font-size: x-large;
    font-family: "Russo One", sans-serif;
}
.product-link{
    text-decoration: none;
    color: white;
    text-shadow: 0px 0px 5px #000000;
    border-bottom: 2px solid white;
    font-size: 20px;
    padding-bottom: 4px;
    transition: 1.5s;
    font-family:cursive;
}
.product-link:hover{
    letter-spacing: 2px;
}
/* //////////////////////////////////////// section3 //////////////////////////////////////////////////*/
.section3-header{
    margin-bottom: 30PX;
    font-family: "Russo One", sans-serif;
}
.section3-title{
    font-size: 30px;
}
.section3-li{
    list-style: none;
    display: inline-block;
    padding-left: 20px;
    font-family: cursive;
}
.section3-a{
    color: #000000;
    text-decoration: none;
    font-size:20px;
    font-size: 16px;
}
.section3-a2{
    color: #6ebf3b;
    border-bottom: 4px solid #6cb33f;
    padding-bottom: 33px;
}
.section3-hr{
    width: 86%;
    margin: auto;
}
.section3-main{
    height: 600px;  
    perspective: 600px;
    font-family: "Rubik", sans-serif;
}
.section3-card ,.section5-card{
    width: 24%;
    height: 500px;
    perspective: 600px;
    position: relative;
    text-align: center;
    box-shadow: 0px 0px 11px 0px #000000;
}
.section3-img{
    width: 100%;
    height:75%;
}
.section3-card::after , .section5-card::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75%;
    z-index: 5;
    background-size: cover;
    background-position: center;
    transition: 1s;
}
.section3-card::after{
    transform-style: preserve-3d;
    backface-visibility: hidden;
     background: url(../img/download\ \(19\).jpg);
     background-position: center;
     background-size: cover;
     transform: rotateY(180deg);
     backface-visibility: hidden;
}
.section3-card:hover::after{
    transform: rotateY(0deg);
}
.section3-icons , .section5-icons{
    position: absolute;
    top:60%;
    left: 25%;  
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 1s;
    z-index: 20;
    transform:translateY(10px);
}
.section3-card:hover .section3-icons ,.section5-card:hover .section5-icons{
    opacity: 1;
    transform:translateY(0);
}
.section3-icon{
   padding: 12px;
   font-size: 25px;
   background-color: white;
   color: black;
   transition: 1s;
}
.section3-icon:hover{
   color:white;
   background-color: #6cb33f;
}
.card-desc{
    padding-top: 15px;
}
.card-desc h2{
    padding-bottom: 15px;
    cursor: pointer;
    font-size: larger;
}
.section3-card:hover h2 , .section5-card:hover h2{
    color: #6cb33f;
}
.card-desc span{
    font-size: 20px;
    padding-right: 15px;
    opacity: .8;
}
.section3-card:hover span , .section5-card:hover span{
    opacity: 1;
}
.left-right{
    position: absolute;
    font-size: 35px;
    color: #000000;
    opacity: .7;
    top: 250px;
}
.icon-right{
    right:-35px;
}
.icon-left{
    left: -35px;
}
.left-right:hover{
    opacity: 1;
}
/* //////////////////////////////////////// section4 //////////////////////////////////////////////////*/
.section4{
    margin-top: 70px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url(../img/Screenshot\ 2026-02-26\ 125400.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    box-shadow: 0px 0px 5px 2px #000000;
    color: #F2F2E9;
}
.section4-information{
    width: 50%;
}
.section4-title{
    font-family: "Audiowide", sans-serif;
    font-size: 30px;
    padding-bottom: 50px;
    padding-top: 50px;
    text-align: center;
}
.section4-para{
    font-size: 23px;
    margin-bottom: 50px;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    opacity: .8;
    text-align: center;
}
.section4-img{
    width: 90px;
    height: 90px;
    border-radius: 50%;
}
.customer{
    display: flex;
    justify-content: center;
    align-items: center;
}
.customer_icon_left,.customer_icon_right{
    position: absolute;
    font-size: 30px;
    color: #000000;
    opacity: .7;
}
.customer_icon_left{
    left: 15%;
    top: 200px;
}
.customer_icon_right{
    right: 15%;
    top: 200px;
}
.customer_icon_left:hover,.customer_icon_right:hover{
    opacity: 1;
}
.customer_text{
    padding: 0 20px;
}
.customer-title{
    font-size: 20px;
    padding-bottom: 5px;
}
.customer-para{
    font-size: 19px;
    opacity: .8;
}
/* //////////////////////////////////////// section5 //////////////////////////////////////////////////*/
.section5{
    margin-top: 70px;
    height: 700px;
    display: flex;
    flex-direction: column;
    align-items: center;  
}
.section5-container{
    position: relative;
}
.section5-title{
    font-family: "Audiowide", sans-serif;
    font-size: 30px;
    padding-bottom: 30px;
    padding-top: 30px;
    text-align: center;
}
.section5-card{
    position: relative;
    overflow: hidden;
}
.section5-card::after{
    content: "";
    position: absolute;
    background-color: aliceblue;
    background-image: url(../img/Mesker\ zoo\ entrance.jpg);
    transform: translateY(-100%);
    opacity: 0;
}
.section5-card:hover::after{
    transform: translateY(0);
    opacity: 1;
}
/* //////////////////////////////////////// section6 //////////////////////////////////////////////////*/
.section6{
    width: 100%;
    height: 800px;
    margin-top: 70px;
    background-color: #EEF5E5; 
    box-shadow: rgba(0, 0, 0, 0.44) 1px 1px 2px, rgba(0, 0, 0, 0.44) -1px -1px 2px;
}
.section6-card{
    width: 30%;
    height: 600px;
}
.section6-card img{
    width: 100%;
    height: 400px;
}
.section6-card img:hover{
    transform: scale(1.03);
    transition: .2s;
}
.section6-card h2{
    padding: 20px 0;
    font-size: 15px;
    font-weight: 400;
    opacity: .6;
}
.section6-card span{
    font-size: 21px;
    padding-right: 15px;
    opacity: .8;
}
.section6-card:hover span{
    color: #6cb33f;
}
.section6-card p{
    padding: 20px 0;
    font-size: 18px;
    opacity: .8;
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.section6-card a{
    color: black;
    font-size: 20px;
    padding-bottom: 4px;
    transition: .5s;
    display: block;
    transform-origin: center;
}
.section6-card a:hover{
    transform: scale(1.1, 1.1);
}
/* //////////////////////////////////////// section7 //////////////////////////////////////////////////*/
.section7{
    width: 100%;
    height: 200px;
    margin-top: 70px;
}
.section7-card{
    width: 24%;
    height: 200px;
    text-align: center;
}
.section7-icons{
    height: 70px;
    font-size: 50px;
    line-height: 70px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
}
.section7-icon{
    color: #6cb33f;
    transform: translateY(50px);
}
.section7-icons i{
 transition: .2s;
}
.section7-card:hover i{
    transform: translateY(-50px);
    transition: .2s;
}
.section7-ico{
    color:#6ebf3b;
    opacity: .6;
}
.section7-text h2{
   margin-bottom: 10px;
   font-size: 19px;
}
/* //////////////////////////////////////// footer //////////////////////////////////////////////////*/
footer{
    width: 100%;
    background-color: #6cb33f;
    color: white;
    display: flex;
    flex-direction: column;
}
.footer1-container , .footer2-container{
    height: 150px;
    border-bottom: white solid 1px;
}
.footer-title{
    font-size: 20px;
    margin-bottom: 20px;
}
.footer-para{
    font-size: 16px;
    opacity: .8;
}
.footer-input{
    padding: 10px;
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    font-size: 16px;
    margin-right: 7px;
}
.footer-btn{
    height: 50px;
    padding: 0 30px;
    background-color: #524F4E;
    color: white;
    border: none;
    font-size: 18px;
    transition: .5s;
    cursor: pointer;
}
.footer-btn:hover{
   transform: scale(1.1);
}
.footer-right{
    perspective: 600px;
    transform-style:preserve-3d ;
}
.footer-right i{
  font-size: 24px;
  margin: 0 5px;
  display: inline-block;
  opacity: .5;
  transition: .5s;
  cursor: pointer;
}
.footer-right i:hover{
    opacity: 1;
    font-size: 27px;
}
.footer-links h2{
    margin-bottom: 19px;
    font-size: 16px;
}
.footer2-container{
    height: 300px;
}
.footer-links a{
    display: block;
    margin-bottom: 13px;
    text-decoration: none;
    color: white;
    transition: .5s;
}
.footer-links a:hover{
    transform: scale(1.05);
}
.footer3-container{
    justify-content: center;
    height: 80px;
}
.footer3-para i{
    font-size: 20px;
    transition: .5s;
    cursor: pointer;
    animation: heart 1s infinite;
}
@keyframes heart{
    0%{
        transform: scale(.3);
        color: #1c2d11;
    }
    100%{
        transform: scale(1);
        color: #ffcb59;
    }
}