@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #1E4C9A;
    --secondary-color: #000000;
    --white: #ffffff;
    --black: #1E365E;
    --theme-font: 'Jost', sans-serif;
    --bgLight: #E5E5E6;
    --colorText: #282828;
    --text-color:#59585C;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: var(--theme-font);
    font-weight: 400;
}

a {
    color: var(--secondary-color);
    text-decoration: underline;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

h1 {
    font-family: var(--theme-font);
}

h2 {
    font-family: var(--theme-font);
    font-size: 2.25rem;
    font-weight: 700;
}

h3 {
    font-family: var(--theme-font);
    font-size: 2.25rem;
    font-weight: 500;
}

h4 {
    font-family: var(--theme-font);
    font-size: 1.5rem;
    font-weight: 700;
}

h5 {
    font-family: var(--theme-font);
    font-size: 1.125rem;
    font-weight: 700;
}
p{
    color: var(--text-color);
}


.btn-primary {
    background-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    transition: 0.5s;
    border: none;
    font-size: 20px;
    font-weight: 400;
    border-radius: 100px !important;

}

.btn-primary:hover {
    background-position: right center;
    background-color: var(--white);
    color: var(--black);
}

.btn-primary:focus-visible {
    color: var(--secondary-color);
    background-color: #e0ce00;
    border-color: #e0ce00;
    outline: 0;
    box-shadow: var(--secondary-color);
}

.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 0.5rem 1.2rem;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    opacity: 0.9;
}

.btn-secondary:focus-visible {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    outline: 0;
    box-shadow: var(--secondary-color);
    color: #fff;
}

.site-header {
    font-family: var(--theme-font);
    border-bottom: 1px solid #C8C8CE;
    position: relative;
}

.navbar-fix-top {
    position: fixed;
    width: 100%;
    top: 0px;
    background: #fff;
    z-index: 5;
    box-shadow: 0 0 49px rgb(0 0 0 / 10%);
    z-index: 999;
}

.btn {
    border-radius: 0.2rem;
}

/* css start here */


.navbar-brand {
    font-family: var(--theme-font);
    font-weight: 700;
    font-size: 30px;
    color: var(--primary-color);
}

.navbar-brand:hover {
    color: #e0ce00;
}

/* .container {
    max-width: 1450px;
} */
.btn-outline-primary {
    border-color: var(--secondary-color);
    color: var(--black);
    border-radius: 100px !important;
    /* height: 50px; */
    /* line-height: 2; */
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    font-size: 20px;
    border: none !important;
    background-color: var(--white);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.pages-heading {
    width: 650px;
    margin: auto;
    max-width: 100%;
}

.pages-heading h2 {
    font-size: 36px;
}

.pages-heading p {
    font-size: 18px;
}

.site-header .btn-link {
    text-decoration: none;
    color: var(--black);
}

.site-header .btn-link:hover {
    color: var(--primary-color);
}

.navbar-nav {
    font-size: 1.125rem;
}

.navbar-nav .nav-item {
    margin-left: 10px;
    font-weight: 500;
}

.navbar-nav .nav-item .nav-link.active,
.navbar-nav .nav-item .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .nav-item .nav-link {
    font-size: 16px;
}

/* .banner {padding: 3rem 0;} */
.banner h1 {
    font-weight: 600;
    font-family: var(--theme-font);
    font-size: 36px;
    color: var(--secondary-color);
}

.banner h1 span {
    color: var(--primary-color);
    font-weight: 500;
}

.banner p {
    font-size: 1.125rem;
}

.banner_img {
    left: -20px;
    bottom: 0;
}

.banner-retaing {
    display: flex;
    align-items: center;
    background-color: #FFF2FE;
    padding: 10px 20px;
    border-radius: 10px;
    margin-top: 50px;
}

.border-left {
    border-left: 1px solid #D88CD3;
    padding: 15px 30px;
}

.border-left span {
    font-size: 20px;
    font-weight: 400;
}

.border-left img {
    vertical-align: baseline;
}

.image-block {
    border: solid 1px #eee;
    background: #fff;
    text-align: center;
}

.image-block img {
    max-height: 420px;
}

.middle-banner {
    padding: 4rem 0;
}

.home-content-block h2 {
    font-size: 2rem;
    line-height: 3rem;
    color: var(--secondary-color);
    font-weight: 300;
}

.home-content-block p {
    line-height: 1.7rem;
}

.account-block button {
    width: 40px;
    height: 40px;
    background-color: #1E4C9A !important;
    border-radius: 100px;
    color: var(--white);
    animation: vibrate 1.75s infinite cubic-bezier(.66, 0, 0, 1);
    box-shadow: 0 0 0 0 rgba(30, 75, 154, 0.473);
    margin-left: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.account-block button img {
    width: 30px;
}

/*feature-section css add */
.feature-section .feature-section {
    padding: 60px 0;
}

.feature-section .section-title {
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.feature-section .section-subtitle {
    font-size: 18px !important;
    color: #59585C;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.feature-section .feature-card {
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-section .feature-card:hover {
    transform: translateY(-5px);
}

.feature-section .feature-icon {
    width: 70px;
    height: auto;
    margin-bottom: 10px;
}

.feature-section .feature-heading {
    color: #2c3e50;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.feature-section .feature-text {
    color: #59585C;
    font-size: 16px;
    line-height: 1.6;
}

/*feature-section end*/
/*infographic add*/
.infographic .infographic-card_right {
    border-radius: 50px 50px 50px 0 !important;
}

.infographic .infographic-card {
    border-radius: 50px 50px 0 50px;
    padding: 11px 17px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.infographic .infographic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.infographic .icon-box {
    font-size: 20px;
    margin-right: 20px;
}

.infographic .main-illustration {
    max-width: 100%;
    height: auto;
    padding: 20px;
}

.infographic .sub-text {
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/*infographic end*/
/*popular-courses add*/
.popular-courses .custom-card {
    background-color: rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 15px;
    margin-top: 10px;
}

.popular-courses {
    background-image: url('../images/event-cta-bg.png');
    background-size: cover;
    background-position: center;
}

.popular-courses .custom-card:hover {
    transform: translateY(-5px);
    background-color: #ffffff;
}

.popular-courses .text-uppercase {
    color: #2d3748;
    font-size: 20px;
    font-weight: 500;
    padding: 20px 0 0;
}

.popular-courses .courses_button {
    font-size: 20px;
    background-color: #1E4C9A !important;
    border: none;
    line-height: 1.8;
    height: 50px;
}

.popular-courses .courses_button:hover {
    background-color: var(--white) !important;
}

.popular-courses .card-body img {
    width: 60px !important;
    margin: auto;
}

.popular-courses .owl-nav button {
    position: relative;
    top: 0%;
    background-color: #000;
    color: #fff;
    margin: 0;
    transition: all 0.3s ease-in-out;
    width: 33px;
    height: 33px;
}

.popular-courses .owl-nav button.owl-prev {
    left: 0;
    border-right: 1px solid #fff !important;
}

.popular-courses .owl-nav button.owl-next {
    right: 0;
}

.popular-courses .owl-dots {
    text-align: center;
    padding-top: 15px;
    display: block !important;
}

.popular-courses .owl-dots button.owl-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.popular-courses .owl-dots button.owl-dot.active {
    background-color: #000;
}

.popular-courses .owl-dots button.owl-dot:focus {
    outline: none;
}

.popular-courses .owl-nav button span {
    font-size: 30px;
    position: relative;
    top: -10px;
    height: 33px;
    display: block;
    color: #fff;
}

.popular-courses .owl-nav button:focus {
    outline: none;
}

.popular-courses .owl-item {
    /* height: 300px !important; */
    display: flex;
}

.popular-courses .item {
    width: 100%;
}

.popular-courses .owl-carousel .owl-nav,
.popular-courses .owl-carousel .owl-nav.disabled {
    display: block !important;
    height: 33px;
    position: absolute;
    right: 0;
    top: -15px;
    transform: translateY(-70%);
    background: var(--primary-color);
    border-radius: 30px;
}

/*popular-courses end*/
/*resource add*/
.badge-label{
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
}
.sidebar-entry-link{
    font-weight: 500 !important;
    font-size: 20px;
    color: var(--black);
}
/*resource end*/
/*rated-section add*/
.rated-section{
    background-color: #F4F3FF;
}
.owl-slider2 .custom-card p{
    font-size: 15px;
    margin: 10px 0 15px;
}
.block-rates .fa{
    color: #E0A955;
    font-size: 15px;
    padding-left: 5px;
}
.star_block{
    display: flex;
    align-items: center;
    gap: 20px;
}
.star_block img{
    width: 50px !important;
    height: 50px;
    border-radius: 100px;
    display: flex;
}
.star_block h4{
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    margin-bottom: 0;
}
.star_block p{
    font-size: 16px;
    color: #9F9F9F;
    margin: 0 !important;
}

.rated-section .owl-nav .owl-prev,
.rated-section .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.rated-section .owl-nav .owl-prev {
    left: -40px; 
   
}

.rated-section .owl-nav .owl-next {
    right: -40px;  
}
.rated-section .owl-nav .owl-prev::before {
    content: "\f060";font-family: 'FontAwesome';
     background-color: #fff;
    padding: 10px;  
    border-radius: 100%;
    color: #727578;
   border: 1px solid #1e4c9a33;
    box-shadow: 0 0 10px #00000038;
}

.rated-section .owl-nav .owl-next::before {
    content: "\f061";font-family: 'FontAwesome';
     background-color: #fff;
    padding: 10px;  
    border-radius: 100%;
    color: #727578;
   border: 1px solid #1e4c9a33;
    box-shadow: 0 0 10px #00000038;
}
.rated-section .owl-nav .owl-prev , .rated-section .owl-next{
    position: absolute;
    top: 50%;
}
.rated-section .owl-nav .owl-prev span, .rated-section .owl-next span {
display: none !important;
}
/*rated-section end*/
/*about-visual-container add*/

.about-wrapper {
    background-color: var(--primary-color);
    background-size: 8.333% 100%;
    color: var(--bgLight);
    padding: 40px 0;
    overflow: hidden;
}

.about-wrapper .about-title {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.about-wrapper .about-subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    color: var(--white);
}

.about-wrapper .about-description {
    font-weight: 300;
    line-height: 1.7;
    opacity: 0.85;
    font-size: 0.95rem;
}
.about-description p{
    color: var(--bgLight);
}
.about-wrapper .btn-brand-primary {
    background-color: var(--accent-btn);
    color: #222;
    border-radius: 50px;
    padding: 0.75rem 2.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-wrapper .btn-brand-primary:hover {
    background-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.about-wrapper .about-visual-container {
    text-align-last: end;
    position: relative;
    z-index: 2;
}

.about-wrapper button {
    border-radius: 50px;
    height: 50px;
    width: 136px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
}

.about-wrapper button:hover {
    background-color: var(--black) !important;
    color: var(--white) !important;
}

.about-wrapper .about-img-fluid {
    background: var(--black);
    border-radius: 30px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    padding: 40px 20px 0;
}

/*about-visual-container end*/
/*location-card add*/

.nav_name_class .nav-link {
    color: var(--black);
    background-color: #F6F6F6;
    margin-right: 10px;
    border-radius: 5px;
    font-weight: 400;
    font-size: 18px;
    margin-top: 10px;
}

.nav_name_class .nav-link.active {
    background-color: #1E365E !important;
    color: #ffffff !important;
}
.location-outer .tab-pane {
    height: 450px;
    overflow-x: auto;
}
.location-card {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid #dcdcdc;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.2s;
}

.location-card:hover {
    background: rgba(255, 255, 255, 0.8);
        transform: translateY(-3px);
}

.location-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.location-card h5{
    color: var(--black);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}
/*location-card end*/
/*fag section add*/
.faq-section{
    background-image: url('../images/faq-section.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.faq-section .btn-booking.book_free_bg{
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    height: 50px;
}
.faq-section .btn-booking.book_free_bg:hover{
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
}
.faq-section .accordion-item{
     background-color: #FCFCFC;
     margin-bottom: 10px;
     border-radius: 5px;
}
.faq-section .accordion-header .accordion-button{
    color: var(--black);
    font-size: 20px;
    font-weight: 500;
    background-color: #FCFCFC;
    border-bottom: 0 !important;
    box-shadow: none !important;
    border-radius: 5px;
    padding: 15px 20px;
}
/*fag section end*/
/*blog section add*/
.blogs_box{
    border-radius: 5px;
    padding: 10px;
    box-shadow: 0 0 11px #7e7e7e1a;
}
.blogs_box img{
    border-radius: 5px;
}
.blogs_box h4{
    font-size: 18px;
    font-weight: 500;
    color: var(--colorText);
    padding-top: 15px;
}
.blogs_box p{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 !important;
}
.blogs_box p a{
    font-size: 16px;
    color: var(--primary-color);
    text-decoration: none !important;
    
}
/*blog section end*/
/*admission_section add*/
.admission_section{
    background-color: var(--primary-color);
    width: 900px;
    max-width: 100%;
    margin: auto;
       position: absolute;
    left: 0;
    right: 0;
    top: -150px;
    z-index: 99;
    color: var(--white);
    border-radius: 20px;
}
.admission_section .pages-heading{
    margin-bottom: 10px !important;
}
.admission_section p{
    color: #D2D2D2 !important;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 0;
}
.admission_section .admi_p{
    color: #fff !important;
    font-size: 16px;
    font-weight: 400 !important;
}
.admission_section .btn-text-black{
    border-radius: 50px;
    height: 50px;
    width: 140px;
    font-size: 20px;
    font-weight: 500;
    color: var(--black);
    position: relative;
    z-index: 9;
}
.admission_section .shape-img{
    position: absolute;
        bottom: -27px;
    left: -70px;
}
.admission_section .btn-text-black:hover{
    background-color: var(--primary-color) !important;
    color: var(--white);
    border: 1px solid #fff;
}
/*admission_section end*/
/* footer css here */

.footer {
    background-color: #0C1627;
    padding: 180px 0 0px;
    color: var(--white);
    font-size: 15px;
    margin: 150px 0 0;
    color: var(--white);
}
.footer p{
    color: var(--white);
}

.footer .site-info p {
    font-size: 15px;
}

.footer .site-info img {
    background-color: #fff;
    padding: 10px 20px;
    border-radius: 7px;
}

.footer h3 {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
}

.footer .quick-link ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    font-size: 15px;
}


.footer .quick-link ul li {
    position: relative;
    /* padding-left: 20px; */
    margin-bottom: 7px;
}

.footer .quick-link ul li a {
    color: var(--white);
    text-decoration: none;
}

.footer .quick-link ul li a:hover {
    opacity: 0.7;
}

.footer-bottom {
    /* background-color: #29374E; */
    padding: 15px 0;
    color: #fff;
    text-align: center;
        border-top: 1px solid #e0e0e06b;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom address {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 300;
    opacity: 0.8;
    color: var(--white);
}

.footer-bottom-inner .social {
    display: flex;
    margin-bottom: 0;
}

.footer-bottom-inner .social li {
    padding: 0 11px;
}

.footer-bottom-inner .social li a {
    color: #fff;
    font-size: 32px;
}

.footer-bottom-inner .social li a:hover {
    opacity: 0.5;
}
.quick-link1 h5{
    font-size: 18px;
    font-weight: 500 !important;
    margin: 20px 0 10px;
}
.footer-bottom .social-links {
    display: inline-flex;
    text-align: left;
    margin-bottom: 0;
}

.footer-bottom .social-links>li {
    margin-left: 10px;
    padding: 0;
}

ul.social-links li a {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 41px;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s ease 0s;
    width: 41px;
    text-decoration: none;
    background-color: var(--black);
    color: var(--white);
}
ul.social-links li a i{
    font-size: 20px;
}

ul.social-links li a:hover {
    opacity: 0.7;
    text-decoration: none;
        transform: rotate(360deg);
    transition: all 1s;
}


ul.social-links li a span {
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

ul.social-links {
    display: flex;
    margin-bottom: 0;
}

ul.social-links li {
    margin-right: 10px;
}

ul.contact-details {
    padding: 0;
    list-style: none;
    margin-bottom: 2.5rem;
}

ul.contact-details li {
    margin-bottom: 13px;
    position: relative;
    /* padding-left: 30px; */
    display: flex;
    
    align-items: center;
}

ul.contact-details li img {
    margin-right: 15px;
    /* font-size: 20px; */
    color: #fff;
   
}

ul.contact-details li span {
    color: var(--primery-color);
    /* text-transform: uppercase; */
    font-weight: 400;
    padding-right: 20px;
}

ul.contact-details li a {
    color: var(--white);
    text-decoration: none;
}

ul.contact-details li a:hover {
    opacity: 0.7;
}

.wrapper {
    overflow: hidden;
}

.show {
    display: block;
}

.header-outer {
    visibility: visible !important;
    background-image: linear-gradient(42deg, #FFD2FC, #D7D4FF);
}

@keyframes vibrate {
    100% {
        box-shadow: 0 0 0 13px rgba(0, 153, 255, 0);
    }
}
.animate_let ,.banner_img , .popular-courses .card-body img , .admission_section img 
{
animation: messageMove 4s ease-in-out infinite;
}
@keyframes messageMove{
0%, 100% {
    transform: translateX(0);
}
25%, 75% {
    transform: translateX(7px);
}
50% {
    transform: translateX(15px);
}
}
.baner-1-img , .about-img-fluid , .infographic-card , .admission_section .shape-img img  {
    animation: topToBottom 4s ease-in-out infinite;
}
@keyframes topToBottom {
   0% {
    transform: translateY(0);
}
50% {
    transform: translateY(15px);
}

100% {
    transform: translateY(0);
}
}
.rated-section .pages-heading img{
    animation: scale 6s ease-in-out infinite;
}
@keyframes scale{

0% {
    transform: scale(0.5);
}

50% {
    transform: scale(0.8);
}
100% {
    transform: scale(0.5);
}
}
