@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');

:root {
    --white-color: #fff;
    --black-color: #000;
    --theme-color: #13519c;
    --theme-color2: #ffcf00;
    --bg-gray: #f5f5f5;
    --bg-gray2: #edf1fc;
}

body {
    font-family: "Poppins", serif;
    margin: 0;
    padding: 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}

a:focus {
    text-decoration: none;
}

a:active {
    text-decoration: none;
}

.bg-light {
    background: #e9e9f4 !important;
}

.bg-theme{
    background: var(--theme-color) !important;
}

.bg-testimonial {
    background: linear-gradient(180deg, #F3F3F3 0%, #ffffff 100%);
}

.bg-pattern{
    background: url(../images/pattern.jpg);
}

.btn_crack a {
    position: relative;
    z-index: 1;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    background: var(--theme-color);
    -webkit-transition: 0.4s;
    transition: 0.4s;
    border: none;
    display: inline-block;
    border: 2px solid var(--theme-color);
}

.btn_crack span {
    position: absolute;
    z-index: -1;
    width: 0;
    height: 0;
    display: block;
    border-radius: 5px;
    background-color: #fff;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
    transition: width 0.5s ease-in-out, height 0.5s ease-in-out;
}

.btn_crack a:hover {
    color: var(--theme-color);
}

.btn_crack a:hover span {
    width: 200%;
    height: 500px;
}

.slick-slide {
    margin: 0 .625rem
}

.slick-prev,
.slick-next {
    background-color: var(--theme-color);
    border-radius: 100%
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    background-color: var(--theme-color2)
}


/* Navbar section */
.navbar .nav-link {
    text-decoration: none;
    color: var(--black-color);
    padding: 2.5rem 0 !important;
    margin: 0 10px;
    font-size: 14px;
    position: relative;
    font-weight: 500;
}

.navbar .nav-item:hover .nav-link {
    color: var(--theme-color);
}

.navbar .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--theme-color);
    left: 0;
    bottom: 30px;
    transition: all 0.25s ease-in-out;
}

.navbar .nav-link:hover::before {
    width: 100%;
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    background-color: var(--secondary-theme);
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

/* .scroll-on .nav-item .nav-link {
    color: #121212;
} */



.scroll-on .dropdown-menu a,
.scroll-on .dropdown-submenu a {
    color: var(--theme-color);
    transition: all 0.25s ease-in-out;
}

.scroll-on .dropdown-menu a:hover,
.scroll-on .dropdown-submenu a:hover {
    color: var(--theme-color);
}

@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(--white-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 0.3s ease-in;
        visibility: hidden;
        /* min-height: 35vh; */
        min-width: 22rem;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        margin-top: 0;
        min-width: 12rem;
        border-radius: 0;
        padding: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0;
        /* box-shadow: none; */
    }

    .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: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 15px;
        text-decoration: none;
        font-size: 13px;
        font-weight: var(--fw-500);
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--theme-color);
        background-color: #f1f1f1;
    }
}

@media all and (min-width: 992px) {
    .dropdown-menu li {
        position: relative;
    }

    .nav-item .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -7px;
    }

    .nav-item .submenu-left {
        right: 100%;
        left: auto;
    }

    .dropdown-menu>li:hover {
        background-color: #f1f1f1
    }

    .dropdown-menu>li:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible;
    }
}

/* ============ small devices ============ */
@media (max-width: 991px) {
    .dropdown-menu .dropdown-menu {
        margin-left: 0.7rem;
        margin-right: 0.7rem;
        margin-bottom: .5rem;
    }
}

.bannerPanel .slick-next {
    right: calc(5% - 25px);
    z-index: 99
}

.bannerPanel .slick-prev {
    left: calc(5% - 25px);
    z-index: 99
}

.bannerPanel .slick-slide {
    margin: 0;
}


.counterPanel {
    background-color: var(--white-color);
    box-shadow: 0 0.625rem 0.9375rem 0 rgb(0 0 0 / 5%);
    margin-top: -2rem;
    padding: 2rem;
    position: relative;
    z-index: 20;
}

.counterPanel h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.counterPanel .item {
    padding: 1rem;
    border: 1px solid #edebeb;
    flex: 1;
    margin: 0 0.5rem;
}

.counterPanel .item h4 {
    font-size: 1rem;
    margin-bottom: 0;
}

.counterPanel .item h4 small {
    font-size: 0.8rem;
    color: var(--theme-color);
    display: block;
    margin-top: 5px;
}



/* Top courses */
/* ==================================== */
.dgreeCourse {
    background: var(--white-color);
    /* background: linear-gradient(90deg, rgb(172 204 255) 0%, rgb(248 222 204) 100%); */
    position: relative;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border: 1px dashed var(--black-color);
    min-height: 180px;
    box-shadow: 4px 4px 0 rgb(101, 94, 112);
}

.dgreeCourse .imgPanel {
    position: absolute;
    bottom: 0;
    right: 0;
}

.dgreeCourse:before{
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    background-color: rgba(0, 0, 0, 0.1);
}

.dgreeCourse h5 {
    font-size: 1.75rem;
    color: var(--font-color);
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--theme-color);
}

.courseLink a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.2rem;
    border: 1px solid #ddd;
    background: var(--white-color);
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 2px 2px 0 #655e70;
    transition: 0.2s;
}

.courseLink a:hover {
    border-color: var(--theme-color);
    background: var(--theme-color);
    color: var(--white-color);
    transform: translateY(2px);
}


/* Call Back Enquiry */
/* ==================================== */
.callBackEnquiry {
    background: var(--theme-color);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.625rem 0.9375rem 0 rgb(0 0 0 / 5%);
    position: relative;
    color: var(--white-color);
}
.callBackEnquiry .shapecircle-1 {
    position: absolute;
    right: 80px;
    top: -20px;
    width: 100px;
    height: 100px
}
.callBackEnquiry .shapecircle-2 {
    position: absolute;
    right: 180px;
    bottom: -20px;
    width: 100px;
    height: 100px
}
.callBackEnquiry .shape-circle {
    width: 100px;
    height: 100px;
    border: 1px solid rgb(255 255 255 / .2);
    display: block;
    border-radius: 100%
}


/* Pricing */
/* =========================================== */
.pricingPlan {
  background-color: #fff;
  position: relative;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  padding-bottom: 3rem;
  min-height: 420px;
  border-radius: 1rem;
  border: 1px solid #dee6e9;
}

.pricingPlan .heading {
  background-color: #223241;
  color: #fff;
  padding: 1rem 0;
  border-radius: 1rem 1rem 0 0;
}

.pricingPlan h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pricingPlan small {
  padding: 0 1rem;
  font-size: 0.75rem;
  line-height: 1.4;
  display: block;
  margin-bottom: 0;
  font-weight: 300;
}

.pricingPlan ul {
  text-align: left;
  margin: 0;
  padding: 1rem 1.5rem 2rem;
}

.pricingPlan li {
  margin-bottom: 0.75rem;
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
}

.pricingPlan li:last-child {
  margin-bottom: 0;
}

.pricingPlan li:before {
  position: absolute;
  content: '\EA6B';
  font-family: "remixicon";
  left: 0;
  top: 0;
  font-size: 1rem;
}

.pricingPlan .btnSection {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  bottom: 1rem;
}



.whyCrack{
    background: var(--white-color);
    border: 1px solid #e0e0e0;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 0.625rem 0.9375rem 0 rgb(0 0 0 / 5%);
    position: relative;
    color: var(--black-color);
    height: 100%;
}

.teamBox {
    aspect-ratio: 2 / 2.5; /* e.g., 280x350 */
    overflow: hidden;
    position: relative;
}

.teamBox img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.teamBox .bottomPart {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    min-height: 85px;
    align-content: center;
}

.testimonials i {
    position: absolute;
    left: 40px;
    top: 20px;
    line-height: 1
}

.avatorBox-50 {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border: 4px solid var(--white)
}

.avatorBox-50 img {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.testimonial-slider .slick-slide > div {
    height: 100%;
    display: flex;
}

.testimonial-slider .p-4 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

footer{
    background: var(--bg-gray2);
    padding: 2rem 0;
    color: var(--black-color);
}

footer h5{
    font-weight: 600;
    margin-bottom: 1rem;
}
footer ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
footer ul li{
    font-size: 14px;
    margin-bottom: 0.5rem;
}
footer ul li a{
    color: var(--black-color);
    transition: all 0.25s ease-in-out;
}
footer ul li a:hover{
    color: var(--theme-color);
}


/* ================================ 
Inner Banner section 
=================================== */
.inner-banner {
    width: 100%;
    width: 100%;
    height: 200px;
    align-content: center;

    h1 {
        font-size: 36px;
        font-weight: 700;
        color: var(--third-color);
        margin-bottom: 6px;
    }

    h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--third-color);
        margin-bottom: 6px;
    }

}


.contactDetails{
    border-radius: 0.5rem;
    background: #ddd;
    padding: 0.75rem;
    position: relative;
    margin-left: -4rem;
}

/* Counter Panel */
.counterMain {
    display: flex;
    justify-content: space-between;
}

.counterMain .itemList {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    padding: 1rem;
    margin: 0.5rem;
}

.counterMain .itemList:last-child{
    border-right: 0;
}

.counterMain .itemList .counting {
    margin-bottom: 0;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-weight: 700;
    color: var(--theme-color);
}

.counterMain .itemList p {
    margin-bottom: 0;
    font-size: 0.9rem;
}
