
@import url('https://fonts.googleapis.com/css2?family=Martel+Sans:wght@200;300;400;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Anonymous+Pro:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: "Martel Sans", sans-serif;

}
html,body{
    overflow-x: hidden;
}
.header{
    overflow: hidden;
    /* position: fixed; */
    width: 100%;
    height: 7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:lightblue;
}
.logo{
    height: 10rem;
    width: 8rem;
    object-fit: cover;
    margin-left: 1rem;
}
.navbar{
    padding: 1rem;
    margin-right: 2rem;
}
.navbar-list{
    display: flex;
    list-style: none;
    gap: 4rem;
}
li a,a:visited{
    text-decoration: none;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.4s;
}
@media (max-width:995px) {
    .navbar-list{
        gap: 2rem;
    }
    li a,a:visited{
        font-size: 1rem;
    }
}
.navbar-list li a:hover{
    opacity: 50%;
    text-decoration: underline;
}

/* li a:hover{
    opacity: 50%;
    border: 1px solid darkblue;
    border-radius:0.5rem ;
    padding: 1rem;
} */
/* ffd166 */
/* Introduction Starts */

.intro-img{
    height: 82vh;
    width: 96vw;
}
.intro{
   margin: 1rem;
}
.intro-head{
   margin: 12rem 35rem;
   position: absolute;
   font-size: 3.5rem;
   font-weight: bold;
   font-style: italic;
   -webkit-animation: heading 0.5s ease-in-out;
}

@-webkit-keyframes heading{
   0%{
       opacity: 0;
       margin-left: 0rem;
   }
  
   100%{
       opacity: 1;
       /* margin-left: ; */
   }
}
@media (max-width:995px) and (min-width:670px) {
    .intro-head{
        margin: 12rem 19rem;
        font-size: 3rem;
    }
}
@media(max-width:670px){
    .intro-head{
        margin: 12rem 15rem;
        font-size: 2.5rem;
    }
}
@media(max-width:530px) {
    .intro-head{
        margin: 12rem 9rem;
        font-size: 2.2rem;
    }
}
.second-head{
    margin-top: 18rem;
    margin-left: 35rem;
    font-family: "Anonymous Pro", monospace;
    font-weight: bolder;
    font-size: 3rem;
    position: absolute;
    text-align: center;
    color: purple;
    -webkit-animation: secondHead 2s ease-in;
}

@-webkit-keyframes secondHead{
    0%{
       opacity: 0;
       margin-right: 0;
    }
    100%{
        opacity: 1;
        margin-right: 0;
    }
}
@media (max-width:995px) and (min-width:670px){
    .second-head{
        margin-top: 17rem;
        margin-left: 20rem;
    }
}
@media(max-width:670px) {
    .second-head{
        margin-left: 12rem;
        font-size: 2.5rem;
    }
}
/*Introduction Ends*/
/* Content Section starts */
.content{
    overflow-x: hidden; 
    padding: 5rem 1.5rem;
    font-weight: bold;
    background:url("img/bg.png");
    background-repeat: repeat;
    object-fit: cover;
    width: 95vw;
    margin: auto;
}
.mission h1, .vision h1{
    text-align: center;
     font-weight: bolder;
     font-size: 2.5rem;
}
.mission-para, .vision-para{
    font-size: 1.1rem;
    display: flex;
    text-align: justify;
}
.vision1{
    display: flex;
    gap: 1rem;
}
.features h1{
    text-align: center;
    font-weight: bolder;
    font-size: 2.5rem;
}
.box-section{
    display: flex;
    gap: 2rem;
    padding: 1rem;
    border-radius: 2rem;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.boxes{
    border: 2px solid #000;
    width: 25vw;
    transition: transform 0.2s ease-in-out;
    padding: 1rem;
    border-radius: 2rem;
}
.boxes h3{
    background-color: bisque;
    max-height: 6rem;
    text-align: center;
}
.boxes p{
    background-color: rgb(192, 226, 238);
    max-height: 40rem;
    text-align: center;
    padding: 0.5rem;
}
.boxes:hover{
    scale:1.1;
    cursor: pointer;
}
.fa-solid.fa-comments, .fa-solid.fa-globe, .fa-solid.fa-handshake{
   display: flex;
   justify-content: center; 
    font-size: 3rem;
    padding: 0.5rem;
}
@media(max-width:920px) {
    .boxes{
        width: 60vw;
    }
}
@media(max-width:820px) {
    .box-section{
        display: flex;
        flex-direction: column;
    }
    .boxes{
        width: 70vw;
    }
}
@media(max-width:460px) {
    .boxes{
        width: 70vw;
    }
}
.para1{
    width: 100vw;
    font-size: 1.2rem;
}

/* ul{
    text-align: center;
    list-style: none;
}
.list-item{
    border: 1px solid #000;
    margin: 0.2rem;
    padding: 0.2rem;
    background-color: beige;
    transition: transform 0.1s ease-in-out;
}

.list-item:hover{
    scale: 1.02;
    background-color: bisque;
    cursor: pointer;
} */

/* .para1:hover{
    animation: slideIn 1s;
}
@keyframes slideIn{
    0%{
       margin-left: 0rem;
    }
    100%{
        margin-left: 5rem;
    }
} */


/*Content Section ends*/

/*carousel starts*/

.carousel{
    width: 98%;
    margin: 1rem;
    border: 2px solid black;
    background-color: #fff;
}
.head-section{
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}
.carousel-img{
    height: 12vh;
}
.carousel-head{
      text-align: center;
      font-size: 2.5rem;
      font-style: italic;
}
.left-btn,.right-btn{
    height: 40vh;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
    position: absolute;
}
.right-btn{
    right: 12px;
    /* wrt to tht top of the entire screen */
}
.left-btn i,.right-btn i{
    font-size: 30px;
    color: rgb(74, 51, 4);
    position: relative;
    top: 50%;
    left: 20%;
}
.slide-carousel{

    margin: 1%;
    display: flex;
    height: 80vh;
    width: 98%;
    list-style: none;
    overflow-x: scroll;  
    scroll-behavior: smooth;
}
.slide-img{
    height: 70vh;
    width: 95vw;
    border: 2px solid black;
    padding: 0.2rem;
}
/* footer starts */
.footer{
    overflow-x: hidden; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 16rem;
    background-color: lightblue;
    gap: 1rem;
}
.logo2{
    height: 6rem;
    width: 9rem;
    object-fit: cover;
}
.icons .fa-brands{
    font-size: 2rem;
    padding: 0.5rem;
    border: 2px solid #000;
    border-radius: 50%;
    background-color: #000;
    background: white;
    -webkit-background-clip: #fff;
    -webkit-text-fill-color: black;
}
.follow-us{
    display: flex;
    justify-content: center;
    gap: 1rem;
}
.copyright{
    font-size: 1.1rem;
}
/* footer ends */

/*Hamburger*/
.mobile-btn{
    /* display: flex; */
    cursor: pointer;
    gap: 1rem;
    margin-right: 1rem;
    display: none;
}
.fa-solid{
    font-size: 2rem;
}

.fa-bars, .fa-xmark{
    border: 3px solid #000;
    padding: 0.4rem;
}

@media (max-width:670px) {
    .fa-solid.fa-xmark{
        display: none;
    }
    .navbar{
        /* display: none; */
        width: 100%;
        height: 100vh;
        background-color: beige;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 0;
        left: 0;
        /* to get transition */
        transform: translateX(100%);
        transition: all 0.6s linear;
        opacity: 0;
        visibility: hidden;
    }
    .navbar-list{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    li a,a:visited{
        font-size: 1.2rem;
    }
    .active .navbar{
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    /* .heads{
        z-index: -1;
    } */
    .active .fa-solid .fa-xmark{
        display: block;
        border: 3px solid black;
        font-size: 2rem;
    }
    .active #close{
        display: block;
    }
    .active .fa-bars{
        display: none;
    }
    .mobile-btn{
        display: flex;
    }
}