/* General */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,700;1,100;1,200;1,300;1,400;1,700&display=swap');
*
{
    box-sizing: border-box;
    -moz-box-sizing: border-box;   
    margin: 0;
    padding: 0;
    
    font-family: 'Raleway', sans-serif;
    font-family: 'Philosopher', sans-serif;
}
:root
{
    --box-shadow: 0.1rem -0.07rem 1.5rem 0.3rem rgb(0 0 0 / 26%);
    --black-color:#000;
    --white-color:#fff;
    --pink-color:rgb(233, 5, 149);
    --yellow-color: #c79c1c;
    --yellowsecondary-color:#e3c758;
    --primary-color:rgb(246, 14, 14);
    --heading-font: 'Raleway', sans-serif;
    --pcolor:rgb(93, 92, 92);
}

html{
    font-size: 62.5%;
    font-weight: 400;
    overflow-x: hidden;
   
   
    line-height: 1.5;
    overflow-x: hidden;
    background: #fff;
}

section{
    padding:2rem 10%;
}
html::-webkit-scrollbar-thumb{
    background: var(--main-color);
    border-radius: 5rem;
}
.heading{
    text-align: center;
    padding-bottom: 2rem;
    padding-top:8rem ;
    /* all headings color*/
    text-transform: uppercase;
    font-size: 4rem;
   font-family: var(--heading-font);
}

.heading span{
    color:var(--pink-color);
    text-transform: uppercase;
    font-family: var(--heading-font);
}
.founder{
    color:var(--pink-color);
   
}
/* Navbar CSS  */
.header{ /* navbar background */
    width: 100%;
    position: fixed;
    
    top:0; left: 0; right:0;
    z-index: 10000;
    padding: 0.1rem 3rem;
    background-image: linear-gradient(rgba(244, 218, 221, 0.6), rgb(234, 228, 228,0.6)), url(images/banner/star1.jpg);
    box-shadow: 0 .5rem 1.5rem rgba(238, 51, 51, 0.7);
    background-color: var(--white-color); 
}

.header .navbar-brand img{ /* logo */
    padding-top: 0;
    width:30rem;
    height: auto;
    object-fit: contain;
}

.header .navbar-nav .nav-link{ /* menu links */
    color:var(--black-color);
    font-family: var(--heading-font);
    text-transform: uppercase;
    font-size: 1.6rem;
    font-weight: 800;
    padding: 2rem 2rem;
    margin: 1 0.2rem;
}

.header .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.header .navbar-toggler{ /* styling bar icon in responsive menu */
    color:var(--primary-color);
    font-size: 3rem;
    height: 2.7rem;
    padding: .5rem;
    float: right;
    

}

.header .navbar-toggler:focus{
    outline: none;
    box-shadow: none;
}
.btn{
    color:var(--black-color);
    text-transform: uppercase;
    background-color: var(--yellow-color);
    border-radius: 5rem;
    padding: 0.9rem 3rem;
    font-family: var(--secondary-font);
    font-weight: 800;
    font-size: 1.5rem;
    margin-top: .5rem;
    transition: all .3s linear;
    box-shadow: 0 0.063rem 0.4rem 3 rgba(0,0,0,.3);
}
/* home section styling */

.home .content{
    text-align: center;
    padding-top:11rem;
    margin:2rem auto;
    max-width: 100rem;
}
.home .content img{
    width:70%;
    } 
.home .content h3{
    color: var(--pink-color);
    font-size: 4rem;
    font-weight: 600;
    font-family: var(--heading-font);
}

.home .home-slider .swiper-slide{
    overflow: hidden;
    border-radius: .5rem;
    height: 50rem;
    width:35rem;
}

.home .home-slider .swiper-slide img{
    height:100%;
    width:100%;
    object-fit: cover;
}

/* About Us Section Styling */

.about .row{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.about .row .image{
    flex:1 1 45rem;
    padding:1rem;
}

.about .row .image img{ 
    width: 100%;
    border-radius: .5rem;
    /*border:1rem solid #333;*/
}

.about .row .content{
    flex:1 1 45rem;
}
.about h1{
    font-size: 4rem;
    font-weight:bolder;
    color:var(--black-color);
    font-family: var(--heading-font);

}
.about .row .content h3{
    font-size: 3.4rem;
    font-weight:bolder;
    color:var(--black-color);
    font-family: var(--heading-font);
}

.about .row .content p{
    font-size: 1.6rem;
    color:var(--pcolor);
    padding:1rem 0;
    line-height: 2;
}
/* about1 section*/
.about1 .section{
	width: 100%;
	min-height: 70vh;
	background-color:var(--white-color);
}
.about1 .container{
	width: 100%;
	display: flex;
    flex-direction: column;
	margin:auto;
    text-align: center;
	padding-top: 2rem;
}
.about1 .container h3{
    font-size: 3.5rem;
}
.about1 .content-section{
	width: 100%;
}
.about1 .image-section{	

	width: 100%;
    
}
.about1 .image-section img{
	width: 20rem;
	height: auto;
    border-radius: 50%;
}
.about1 .content-section .title{
	text-transform: uppercase;
	font-size: 28px;
}
.about1 .content-section .content h3{
	margin-top: 20px;
	color:#5d5d5d;
	font-size: 21px;
}
.about1 .content-section .content p{
    font-size: 1.6rem;
    color:var(--pcolor);
    padding:1rem 0;
    line-height: 2;
}

@media screen and (max-width: 768px){
	.about1 .container{
	width: 80%;
	display: block;
	margin:auto;
	padding-top:50px;
}
.about1 .image-section img{
	width:75rem;
	height: auto;
    border-radius: 50%;
}
.about1 .content-section{
	float:none;
	width:100%;
	display: block;
	margin:auto;
}
.about1 .image-section{
	float:none;
	width:100%;
	
}
.about1 .image-section img{
	width: 100%;
	height: auto;
	display: block;
	margin:auto;
}
.about1 .content-section .title{
	text-align: center;
	font-size: 19px;
}


}
/* Vision Mission Section */
.ViMi{
    width: 100%;
}
.ViMi .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap:2rem;   
    justify-content: center;
    text-align: center;
}

.ViMi .box-container .box{
    border-radius: 3rem;
    background:var(--white-color);
    text-align: center;
    padding: 2.5rem;
    border: 1px solid red;
}

.ViMi .box-container .box img{
    height: 6.8rem;
    width: 7rem;
    line-height: 6rem;    
    font-size: 2.5rem;
    background:var(--main-color);
    color:#fff;
}

.ViMi .box-container .box h3{
    font-size: 2rem;
    color:var(--pink-color);
    padding:1rem 0;
}

.ViMi .box-container .box p{
    font-size: 1.8rem;
    color:var(--pcolor);
    line-height: 1.8;
}


/* Services Styling */
.service{
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.service .box-container{
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
    gap:1.5rem;
}

.service .box-container .box{
    border-radius: .5rem;
    background:var(--white-color);
    text-align: center;
    padding:.5rem;
}

.service .box-container .box i{
    height: 6rem;
    width: 6rem;
    line-height: 6rem;
    border-radius: 50%;
    font-size: 2.5rem;
    background:var(--main-color);
    color:var(--primary-color);
}

.service .box-container .box h3{
    font-size: 2.4rem;
    font-weight: 600;
    color:var(--primary-color);
    padding:.5rem 0;
}

.service .box-container .box img{
    width:25rem;
    height: 25rem;
}
/* our work */
.Designs{
    width: 100%;
    margin: auto;
    text-align: center;
    justify-content: center;
    padding-top: 1rem;
    padding-bottom: 1rem;

    
}
.carousel-cell {
    width:100%;
    height: 90vh;
  margin-right: 10px; 
  border-radius: 5px;
  counter-increment: gallery-cell;
   
}

.carousel-cell img {
	width: 65%;
	height: auto;
    border: 1px solid rgb(0,0,0,0.4);
    border-radius: 2.5rem;    
}
.carousel-cell video {
	width: 60rem;
	height: 60vh;
    border: 1px solid rgb(0,0,0,0.4);
    border-radius: 2.5rem;
    padding-bottom: 1rem;    
}
.carousel-cell::before{
display: block;
  text-align: center;
  content: counter(gallery-cell);
  line-height: 10px;
  font-size: 60px;
  color: white;
}
.main-carousel .flickity-prev-next-button {
    top: 50%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    transform: translateY(-50%);
}
.main-carousel .flickity-button {
    position: relative;
    background: hsla(0,0%,100%,.75);
    border: none;
    color: #333;
}



/*video testimonial*/
.vslider{
    width: 100%;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-bottom: 3rem;
}
.vslider video{
    width: 80%;
    height: auto;
    object-fit: cover;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.vslider .navigation{
  padding-top: 3rem;
    display: grid;
    grid-template-columns: auto auto auto auto;
    gap:1.5rem;        
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
}
.vslider .navigation li img{
    width: 15rem;
    height: 11rem;
    object-fit: contain;
    transition: 0.5s;
    border: 1px solid var(--black-color);
    border-radius: 4px;   
}
.vslider .navigation li img:hover{
   transform: scale(120%);

}
.vslider .navigation li {
    
    list-style: none;
    cursor: pointer;
    margin: 0 10px;
    padding: 3px 3px 0;
}
.vslider h1{
    font-size: 3rem;
}

.video-caption{
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1rem;
}
#nam{
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--pink-color);
    text-transform: uppercase;
}
/* whatsapp intergration styling */
.whatsapp-icon{
    position: relative;
}
.whatsapp-icon .whatsapp{
    position: fixed;
    width: 8rem;
    z-index: 1;
    bottom: 2rem;
    right: 1rem;    
}
.whatsapp-icon .whatsapp img{
    width: 6rem;
}
.footer{
    width:100%;
    background:white;
    box-shadow: 0 .5rem 3.5rem rgba(238, 51, 51, 0.7);
}

.footer .box-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap:1.5rem;
}

.footer .box-container .box h3{
    font-size: 2.5rem;
    padding:1rem 0;
    color:var(--black-color);
    font-weight: 600;
}

.footer .box-container .box a{
    display: block;
    font-size: 1.8rem;
    padding:1rem 0;
    color:var(--pink-color);
    text-decoration:none;
}
.footer .box-container .box p{
    display: block;
    font-size: 1.8rem;
    padding:1rem 0;
    color:var(--pink-color);
    text-decoration:none;
}
.footer .box-container .box a i{
    padding-right: .5rem;
    color:var(--black-color);
}
.footer .box-container .box p i{
    padding-right: 1rem;
    color:var(--black-color);
}
.footer .box-container .box a:hover i{
    padding-right: 1.5rem;
    color:var(--black-color);
}

.footer .credit{
    background-color: #fff;
    text-align: center;
    border-top: .1rem solid #222;
    color:var(--black-color);
    padding:2rem;
    padding-top: 2.5rem;
    margin-top: 1rem;
    font-size: 2rem;
}

.footer .credit span{
    color:var(--main-color);
}
.fa-heart{
    color: #f44336;
}

/*-----------------------------------------------media queries -------------------------------------------*/

/*------media query for 991 -----*/
@media (max-width:991px){

    html{
        font-size: 55%;
    }

    .header{
        padding:1.2rem 1.5rem;
    }

    section{
        padding:2rem;
    }
     /* Navbar CSS */
   
     .header .navbar-brand img{ /* logo */
        padding: 5rem;
        width:30rem;
        height: auto;
        object-fit: contain;
    }
    .vslider video{
        top: 13rem;
        left: 5%;
        width: 90%;
        height: auto;
    }
    .vslider .navigation{
       position: relative;
        display: grid;
        grid-template-columns: auto auto auto ;
        gap:1.5rem;        
        justify-content: center;
        align-items: center;
        padding-bottom: 5rem;
    }

}


/*--- media for 450px---*/
@media (max-width:450px){
    html{
        font-size: 50%;
    }
    .home .home-slider .swiper-slide{
        width: 27rem;
    }
    .home .content{
        text-align: center;
     padding-top: 18rem;    
    }
    .home .content img{
        width:90%;
    } 
    .home .content h3{
        font-size: 3.5rem;
    } 
}





/* Media Query 590px */
@media (max-width:590px){
    html{
        font-size: 60%;
    }
    .home .content h3{
        font-size: 3.5rem;
    }
    .vslider{
        width: 100%;
    }
    .vslider video{
        width: 100%;
        top: 13rem;
        height: auto;
    }
    .vslider .navigation{
       position: relative;
        display: grid;
        grid-template-columns: auto auto auto ;
        gap:1.5rem;        
        justify-content: center;
        align-items: center;
        padding-bottom: 5rem;
    }
    .header{ /* navbar background */
        padding: 0.1rem .1rem;
        position:fixed;
    }
    .vslider h1{
        font-size: 3rem;
    }
    .header .navbar-brand img{ /* logo */
        padding-top: 0;
        width:30rem;
        height: auto;
        object-fit: contain;
    }
    .service{
        width: 100%;
    }
    .service .box-container .box{
        width: 100%;
        
    }
    .service .box-container{
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
        gap:1.5rem;
    }
    .service .box-container .box p{
        width: 100%;
    }
    .service .box-container .box p img{
        width:100%;
        height:40vh;
    }
    .Designs{
        width: 100%;
    }
    .carousel-cell {
        width:100%;
        height: 40vh;
       
    }
    
    .carousel-cell img {
        width: 100%;
        height: auto;
       
    }
    .carousel-cell::before{
        width: 1rem;
       display: block;
      text-align: center;
      content: counter(gallery-cell);
      line-height: 10px;
      font-size: 10px;
      color: white;
    }
    .main-carousel .flickity-prev-next-button {
        display: none;
        width: 44px;
        height: 55px;
        border-radius: 50%;
        transform: translateY(-50%);
    }
   .main-carousel .flickity-button {
        display: none;
        position: relative;
        background: hsla(0,0%,100%,.75);
        border: none;
        color: #333;
    }
    .main-carousel .flickity-page-dots {
        position: absolute;
        width: 100%;
        bottom: -45px;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
        line-height: 1.5rem;
    }
    .carousel-cell video {
        width: 90%;
        height: 45vh;
        border: 1px solid rgb(0,0,0,0.3);
        border-radius: 2.5rem;
      
    }
    .video-caption{
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem;
        position: relative;
        padding-top: 15rem;
    }
    #nam{
        font-size: 3.5rem;
        font-weight: 400;
        color: var(--pink-color);
        text-transform: uppercase;
    }
    .whatsapp-icon .whatsapp{
        position: fixed;
        width: 4rem;
        z-index: 1;
        bottom: 3rem;
        left: 2.5rem;    
    }
      .home .home-slider .swiper-slide{
        width: 30rem;
    }
    .home .content img{
        width:90%;
    } 
}




/*------ media query for 360 px ----*/
@media (max-width:360px){
    html{
        font-size: 60%;
    }

    .home .content{
        text-align: center;
        padding-top: 18rem;
    }
    .home .content h3{
        font-size: 3.5rem;
    }
  
    .home .home-slider .swiper-slide{
        width: 27rem;
    }

    .vslider video{
        position: absolute;
        top: 25rem;
        left: 5%;
        width:90%;
    }
 
    .header .navbar-brand img{ /* logo */
        padding-top: 0;
        width:30rem;
        height: auto;
        object-fit: contain;
    }
    .service{
        width: 100%;
    }
    .service .box-container .box{
        width: 100%;
        
    }
    .service .box-container{
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(27rem, 1fr));
        gap:1.5rem;
    }
    .service .box-container .box p{
        width: 100%;
    }
    .service .box-container .box p img{
        width:100%;
        height:40vh;
    }
    .about1 .image-section img{
        width: 18rem;
        height: auto;
        border-radius: 50%;
    }
    .about1 h3{
        font-size: 2.5rem;
    }
    .vslider video{
        position: absolute;
        top: 25rem;
        left: 5%;
        width:90%;
    }
    .vslider{
        width: 100%;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        padding-bottom: 4rem;
    }
    .vslider .navigation{
        top: 1rem;
        position: relative;
        display: grid;
        grid-template-columns: auto auto;
        gap:1.5rem;        
        justify-content: center;
        align-items: center;
        padding-bottom: 20rem;
      overflow: scroll;
    }
    .vslider h1{
        font-size: 3rem;
    }
    .whatsapp-icon{
        position: relative;
    }
    .whatsapp-icon .whatsapp{
        position: fixed;
        width: 4rem;
        z-index: 1;
        bottom: 1.5rem;
        left: 1.5rem;
        float: left;    
    }
    .whatsapp-icon .whatsapp img{
        width: 6rem;
    }

    .Designs{
        width: 100%;
    }
    .carousel-cell {
        width:100%;
        height: 40vh;
       
    }
    
    .carousel-cell img {
        width: 100%;
        height: auto;
       
    }
    .carousel-cell::before{
        width: 1rem;
       display: block;
      text-align: center;
      content: counter(gallery-cell);
      line-height: 10px;
      font-size: 10px;
      color: white;
    }
    .main-carousel .flickity-prev-next-button {
        display: none;
        width: 44px;
        height: 55px;
        border-radius: 50%;
        transform: translateY(-50%);
    }
   .main-carousel .flickity-button {
        display: none;
        position: relative;
        background: hsla(0,0%,100%,.75);
        border: none;
        color: #333;
    }
    .main-carousel .flickity-page-dots {
        position: absolute;
        width: 100%;
        bottom: -45px;
        padding: 0;
        margin: 0;
        list-style: none;
        text-align: center;
        line-height: 1.5rem;
    }
    .carousel-cell video {
        width: 75%;
        height: auto;
        border: 1px solid rgb(0,0,0,0.4);
        border-radius: 2.5rem;
      
    }
    .video-caption{
        width: 90%;
        text-align: center;
        justify-content: center;
        padding: 1rem;
        position: relative;
        padding-top: 25rem;
    }
    #nam{
        font-size: 3.5rem;
        font-weight: 400;
        color: var(--pink-color);
        text-transform: uppercase;
    }
    .home .content img{
    width:90%;
    } 
}
