@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Vidaloka&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@700&display=swap');

:root {
    --ak-font-size-10: 0.7rem;
    --ak-font-size-12: 0.8rem;
    --ak-font-size-14: 0.85rem;
    --ak-font-size-15: 0.90rem;
    --ak-font-size-16: 0.95rem;
    --ak-font-size-18: 1.0rem;
    --ak-font-size-20: 1.1rem;
    --ak-font-size-24: 1.2rem;
    --ak-font-300: 300;
    --ak-padding-sm: 0.5rem;
    --ak-padding-md: 0.85rem;
    --ak-padding-lg: 1.0rem;
    --ak-body-font: 'Poppins', sans-serif;
    --ak-heading-font: 'Domine', serif;
    --ak-bg-color: #0c0048;
    --ak-theme-color: #F89619;
    --ak-font-color: #0d0c41;
    --ak-base-color: #fff;
    --ak-shadow: 0 10px 20px rgba(197, 208, 216, 0.25);
    --ak-shadow-lg: 0 5px 15px rgba(15, 39, 125, 0.15);
    --ak-shadow-md: 0px 20px 30px 0px rgb(1 11 60 / 10%);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  
}

body {
    font-family: var(--ak-body-font);
    font-size: var(--ak-font-size-15);
    color: var(--ak-font-color);
    overflow-x: hidden !important;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: var(--ak-font-color);
}

a:hover,
a:focus {
    color: var(--bs-link-hover-color);
}

section {
    padding-top: 4rem;
    padding-bottom: 4rem;
    position: relative;
}

.container-fluid {
    padding-right: calc(var(--bs-gutter-x) * 1);
    padding-left: calc(var(--bs-gutter-x) * 1);
}

.f-md {
    font-size: var(--ak-font-size-15) !important;
}

.f-sm {
    font-size: var(--ak-font-size-12) !important;
}

.f-xs {
    font-size: var(--ak-font-size-10) !important;
}

.fw-300 {
    font-weight: var(--ak-font-300) !important;
}

.text-gray {
    color: var(--bs-gray-500) !important;
}

.bg-pattern {
    background: #fff url(../images/pattern.png) !important;
}

.bg-theme {
    background: var(--ak-theme-color);
}

.bg-gray {
    background: #f4f6f9;
}

.title {
    font-family: var(--ak-heading-font) !important;
    position: relative;
    padding-bottom: 1rem;
    text-transform: capitalize;
}

.title:before {
    width: 120px;
    height: 5px;
    background: var(--ak-bg-color);
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--ak-font-color);
}

.btnsar {
    padding: 10px 20px;
    outline: none;
    border: 0;
    border-radius: var(--bs-border-radius-sm);
    font-size: var(--ak-font-size-18);
    background-color: var(--ak-theme-color);
    color: var(--ak-base-color) !important;
    transition: 0.2s;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.btnsar:hover {
    transform: translateY(4px);
    box-shadow: none;
    color: var(--ak-base-color);
}

.shape {
    margin-top: -5rem;
}

.shape-bottom {
    margin-bottom: -5.1rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: var(--ak-font-size-20);
    color: var(--ak-base-color);
}

.swiper-button-next,
.swiper-button-prev {
    background-color: var(--ak-font-color);
    padding: 0.5rem 1.38rem;
    border-radius: 2rem;
    z-index: 99;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}

/* Header Panel */
/* ================================= */
nav {
    background-color: var(--ak-base-color);
    box-shadow: var(--ak-shadow);

}
/* navbar on scroll animation */
header.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: var(--dark-blue-color);
    box-shadow: 0 0.125rem 1.75rem 0 rgb(0, 0, 0, 0.09);
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 2px #00000015;
    animation: fadeInDown 0.5s ease-in-out;
}
@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}


@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu-end a i {
        background-color: var(--bs-gray-500);
        color: var(--ak-base-color);
        font-size: 0.6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: 0.5rem;
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        /* transform: translateY(20px); */
        transition: all .3s ease-in;
        visibility: hidden;
        /* min-height: 50vh; */
        box-shadow: 0 5px 20px rgba(197, 208, 216, 0.15);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 10px;
        border: 0;
        min-width: 16rem;
        border-radius: 0.5rem;
        box-shadow: 0 10px 20px rgba(15, 39, 125, 0.4);
    }

    .navbar h6 {
        font-family: var(--ak-heading-font);
    }

    .navbar .nav-link {
        padding: 10px 20px !important;
        text-decoration: none;
        font-size: 1.15rem;
        font-weight: 500;
        color: #565656;
        transition: all 0.3s ease-in-out;
    }
    

    .navbar .explore {
        padding: 10px 20px !important;
        background: var(--ak-bg-color);
        color: var(--ak-base-color) !important;
        border-radius: 0.3rem;
    }

    .navbar .nav-item:hover .nav-link {
        color: var(--ak-theme-color);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -52px;
        box-shadow: 0 10px 10px rgba(15, 39, 125, 0.14);
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: #101010;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1.5rem;
        text-decoration: none;
        font-size: var(--ak-font-size-14);
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--ak-bg-color);
    }
}



/* Banner Panel */
/* ================================= */
.banner {
    /* padding-top: 70px;
    padding-bottom: 70px; */

    position: relative;
    background: #184250;
}

.banner h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--ak-base-color);
    font-family: var(--ak-heading-font);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.banner h2 {
    color: var(--ak-base-color);
    font-size: 2rem;
    font-weight: 700;
}

.banner h3,
.banner h5 {
    margin-bottom: 2rem;
    color: var(--ak-base-color);
}



.yrActivities {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -70px;
    margin-left: -70px;
    width: 140px;
    height: 140px;
    border-radius: 100%;
    background: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 25%);
    color: var(--ak-font-color);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: 0.8rem;
    line-height: 1.2;

}

.yrActivities span {
    font-size: 2rem;
    color: #00b7f1;
    font-weight: 900;
}

.yrActivities:before {
    position: absolute;
    content: '';
    border: 3px dashed #f1592a;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    top: 10px;
    left: 10px;
    -webkit-animation: rotation 30s infinite linear;
    animation: rotation 30s infinite linear;
}

@-webkit-keyframes rotation {
    from {
        -webkit-transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
    }
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}



/* Course Panel */
/* ================================= */
.courseBox {
    position: relative;
    box-shadow: 0 3px 5px rgb(0 0 0 / 10%);
    background: var(--ak-base-color);
    transition: transform .4s;
    display: block;
    margin: 1rem 0.5rem;
}

.courseBox:hover {
    box-shadow: 0 5px 20px rgb(0 0 0 / 10%);
}

.courseBox .imgpt {
    overflow: hidden;
    /* height: 200px; */
    position: relative;
}

.courseBox .imgpt img {
    transform: translateZ(0) rotate(.001deg) scale(1.01);
    transition: transform .4s;
}

.courseBox:hover .imgpt img {
    transform: translateZ(0) rotate(.001deg) scale(1.05);
}

.courseBox .contentText {
    padding-top: 1rem;
    font-size: var(--ak-font-size-16);
}

.courseBox .contentText h5 {
    font-family: var(--ak-heading-font);
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: var(--ak-font-color) !important;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: 54px;
}


.courseBox .contentText p {
    font-weight: 300;
    color: var(--ak-font-color) !important;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.courseBox .contentText p:last-child {
    margin-bottom: 0;
}

/* placementcompany Panel */
/* ================================= */
.placementCompany {
    border-radius: 1rem;
    padding: 2rem 2.5rem;
    background: var(--ak-bg-color);
    color: var(--ak-base-color);
}

.placeLogo {
    background: var(--ak-base-color);
    padding: 0.7rem 1rem;
    border-radius: 0.2rem;
}


/* Enquiry Panel */
/* ================================= */
.enquiryPart {
    position: relative;
    padding: 5rem 0;
}

.enquiryPart:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0 148 195 / 85%);
}

.enquiryMain {
    background: var(--ak-base-color);
    position: relative;
    z-index: 9;
    border-radius: 1rem;
}


.enquiryMain h1 {
    font-family: var(--ak-heading-font);
    text-shadow: 0 5px 2px rgb(0 0 0 / 10%);
}


/* About Main Panel */
/* ================================= */
.aboutMain h2 {
    font-family: var(--ak-heading-font);
    margin-bottom: 1.5rem;
}

.aboutMain h2 span {
    color: #f1592a
}

.aboutMain p {
    line-height: 2;
}

.countMain {
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-around;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
}

.count p {
    margin-bottom: 0;
}

.whyContent {
    margin-bottom: 2rem;
    align-items: flex-start;
}

.whyContent h5 {
    color: var(--ak-font-color);
    font-weight: 500;
    font-size: var(--ak-font-size-20);
}

.whyContent p:last-child {
    font-size: var(--ak-font-size-14);
    color: var(--ak-font-color2);
    margin-bottom: 0;
    line-height: normal;
}

.whyContent img {
    width: 50px;
    opacity: 0.8;
}


/* News Panel */
/* ================================= */

.newsBox {
    padding: 1.5rem 2rem;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #e0e9ec;
    /* -webkit-box-shadow: 0px 15px 30px 0px rgb(1 11 60 / 10%);
    -moz-box-shadow: 0px 15px 30px 0px rgba(1, 11, 60, 0.1);
    box-shadow: 0px 15px 30px 0px rgb(1 11 60 / 10%); */
}

.newsBox h5 {
    line-height: 1.5;
    color: var(--ak-theme-color);
}

.newsBox a {
    position: relative;
    padding-right: 21px;
    display: inline-block;
}

.newsBox a i {
    font-size: 14px;
    position: absolute;
    top: 12px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: all ease 0.2s;
    -webkit-transition: all ease 0.2s;
    -moz-transition: all ease 0.2s;
    -ms-transition: all ease 0.2s;
    -o-transition: all ease 0.2s;
}

.newsBox a i:first-child {
    right: 10%;
    visibility: hidden;
    opacity: 0;
}

.newsBox a i:last-child {
    right: 0;
}

.newsBox a:hover i:first-child {
    right: 0;
    visibility: visible;
    opacity: 1;
}

.newsBox a:hover i:last-child {
    right: -10%;
    visibility: hidden;
    opacity: 0;
}


/* Place-students */
.inner-contain {
    padding: 1rem;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.inner-contain img {
    transition: all 0.3s ease-in-out;
    object-fit: contain;
    width: 100%;
}
.inner-contain:hover img {
    transform: scale(1.075);
}

/* Enquiry Panel */
/* ================================= */
.enquiry h1 {
    font-family: var(--ak-heading-font);
    color: var(--ak-base-color);
}

.enquiry .form-control,
.enquiry .form-select {
    background-color: transparent;
    color: var(--ak-base-color);
    border-color: #ff9e80;
}

.enquiry .form-floating>label {
    color: var(--ak-base-color);
}

.enquiry .form-control:focus,
.enquiry .form-select:focus {
    border-color: var(--ak-base-color);
    box-shadow: none;
    outline: 0;
}

.enquiry select option {
    margin: 40px;
    background: #fff;
    color: #000;
}


/* testimonial Panel */
/* ================================= */
.testiBox {
    padding: 2rem;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #ddd;
    border-bottom: 4px solid var(--ak-bg-color);
    -webkit-box-shadow: 0px 5px 10px rgb(1 11 60 / 10%);
    -moz-box-shadow: 0px 5px 10px rgba(1, 11, 60, 0.1);
    box-shadow: 0px 5px 10px rgb(1 11 60 / 10%);
}

.testiBox img {
    width: 80px;
    height: 80px;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgb(141 169 188 / 20%);
    border-radius: 50%;
    display: block;
    position: relative;
    margin-right: 15px;
}

.testiBox .content {
    width: calc(100% - 95px);
    display: flex;
    flex-direction: column;
}

.testiBox .content h6 small {
    display: block;
    font-size: var(--ak-font-size-14);
    color: var(--ak-bg-color);
    margin-top: 5px;
}

.testiBox p {
    margin-bottom: 0;
    font-weight: 400;
    font-style: italic;
    max-height: 2.6rem;
    height: 100%;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
}



/* footer Panel */
/* ================================= */
footer {
    background: #184250;
    padding: 4rem 0;
    color: var(--ak-base-color);
}

footer h4 {
    margin-bottom: 1.5rem;
}

footer .widgetFoot {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}

footer .widgetFoot li {
    display: block;
    font-size: var(--ak-font-size-14);
    margin-bottom: 0.5rem;
}

footer .widgetFoot li i {
    font-size: var(--ak-font-size-12);
    margin-right: 5px;
}

footer a {
    color: var(--ak-base-color);
}

footer a:hover {
    color: var(--ak-theme-color);
}

footer .social a i {
    font-size: 1.5rem;
    margin-right: 0.3rem;
    color: var(--ak-base-color);
}

footer .social a:hover i {
    color: var(--ak-theme-color);
}


/* Inner Panel */
/* ================================= */
/* .innerBanner{
    margin-top: 100px;
} */
.breadcumCourse {
    padding: 0;
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0 0 1rem;
}

.breadcumCourse li {
    position: relative;
    padding-right: 1.3rem;
    color: var(--ak-base-color);
    font-weight: 300;
    font-size: var(--ak-font-size-12);
}

.breadcumCourse li:before {
    font-family: 'FontAwesome';
    content: "\f105";
    right: 0.5rem;
    top: 2px;
    position: absolute;
    font-size: var(--ak-font-size-10);
    color: var(--ak-base-color);
}

.breadcumCourse li:last-child:before {
    display: none;
}

.breadcumCourse li a {
    color: var(--ak-base-color);
    font-weight: 300;
    font-size: var(--ak-font-size-12);
}

.placementBox {
    padding: 1.5rem;
    margin-bottom: 30px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #ddd;
    border-bottom: 4px solid var(--ak-bg-color);
    -webkit-box-shadow: 0px 5px 10px rgb(1 11 60 / 10%);
    -moz-box-shadow: 0px 5px 10px rgba(1, 11, 60, 0.1);
    box-shadow: 0px 5px 10px rgb(1 11 60 / 10%);
}

.placementBox:last-child {
    margin-bottom: 0;
}

.placementBox img {
    width: 110px;
    height: 110px;
    border: 4px solid #fff;
    box-shadow: 0 10px 20px rgb(141 169 188 / 20%);
    border-radius: 15px;
    display: block;
    position: relative;
    margin-right: 15px;
}

.placementBox .content {
    width: calc(100% - 125px);
    display: flex;
    flex-direction: column;
}

.placementBox .content h6 small {
    display: block;
    font-size: var(--ak-font-size-12);
    color: var(--ak-bg-color);
    margin-top: 5px;
}

.placementBox p {
    margin-bottom: 0;
    font-size: var(--ak-font-size-14);
    line-height: 20px;
}

address {
    display: block;
    margin-bottom: 20px;
    padding-left: 50px;
    position: relative;
}

address:last-child {
    margin-bottom: 0;
}

address svg {
    position: absolute;
    left: 0;
}

address p {
    line-height: 1.4 !important;
    margin-bottom: 0;
}


.boxCard {
    padding: 1.5rem;
    border: 1px solid #f5f5f5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.boxCard h1 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #00b7f1;
    text-decoration: underline;
}

.boxCard h4 {
    background: #f1592a;
    padding: 15px;
    margin: -1.5rem;
    font-size: 24px;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

.boxCard p {
    font-size: var(--ak-font-size-14);
    line-height: 1.5;
}

.boxCard p:last-child {
    margin-bottom: 0;
}

.boxCard ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding-left: 0;
    list-style-image: url(../images/arrow.png);
    position: relative;
}

.boxCard ul li {
    width: calc(50% - 25px);
    margin-bottom: 10px;
    margin-left: 25px;
}

.enquiryBox {
    padding: 1.5rem;
    border: 1px solid #f5f5f5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 95px;
    z-index: 99;
}

.enquiryBox h4 {
    background: #2f3e45;
    padding: 15px;
    margin: -1.5rem;
    font-size: 24px;
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
}

.signIn .btn-close {
    position: absolute;
    right: -15px;
    top: -15px;
    padding: 0.5em 0.5em;
    outline: none;
}


.avatar {
    white-space: nowrap;
    background-color: #C3C3C3;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    color: #FFF;
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 1rem;
    text-align: center;
    vertical-align: middle;
    font-weight: 600;
}

.avatar .avatar-content {
    width: 32px;
    height: 32px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    font-size: .857rem;
}

.avatar.avatar-md .avatar-content {
    height: 40px;
    width: 40px;
    font-size: 2rem;
}

.courseListMain {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid #eee8f7;
    background: var(--sar-base-color);
    padding: 1rem;
    margin-bottom: 1rem;
    transition: 0.2ms;
}

.courseListMain .img-pt {
    width: 220px;
    margin-right: 20px;
    /* box-shadow: 0 0 5px rgb(0 0 0 / 10%); */
    border: 1px dashed var(--bs-gray-300);
    padding: 0.3rem;
}

.courseListMain .ContentText {
    width: calc(100% - 240px);
}

.courseListMain .ContentText h5 {
    font-size: var(--sar-font-size-20);
    margin-bottom: 0.7rem;
    color: var(--bs-primary);
}

.courseListMain .ContentText p {
    color: var(--sar-font-color) !important;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    -webkit-line-clamp: 2;
    font-size: var(--sar-font-size-14);
    max-height: 3rem;
    margin-bottom: 0.2rem;
}


@media (max-width: 992px) {
    #offcanvasNavbar {
        width: 300px;
    }
    #offcanvasNavbar .nav-link {
        font-size: 1.15rem;
    }
}
.course-full-details .inner-contain {
    box-shadow: 13px 14px 40px rgba(39, 98, 131, 0.15);
    padding: 1.5rem;

}
.course-full-details .inner-contain img {
    width: 120px;
}
.course-full-details h1 {
    font-size: 32px;
}
.course-full-details .inner-contain:hover img {
    transform: scale(1);
}