@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=WindSong&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@394&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Amatic+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@1,200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist&display=swap');

*{
    margin: 0;
    padding: 0;
}
body{
    background: radial-gradient(rgb(255 224 178), #f7e9e9);
}



header{
    display: flex;
    justify-content: center;
    background: #e8e8e8ad;
    width: 100%;
    height:40px;
}
.itemsRight{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: end;
    padding-right: 30px;
}
.itemsRight i{
    color: black;
    margin-left: 30px;
    margin-right: 7px;
    font-size: 15px;
}
.itemsLeft{
    width: 80%;
    display: flex;
    justify-content: start;
    align-items: center;
}
.itemsLeft i{
    color: grey;
    margin-left: 30px;
    margin-right: 7px;
    font-size: 15px;
}
.itemsLeft a{
    text-transform: lowercase;
    font-size: 15px;
    color: black;
}


a{
    text-decoration: none;   
}




nav{
    
    display: flex ;
    align-items: center;
    background: rgb(25 25 25);
}
.nav-up{
    display: flex;
    justify-content: center;
    align-items: center;
}
.burger{
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.burger hr{
    border: none;
    margin: 2px;
    height: 2px;
    border-radius: 1px;
    width: 25px;
    background: white;
}
nav img{
    width: 70px;
    height: 94px;
    padding: 5px;
    cursor: pointer;
    margin: 0px 50px;
}
#active{
    color: grey;
    cursor: pointer;
}
nav ul{
    display: none;
}
.activenav{
    align-items: center;
    display: flex;
    margin-bottom: 20px;
}
.activenav li{
    margin-top: 20px;
}
nav ul li{
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    list-style: none;
    margin: 0px 20px;
    cursor: pointer;
    letter-spacing: 2px;
}
nav ul li a{
    color: white;
}

nav ul li a:hover, nav ul li:hover{
    color:grey;
}
nav ul ul{
    z-index: 3;
    margin-top: 0px;
    display: none;
    background: rgb(25 25 25);
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    transition: all 0.3s ease;
}
nav ul ul li{
    font-family: 'Space Grotesk', sans-serif;
    color: white;
    list-style: none;
    margin:20px 20px;
    cursor: pointer;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}
#categories:hover ul{
    transition: all 0.3s ease;
    display: flex;
}







.slider-body{
    height: 80vh;
    display: block;
    justify-content: center;
    align-items: center;
  
}
.img-slider{
    position: relative;
    width: 100%;
    height: 100%;

}
.banner{
    position: absolute;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    opacity:0;
    transition:4s;
}
.banner.active{
	z-index:1;
    opacity: 1;
    transition: 4s;
    transition-property: opacity;
}
.banner img{
    height: 100%;
    width: 100%;
   position: absolute;
}
.bg-text{
    position: relative ;
    text-align: center;
    border: 2px solid grey;
    padding: 50px 150px;
    color: white;
    
}
.bg-text h4{
    background: black;
    padding: 10px;
    font-size: 40px;
    font-weight: 100;
}
.bg-text button{
    padding: 10px;
    font-size: 40px;
    border: none;
    background: black;
    color: white;
    margin-top: 25px;
    width: 60px;
    height: 60px;
}
.bg-text button a {
    color: white;
}
.navigation{
    z-index: 2;
    position: absolute;
    display: flex;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}
.navigation .btn{
    background: grey;
    width: 12px;
    height: 12px;
    margin: 10px;
    border-radius: 50%;
    cursor: pointer;
}
.navigation .btn.active{
    background:white;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}





.title-head{
    margin: 50px 150px;
}
.title-head h3{
    text-transform: capitalize;
    font-family: 'WindSong', cursive;
    letter-spacing: 2px;
    font-size: 40px;
    font-weight: 10;
}


.container{
    width: 100%;
    line-height:40px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.content-right{
    text-transform: capitalize;
    width: 30%;
    padding: 0px 100px;
    display: flex;
    flex-direction: column;
    font-size: 30px;
    color: grey;
    text-align: left;
    font-family: 'Nanum Gothic', sans-serif;
}
.content-right a{
    margin-top: 100px;
    color: rgba(255, 166, 0, 0.87);
    text-transform: capitalize;
}
.content-left{
    width: 40%;
}
.content-left img{
    border-radius: 0 20%;
    width:100%;
    height: 100%;
} 







.col-4{
    margin-top: 40px;
    display: flex;
    width: 100%;
    height: 70vh;
}
.card{
    line-height:20px;
    color: white;
    width: 20%;
    margin: 0 30px;
    justify-items: center;
    align-items: center;
    text-align: center;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
}
.card img{
    border-radius: 0 20%;
    position: absolute;
    width: 100%;
    height: 69vh;
    opacity: 0.75;
}
.content{
    color: black;
    width: 100%;
    height: 69vh;
    border-radius: 0 20%;
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: center;
    align-items: center;
}
.content hr{
    border: none;
    width:50px;
    height: 3px;
    background: #eac602e0;
    color: #eac602e0;
    margin: 20px;
}
.c-head{
    font-family: 'Amatic SC', cursive;
    font-weight: bold;
    font-size: 25px;
    padding: 20px;
}
.c-txt{
    text-transform: capitalize;
    font-family: 'Dancing Script', cursive;
    font-weight: bold;
    padding:25px;
    font-size: 18px;
}
.content a{
    background: rgb(109 91 94 / 72%);
    color:white;
    padding: 10px;
}
.content a:hover{
    color:#eac602e0; 
}








.activity{
    background-image: url(../img/conference.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    height: 90vh;
}
.block{
    font-family: 'Quicksand', sans-serif;
    margin-top: 10px;
    width: 500px;
    text-align: center;
    background: rgba(255, 255, 255, 0.623);
    padding: 50px 25px;
}
.activity a{
    margin-bottom: 20px;
    background:  rgba(255, 166, 0, 0.87);
    color: grey;
    padding: 20px;
    transition: 0.3s ease-in-out;
}
.activity a:hover{
    color: rgba(255, 166, 0, 0.87);
    background: white;
    transition: 0.3s ease-in-out;
    transform: scale(1.05);
}








.product-card{
    line-height: 20px;
    color: antiquewhite;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-card img{
    width: 100%;
    height: 200px;
    position: relative;
}
.product-card p{
    color: antiquewhite;
    border: 1px solid white;
    background: rgba(128, 128, 128, 0.692);
    font-family: 'Quicksand', sans-serif;
    padding: 5px;
    position: absolute;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.product-card p a{
    padding: 0;
    margin: 0;
    color: antiquewhite;
}
.product-card p:hover{
    color: rgba(128, 128, 128, 0.692);
    background: rgba(255, 255, 255, 0.719);
    transition: 0.3s ease-in-out;
    transform: scale(1.05);
}
.box-body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;

}
.box{
    position: relative ;
    width:20%;
    transform-style: preserve-3d;
    animation: animate 60s linear infinite;
}
@keyframes animate{
    0%{
        transform: perspective(1000px) rotateY(0deg);
    }
    100%{
        transform: perspective(1000px) rotateY(360deg);
    }
}
.box span{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: center;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i) * 45deg)) translateZ(30vw);
    
}
.product-card{
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.slider{
    display: grid;
    height: 450px;
    width: 100%;
    position: relative;
    place-items: center;
    overflow: hidden;
    margin-bottom: 20px;
}

.slide-track{
    width: clac(250px *20);
    display: flex;
    animation: scroll 160s linear infinite;
}
.slide-track:hover{
    animation-play-state: paused;
}
@keyframes scroll{
    0%{
        transform: translateX(0);
    }
    50%{
        transform: translateX(calc(-250px * 15));
    }
    100%{
        transform: translateX(0);
    }
}
.slide{
    width: 250px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    transition: 0.5s;
}
.slide:hover{
    transition: 0.5s;
    transform: scale(1.2);
}
.slide a img{
    width: 250px;
    height: 200px;
} 
.slide-content{
    padding: 10px;
    background: white;
    color: rgba(75, 75, 75, 0.918);
    line-height: 35px;
    letter-spacing: 2px;
    font-family: 'Poiret One', cursive;
    font-size: 30px;
}
.slide-content p{
    font-size: 20px;
    line-height: 25px;
}








.useless{
    background-image: url(../img/light2.jpg);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 90vh;
    align-items: center;
    justify-content: space-evenly;
}

.useless-right{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    width: 30%;
    font-family: 'Quicksand', sans-serif;
    color: white;
}
.useless-right h1{
    font-size: 70px;
}
.useless-right p{
    padding: 20px 0px;
    text-align: center;
    text-transform: capitalize;
    font-size: 30px;
}
.useless a img{
    position: absolute;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    cursor: pointer;
}
#logo{
    transition: all 0.5s ease;
    transform: rotateY(0deg);
    opacity: 1;
}
#call{
    transform: rotateY(90deg);
    transition: all 0.5s ease;
    opacity: 0;
}
.useless a:hover #logo{
     opacity: 0;
    transition: all 0.5s ease;
    transform: rotateY(90deg);
}
.useless a:hover #call{
    opacity: 1;
    transform: rotateY(0deg);
    transition: all 0.5s ease;
}










.footer{
    background: rgb(41, 37, 37);
    color: white;
}
.footer hr{
    width: 100%;
    height: 2px;
    border: none;
    background: white;
}
.up{
    display: flex;
    margin: 0 50px;
    color: grey;
    font-family: 'Hind Siliguri', sans-serif;
    text-transform: capitalize;
}
.ft{
    display: flex;
    flex-direction: column;
    width: 25%;
    padding: 20px;
}
.ft h1{
    color: blanchedalmond;
    line-height: 50px;
    letter-spacing: 2px;
    font-family: 'Poiret One', cursive;
    font-size: 30px;
}
.ft p, .ft p a{
    font-size: 15px;
    color: white;
}
.ft h2{
    font-size: 20px;
}
.ft i{
    font-size: 30px;
    color: rgba(255, 166, 0, 0.87);
}
.ft ul{
    list-style: none;
}
.ft ul li a{
    color: grey;
}
.map{
    width: 80%;
    height: 50vh;

}
.map iframe{
    width: 100%;
    height: 100%;
}
.last{
    color: grey;
    font-family: 'Hind Siliguri', sans-serif;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    padding: 35px;
    align-items: center;
}
.last a{
    margin-left: 10px;
    text-decoration: none;
    color: white 
}
.last a:hover{
    color: rgba(255, 166, 0, 0.87);
}






/* ----------------- about us----------------- */


.about-banner{
    background-image: url(../img/about.jpg);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    width: 100%;
}
.ab-bg-text{
    background: rgba(128, 128, 128, 0.603);
    display: flex;
    text-align: center;
    border: 2px solid grey;
    padding: 50px 150px;
    color: white;
    font-family: 'Quicksand', sans-serif;
}
.ab-bg-text h4, .ab-bg-text p{
    background: black;
    padding: 10px;
    font-size: 40px;
    font-weight: 100;
}
.ab-bg-text p{
    color: rgba(255, 166, 0, 0.76);
}








.ab-box{
    display: flex;
    justify-content: center;
    align-items: center;
}
.rel-images{
    margin-top: 30px;
    width: 40%;
}
.rel-images img{
    position: relative;
    width: 200px;
    height: 200px;
    background: white;
    padding: 10px;
    border-radius: 0 20%;
}
#i3{
    transform: translate(120px, -40px);

}
#i1{
    transform: translateY(55px);
}
#i2{
    
    transform: translate(25px,35px);
}
.ab-txt{
    align-items:center ;
    text-align: left;
    /* margin: 50px 15%; */
    
    padding: 40px;
    width: 50%;
    border-radius: 50%;

}
.ab-txt p{
	font-weight: bold;
    line-height: 30px;
    font-size: 17px;
    color: black;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}

.team{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.team-row{
    margin: 20px 0;
    width: 100%;
    display: flex;
    justify-content: space-evenly;
}
.senior{
    flex-direction: column;
    width: 50%;
}
.senior .member{
    margin: 20px 0;
}
.junior .member{
    width: 35%;
}
.member{
    border-radius: 20px;
    box-shadow: 0 0 5px black;
    padding: 50px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
}
.member:hover{
    transition: all 0.2s ease-in-out;
    transform: scale(1.02);
}
.name{
    
    font-size: 35px;
    line-height: 45px;
    font-family: 'Dancing Script', cursive;
    font-weight: 700;
    letter-spacing: 2px;
}
.post{
    color: black;
    font-size: 20px;
    line-height: 30px;
    font-family: 'Urbanist', sans-serif;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.mail a{
    font-size: 18px;
    line-height: 30px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    color : black;
}


.story{
    display: flex;
    
    align-items: center;
    text-align: left;
    margin: 30px 70px;
    line-height: 30px;
}
#rev{
    flex-direction: row-reverse;
}
.story-img{
    position: relative;
    width: 50%;
    height: 600px;

}
.story-img img{
    margin: 20px;
    width: 100%;
    height: 100%;
    
}
.story-text{
    border-radius: 0 20%;
    padding: 0 50px 50px 50px;
    position: absolute;
    margin: 35%;
    background: white;
    font-weight: bold;
    width: 40%;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-transform: capitalize;
}
















/* ---------------------- gallery ---------------------  */

.gallery{
    /* background: rgba(0, 0, 0, 0.76); */
    display: flex;
    flex-direction: column;
    align-items: center; 
}
.g-row{
    margin: 20px 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.product{
    position: relative;
    border-radius: 0 20%;
    width:100%;
    height: 70vh;
    overflow: hidden;
    cursor: pointer;
}
.product img{
    position: absolute;
    width: 100%;
    height: 100%;
}
.product:hover .grid-overlay{
    transform: translateY(0%);
}
.grid-overlay{
    background: rgba(128, 128, 128, 0.884);
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(101%);
    transition: all 0.3s ease-in-out;
}
.btnn{
    border-radius: 0px;
    background: none;
    outline: none;
    font-weight: 100;
    letter-spacing: 2px;
    border: 1px solid white;
    color: white;
    text-transform: uppercase;
    padding: 10px;
    cursor: pointer;

}
.btnn:hover{
    transition: all 0.3s ease-in-out;
    background: white;
    color: #d1a39e;
    transform: scale(1.05);
}
 


/* ----------- after click overlay -------------- */
.overlay{
    z-index: 5;
    position: fixed;
    background: rgba(71,69,69,0.7);
    top: 0;
    right:0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-inner{
    display: flex;
    flex-direction: column;
    align-items:center ;
    justify-content: center;
    background: white;
    width: auto;
    padding: 20px;
    position: relative;
    opacity: 1;
}
.overlay-inner img{
    max-width: 30vw;
    max-height: 70vh;
}
.close{
    position: absolute;
    top: 3px;
    right: 10px;
    background: none;
    outline: 0;
    color: #474545;
    border: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}
.close:hover{
    color: #d1a39e;
}
.details{
    display: flex;
    justify-content: center;
    align-items: center;
}
.product-details{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.desc-det{
    align-items: center;
    padding: 20px;
    display: flex;
}
.desc-det h3{
    letter-spacing: 2px;
    font-family: 'Titillium Web', sans-serif;
    font-size: 40px;
}
.desc-det h4{
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    font-size: 20px;
}
.desc-det p{
    font-family: 'Poppins', sans-serif;
margin-left: 5px;
    font-size: 20px;
}
    .enq-btn{
    font-size: 15px;
    color: white;
    background: rgba(0, 0, 0, 0.808);
    padding: 15px;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    font-family: 'Nanum Gothic', sans-serif;
}
.enq-btn:hover{
    transition: all 0.3s ease-in-out;
    color:  rgba(0, 0, 0, 0.808);
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.808);
    transform: scale(1.01);
}





/* -------------------Enquiy---------------- */
.ban2{
    height: 70vh;
    background-image: url(../img/enquiy.jpg);
    background-size: 100% 100%;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.ask-us-form{
    background: url(../img/enq2.jpg);
    background-size: cover;
    background-attachment: fixed;
}
form p{

    background: black;
    color: antiquewhite;
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
    padding: 50px;
    font-size: 25px;
    text-align: center;
}
.form-enq{
    margin-top: 40px;
    display:flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    padding-bottom: 30px;
}
.form-section{
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items: center;
}
.form-section input{
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0px 3px 3px rgba(165, 165, 165, 0.76);
    font-size: 15px;
    border: 1px solid grey;
    margin:10px 10%;
    width:80%;
    height: 40px;
    padding: 10px ;
    border-radius: 0 30px;
}
.form-section input:focus, .form-section textarea:focus{
    background:rgba(255, 192, 203, 0.74);
}
.form-section textarea{
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
    font-size: 15px;
    box-shadow: 0px 3px 3px rgba(165, 165, 165, 0.76);
    border: 1px solid grey;
    margin:10px 10%;
    width:80%;
    height: 240px;
    padding: 10px ;
    border-radius: 0 30px;
}
.form-section button{
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
    margin-top: 30px;
    border-radius: 5px;
    border: none;
    padding: 10px 40px;
    background: orange;
    cursor: pointer;
    transition: all 0.3s ease;
    
}
.form-section button:hover{
    transition: all 0.3s ease;
    background: white;
    border: 1px solid orange;
}






/* ----------------------Get In Touch-------------------- */
.ban3{
    height: 70vh;
    background-image: url(../img/contact.jpg);
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.contact{

    width: 100%;
    display:flex;
    justify-content:center;
}
.map2 iframe{
    width: 100%;
    height: 50vh;
}
.info{
    padding: 10px;
    background: white;
    border-radius: 0 20%;
    height: 35vh;
    margin: 20px 10px;
    color: grey;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-evenly;
    align-items: center;

}
.info i{
    font-size: 30px;
    color: rgba(255, 166, 0, 0.87);
}
.info h2{
    margin: 10px;
    font-size: 20px;
}

.info p,.info a p{
    color: grey;
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    text-transform: lowercase;
    text-align: center;
}
.info hr{
    margin: 5px;
    width: 20%;
    height: 2px;
    border: none;
    background: rgba(255, 166, 0, 0.87);
    border-radius: 1px;
} 
#add{
    text-transform: capitalize;
}

.cp{
    box-shadow: 0 0 3px grey;
    background: rgb(255, 240, 240);
    border-radius:40px;
}

/* -------------AdminPanel-------------- */
/* 