/* 1. Global Style */
@import url("animate.css-4.1.1/animate.min.css");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600;800&family=Rubik:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Hind:wght@200;300;400;500;600&display=swap");
@import url(https://fonts.googleapis.com/css?family=Raleway:400,600,700|Roboto:400,500,700);
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Prata&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
@import url("https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");


body {
    font-family: "Poppins", sans-serif !important;
    font-size: 14px;
    line-height: 1.4rem;
    color: var(--primary-nav);
    background-color: #ffffff;
    overflow-x: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    font-size: 16px;
}

:root {
    --black: black;
    --light-gray: #f5f5f7;
    --deep-gray: #6c757d;
    --primary-nav: #1b2a4a;
    --sec-nav: #0a1a2f;
    --accent-red: #e6332a;
    --hover-red: #a22c26;
    --white: #ffffff;
    --white-two: #fafafa;
    --support-blue: #284073;
    --support-blue-op: rgb(104, 201, 239);
    --dark-text: #1a1a1a;
    --yello-color: #f57c00;
    --yello-color-hover: #c96500;
    --danger: #e63946;
    --gradient-one: #0a1a2f, #1e3a8a, #0a1a2f;
    --gradient-two: #0c1d38, #1c3781;
    --gradient-three: #e6332a, #f57c00;
    --gradient-blue: var(--primary-nav), var(--support-blue);
    --gradient-red: var(--accent-red), var(--hover-red);
    --gradient-orange: var(--yello-color), var(--accent-red);
    --green: #16a34a;
    --dark-green: #166534;
    --gradient-green: var(--green), var(--dark-green);
    --blue: #2563eb;
    --purple: #7c3aed;
    --water-color: #14b8a6;
    --light-color: #bfdbfe;
    --dark-navy: #0a1a3a;

}

.form-control:active,
.form-select:active,
.form-control:focus,
.form-select:focus {
    box-shadow: none !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

/* Gradients */
.gradient-blue {
    background: linear-gradient(135deg, var(--gradient-blue)) !important;
}

.gradient-blue-white {
    background: linear-gradient(135deg,
            #0a1a3a,
            rgba(10, 26, 58, 0.8)) !important;
}

.gradient-red {
    background: linear-gradient(135deg, var(--gradient-red)) !important;
}

.gradient-orange {
    background: linear-gradient(135deg, var(--gradient-orange)) !important;
}

.gradient-blue-two {
    background: linear-gradient(135deg, var(--gradient-two)) !important;
}

.gradient-green {
    background: linear-gradient(135deg, var(--gradient-green)) !important;
}

.gradient-pink {
    background: linear-gradient(to bottom right, #fef2f2, #fdf2f8);
}

.gradient-sky-blue {
    background: linear-gradient(310deg, #dcebfe, #eef6ff);
}

.gradient-light-purple {
    background: linear-gradient(310deg, #f4e9ff, #faf5ff);
}

.gradient-creamy-yellow {
    background: linear-gradient(310deg, #ffedd5, #fff7ec);
}

.gradient-creamy-white {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.gradient-green-blue {
    background: linear-gradient(310deg, #ddfce7, #ddfce7);
}

.gradient-water {
    background: linear-gradient(310deg, #edf6ff, #edf6ff);
}

.gradient-creamy {
    background: linear-gradient(to bottom right, #e2f6f1, #ecfeff);
}

.gradient-dep-sky {
    background-image: linear-gradient(to bottom right, #2563eb, #1e40af);
}

/* icon */
.icon-red {
    background: rgba(230, 51, 42, 0.1);
    color: var(--accent-red);
}

.icon-warning {
    background: #fef9c3;
    color: var(--yello-color-hover);
}

.icon-orange {
    background: rgba(245, 124, 0, 0.1);
    color: var(--yello-color);
}

.icon-blue {
    color: var(--blue);
    background: rgba(37, 99, 235, 0.1);
}

.icon-green {
    color: var(--green);
    background: rgba(22, 163, 74, 0.1);
}

.icon-navy {
    color: var(--primary-nav);
    background-color: rgba(10, 26, 47, 0.1);
}

.icon-purple {
    color: var(--purple);
    background: rgba(124, 58, 237, 0.1);
}

/* Background */
.bg-lightgray {
    background-color: #f9fafb !important;
}

.bg-water {
    background-color: var(--water-color);
}

.bg_navy {
    background-color: var(--primary-nav) !important;
}

.bg_dark_navy {
    background-color: var(--sec-nav) !important;
}

.bg-green {
    background-color: var(--green);
}

.bg-purple {
    background-color: var(--purple) !important;
}

.bg-danger {
    background-color: var(--accent-red) !important;
}

.bg-blue {
    background-color: var(--blue);
}

.bg-warning {
    background-color: var(--yello-color-hover) !important;
}

.bg-yellow {
    background-color: var(--yello-color) !important;
}

.bg-gray {
    background-color: var(--light-gray) !important;
}

.bg-pink {
    background-color: rgb(236 72 153);
}

/* text */
.text-purple {
    color: var(--purple);
}

.text-green {
    color: var(--green);
}

.text-primary {
    color: var(--primary-nav) !important;
}

.text-blue {
    color: var(--blue);
}

.text-red {
    color: var(--accent-red);
}

.text-danger {
    color: var(--danger);
}

.text-warning {
    color: var(--yello-color) !important;
}

.text-yellow {
    color: yellow !important;
}

.text-light {
    color: #dbeafe !important;
}

.text-gray {
    color: #d1d5dc !important;
}

a {
    color: var(--primary-nav);
    text-decoration: none !important;
}

.border-white {
    border-color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--primary-nav);
}

p {
    font-size: 16px !important;
    color: var(--color-02);
}

.form-control:focus {
    box-shadow: none;
}

.fs-sm {
    font-size: 16px !important;
}

.text-xs {
    font-size: 0.75rem !important;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem !important;
    line-height: 1.25rem;
}

.text-lg {
    font-size: 1.125rem !important;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem !important;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem !important;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem !important;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem !important;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem !important;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem !important;
    line-height: 1;
}

.text-xxl {
    font-size: 5rem;
    line-height: 1;
}

@media (max-width: 767.98px) {
    .text-3xl {
        font-size: 1.7rem;
    }

    .text-4xl {
        font-size: 1.875rem !important;
    }

    .text-5xl {
        font-size: 2.25rem !important;
    }

    .text-6xl {
        font-size: 3rem !important;
    }
}

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

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.btn {
    font-weight: 500;
    border-radius: 0.5rem;
}

.btn:focus,
.btn:active {
    box-shadow: none !important;
}

.common-shadow {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.common-shadow:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.common-shadow-sm {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    transition: all 0.35s ease;
}

.common-shadow-sm:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.bg-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hover-shadow:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
    transition: box-shadow 0.3s ease;
}
.hover-shadow-sm:hover {
    box-shadow: 0 0.3rem 1rem rgba(0, 0, 0, 0.15) !important;
    transition: box-shadow 0.3s ease;
}

.card-glass {
    background-color: rgba(225, 225, 225, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px 30px;
    transition: background-color 0.35s ease, backdrop-filter 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-glass:hover {
    background-color: rgba(225, 225, 225, 0.2);
}

.btn-glass {
    background-color: rgba(225, 225, 225, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: var(--white) !important;
    transition: background-color 0.35s ease, backdrop-filter 0.35s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-glass:hover {
    background-color: rgba(225, 225, 225, 0.25);
}

.border-16 {
    border-radius: 16px !important;
}

.border-12 {
    border-radius: 12px !important;
}


.hover-border-red:hover {
    border-color: var(--accent-red);
}


/* ============================ */
/*      Component Style         */
/* ============================ */

.section_title {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary-nav);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--deep-gray);
}

.btn:active:focus {
    box-shadow: none;
}

.btn_one {
    color: var(--white);
    background-color: var(--accent-red);
    padding: 12px 16px;
}

.btn_one:hover {
    background-color: var(--hover-red);
    color: var(--white) !important;
}

.btn_two:hover {
    color: var(--accent-red);
}

.btn_border_one {
    background-color: var(--white);
    color: var(--primary-nav);
    border: 2px solid var(--primary-nav);
    padding: 12px 16px;
    font-weight: 600;
    transition: all ease-in 0.2s;
}

.btn_border_one:hover {
    background-color: var(--primary-nav);
    color: var(--white);
}

.btn_border_two {
    background-color: var(--yello-color);
    color: var(--white);
    border: 2px solid var(--yello-color);
    padding: 12px 16px;
    font-weight: 600;
    transition: all ease-in 0.2s;
}

.btn_border_two:hover {
    background-color: var(--yello-color);
    color: var(--white) !important;
}

.btn_submit {
    background: var(--yello-color);
    color: var(--white);
    border: 12px;
    padding: 12px 16px;
}

.btn_submit:hover {
    color: var(--white);
    background: var(--yello-color-hover);
}

.btn_outline_one {
    background-color: transparent;
    border: 2px solid var(--yello-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px 16px;
    color: var(--yello-color);
}

.btn_outline_one:hover {
    background-color: var(--yello-color);
    border-color: var(--yello-color);
    color: var(--white);
}

.btn-link {
    font-weight: 600;
    color: var(--accent-red);
    text-decoration: none;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: var(--hover-red);
}

.btn_four {
    border: 1px solid var(--white);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(50px);
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 18px;
}

.btn_four:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.35);
}

.btn_five {
    color: var(--black);
    background: var(--light-gray);
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all ease-in 0.2s;
}

.btn_five:hover {
    background-color: var(--primary-nav);
    color: var(--white);
}

.btn_six {
    background-color: var(--primary-nav);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid inherit;
}

.btn_six:hover {
    background-color: var(--support-blue);
    color: var(--white) !important;
}

.cta_btn_one {
    background-color: var(--white);
    color: var(--accent-red);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 1px solid inherit;
}

.cta_btn_one:hover {
    color: var(--accent-red) !important;
    background-color: var(--light-gray);
}

.cta_btn_two {
    background-color: var(--primary-nav);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--white);
}

.cta_btn_two:hover {
    color: var(--white);
    background-color: var(--support-blue);
}

.hover_bg_white:hover {
    background-color: var(--white);
    color: var(--accent-red) !important;
}

.btn_hover_under_line {
    position: relative;
}

.btn_hover_under_line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: var(--accent-red);
    transition: width 0.3s ease;
}

.btn_hover_under_line:hover::after {
    width: 100%;
}

.hover-text-red:hover {
    color: var(--accent-red) !important;
}

/* ============================ */
/*      Header Style         */
/* ============================ */

.header_top {
    background-color: var(--accent-red);
    padding: 6px;
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
}

.header_top p {
    margin: 0px;
}

.navbar-brand {
    width: 120px;
}

.navbar-toggler i {
    color: var(--black) !important;
    border: none;
}

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

.nav-item .nav-link {
    color: var(--black) !important;
    font-size: 16px;
    text-wrap: auto;
}

.nav-item .nav-link:hover {
    color: var(--yello-color) !important;
}

.dropdown .dropdown-menu .dropdown_heading {
    font-weight: 600;
}

.dropdown-menu ul li a:hover {
    color: var(--accent-red);
}

.dropdown-mega {
    position: relative;
}

.dropdown-mega .dropdown-menu {
    max-width: 1200px;
    width: 800px;
    /* padding: 2rem; */
    border-radius: 0.75rem;
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
    border: none;
}

.dropdown-mega .left-0 {
    left: 0;
}

.dropdown-mega .right-0 {
    transform: translateX(-50%);
    left: auto;
}

.dropdown-mega .dropdown-menu ul {
    padding-right: 36px;
}

.dropdown-mega .dropdown-menu .col ul li a,
.dropdown-mega .dropdown-menu ul li a {
    font-size: 16px;
    line-height: 25px;
}

@media (max-width: 767.98px) {
    .dropdown-mega .dropdown-menu {
        width: 300px;
    }

    .dropdown-mega .right-0 {
        transform: translateX(0%);
    }
}

.study_abroad .study_abroad-dropdown-menu {
    max-width: 1200px;
    width: 1170px !important;
    transform: translateX(-20%) !important;
    padding: 0px;
    border-radius: 12px !important;
}

.border_left {
    border-left: 1px solid rgba(128, 127, 127, 0.15);
}

.study_abroad .study_abroad-dropdown-menu .col {
    padding: 16px;
}

.study_abroad .study_abroad-dropdown-menu ul li {
    margin-bottom: 6px;
}

.study_abroad .study_abroad-dropdown-menu ul li,
.dropdown-menu ul li {
    transition: all ease-in 0.2s;
}

.dropdown-menu ul li:hover {
    transform: translateX(5px);
}

.dropdown-menu ul li {
    margin-top: 6px;
}

.study_abroad .study_abroad-dropdown-menu ul li a {
    font-size: 1rem !important;
    line-height: 1.75rem !important;
}

.study_abroad .study_abroad-dropdown-menu ul li #country_symble_text {
    font-size: 0.75rem !important;
}

.study_abroad .study_abroad-dropdown-menu .btn_border_one:hover {
    color: var(--white);
}

.info_header {
    background-color: var(--light-gray);
    padding: 8px;
    border-radius: 4px;
}

.lightbulb {
    color: var(--white);
    background-color: var(--yello-color);
    font-size: 1rem;
    width: 120px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

@media (max-width: 1028px) {
    .study_abroad .study_abroad-dropdown-menu {
        width: 600px !important;
        transform: translateX(0%) !important;
    }

    .study_abroad .study_abroad-dropdown-menu .grid {
        display: grid;
        grid-template-columns: repeat(2, auto);
    }

    .lightbulb {
        width: 50px;
    }
}

@media (max-width: 767.98px) {
    .study_abroad .study_abroad-dropdown-menu {
        width: 300px !important;
        transform: translateX(0%) !important;
    }

    .study_abroad .study_abroad-dropdown-menu .row {
        flex-direction: column;
    }

    .study_abroad .study_abroad-dropdown-menu .grid {
        display: grid;
        grid-template-columns: repeat(1, auto);
    }
}

@media (min-width: 1440px) {
    .study_abroad .study_abroad-dropdown-menu {
        max-width: 1400px;
        width: 1240px !important;
    }

    .dropdown-mega .dropdown-menu {
        width: 900px;
    }
}

/* ============================ */
/*      Home Style         */
/* ============================ */

#hero {
    background: #f9fafb;
}

.hero_title {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.25;
    font-family: "Poppins", sans-serif;
}

.hero_content {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.hero-form-card {
    border-radius: 1rem;
    background-color: var(--white);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
        0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.hero-form-card .title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
}

/* ============================ */
/*      Test Chips Style         */
/* ============================ */


#test-chips .chip_item {
    font-size: 1.1rem;
    line-height: 1.25rem;
    font-weight: 600;
    background: #ffffff;
    color: var(--black);
    padding: 8px 24px;
    border-radius: 8px;
    border: 1px solid #d1d1d1;
}

#test-chips .chip_item:hover {
    background: #272463;
    color: white;
}

/* ============================ */
/*      Trust Metrics Style      */
/* ============================ */

.trust-metrics-section {
    background-color: var(--light-gray);
}

.trust-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.trust-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.trust-icon {
    font-size: 42px;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.trust-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-nav);
    margin-bottom: 10px;
}

.trust-text {
    font-size: 16px;
    color: var(--deep-gray);
    margin: 0;
}

/* ============================ */
/*     Services Section Style         */
/* ============================ */

.services-section {
    background-color: var(--white);
}

.service-card {
    background-color: var(--light-gray);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 25px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-nav);
    margin-bottom: 15px;
}

.service-text {
    font-size: 1rem;
    color: var(--deep-gray);
    margin-bottom: 25px;
}

/* ============================ */
/*     Services Section Style         */
/* ============================ */

.featured-courses-section {
    background-color: var(--light-gray);
}

.course-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.course-icon {
    font-size: 2.5rem;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-nav);
    margin-bottom: 12px;
}

.course-text {
    font-size: 1rem;
    color: var(--deep-gray);
    margin-bottom: 22px;
}

/* ============================ */
/*     How it works         */
/* ============================ */

.how-step {
    padding: 20px;
}

.step-circle {
    width: 80px;
    height: 80px;
    background-color: var(--accent-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 24px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-nav);
    margin-bottom: 12px;
}

.step-text {
    font-size: 1rem;
    color: var(--deep-gray);
    max-width: 320px;
    margin: 0 auto;
}

/* ============================ */
/*      Writing Research Style         */
/* ============================ */

.writing-research-section {
    background-color: var(--light-gray);
}

/* Card */
.wr-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Icon */
.wr-icon {
    font-size: 3rem;
    color: var(--accent-red);
    margin-bottom: 25px;
}

/* Title */
.wr-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-nav);
    margin-bottom: 20px;
}

/* List */
.wr-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.wr-list li {
    display: flex;
    align-items: flex-start;
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 12px;
}

.wr-list i {
    color: var(--accent-red);
    margin-right: 12px;
    margin-top: 4px;
}

/* ============================ */
/*      Admission Style         */
/* ============================ */


.hover-opacity:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#admission-coaching .text-primary {
    font-weight: 600;
}

.text-danger {
    color: var(--danger);
}

/* ============================ */
/*      Study Abroad Style         */
/* ============================ */
.bg-lightblue {
    background-color: #eff6ff;
}

.country_flages {
    font-size: 3rem;
    line-height: 1;
    font-weight: 600;
}

/* ============================ */
/*      Meet Instructors Style         */
/* ============================ */
.hover-shadow:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15) !important;
    transition: box-shadow 0.3s ease;
}

.hover-opacity:hover {
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#meet_instructors .text-primary {
    font-weight: 600;
}

/* ============================ */
/*      form Style         */
/* ============================ */

#contact .form-control {
    background-color: var(--white-two);
}

/* ============================ */
/*      accordion         */
/* ============================ */
.accordion-item {
    margin-bottom: 24px;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-radius: 1rem;
}

.accordion-button {
    font-weight: 500;
    color: #212529;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.5rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    color: #0d6efd;
    background-color: #ffffff;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-item:first-of-type {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.accordion-item:last-of-type {
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 1rem;
    border-bottom-left-radius: 1rem;
}

/* ============================ */
/*      instructor-card         */
/* ============================ */

.instructor-card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 30px 15px;
    height: 100%;
}

.instructor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid #fff;
    box-shadow: 0 0 0 2px #e9ecef;
}

.instructor-name {
    font-weight: 700;
    color: #1a2a4b;
    margin-bottom: 5px;
}

.instructor-gmat {
    font-size: 0.95rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 5px;
    display: block;
}

.instructor-bio {
    font-size: 0.9rem;
    color: #6c757d;
}

/* ============================ */
/*      Pricing Card         */
/* ============================ */

.pricing-card {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    padding: 20px;
}

.pricing-card.popular {
    border: 3px solid #dc3545;
    box-shadow: 0 0.5rem 1rem rgba(220, 53, 69, 0.15);
}

.plan-title {
    font-weight: 700;
    color: #1a2a4b;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc3545;
    margin-bottom: 15px;
    display: block;
}

.plan-details {
    text-align: left;
    padding-left: 0;
    list-style: none;
}

.plan-details li {
    padding: 5px 0;
    color: #495057;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.btn-enroll {
    background-color: #dc3545;
    border-color: #dc3545;
    font-weight: 600;
    padding: 10px 30px;
    margin-top: 25px;
}

.btn-enroll:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.popular-badge {
    background-color: #dc3545;
    color: white;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 0.25rem;
    display: inline-block;
    margin-bottom: 5px;
}

/* ============================ */
/*      Footer Style         */
/* ============================ */
footer {
    color: var(--white);
    font-size: 14px;
    background: var(--sec-nav);
}

footer .container {
    position: relative;
    z-index: 2;
}

footer .logo {
    max-width: 270px;
    text-align: center;
    margin-bottom: 0.4rem;
}

footer p {
    padding: 10px 0 0 0;
    color: var(--color-07);
    margin: 0;
}

footer h3,
h4 {
    color: var(--color-06);
    font-weight: 600;
}

footer h3 {
    font-size: 2.5rem;
}

footer h4 {
    font-size: 1.5rem;
}

footer h5 {
    color: var(--color-06);
    font-weight: 600;
    font-size: 1rem;
}

.footer-icon li i {
    padding-right: 1rem;
    color: var(--color-06);
}

.footer-links li a {
    color: var(--color-07);
}

.footer-links li a:hover {
    color: var(--color-06);
}

.footer-line {
    border-top: 1px solid var(--light-gray);
}

.footer-line a {
    color: var(--textcolor-01);
}

.footer-section .footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #b6c6cc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: #ffffff;
    color: #0b2a33;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle {
    width: 36px;
    height: 36px;
    background: #143d46;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.secure-box {
    background: #e9fff4;
    color: #1e7f50;
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
}

.footer-bottom-link {
    color: #b6c6cc;
    text-decoration: none;
}

.footer-bottom-link:hover {
    color: #ffffff;
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.social-icon i {
    font-size: 16px;
}

.footer-logo {
    max-width: 270px;
    text-align: center;
    margin-bottom: 0.4rem;
}

.footer-font {
    font-family: "Ubuntu Sans", "Ubuntu Sans Fallback", ui-sans-serif, system-ui, sans-serif;
    font-style: normal;
    font-weight: normal;
    font-size: 15px;
    line-height: 28px;
    color: #FBFBFB;
    margin: 0;
    padding: 0;
}

.footer-font-one {
    font-family: "Ubuntu Sans", "Ubuntu Sans Fallback", ui-sans-serif, system-ui, sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 24px;
    color: #FBFBFB;
    margin: 0;
    padding: 0;
}

.footer-menu {
    font-family: "Ubuntu Sans", "Ubuntu Sans Fallback", ui-sans-serif, system-ui, sans-serif;
    font-style: normal;
    font-weight: 700;
    color: #fefefe;
    font-size: 20px;
    line-height: 28px;
}

.footer-submenu {
    font-family: "Ubuntu Sans", "Ubuntu Sans Fallback", ui-sans-serif, system-ui, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #fefefe;
    font-size: 16px;
    line-height: 24px;
}

.compliance-partners img {
    max-width: 150px;
    height: auto;
    margin: 5px;
}

@media (max-width: 768px) {
    .compliance-partners img {
        max-width: 120px;
    }
}

@media (max-width: 576px) {
    .compliance-partners img {
        max-width: 90px;
    }
}



#hero_section .sub_title p {
    background-color: #f57c0033;
    display: inline-block;
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid #f57c004d;
    color: var(--yello-color);
    font-size: 0.75rem !important;
    line-height: 1.25rem;
    font-weight: 600;
}

#hero_section .sub_title p i {
    color: var(--support-blue-op);
    margin-right: 6px;
}

#hero_section .title {
    color: var(--white) !important;
    font-size: 3.5rem !important;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 24px;
}

#hero_section .btn_one {
    border-radius: 50px;
    background-color: var(--danger);
    display: flex;
    align-items: center;
    gap: 6px;
}

#hero_section .btn_one:hover {
    background-color: var(--hover-red);
}

#hero_section .text {
    color: var(--white) !important;
    font-size: 1.25rem !important;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 16px;
}

#hero_section .counter {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
}

#hero_section .counter .count_item .count_title {
    font-size: 2.5rem !important;
    font-weight: 2.75rem !important;
    color: var(--yello-color) !important;
    font-weight: 600;
}

#hero_section .counter .count_item .count_text {
    font-size: 0.875rem !important;
    line-height: 1.25rem !important;
    color: var(--light-gray);
}

#hero_section {
    background-image: linear-gradient(to bottom right, var(--gradient-one));
    color: var(--white);
}

#hero_section .hero_image {
    border-radius: 16px;
}

#study_abroad #trust-metrics .trust-icon {
    color: var(--black);
    font-size: 3.75rem;
    line-height: 1;
}

#study_abroad #trust-metrics .trust-title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
}

#study_abroad #trust-metrics .trust-text {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.service-card {
    background: var(--light-gray);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.icon-box-xs {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.icon-box-sm {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.icon-box-lg {
    width: 84px;
    height: 84px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box-xl {
    width: 104px;
    height: 104px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    color: var(--primary-nav);
    font-weight: 700;
}

.service-card p {
    color: var(--deep-gray);
    font-size: 0.875rem;
}

/* workflow-section */
.workflow-section {
    background: linear-gradient(125deg, var(--gradient-two));
}

.workflow-section .section_title,
.workflow-section .section-subtitle {
    color: var(--white) !important;
}

.workflow-section .step-circle {
    background-color: var(--yello-color);
}

.workflow-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.workflow-line {
    position: absolute;
    top: 120px;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.workflow-icon {
    width: 48px;
    height: 48px;
    background: rgba(245, 124, 0, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--yello-color);
    font-size: 1.25rem;
}

.workflow-card .title {
    color: var(--white) !important;
    font-weight: 600;
}

.workflow-card .content {
    color: var(--deep-gray) !important;
    font-weight: 600;
}

.story-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.story-card h5 {
    font-weight: 600;
}

.story-avatar {
    width: 64px;
    height: 64px;
    object-fit: cover;
}

.story-rating i {
    color: var(--yello-color);
    font-size: 0.75rem;
}

.story-footer {
    border-top: 1px solid var(--deep-gray);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#teem-section .common-shadow {
    padding: 0px !important;
    border: none !important;
}

.team_card .card-title {
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 0px;
}

.team_card .card-text {
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

/* ======================= */
/*    CTA Banner   */
/* ======================= */
#cta-banner {
    background: linear-gradient(90deg, var(--gradient-three));
}

#cta-banner .section_title,
#cta-banner .section-subtitle {
    color: var(--white) !important;
}

#study_abroad_us .btn_one {
    border-radius: 12px !important;
}

#study_abroad_us .btn_border_one,
#partners_index_page .btn_border_one {
    background-color: transparent !important;
    color: var(--white);
    border-color: var(--white);
}

#study_abroad_us .btn_border_one:hover,
#partners_index_page .btn_border_one:hover {
    background-color: var(--white) !important;
    color: var(--black);
}

#study_abroad_us .course-card .title,
#study_abroad_usa .course-card .title {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 600;
}

/* ============================ */
/*   Top Programs Section      */
/* ============================ */

.program-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    color: var(--white);
    height: 100%;
    transition: all 0.35s ease;
    cursor: pointer;
}

.program-card h5 {
    font-weight: 600;
    margin-top: 10px;
    color: var(--white);
}

.program-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.program-card:hover {
    transform: scale(1.05);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

#study_abroad_canada .program-card {
    text-align: start;
}

#study_abroad_canada .program-card .program-icon {
    font-size: 28px;
}

#study_abroad_canada .program-card h5 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
}

#study_abroad_canada .program-card p {
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #d1d5db !important;
    margin-bottom: 0px;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.requirement-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-nav);
}

/* ============================ */
/* Top Universities Section    */
/* ============================ */

.university-img {
    height: 130px;
    overflow: hidden;
    border-radius: 16px;
}

.university-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.university-card:hover .university-img img {
    transform: scale(1.1);
}

.university-card h5 {
    color: var(--primary-nav);
}

.gradient-blue-two .btn_border_two:hover {
    background-color: var(--yello-color-hover);
    color: var(--white);
}

#study_abroad_usa #hero_section {
    background: #e0e7ff !important;
}

#study_abroad_usa #hero_section .title,
#study_abroad_usa #hero_section .text {
    color: var(--black) !important;
}

#study_abroad_usa #hero_section .btn_one {
    border-radius: 12px;
}

.btn_bg_navy {
    background-color: var(--primary-nav) !important;
}

.filter-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 50rem;
    background-color: #ffffff;
    color: #6c757d;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.filter-tag:hover {
    background-color: #0b1c2d;
    /* navy */
    color: #ffffff;
    border-color: #0b1c2d;
}

.round_one {
    position: absolute;
    bottom: 20%;
    top: auto;
    right: 10%;
    background-color: white;
    width: 240px;
    height: 240px;
    filter: blur(150px);
}

#tabs-container .nav-item {
    border: none;
    background: var(--white);
    margin: 6px 0px;
    border-radius: 8px;
}

#tabs-container .nav-item .nav-link {
    border: none;
    background: var(--white);
    margin: 6px;
    border-radius: inherit;
    color: var(--black) !important;
}

#tabs-container .nav-item .nav-link.active,
#tabs-container .nav-item .nav-link.active:hover {
    border: none;
    background: var(--primary-nav);
    margin: 6px;
    border-radius: inherit;
    color: var(--white) !important;
}

#tabs-container .nav-item .nav-link:hover {
    background-color: var(--light-gray);
}

.note {
    background: #eff6ff;
    padding: 16px;
    border-radius: 8px;
    border-left: 5px solid #2b7fff;
}

#brac_admission .timeline {
    position: relative;
}

#brac_admission .timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: rgba(214, 40, 40, 0.2);
    transform: translateX(-50%);
    border-radius: 10px;
}

#brac_admission .timeline-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#brac_admission .timeline-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

#brac_admission .timeline-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    border: 4px solid;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#brac_admission .check_list li {
    position: relative;
    padding-left: 24px;
}

#brac_admission .check_list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
    position: absolute;
    left: 0;
    top: 0;
    color: rgb(134, 134, 134);
}

#brac_admission #support_tools .list_style li {
    position: relative;
    padding-left: 28px;
}

#brac_admission #support_tools .list_style li::before,
#brac_admission #support_tools .list_style li::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

#brac_admission #support_tools .list_style li::before {
    width: 18px;
    height: 18px;
    background: #fbc5c5;
    left: 0;
    top: 3px;
}

#brac_admission #support_tools .list_style li::after {
    width: 8px;
    height: 8px;
    background: #d62828;
    left: 5px;
    top: 8px;
}

.btn:hover {
    transition: all ease 0.2s !important;
}

#brac_admission .btn_zoom:hover,
#application_template_admission .btn_zoom:hover {
    transform: scale(1.03);
}

.hover-red:hover {
    color: var(--accent-red);
}

.mission-card {
    transition: all ease-in 0.2s;
}

.mission-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.dot_list {
    list-style: disc !important;
    list-style-position: inside !important;
}

.dot_list li::marker {
    color: var(--accent-red);
}

.process_card {
    background-color: #f5f6f8;
}

.transition-all {
    transition: all ease-in 0.2s !important;
}

.transition-0:hover {
    transform: translateX(0px) !important;
}

.audience-card {
    background: linear-gradient(135deg, #ffffff, #f5f6f8);
    border-radius: 1.25rem;
    padding: 2rem;
    border: 2px solid #f0f0f0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.audience-card:hover {
    border-color: #d62828;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.scale:hover {
    transform: scale(1.05);
}

.bg_animation {
    background-color: rgba(255, 255, 255, 0.1);
    animation: bgFade 3s ease-in-out infinite;
}

@keyframes bgFade {
    0% {
        background-color: rgba(255, 255, 255, 0.05);
    }

    50% {
        background-color: rgba(255, 255, 255, 0.1);
    }

    100% {
        background-color: rgba(255, 255, 255, 0.05);
    }
}

.hover-color-primary:hover {
    color: var(--primary-nav) !important;
}


.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),
.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-radius: 12px;
}

.course-sidebar {
    background: #f8f9fa;
    height: 100%;
}

.video-list li {
    cursor: pointer;
    font-size: 14px;
}

.video-list li.active {
    background-color: #dc3545;
    color: #fff;
    border-color: #dc3545;
}


.brack_text {
    white-space: pre-line !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
}
