:root{
    --primary:#03346E;
    --dark:#021526;
    --secondary:#6EACDA;
    --accent:#F9E400;
    --accent-hover:#F5004F;
    --green-1:#5F6F65;
}
input:focus,button:focus,textarea:focus{
    box-shadow:none !important;
}
.section{
    padding: 60px 0;
}
.hero{
    min-height: 550px;
    background-image: url('images/banner.jpg');
    background-size: cover;
    background-color: var(--primary);
    color: white;
    position: relative;
}
.overlay{
    position: absolute;
    padding: 60px 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.808);
    display: flex;
    align-items: center;
}

.hero-img{
    max-width: 400px;
}
.cta-btn{
    padding: 10px 20px;
    font-size: 18px;
    font-weight: 500;
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
}
.cta-btn:hover{
    background-color: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    color: white;
}
.content p{
    font-size: 20px;
}

.content-x{
    position: relative;
}
.about .content{
    display: flex;
    position: relative;
    align-items: start;
}
.content-x img{
    width: 350px;
    position: absolute;
    right: -120px;
    top: 160px;
}

.subjects{
    background-color: #000000;
    color: white;
}
.ssbj{
    height: 100%;
}
.ssbj img{
    width: 100px;
}
.ssbj p{
    font-size: 20px;
}
.section-heading{
    margin-bottom: 30px;
}
.testimonial-section{
    background-color: #1B1A55 ;
    color: white;
}

.testimonials .item .inner{
    padding: 30px;
}
.testimonials .item .inner img{
    width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.testimonials .item .inner q{
    font-style: italic;
    display: block;
    margin-bottom: 10px;
}
.testimonials .item .inner p{
    margin-bottom: 0;
    font-weight: bold;
}

.se1{
    background-color: #FFF8E3;
}
.se1 img{
    border-radius: 50px;
}
.contact{
    background-color: var(--primary);
    color: white;
}
.form{
    max-width: 400px;
    margin: auto;
    text-align: left;
}
.form-control{
    border-radius: 0;
}
.form-group{
    margin-bottom: 24px;
}
footer{
    padding: 60px 0;
    background-color: #000;
}
.social{
    display: flex;
    column-gap: 10px;
    margin: auto;
    justify-content: center;
}
.social img{
    width: 50px;
}
.spcc{
    font-weight: bold;
    display: flex;
    gap: 10px;
}
.spcc span{
    background-color: #2c2c2c;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
}

.faculties,.testimonialsx{
    background-color: var(--bs-gray-100);;
}
header{
position: sticky;
top:0;
z-index: 999;
background-color:aliceblue;
}
header>.container{
    display: flex;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
}
header>.container>a.logo{
    text-decoration: none;
    display: block;
    font-size: 30px;
    color: var(--dark);
    font-weight: bold;
}
header .container nav{
    display: flex;
    align-items: center;
    gap: 15px;
    width:100%;
    justify-content:space-between;
}
header .container nav .container{
    justify-content:space-between;
}
.navbar-expand-sm .navbar-collapse{
    justify-content:end;
}
header .container nav a{
    text-decoration: none;
    display: block;
    color: var(--dark);
    transition: 300ms;
    padding: 20px 20px;
    
}
header .container nav a:hover{
    background-color: var(--dark);
    color: white;
}
@media screen and (max-width:768px){
    .hero{
        min-height:950px;
    }
    .contentxx{
        text-align:center;
    }
    .contentxx >*{
        width:100%;
        order:1;
    }
    .about .content{
        flex-direction:column;
    }
    .contentxx > img{
        order:0;
    }
    #about{
        text-align:Center;
    }
    .inner{
        text-align:center;
    }
    .spcc{
        display:block;
        margin:auto;
    }
    .testimonials .item .inner img{
        margin:auto;
        margin-bottom:10px;
    }
}