/*--------------------------------------------------- 
# Font and Color Variables
-----------------------------------------------------*/
/* Fonts */
:root {
    --font-JakartaSans:"Plus Jakarta Sans", sans-serif;
}

/* Color */

:root {
    --white:#ffffff;
    --text-black-color:#3b3b3b;
    --black:#000;
    --blue:#0887cc;
    --deep-blue:#2f82c5;
    --bg-blue:#181d5d;
    --yellow:#fec41f;
    --yellow-bright:#fdba00;
    --gray-heading:#1c2947;
    --green:#49e670;
    --red:#e01818;
    --orange:rgb(230, 65, 0);
    --bg-lap-sales-1:#d0a8ff;
    --bg-lap-sales-2:#d1e1ff;
    --bg-lap-sales-3:#b2ffee;
    --bg-lap-sales-4:#8aeeff;
    --bg-lap-sales-5:#95d5ff;
    --bg-lap-sales-6:#bfbec0;
}
/* ---------------------------------------------------- 
# Global Styling
-------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    text-transform: none;
    border: none;
    transition: 0.2s linear;
}

html {
    font-size: 62.5%;
    font-family: var(--font-JakartaSans);
    font-weight: 400;
    overflow-x: hidden;
    scroll-padding-top: 6rem;
    scroll-behavior: smooth;
}

@media (max-width:720px) {
    html {
        font-size: 55%;
    }
}
/* ---------------------------------------------------- 
# General Styling
-------------------------------------------------------*/
body {
    color: var(--text-black-color);
    background-color: var(--background-white-color);
    font-family: var(--font-montserrat);
}
section {
    padding: 1rem 10%;
}
.section-no-padding{
    padding: 0 !important;
}
/* ---------
BTN CLASSES
-------------*/
.btn-bg-trans-white{
    font-size: 1.5rem;
    color: var(--white);
    display: inline-block;
    padding: 1rem 2rem;
    border: 0.1rem solid var(--white);
    border-radius: 0.5rem;
    text-transform: capitalize;
    font-weight: 500;
    background-color: transparent;
    margin: 0 0 1rem 0;
}
.btn-bg-trans-white:hover{
    color: var(--orange);
    background-color: white;
}

/* mobile */
@media (max-width:720px) {
    section{
        padding: 2rem 5%;
    }
}
/* display reverse */
.display-reverse{
    flex-direction: row-reverse !important;
}
/* ---------
PADDING CLASSES
-------------*/
.pad-5{
    padding: 7rem 0 !important;
}
/* ---------
MARGINE CLASSES
-------------*/
.mar-s-1{
    margin: 0 0.5rem !important;
}
.mar-t-2{
    margin-top: 2rem !important;
}
.mar-6-2{
    margin: 6rem 1rem 2rem !important;
}
.mar-t-10{
    margin-top: 10rem !important;
}
.text{
    font-size: 1.5rem;
}
.center{
    text-align: center !important;
}
/* ---------
HEADING CLASSES
-------------*/
.heading4{
    font-size: 2rem;
    font-weight: 400;
    color: var(--white);
    position: relative;
}
.heading4::before{
    content: "";
    position: absolute;
    top: 50%;
    left: -2.2rem;
    width: 2rem;
    height: 0.3rem;
    background-color: rgb(230, 65, 0);
    margin-bottom: 1rem;
}
/* font size */
.fs-25{
    font-size: 2.5rem !important;
}
/* font width */
.fw-600{
    font-weight: 600 !important;
}
.fw-800{
    font-weight: 800 !important;
}
/* ---------
COLOR CLASSES
-------------*/
.grey{
    color: var(--gray-heading) !important;
}
/* ---------------------------------------------------- 
# Header Styling
-------------------------------------------------------*/
.top-header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding: 1rem 10%;
    background-color: var(--gray-heading);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}
.top-header .container{
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.top-header .container.left-side .icon-text{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}
.top-header .container.left-side .icon-text .icon{
    width: 1.6rem;
    height: 1.6rem;
}
.top-header .container.left-side .icon-text .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.top-header .container.left-side .icon-text .text{
    font-size: 1.4rem;
    color: var(--white);
    font-weight: 400;
}
.top-header .container.right-side{
    gap: 1rem;
}
.top-header .container.right-side .social-icon{
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.top-header .container.right-side .social-icon:nth-child(1){
    width: 2.2rem;
    height: 2.2rem;
}
.top-header .container.right-side .social-icon:nth-child(3){
    width: 1.8rem;
    height: 1.8rem;
    margin: 0 0.5rem 0 0.5rem;
}
.top-header .container.right-side .social-icon:nth-child(4){
    width: 1.6rem;
    height: 1.6rem;
}
.top-header .container.right-side .social-icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header{
    position: fixed;
    top: 4rem;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    background-color: var(--white);
}
.header .logo{
    width: 18rem;
    height: auto;
    padding: 1rem 0;
}
.header .logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.header .navbar ul{
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.header .navbar ul li a{
    font-size: 1.4rem;
    color: var(--gray-heading);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    text-transform: uppercase   ;
}   
.header .whatsapp-btn{
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--yellow-bright);
    color: var(--gray-heading);
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 1rem;
    border: 0.2rem solid var(--gray-heading);
}  
.header .whatsapp-btn:hover{
    background-color: var(--gray-heading);
    color: var(--white);
}
.header #menu-bar{
    display: none;
}
/* Mobile Screen */
@media (max-width:720px) {
    .header{
        padding: 1rem 10%;
    }
    .header .logo{
        width: 15rem;
    }
    .header .navbar{
        position: absolute;
        top: 100%;
        left: 0;
        height: auto;
        padding: 2rem;
        background-color: var(--bg-blue);
        width: 100%;
        height: auto;
        z-index: 0;
        display: none;
    }
    .header .navbar.active{
        display: block;
    }
    .header .navbar::after{
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-color: var(--yellow);
        z-index: -1;
        clip-path: polygon(73% 0, 100% 0, 100% 100%, 40% 100%);
    }
    .header .navbar ul{
        display: block;
        padding: 0 2rem;
    }
    .header .navbar ul li{
        margin: 1.5rem 0;
        border: 0.1rem solid var(--white);
        padding: 1rem 2rem;
        border-radius: 0.5rem;
    }
    .header .navbar ul li a{
        font-size: 1.7rem;
        color: var(--white);
        text-shadow: 0 0.1rem 0.2rem rgba(0,0,0,0.3);
    }
    .header .btn-trans{
        display: none;
    }
    .header #menu-bar{
        display: block;
        width: 3.5rem;
        height: 3.5rem;
        cursor: pointer;
    }
    .header #menu-bar img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    /* header whatsapp */
    .header .whatsapp-btn{
        position: absolute;
        top: 100%;
        right: 2rem;
        margin-top: 2rem;
        z-index: 995;
    }
    .header .whatsapp-btn.active{
        top: 42rem;
    }
}
.booking-form{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    transition: 1s ease-in-out;
}
.booking-form.active{
    clip-path: polygon(0 0, 100% 0,100% 0, 0 0);
}
.booking-form .img-form-container{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: var(--white);
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
}
.booking-form .image{
    width: auto;
    height: auto;
    overflow: hidden;
}
.booking-form .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.booking-form form{
    max-width: 32rem;
    padding: 2rem;
}
.booking-form form h2{
    font-size: 2rem;
    color: var(--gray-heading);
    text-align: center;
    margin-bottom: 1.5rem;
}
.booking-form form input{
    display: block;
    font-size: 1.4rem;
    color: var(--text-black-color);
    padding: 1rem;
    margin: 1rem 0;
    border: 0.1rem solid rgba(0,0,0,0.3);
    border-radius: 0.5rem;
    width: 100%;
}
.booking-form form select{
    display: block;
    font-size: 1.4rem;
    color: var(--text-black-color);
    padding: 1rem;
    margin: 1rem 0;
    border: 0.1rem solid rgba(0,0,0,0.3);
    border-radius: 0.5rem;
    width: 100%;
}
.booking-form form .btn-submit{
    display: block;
    width: 100%;
    padding: 1rem 2.5rem;
    background-color: var(--yellow-bright);
    color: var(--gray-heading);
    font-size: 1.4rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
}
#form-close-btn{
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 5rem;
    height: 5rem;
}
#form-close-btn img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}
/* mobile booking form */
@media (max-width:720px){
    .booking-form{
        padding: 0 2rem;
        margin-top: 4.2rem;
    }
    .booking-form .image{
        width: 100%;
        height: auto;
    }
}
/* banner starts */
.banner{
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 12rem;
    background-color: rgba(0,0,0,0.6);
    z-index: 998;
}
.banner .ban-image-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}
.banner .ban-image-container .baner-slide{
    width: 100%;
    height: 100%;
}
.banner .ban-image-container .baner-slide .banner-image{
    width: 100%;
    height: auto;
}
.banner .ban-image-container .baner-slide .banner-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner .banner-content{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 1rem;
    max-width: 50rem;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 2rem;
}
.banner .banner-content h1{
    font-size: 4rem;
    color: var(--white);
    text-align: left;
    text-transform: capitalize;
    text-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
}
/* mobile banner h1 */
@media (max-width:720px){
    .banner .banner-content h1{
        font-size: 3.5rem;
    }
    .banner .banner-content p{
        display: none;
    }
    .banner .banner-content h2{
        font-size: 2.1rem !important;
        text-shadow: 0 0.1rem 0.1rem rgba(0,0,0,0.3);
        font-weight: 400;
    }
}
.line{
    width: 12rem;
    height: 0.4rem;
    background-color: var(--yellow-bright);
    margin: 1.5rem 0;
    border-radius: 0.2rem;
}
.banner .banner-content h2{
    font-size: 2.4rem;
    color: var(--white);
    text-align: left;
    text-transform: capitalize;
    text-shadow: 0 0.4rem 0.7rem rgba(0,0,0,0.3);
}
.banner .banner-content p{
    font-size: 1.8rem;
    color: var(--white);
    text-align: left;
    max-width: 60rem;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.3);
}
.banner .banner-content .btn-banner{
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--yellow-bright);
    color: var(--gray-heading);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 0.2rem solid var(--gray-heading);
    margin-top: 1rem;
}
.banner .banner-content .btn-banner-trans{
    display: inline-block;
    padding: 0.8rem 3rem;
    background-color: transparent;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 400;
    border-radius: 0.5rem;
    border: 0.2rem solid var(--white);
    margin-top: 1rem;
}
.banner .banner-content .btn-banner:hover{
    background-color: var(--gray-heading);
    color: var(--white);
}
.btn-container{
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}
.iso-certificate{
    position: absolute;
    top: 3rem;
    right: 3rem;
    width: 12rem;
    height: 12rem;
}
.iso-certificate img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media (max-width:720px){
    .iso-certificate{
        width: 10rem;
        height: 10rem;
        top: 6rem;
    }
}
/* banner dropdown */
.banner-dropdown{
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 4rem;
    height: 10rem;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.banner-dropdown .dropdown{
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;

    /* animation */
    animation: dropFloat 1.6s ease-in-out infinite;
    animation-direction: alternate; /* plays forward then backward */
    animation-delay: 0.5s;          /* optional: wait a little before starting */
}
.banner-dropdown .dropdown img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* filter: invert(1); */
}
/* keyframes: move from slightly up to slightly down */
@keyframes dropFloat {
  0% {
    transform: translateY(-2rem); /* start a bit up */
  }
  100% {
    transform: translateY(2rem);  /* end slightly further down */
  }
}
.course-container{
    position: absolute;
    right: 10%;
    bottom: 5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.course-container .image{
    width: auto;
    height: 6rem;

    /* animation */
    animation: courseFloat 1.5s ease-in-out infinite;
    animation-direction: alternate; /* plays forward then backward */
    animation-delay: 0.4s;          /* optional: wait a little before starting */
}
.course-container .image:nth-child(2){
    animation-delay: 0.7s;
}
.course-container .image:nth-child(3){
    animation-delay: 1s;
}
.course-container .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* keyframes: move from slightly up to slightly down */
@keyframes courseFloat {
  0% {
    transform: translateY(-2rem); /* start a bit up */
  }
  100% {
    transform: translateY(2rem);  /* end slightly further down */
  }
}
/* banner ends */
/* home course starts */
.home-course{
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
    justify-content: center;
    gap: 2rem;
    background-color: rgb(218, 218, 218);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    padding-bottom: 3rem;
}
.home-course .course-bar{
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
    align-items: center;
}
.home-course .course-bar .course-item{
    flex: 1 1 30rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    border-right: 0.25rem solid var(--gray-heading);
    cursor: pointer;
    color: transparent;
}
/* home course course bar */
@media (max-width:720px){
    .home-course .course-bar{
        gap: 1rem;
    }
    .home-course .course-bar .course-item{
        flex: 1 1 10rem;
        flex-flow: column;
        border-right: none;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}
.home-course .course-bar .course-item:hover .icon{
    transform: scale(0.8)
}
.home-course .course-bar .course-item:last-child{
    border-right: none;
}
.home-course .course-bar .course-item .icon{
    width: 6rem;
    height: 6rem;
    transition: 1s ease-in-out;
}
.home-course .course-bar .course-item .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.home-course .course-bar .course-item .course-title{
    font-size: 1.8rem;
    color: var(--gray-heading);
    font-weight: 600;
    text-transform: capitalize;
}
/* home course course bar */
@media (max-width:720px){
    .home-course .course-bar .course-item .icon{
        width: 4.5rem;
        height: 4.5rem;
    }
    .home-course .course-bar .course-item .course-title{
        font-size: 1.2rem;
        text-align: center;
    }
}
.course-link{
    display: inline-block;
    margin: 1rem 0;
    padding: 1rem 3rem;
    border-radius: 0.5rem;
    background-color: var(--yellow-bright);
    color: var(--gray-heading)!important;
    font-size: 1.5rem;
    font-weight: 600;
}
/* home course ends */
/* about starts */
.home-about{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 5rem;
    background-color: #120d2e;
    z-index: 995;
    position: relative;
}
.home-about .image{
    flex: 1 1 30rem;
    height: auto;
    position: relative;
    z-index: 997;
    margin: 2rem 0;
    border-radius: 2rem;
    overflow: hidden;
}
.home-about .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.home-about .about-content{
    flex: 1 1 60rem;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem;
    z-index: 997;
    border-radius: 5rem;
    position: relative;
}
.home-about .about-content h2{
    font-size: 3rem;
    color: var(--white);
    text-transform: capitalize;
}
.home-about .about-content p{
    font-size: 1.6rem;
    color: var(--white);
    text-align: left;
    line-height: 2.4rem;
}
.home-about .about-content .btn-about{
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--yellow-bright);
    color: var(--gray-heading);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: 0.2rem solid var(--gray-heading);
    margin-top: 1rem;
}
/* about ends */
/* review starts */
.home-review{
    width: 100%;
    height: auto;
    margin-top: 3rem;
    background-color: var(--white);
    position: relative;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1.5rem;
}
.home-review .section-title{
    font-size: 2.5rem;
    color: var(--gray-heading);
}
.home-review .desc{
    font-size: 1.5rem;
    color: var(--gray-heading);
    text-align: center;
    max-width: 80rem;
}
.home-review .review-slide{
    width: 100%;
    height: auto;
    padding: 4rem 0;
}
.home-review .review-slide .review-card{
    background-color: rgb(244, 238, 255);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0.5rem 0.5rem 1rem rgba(0,0,0,0.1);
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1.5rem;
}
.home-review .review-slide .review-card .student-image{
    width: 15rem;
    height: 15rem;
    border: 0.3rem solid #120d2e;
    border-radius: 50%;
    overflow: hidden;
}
.home-review .review-slide .review-card .student-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-review .review-slide .review-card .student-review{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding: 0 2rem;
}
.home-review .review-slide .review-card .student-review p{
    font-size: 1.4rem;
    color: var(--gray-heading);
}
.home-review .review-slide .review-card .student-review h4{
    font-size: 1.6rem;
    color: var(--gray-heading);
    font-weight: 600;
    font-style: italic;
}
.map{
    width: 100%;
    height: auto;
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* review ends */
  /* footer starts */
  .footer{
    position: relative;
    width: 100%;
    height: auto;
    background-color: #120d2e;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 995;
  }
  .footer .container{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 3rem;
    width: 100%;
    height: auto;
    padding: 5rem 0;
    }
    .footer .container .footer-box{
    flex: 1 1 30rem;
    height: auto;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 1rem;
    }  
    .footer .container .footer-box .address{
        margin-top: 2rem;
    }
    .footer .container .footer-box .address .text{
        font-size: 1.5rem;
        color: var(--white);
        padding-bottom: 1rem;
    }
    .footer .container .footer-box .address .text a{
        color: var(--white);
    }
    .footer .container .footer-box ul{
    margin-top: 2rem;
    }
    .footer .container .footer-box ul li{
    margin-bottom: 1rem;
    }
    .footer .container .footer-box ul li a{
    font-size: 1.5rem;
    color: var(--white);
}
    .footer .container .footer-box .box-heading{
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--white);
    }
    .footer .container .footer-box .featured-post-container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    }
    .footer .container .footer-box .featured-post-container .f-post{
    max-width: 15rem;
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
    }
    .footer .container .footer-box .featured-post-container .f-post img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    }    
  /* footer ends */
/* copy right starts  */
.copy-right{
    width: 100%;
    height: auto;
    background-color: #050216;
    text-align: center;
    padding: 1.5rem 4rem;
    margin: 0;
}
.copy-right p{
    font-size: 1.4rem;
    color: var(--white);
}
.copy-right p a{
    color: var(--white);
    font-weight: 600;
}
/* copy right ends  */
/* inner pages starts */
/* inner banner starts */
.inner-banner{
    position: relative;
    width: 100%;
    height: 45rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 12rem;
    background-color: rgba(0,0,0,0.6);
    z-index: 998;
}
.inner-banner .inner-banner-content{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
}
.inner-banner .inner-banner-content .page-title{
    font-size: 4rem;
    color: rgb(230, 65, 0);
    text-transform: uppercase;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.2);
    max-width: 55rem;
}
.inner-banner .inner-banner-content .page-heading{
    font-size: 4rem;
    color: #050216;
    text-transform: capitalize;
    font-weight: 800;
    text-shadow: 0 0.3rem 0.5rem rgba(0,0,0,0.2);
    margin: 2rem 0 1rem;
    position: relative;
}
/* inner banner title & heading mobile */
@media (max-width:720px){
    .inner-banner .inner-banner-content{
        backdrop-filter: blur(10px);
        padding: 2rem;
        border-radius: 2rem;
        margin-top: 20rem;
    }
    .inner-banner .inner-banner-content .page-title{
        font-size: 3rem;
    }
    .inner-banner .inner-banner-content .page-heading{
        font-size: 3rem;
    }
    .inner-banner .inner-banner-content .desc{
        display: none;
    }
}
.inner-banner-btn{
    display: inline-block;
    padding: 1rem 3rem;
    background-color: rgb(230, 65, 0);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    /* border: 0.2rem solid var(--gray-heading); */
    margin-top: 1rem;
}
.inner-banner-btn:hover{
    background-color: #050216;
    color: var(--white);
}
.inner-banner .inner-banner-content .page-heading::before{
    position: absolute;
    content: '';
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 0.4rem;
    background-color: rgb(230, 65, 0);
    display: block;
    border-radius: 0.2rem;
}
.inner-banner .inner-banner-content .desc{
    font-size: 1.8rem;
    color:#050216;
    text-align: left;
    max-width: 60rem;
}
.inner-banner .inner-banner-image{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45rem;
    overflow: hidden;
    z-index: -1;
    display: none;
}
.inner-banner .inner-banner-image #bas-blank{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* animated banner */
.inner-banner-animated-image-container{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45rem;
    overflow: hidden;
    z-index: -1;
}
/* bas image */
.inner-banner-animated-image-container #bas-blank{
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.inner-banner-animated-image-container #bas-blank img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* left dots */
.inner-banner-animated-image-container #lft-g-dots{
    position: absolute;
    top: 5%;
    left: 2%;
    width: 23rem;
    height: auto;

    /* animation */
    animation: dots-roaming 1.6s ease-in-out infinite;
    animation-direction: alternate; /* plays forward then backward */
    animation-delay: 0.5s;          /* optional: wait a little before starting */
}
.inner-banner-animated-image-container #lft-g-dots img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* righ green dots */
.inner-banner-animated-image-container #r-g-dots{
    position: absolute;
    top: 40%;
    left: 83%;
    width: 23rem;
    height: auto;

    /* animation */
    animation: dots-roaming 1.6s ease-in-out infinite;
    animation-direction: alternate; /* plays forward then backward */
    animation-delay: 0.5s;          /* optional: wait a little before starting */
}
.inner-banner-animated-image-container #r-g-dots img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* red dots */
.inner-banner-animated-image-container #red-dots{
    position: absolute;
    top: 10%;
    left: 60%;
    width: 23rem;
    height: auto;

    /* animation */
    animation: red-dots-roaming 1.6s ease-in-out infinite;
    animation-direction: alternate; /* plays forward then backward */
    animation-delay: 0.5s;          /* optional: wait a little before starting */
}
.inner-banner-animated-image-container #red-dots img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* keyframes: red dots roming back and forth */
@keyframes red-dots-roaming {
  0% {
    transform: translateX(20%); /* start a bit up */
  }
  100% {
    transform: translateX(0);  /* end slightly further down */
  }
}
/* keyframes: rotate back and forth */
@keyframes dots-roaming {
  0% {
    transform: translateY(20%); /* start a bit up */
  }
  100% {
    transform: translateY(0);  /* end slightly further down */
  }
}
/* b-doted */
.inner-banner-animated-image-container #b-doted{
    position: absolute;
    top: 37%;
    left: 81%;
    width: 15.5rem;
    height: auto;

    /* animation */
    animation: doted-border-rotate-back-forth 1.6s ease-in-out infinite;
    animation-direction: alternate; /* plays forward then backward */
    animation-delay: 0.5s;          /* optional: wait a little before starting */
}
/* student mobile */
@media (max-width:720px){
    .inner-banner-animated-image-container #bas-blank{
        height: 45rem;
    }
    .inner-banner-animated-image-container #b-doted{
        width: 12rem;
        height: auto;
        left: 70%;
    }
    .inner-banner-animated-image-container #red-dots{
        width: 15rem;
    }
    .inner-banner-animated-image-container #r-g-dots{
        width: 15rem;
    }
    .inner-banner-animated-image-container #lft-g-dots{
        width: 15rem;
    }
}
.inner-banner-animated-image-container #b-doted img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* keyframes: rotate back and forth */
@keyframes doted-border-rotate-back-forth {
  0% {
    transform: rotate(25deg); /* start a bit up */
  }
  100% {
    transform: rotate(0deg);  /* end slightly further down */
  }
}
/* stu */
.inner-banner-animated-image-container #stu{
    position: absolute;
    top: 3%;
    left: 60%;
    width: 45rem;
    height: auto;
    transform: scale(0.9);
    transition: 1s ease-in-out;
}
/* student mobile */
@media (max-width:720px){
    .inner-banner-animated-image-container #stu{
        left: 0;
    }
}
.inner-banner-animated-image-container:hover #stu{
    transform: scale(1);
}
.inner-banner-animated-image-container #stu img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* inner banner ends */
/* about main starts */
.about-main{
    position: relative;
    width: 100%;
    height: auto;
    z-index: 994;
    margin-top: 5rem;
}
.about-main .container{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 5rem;
}
.about-main .container .ab-image{
    flex: 1 1 40rem;
    height: auto;
    overflow: hidden;
    border-radius: 1rem;
}
.about-main .container .ab-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.about-main .container .content{
    flex: 1 1 40rem;
    height: auto;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 2rem;
}
.about-main .container .content .icon-and-text-container{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 3rem;
}
.about-main .container .content .icon-and-text-container .icon-and-text{
    flex: 1 1 20rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.about-main .container .content .icon-and-text-container .icon-and-text .icon{
    width: 4rem;
    height: 4rem;
}
.about-main .container .content .icon-and-text-container .icon-and-text .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.small-tick{
    width: 2.5rem !important;
    height: 2.5rem !important;
}
.small-tick img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* our team */
.section-header{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}
.section-header .section-heading{
    font-size: 2.5rem;
    color: var(--gray-heading);
    font-weight: 800;
    text-transform: capitalize;
    position: relative;
}
.section-header .section-heading::before{
    position: absolute;
    content: '';
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 0.3rem;
    background-color: rgb(230, 65, 0);
    display: block;
    border-radius: 0.2rem;
    margin: .5rem 0;
}
.section-header .text{
    font-size: 1.6rem;
    color: var(--gray-heading);
    text-align: center;
    max-width: 80rem;
}
.our-team-container .team-member-container{
    width: 100%;
    height: auto;
}
.our-team-container .team-member-container .our-team-member{
    width: 100%;
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
    background-color: rgb(243, 243, 243);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}
.our-team-container .team-member-container .our-team-member .image{
    width: 19rem;
    height: 19rem;
    border-radius: 1rem;
    overflow: hidden;
}
.our-team-container .team-member-container .our-team-member .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.our-team-container .team-member-container .our-team-member .content{
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}
.our-team-container .team-member-container .our-team-member .content .team-name{
    font-size: 1.8rem;
    color: var(--gray-heading);
    font-style: italic;
    font-weight: 300;
}
.our-team-container .team-member-container .our-team-member .content .desg{
    font-size: 1.6rem;
    color: var(--gray-heading);
    font-weight: 600;
}
.our-team-container .team-member-container .our-team-member .content .desc{
    font-size: 1.4rem;
    color: var(--gray-heading);
    text-align: center;
    line-height: 2rem;
    font-style: italic;
}
/* about main ends */
/* course starts */
.it-course-container{
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin: 5rem 0;
}
.it-course-container .course{
    flex: 1 1 35rem;
    height: auto;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    box-shadow: 0 1rem 1rem rgba(0,0,0,0.1);
    border-radius: 1rem;
    padding: 2rem;
    border: 0.1rem solid rgba(0,0,0,0.1);
    min-height: 32rem;
}
.it-course-container .course .image{
    width: 8rem;
    height: 8rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
    transition: 0.5s ease-in-out;
}
.it-course-container .course:hover .image{
    transform: scale(1);
}
.it-course-container .course .image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.it-course-container .course:nth-child(2) .image img{
    margin-bottom:1rem;
}
.it-course-container .course .content{
    width: 100%;
    height: auto;
    padding: 1rem 2rem;
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1rem;
}
.it-course-container .course .content .course-title{
    font-size: 2rem;
    font-weight: 600;
    color: var(--gray-heading);
}
.it-course-container .course .content .desc{
    font-size: 1.4rem;
    font-weight: 400;
    font-style: italic;
}
.it-course-container .course .content .duration-eligibility{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.it-course-container .course .content .duration-eligibility .duration,
.it-course-container .course .content .duration-eligibility .eligibility{
    font-size: 1.2rem;
    color: var(--gray-heading);
    font-weight: 600;
}
.it-course-container .course .content .carrior-options{
    font-size: 1.4rem;
    color: var(--gray-heading);
}
/* why choose */
.why-choose-bg{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    background-color: var(--orange);
}
.why-choose .section-header{
    align-items: flex-start !important;
}
.why-choose .section-header .section-heading{
    color: var(--white)!important;
}
.why-choose .section-header .section-heading::before{
    background-color: var(--white);
    top: 80%;
}
.why-choose .why-choose-content-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin: 5rem 0;
}
.why-choose .why-choose-content-container .why-choose-content{
    flex: 1 1 50rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.why-choose .why-choose-content-container .why-choose-content .icon{
    width: 3rem;
    height: 3rem;
}
.why-choose .why-choose-content-container .why-choose-content .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.why-choose .why-choose-content-container .why-choose-content .text{
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 600;
}
.academic-courses-container{
    align-items: flex-start !important;
}
/* .academic-courses{
    min-height: 90rem !important;
} */
.academic-courses .content .sub-coverd{
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--gray-heading);
    padding: 2rem 0;
}
.academic-courses .content .academic-courses-content-container{
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    height: auto;
}
.academic-courses .content .academic-courses-content-container .why-choose-content{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.academic-courses .content .academic-courses-content-container .why-choose-content .text{
    color: var(--gray-heading);
    font-style: italic;
    font-weight: 400;
}
.academic-courses .content .academic-courses-content-container .why-choose-content .icon{
    width: 3rem;
    height: 3rem;
}
.academic-courses .content .academic-courses-content-container .why-choose-content .icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
/* course ends */
/* contact us starts */
.contact-page{
    display: flex;
    align-items: center;
    flex-flow: column;
    gap: 5rem;
}
.contact-page .contact-us-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5rem;
    width: 100%;
    height: auto;
}
.contact-page .contact-us-container .contact-image{
    flex: 1 1 30rem;
    height: auto;
    border-radius: 2rem;
    overflow: hidden;
    margin: 4rem;
}
.contact-page .contact-us-container .contact-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.contact-page .contact-us-container .contact-form{
    flex: 1 1 40rem;
    height: auto;
    padding: 5rem 2rem 3rem;
    background-color: var(--orange);
    border-radius: 2rem;
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.contact-page .contact-us-container .contact-form::after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: var(--gray-heading);
    z-index: -1;
    clip-path: polygon(85% 0, 100% 0, 100% 100%, 10% 100%);
}
.contact-page .contact-us-container .contact-form .heading3{
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    text-align: center;
}
.contact-page .contact-us-container .contact-form form{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
    height: auto;
}
.contact-page .contact-us-container .contact-form form input{
    width: 100%;
    height: 4rem;
    padding: 0 1rem;
    font-size: 1.5rem;
    color: var(--black);
    border: 0.1rem solid rgb(200, 200, 200);
    border-radius: 0.5rem;
    outline: none;
}
.contact-page .contact-us-container .contact-form form textarea{
    width: 100%;
    height: 10rem;
    padding: 1rem;
    font-size: 1.5rem;
    color: var(--black);
    border: 0.1rem solid rgb(200, 200, 200);
    border-radius: 0.5rem;
    outline: none;
    resize: vertical;
}
.contact-page .contact-us-container .contact-form form .submit-btn{
    width: 100%;
    height: 4rem;
    background-color:var(--orange);
    color: var(--white);
    font-size: 1.6rem;
    font-weight: 600;
    border: 0.2rem solid var(--white);
    border-radius: 1rem;
    cursor: pointer;
    text-transform: uppercase;
}
.contact-page .map{
    width: 100%;
    height: auto;
}
/* registration form starts */
.student-registration-form-container{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: flex-start;
}
form{
    max-width:820px;
    margin:0 auto;
}
.row{
    display:flex;
    gap:12px;
}
.half{
    flex:1;
}
label{
    display:block;
    margin-bottom:1rem;
    font-size: 1.4rem;
}
input, select, textarea{
    width:100%;
    padding:8px;
    border:1px solid #ddd;
    border-radius:4px;
}
.btn{
    padding:1rem 2rem;
    display: inline-block;
    background-color: var(--orange);
    color: var(--white);
    border-radius: 0.5rem;
    margin-top:12px;
    cursor: pointer;
}
/* registration form ends */
/* thank you */
.thank-you, 
.page-not-found{
    width: 100%;
    height: auto;
    margin: 2rem 0;
}
.thank-you .thankyou, 
.page-not-found .pag404{
    font-size: 3rem;
    color: var(--orange);
    text-shadow: 0.1rem 0.2rem 0.3rem rgba(0,0,0,0.2);
}