
/* google fonts  */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* color  */
:root{
    --wight:#fff;
    --red:#ee3623;
    --blue:#3355ff;
}

*{
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-transform: capitalize;
    outline: none;
    box-sizing: border-box;
    transition: all .2s linear;
}

*::selection{
    background: var(--red);
    color: var(--wight);
}

html{
    scroll-behavior: smooth;
    font-size: 62.5%;
    overflow-x: hidden;
}

/*------------------------- button  */
button{
    height: 4rem;
    width: 20rem;
    border-radius: 5rem;
    background: var(--red);
    color: var(--wight);
    font-size: 2rem;
    cursor: pointer;
    transition: all .2s linear;
    border: none;
    box-shadow: 0 .3rem .1rem rgba(0,0,0,.3);
}

button:hover{
    border: solid 2px var(--red);
    color: var(--red);
    background-color: var(--wight);
    letter-spacing: .2rem;
}

/*---------------------------- heading  */
.heading{
    font-size: 4rem;
    color: var(--red);
    text-align: center;
    padding: 0 1rem;
    padding-top: 6rem;
    letter-spacing: .2rem;
    font-weight: 500;
}

/* ------------------------------title  */
.title{
    font-size: 2rem;
    padding: 0 1rem;
    text-align: center;
    font-weight: 400;
    color: #333;
}



/*------------------------ header section start  */
header{
    position: fixed;
    width: 96%;
    background: var(--wight);
    top: 2rem;
    left: 50%;
    transform: translatex(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    z-index: 1000;
    transition: .2s linear;
}

/* logo name  */
header .logo{
    color: var(--blue);
    font-size: 2.5rem;
    text-transform: uppercase;
}

header .logo i{
    font-size: 3rem;
    color: var(--red);
    padding: 0 1rem;
}

/* navbar links */
header .navbar ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    list-style: none;
}

header .navbar ul li{
    margin: 0 1rem;
}

header .navbar ul li a{
    font-size: 2rem;
    color: var(--red);
}

header .navbar ul li a::after{
    content: '';
    width: 0%;
    height: 2px;
    background: var(--red);
    display: block;
    margin: auto;
    transition: .3s;
}

header .navbar ul li a:hover::after{
    width: 100%;
}




header .fa-bars{
    font-size: 3rem;
    cursor: pointer;
    color: var(--red);
    transition: .2s linear;
    display: none;
}

.header-active{
    top: 0;
    width: 100%;
    box-shadow: .1rem .3rem rgba(0,0,0,.3);
}



/*------------------------ header section end  */









/*--------about section start-------*/

.about .row{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.about .row .images img{
    height: 70vh;
    width: 50vw;
    border-radius: .5rem;
}

.about .row .content{
    padding-left: 5rem;
}

.about .row .contact h3{
    font-size: 3rem;
    color: var(--red);
}
.about .row .contant p{
    font-size: 1.6rem;
    letter-spacing: .1rem;
    color: #333;
    padding: 1rem;
}

/*-----about section end-----*/




/*----------service section--start-----------*/
.service .box-container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.service .box-container .box{
    height: 25rem;
    width: 25rem;
    background-color: var(--wight);
    text-align: center;
    border-radius: 1rem;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
    margin: 2rem;
    cursor: pointer;
}

.service .box-container .box i{
    text-align: center;
    color: var(--wight);
    background: var(--red);
    font-size: 7rem;
    height: 50%;
    width: 100%;
    line-height: 6rem;
    padding: 2rem 0;
    transition: .2s linear;
}

.service .box-container .box h3{
    font-size: 2rem;
    color: var(--red);
    padding: 1rem 0;
    transition: .2s;
}

.service .box-container .box p{
    font-size: 1.3rem;
    padding: .7rem 2rem;
    color: #666;
}

.service .box-container .box:hover{
    box-shadow: 0 .5rem .8rem rgba(0,0,0,.5);
}

.service .box-container .box:hover i{
    background: var(--blue);
    color: var(--wight);
    transition: .2s;
}

.service .box-container .box:hover h3{
    color: var(--blue);
    transition: .2s;
}


/*----------service end-------------*/

/*----discription---*/
.service .box-part2{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}


.service .box-part2 .box{
    height: 25rem;
    width: 45rem;
    background-color: var(--wight);
    text-align: center;
    border-radius: 0rem;
    box-shadow: 0 .3rem .5rem rgba(252, 251, 251, 0.3);
    margin: 1rem;
    cursor: pointer;
}

.service .box-part2 .box i{
    text-align: center;
    color: var(--wight);
    background: var(--red);
    font-size: 7rem;
    height: 50%;
    width: 100%;
    line-height: 6rem;
    padding: 0rem 0;
    transition: .2s linear;
}

.service .box-part2 .box h3{
    font-size: 2rem;
    color: #171515;
    padding: 1rem 0;
    transition: .2s;
}

.service .box-part2 .box p{
    font-size: 14px;
    padding: .7rem 0rem;
    color: #666;
}

/*--discription band */



/*---term&policy section end----*/
.terms .heading{
    color: #000;
    font-weight: 500;
 }
 .terms .content{
    text-align: center;
    color: #171515;
    font-size: 2rem;
    text-transform: none;
 }


/*--terms&policy section end----*/









/*----project section start--*/
.project{
    background: #f0f0f0;
}

.project .card-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.project .card-container .card{
    padding: 0rem;
    margin: 2rem;
    background: var(--wight);
    text-align: center;
    width: 50rem;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.project .card-container .card img{
  
    width: 100%; 
    object-fit: cover;
}

.project .card-container .card h3{
    font-size: 2rem;
    color: var(--blue);
    padding: .5rem 0;
}


.project .card-container .card h2{
   color: #1c1919; 
}


.project .card-container .card p{
    font-size: 1.7rem;
    color: #666;
}

.project .card-container .card .icons a{
    font-size: 1.9rem;
    color: var(--red);
    padding: 1.5rem .5rem;
}

.project .card-container .card .icons a:hover{
    color: var(--blue);
}

/*---project section end----*/




/*-------------------------teem section start  */
.teem{
    background: #f0f0f0;
}

.teem .card-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.teem .card-container .card{
    padding: 2rem;
    margin: 2rem;
    background: var(--wight);
    text-align: center;
    width: 28rem;
    box-shadow: 0 .3rem .5rem rgba(0,0,0,.3);
}

.teem .card-container .card img{
    height: 30rem;
    width: 100%;
    object-fit: cover;
}

.teem .card-container .card h3{
    font-size: 2rem;
    color: var(--blue);
    padding: .5rem 0;
}


.teem .card-container .card h2{
   color: #1c1919; 
}


.teem .card-container .card p{
    font-size: 1.7rem;
    color: #666;
}

.teem .card-container .card .icons a{
    font-size: 1.9rem;
    color: var(--red);
    padding: 1.5rem .5rem;
}

.teem .card-container .card .icons a:hover{
    color: var(--blue);
}



/*-----------krish story--------------   */
.teem .krish .row{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.teem .krish .row .images img{
    height: 70vh;
    width: 50vw;
    border-radius: .5rem;
}

.teem .krish .row .content{
    padding-left: 5rem;
}

.teem .krish .row .contact h1{
    font-size: 2rem;
    color: var(--red);
}
.teem .krish .row .contant p{
    font-size: 1.6rem;
    letter-spacing: .1rem;
    color: #333;
    padding: 1rem;
}


/*-----------krish story end--------------   */








/*-------------------------teem section end  */




/*tabs work start  */
.table{
    height: 105vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #c6d63977;
    font-family: 'Poppins', sans-serif;}


    .table .container15{
        max-width: 1000px;
        width: 100%;
    }

.table .container15 h2 {
    font-size: 1.5rem;
    color: #3e4455;
    margin-bottom: 1rem;
}

.table .container15 p {
    color: #3e4455;
    font-size: 15px;
}
 

.table .container15 input[type="radio"] {
    display: none;
}

 .table .container15 label {
    padding: 10px 45px;
    background-color: #d5d5d5;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    transition: .4s;
}

.table .container15 .tab-content {
    display: none;
    margin: 20px 0;
}

.table input[type="radio"]:checked+label {
    background-color: #4d63dd;
    color: #fff;
}

#tab1:checked~#content1,
#tab2:checked~#content2,
#tab3:checked~#content3 {
    display: block;
}
/* tabs work end */




/*--------------------------- contact section start kri */
.contact-container{
  height:130vh;
  display: flex; 
  align-items: center; 
  justify-content: space-evenly;
  background-color: #d2f379;




  margin: auto;
  width:100% ;
  display: grid;
   
  
} 




.contact-left{
 display: flex;  
 flex-direction: column;
 align-items: start;
 gap: 20px;
 margin:9px ;
 background-color: ;
 position: relative;
 
    
}


.contact-left-title h2{
    font-weight:600;
    color:#e80d77;
    font-size:40px;
    margin-bottom:5px;
    margin-top:25px;

}

.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: rgb(228, 215, 19);
    border-radius: 10px;
    margin-bottom: 20px;

}
.contact-inputs{
    width: 400px;
    height: 40px;
    outline:none ;
    padding-left:5px;
    font-weight: 500;
}

.contact-left textarea{
    height:100%;
    padding-top: 10px;
    border-radius: 20px;
}

.contact-inputs:focus{
    border: 2px solid #e117d3;
}

.contact-inputs::placeholder{
    color: #171515;
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 20px;
    gap: 3px;
}
.contact-left button img{
    height: 15px;
}

.contact-right .map{
    width: 500px;
   
}





/*--------------------------- contact section end  */




/*----footer new wala--*/

footer {
    position: relative;
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: #7dded1;
    display:flex ;
    justify-content: space-between;
    flex-wrap:wrap ;
}



.footer .container{
    display:flex ;
    flex-direction:row ;
    justify-content:space-between ;
    flex-wrap: wrap;
    flex-direction: row;
}

.footer .container .sec{
    margin-right: 30px;

}
.footer .container .sec.aboutus{
    width: 40%;

}

.footer .container h1{
    position: relative;
    color:#fff;
    font-weight: 650;
    margin-bottom: 15px;
}

.footer .container h1:before{
    content:'' ;
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #e46e07;
} 

footer .container .sec.aboutus p{
    color: #090909;
    font-size: 13px;
}
.sci{
    margin-top: 20px;
    display: flex;

}
.sci li{
    list-style: none;
}

.sci li a{
    display: inline-block;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
    text-decoration: none;
}

.sci li a :hover{
    background: rgb(202, 72, 72);
    border-radius: 4px;
}
.sci li a .fab{
    color: #fff;
    font-size: 40px;
}

.quicklinks{
    position: relative;
   
    font-size: 14px;
}

.quicklinks h2{
    font-weight: 500;
    font-size: 25px;
    color: #f33905;

}




.quicklinks ul li a{
    color: #090909;
    text-decoration:none;
    margin-bottom: 10px;
    display: inline-block;
}

.quicklinks ul li a:hover{
    color: #fff;
}

.footer .container .quicklinks{
    margin-left: 30%;
}


.quicklinks ul li{
    list-style: none; ;
}

.quicklinks ul li a {
    color: #0b0b0b;
    text-decoration: none;
    margin-bottom: 10px;
    display:inline-block;
}



/*----*/
.quicklink-end{
    position: relative;
    width: 20%;
    font-size:14px;
    

}
.quicklink-end h2{
    font-weight: 500;
    font-size: 25px;
    color: #f33905;

}
.quicklink-end ul li a{
    color: #090909;
    text-decoration:none;
    margin-bottom: 10px;
    display: inline-block;
}
.quicklink-end ul li a:hover{
    color: #fff;
}
.footer .container .quicklink-end{
    margin-left: 30%;
}
.quicklink-end ul li{
    list-style: none; ;
}

/*-----footer end-----*/

/* addressstart */
.address ul li a:hover{
    color: rgba(247, 250, 247, 0.932);
}
/* address end */

/*----copyright text---*/
.copyrightText{
    width: 100%;
    background: #181818;
    padding: 8px 100px;
    text-align: center;
    color: #999;
    font-size: 13px;
}

/*---copyrighttext end---*/

















.fa-times{
    transform: rotate(180deg);
}





/* media queries  */
@media (max-width:768px){

    html{
        font-size: 50%;
    }

    header .fa-bars{
        display: block;
    }

/* yeha header ko mobile version ke rup mein  banaye hai--*/
header{ 
    width: 90%;
    top: 0rem;}
 .home .content{position: relative;
top: 6.4rem;}

/* yeha header ko mobile version ka kaam end hua--*/


    
    header .navbar{
        position: fixed;
        top: -100rem;
        left: 0;
        width: 100%;
        background: var(--wight);
        border-radius: 1rem;
        transition: .2s linear;
        opacity: 0;
    }

    header .navbar ul{
        flex-flow: column;
        padding: 2rem 0;
    }

    header .navbar ul li{
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    header .navbar ul li a{
        font-size: 3rem;
        display: block;
    }

    header .nav-toggle{
        position: fixed;
        top: 5.5rem;
        opacity: 1;
    }

    


    /* home section  */
    
    .home .content p{
        padding: 1.5rem 2rem ;
    }

     /* about section  */ 

     .about .row{
        flex-flow: column-reverse;
     }

     .about .row .images img{
        height: 50vh;
        width: 90vw;
    
     }


     .about .row .content {
        padding: 0 2.5rem;
     }

     
    /* contact media queries  */
.contact-inputs{
    width:80vw ;
}


.contact-right .map{
height:400px;
}


/* krish story */
.teem .krish .content p{
    padding: 1.5rem 2rem ;
}

 /* about section  */ 

 .teem .krish .row{
    flex-flow: column-reverse;
 }

 .teem .krish .row .images img{
    height: 50vh;
    width: 90vw;

 }


 .teem .krish .row .content {
    padding: 0 2.5rem;
 }

/* krish story end  */


}

/*5th media quary*/
@media (max-width:600px){
    .map iframe{
        width:540px;
        height: 410px;
    }
}


/*therd media quary*/
@media(max-width:550px){
    .map iframe{
        width:500px;
        height: 400px;
    }
}



/*dusra media quary start*/
@media (max-width:500px){
    .map iframe{ width: 450px;
        height: 400px;}}




/* forth media quary start, krishmind */

@media (max-width:400px){
    header{
        position: fixed;
        width: 96%;
        background: var(--wight);
        top: 1rem;
        left: 35%;
        transform: translatex(-50%);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 9rem;
        z-index: 1000;
        transition: .2s linear;
    }   
    .map iframe{ width: 360px;
    height: 400px;} 

   
}




 











