/********** Template CSS **********/
:root {
    --primary: #2087ca;
    --secondary: #146da9;
    --light: #ffffff;
    --dark: #0c0c0c;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }

    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }

    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    background-color: white;
}

.navbar .navbar-brand {
    width: 100px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar .navbar-toggler:active,
.navbar .navbar-toggler:focus {
    outline: none;
    border: none;
}

.navbar .navbar-toggler {
    color: white !important;
    border-color: white !important;
}

.navbar .navbar-toggler-icon {
    width: 24px;
    height: 18px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid var(--primary);
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after,
.navbar .navbar-toggler-icon:before {
    width: 24px;
    position: absolute;
    height: 2px;
    background-color: var(--primary);
    top: 0;
    left: 0;
    content: '';
    /* z-index: 2; */
    transition: all 300ms linear;
}

.navbar .navbar-toggler-icon:after {
    top: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(8px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

.navbar .navbar-nav .nav-link {
    position: relative;
    font-size: 13px;
    padding: 10px 10px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
    transition: .5s;
}



.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}


@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link,
    .sticky-top.navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }

    .navbar-collapse {
        position: absolute;
        background: var(--light);
        height: 100vh;
        width: 100%;
        left: -800px;
        top: 86px;
        box-shadow: var(--box-shadow);
        padding-top: 10px;
        padding-left: 32px;
        transition: .3s linear;
        z-index: 99;
    }

    .navbar-collapse.show {
        top: 86px;
        left: 0px;
        overflow-y: scroll;
    }
}

@media screen and (min-width:577px) and (max-width: 840px) {
    .navbar-collapse {
        top: 105px;
        display: block !important;
        flex-direction: column;
        width: 70%;
    }

    .navbar-expand-md .navbar-nav {
        flex-direction: column;
    }

    .navbar-collapse.show {
        top: 105px;
        overflow-y: scroll;
    }
}

@media (max-width: 576px) {
    .navbar .navbar-brand {
        height: 70px;
    }

    .navbar .navbar-brand img {
        width: 100%;
        height: 100%;
    }
}
.slider_imgg{
    height: 320px;
    width: 100%;
}
.navbar {
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-brand img {
   height: 70px;
   width: 130px;
}


@media screen and (min-width: 1024px) {
    .navbar {
        letter-spacing: 0.1em;
    }

    .search-and-icons {
        width: 56%;
    }

    .search-and-icons form {
        flex: 1;
    }
}

@media screen and (min-width: 768px) {
    .navbar .navbar-brand img {
        max-width: 4em;
    }

    .navbar .navbar-collapse {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-end;
    }

    .search-and-icons {
        display: flex;
        align-items: center;
    }
}

.search-and-icons form input {
    border: 1px solid var(--primary);
    border-radius: 0;
    height: 2em;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'/%3E%3C/svg%3E") no-repeat 95%;
}

.search-and-icons form input:focus {
    background: #fff;
    box-shadow: none;
}

.search-and-icons .user-icons div {
    padding-right: 1em;
}


.nav-item .dropdown-menu {
    border-top: 3px solid var(--primary);
    border-radius: 10px 10px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
    /* margin: 0px 10px; */
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu>li:hover>.dropdown-submenu {
    display: block;
}

@media screen and (min-device-width: 300px) and (max-device-width: 350px) {
    .search-button {
        margin-right: -90px;
    }
}

@media screen and (min-device-width: 350px) and (max-device-width: 415px) {
    .search-button {
        margin-right: -140px;
    }
}

@media screen and (min-device-width: 415px) and (max-device-width: 450px) {
    .search-button {
        margin-right: -190px;
    }
}

@media screen and (min-device-width: 500px) and (max-device-width: 850px) {
    .search-button {
        margin-right: -520px;
    }
}



/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {
        left: 0;
    }

    50% {
        left: 145px;
    }

    100% {
        left: 0;
    }
}

@-webkit-keyframes section-title-run-center {
    0% {
        left: 50%;
        margin-left: -75px;
    }

    50% {
        left: 50%;
        margin-left: 45px;
    }

    100% {
        left: 50%;
        margin-left: -75px;
    }
}

@-webkit-keyframes section-title-run-sm {
    0% {
        left: 0;
    }

    50% {
        left: 85px;
    }

    100% {
        left: 0;
    }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}



/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 20px;
    bottom: 80px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

.mobile-footer {
    background-color: var(--secondary);
    color: var(--light);
    padding: 10px 0;
    border-radius: 20px 20px 0 0;
}

.footer-menu {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.footer-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-item i {
    font-size: 18px;
}

.footer-item span {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.copy-rights {
    background-color: #4c96c7;
    color: var(--dark);
}

@media (max-width: 767.98px) {
    .copy-rights {
        margin-bottom: 50px;
    }
}

.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CATEGORY SLIDER***************************** */
.category-box {
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    border: none;
    border-radius: 20px;
}

.category-carousel .item {
    position: relative;
    z-index: 100;
    -webkit-backface-visibility: hidden;
}

.category-carousel .owl-nav>div {
    margin-top: -26px;
    position: absolute;
    top: 50%;
    color: var(--primary);
}

.category-carousel .owl-nav i {
    font-size: 52px;
}

.category-carousel .owl-nav .owl-prev {
    left: -30px;
}

.category-carousel .owl-nav .owl-next {
    right: -30px;
}

.category-carousel .category-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 10px;
    padding: 16px;
    border-radius: 20px;
    box-shadow: rgba(14, 63, 126, 0.04) 0px 0px 0px 1px, rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.04) 0px 6px 6px -3px, rgba(14, 63, 126, 0.04) 0px 12px 12px -6px, rgba(14, 63, 126, 0.04) 0px 24px 24px -12px;
}

.category-carousel .category-item:hover {
    background-color: #72b4e125;
}

.category-carousel .category-item:hover .icon-box {
    color: var(--primary);
}

.category-carousel .category-item .icon-box {
    height: 80px;
    width: 80px;
    background: #beddf140;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--secondary);
    border-radius: 20px;
    margin-bottom: 10px;
}

.category-carousel .category-item span {
    font-weight: 500;
    color: var(--primary);
}



/* PLAN****************************************** */
.plans-section .left-card,
.plans-section .right-card {
    background: #0454f438;
    border-radius: 20px;
}

.plans-section .project-wrap {
    margin-bottom: 16px;
    width: 100%;
    background: var(--light);
    -webkit-box-shadow: 0px 10px 23px -8px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 10px 23px -8px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 10px 23px -8px rgba(0, 0, 0, 0.11);
}

.plans-section .project-wrap .img {
    display: block;
    width: 100%;
    height: 150px;
    position: relative;
    z-index: 1;
}

.plans-section .project-wrap .img .price {
    position: absolute;
    bottom: -8px;
    left: 20px;
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 2px 10px;
    font-size: 16px;
    font-weight: 500;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.plans-section .project-wrap .img .price:after,
.plans-section .project-wrap .img .price:before {
    position: absolute;
    bottom: 0;
    content: '';
}

.plans-section .project-wrap .img .price:after {
    right: -8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0 0;
    border-color: #0456f4 transparent transparent transparent;
}

.plans-section .project-wrap .img .price:before {
    width: 0;
    left: -8px;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 0;
    border-color: transparent #0456f4 transparent transparent;
}

.plans-section .project-wrap.hotel .img {
    height: 320px;
}

.plans-section .project-wrap .text {
    width: 100%;
    position: relative;
    border-top: none;
}

.plans-section .project-wrap .text .advisor {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
}

.plans-section .project-wrap .text .advisor span {
    color: var(--primary);
}

.plans-section .project-wrap .text .days {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
}

.plans-section .project-wrap .text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.plans-section .project-wrap .text h3 a {
    color: #000000;
}

.plans-section .project-wrap .text ul {
    margin: 0;
    padding: 10px 0 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.plans-section .project-wrap .text ul li {
    display: inline-block;
    color: #b3b3b3;
    font-weight: 600;
}

.plans-section .project-wrap .text ul li span {
    color: var(--primary);
    margin-right: 10px;
    font-size: 20px;
    line-height: 1;
}

.plans-section .project-wrap .text ul li.price {
    color: var(--primary);
}

.plans-section .material-box {
    border: none;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
    transition: all 0.6s ease;
}

.plans-section .material-box:hover {
    box-shadow: rgba(28, 145, 255, 0.199) -5px 5px, rgba(28, 130, 255, 0.19) -10px 10px;
}

.plans-section .material-box .material-image {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
}

.plans-section .material-box h6 {
    color: var(--dark);
}

/* Counter Section Start**************** */

.counter-section {
    background: linear-gradient(rgba(64, 140, 241, 0.34), rgba(0, 64, 166, 0.915)), url(/img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.counter-section .fact-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Counter Section End**************** */

/* why-us Start *************************************** */
.why-us {
    background: #4c96c71a;
}

.why-us .icon {
    height: 60px;
    width: 60px;
    background: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

/* why-us End *************************************** */


/* Testimonial Start ******************************* */

.testimony-section {
    position: relative;
}

.testimony-section .container-2 {
    margin: 0 0 0 auto !important;
    max-width: 1290px;
}

.testimony-section .overlay {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    width: 50%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}

@media (max-width: 991.98px) {
    .testimony-section .overlay {
        display: none;
    }
}

.testimony-section .owl-carousel {
    margin: 0;
}


.testimony-wrap {
    display: block;
    position: relative;
    background: var(--light);
    padding: 0 20px;
    border: 1px solid var(--secondary);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 20px;
    margin-bottom: 32px;
    margin-top: 32px;
    height:320px;
}

.testimony-wrap .user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 16px;
    overflow: hidden;
}

.testimony-wrap .name {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 0;
    color: #000000;
}

.testimony-wrap .position {
    font-size: 12px;
    color: #cccccc;
    color: #4986fc;
}

.testimony-wrap .text .star {
    color: #fc9927;
}

.star {
    color: #4986fc;
}

/* Testimonial End ******************************* */



/* Courses Section Start ******************************* */

.courses-section .course-card {
    border: 1px solid var(--secondary);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.1) -4px 9px 25px -6px;
}

.courses-section .course-card .head-img {
    height: 250px;
    width: 100%;
    border-bottom: 1px solid var(--secondary);
}

.courses-section .course-card .uni-logo {
    height: 70px;
    width: 70px;
    position: absolute;
    top: 215px;
    left: 20px;
    border: 10px solid #4c96c762;
    border-radius: 8px;
}

.courses-section .course-card h5 {
    font-weight: 600 !important;
}

/* Courses Section End ******************************* */


/* Grow Step By Ste Start ******************************* */
.step-process ul {
    --col-gap: 2rem;
    --barH: 1rem;
    --roleH: 2rem;
    --flapH: 2rem;

    margin-inline: auto;
    display: flex;
    flex-wrap: wrap;
    gap: var(--col-gap);
    padding-inline: calc(var(--col-gap) / 2);
    justify-content: space-around;
    align-items: flex-start;
    list-style: none;
}

.step-process ul li {
    width: 270px;
    display: grid;
    grid-template:
        "role"
        "icon"
        "title"
        "descr";
    align-items: flex-start;
    gap: 1rem;
    padding-block-end: calc(var(--flapH) + 1rem);
    text-align: center;
    background: var(--accent-color);
    background-image: linear-gradient(rgba(0, 0, 0, 0.6) var(--roleH),
            rgba(0, 0, 0, 0.4) calc(var(--roleH) + 0.5rem),
            rgba(0, 0, 0, 0) calc(var(--roleH) + 0.5rem + 5rem));
    clip-path: polygon(calc(var(--col-gap) / -2 - 5px) 0,
            calc(100% + var(--col-gap) / 2 + 5px) 0,
            calc(100% + var(--col-gap) / 2 + 5px) calc(100% - var(--flapH)),
            50% 100%,
            calc(var(--col-gap) / -2 - 5px) calc(100% - var(--flapH)));
}

/* bar */
.step-process ul li::before {
    content: "";
    grid-area: role;
    height: var(--barH);
    width: calc(100% + var(--col-gap));
    margin-left: calc(var(--col-gap) / -2);
    margin-top: calc(var(--roleH) / 2 - var(--barH) / 2);
    background: grey;
    z-index: -1;
    background-image: linear-gradient(rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0.2) 30%,
            rgba(255, 255, 255, 0.1) 40%,
            rgba(0, 0, 0, 0.1) 60%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0.4));
}

/* role */
.step-process ul li::after {
    content: "";
    grid-area: role;
    background: var(--accent-color);
    background-image: linear-gradient(rgba(255, 255, 255, 0.4),
            rgba(255, 255, 255, 0.2) 30%,
            rgba(255, 255, 255, 0.1) 40%,
            rgba(0, 0, 0, 0.1) 60%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0.4));
    height: var(--roleH);
}

.step-process ul li .icon,
.step-process ul li .title,
.step-process ul li .descr {
    padding-inline: 1rem;
    color: var(--light);
    text-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.5);
}

.step-process ul li .icon {
    font-size: 48px;
}

.step-process ul li .title {
    font-size: 24px;
    font-weight: 700;
}

.step-process ul li .descr {
    font-size: 16px;
}

/* Grow Step By Ste End ******************************* */

/* Package Section Start************************************** */
.package-section .package-card {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    border-radius: 20px;
    background-color: #8dcbf44f;
    border: 2px solid var(--secondary);
    transition: transform 0.5s;
}

.package-section .package-card:hover {
    transform: scale(1.05);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}

.package-section .package-card .head-box {
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
}

.package-section .package-card h5 {
    font-size: var(--secondary);
    font-weight: 600 !important;
}

.package-section ul li {
    &::marker {
        content: "🔥";
    }
}

/* Package Section End************************************** */



/* FAQ Section Start************************************** */
.faq-section .ques {
    color: var(--secondary);
}

/* FAQ Section End************************************** */



/* Contact Page Start **************************** */
.contact-section {
    overflow: hidden;
}

.contact-section .form {
    background: var(--light);
    border-radius: 10px;
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-section .contact-form {
    background-color: var(--primary);
    position: relative;
}

.contact-section .circle {
    border-radius: 50%;
    background: linear-gradient(135deg, transparent 20%, var(--secondary));
    position: absolute;
}

.contact-section .circle.one {
    width: 130px;
    height: 130px;
    top: 130px;
    right: -40px;
}

.contact-section .circle.two {
    width: 80px;
    height: 80px;
    top: 10px;
    right: 30px;
}

.contact-section .contact-form:before {
    content: "";
    position: absolute;
    width: 26px;
    height: 26px;
    background-color: var(--primary);
    transform: rotate(45deg);
    top: 50px;
    left: -13px;
}

.contact-section form {
    padding: 2.3rem 2.2rem;
    z-index: 10;
    overflow: hidden;
    position: relative;
}

.contact-section .title {
    color: var(--light);
    font-weight: 500;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.7rem;
}

.contact-section .input-container {
    position: relative;
    margin: 1rem 0;
}

.contact-section .input {
    width: 100%;
    outline: none;
    border: 2px solid var(--light);
    background: none;
    padding: 0.6rem 1.2rem;
    color: var(--light);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-section textarea.input {
    padding: 0.8rem 1.2rem;
    min-height: 150px;
    border-radius: 5px;
    resize: none;
    overflow-y: auto;
}

.contact-section .input-container label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    padding: 0 0.4rem;
    color: var(--light);
    font-size: 0.9rem;
    font-weight: 400;
    pointer-events: none;
    z-index: 1000;
    transition: 0.5s;
}

.contact-section .input-container.textarea label {
    top: 1rem;
    transform: translateY(0);
}

.contact-section .btn {
    padding: 0.6rem 1.3rem;
    background-color: var(--light);
    border: 2px solid var(--light);
    font-size: 0.95rem;
    color: var(--primary);
    line-height: 1;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    transition: 0.3s;
    margin: 0;
    width: 100%;
}

.contact-section .btn:hover {
    background-color: transparent;
    color: var(--light);
}

.contact-section .input-container span {
    position: absolute;
    top: 0;
    left: 25px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    padding: 0 0.4rem;
    color: transparent;
    pointer-events: none;
    z-index: 500;
}

.contact-section .input-container span:before,
.contact-section .input-container span:after {
    content: "";
    position: absolute;
    width: 10%;
    opacity: 0;
    transition: 0.3s;
    height: 5px;
    background-color: var(--primary);
    top: 50%;
    transform: translateY(-50%);
}

.contact-section .input-container span:before {
    left: 50%;
}

.contact-section .input-container span:after {
    right: 50%;
}

.contact-section .input-container.focus label {
    top: 0;
    transform: translateY(-50%);
    left: 25px;
    font-size: 0.8rem;
}

.contact-section .input-container.focus span:before,
.contact-section .input-container.focus span:after {
    width: 50%;
    opacity: 1;
}

.contact-section .contact-info {
    padding: 2.3rem 2.2rem;
    position: relative;
    background-color: var(--light);
}

.contact-section .contact-info .title {
    color: var(--primary);
}

.contact-section .text {
    margin: 1.5rem 0 2rem 0;
}

.contact-section .information {
    display: flex;
    color: #555;
    margin: 0.7rem 0;
    align-items: center;
    font-size: 0.95rem;
}

.contact-section .information i {
    color: var(--primary);
}

.contact-section .icon {
    width: 28px;
    margin-right: 0.7rem;
}

.contact-section .social-media {
    padding: 2rem 0 0 0;
}

.contact-section .social-media p {
    color: #333;
}

.contact-section .social-icons {
    display: flex;
    margin-top: 0.5rem;
}

.contact-section .social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 5px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--light);
    text-align: center;
    line-height: 35px;
    margin-right: 0.5rem;
    transition: 0.3s;
}

.contact-section .social-icons a:hover {
    transform: scale(1.05);
}

.contact-section .contact-info:before {
    content: "";
    position: absolute;
    width: 110px;
    height: 100px;
    border: 22px solid var(--primary);
    border-radius: 50%;
    bottom: -77px;
    right: 50px;
    opacity: 0.3;
}

.contact-section .big-circle {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #1495e5, #0b5795);
    bottom: 50%;
    right: 50%;
    transform: translate(-40%, 38%);
}

.contact-section .big-circle:after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background-color: var(--light);
    border-radius: 50%;
    top: calc(50% - 180px);
    left: calc(50% - 180px);
}

.contact-section .square {
    position: absolute;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(181%, 11%);
    opacity: 0.2;
}

@media (max-width: 850px) {
    .contact-section .form {
        grid-template-columns: 1fr;
    }

    .contact-section .contact-info:before {
        bottom: initial;
        top: -75px;
        right: 65px;
        transform: scale(0.95);
    }

    .contact-section .contact-form:before {
        top: -13px;
        left: initial;
        right: 70px;
    }

    .contact-section .square {
        transform: translate(140%, 43%);
        height: 350px;
    }

    .contact-section .text {
        margin: 1rem 0 1.5rem 0;
    }

    .contact-section .social-media {
        padding: 1.5rem 0 0 0;
    }
}

@media (max-width: 480px) {

    .contact-section .contact-info:before {
        display: none;
    }

    .contact-section .square,
    .contact-section .big-circle {
        display: none;
    }

    .contact-section form,
    .contact-section .contact-info {
        padding: 1.7rem 1.6rem;
    }

    .contact-section .text,
    .contact-section .information,
    .contact-section .social-media p {
        font-size: 0.8rem;
    }

    .contact-section .title {
        font-size: 1.15rem;
    }

    .contact-section .social-icons a {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .contact-section .icon {
        width: 23px;
    }

    .contact-section .input {
        padding: 0.45rem 1.2rem;
    }

    .contact-section .btn {
        padding: 0.45rem 1.2rem;
    }
}

/* Contact Page End *************************************** */



/* Course Page Start *************************************** */

.course-header {
    background: #4fafeb32;
}

.course-header h1 {
    color: var(--secondary);
}

.course-header b {
    color: var(--primary);
}


.whats-covered .whats-cover-card {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
    border-radius: 20px;
    border: 1px dotted var(--primary);
    border-bottom: 5px solid var(--secondary);
    background: var(--light);
    transition: all 0.5s;
    background: var(--light);
    transition: transform ease 300ms;
}

.whats-covered .whats-cover-card:hover {
    background: var(--primary);
    color: var(--light);
    transform: translate(0, -10px);
}


.course-why .nav .nav-item button {
    color: var(--dark);
    font-weight: 600;
}

.course-why .nav .nav-item button.active {
    background-color: transparent;
    color: var(--primary) !important;
}

.course-why .nav .nav-item button.active::after {
    content: "";
    border-bottom: 4px solid var(--primary);
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -1px;
    border-radius: 5px 5px 0 0;
}


/* Course Page End *************************************** */



/* Test Series Start *************************************** */

.test-card {
    border: 2px solid var(--secondary);
    background-color: #ffffff;
    border-radius: 16px;
    z-index: 1;
    overflow: hidden;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.test-card .test-info {
    display: flex;
}

@media (max-width: 576px) {

    .test-card .test-info {
        display: block;
    }
}

/* Test Series End *************************************** */




/* MISSION-VISSION Start *************************************** */

.misson-vission .m-v-card {
    border: 6px double var(--secondary);
    border-radius: 20px;
}

/* MISSION-VISSION End *************************************** */



/* Sample Pper Start *************************************** */

.sample-card{
    border: 6px double var(--secondary);
    border-radius: 20px;
    box-shadow: rgba(41, 41, 172, 0.25) 0px 30px 60px -12px inset, rgba(30, 69, 241, 0.155) 0px 18px 36px -18px inset;
}
.sample-card h5{
    color: var(--primary);
    font-weight: 600 !important;
}
.sample-card .btn{
    font-size: 12px;
}
.sample-header{
    background: #0a87da50;
}
.sample-header .img-box{
    width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.buy-now-box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: var(--light);
    padding: 16px;
    border-radius: 16px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
    transition: transform ease 300ms;
}
.buy-now-box:hover {
    box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
    transform: translate(0, -10px);
}


/* Sample Pper End *************************************** */




/* Board Exam Start *************************************** */



/* COURSES PAGE START *************************************** */

.cources_img{
    height: 250px;
    width: 100%;
}
.couuces_capter_imgh{
    height: 450px;
    width: 100%;
    border-radius: 15px;
}
.text_color{
    color: #183d7d;
}
.currentaffiresimg{
    height: 70px;
    border-radius: 50%;
    width: 70px;
}

.reg_btn_info{
    border:#21587d 1px solid;
    color:#21587d;
    background: white;

}
