/* =========================
   GLOBAL
========================= */

body {
    font-family: 'Roboto', sans-serif;
    color: #252B5B;
}
/* =========================
   GLOBAL HEADING
========================= */

.global-heading {
    font-family: 'Roboto', sans-serif;
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    color: #252B5B;
    margin: 0;
}

/* =========================
   STICKY HEADER
========================= */

/* =========================
   FIXED / STICKY HEADER
========================= */

.site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;

    width: 100% !important;

    z-index: 99999 !important;

    background: #ffffff !important;
}

.pt-100{
    padding-top: 100px !important;
}

.pb-100{
    padding-bottom: 100px !important;
}

/* =========================
   HEADER
========================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #dddde5;
}

.site-header .container {
    min-height: 90px;
}

.site-header .navbar {
    min-height: 90px;
}

.header-logo {
    width: 80px;
    height: auto;
    display: block;
}

.site-header .navbar-nav {
    gap: 28px;
}

.site-header .nav-link {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #252B5B;
    padding: 12px 0 !important;
    position: relative;
    transition: color 0.3s ease;
}

/* Red underline - hidden by default */
.site-header .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: #c5282d;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

/* Hover */
.site-header .nav-link:hover {
    color: #c5282d;
}

.site-header .nav-link:hover::after {
    transform: scaleX(1);
}

/* Active menu */
.site-header .nav-link.active {
    color: #c5282d;
}

.site-header .nav-link.active::after {
    transform: scaleX(1);
}
/* =========================
   HEADER RESPONSIVE
========================= */

@media (max-width: 991.98px) {

    .site-header .container,
    .site-header .navbar {
        min-height: 75px;
    }
     .site-header .navbar {
        padding-top: 12px !important;
    }

    .header-logo {
    width: 90px;
}

    .site-header .navbar-nav {
        gap: 0;
        padding: 15px 0;
    }

    .site-header .nav-link {
        padding: 10px 0 !important;
    }

       .site-header .nav-link::after {
        width: 100%;
        left: 0;
        right: auto;
    }

    .site-header .nav-link {
        display: inline-block;
    }

}


/* =========================
   GLOBAL DESCRIPTION
========================= */

.global-description {
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.55;
    color: #252B5B;
    margin: 0;
}


/* =========================
   GLOBAL BUTTON
========================= */

.global-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;
    min-height: 62px;

    padding: 12px 30px;

    background: #c5282d;
    color: #ffffff;

    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;

    border-radius: 50px;

    transition: all 0.3s ease;
}

.global-button:hover {
    background: #252B5B;
    color: #ffffff;
    transform: scale(1.2);
}


/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    background: #dfe0e8;
}

.hero-row {
    min-height: 700px;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding-left: 45px;
}

.hero-heading {
    margin-bottom: 22px;
}

.hero-description {
    max-width: 450px;
    margin-bottom: 25px;
}


/* =========================
   HERO IMAGE
========================= */

.hero-image-col {
    position: relative;
    z-index: 2;
    height: 700px;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


/* =========================
   BACKGROUND CIRCLES
========================= */

.hero-circle {
    position: absolute;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
}

.hero-circle-1 {
    width: 78%;
    background: #c5c6d2;
    right: 5%;
    top: 13%;
}

.hero-circle-2 {
    width: 67%;
    background: #999db5;
    right: 11%;
    top: 18%;
}

.hero-circle-3 {
    width: 56%;
    background: #252b5b;
    right: 17%;
    top: 23%;
}


/* =========================
   HERO STUDENT
========================= */

.hero-student {
    position: relative;
    z-index: 4;

    width: auto;
    height: 90%;
    max-width: 100%;

    object-fit: contain;
    object-position: bottom center;
}


/* =========================
   LEFT BLUE LINES
========================= */

.hero-lines {
    position: absolute;
    width: 150px;
    height: 150px;
    left: 14%;
    top: 52%;
    border-radius: 50%;
    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 6px,
        rgba(151, 190, 241, 0.55) 7px,
        rgba(151, 190, 241, 0.55) 9px
    );
    opacity: 0.7;
    transform: rotate(10deg);
    animation: heroFloatLeft 5s ease-in-out infinite;
}


/* =========================
   TOP RIGHT DOTS
========================= */

.hero-dots {
    position: absolute;
    width: 155px;
    height: 155px;
    top: 25px;
    right: 9%;
    background-image: radial-gradient(
        rgba(126, 166, 224, 0.65) 1.5px,
        transparent 1.5px
    );
    background-size: 15px 15px;
    opacity: 0.8;
    animation: heroFloatDots 6s ease-in-out infinite;
}


/* =========================
   FLOAT ANIMATIONS
========================= */

@keyframes heroFloatLeft {

    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(360deg);
    }

}

@keyframes heroFloatDots {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-30px);
    }

}


/* =========================
   HERO RESPONSIVE
========================= */

@media (max-width: 1199.98px) {

    .hero-row {
        min-height: 620px;
    }

    .hero-image-col {
        height: 620px;
    }

    .hero-content {
        padding-left: 25px;
    }

    .hero-heading {
        font-size: 52px;
    }

    .hero-dots {
        right: 3%;
    }

    .hero-lines {
        left: 8%;
    }

}


/* TABLET */

@media (max-width: 991.98px) {

    .hero-section {
        padding: 70px 0 0;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-content {
        padding: 0 30px;
        text-align: center;
    }

    .hero-heading {
        font-size: 48px;
    }

    .hero-description {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-col {
        height: 550px;
        margin-top: 30px;
    }

    .hero-student {
        height: 100%;
    }

    .hero-circle-1 {
        width: 70%;
        right: 15%;
    }

    .hero-circle-2 {
        width: 60%;
        right: 20%;
    }

    .hero-circle-3 {
        width: 50%;
        right: 25%;
    }

    .hero-lines {
        left: 5%;
        top: 35%;
    }

    .hero-dots {
        right: 3%;
        top: 20px;
    }

}


/* MOBILE */

@media (max-width: 575.98px) {

    .hero-section {
        padding-top: 50px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-heading {
        font-size: 36px;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .global-description {
        font-size: 15px;
        line-height: 1.5;
    }

    .global-button {
        min-width: 160px;
        min-height: 54px;
        font-size: 14px;
    }

    .hero-image-col {
        height: 430px;
        margin-top: 25px;
    }

    .hero-circle-1 {
        width: 85%;
        right: 7.5%;
        top: 10%;
    }

    .hero-circle-2 {
        width: 73%;
        right: 13.5%;
        top: 16%;
    }

    .hero-circle-3 {
        width: 61%;
        right: 19.5%;
        top: 22%;
    }

    .hero-student {
        width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: contain;
    }

    .hero-lines {
        width: 75px;
        height: 95px;
        left: 2%;
        top: 38%;
    }

    .hero-dots {
        width: 90px;
        height: 110px;
        right: 2%;
        top: 10px;
        background-size: 10px 10px;
    }

}

/* =========================
   GLOBAL SUBHEADING
========================= */

.global-subheading {
    display: flex;
    align-items: center;
    gap: 8px;

    font-family: 'Roboto', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #c5282d;
    margin-bottom: 18px;
}

.global-subheading span {
    width: 48px;
    height: 1px;
    background: #c5282d;
}


/* =========================
   CERTIFICATION SECTION
========================= */

.certification-section {
    background: #ffffff;
    padding: 35px 0 125px;
}

.certification-logo {
    display: inline-block;
    object-fit: contain;
}

.british-logo {
    width: 295px;
}

.icef-logo {
    width: 180px;
}


/* =========================
   ABOUT SECTION
========================= */

.about-section {
    position: relative;
    background: #ffffff;
    padding: 0 0 100px;
}


.about-heading {
    font-size: 42px;
    margin-bottom: 20px;
}

.about-description {
    font-size: 15px;
    line-height: 1.55;
    text-align: justify;
}

.about-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 560px;
    height: auto;
    display: block;
}

/* =========================
   ABOUT FLOATING ELEMENTS
========================= */

/* TOP RIGHT DOTS */

.about-dots {
    position: absolute;
    width: 155px;
    height: 120px;
    top: 15px;
    right: 2%;

    background-image: radial-gradient(
        #9bbcf0 1.5px,
        transparent 1.5px
    );

    background-size: 13px 13px;

    animation: aboutDotsFloat 6s ease-in-out infinite;
    z-index: 0;
}


/* BOTTOM LEFT STRIPED CIRCLE */

.about-striped-circle {
    position: absolute;
    width: 145px;
    height: 145px;
    left: 15%;
    bottom: 70px;
    border-radius: 50%;
    background: repeating-linear-gradient(
        135deg,
        transparent 0,
        transparent 7px,
        rgba(151, 190, 241, 0.55) 8px,
        rgba(151, 190, 241, 0.55) 10px
    );
    animation: aboutCircleFloat 6s ease-in-out infinite;
    z-index: 0;
}


/* =========================
   ABOUT FLOAT ANIMATIONS
========================= */

@keyframes aboutDotsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes aboutCircleFloat {

    0%,
    100% {
        transform: translateX(0) rotate(0deg);
    }

    50% {
        transform: translateX(-30px) rotate(360deg);
    }
}
@media (max-width: 575.98px) {

    .about-dots {
        width: 90px;
        height: 80px;
        background-size: 10px 10px;
    }

    .about-striped-circle {
        width: 95px;
        height: 95px;
    }

}


/* =========================
   ABOUT RESPONSIVE
========================= */

@media (max-width: 1199.98px) {

    .certification-section {
        padding-bottom: 90px;
    }


    .about-heading {
        font-size: 38px;
    }

}


@media (max-width: 991.98px) {

    .certification-section {
        padding: 40px 0 70px;
    }

    .certification-logo {
        margin: 10px auto;
    }

    .about-section {
        padding-bottom: 70px;
    }

    .about-content {
    text-align: start;
    margin-bottom: 40px;
}

    .global-subheading {
        justify-content: center;
    }

    .about-heading {
        font-size: 40px;
    }

    .about-description {
        margin-left: auto;
        margin-right: auto;
    }

}


@media (max-width: 575.98px) {

    .certification-section {
        padding: 30px 0 55px;
    }

    .british-logo {
        width: 230px;
    }

    .icef-logo {
        width: 145px;
    }
    .about-heading {
        font-size: 32px;
        line-height: 1.15;
    }

    .about-description {
        font-size: 14px;
    }


}

/* =========================================
   CAMPUS LIFE SECTION
========================================= */

.campus-section {
    width: 100%;
    background: #252B5B;
}


/* =========================================
   LEFT IMAGE COLUMN
========================================= */

.campus-image-col {
    position: relative;
}


/* IMAGE WRAPPER
   Parent content de according height lavega */
.campus-image-wrap {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    overflow: hidden;
}


/* IMAGE
   Div de andar completely fit hovegi */
.campus-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}


/* =========================================
   PLAY BUTTON
========================================= */

.campus-play-btn {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 78px;
    height: 78px;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    background: #C5282D;
    color: #FFFFFF;

    border-radius: 50%;

    text-decoration: none;

    z-index: 5;

    transition: all 0.3s ease;
}


.campus-play-btn i {
    font-size: 40px;
    line-height: 1;

    margin-left: 5px;
}


.campus-play-btn:hover {
    background: #FFFFFF;
    color: #C5282D;

    transform: translate(-50%, -50%) scale(1.08);
}


/* =========================================
   RIGHT CONTENT
========================================= */

.campus-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 65px 8%;
}


/* SMALL RED LABEL */

.campus-subheading {
    margin-bottom: 18px;
}


/* HEADING */

.campus-heading {
    color: #FFFFFF;

    font-size: 42px;
    line-height: 1.15;

    margin-bottom: 18px;
}


/* DESCRIPTION */

.campus-description {
    max-width: 700px;

    color: #FFFFFF;

    font-size: 16px;
    line-height: 1.6;

    margin-bottom: 30px;
}


/* BUTTON */

.campus-content .global-button {
    align-self: flex-start;
}


/* =========================================
   LARGE SCREEN
========================================= */

@media (max-width: 1399.98px) {

    .campus-content {
        padding: 55px 7%;
    }

    .campus-heading {
        font-size: 38px;
    }

    .campus-description {
        font-size: 15px;
        line-height: 1.55;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    /*
       Desktop absolute image remove.
       Image normal flow ch aa jaavegi.
    */

    .campus-image-col {
        position: relative;
    }


    .campus-image-wrap {
        position: relative;
        inset: auto;

        width: 100%;
        height: auto;

        overflow: hidden;
    }


    .campus-image {
        width: 100%;
        height: auto;

        display: block;

        object-fit: initial;
    }


    .campus-content {
        padding: 60px 40px;
    }


    .campus-heading {
        font-size: 40px;
    }


    .campus-description {
        max-width: 850px;

        font-size: 16px;
        line-height: 1.6;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .campus-content {
        padding: 45px 25px;
    }


    .campus-heading {
        font-size: 32px;
        line-height: 1.15;
    }


    .campus-description {
        font-size: 14px;
        line-height: 1.55;

        margin-bottom: 25px;
    }


    .campus-play-btn {
        width: 65px;
        height: 65px;
    }


    .campus-play-btn i {
        font-size: 34px;
    }

}

/* =========================================
   SERVICES SECTION
========================================= */

.services-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    padding: 70px 0 150px;
}


/* =========================================
   STATIC CITY BACKGROUND
========================================= */

.services-city-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 310px;
    background-image: url("images/service-bg.png");
    background-repeat: repeat;
    background-position: center bottom;
    opacity: 0.22;
    z-index: 0;
}

/* =========================================
   CONTENT ABOVE BACKGROUND
========================================= */

.services-section .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   HEADING
========================================= */

.services-heading {
    margin-bottom: 25px;
}

.services-heading .global-subheading {
    margin-bottom: 12px;
}

.services-title {
    font-size: 32px;
    margin-bottom: 0;
}


/* =========================================
   SERVICE GRID
========================================= */



/* =========================================
   SERVICE CARD
========================================= */

.service-card {
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    padding: 20px 24px 22px;

    background: #ffffff;

    border: 1px solid #d5d5d5;
    border-radius: 6px;

    transition: all 0.3s ease;
}

.service-card .service-icon {
    transition: transform 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}


/* ACTIVE CARD */

.service-card-active {
    background: #252B5B;
    border-color: #252B5B;
    color: #ffffff;
}


/* =========================================
   SERVICE ICON
========================================= */

.service-icon {
    width: 62px;
    height: 62px;

    object-fit: contain;

    margin-bottom: 10px;
}


/* =========================================
   SERVICE TITLE
========================================= */

.service-title {
    margin: 0 0 10px;

    font-family: 'Roboto', sans-serif;

    font-size: 20px;
    line-height: 1.2;

    font-weight: 500;

    color: #10245c;
}


/* ACTIVE TITLE */

.service-card-active .service-title {
    color: #ffffff;
}


/* =========================================
   SERVICE DESCRIPTION
========================================= */

.service-description {
    margin: 0;

    max-width: 260px;

    font-family: 'Roboto', sans-serif;

    font-size: 11px;
    line-height: 1.5;

    color: #26376b;
}


/* ACTIVE DESCRIPTION */

.service-card-active .service-description {
    color: #ffffff;
}


/* =========================================
   READ MORE
========================================= */

.services-button-wrap {
    position: relative;
    z-index: 3;

    margin-top: 30px;
}


/* =========================================
   FLOATING DECORATIVE ELEMENTS
========================================= */

.service-float {
    position: absolute;

    width: 55px;
    height: 55px;

    object-fit: contain;

    opacity: 0.45;

    z-index: 1;

    animation: serviceFloat 6s ease-in-out infinite;
}


/* TOP LEFT */

.service-float-plane {
    top: 45px;
    left: 31%;

    width: 55px;

    animation: squarePath 8s linear infinite;
}


/* TOP RIGHT */

.service-float-paper {
    top: 45px;
    right: 27%;

    width: 55px;

    animation-delay: 1s;
}


/* LEFT MIDDLE */

.service-float-document {
    bottom: 15%;
    left: 20%;

    width: 50px;

    animation-delay: 2s;
}


/* RIGHT MIDDLE */

.service-float-travel {
    bottom: 15%;
    right: 20%;
    width: 55px;

    animation: rotate360 6s linear infinite;
}


/* =========================================
   FLOAT ANIMATION
========================================= */

@keyframes serviceFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-12px) rotate(3deg);
    }
}

@keyframes squarePath {

    0% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(70px, 0) rotate(90deg);
    }

    50% {
        transform: translate(70px, 70px) rotate(180deg);
    }

    75% {
        transform: translate(0, 70px) rotate(270deg);
    }

    100% {
        transform: translate(0, 0) rotate(360deg);
    }

}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1440px){
    .service-float-document {
    left: 10%;
}
.service-float-travel {
     right: 10%;
}
}

@media (max-width: 1199.98px) {

    .services-section {
        padding: 60px 0 120px;
    }

    .service-float-plane {
        left: 20%;
    }

    .service-float-paper {
        right: 18%;
    }

    .service-float-document {
        left: 8%;
    }

    .service-float-travel {
        right: 8%;
    }

}


@media (max-width: 991.98px) {

    .services-section {
        padding: 55px 0 110px;
    }

    .services-grid {
        max-width: 720px;
    }

    .service-card {
        padding: 22px 20px;
    }

    .service-float {
        opacity: 0.3;
    }

    .service-float-document {
        left: 4%;
    }

    .service-float-travel {
        right: 4%;
    }

}


@media (max-width: 767.98px) {

    .services-section {
        padding: 50px 15px 100px;
    }

    .services-title {
        font-size: 30px;
    }

    .services-grid {
        max-width: 500px;
    }

    .service-card {
        padding: 25px 25px;
    }

    .service-description {
        max-width: 400px;
        font-size: 12px;
    }

    .service-float {
        display: none;
    }

    .services-city-bg {
        height: 130px;
    }

}


@media (max-width: 575.98px) {

    .services-section {
        padding: 45px 10px 90px;
    }

    .services-title {
        font-size: 28px;
    }

    .service-title {
        font-size: 19px;
    }

    .service-icon {
        width: 58px;
        height: 58px;
    }

    .services-button-wrap {
        margin-top: 25px;
    }

}

/* =========================================
   TESTIMONIAL SECTION
========================================= */

.testimonial-section {
    position: relative;
    overflow: hidden;

    background-color: #252b5b;
    background-image: url("images/tesimonial-overlay.png");
    background-repeat: repeat;
    background-position: center;

    padding: 65px 0 80px;

    color: #ffffff;
}


/* =========================================
   HEADING
========================================= */

.testimonial-heading {
    margin-bottom: 32px;
}

.testimonial-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    margin-bottom: 10px;

    font-size: 11px;
    font-weight: 500;
    color: #ffffff;
}

.testimonial-subheading span {
    display: inline-block;

    width: 42px;
    height: 1px;

    background: #ffffff;
}

.testimonial-title {
    margin: 0;

    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    line-height: 1.2;
    font-weight: 700;

    color: #ffffff;
}


/* =========================================
   CAROUSEL
========================================= */

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    position: relative;
    min-height: 170px;
    height: auto;
    background: #ffffff;
    padding: 16px 20px;
    color: #222222;
    overflow: visible;
    transition: height 0.3s ease;
}

.testimonial-text {
    margin-top: 7px;

    font-size: 10px;
    line-height: 1.45;

    color: #222222;

    overflow: visible;
}


/* =========================================
   USER
========================================= */

.testimonial-user {
    display: flex;
    align-items: center;

    position: relative;
}

.testimonial-avatar {
    flex: 0 0 28px;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #8dc6d4;

    color: #ffffff;

    font-size: 11px;
    font-weight: 600;

    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.testimonial-avatar-orange {
    background: #f28c18;
}

.testimonial-avatar-purple {
    background: #8d63d2;
}

.testimonial-user-info {
    margin-left: 8px;
}

.testimonial-user-info h4 {
    margin: 0 0 1px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
    color: #222222;
}

.testimonial-user-info span {
    display: block;
    font-size: 10px;
    color: #888888;
}


/* =========================================
   GOOGLE ICON
========================================= */

.google-icon {
    margin-left: auto;

    font-family: Arial, sans-serif;
    font-size: 17px;
    font-weight: 700;

    color: #4285f4;
}


/* =========================================
   STARS
========================================= */

.testimonial-stars {
    margin-top: 8px;

    font-size: 14px;
    line-height: 1;

    color: #f8b400;
    letter-spacing: -1px;
}


/* =========================================
   REVIEW TEXT
========================================= */

.testimonial-text {
    margin-top: 7px;

    font-size: 12px;
    line-height: 1.45;

    color: #222222;
}

.review-full {
    display: none;
}

.review-toggle {
    display: block;
    margin-top: 3px;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 10px;
    color: #777777;
    cursor: pointer;
}


/* =========================================
   ARROWS
========================================= */

.testimonial-arrow {
    position: absolute;

    top: 50%;

    width: 30px;
    height: 40px;

    padding: 0;

    border: 0;
    background: transparent;

    color: #ffffff;

    transform: translateY(-50%);

    z-index: 5;
}

.testimonial-arrow span {
    font-size: 35px;
    font-weight: 300;
    line-height: 1;
}

.testimonial-prev {
    left: -38px;
}

.testimonial-next {
    right: -38px;
}


/* =========================================
   GOOGLE RATING
========================================= */

.google-rating {
    margin-top: 26px;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {

    .testimonial-section {
        padding: 55px 0 65px;
    }

    .testimonial-carousel {
        max-width: 680px;
    }

    .testimonial-prev {
        left: -20px;
    }

    .testimonial-next {
        right: -20px;
    }

}


@media (max-width: 767.98px) {

    .testimonial-section {
        padding: 50px 15px 60px;
    }

    .testimonial-title {
        font-size: 27px;
    }

    .testimonial-carousel {
        max-width: 360px;
    }

    .testimonial-card {
        height: auto;
        min-height: 155px;
    }

    .testimonial-prev {
        left: -18px;
    }

    .testimonial-next {
        right: -18px;
    }

}


@media (max-width: 575.98px) {

    .testimonial-section {
        padding: 45px 25px 55px;
    }

    .testimonial-title {
        font-size: 24px;
    }

    .testimonial-arrow {
        width: 20px;
    }

    .testimonial-prev {
        left: -15px;
    }

    .testimonial-next {
        right: -15px;
    }

}

/* =========================================
   MOBILE TESTIMONIAL FIX
   2 CARDS IN ONE ROW
========================================= */

@media (max-width: 767.98px) {

    .testimonial-section {
        padding: 50px 15px 60px;
    }

    .testimonial-carousel {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .testimonial-carousel .carousel-item .row {
        display: flex;
        flex-wrap: nowrap;
        margin-left: -6px;
        margin-right: -6px;
    }

    .testimonial-carousel .carousel-item .row > div {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
        padding-left: 6px;
        padding-right: 6px;
    }

    .testimonial-card {
        width: 100%;
        min-height: 165px;
        height: auto;
        padding: 13px 11px;
    }

    .testimonial-user-info h4 {
        font-size: 11px;
        line-height: 1.2;
    }

    .testimonial-user-info span {
        font-size: 8px;
    }

    .testimonial-avatar {
        width: 25px;
        height: 25px;
        flex: 0 0 25px;
        font-size: 9px;
    }

    .google-icon {
        font-size: 13px;
    }

    .testimonial-stars {
        margin-top: 6px;
        font-size: 11px;
    }

    .testimonial-text {
        font-size: 9px;
        line-height: 1.4;
    }

    .review-toggle {
        font-size: 8px;
    }

    .testimonial-prev {
        left: -18px;
    }

    .testimonial-next {
        right: -18px;
    }
}







/* =========================================
   SUCCESS STORIES
========================================= */

.success-section {
    position: relative;
    overflow: hidden;

    background: #ffffff;
}

.success-float-circle {
    position: absolute;
    width: 95px;
    height: 95px;
    left: 10%;
    top: 80%;
    z-index: 6;
    pointer-events: none;
    animation: successOrbit 8s linear infinite,
        successRotate 3s linear infinite;
}


.success-float-circle img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}



/* Continuous 360° rotation */
@keyframes successRotate {

    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }

}


/* =========================================
   SLIDER
========================================= */

.success-slider {
    width: 100%;
}


/* =========================================
   MOVING TRACK
========================================= */

.success-track {
    width: max-content;

    gap: 18px !important;

    will-change: transform;
}


/* =========================================
   SUCCESS IMAGES
========================================= */

.success-track > div {
    width: 180px;
    flex: 0 0 180px;
}

.success-track img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: contain;
}


/* =========================================
   TOP ROW → LEFT
========================================= */

.success-track-left {
    animation: successMoveLeft 30s linear infinite;
}


/* =========================================
   BOTTOM ROW → RIGHT
========================================= */

.success-track-right {
    animation: successMoveRight 30s linear infinite;
}

.counselling-section:before {
    position: absolute;
    content: "";
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background-color: #252b5b;
    z-index: 1;
}

/* =========================================
   LEFT ANIMATION
========================================= */

@keyframes successMoveLeft {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }

}


/* =========================================
   RIGHT ANIMATION
========================================= */

@keyframes successMoveRight {

    from {
        transform: translateX(calc(-50% - 9px));
    }

    to {
        transform: translateX(0);
    }

}


/* =========================================
   PAUSE ON HOVER
========================================= */

.success-slider:hover .success-track {
    animation-play-state: paused;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .success-track > div {
        width: 160px;
        flex: 0 0 160px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .success-section {
        padding-top: 45px !important;
        padding-bottom: 45px !important;
    }

    .success-track {
        gap: 15px !important;
    }

    .success-track > div {
        width: 135px;
        flex: 0 0 135px;
    }

}

/* =========================================
   SUCCESS STORIES SLIDERS
========================================= */

.success-slider {
    width: 100%;
    overflow: hidden;
}

.success-track {
    width: max-content;
    display: flex;
    align-items: flex-start;
    gap: 18px !important;
}


/* IMAGE SIZE */

.success-track > div {
    flex: 0 0 180px;
    width: 180px;
}

.success-track img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================
   FIRST ROW → LEFT
========================================= */

.success-track-left {
    animation: successLeft 25s linear infinite;
}


/* =========================================
   SECOND ROW → RIGHT
========================================= */

.success-track-right {
    animation: successRight 25s linear infinite;
}

.success-title{
    font-size: 32px;
    margin-bottom: 0;
}


/* =========================================
   LEFT MOVEMENT
========================================= */

@keyframes successLeft {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================
   RIGHT MOVEMENT
========================================= */

@keyframes successRight {

    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }

}


/* PAUSE ON HOVER */

.success-slider:hover .success-track {
    animation-play-state: paused;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .success-track > div {
        flex-basis: 160px;
        width: 160px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 575.98px) {

    .success-track {
        gap: 15px !important;
    }

    .success-track > div {
        flex-basis: 135px;
        width: 135px;
    }

}

/* =========================================
   FOOTER AREA
========================================= */

.footer-area {
    position: relative;
}


/* =========================================
   COUNSELLING SECTION
========================================= */

.counselling-section {
    position: relative;
    background: #ffffff;

    /*
       Footer de upar counselling box overlap
       karan layi space
    */
    padding: 0 0 0;
    z-index: 10;
}


.counselling-box {
    position: relative;

    max-width: 900px;

    min-height: 315px;

    margin-top: -25px;

    background: #ffffff;

    border-radius: 20px;

    box-shadow: 0 5px 28px rgba(0, 0, 0, 0.12);

    overflow: hidden;

    z-index: 20;
}


/* =========================================
   LEFT IMAGE
========================================= */

.counselling-left {
    position: relative;

    min-height: 315px;

    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.counselling-woman {
    display: block;

    width: 100%;
    max-width: 390px;

    height: auto;

    object-fit: contain;
}


/* =========================================
   RIGHT SIDE
========================================= */

.counselling-right {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 28px 28px 25px;
}


.counselling-heading {
    margin: 0 0 10px;

    color: #252B5B;

    font-family: 'Roboto', sans-serif;

    font-size: 22px;

    line-height: 1.05;

    font-weight: 900;
}


.counselling-description {
    margin-bottom: 12px;

    font-size: 12px;

    line-height: 1.45;
}


/* =========================================
   INPUTS
========================================= */

.counselling-input {
    height: 31px;

    padding: 5px 10px;

    border: 1px solid #8d94a5;

    border-radius: 3px;

    color: #252B5B;

    font-family: 'Roboto', sans-serif;

    font-size: 11px;

    box-shadow: none !important;
}


.counselling-input:focus {
    border-color: #252B5B;

    box-shadow: none !important;
}


.counselling-input::placeholder {
    color: #7b8292;
}


/* =========================================
   SEND BUTTON
========================================= */

.counselling-button {
    min-width: 122px;

    min-height: 40px;

    margin-top: 4px;

    padding: 8px 18px;

    border-radius: 4px;

    font-size: 12px;
}


/* =========================================
   FOOTER
========================================= */

.site-footer {
    position: relative;

    margin-top: -78px;

    padding-top: 145px;

    background: #252B5B;

    color: #ffffff;

    z-index: 1;
}


/* =========================================
   FOOTER MAIN
========================================= */

.footer-main {
    padding-bottom: 30px;
}


/* =========================================
   LEFT COLUMN
========================================= */

.footer-about {
    padding-right: 60px;
}


.footer-logo {
    display: block;
    width: 90px;
    height: auto;
    margin-bottom: 18px;
}


.footer-description {
    max-width: 400px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
}


.footer-title {
    margin: 18px 0 12px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: 500;
}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 18px;
}


.footer-social a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    color: #ffffff;

    font-size: 19px;

    text-decoration: none;

    transition: all 0.3s ease;
}


.footer-social a:hover {
    color: #c5282d;

    transform: translateY(-2px);
}


/* =========================================
   INDIA OFFICE
========================================= */

.footer-office {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 25px;
}


.footer-india-img {
    width: 43px;

    height: 43px;

    flex: 0 0 43px;

    overflow: hidden;

    border-radius: 50%;
}


.footer-india-img img {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;
}


.footer-office-title {
    margin: 0;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 500;
}


/* =========================================
   CONTACT ITEMS
========================================= */

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 19px;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}


.footer-contact-item i {
    width: 18px;

    flex: 0 0 18px;

    margin-top: 2px;

    color: #c5282d;

    font-size: 16px;

    text-align: center;
}


.footer-contact-item strong {
    font-weight: 700;
}


/* =========================================
   LICENSE
========================================= */

.footer-license {
    padding: 5px 0 65px;

    color: #ffffff;

    text-align: center;

    font-family: 'Roboto', sans-serif;

    font-size: 15px;
}


/* =========================================
   COPYRIGHT
========================================= */

.footer-bottom {
    width: 100%;

    padding: 14px 15px;

    background: #c5282d;

    color: #ffffff;

    text-align: center;

    font-family: 'Roboto', sans-serif;

    font-size: 11px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991.98px) {

    .counselling-box {
        max-width: 750px;
    }

    .counselling-right {
        padding: 25px;
    }

    .footer-about {
        padding-right: 30px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .counselling-box {
        margin-top: -20px;

        margin-left: 15px;
        margin-right: 15px;

        border-radius: 15px;
    }


    .counselling-left {
        min-height: auto;
    }


    .counselling-woman {
        width: 75%;

        max-width: 300px;
    }


    .counselling-right {
        padding: 25px 20px 30px;
    }


    .counselling-heading {
        font-size: 20px;
    }


    .site-footer {
        margin-top: -45px;

        padding-top: 90px;
    }


    .footer-about {
        padding-right: 15px;

        margin-bottom: 40px;
    }


    .footer-contact-item {
        font-size: 11px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575.98px) {

    .counselling-box {
        margin-left: 10px;
        margin-right: 10px;
    }


    .counselling-woman {
        width: 85%;
    }


    .counselling-heading {
        font-size: 19px;
    }


    .footer-logo {
    width: 90px;
}

}

/* =========================================
   COUNSELLING FLOATING CIRCLE
========================================= */

.counselling-float-circle {
    position: absolute;

    width: 95px;
    height: 95px;

    right: 10%;
    top: 55%;

    z-index: 6;

    pointer-events: none;

    animation:
        counsellingOrbit 8s linear infinite,
        counsellingRotate 3s linear infinite;
}


.counselling-float-circle img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


/* Square/orbit movement */
@keyframes counsellingOrbit {

    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-55px, 0);
    }

    50% {
        transform: translate(-55px, 55px);
    }

    75% {
        transform: translate(0, 55px);
    }

    100% {
        transform: translate(0, 0);
    }

}


/* Continuous 360° rotation */
@keyframes counsellingRotate {

    from {
        rotate: 0deg;
    }

    to {
        rotate: 360deg;
    }

}

/* =========================================
   ABOUT PAGE BANNER
========================================= */

.other-page-banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-image: url("images/hero-7CAN.jpg");
    background-size: cover;
    background-position: 50% 40%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}


/* DARK BLUE OVERLAY */
.other-banner-overlay {
    position: absolute;
    inset: 0;
    background: #252b5bb5;
    z-index: 1;
}


/* CONTENT */
.other-page-banner .container {
    position: relative;
    z-index: 2;
}


/* TITLE */
.other-banner-content {
    display: flex;
    align-items: center;
    min-height: 258px;
}


.other-banner-title {
    margin: 0;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 900;
    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .other-page-banner {
        min-height: 220px;
    }

    .other-banner-content {
    min-height: 390px;
}

    .other-banner-title {
        font-size: 32px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .other-page-banner {
        min-height: 180px;

        background-position: center center;
    }

    .other-banner-content {
        min-height: 180px;
    }

    .other-banner-title {
        font-size: 28px;
    }

}


/* SMALL MOBILE */
@media (max-width: 575px) {

    .other-page-banner {
        min-height: 160px;
    }

    .other-banner-content {
    min-height: 300px;
}
    .other-banner-title {
        font-size: 26px;
    }

}

/* =====================================
   COUNTRIES SECTION
===================================== */

.countries-section {
    padding: 60px 0;
}

.country-card {
    border: 1px solid #d6d6d6;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 25px;
    background: #fff;
    max-width: 1200px;
}


/* IMAGE */

.country-image {
    width: 100%;
    max-height: 380px;
    overflow: hidden;
}

.country-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* CONTENT */

.country-content {
    padding: 0 15px;
}

.country-content h2 {
    color: #202a5b;
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 12px;
}

.country-content p {
    color: #4d5a7a;
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 10px;
    font-weight: 300;
}

.country-content ul {
    margin: 10px 0;
    padding-left: 25px;
}

.country-content li {
    color: #4d5a7a;
    font-size: 16px;
    line-height: 1.55;
}


/* AUSTRALIA TEXT ALIGNMENT
   Screenshot vich text right aligned aa */

.australia-content {
    text-align: right;
}

.australia-content ul {
    list-style-position: inside;
    padding-left: 0;
}


/* =====================================
   HOVER
===================================== */

.country-card {
    transition: all 0.3s ease;
}

.country-card:hover {
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

.country-image img {
    transition: transform 0.4s ease;
}

.country-card:hover .country-image img {
    transform: scale(1.03);
}


/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

    .countries-section {
        padding: 40px 0;
    }

    .country-card {
        padding: 15px;
    }

    .country-image {
        height: 230px;
        margin-bottom: 15px;
    }

    .country-content {
        padding: 5px 0;
    }

    .country-content h2 {
        font-size: 23px;
    }

    .country-content p,
    .country-content li {
        font-size: 13px;
    }

    .australia-content {
        text-align: left;
    }

}

/* =========================
   LATEST NEWS
========================= */

.latest-news-section {
    background: #fff;
}

.latest-news-card {
    height: 100%;
    background: #fff;
}

.latest-news-img {
    width: 100%;
    overflow: hidden;
}

.latest-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

/* Image hover */
.latest-news-card:hover .latest-news-img img {
    transform: scale(1.05);
}

.latest-news-content {
    padding-top: 14px;
}

.latest-news-title {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 700;
    color: #18245b;
    margin-bottom: 10px;
}

.latest-news-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5c6b91;
    margin-bottom: 8px;
}

.latest-news-link {
    display: inline-block;
    color: #c5242b;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.latest-news-link:hover {
    color: #18245b;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {
    position: relative;
    padding: 70px 0 80px;
    background: #ffffff;
    overflow: hidden;
}


/* DECORATIVE DOTS */

.contact-dots {
    position: absolute;
    top: 30px;
    right: 27%;
    width: 105px;
    height: 105px;

    background-image: radial-gradient(
        #c8d9ff 1.5px,
        transparent 1.5px
    );

    background-size: 9px 9px;

    opacity: 0.7;
}


/* HEADING */

.contact-heading-wrap {
    margin-bottom: 35px;
}

.contact-heading-wrap .global-heading {
    margin-bottom: 0;
}


/* CONTACT ROW */

.contact-info-row {
    max-width: 780px;
    margin: 0 auto;
}


/* CONTACT ITEM */

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
}


/* ICON */

.contact-icon {
    flex: 0 0 38px;
    width: 38px;
    font-size: 26px;
    line-height: 1;
    color: #c3262d;
    text-align: center;
}


/* CONTENT */

.contact-content {
    padding-top: 0;
}

.contact-content h3 {
    margin: 0 0 3px;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
    color: #17235c;
}

.contact-content p {
    margin: 0;
    font-size: 11px;
    line-height: 1.5;
    color: #17235c;
}


/* MOBILE */

@media (max-width: 991px) {

    .contact-info-row {
        max-width: 650px;
    }

    .contact-dots {

        display: none;
    }

}



@media (max-width: 767px) {

    .contact-section {
        padding: 55px 0 60px;
    }

    .contact-info-row {
        max-width: 100%;
    }

    .contact-item {
        margin-bottom: 25px;
    }

    .contact-dots {
        width: 80px;
        height: 80px;
        right: 15px;
        top: 20px;
    }

}

.contact-dots {
    position: absolute;
    width: 155px;
    height: 155px;
    top: 25px;
    right: 9%;
    background-image: radial-gradient(
        rgba(126, 166, 224, 0.65) 1.5px,
        transparent 1.5px
    );
    background-size: 15px 15px;
    opacity: 0.8;
    animation: contactFloatDots 6s ease-in-out infinite;
}

@keyframes contactFloatDots {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-30px);
    }

}




