@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Dark Blue rgb(0,25,76)
Primary Blue rgb(0,85,255)



*/

:root {
    --dark-blue: rgb(50, 79, 138);
    --light-blue: rgb(0, 85, 255);
}

.nav-section,
.hero-section-wrapper {
    position: relative; /* Important for layering */
    background-color: rgb(244, 244, 244);
    overflow: hidden; /* keeps elements contained */
}

.upper-nav-wrapper {
    background-color: rgb(0, 25, 76);
}

span {
    font-weight: 500;
    font-size: 14px;
    background-color: rgb(0, 25, 76);
    color: rgb(255, 250, 250);
}

.social-icons i {
    color: rgb(255, 255, 255);
}

.free-consulatnt {
    font-size: small;
    text-decoration: none;
}

.nav-item a {
    font-weight: 600;
    font-size: 15px;
    color: #0b035c;
}

.hotline i {
    background-color: rgb(0, 85, 255);
    padding: 10px 15px;
    border-radius: 50%;
    color: white;
}

#branchAddress {
    display: inline-block;
    transition: opacity 0.8s ease;
    white-space: nowrap;
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }
    10% {
        transform: rotate(15deg);
    }
    20% {
        transform: rotate(-10deg);
    }
    30% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    50% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(0);
    }
}

.ringing {
    animation: ring 1s infinite;
    transform-origin: center;
    color: #28a745;
}

/* Hero */

.sub-header {
    font-size: small;
    font-weight: 600;
    background-color: rgb(230, 238, 255);
    padding: 5px 15px;
    color: rgb(0, 85, 255);
    border-radius: 15px;
    display: inline;
}

.main-header {
    font-weight: 900;
    font-size: 6vh;
    color: #0b035c;
}

.header-para {
    font-weight: 600;
    color: #3b3b3b;
}

.our-services-btn-wrapper {
    background-color: rgb(0, 85, 255);
    display: inline;
    padding: 15px 38px;
    border-radius: 29px;
}

.our-services-btn-wrapper a {
    font-size: small;
    font-weight: 600;
    text-decoration: none;
    color: white;
}

.bg-dots img {
    position: absolute;
    top: 50%;
    left: 50%;
    animation: flow 6s ease-in-out infinite;
    z-index: 1;
}

@keyframes flow {
    0% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(0);
    }
    75% {
        transform: translateY(10px);
    }
    100% {
        transform: translateY(0);
    }
}

.bg-arrow {
    position: absolute;
    top: 20%;
    left: 50%;
    animation: flow_1 6s ease-in-out infinite;
    z-index: 0;
    opacity: 50%;
}

@keyframes flow_1 {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-20px);
    }
    50% {
        transform: translateX(0);
    }
    75% {
        transform: translateX(10px);
    }
    100% {
        transform: translateX(0);
    }
}
#hero-img {
    position: relative;
    z-index: 2; /* ensure hero content stays above circle */
}

.bg-circle {
    position: absolute;
    z-index: -1; /* middle layer */
    bottom: -350px;
    left: -20%;
    width: 550px;
    opacity: 0.8;
}

#hero-img .bg-circle img {
    width: 100%;
    height: auto;
}

.hero-img img {
    position: relative;
    z-index: 3 !important; /* top layer — above the circle */
    right: 100px !important;
}

.service-card-img {
    background-color: rgb(230, 238, 255);
    padding: 15px 22px;
    border-radius: 50%;
}

.service-card-img i {
    color: #006eff;
}

.service-card-wrapper:hover .service-card-img i {
    translate: 360deg;
}

.service-card-content .header h5 {
    font-weight: 500;
    color: #050505;
}

.service-card-content .description p {
    font-weight: 500;
    color: #555151;
}

.get-to-know-img-wrapper {
    position: relative;
}

.get-to-know-img-2 img {
    position: absolute;
    bottom: -80px;
    right: -100px;
    border-top-right-radius: 50px;
    border: 10px solid white;
    z-index: 55;
}

.get-to-know-img-1 img {
    border-top-left-radius: 150px;
}

.get-to-know-content-wrapper {
    background-color: #006eff;
    color: white;
    position: relative;
    margin-left: -50px;
    border-bottom-left-radius: 45px;
    margin-top: -50px;
}

.get-to-know-content h1 {
    font-weight: 600;
}

.get-to-know-para p {
    font-weight: 600;
}

.get-to-know-content {
    border-right: 5px solid white !important;
}

.who-we-are-section-wrapper {
    background-color: #006eff;
}

.who-we-are-section-wrapper p {
    text-align: justify;
    color: white;
}

.space {
    padding: 0 20px 0 20px !important;
}

.header h2 {
    font-weight: 800;
    color: var(--dark-blue);
}

.sub-header-wrapper p {
    font-size: small;
    text-align: justify;
    color: #021b79;
}

.whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #04be61;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: 0.3s ease;
}

.whatsapp-chat img {
    width: 28px;
    height: 28px;
}

.whatsapp-chat:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .whatsapp-chat span {
        display: none;
    }

    .whatsapp-chat {
        width: 60px;
        height: 60px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
    }

    .main-header {
        font-size: 30px;
    }
}

.whatsapp {
    background-color: transparent;
}
.destination-wrapper {
    background-color: rgb(244, 244, 244);
}

.desination-card {
    border-radius: 15px;
}
.destination-img-wrapper {
    position: relative;
}
.destination-img img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
.destination-logo {
    position: absolute;
    right: 20px;
    bottom: -20px;
}

.destination-logo img {
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.destination-content-wrapper {
    background-color: white;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.destination-content-wrapper p {
    color: rgb(83, 81, 81);
    text-align: justify;
    font-size: small;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: start;
}

.destination-content-wrapper h6 {
    font-weight: 600;
}

.learn-more-link a {
    text-decoration: none;
    font-size: small;
    text-decoration: underline;
}

@media (max-width: 576px) {
    .destination-content-wrapper p {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        text-align: start;
    }

    .free-consulatnt {
        font-size: 8px;
    }
}

.your-class .slick-slide {
    margin: 0 10px;
}

.your-class .slick-list {
    margin: 0 -10px;
}

.your-class .slick-track {
    display: flex !important;
}

.your-class .slick-slide {
    height: inherit !important;
    display: flex !important;
    margin: 0 10px;
}

.your-class .slick-slide > div {
    display: flex;
    width: 100%;
}

.desination-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.destination-content-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.destination-content-wrapper p {
    flex-grow: 1;
}

.learn-more-link {
    margin-top: auto;
}

.globle-achivements-wrapper {
    background: #0575e6; /* fallback for old browsers */
    background: -webkit-linear-gradient(
        to right,
        #021b79,
        #0575e6
    ); /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(
        to right,
        #021b79,
        #0575e6
    ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    color: white;
}

.achivement-header h1 {
    font-weight: 900;
}

.achivement-text p {
    font-size: small;
}

.slick-prev,
.slick-next {
    display: block; /* keep positioning */
    width: 40px;
    height: 40px;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    outline: none;
}

.slick-next:before,
.slick-prev:before {
    font-family: "bootstrap-icons";
    font-size: 20px;
    line-height: 1;
    opacity: 1;
}

.slick-next {
    position: absolute;
    top: 0;
    right: 0px;
    margin-top: -30px;
}

.slick-prev {
    position: absolute;
    top: 0;
    right: 50px;
    margin-top: -30px;
}

.slick-next,
.slick-prev {
    border: 1px solid rgb(194, 191, 191);
    padding: 5px;

    background-color: #fffefe;
    color: rgb(199, 191, 191);
}

.slick-next:before {
    content: "\f285";
}

.slick-prev:before {
    content: "\f284";
}

.slick-next,
.slick-prev {
    font-size: 0;
    line-height: 0;
}

.slick-next:before,
.slick-prev:before {
    font-family: "bootstrap-icons";
    font-size: 20px;
    line-height: 1;
    opacity: 1;
}
.achivements-cards-header p {
    font-size: small;
}
.achivements-cards-header h1 {
    font-weight: 900;
}

.expert-col h4 {
    font-weight: 800;
    color: var(--dark-blue);
}

.expert-col p {
    color: grey;
    font-size: small;
}

.journey-img {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.step-your-university {
    background-color: rgb(41, 77, 240);
}

.step-your-uni-wrapper-header h2,
p {
    color: white;
}
.step-your-uni-wrapper-header h2 {
    font-weight: 800;
}
.step-your-uni-wrapper-header p {
    font-size: small;
}

.get-free a {
    text-decoration: none;
    color: white;
    border: 1px solid white;
    padding: 10px 15px;
    font-weight: 500;
}

.get-free a:hover {
    background-color: white;
    color: #000;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.review-header h4 {
    margin: 0;
    font-size: 16px;
}

.stars {
    color: #fbbc04;
    font-size: 14px;
}

.review-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}
.footer-wrapper {
    background-color: #022072;
    position: relative;
}
.footer-header h5 {
    font-weight: 600;
    color: white;
}

.footer-links ul li a {
    font-size: small;
    color: white;
    text-decoration: none;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links i {
    color: #ffffff; /* Bootstrap primary color */
    font-size: 14px;
}

.footer-social-wrapper ul li a i {
    color: white;
    border: 1px solid rgb(103, 124, 247);
    padding: 14px 17px;
}

.nav-section {
    position: relative;
}

.hero-img-wrappper {
    width: 100% !important;
    height: 450px;
    background-size: cover;
    background-position: center;
    z-index: -2;
    margin-top: -150px;
    position: relative;
    overflow: hidden;
}
.hero-img-wrappper img {
    width: 100%;
    height: 450px; /* full screen height */
    object-fit: cover; /* prevents stretching */
    display: block;
}

.hero-header {
    margin-top: -150px;
}

.page {
    background-color: transparent;
}

.page-header h3 {
    font-weight: 800;
    color: white;
}

.nav-ul {
    background-color: #e9f6fa;
    border-radius: 5px;
    border-bottom: 1px solid grey;
}

.nav-ul li a {
    text-decoration: none;
    font-size: small;
    font-weight: 600;
    color: #000;
    border-bottom: 1px solid rgb(224, 223, 223);
}

.header h3 {
    font-weight: 800;
}

.text-justify {
    text-align: justify;
}
.summery p {
    font-size: small;
}

.heading {
    font-weight: 800;
    color: var(--dark-blue);
}

#searchOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(0, 85, 255, 0.95);
    overflow: hidden;
    transition: 0.4s;
    z-index: 9999;
}

#searchOverlay.active {
    height: 100%;
}

#searchOverlay .search-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#searchOverlay input {
    width: 300px;
    padding: 12px;
    border: none;
    border-radius: 5px;
    outline: none;
}

#closeSearch {
    background-color: transparent;
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

.contact-details i {
    padding: 5px 9px;
    background-color: var(--dark-blue);
    color: white;
    border-radius: 50%;
}

.contact-details span {
    background-color: white;
    color: #000;
}

/* Logo */
.nav-logo {
    width: 150px;
}

/* Nav Links */
.nav-link {
    font-weight: 500;
    color: #222 !important;
    transition: 0.3s;
}

.nav-link:hover {
    color: #0055ff !important;
}

.active-nav {
    color: #0055ff !important;
}

/* Hotline */
.hotline i {
    font-size: 24px;
    color: #fdfdfd;
}

/* Mobile Navbar */
@media (max-width: 991px) {
    .navbar-collapse {
        padding-top: 20px;
    }

    .nav-item {
        padding: 8px 0;
    }

    .nav-logo {
        width: 120px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .nav-logo {
        width: 100px;
    }

    #searchToggle {
        margin-right: 10px !important;
        padding-right: 10px !important;
    }

    .navbar-toggler i {
        font-size: 30px !important;
    }
}

.uni-card {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s ease;
    height: 100%;
    position: relative;
}

.uni-card:hover {
    box-shadow: rgba(7, 72, 116, 0.2) 0px 8px 24px;
    border: 1px solid rgb(17, 56, 231);
}

/* Rank Badge */
.rank-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #0d6efd, #4f8cff);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.25);
}


.filter-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-btn {
    border: none;
    background: #f4f6fb;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: .3s ease;
    color: #444;
}

.filter-btn:hover {
    background: #0d6efd;
    color: #fff;
}

.filter-btn.active {
    background: #0d6efd;
    color: #fff;
}

.apply-with-us{
    border: 1px solid rgb(221, 218, 218);
}

.form-floating .form-control{
    border-radius: 0;
}

.form-floating .form-control:focus{
    border: 1px solid var(--light-blue);
      box-shadow: none !important;
}

.submit-btn{
    background-color:#006eff;
    color: white;
    border: none;
    padding: 8px;
}

.back-to-top{
    position: absolute;
    right: 10px;
    top: -20px;
    padding: 5px 20px;

}

.back-to-top a {
    font-size: small;
    display: inline-block;
    padding: 10px 16px;
    background: #0d6efd;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: 0.3s;
}

.back-to-top a:hover {
    background: #0b5ed7;
}