@import url('https://fonts.googleapis.com/css2?family=Poppins: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;1,700;1,800;1,900&display=swap');
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}
@font-face {
  font-family: baloon; 
  src: url(font/gonzo6.ttf);
}
body{
    padding-top: 75px;
    background-image: url(siteimg/worn-dots.png);
    background-size: 120px;
}

nav{
    background-color: maroon;
    background-image: linear-gradient(0deg, crimson, maroon);
    color: white;
    padding: 10px;
    position: fixed;
    top: 0px;    
    width: 100vw;
    z-index: 10;
    box-shadow: 2px 2px 5px black;  
    height: 90px;  
}
nav::before{
    content: '';
    background-image: url('siteimg/cubes.png');
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}
nav.hidden{
    transform: translateY(-100%);
}
.navdiv{
    margin: 0px auto;
    max-width: 80%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.navdiv div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.navdiv div .verflex{
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: baseline;
}
.navdiv div .verflex .title b{
    text-transform: uppercase;
    width: 300px;
    font-size: 2rem;
    font-family: baloon;
    font-weight: 400;
    border-bottom: 1px solid white;
}
.navdiv div .verflex p{
    font-size: 0.8rem;
    
}
.navdiv div img{
    width: 65px;
    background-color: white;
    border-radius: 50px;
}
.navdiv .menubar{
    display: flex;
    gap: 15px;
    align-items: center;
    margin-right: 0px;
}
.navdiv .menubar a{
    color: white;
    text-decoration: none;
    padding: 5px;
}
.navdiv .menubar a:hover{
    font-weight: bold;  
    padding: 0px;  
}
.navdiv .menubar .submenu{
    position: relative;
    display: none;
}
.menuitems{
    display: flex;
    flex-direction: column;
    background-color: maroon;
    color: white;
    position: absolute;
    right: -50px;
    top: 10px;
    z-index: 5;
    width: max-content;
    box-shadow: 0 2px 5px grey;
    border-radius: 5px;
}
.menuitems a{
    width: 100%;
    padding: 5px;
}
.navdiv .menubar a:hover + div{
    display: block;
}
.navdiv .menubar .submenu:hover{
    display: block;
}
.navdiv .mobbar{
    margin-right: 0px;
    display: none;
}
.navdiv .mobbar button{
    background-color: transparent;
    border: none;
    padding: 5px;
    border-radius: 10px;
}
.navdiv .mobbar button img{
    width: 35px;
    background-color: transparent;
}
.mobmenu{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.826);
    z-index: 15;
    display: none;
}
.mobmenu .menuflex{
    width: 75%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: white;
    height: 100%;
    padding: 10px;
}
.mobmenu a{
    text-decoration: none;
    display: inline-block;
    color: black;
    font-size: 1.25rem;
    padding: 10px;
    margin: 15px;
    margin-bottom: 0px;
    padding-bottom: 0px;
    width: max-content;
}
.menuflex div{
    background-color: maroon;
    color: white;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    
}
.menuflex div .verflex{
    display: flex;
    flex-direction: column;
    gap: 0px;
    align-items: baseline;
    padding: 0px;
}
.menuflex div .verflex p b{
    text-transform: uppercase;
    font-size: 2rem;
    font-family: baloon;
    font-weight: 400;
}
.menuflex div .verflex p{
    font-size: 0.8rem;
}
.menuflex div img{
    width: 65px;
}
.mobmenu .absbtn{
    position: absolute;
    bottom: 30px;
    left: 10px;
}
.mobmenu .absbtn button{
    padding: 10px;
    margin: 10px;
    background-color: maroon;
    color: white;
    font-weight: 900;
    border: none;
    border-radius: 50px;
}




.hiddenelement{
    display: none;
}

.carasoul{
    position: relative;
    height: 90vh;
}
.carasoul .vidhold{
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.vidhold::before{ 
    content: ""; 
    position: absolute; 
    inset: 0; /* shorthand for top/right/bottom/left:0 */ 
    background: rgba(0, 0, 0, 0.65); /* black overlay, 50% opacity */ 
}
.cont{
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translate(0%, -40%);
    color: white;
    width: 40%;
}
.cont.in-view{
    animation: appearup 1s forwards linear;
}
@keyframes appearup {
    0%{
        transform: translate(0%, -40%);
        opacity: 0;
    }
    100%{
        transform: translate(0%, -50%);
        opacity: 1;
    }
}
@keyframes moveup {
    0%{
        transform: translate(0%, -40%);
        opacity: 0;
    }
    100%{
        transform: translate(0%, 0%);
        opacity: 1;
    }
}
.cont h1{
    font-size: 2.5rem;
    text-shadow: 2px 2px 5px black;
}
.cont h1 b{
    color: crimson;
}
.cont .flexcont{
    display: flex;
    gap: 50px;
    align-items: center;
}
.cont .flexcont .feat{
    text-align: left;
    margin: 20px;
}
.cont .flexcont img{
    width: 70px;
    height: 70px;
}
.cont .flexcont h3{
    color: crimson;
    text-shadow:  0 0 5px black;
    font-size: 1.7rem;
}
.cont .flexcont p{
    font-weight: 500;
}
.absform{
    position: absolute;
    top: 50%;
    right: 2%;
    transform: translate(0%, -50%);
    background-color: whitesmoke;
    color: maroon;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    box-shadow: 0 0 5px black;
    z-index: 8;
}
.perm{
    position: relative;
    transform: translate(0%, 0%);
    margin: 20px auto;
    max-width: max-content;
    box-shadow: none;
    display: none;
    right: auto;
}
.absform .head{
    padding: 10px;
    background-image: linear-gradient(25deg, crimson, maroon);
    color: white;
}
.absform form{
    padding: 10px;
    color: dimgrey;
}
.absform input{
    width: 400px;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    box-shadow:inset 0 0 5px grey;
}
.absform select{
    width: 400px;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    border: none;
    box-shadow:inset 0 0 5px grey;
}
.absform button{
    width: 125px;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    background-color: white;
    background-image: linear-gradient(crimson, maroon);
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 0 5px grey;
}
.absform button:hover{
    background-color: maroon;
    color: white;
    box-shadow: none;
}



.about{
    margin: 50px auto;
    max-width: 80%;    
}
.about h2{
    font-size: 2rem;
    text-align: center;
}
.abtcont{    
    margin: 20px 35px;
    text-align: center;
}
.abtcont div{
    text-align: center;
}
.abtcont img{
    width: 70%;
}

.misvis{
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 20px;
    justify-content: space-evenly;
    margin: 45px 0px;
}
.misvis div{
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 5px 5px 10px grey;
    background-color: white;
}
.misvis div h3{
    margin-bottom: 20px;
    font-size: 1.25rem;
}
.misvis div p{
    text-align: left;
}




.why{
    text-align: center;
    margin: 20px auto;
    max-width: 80%;
    min-height: 85vh;
    align-content: center;
}
.why .subhead{
    color: black;
    margin: 0px auto;
    max-width: 70%;
    margin-top: 30px;
}
.why p{
    color: maroon;
    font-weight: 500;
}
.why h2{
    font-size: 2rem;
    margin-bottom: 20px;
}
.why .featgrid{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: center;
    gap: 30px;
    margin: 50px 0px;
}
.featgrid .feat{
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px grey;
    justify-content: flex-start;    
    background-color: white;
    overflow: hidden;
    opacity: 0;
}
.featgrid .feat.in-view{
    animation: moveup 0.5s linear forwards calc(var(--pos)*0.1s);
}
.feat h3{
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0px;
    color: maroon;
}
.feat img{
    width: 40px;
    height: 40px;
}
.why .linkbtn{
    text-decoration: none;
    padding: 20px;
    border-radius: 10px;
    background-color: maroon;
    background-image: linear-gradient(crimson, maroon);
    font-weight: bold;
    color: white;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.why .linkbtn:hover{
    animation: shadowanim 0.25s linear forwards;
}
.why .linkbtn .growbox{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20%;
    height: 200%;   
    background-color: rgba(255, 255, 255, 0.35);
    background-image: linear-gradient(rgba(255, 255, 255, 0.1),rgba(255, 255, 255, 0.3));
    transform: skewX(320deg);
    filter: blur(5px);
    animation: growbox 5s ease-in-out infinite;
}
.why .linkbtn p{
    z-index: 5;
    color: white;
    margin-bottom: 0px;
    font-weight: bold;
    position: relative;
}
@keyframes growbox {
    0%{
        opacity: 0;
        transform: skewX(320deg) translate(-100px);
    }
    5%{
        opacity: 1;
    }   
    64%{
        opacity: 1;
        transform: skewX(320deg) translate(200px);
    } 
    65%{
        opacity: 0;
    }
    100%{
        opacity: 0;
        transform: skewX(320deg) translate(-100px);
    }    
}

@keyframes shadowanim {
    0%{
        box-shadow: none;
    }
    100%{
        box-shadow: 5px 5px 10px grey;
    }
}


.scrolly{
    background-image: url(siteimg/hotel.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    align-content: center;
    text-align: center;
    min-height: 250px;
    position: relative;
    box-shadow: 0 0 10px black;
}
.scrolly::before{ 
    content: ""; 
    position: absolute; 
    inset: 0; /* shorthand for top/right/bottom/left:0 */ 
    background: rgba(0, 0, 0, 0.5); /* black overlay, 50% opacity */ 
}
.scrolly div{
    display: flex;
    gap: 20px;
    align-items: center;  
    margin: 0px auto;
    max-width: 80%;
    text-align: center;
}
.scrolly h3{
    font-size: 2.5rem;
    color: white;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    z-index: 8;
    width: 100%;
}
.scrolly div a{
    text-decoration: none;
    display: inline-block;
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    width: max-content;
    padding: 20px;
    border-radius: 10px;
    border: 3px solid white;
    z-index: 8;
    width: 250px;
}
.scrolly div a:hover{
    background-color: rgba(128, 0, 0, 0.7);
}
.second{
    background-image: url(siteimg/extadv.webp);
}


.program{
    text-align: center;
    min-height: 70vh;
    align-content: center;
    margin: 20px auto;
    max-width: 80%;
}
.program p{
    color: maroon;
    font-weight: 500;
    margin-bottom: 10px;
}
.program h2{
    font-size: 2rem;
    margin-bottom: 20px;
}
.program .proglist{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: center;
    gap: 35px;
    margin: 50px 0px;
}
.proglist .prog{
    padding: 20px;
    text-align: left;
    padding-left: 40px;
    border-radius: 10px;
    position: relative;
    align-content: center;
    background-color: white;
    box-shadow: 5px 5px 10px grey;
    opacity: 0;
}
.proglist .prog.in-view{
    animation: moveup 0.5s linear forwards calc(var(--pos)*0.1s);
}
.prog:hover{
    animation: colorshift 0.5s linear forwards;
}
.proglist .prog img{
    position: absolute;
    top: 50%;
    right: 94%;
    transform: translate(0%, -50%);
    width: 40px;
    height: 40px;
    background-color: white;    
    color: maroon;
    box-shadow: 0px 0px 5px grey;
    border-radius: 10px;
    padding: 5px;
}
.proglist .prog h3{
    font-size: 1.1rem;
    margin-bottom: 0px;
    font-weight: 600;
    color: maroon;
}
.program .linkbtn{
    text-decoration: none;
    padding: 20px;
    border-radius: 10px;
    background-color: maroon;
    background-image: linear-gradient(crimson, maroon);
    font-weight: bold;
    color: white;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.program .linkbtn:hover{
    animation: shadowanim 0.25s linear forwards;
}
.program .linkbtn .growbox{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20%;
    height: 200%;   
    background-color: rgba(255, 255, 255, 0.35);
    background-image: linear-gradient(rgba(255, 255, 255, 0.1),white);
    transform: skewX(320deg);
    filter: blur(5px);
    animation: growbox 5s ease-in-out infinite;
}
.program .linkbtn p{
    z-index: 5;
    color: white;
    margin-bottom: 0px;
    font-weight: bold;
    position: relative;
}

@keyframes colorshift {
    0%{
        background-color: white;
        color: maroon;
    }
    40%{
        color: white;
    }
    100%{
        background-color: maroon;
        color: white;
    }
}



.counter{
    background-image: url(siteimg/handshake.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    align-content: center;
    text-align: center;
    min-height: 250px;
    position: relative;
    box-shadow: 0 0 10px black;
}
.counter::before{ 
    content: ""; 
    position: absolute; 
    inset: 0; /* shorthand for top/right/bottom/left:0 */ 
    background: rgba(0, 0, 0, 0.5); /* black overlay, 50% opacity */ 
}

.counter .counthold{
    margin: 20px auto;
    max-width: 80%;    
    color: white;
    display: flex;
    justify-content: space-around;
}
.counter .count{
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: center;
    z-index: 8;
}
.count img{
    width: 60px;
    height: 60px;
}
.count div{
    text-align: left;
}
.counter .count p span{
    font-size: 3rem;
    font-weight: bolder;
}
.counter .count p sup{
    font-size: 2.5rem;
    font-weight: bold;
}
.counter .count p{
    font-size: 1rem;
}



.course .coursecontent{
    margin: 20px auto;
    max-width: 80%;
    text-align: center;
    min-height: 80vh;
    align-content: center;
}
.dept{
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.dept button{
    background-color: white;
    color: black;
    padding: 10px 30px;
    margin: 10px;
    border-radius: 20px;
    border: none;
    box-shadow: 5px 5px 10px grey;
    font-weight: bold;
}
.dept button h3{
    font-size: 1rem;
}
.course p{
    color: maroon;
    font-weight: 500;
    margin-bottom: 0px;
}
.course h2{
    font-size: 2rem;
}
.coursehold 
{
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 30px;
}
.coursehold .indicou{
    border-radius: 20px;
    box-shadow: 5px 5px 10px grey;
    text-align: left;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background-color: white;
}
.indicou h4{
    font-size: 1.25rem;
    margin: 20px 0px;
}
.indicou div p{
    margin-bottom: 0px;    
    font-weight: 500;
}
.indicou .absbtn{
    position: absolute;
    bottom: 15px;
    right: 25px;
    background-color: maroon;
    border: none;
    border-radius: 50%;
    overflow: hidden;
    background-color: transparent;
    display: none;
}
.indicou:hover .absbtn{
    display: block;
}
.indicou .absbtn img{
    width: 50px;
    height: 50px;    
    border-radius: 50%;
    padding: 5px;
}
.indicou .absbtn:hover img{
    background-color: whitesmoke;
    box-shadow: inset 0 0 5px grey;
}
.course .linkbtn{
    text-decoration: none;
    padding: 20px;
    border-radius: 10px;
    background-color: maroon;
    background-image: linear-gradient(crimson, maroon);
    font-weight: bold;
    color: white;
    text-decoration: none;
    margin: 50px 20px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.course .linkbtn:hover{
    animation: shadowanim 0.25s linear forwards;
}
.course .linkbtn .growbox{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20%;
    height: 200%;   
    background-color: rgba(255, 255, 255, 0.35);
    background-image: linear-gradient(rgba(255, 255, 255, 0.1),white);
    transform: skewX(320deg);
    filter: blur(5px);
    animation: growbox 5s ease-in-out infinite;
}
.course .linkbtn p{
    z-index: 5;
    color: white;
    margin-bottom: 0px;
    font-weight: bold;
    position: relative;
}






.placement .placecontent{
    margin: 50px auto;
    max-width: 1300px;
    text-align: center;
    min-height: 60vh;
    align-content: center;
}
.placement p{
    color: maroon;
    font-weight: 500;
    margin-bottom: 0px;
}
.placement h3{
    font-size: 2rem;
    margin-bottom: 20px;
}
.placehold{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: space-evenly;
}
.placehold div{
    width: 300px;
    height: 300px;
    box-shadow: 5px 5px 10px grey;
    border-radius: 20px;
    align-content: center;
    overflow: hidden;
    position: relative;    
}
.placehold div:hover{
    animation: shaketab 0.5s linear forwards;
}
.placehold div img{
    width: 100%;
}
.placehold div p{
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    width: 100%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.65);
}
.placehold div::before{ 
    content: ""; 
    position: absolute; 
    inset: 0; /* shorthand for top/right/bottom/left:0 */ 
    background: rgba(0, 0, 0, 0.15); /* black overlay, 50% opacity */ 
}
@keyframes shaketab {
    0%{
        transform: rotateY(0deg);
    }
    40%{
        transform:  rotateY(60deg);
    }
    50%{
        transform: rotateY(180deg);
    }
    60%{
        transform: rotateY(60deg);
    }
    100%{
        transform: rotateY(0deg);
    }
}




.testimonial{
    margin: 50px auto;
    max-width: 80%;
    min-height: 50vh;
    text-align: center;
    align-content: center;
}
.testimonial h2{
    font-size: 2rem;
    margin-bottom: 20px;
}
.testihold{
    display: grid;
    grid-template-columns: 49% 49%;
    gap: 25px;
    flex-direction: column;
    padding: 25px;
}
.testi{
    padding: 20px;
    box-shadow: 0 0 5px grey;
    border-radius: 10px;
    background-color: white;
    box-shadow: 5px 5px 10px grey;
    color: maroon;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testi:hover{
    animation: shadowing 5s forwards linear;
}
.testi p{
    text-align: left;
    color: black;
}
.testi .tester{
    text-align: end;
    margin-top: 15px;
    display: flex;
    align-items: end;
    justify-content: space-between;
}
.testi .tester img{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: inset 0 0 10px black;
}
.testi .tester p:first-of-type{
    font-size: 1rem;
    margin-bottom: 0px;
    color: maroon;
    margin: 5px;
    text-align: right;
    font-weight: bold;
}
.testimonial .placedept{
    width: 100%;
    overflow-x: auto;
    scrollbar-width: thin;
}
.testimonial .placedept .hold::-webkit-scrollbar-track{
    background: transparent;
}
.testimonial .placedept .hold h3{
    font-size: 1rem;
    font-weight: 500;
}
.testbtn button{
    background-color: maroon;
    padding: 5px;
    margin: 10px;
    border: none;
    border-radius: 20px;
}


.placedept .hold{
    display: flex;
    align-items: start;
    gap: 15px;
    justify-content: space-evenly;
    margin: 30px auto;
}
.placedept div img{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0px 0px 10px grey;
}
.placedept div p{
    font-weight: 500;
}

.scroller{
    margin: 30px auto;
    max-width: 100%;
    overflow: hidden;    
    -webkit-mask: linear-gradient(90deg,transparent,black 10%, black 90%, transparent);
    mask:linear-gradient(90deg,transparent,black 10%, black 90%, transparent);
}
.scroller h3{
    text-align: center;
    margin-bottom: 0px;
    font-size: 1.25rem;
}
.scroller .scrollerinner{
    padding-block: 1rem;
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scroll 40s linear infinite;
}
.scrollerinner img{
    width: 20vh;    
    padding: 30px;
}
@keyframes scroll{
    to{
        transform: translate(calc(-50% - 0.5rem));
    }
}

.testimonial .linkbtn{
    text-decoration: none;
    padding: 20px;
    border-radius: 10px;
    background-color: maroon;
    background-image: linear-gradient(crimson, maroon);
    font-weight: bold;
    color: white;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.testimonial .linkbtn:hover{
    animation: shadowanim 0.25s linear forwards;
}
.testimonial .linkbtn .growbox{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20%;
    height: 200%;   
    background-color: rgba(255, 255, 255, 0.35);
    background-image: linear-gradient(rgba(255, 255, 255, 0.1),white);
    transform: skewX(320deg);
    filter: blur(5px);
    animation: growbox 5s ease-in-out infinite;
}
.testimonial .linkbtn p{
    z-index: 5;
    color: white;
    margin-bottom: 0px;
    font-weight: bold;
    position: relative;
}



.videotesti{
    margin: 50px auto;
    max-width: 90%;
    text-align: center;
}
.videotesti h2{
    font-size: 2rem;
    margin-bottom: 20px;
}
.videotesti .vidgrid{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.videotesti .vid{
    width: 400px;
    border-radius: 20px;
    overflow: hidden;
    background-color: white;
    box-shadow: 5px 5px 10px grey;
}
.videotesti .vid video{
    width: 100%;
    scale: 1.03;
}





.faq{
    margin: 50px auto;
    max-width: 80%;
    text-align: center;
    min-height: 60vh;
    align-content: center;
}
.faq p:first-of-type{
    color: maroon;
    font-weight: 500;
    margin-bottom: 0px;
}
.faq h2{
    font-size: 2rem;
    margin-bottom: 20px;
}
.faqhold{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}
.faqhold .ques{
    box-shadow: 5px 5px 10px grey;
    text-align: left;
    border-radius: 5px;
    overflow: hidden;    
}
.faqhold .ques:hover{
    animation: scaletab 1s linear forwards;
}
.faqhold .ques .head{
    padding: 20px;
    box-shadow: 5px 5px 10px grey;
    background-color: whitesmoke;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ques .head h3{    
    color: black;
    margin-bottom: 0px;
    font-size: 1rem;

}
.ques .head img{
    width: 25px;
    border-radius: 50px;
    background-color: white;
}
.ques .answer{
    padding: 20px;
    box-shadow: inset 0 0 10px grey;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    display: none;
    background-color: white;
}
.ques .answer p{
    color: dimgray;
    margin-bottom:  0px;
    font-weight: 500;
}
@keyframes scaletab {
    0%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.01);
    }
}



.branch .branchcontent{
    margin: 50px auto;
    max-width: 80%;
    text-align: center;
    padding: 50px;
    align-content: center;
}
.branch p{
    color: maroon;
    font-weight: 500;
    margin-bottom: 0px;
}
.branch h2{
    font-size: 2rem;
    margin-bottom: 20px;
}
.branch .branchhold{
    grid-template-columns: 49% 49%;
    gap: 10px;
}
.branch .branchgrid{
    display: flex;
    grid-template-columns: 20% 20% 20% 20%;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
}
.branch .branchgrid .indbra{
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 5px 5px 10px grey;
    padding-left: 20px;
    position: relative;
    justify-content: space-between;
    background-color: white;
    width: 250px;
}
.branch .branchgrid .indbra:hover{
    animation: shadowshift 1s linear forwards;
}
.branch .branchgrid .indbra div{
    display: flex;
    gap: 10px;
    align-items: center;
}
.branch .branchgrid .indbra div img{
    width: 30px;
    height: 30px;
}
.branch .branchgrid .indbra div h3{
    color: maroon;
    margin-bottom: 0px;
    font-weight: bold;
    font-size: 1rem;
}
.branch .maphold{
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 5px 5px 5px grey;
}
.indbra a{
    padding: 5px;
    text-decoration: none;
    display: inline-block;
}
.indbra a img{
    width: 30px;
    height: 30px;
    animation: scaleimg 2s linear infinite ;
}
@keyframes shadowshift {
    0%{
        box-shadow:  0 0 5px grey;
        transform: scale(1);
    }
    100%{
        box-shadow: 2px 2px 5px grey;
        transform: scale(1.05);
    }
}
@keyframes scaleimg {
    0%{
        scale: 1;
    }
    50%{
        scale: 1.2;
    }
    100%{
        scale: 1;
    }
}




.pagecover{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);
    z-index: 99;
    display: none;
}
.pagecover .floatcontent{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 5px lightgrey;  
    text-align: center;  
    padding: 20px;
    width: 50%;
    background-color: white;
    border-radius: 20px;
}




.contact{
    background-color: maroon;
    background-image: linear-gradient(0deg, maroon, crimson);
    position: relative;
    height: 45vh;
}
.contact::before{
    content: '';
    background-image: url('siteimg/cubes.png');
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
}
.contact .contactcontent{
    display: grid;
    grid-template-columns: 30% 30% 30%;
    justify-content: space-evenly;
    gap: 10px;
    color: white;
    margin: 0px auto;
    max-width: 80%;
    padding: 50px;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.contact h3{
    font-size: 1.25rem;
    margin-bottom: 15px;
}
.contact .logo{
    padding: 10px;
}
.contact .logo img{
    width: 150px;
}
.contact .logo div{    
    display: flex;
    gap: 10px;
    align-items: center;
}
.contact .logo div a{
    display: inline-block;
    text-decoration: none;
}
.contact .logo div a img{
    width: 30px;
    height: 30px;
}
.contact .links{
    display: flex;
    flex-direction: column;
}
.contact .links a{
    color: white;
    text-decoration: none;
}
.contact .links a:hover{
    text-decoration: underline;
}

.privacy{
    width: 90%;
}
.contcont .contflex{
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 10px;
    margin-bottom: 20px;
}
.contflex .mulnum{
    display: flex;
    flex-direction: column;
}
.contcont .contflex img{
    height: 30px;
}
.contcont .contflex p{
    font-size: 1.05rem;
    line-height: 1.5rem;
}


.stickywhatsapp{
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 90;
}
.stickywhatsapp img{
    width: 80px;
    height: 80px;
    animation: scaleimg 2s linear infinite ;
}



.footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    color: white;
    position: absolute;
    bottom: 0px;
    padding: 5px;
    width: 100%;
    text-align: center;
}
.footer p{
    font-size: 0.8rem;
}
.footer button{
    background-color: transparent;
    border: none;
    color: white;
    cursor: pointer;
}




.thanksec{
    text-align: center;
}
.thanksec a{
    text-decoration: none;
}
.thanknav{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.thanknav img{
    width: 120px;
}
.thanknav .verflex{
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: maroon;
}
.thanknav .verflex .title b{
    text-transform: uppercase;
    font-size: 3rem;
    font-family: baloon;
    font-weight: 400;
    border-bottom: 2px solid maroon;
}
.thanknav .verflex p{
    font-size: 1.2rem;
}
.thanksec h1{
    margin: 20px auto;
    max-width: 100%;
    text-align: center;
    color: maroon;
}
.thanksec .linkbtn{
    text-decoration: none;
    padding: 10px;
    border-radius: 10px;
    background-color: maroon;
    background-image: linear-gradient(crimson, maroon);
    font-weight: bold;
    color: white;
    text-decoration: none;
    margin: 20px 20px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}
.thanksec .branch .branchcontent{
    margin: 20px auto;
    padding: 0px;
} 
.thanksec .branch .branchcontent h3{
    font-size: 1.5rem;
    margin: 20px auto;
}
.thanksec .branch .branchcontent .indbra p{
    font-size: 1.1rem;
    font-weight: bold;
}
.thanksec .linkbtn:hover{
    animation: shadowanim 0.25s linear forwards;
}
.thanksec .linkbtn .growbox{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 20%;
    height: 200%;   
    background-color: rgba(255, 255, 255, 0.35);
    background-image: linear-gradient(rgba(255, 255, 255, 0.1),white);
    transform: skewX(320deg);
    filter: blur(5px);
    animation: growbox 5s ease-in-out infinite;
}
.thanksec .linkbtn p{
    z-index: 5;
    color: white;
    margin-bottom: 0px;
    font-weight: bold;
    position: relative;
}


@media only screen and (max-width: 1460px){   
    .branch .branchcontent{
        max-width: 90%;
        padding: 20px;
    }
    
}


@media only screen and (max-width: 1400px){   
    .branch .branchcontent{
        padding: 20px;
        max-width: 90%;
    }
    
}



@media only screen and (max-width: 1300px){    
    .branch .branchgrid{
        display: grid;
        grid-template-columns: 50% 50%;
        margin: 10px auto;
        max-width: 80%;
    }
    .branch .branchgrid .indbra{
        width: auto;
    }
}




@media only screen and (max-width: 1250px){
    .navdiv{
        max-width: 95%;
    }
    .contact .contactcontent{
        max-width: 100%;
        padding: 50px 20px;
        justify-content: space-between;
    }    
}






@media only screen and (max-width: 1200px){  
    .branch .branchgrid{
        gap: 10px;
    }
}



@media only screen and (max-width: 1100px){
    .carasoul{
        min-height: auto;
        height: auto;
    }
    .cont{
        top: 50%;
        width: 100vw;
        text-align: center;
        left: 0%;
        padding: 10px;
    }
    .cont .flexcont{
        justify-content: center;
    }
    .cont .flexcont .feat{
        text-align: center;
    }
    .absform{
        display: none;
    }
    .perm{
        display: block;
    }    
    .vidhold video{
        width: 100%;
    }
    .abtcont{
        display: block;
        text-align: left;
    }
    .abtcont img{
        display: none;
    }
    .misvis{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .misvis h3{
        font-size: 1.25rem;
    }
    .scrolly div{
        flex-direction: column;
        margin: 10px auto;
    }
    .scrolly div h3{
        text-align: center;
        font-size: 1.5rem;
    }
    .scrolly div a{
        padding: 10px;
    }
    .counter .counthold{
        flex-wrap: wrap;
        gap: 25px;
        max-width: 100%;
    }
     .counter .counthold{
        display: grid;
        grid-template-columns: 50% 50%;
        margin: 0px auto;
        max-width: 70%;
    }
    
    .contact .contactcontent{
        grid-template-columns: 30% 30% 30%;
    }
    
    .branch .maphold{
        height: 500px;
        margin-bottom: 20px;
    }
    
    .testimonial{
        max-width: 95%;
    }
}




@media only screen and (max-width: 1000px){
    .why{
        max-width: 100%;
        margin: 50px 20px;
    }
    .why .featgrid{
        gap: 15px;
        grid-template-columns: 32% 32% 32%;
    }
    .program{
        max-width: 100%;
        margin: 50px 20px;
    }
    .program .proglist{
        gap: 15px;
        grid-template-columns: 32% 32% 32%;
    }
    .proglist .prog{
        display: flex;
        gap: 10px;
        align-items: center;
        padding-left: 10px;
        padding: 10px;
        overflow: hidden;
    }
    .proglist .prog img{
        position: relative;
        top: auto;
        right: auto;
        transform: translate(0%,0%);
    }
    
    .course .coursecontent{
        max-width: 90%;
    }
    .coursehold .indicou{
        text-align: center;
    }
    .indicou .absbtn{
        bottom: 35%;
    }
    .thanksec .branch .branchcontent{
        margin: 20px auto;
        padding: 0px auto;
    } 
}





@media only screen and (max-width: 955px){
    .navdiv div img{
        width: 45px;
    }
    .navdiv .menubar{
        gap: 5px;
    }
    .navdiv div .verflex .title b{
        font-size: 1.5rem;
        width: 220px;
    }
    .navdiv div .verflex p{
        font-size: 0.6rem;
    }
    
    body{
        padding-top: 55px;
    }
    .pagecover .floatcontent{
        width: 80%;
    }
}


@media only screen and (max-width: 850px){
    .navdiv .menubar{
        display: none;
    }
    .navdiv .mobbar{
        display: block;
    }
    .why h3{
        font-size: 1.25rem;
    }
    .why .featgrid{
        grid-template-columns: 49% 49%;
    }
    .why .feat h3{
        font-size: 1rem;
    }
    .why .linkbtn{
        margin: 0px;
        padding: 10px 20px;
    }
    .why .subhead{
        max-width: 90%;
    }
    .program .proglist{
        grid-template-columns: 49% 49%;
    }
    .program .linkbtn{
        margin: 0px;
        padding: 10px 20px;
    }
    .program h3{
        font-size: 1.25rem;
    }
    .course .coursecontent{
        max-width: 95%;
    }
    .coursecontent .linkbtn{
        margin: 25px;
        padding: 10px 20px;
    }
    .course .coursehold{
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .contact{
        height: max-content;
    }
    .contact .contactcontent{
        display: flex;
        flex-direction: column;
        gap: 25px;
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }
    .footer{
        position: relative;
    }
    .contcont .contflex{
        margin-left: 0px;
    }
    .contact .contactcontent .logo{
        padding-left: 0px;
    }
    
    .testihold{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .testimonial .linkbtn{
        margin: 0px;
        padding: 10px 20px;
    }
}



@media only screen and (max-width: 750px){
    .coursehold .indicou{
        text-align: left;
    }
    .indicou .absbtn{
        bottom: 15px;
    }
    .counter .counthold{
        margin: 20px auto;
        max-width: 90%;
    }
    .thanknav{
        flex-direction: column;
    }
}


@media only screen and (max-width: 700px){
    .cont h1{
        font-size: 1.25rem;
    }
    .cont .flexcont .feat{
        margin: 10px;
    }
    .cont .flexcont img{
        width: 45px;
        height: 45px;
    }
    .faq{
        max-width: 95%;
    }
    .branch .branchgrid{
        max-width: 95%;
    }
    .videotesti .vidgrid{
        flex-direction: column;
    }
    .videotesti .vidgrid .vid{
        width: 80%;
    }
}




@media only screen and (max-width: 650px){
    .placehold div{
        width: 220px;
        height: 220px;
    }
}




@media only screen and (max-width: 600px){
    .cont .flexcont h3{
        font-size: 1.5rem;
    }    
    .branch .branchcontent{
        padding: 50px 20px;
    }
    .branch .branchgrid{
        gap: 12px;
    }
    .branch .branchgrid{
        display: flex;
        flex-direction: column;
    }
    .branch .branchgrid .indbra{
        width: 100%;
    }
    .thanksec .branch .branchcontent{
        margin: 20px auto;        
        padding: 0px auto;
    } 
    .counter .counthold{
        margin: 20px auto;
        grid-template-columns: auto;
    }
    .counter .count{
        gap: 35px;
    }
    .count img{
        width: 80px;
        height: 80px;
    }
    .thanknav img{
        width: 80px;
    }
    .thanknav .verflex .title b{
        font-size: 2rem;
    }
    .thanknav .verflex p{
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 550px){
    
}

@media only screen and (max-width: 500px){
    body{
        padding-top: 70px;
    }
    .carasoul .vidhold{
        height: 50vh;
    }
    .vidhold video{
        height: 100%;
        width: auto;
    }
    .perm{
        margin: 10px;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 0 5px grey;
    }
    .counter .counthold{
        flex-direction: column;
        align-items: center;
    }
    .why .featgrid{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }    
    .absform input{
        width: 80%;
    }
    .absform select{
        width: 80%;
    }
    .program .proglist{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .placehold div{
        width: 180px;
        height: 180px;
    }
}

@media only screen and (max-width: 340px){
    body{
        padding-top: 80px;
    }
    .branch .branchgrid .indbra{
        width: 95%;
    }
}