
/*** Spinner Start ***/
/*** Spinner ***/
#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;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    background: var(--bs-secondary) !important;
    color: var(--bs-white) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn.btn-primary:hover {
    background: var(--bs-primary) !important;
    color: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--bs-secondary);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    border: none;
    transition: 0.5s;
}

.btn.btn-secondary:hover {
    color: var(--bs-primary) !important;
}


/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: -6px;
    margin-left: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: -8px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    bottom: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: -8px;
    margin-right: -100px;
    border: 1px solid var(--bs-secondary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: -6px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}
/*** Topbar End ***/


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-primary) !important;
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-primary) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 90px;
    transition: .5s;
}

.sticky-top .navbar-light .navbar-brand img {
    max-height: 60px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-secondary);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary) !important;
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 991.98px) {
    .sticky-top .navbar-light {
        background: var(--bs-light) !important;
    }

    /*** Top and Bottom borders go out ***/
    .navbar-light .navbar-nav .nav-link:after,
    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        top: 30px;
        bottom: 30px;
        left: 0px;
        width: 100%;
        height: 2px;
        background: var(--bs-primary);
        opacity: 0;
        transition: all 0.5s;
    }

    .navbar-light .navbar-nav .nav-link:before {
        bottom: auto;
    }

    .navbar-light .navbar-nav .nav-link:after {
        top: auto;
    }

    .navbar-light .navbar-nav .nav-link:hover:before,
    .navbar-light .navbar-nav .nav-link.active:before {
        top: 20px;
        opacity: 1;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        bottom: 20px;
        opacity: 1;
    }
}

#searchModal .modal-content {
    background: rgba(240, 245, 251, 0.5);
}
/*** Navbar End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/breadcrumb.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
    padding: 100px 0 60px 0;
}
.bg-breadcrumb.study_in {
    background: linear-gradient(rgba(0, 58, 102, 0.9), rgba(0, 58, 102, 0.8)), url(../img/classroom.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: initial;
    background-size: cover;
}
/*** Single Page Hero Header End ***/


/*** Carousel Hero Header Start ***/
.carousel-header .carousel-control-prev .carousel-control-prev-icon,
.carousel-header .carousel-control-next .carousel-control-next-icon {
    width: 4rem;
    height: 4rem;
    margin-left: -60px;
    border-radius: 50%;
    background-size: 60% 60%;
    transition: 0.5s;
}

.carousel-header .carousel-control-next .carousel-control-next-icon {
    margin-left: 0;
    margin-right: -60px;
}

.carousel-header .carousel .carousel-indicators {
    padding-bottom: 0;
    transition: 0.5s;
}


.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li,
.carousel-header .carousel .carousel-indicators li {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-primary);
    border-radius: 50%;
    margin-right: 30px;
    transition: 0.5s;
}

.carousel-header .carousel .carousel-indicators li.active {
    width: 8px;
    height: 8px;
    border: 8px solid var(--bs-secondary);
}

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: 100vh
}

.carousel-header .carousel-inner .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-header .carousel-inner .carousel-item .carousel-caption  {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0.6));
    background-size: cover;
}


@media (max-width: 768px) {
    .carousel-header {
        height: 700px !important;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon,
    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-top: 500px;
    }

    .carousel-header .carousel-control-prev .carousel-control-prev-icon {
        margin-left: 0px;
    }

    .carousel-header .carousel-control-next .carousel-control-next-icon {
        margin-right: 0px;
    }

    .carousel-header .carousel .carousel-indicators {
        padding: 0;
    }
}
/*** Carousel Hero Header End ***/


/*** Counter Facts Start ***/
.counter-facts {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, 0.8)), url(../img/breadcrumb.png);
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
}

.counter-facts .counter {
    position: relative;
    text-align: center;
    width: 200px;
    min-height: 215px;
    padding: 10px 15px;
    margin: 0 auto;
    border-radius: 100px;
    box-shadow: 0 8px 5px rgba(0, 0, 0, 0.2);
    background: var(--bs-white);
}

.counter-facts .counter:before {
    content: "";
    position: absolute;
    height: 105px;
    width: 100%;
    left: 0;
    top: 0;
    border-radius: 10px 10px 0 0;
    background-color: var(--bs-primary);

}
.counter-facts .counter .counter-icon {
    position: relative;
    width: 120px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 10px 10px 0 0;
    transform: translateY(-20px);
    font-size: 50px;
    line-height: 90px;
    color: var(--bs-secondary);
    background: rgba(1, 143, 252, 0.5);
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter .counter-icon:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 90px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 10px 10px 0 0;
    background: rgba(0, 58, 102, 0.5);
    z-index: -1;
    clip-path: polygon(0% 0%, 100% 0, 100% 70%, 50% 100%, 0 70%);
}
.counter-facts .counter:hover .counter-icon i {
    transform: rotate(360deg);
    transition: all 0.3s ease;
}
.counter-facts .counter h3 {
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}
.counter-facts .counter .counter-value {
    font-size: 30px;
    font-weight: 700;
    display: block;
    color: var(--bs-secondary);
}

@media screen and (max-width: 1200px) {
    .counter-facts .counter {
        margin-bottom: 40px;
    }
}
/*** Counter Facts End ***/


/*** service Start ***/
.service .service-item {
    position: relative;
    overflow: hidden;
}

.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
}

.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    margin-left: 30px;
    margin-right: 30px;
    text-align: center;
    border-radius: 10px;
    background: var(--bs-primary);
    opacity: 0;
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 0;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content a h4 {
    border-bottom: 1px solid rgba(256, 256, 256, .1);
}

.service .service-item .service-inner .service-title .service-title-name {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
}

.service .service-item .service-inner .service-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.service .service-item .service-inner .service-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, .5);
    transition: 0.5s;
    opacity: 0;
}

.service .service-item:hover .service-inner .service-img::after {
    height: 100%;
    opacity: 1;
}

.service .service-item .service-inner .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.3);
}
/*** Service End ***/


/*** Features Start ***/
.features .feature-item {
    position: relative;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.features .feature-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(0, 58, 102, 0.1);
    z-index: -1;
    transition: 0.5s;
}

.features .feature-item:hover::after {
    height: 100%;
}

.features .feature-item .feature-icon {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-light);
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon {
    border-radius: 50%;
    background: var(--bs-white) !important;
}

.features .feature-item .feature-icon i {
    transition: 0.5s;
}

.features .feature-item:hover .feature-icon i {
    color: var(--bs-secondary) !important;
    transform: rotate(360deg);
    transition: all 0.5s ease;
}
/*** Features End ***/


/*** Country Start ***/
.country .country-item {
    position: relative;
}

.country .country-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 58, 102, 0.7);
    border-radius: 10px;
    transition: 0.5s;
    z-index: 1;
}

.country .country-item:hover::after {
    height: 100%;
}

.country .country-item .country-flag {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
    z-index: 2;
}

.country .country-item .country-flag img {
    border: 5px solid var(--bs-white);
    transition: 0.5s;
}

.country .country-item:hover .country-flag img {
    border: 5px solid var(--bs-white);
    transform: rotate(360deg);
    transition: all 0.5s ease;
}

.country .country-item .country-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
    opacity: 0;
    z-index: 3;
}

.country .country-item:hover .country-name {
    opacity: 1;
}

.country .country-item img {
    transition: 0.5s;
}

.country .country-item:hover img {
    transform: scale(1.2);
}

.country .country-item .country-name a.fs-4 {
    transition: 0.5s;
}

.country .country-item .country-name a.fs-4:hover {
    color: var(--bs-secondary) !important;
}
/*** Country End ***/


/*** testimonial Start ***/
.testimonial .owl-carousel.testimonial-carousel,
.country .owl-carousel.country-carousel {
    position: relative;
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content {
    position: relative;
    border-radius: 10px;
    background: var(--bs-light);
}

.testimonial .owl-carousel.testimonial-carousel .testimonial-item .testimonial-content::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 45px;
    bottom: -20px;
    left: 30px;
    transform: rotate(45deg);
    background: var(--bs-light);
    z-index: -1;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav,
.country .owl-carousel.country-carousel .owl-nav {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    font-size: 40px;
    color: var(--bs-primary);
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.country .owl-carousel.country-carousel .owl-nav .owl-prev {
    margin-right: 40px;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next,
.country .owl-carousel.country-carousel .owl-nav .owl-prev,
.country .owl-carousel.country-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .owl-carousel.testimonial-carousel .owl-nav .owl-next:hover,
.country .owl-carousel.country-carousel .owl-nav .owl-prev:hover,
.country .owl-carousel.country-carousel .owl-nav .owl-next:hover {
    color: var(--bs-secondary);
}
/*** testimonial end ***/


/*** training Start ***/
.training .training-item .training-inner {
    position: relative;
}

.training .training-item .training-inner .training-title-name {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: end;
    text-align: center;
    transition: 0.5s;
}

.training .training-item {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.training .training-item:hover .training-inner .training-title-name {
    background: rgba(0, 58, 102, 0.5);
}

.training .training-item:hover .training-inner .training-title-name a {
    opacity: 0;
}

.training .training-item .training-inner img {
    transition: 0.5s;
}

.training .training-item:hover .training-inner img {
    transform: scale(1.3);
}

.training .training-item .training-content {
    position: absolute;
    width: 100%;
    bottom: -100%;
    left: 0;
    transition: 0.5s;
}

.training .training-item:hover .training-content {
    bottom: 0;
}
/*** training End ***/


/*** Contact Start ***/
.contact .office .office-item,
.country_main .office .office-item {
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.2);
    background: var(--bs-light);
    transition: 0.5s;
}

.contact .office .office-item:hover,
.country_main .office .office-item:hover {
    box-shadow: 20px 20px 20px rgba(0, 58, 102, 0.3);
}

.contact .office .office-item .office-img,
.country_main .office .office-item .office-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.contact .office .office-item .office-img img,
.country_main .office .office-item .office-img img {
    transition: 0.5s;
}

.contact .office .office-item:hover .office-img img,
.country_main .office .office-item:hover .office-img img {
    transform: scale(1.3);
}

.contact .office .office-item .office-content a.text-secondary,
.contact .office .office-item .office-content a.text-muted,
.country_main .office .office-item .office-content a.text-secondary,
.country_main .office .office-item .office-content a.text-muted {
    transition: 0.5s;
}

.contact .office .office-item .office-content a.text-muted:hover,
.country_main .office .office-item .office-content a.text-muted:hover {
    color: var(--bs-secondary) !important;
}

.contact .office .office-item .office-content a.text-secondary:hover,
.country_main .office .office-item .office-content a.text-secondary:hover {
    color: var(--bs-primary) !important;
}
/*** Contact End ***/


/*** Footer Start ***/
.footer {
    /*background: var(--bs-primary);*/
    background: #1B1F24;
}
.footer .footer-item a {
    line-height: 30px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 30px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-secondary);
}

/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-secondary) !important;
}
/*** copyright end ***/

.whats-app {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1;
}
.whats-app img {
    height: 60px;
}
.whats-app-text {
    background-color: #24D366;
    padding: 0px 16px;
    line-height: 1.6;
    font-size: 15px;
    color: #ffffff;
    border-radius: 10px;
    margin: 0px 10px;
}
.whats-child {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/*** START COUNTRY HEADER MENU ***/
.country-box{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:20px;
    padding:28px 25px;
    background:#f0f5fb;
    border:1px solid #e9ecef;
    text-decoration:none;
    color:var(--bs-primary);
    transition:.35s;
    height:100%;
    position:relative;
    overflow:hidden;
}

.country-box::after{
    content:'';
    position:absolute;
    right:0;
    top:0;
    width:4px;
    height:100%;
    background:var(--bs-secondary);
    transform:scaleY(0);
    transition:.35s;
}

.country-box:hover::after,
.country-box.active::after{
    transform:scaleY(1);
}

.country-box .icon{
    font-size:38px;
    color:var(--bs-secondary);
    transition:.35s;
}

.country-box .content h5{
    margin:0;
    font-size:18px;
    font-weight:700;
    line-height:1.35;
}

.country-box:hover,
.country-box.active,
.country-box.active .content h5{
    background:var(--bs-primary);
    color:#fff;
    transform:translateY(-5px);
    box-shadow:0 12px 35px rgba(0,0,0,.15);
}
.country-box:hover .content h5 {
    color:#fff;
}

.country-box:hover .icon,
.country-box.active .icon{
    color:#fff;
}

@media(max-width:991px){

    .country-box{
        padding:22px 18px;
    }

    .country-box .content h5{
        font-size:18px;
    }

    .country-box .icon{
        font-size:32px;
    }

}

@media(max-width:575px){

    .country-box{
        gap:15px;
        padding:18px;
    }

    .country-box .content h5{
        font-size:16px;
    }

    .country-box .icon{
        font-size:28px;
    }

}
/*** END COUNTRY HEADER MENU ***/

/*** START WHY STUDY ***/
@media(max-width:767px){
    .study_in_header>:first-child {
        order: 2;
    }
    .study_in_header>:nth-child(2) {
        order: 1;
    }
}
.service .feature-item{
    position:relative;
    display:flex;
    align-items:center;
    gap:20px;
    background:#fff;
    border-radius:18px;
    padding:18px 25px;
    margin-bottom:18px;
    border-left:5px solid var(--bs-secondary);
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.35s;
}

.service .feature-item:hover{
    transform:translateX(8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    background:#edf6ff;
}

.service .feature-item.active{
    background:#edf6ff;
}

.service .feature-icon{
    width:52px;
    height:52px;
    min-width:52px;
    border-radius:50%;
    background:var(--bs-secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.3s;
}

.service .feature-item:hover .feature-icon{
    background:var(--bs-primary);
}

.service .feature-content{
    font-size:18px;
    color:#444;
    line-height:1.7;
    font-weight:500;
}

@media (max-width:768px){

    .service .feature-item{
        gap:15px;
        padding:15px;
        border-radius:14px;
    }

    .service .feature-icon{
        width:45px;
        height:45px;
        min-width:45px;
        font-size:17px;
    }

    .service .feature-content{
        font-size:15px;
        line-height:1.6;
    }

}

@media (max-width:576px){

    .service .feature-item{
        align-items:flex-start;
    }

    .service .feature-icon{
        margin-top:2px;
    }

}
/*** END WHY STUDY ***/

/*** START INTAKE ***/
.intake-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:35px;
    height:100%;
    border: 1px solid #e8edf6;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.35s;
    overflow:hidden;
}

.intake-card.active{
    border-color:var(--bs-primary);
    box-shadow:0 20px 45px rgba(13,110,253,.12);
}

.intake-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 5px;
    background: var(--bs-primary);
    transition: width .4s ease;
}

.intake-card.active::before{
    width:100%;
}

.intake-card:hover{
    border-color: var(--bs-primary);
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.intake-card:hover::before{
    width: 100%;
}

.featured{
    border:2px solid var(--bs-primary);
}

.intake-icon{
    font-size:42px;
    margin-bottom:25px;
    transition: .4s;
}

.intake-icon img {
    width: 15%;
}

.intake-card:hover .intake-icon{
    transform: rotate(10deg) scale(1.1);
}

.intake-card h3{
    transition: .3s;
    color:var(--bs-primary);
    font-size:34px;
    font-weight:700;
    margin-bottom:18px;
}

.intake-card:hover h3{
    color: var(--bs-primary);
}

.month-badge{
    display:inline-block;
    padding:10px 20px;
    border-radius:30px;
    background:#edf4ff;
    color:var(--bs-primary);
    font-weight:600;
    margin-bottom:25px;
}

.intake-card:hover .month-badge{
    background: var(--bs-primary);
    color: #fff;
}

.intake-card.active .month-badge{
    background:var(--bs-primary);
    color:#fff;
}

.intake-card:hover .intake-icon{
    /*animation: floatIcon .8s ease;*/
}

@keyframes floatIcon{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-8px) rotate(-8deg);
    }
    100%{
        transform:translateY(0);
    }
}

.intake-card p{
    color:#666;
    line-height:1.9;
    margin:0;
}

.intake-card:hover p{
    color: #444;
}

.ribbon{
    position:absolute;
    top:22px;
    right:-48px;
    width:180px;
    text-align:center;
    transform:rotate(45deg);
    background:var(--bs-primary);
    color:#fff;
    font-size:14px;
    font-weight:600;
    padding:8px 0;
    letter-spacing:.4px;
}

@media(max-width:991px){

    .intake-card{
        padding:30px;
    }

    .intake-card h3{
        font-size:30px;
    }

}

@media(max-width:768px){

    .intake-card{
        padding:25px;
    }

    .intake-card h3{
        font-size:26px;
    }

    .intake-icon{
        font-size:36px;
    }

    .month-badge{
        padding:8px 18px;
    }

}

@media(max-width:576px){

    .intake-card{
        text-align:center;
    }

    .ribbon{
        font-size:12px;
        width:160px;
        right:-46px;
    }

}
/*** END INTAKE ***/

/*START PROGRAM DURATION*/
.program-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    height:100%;
    border:1px solid #e8edf5;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.04);
    overflow:hidden;
    position:relative;
}

.program-card:hover{
    transform:translateY(-8px);
    border-color:var(--bs-primary);
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.program-card.active{
    border-color:var(--bs-primary);
}

.program-card.active::before,
.program-card:hover::before{
    width:100%;
}

.program-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:0;
    height:5px;
    background:var(--bs-primary);
    transition:.4s;
}

.program-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#edf4ff;
    color:var(--bs-primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
    transition:.35s;
}

.program-card:hover .program-icon{
    background:var(--bs-primary);
    color:#fff;
    transform:rotate(-10deg);
}

.program-card h3{
    color:var(--bs-primary);
    font-size:1.7rem;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.3;
}

.program-info{
    display:flex;
    justify-content:space-between;
    background:#f6f8fb;
    border-radius:16px;
    padding:20px;
    margin-bottom:25px;
}

.program-info small{
    display:block;
    color:#666;
    margin-bottom:10px;
    font-size:.95rem;
}

.program-info h5{
    color:var(--bs-primary);
    font-size:1.2rem;
    font-weight:700;
    margin:0;
}

.program-card p{
    color:#555;
    line-height:1.9;
    margin:0;
}

@media(max-width:991px){

    .program-card{
        padding:30px;
    }

    .program-card h3{
        font-size:1.8rem;
    }

    .program-info h5{
        font-size:1.5rem;
    }

}

@media(max-width:767px){

    .program-card{
        padding:25px;
    }

    .program-icon{
        width:60px;
        height:60px;
        font-size:28px;
    }

    .program-card h3{
        font-size:1.5rem;
    }

    .program-info{
        flex-direction:column;
        gap:20px;
    }

    .program-info h5{
        font-size:1.3rem;
    }

    .program-card p{
        line-height:1.7;
    }

}
/*END PROGRAM DURATION*/

/*START ADMISSION REQUIREMENTS*/
.info-card{
    background:#fff;
    border-radius:22px;
    padding:35px;
    height:100%;
    position:relative;
    overflow:auto;
    border:1px solid #e8eef7;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
    transition:.35s;
}

.info-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:var(--bs-primary);
}

.info-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.info-card:hover .icon-box{
    background:var(--bs-primary);
    color:#fff;
    transform:rotate(-10deg);
}

.card-heading{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:25px;
}

.icon-box{
    width:70px;
    height:70px;
    background:#eef5ff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:var(--bs-primary);
}

.card-heading h2{
    color:var(--bs-primary);
    font-size:2rem;
    font-weight:700;
    margin:0;
}

.intro{
    color:#555;
    line-height:1.9;
    margin-bottom:35px;
}

.check-list{
    list-style:none;
    padding:0;
    margin:0;
}

.check-list li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:22px;
    color:#555;
    line-height:1.8;
    padding: 12px 10px;
}

.check-list span{
    width:30px;
    height:30px;
    min-width:30px;
    border-radius:50%;
    background:var(--bs-secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

.check-list li:hover {
    cursor: pointer;
    transform:translateX(8px);
    background:#eef5ff;
}
.check-list li:hover .check {
    background: var(--bs-primary);
}

.fee-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#f7f9fc;
    border-left:5px solid var(--bs-primary);
    padding:18px 20px;
    border-radius:15px;
    margin-bottom:18px;
    transition:.3s;
}
.fee-item.border-red {
    border-left:5px solid var(--bs-secondary);
}

.fee-item:hover{
    transform:translateX(8px);
    background:#eef5ff;
}

.fee-item h5{
    margin:0;
    font-size:1.2rem;
    font-weight:700;
}

.fee-item small{
    color:#666;
}

.fee-item strong{
    color:var(--bs-primary);
    font-size:1.5rem;
}

.note{
    margin-top:25px;
    color:#444;
    line-height:1.9;
}

@media(max-width:992px){

    .card-heading h2{
        font-size:1.6rem;
    }

    .fee-item strong{
        font-size:1.2rem;
    }

}

@media(max-width:768px){

    .info-card{
        padding:25px;
    }

    .card-heading{
        flex-direction:column;
        text-align:center;
    }

    .fee-item{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .fee-item strong{
        font-size:1.2rem;
    }

}
/*END ADMISSION REQUIREMENTS*/

/* START UNIVERSITY */
.country-menu{
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}
.country-menu .icon-right{
    color: var(--bs-secondary);
}
.country-menu .active .icon-right{
    color: #fff;
}

.menu-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    background:#f8fbff;
    color:var(--bs-primary);
    text-decoration:none;
    border-bottom:1px solid #e7eef7;
    transition:.3s;
}

.menu-item:hover{
    background:var(--bs-primary);
    color:#fff;
}

.menu-item.active{
    background:var(--bs-primary);
    color:#fff;
    border-right:5px solid var(--bs-secondary);
}

.university-list{
    max-height:650px;
    overflow-y:auto;
    padding-right:8px;
}

.university-list ul{
    padding-left:18px;
    margin:0;
}

.university-list li,
.bullet-list li{
    margin-bottom:12px;
    color:#666;
    transition:.3s;
    cursor:pointer;
}

.university-list li:hover,
.bullet-list li:hover{
    color:var(--bs-primary);
    transform:translateX(5px);
}

.content-box h2{
    color:var(--bs-primary);
    font-weight:700;
    margin-bottom:25px;
}

.content-box p{
    color:#555;
    line-height:2;
    text-align:justify;
}

.feature-card{
    padding:18px;
    background:#f8fbff;
    border-radius:10px;
    border-left:4px solid var(--bs-primary);
    font-weight:600;
    transition:.3s;
}

.feature-card:hover{
    background:var(--bs-primary);
    color:#fff;
    transform:translateY(-4px);
}

.university-list::-webkit-scrollbar{
    width:7px;
}

.university-list::-webkit-scrollbar-thumb{
    background:var(--bs-primary);
    border-radius:10px;
}

.university-list::-webkit-scrollbar-track{
    background:#e9ecef;
}

@media(max-width:991px){

    .university-list{
        max-height:300px;
        margin-bottom:30px;
    }

    .content-box{
        margin-top:10px;
    }

}

@media(max-width:767px){

    .menu-item{
        font-size:15px;
        padding:15px;
    }

    .content-box h2{
        font-size:28px;
    }

    .content-box p{
        line-height:1.8;
    }

}
/* END UNIVERSITY */

/*START FAQ SECTION COACHING*/
.faq-section{
    background:#f8fbff;
}

.custom-accordion .accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.custom-accordion .accordion-button{

    background:#fff;
    color:#222;
    font-size:22px;
    font-weight:700;
    padding:22px 28px;
    box-shadow:none;
    transition:.35s;
}

.custom-accordion .accordion-button:not(.collapsed){

    background:var(--bs-secondary);
    color:#fff;
}

.custom-accordion .accordion-button:focus{

    box-shadow:none;
}

.custom-accordion .accordion-body{

    padding:28px;
    font-size:18px;
    color:#444;
    line-height:1.8;
}

.custom-accordion .accordion-button::after{

    background-image:none;
    content:"+";
    font-size:34px;
    font-weight:300;
    color:inherit;
    width:auto;
    height:auto;
    transform:none;
    transition:.35s;
}

.custom-accordion .accordion-button:not(.collapsed)::after{

    content:"−";
}

@media(max-width:992px){

    .custom-accordion .accordion-button{

        font-size:20px;
        padding:18px 22px;
    }

    .custom-accordion .accordion-body{

        font-size:16px;
        padding:22px;
    }

}

@media(max-width:576px){

    .custom-accordion .accordion-button{

        font-size:18px;
        line-height:1.5;
        padding:16px 18px;
    }

    .custom-accordion .accordion-body{

        font-size:15px;
        padding:18px;
    }

}
/*END FAQ SECTION COACHING*/

/*START SCORE CARD*/
.score-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #dbe7ff;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.score-card:hover{

    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.score-title{

    background:#0b4ea2;
    color:#fff;
    font-size:28px;
    font-weight:700;
    text-align:center;
    padding:20px;
}

.score-table{

    margin:0;
}

.score-table thead th{

    background:#eaf3ff;
    color:#0b4ea2;
    font-weight:700;
    text-align:center;
    padding:16px;
    border-color:#dbe7ff;
}

.score-table tbody td{

    text-align:center;
    padding:15px;
    border-color:#edf2fb;
}

.score-table tbody tr:nth-child(even){

    background:#f8fbff;
}

.score-table tbody tr:hover{

    background:#dfeeff;
}

@media(max-width:991px){

    .score-title{

        font-size:24px;
    }

}

@media(max-width:576px){

    .score-title{

        font-size:22px;
        padding:18px;
    }

    .score-table td,
    .score-table th{

        padding:12px;
        font-size:15px;
    }

}
/*END SCORE CARD*/

/*START GETTING RESULT*/
.results-section{

    background:#f5f9ff;
}

.results-box{

    background:#fff;
    border-radius:24px;
    padding:60px;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.section-tag{

    display:inline-block;
    background:#eaf2ff;
    color:var(--bs-primary);
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;
}

.results-box h2{

    font-size:48px;
    font-weight:700;
    color:#0b3a75;
}

.results-box p{

    font-size:19px;
    color:#6c7a95;
}

.website-link{

    color:var(--bs-primary);
    font-weight:700;
    margin-bottom:25px;
}

.results-box hr{

    margin:30px 0;
    opacity:.15;
}

.result-item{

    display:flex;
    align-items:center;
    margin-bottom:22px;
    font-size:20px;
    color:#495057;
}

.result-item i{

    color:var(--bs-primary);
    font-size:28px;
    margin-right:18px;
}

.result-image{

    max-width:420px;
    animation:float 4s ease-in-out infinite;
}

@keyframes float{

    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }

}

@media(max-width:991px){

    .results-box{

        padding:40px 30px;
        text-align:center;
    }

    .results-box h2{

        font-size:36px;
    }

    .result-item{

        justify-content:center;
        text-align:left;
        font-size:18px;
    }

    .result-image{

        margin-top:35px;
        max-width:320px;
    }

}

@media(max-width:576px){

    .results-box{

        padding:30px 20px;
    }

    .results-box h2{

        font-size:30px;
    }

    .results-box p{

        font-size:16px;
    }

    .website-link{

        font-size:22px;
    }

    .result-item{

        font-size:16px;
    }

    .result-item i{

        font-size:22px;
        margin-right:12px;
    }

}
/*END GETTING RESULT*/

/*START BRANCH MAP CSS*/
.branch-section{

    background:#f7faff;
}

.section-subtitle{

    display:inline-block;
    padding:8px 18px;
    background:#eaf3ff;
    color:var(--bs-secondary);
    ;
    border-radius:50px;
    font-weight:600;
}

.section-title{

    font-size:42px;
    font-weight:700;
    color:#12366f;
    margin-top:15px;
}

.branch-menu{

    display:flex;
    flex-direction:column;
    gap:15px;
}

.branch-btn{

    border:none;
    background:#fff;
    color:#444;
    padding:20px;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    text-align:left;
}

.branch-btn i{

    color:var(--bs-secondary);
    ;
    margin-right:10px;
}

.branch-btn:hover{

    transform:translateX(6px);
    background:#eef5ff;
}

.branch-btn.active{

    background:var(--bs-secondary);
    ;
    color:#fff;
}

.branch-btn.active i{

    color:#fff;
}

.map-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    height:100%;
}

.map-card iframe{

    width:100%;
    height:500px;
    border:0;
}

@media(max-width:991px){

    .branch-menu{

        flex-direction:row;
        overflow:auto;
        padding-bottom:10px;
    }

    .branch-btn{

        min-width:180px;
        white-space:nowrap;
    }

    .map-card iframe{

        height:420px;
    }

}

@media(max-width:576px){

    .section-title{

        font-size:30px;
    }

    .branch-btn{

        padding:16px;
        font-size:16px;
    }

    .map-card iframe{

        height:320px;
    }

}
/*END BRANCH MAP CSS*/

/*START QUESTION TYPE CSS*/
.question-types{

    background:#f6f9ff;
}

.section-badge{

    display:inline-block;
    padding:8px 18px;
    border-radius:40px;
    background:#e9f2ff;
    color:var(--bs-secondary);
    font-weight:600;
}

.section-title h2{

    font-size:42px;
    font-weight:700;
    color:#143b75;
    margin:15px 0;
}

.section-title p{

    color:#7d8797;
    font-size:18px;
}

.question-card{

    background:#fff;
    border-radius:18px;
    padding:35px;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    height:100%;
    transition:.35s;
    border-top:5px solid var(--bs-secondary);
}

.question-card:hover{

    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.card-icon{

    width:70px;
    height:70px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.question-card h4{

    font-weight:700;
    color:#143b75;
    margin-bottom:20px;
}

.question-card ul{

    padding:0;
    margin:0;
    list-style:none;
}

.question-card li{

    position:relative;
    padding-left:30px;
    margin-bottom:14px;
    color:#555;
}

.question-card li:before{

    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:20px;
    height:20px;
    background:var(--bs-primary);
    color:#fff;
    border-radius:50%;
    font-size:12px;
    display:flex;
    align-items:center;
    justify-content:center;
}
/*END QUESTION TYPE CSS*/

.student-hero{

    background:linear-gradient(135deg,var(--bs-secondary),#0048b5);

    padding:90px 0;

    color:#fff;

    position:relative;

}

.min-vh-75{

    min-height:75vh;

}

.hero-tag{

    display:inline-flex;

    align-items:center;

    padding:10px 18px;

    background:rgba(255,255,255,.15);

    border-radius:50px;

    font-weight:600;

    backdrop-filter:blur(10px);

}

.hero-tag i{

    margin-right:8px;

}

.hero-title{

    font-size:58px;

    font-weight:800;

    line-height:1.15;

}

.hero-title span{

    color:#FFD43B;

}

.hero-desc{

    font-size:18px;

    line-height:1.9;

    opacity:.95;

}

.hero-btn .btn{

    padding:14px 32px;

    border-radius:50px;

    font-weight:600;

}

.feature-box{

    background:rgba(255,255,255,.12);

    padding:18px;

    border-radius:15px;

    text-align:center;

    backdrop-filter:blur(12px);

    transition:.35s;

}

.feature-box:hover{

    transform:translateY(-6px);

    background:rgba(255,255,255,.18);

}

.feature-box h3{

    font-size:30px;

    font-weight:700;

    margin-bottom:5px;

}

.hero-img{

    max-width:95%;

    animation:float 4s ease-in-out infinite;

}

.shape1{

    width:320px;

    height:320px;

    background:rgba(255,255,255,.08);

    position:absolute;

    top:-120px;

    right:-120px;

    border-radius:50%;

}

.shape2{

    width:250px;

    height:250px;

    background:rgba(255,255,255,.05);

    position:absolute;

    bottom:-100px;

    left:-100px;

    border-radius:50%;

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

@media(max-width:991px){

    .hero-title{

        font-size:42px;

    }

    .hero-desc{

        font-size:16px;

    }

    .student-hero{

        text-align:center;

        padding:70px 0;

    }

}

.about-student-visa{

    background:#fff;

}

.about-image{

    position:relative;

}

.about-image img{

    border-radius:25px;

}

.experience-box{

    position:absolute;

    bottom:30px;

    left:30px;

    background:var(--bs-secondary);

    padding:20px 28px;

    border-radius:20px;

    color:#fff;

    box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.experience-box h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:0;

}

.section-tag{

    display:inline-flex;

    align-items:center;

    padding:10px 20px;

    background:#EEF5FF;

    color:var(--bs-secondary);

    border-radius:50px;

    font-weight:600;

}

.section-tag i{

    margin-right:10px;

}

.section-heading{

    font-size:42px;

    font-weight:700;

    line-height:1.3;

}

.section-heading span{

    color:var(--bs-secondary);

}

.section-text{

    margin-top:20px;

    font-size:17px;

    line-height:1.9;

    color:#555;

}

.check-card{

    background:#fff;

    padding:18px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

    font-weight:600;

}

.check-card:hover{

    transform:translateY(-6px);

    border-left:5px solid var(--bs-secondary);

}

.check-card i{

    color:#28A745;

    margin-right:10px;

}

.country-pill{

    padding:12px 20px;

    border-radius:50px;

    background:#F5F7FB;

    font-weight:600;

    transition:.3s;

}

.country-pill:hover{

    background:var(--bs-secondary);

    color:#fff;

    transform:translateY(-3px);

}

@media(max-width:991px){

    .section-heading{

        font-size:32px;

    }

    .experience-box{

        left:15px;

        bottom:15px;

        padding:15px;

    }

}

/*==========================================
WHY STUDY ABROAD
==========================================*/

.why-study{

    background:#f7faff;

}

.section-subtitle{

    max-width:700px;

    margin:auto;

    color:#666;

    font-size:17px;

    line-height:1.8;

}

.why-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    height:100%;

    transition:.35s;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

    position:relative;

    overflow:hidden;

}

.why-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(13,110,253,.15);

}

.why-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    height:5px;

    width:100%;

    background:linear-gradient(90deg,var(--bs-secondary),#DC3545);

    transform:scaleX(0);

    transition:.35s;

}

.why-card:hover::before{

    transform:scaleX(1);

}

.why_study .icon-box{

    width:75px;

    height:75px;

    border-radius:18px;

    background:linear-gradient(135deg,var(--bs-secondary),#0048b5);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

    transition:.35s;

}

.why_study .icon-box i{

    font-size:30px;

    color:#fff;

}

.why-card:hover .why_study .icon-box{

    transform:rotate(-8deg) scale(1.08);

}

.why-card h4{

    font-weight:700;

    margin-bottom:15px;

    color:#222;

}

.why-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:0;

}

@media(max-width:768px){

    .why-card{

        padding:25px;

    }

    .why_study .icon-box{

        width:65px;

        height:65px;

    }

    .why_study .icon-box i{

        font-size:26px;

    }

}

/*==========================================
TOP DESTINATIONS
==========================================*/

.study-destinations{
    background:#fff;
}

.country-card{
    position:relative;
    border-radius:22px;
    overflow:hidden;
    height:420px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.country-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.country-card:hover img{
    transform:scale(1.08);
}

.country-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to top,
        rgba(0,33,71,.95),
        rgba(0,33,71,.25));
    color:#fff;
    padding:30px;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
}

.country-overlay h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}

.country-overlay ul{
    list-style:none;
    padding:0;
    margin-bottom:20px;
}

.country-overlay li{
    margin-bottom:12px;
    font-size:15px;
}

.country-overlay i{
    width:22px;
    color:#FFD43B;
}

.country-card:hover{
    transform:translateY(-10px);
}

.country-more{
    background:linear-gradient(135deg,var(--bs-secondary),#003B95);
    color:#fff;
    border-radius:22px;
    height:420px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
}

.country-more i{
    font-size:65px;
    margin-bottom:25px;
}

.country-more h3{
    font-weight:700;
}

.country-more p{
    opacity:.9;
    line-height:1.8;
}

.country-more .btn{
    margin-top:20px;
}

@media(max-width:991px){

    .country-card,
    .country-more{

        height:380px;

    }

}

/*==========================================
STUDENT VISA PROCESS
==========================================*/

.timeline{

    position:relative;

    max-width:1100px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:50%;

    top:0;

    bottom:0;

    width:4px;

    background:var(--bs-secondary);

    transform:translateX(-50%);

}

.timeline-item{

    width:50%;

    position:relative;

    margin-bottom:70px;

}

.timeline-item.left{

    padding-right:70px;

}

.timeline-item.right{

    margin-left:50%;

    padding-left:70px;

}

.timeline-content{

    background:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

}

.timeline-content:hover{

    transform:translateY(-8px);

}

.timeline-content span{

    color:var(--bs-secondary);

    font-weight:600;

}

.timeline-content h4{

    margin:10px 0;

    font-weight:700;

}

.timeline-content p{

    margin:0;

    color:#666;

    line-height:1.8;

}

.timeline-icon{

    width:70px;

    height:70px;

    border-radius:50%;

    background:linear-gradient(135deg,var(--bs-secondary),#0048b5);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    position:absolute;

    top:20px;

    right:-35px;

    z-index:10;

    box-shadow:0 10px 25px rgba(13,110,253,.3);

}

.timeline-item.right .timeline-icon{

    left:-35px;

}

@media(max-width:991px){

    .timeline::before{

        left:35px;

    }

    .timeline-item{

        width:100%;

        margin-left:0!important;

        padding-left:90px!important;

        padding-right:0!important;

    }

    .timeline-icon{

        left:0!important;

        right:auto!important;

    }

}

/*==========================================
REQUIRED DOCUMENTS
==========================================*/

.required-documents{

    background:#fff;

}

.document-card{

    background:#f8fbff;

    padding:35px;

    border-radius:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.06);

}

.document-item{

    display:flex;

    align-items:flex-start;

    padding:18px;

    background:#fff;

    border-radius:18px;

    transition:.35s;

    height:100%;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.document-item:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 35px rgba(13,110,253,.12);

}

.document-item i{

    width:60px;

    height:60px;

    background:linear-gradient(135deg,var(--bs-secondary),#0048b5);

    color:#fff;

    border-radius:16px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    margin-right:18px;

    flex-shrink:0;

}

.document-item h6{

    font-weight:700;

    margin-bottom:5px;

}

.document-item small{

    color:#666;

    font-size:14px;

}

.document-image{

    position:relative;

    text-align:center;

}

.document-image img{

    max-width:100%;

}

.download-box{

    margin-top:30px;

    background:linear-gradient(135deg,var(--bs-secondary),#003b95);

    color:#fff;

    padding:30px;

    border-radius:20px;

    box-shadow:0 20px 40px rgba(13,110,253,.25);

}

.download-box h5{

    font-weight:700;

    margin-bottom:15px;

}

.download-box p{

    opacity:.9;

    margin-bottom:20px;

}

.download-box .btn{

    background:#fff;

    color:var(--bs-secondary);

    font-weight:600;

    border-radius:50px;

    padding:12px 28px;

}

.download-box .btn:hover{

    background:#FFD43B;

    color:#222;

}

@media(max-width:768px){

    .document-card{

        padding:20px;

    }

    .document-item{

        padding:15px;

    }

    .document-item i{

        width:50px;

        height:50px;

        font-size:20px;

    }

}

/*==========================================
ELIGIBILITY
==========================================*/

.eligibility-section{

    background:#f7faff;

}

.eligibility-card{

    background:#fff;

    padding:30px;

    border-radius:20px;

    height:100%;

    box-shadow:0 15px 40px rgba(0,0,0,.07);

    transition:.35s;

}

.eligibility-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.eligibility-icon{

    width:75px;

    height:75px;

    border-radius:20px;

    background:linear-gradient(135deg,var(--bs-secondary),#0048b5);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    color:#fff;

    margin-bottom:20px;

}

.eligibility-card h5{

    font-weight:700;

    margin-bottom:15px;

}

.eligibility-card p{

    color:#666;

    line-height:1.8;

    min-height:70px;

}

.progress{

    height:8px;

    border-radius:50px;

    background:#dfe8ff;

    overflow:hidden;

}

.progress-bar{

    background:linear-gradient(90deg,var(--bs-secondary),#DC3545);

}

.eligibility-cta{

    background:linear-gradient(135deg,var(--bs-secondary),#003B95);

    color:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 20px 45px rgba(13,110,253,.25);

}

.eligibility-cta h4{

    font-weight:700;

    margin-bottom:10px;

}

.eligibility-cta .btn{

    border-radius:50px;

    padding:14px 28px;

    font-weight:600;

}

@media(max-width:768px){

    .eligibility-card{

        padding:25px;

    }

    .eligibility-icon{

        width:65px;

        height:65px;

        font-size:26px;

    }

    .eligibility-cta{

        text-align:center;

    }

}

.visitor-country-section{
    background:#f8fbff;
}

.visitor-country-section .section-desc{

    max-width:750px;
    color:#666;
    font-size:17px;
    line-height:1.8;

}

.visitor-country-section .country-card{

    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    transition:.35s;
    border:1px solid #eef2f7;
    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.visitor-country-section .country-card:hover{

    transform:translateY(-10px);
    border-color:var(--bs-primary);
    box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.visitor-country-section .country-icon{

    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;

}

.visitor-country-section .country-icon .fi{

    font-size:58px;
    border-radius:6px;
    box-shadow:0 5px 15px rgba(0,0,0,.12);

}

.visitor-country-section .country-card h4{

    font-size:24px;
    font-weight:700;
    margin-bottom:15px;

}

.visitor-country-section .country-card p{

    color:#666;
    line-height:1.8;
    margin-bottom:25px;

}

.visitor-country-section .country-card a{

    color:var(--bs-primary);
    text-decoration:none;
    font-weight:700;

}

.visitor-country-section .country-card:hover a{

    color:#dc3545;

}

.visitor-country-section .country-card i{

    transition:.3s;

}

.visitor-country-section .country-card:hover i{

    transform:translateX(5px);

}

@media(max-width:767px){

    .visitor-country-section .country-card{

        padding:30px 20px;

    }

    .visitor-country-section .country-card h4{

        font-size:22px;

    }

}

.why_us_visitor .why-image{

    position:relative;

}

.why_us_visitor .why-image img{

    border-radius:25px;

}

.why_us_visitor .experience-box span{

    font-size:16px;

}

.why_us_visitor .why-card{

    display:flex;

    gap:20px;

    align-items:flex-start;

    padding:20px;

    border-radius:18px;

    background:#fff;

    border:1px solid #edf2f7;

    transition:.35s;

    height:100%;

}

.why_us_visitor .why-card:hover{

    transform:translateY(-8px);

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    border-color:var(--bs-primary);

}

.why_us_visitor .why-card i{

    width:65px;

    height:65px;

    background:#eef5ff;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    color:var(--bs-primary);

    flex-shrink:0;

}

.why_us_visitor .why-card h5{

    font-weight:700;

    margin-bottom:8px;

}

.why_us_visitor .why-card p{

    margin:0;

    color:#666;

    line-height:1.7;

}

@media(max-width:991px){

    .why_us_visitor .experience-box{

        position:static;

        margin-top:20px;

        display:inline-block;

    }

}

.visitor-process{

    background:#f8fbff;

}

.visitor-process .process-wrapper{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.visitor-process .process-item{

    position:relative;

}

.visitor-process .process-number{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:linear-gradient(135deg,var(--bs-primary),#4f9dff);

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

    box-shadow:0 12px 25px rgba(13,110,253,.25);

    margin-bottom:-35px;

    position:relative;

    z-index:2;

}

.visitor-process .process-card{

    background:#fff;

    border-radius:22px;

    padding:60px 30px 35px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.06);

    border:1px solid #edf2f7;

    transition:.35s;

    height:100%;

}

.visitor-process .process-card:hover{

    transform:translateY(-10px);

    border-color:var(--bs-primary);

    box-shadow:0 20px 45px rgba(13,110,253,.12);

}

.visitor-process .process-card i{

    font-size:42px;

    color:var(--bs-primary);

    margin-bottom:20px;

}

.visitor-process .process-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.visitor-process .process-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

@media(max-width:991px){

    .visitor-process .process-wrapper{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:767px){

    .visitor-process .process-wrapper{

        grid-template-columns:1fr;

    }

}

.visitor-documents{

    background:#ffffff;

}

.doc-card{

    display:flex;
    align-items:center;
    gap:18px;

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:18px;

    padding:18px 22px;

    transition:.35s;

    height:100%;

    box-shadow:0 8px 25px rgba(0,0,0,.04);

}

.doc-card:hover{

    transform:translateY(-6px);

    border-color:var(--bs-primary);

    box-shadow:0 15px 35px rgba(13,110,253,.12);

}

.doc-card i{

    width:58px;

    height:58px;

    border-radius:16px;

    background:#eef5ff;

    color:var(--bs-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;

}

.doc-card span{

    font-size:17px;

    font-weight:600;

    color:#222;

}

@media(max-width:767px){

    .doc-card{

        padding:16px;

    }

    .doc-card span{

        font-size:16px;

    }

}

.visitor-eligibility{

    background:#f8fbff;

}

.eligibility-card{

    background:#fff;

    border:1px solid #edf2f7;

    border-radius:22px;

    padding:35px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.eligibility-card:hover{

    transform:translateY(-8px);

    border-color:var(--bs-primary);

    box-shadow:0 18px 40px rgba(13,110,253,.12);

}

.eligibility-card .icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#eef5ff;

    color:var(--bs-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}

.eligibility-card h4{

    font-weight:700;

    margin-bottom:15px;

}

.eligibility-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

.eligibility-note{

    background:#fff;

    border-radius:25px;

    padding:40px;

    box-shadow:0 15px 40px rgba(0,0,0,.06);

}

.eligibility-note h4{

    font-weight:700;

    margin-bottom:12px;

}

.eligibility-note p{

    color:#666;

    margin:0;

    line-height:1.8;

}

.visitor-faq{

    background:#ffffff;

}

.visitorFaq .accordion-item{

    border:none;

    margin-bottom:20px;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.visitorFaq .accordion-button{

    padding:24px 28px;

    font-size:18px;

    font-weight:700;

    color:#222;

    background:#fff;

    box-shadow:none;

}

.visitorFaq .accordion-button:not(.collapsed){

    background:var(--bs-primary);

    color:#fff;

}

.visitorFaq .accordion-button:focus{

    box-shadow:none;

}

.visitorFaq .accordion-body{

    padding:25px 28px;

    color:#666;

    line-height:1.9;

    font-size:16px;

}

.visitor-cta{

    padding:80px 0;

    background:#fff;

}

.visitor-cta-box{

    background:linear-gradient(135deg,#0b5ed7,var(--bs-primary));

    border-radius:35px;

    padding:70px;

    color:#fff;

    position:relative;

    overflow:hidden;

    box-shadow:0 25px 70px rgba(13,110,253,.25);

}

.visitor-cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;

    right:-100px;

}

.visitor-cta-box h2{

    font-size:46px;

    font-weight:800;

    line-height:1.3;

}

.visitor-cta-box h2 span{

    color:#ffd54f;

}

.visitor-cta-box p{

    margin-top:20px;

    color:rgba(255,255,255,.9);

    line-height:1.9;

    font-size:17px;

}

.visitor-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

}

.visitor-features div{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

}

.visitor-features i{

    color:#ffd54f;

    font-size:18px;

}

.visitor-cta .btn{

    min-width:210px;

}

.visitor-cta img{

    max-width:430px;

}

@media(max-width:991px){

    .visitor-cta-box{

        padding:50px 35px;

        text-align:center;

    }

    .visitor-features{

        grid-template-columns:1fr;

    }

    .visitor-cta img{

        margin-top:40px;

    }

}

@media(max-width:576px){

    .visitor-cta-box h2{

        font-size:34px;

    }

    .visitor-cta .btn{

        display:block;

        width:100%;

        margin-bottom:15px;

    }

}

.study-extension-hero{

    background:linear-gradient(135deg,#eef6ff 0%,#ffffff 100%);

    padding:110px 0;

    overflow:hidden;

}

.hero-badge{

    display:inline-flex;

    align-items:center;

    background:#eaf2ff;

    color:var(--bs-primary);

    padding:10px 22px;

    border-radius:50px;

    font-weight:600;

}

.study-extension-hero h1{

    font-size:58px;

    font-weight:800;

    line-height:1.2;

    margin:25px 0;

}

.study-extension-hero h1 span{

    color:#FFD43B;

}

.study-extension-hero p{

    font-size:18px;

    color:#666;

    line-height:1.9;

    max-width:560px;

}

.hero-buttons{

    margin-top:35px;

}

.hero-buttons .btn{

    margin-right:15px;

    min-width:210px;

}

.hero-stats{

    display:flex;

    gap:35px;

    margin-top:60px;

}

.hero-stats h3{

    color:var(--bs-primary);

    font-size:36px;

    font-weight:800;

    margin-bottom:5px;

}

.hero-stats span{

    color:#666;

    font-size:15px;

}

.hero-image{

    max-width:100%;

    animation:float 4s ease-in-out infinite;

}

@keyframes float{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

    100%{

        transform:translateY(0);

    }

}

@media(max-width:991px){

    .study-extension-hero{

        text-align:center;

        padding:80px 0;

    }

    .study-extension-hero h1{

        font-size:42px;

    }

    .hero-buttons{

        display:flex;

        flex-direction:column;

        gap:15px;

    }

    .hero-buttons .btn{

        margin:0;

    }

    .hero-stats{

        justify-content:center;

        flex-wrap:wrap;

    }

    .hero-image{

        margin-top:50px;

    }

}

@media(max-width:576px){

    .study-extension-hero h1{

        font-size:34px;

    }

    .hero-stats{

        gap:20px;

    }

    .hero-stats h3{

        font-size:28px;

    }

}

.study-extension-benefits{

    background:#f8fbff;

}

.benefit-card{

    background:#fff;

    border-radius:24px;

    padding:35px 30px;

    text-align:center;

    height:100%;

    border:1px solid #edf2f7;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    transition:.35s;

}

.benefit-card:hover{

    transform:translateY(-10px);

    border-color:var(--bs-primary);

    box-shadow:0 20px 45px rgba(13,110,253,.12);

}

.benefit-icon{

    width:85px;

    height:85px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

}

.benefit-icon i{

    font-size:34px;

    color:var(--bs-primary);

}

.benefit-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.benefit-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

@media(max-width:767px){

    .benefit-card{

        padding:30px 20px;

    }

}

.eligibility-card{

    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    height:100%;
    border:1px solid #edf2f7;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
    transition:.35s ease;

}

.eligibility-card:hover{

    transform:translateY(-10px);
    border-color:var(--bs-primary);
    box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.eligibility-icon{

    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#eef5ff;
    display:flex;
    align-items:center;
    justify-content:center;

}

.eligibility-icon i{

    font-size:34px;
    color:var(--bs-primary);

}

.eligibility-card h4{

    font-size:24px;
    font-weight:700;
    margin-bottom:15px;

}

.eligibility-card p{

    color:#666;
    line-height:1.8;
    margin:0;

}

.document-card{

    display:flex;

    align-items:flex-start;

    gap:18px;

    background:#fff;

    padding:22px;

    border-radius:20px;

    border:1px solid #edf2f7;

    transition:.35s;

    height:100%;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.document-card:hover{

    transform:translateY(-8px);

    border-color:var(--bs-primary);

    box-shadow:0 20px 40px rgba(13,110,253,.12);

}

.document-card i{

    width:65px;

    height:65px;

    border-radius:18px;

    background:#eef5ff;

    color:var(--bs-primary);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:26px;

    flex-shrink:0;

}

.document-card h5{

    font-size:20px;

    font-weight:700;

    margin-bottom:8px;

}

.document-card p{

    margin:0;

    color:#666;

    line-height:1.7;

}

.process-card{

    position:relative;

    background:#fff;

    border-radius:25px;

    padding:35px 30px;

    text-align:center;

    height:100%;

    border:1px solid #edf2f7;

    transition:.35s;

    overflow:hidden;

    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.process-card:hover{

    transform:translateY(-10px);

    border-color:var(--bs-primary);

    box-shadow:0 20px 45px rgba(13,110,253,.15);

}

.step-number{

    position:absolute;

    top:20px;

    right:25px;

    font-size:42px;

    font-weight:800;

    color:rgba(13,110,253,.08);

}

.process-icon{

    width:90px;

    height:90px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:#eef5ff;

    display:flex;

    align-items:center;

    justify-content:center;

}

.process-icon i{

    font-size:34px;

    color:var(--bs-primary);

}

.process-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.process-card p{

    margin:0;

    color:#666;

    line-height:1.8;

}

.processing-box{

    background:linear-gradient(135deg,var(--bs-primary),#3f8cff);
    color:#fff;
    padding:45px;
    border-radius:25px;
    height:100%;
    box-shadow:0 20px 50px rgba(13,110,253,.25);

}

.processing-icon{

    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;

}

.processing-icon i{

    font-size:40px;

}

.processing-box h3{

    font-size:34px;
    font-weight:700;
    margin-bottom:20px;

}

.processing-box p{

    color:rgba(255,255,255,.9);
    line-height:1.9;

}

.processing-note{

    margin-top:30px;
    background:rgba(255,255,255,.12);
    padding:18px;
    border-radius:15px;
    font-weight:600;

}

.tip-card{

    background:#fff;
    border-radius:20px;
    padding:30px;
    height:100%;
    border:1px solid #edf2f7;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.tip-card:hover{

    transform:translateY(-8px);
    border-color:var(--bs-primary);
    box-shadow:0 20px 45px rgba(13,110,253,.12);

}

.tip-card i{

    width:70px;
    height:70px;
    border-radius:18px;
    background:#eef5ff;
    color:var(--bs-primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:20px;

}

.tip-card h5{

    font-size:22px;
    font-weight:700;
    margin-bottom:12px;

}

.tip-card p{

    color:#666;
    line-height:1.8;
    margin:0;

}

.custom-faq .accordion-item{

    border:none;
    border-radius:20px;
    overflow:hidden;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.custom-faq .accordion-button{

    padding:22px 30px;
    font-size:18px;
    font-weight:700;
    color:#222;
    background:#fff;
    box-shadow:none;

}

.custom-faq .accordion-button:not(.collapsed){

    background:var(--bs-primary);
    color:#fff;

}

.custom-faq .accordion-button:focus{

    box-shadow:none;

}

.custom-faq .accordion-body{

    padding:25px 30px;
    color:#666;
    line-height:1.9;

}

.study-cta{

    background:linear-gradient(135deg,#0b5ed7,var(--bs-primary));

    border-radius:35px;

    padding:70px;

    overflow:hidden;

    position:relative;

    box-shadow:0 25px 60px rgba(13,110,253,.25);

}

.study-cta::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    top:-150px;

    right:-120px;

}

.study-cta h2{

    font-size:48px;

    font-weight:800;

    line-height:1.3;

}

.study-cta h2 span{

    color:#ffd54f;

}

.cta-feature{

    display:flex;

    align-items:center;

    color:#fff;

    gap:12px;

    font-weight:600;

}

.cta-feature i{

    color:#ffd54f;

    font-size:18px;

}

.study-cta img{

    max-width:420px;

    animation:floatAnimation 4s ease-in-out infinite;

}

@keyframes floatAnimation{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

@media(max-width:991px){

    .study-cta{

        padding:45px 30px;

        text-align:center;

    }

    .study-cta h2{

        font-size:36px;

    }

    .study-cta .btn{

        display:block;

        width:100%;

        margin-bottom:15px;

    }

}