:root {
    /* Theme Colors */
    --primary-color: #CD1227;
    --secondary-color: #28353b;
    --tertiary-color: #d2d850;
    /* Surface Colors */
    --surface-color-1: #fbf7ed;
    --surface-color-2: #fff3f3;
    --surface-color-3: #ffffff;
    /* Text Colors */
    --heading-color: #251c23;
    --subHeading-color: #3b3339;
    --othersHeading-color: #51494f;
    --paragraph-color: #666065;
    --placeholder-color: #9f9f9f;
    --white-color: #ffffff;
    /* State Colors */
    --success-color: #198754;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --info-color: #0dcaf0;

    /* Neutral Colors */
    --black-color: #0c0c20;

    /* Font Family */
    --font-family-Inter: "Inter", sans-serif;
}

/* ================ Global CSS Start ================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

body {
    font-family: var(--font-family-Inter);
    font-weight: normal;
    font-style: normal;
    color: var(--paragraph-color);
    font-size: 16px;
    line-height: 160%;
}

@media (max-width: 1399.98px) {
    .container-custom {
        max-width: 95%;
    }
}

.img,
img {
    max-width: 100%;
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

a,
.button {
    -webkit-transition: all 0.6s ease-out 0s;
    -moz-transition: all 0.6s ease-out 0s;
    transition: all 0.6s ease-out 0s;
}

a:focus,
.button:focus {
    text-decoration: none;
    outline: none;
}

a {
    text-decoration: none;
    display: inline-block;
    color: var(--black-color);
    font-size: 16px;
    font-family: 600;
}

a:focus,
a:hover {
    text-decoration: none;
}

a,
button {
    outline: medium none;
}

.relative {
    position: relative;
}

table {
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-Inter);
    margin-top: 0px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%;
}

h1 {
    font-size: 60px;
    color: var(--heading-color);
}

h2 {
    font-size: 48px;
    color: var(--subHeading-color);
}

h3 {
    font-size: 32px;
    color: var(--othersHeading-color);
}

h4 {
    font-size: 24px;
    color: var(--othersHeading-color);
}

h5 {
    font-size: 20px;
    color: var(--othersHeading-color);
}

h6 {
    font-size: 18px;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

ul {
    margin: 0px;
    padding: 0px;
}

li {
    list-style: none;
}

p {
    color: var(--paragraph-color);
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 15px;
    line-height: 160%;
    font-family: var(--font-family-Inter);
}

label {
    color: var(--placeholder-color);
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
}

*::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--primary-color);
    color: var(--white-color);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--placeholder-color);
}

*::placeholder {
    color: var(--placeholder-color);
}

.text-justify {
    text-align: justify;
}

/* ================ Global CSS Start ================== */
/* ================ preloader CSS Start ================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d0d0d;
    /* Choose a background color */
    z-index: 9999;
    /* Set a high z-index to display above other content */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 1s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.preloader-text {
    text-align: center;
    font-weight: bold;
    animation: color-change 3s infinite ease-in-out;
    /* Text animation */
}

@keyframes color-change {
    0% {
        color: var(--primary-color);
    }

    25% {
        color: var(--surface-color-3);
    }

    50% {
        color: var(--primary-color);
    }

    75% {
        color: var(--surface-color-3);
    }

    100% {
        color: var(--primary-color);
    }
}

@media (max-width: 767.98px) {

    /* Small screen */
    .preloader-text {
        font-size: 24px;
    }
}

/* ================ preloader CSS end ================== */

/*================== Common Class Start ================ */
.primary-color {
    background: var(--primary-color);
}

.primary-text-color {
    color: var(--primary-color);
}

.surface-color-1 {
    background: var(--surface-color-1);
}

.section-gap-top {
    padding-top: 50px;
}

.section-gap-bottom {
    padding-bottom: 60px;
}

.section-gap-y {
    padding: 60px 0;
}

.btn-group {
    gap: 30px;
    flex-wrap: wrap;
}

.btn-group .btn.primary,
.btn-group .btn.secondary {
    border-radius: 0;
}

@media (max-width: 575px) {
    .section-gap-y {
        padding: 50px 0;
    }
}

/* Section Heading */
.heading-wrap {
    margin-bottom: 30px;
}

.section-heading {
    margin-bottom: 30px;
    text-align: center;
}

@media (max-width: 575px) {}

/* Section Heading */

/* breadcrumb */
.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb .breadcrumb-item {
    font-weight: 600;
    color: var(--white-color);
}

.breadcrumb-heading {
    color: var(--white-color);
    font-size: 38px;
}

.breadcrumb .breadcrumb-item:hover,
.breadcrumb .breadcrumb-item.active {
    color: var(--white-color);
    display: inline-block;
}

.breadcrumb-area {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.breadcrumb-area.edu-bread-img-1 {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.edu-bread-img {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .8)), url(../images/page-banner/education-breadcrumb.jpg);
}
.edu-bread-img-1 {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .8)), url(../images/page-banner/asscoiates.jpg);
}

/* =============== Buttons CSS Start ================*/
a.btn {
    font-size: 18px;
    font-weight: 600;
    line-height: 160%;
    padding: 8px 24px;
    border-radius: 0px;
    transition: all 0.6s ease-in-out;
}

a.btn.primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border: 1px solid var(--white-color);
}

a.btn.primary:hover {
    background: var(--secondary-color);
    border: 1px solid var(--white-color);
}

a.btn.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

a.btn.secondary:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

a.text-btn {
    color: var(--primary-color);
    font-weight: 700;
}

a.text-btn:hover {
    color: var(--secondary-color);
}

@media (max-width: 575px) {
    a.btn {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* ---- Play Button ----- */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--white-color);
    line-height: 70px;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--white-color);
    animation: shadows 1.4s linear infinite;
    transition: all ease 400ms;
}

.play-btn:hover {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.play-btn i {
    font-size: 40px;
    color: var(--primary-color);
}

.play-btn:hover i {
    color: var(--white-color);
}

@keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
            0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2), 0 0 0 70px transparent;
    }
}

@-webkit-keyframes shadows {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2),
            0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2);
    }

    100% {
        box-shadow: 0 0 0 30px rgba(255, 255, 255, 0.2),
            0 0 0 50px rgba(255, 255, 255, 0.2), 0 0 0 70px transparent;
    }
}

/* ---- Play Button ----- */
/* =============== Buttons CSS End ================*/
/* Social */
.social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    width: 30px;
    height: 30px;
    background: var(--surface-color-1);
    border-radius: 2px;
    text-align: center;
    line-height: 30px;
    color: var(--othersHeading-color);
    transition: 0.6s ease-in-out;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

@media (max-width: 575px) {
    .social {
        margin-bottom: 20px;
    }
}

/* Social */

/* slider Arrow */

.owl-dots {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    bottom: 2%;
}

.testimonials-section .owl-dots {
    bottom: -40px;
}

.owl-dots .owl-dot {
    height: 6px;
    width: 25px;
    background: #959da0;
    display: inline-block;
    margin: 5px;
    border-radius: 30px;
    /* border: 2px solid var(--primary-color); */
}

.owl-theme .owl-dots .owl-dot span {
    background: transparent !important;
}

.owl-dots .owl-dot.active {
    background-color: var(--primary-color);
}

/* slider Arrow */
/*================== Common Class End ================ */

/*================ Header Section Start =============== */
/* Top Navbar */

/* Bottom Navbar */
/* .navbar .navbar-brand {
    max-width: 270px;
} */
.navbar-nav .nav-link {
    border-bottom: 2px solid transparent;
    transition: 0.6s ease-in-out;
    margin-left: 5px;
    color: var(--text-2);
    font-size: 16px;
    line-height: 160%;
    font-weight: 500;
    color: var(--surface-color-3);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    border-bottom: 2px solid var(--primary-color);
    color: var(--primary-color);
    display: inline-block;
}

.dropdown:hover .dropdown-menu {
    display: block;
    background: var(--surface-white);
    border-radius: 0;
    box-shadow: var(--bs-box-shadow-sm);
}

.nav-item .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
}

.dropdown-menu li {
    position: relative;
}

.dropdown-menu .dropdown-item {
    transition: 0.6s ease-in-out !important;
    background: var(--surface-color-3);
    border-color: var(--surface-color-2);
    font-size: 14px;
    font-weight: 400;
    color: var(--black-color);
    background-color: #f9f9f9;
}

@media (min-width: 320px) and (max-width: 767.98px) {
    .dropdown-menu .dropdown-item {
        white-space: normal;
    }
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active {
    background: var(--primary-color);
    color: var(--white-color);
}

.dropdown-submenu {
    display: none !important;
    position: absolute;
    left: 100%;
    top: -7px;
}

.dropdown-menu .dropdown-submenu-left {
    right: 100%;
    left: auto;
}

.dropdown-menu>li:hover>.dropdown-submenu {
    display: block !important;
}

@media (max-width: 1399.98px) {
    .navbar-nav .nav-link {
        margin-left: 0;
    }
}
/*------------ Hero Section Start -------- */
.hero-content h1 {
    font-size: 56px;
}

/* .hero-content h1,
.hero-content p {
}
.hero-content p {
} */

.hero-content .btn-group {
    margin-top: 30px;
    align-items: center;
    gap: 30px;
    /* margin-bottom: 50px; */
}

@keyframes waves {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(8px);
    }

    100% {
        transform: translateX(0);
    }
}

.process a i {
    font-size: 46px;
}

/* Avatar Start */
.avatar {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 2px solid #fff;
}

.avatar-stack {
    display: flex;
}

.avatar-stack .avatar-item {
    height: 60px;
    width: 60px;
    display: inline-block;
    transition: margin 0.1s ease-in-out;
}

.avatar-stack .avatar-item+.avatar-item {
    margin-left: -20px;
}

.avatar-stack .avatar-item:first-child {
    z-index: 5;
}

.avatar-stack .avatar-item:nth-child(2) {
    z-index: 4;
}

.avatar-stack .avatar-item:nth-child(3) {
    z-index: 3;
}

.avatar-stack .avatar-item:nth-child(4) {
    z-index: 2;
}

.avatar-stack .avatar-item:last-child {
    z-index: 1;
}

.donor-number {
    display: flex;
    align-items: center;
    gap: 30px;
}

.donor-number .donors {
    color: var(--white-color);
}

.hero-section {
    background-image: url(../images/hero-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-section .hero-image {
    overflow: hidden;
}

.hero-section .owl-dots .owl-dot.active {
    background-color: var(--secondary-color);
}

/*----------- Hero Section End ------------*/

/*================ Header Section End =============== */

.load-modal .modal-body {
    background: linear-gradient(to bottom right, #0d0d0d, #0d0d0d);
    color: white;
    text-align: center;
    padding: 60px 30px;
    border-radius: 8px;
}

.load-modal .modal-body h3 {
    color: white;
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 600;
}

.load-modal .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    border: none;
    border-radius: 50%;
    padding: 5px;
}

.load-modal .btn-close:hover {
    background-color: #f1f1f1;
}

.load-modal .modal-content {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border: none;
}

/*=========== About Section Start =============*/
.about-section {
    position: relative;
    overflow: hidden;
}

/* .founder-image {
}
.about-content {
} */

.about-content h2 {
    font-size: 38px;
}


.element {
    position: absolute;
    overflow: hidden;
    right: 4%;
    bottom: 4%;
    animation: slideUp 6s ease-in-out infinite alternate;
    width: 120px;
    height: auto;
}

@keyframes slideUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-60px);
    }
}

/*=========== About Section End =============*/

/*=========== Service Section Start =============*/
/* .service-section {
} */
/*------------------------------*/
.service-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--white-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: calc(100%);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover:before {
    opacity: 1;
}

/*------------------------------*/
.service-icon {
    background: var(--surface-color-2);
    min-width: 70px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.service-icon img {
    min-width: 50px;
    min-height: auto;
}

/* .service-info {
} */
.service-info .service-title {
    margin-bottom: 0;
}

/*=========== Service Section End =============*/

/*=========== US Education Section Start =============*/
.us-image {
    position: relative;
    overflow: hidden;
}

/*=========== US Education Section End =============*/

/*=========== Universities Section Start =============*/
.universities-card {
    overflow: hidden;
    padding-bottom: 20px;
    background: var(--white-color);
}

.universities-card:hover .universities-image img {
    transform: scale(1.05);
}

.universities-card-top {
    position: relative;
    margin-bottom: 65px;
}

.universities-logo {
    position: absolute;
    width: 100px;
    height: 100px;
    overflow: hidden;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    /* border: 2px solid var(--primary-color); */
    background: var(--white-color);
}

.universities-name {
    text-align: center;
    padding: 0 15px;
}

.universities-name a {
    font-size: 20px;
    font-weight: 600;
}

/*=========== Universities Section End  =============*/

/*=========== Summary Section Start ==============*/
.apply-link-card {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
    background: var(--surface-color-2);
}

.apply-link-card h3 {
    color: var(--primary-color);
}

/*=========== Summary Section End ================*/

/*  */
.education {
    position: relative;
}

.education-content h2 {
    font-size: 38px;
}


.education-content p {
    text-align: justify;
}

.education-content ul li {
    display: flex;
    font-size: 1.2rem;
    margin: 25px 0;
}
.education-content ul li i {    
    margin-right: 10px;
}

.education-image {
    position: relative;
    overflow: hidden;
    padding: 10px;
    border: 2px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: calc(100%);
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);

}

.services-section:hover .education-image {
    background-color: var(--surface-color-3);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-color);
}

/*=========== Testimonials Section Start ================*/
.slider-card {
    padding: 50px 50px 30px;
    background: var(--white-color);
}

.slider-content p {
    text-align: center;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

/* .reviewer-info img {
} */
.owl-nav {
    position: absolute;
    top: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    transform: translateY(-50%);
}

.owl-prev,
.owl-next {
    background: var(--white-color);
    border: 1px solid var(--secondary-color);
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    color: var(--secondary-color);
    transition: all 0.3s ease 0s;
}

.owl-prev {
    margin: 0 -50px;
}

.owl-next {
    margin: 0 -50px;
}

.owl-next:hover,
.owl-prev:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

@media (max-width: 767.98px) {

    .owl-next,
    .owl-prev {
        margin: 0;
        width: 30px;
        height: 30px;
    }
}

/*=========== Testimonials Section End ================*/
/* =========Footer Section Start====== */

/* Footer Top */
footer.footer {
    background-color: rgb(0 0 0 / 95%);
    /* background-image: url(../images/footer-bg.png); */
    background-position: right center;
    background-repeat: no-repeat;
}

.footer .top {
    padding-top: 70px;
    padding-bottom: 30px;
}

.top .content-card a.logo {
    margin-bottom: 24px;
}

.top .content-card.card-1 p {
    margin-bottom: 24px;
    font-size: 15px;
    color: var(--white-color);
}

.top .content-card.card-2 h5 {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--surface-color-1);
    display: inline-block;
    color: var(--white-color);
}

.top .content-card.card-2 ul li a {
    opacity: 0.8;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--white-color);
    transition: 0.6s ease;
}
.top .content-card.card-2 ul li a:hover {
    opacity: 1;
}

/* .top .content-card.card-2 ul li a:hover,
.footer .bottom a:hover {
    color: var(--primary-color);
} */
/* Footer Bottom */
.footer .bottom {
    padding: 25px 0;
    border-top: 1px solid #7e7f80;
}

.content-card.contact-info i,
.footer .bottom p,
.footer .bottom a {
    color: var(--white-color);
    font-size: 14px;
}

/* ============Footer Section End========= */

/* ==========About Page========== */


/* .breadcrumb .breadcrumb-item {
} */

/* ==========/About Page========== */
/* vision */
.vision-content ul {
    padding-left: 24px;
}

.vision-content ul li {
    list-style: square;
    margin-bottom: 10px;
}

.vision-content ul li:last-child {
    margin-bottom: 0;
}

.category .card {
    border-width: .5px;
    border-color: var(--surface-color-2);
    height: calc(100%);
}

.category .card h4 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.category .card a {
    color: var(--primary-color);
}

.category .card-body {
    position: relative;
    z-index: 1;
}
.category .card-body img {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -1;
    opacity: 5%;
}

.category .card-text {
    text-align: justify;
}

/* ==========/About Page========== */
/* Summary */
.summary-section {
    background: var(--secondary-color);
}

.summary-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: rgb(255 255 255 / 8%);
    transition: 0.6s;
    cursor: default;
}

.summary-card .icon {
    margin-bottom: 10px;
}

.summary-card h3 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.summary-card h6 {
    color: var(--white-color);
}

/*  */
.single-card {
    padding: 30px;
    background: var(--white-color);
}

.card-content {
    text-align: center;
    margin-top: 15px;
}

/* ==========/About Page========== */

/* ========== Contact Page========== */
.contact-card {
    height: calc(100%);
}

.contact-card.left,
.email-area {
    padding: 30px;
    background: var(--surface-color-1);
}

.contact-section .contact-card .heading-wrap {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--black-color);
}

.contact-section .single-card-content {
    display: flex;
    gap: 15px;
}

.contact-section .contact-single-card h5 {
    margin-bottom: 15px;
}

.contact-section .single-card-content span {
    color: var(--primary-color);
}

.single-card-content.social-links {
    flex-direction: column;
}

.single-card-content.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.single-card-content.social-links a:last-child {
    margin-bottom: 0;
}

.single-card-content.social-links i {
    font-size: 24px;
    margin-right: 10px;
}

.map_bind {
    display: flex;
}

/* ==========/Contact Page========== */

/* ==========Us Education Page========== */
.study-usa-section {
    background-image: url("/images/bg.png");
    background-size: cover;
    /* Adjust to your preference */
    background-position: center;
    /* Adjust to your preference */
    background-repeat: no-repeat;
    /* Prevent image from repeating */
    /* Add any other styling properties for your section */
}

.us-education-page .universities-card {
    background: var(--surface-color-1);
}

/* ==========/Us Education Page========== */

/* ======== Services Page ========== */
/* .services-page .service-card {
} */
/* ======== /Services Page ========== */

/* ========== University Details Page Start =========== */
.content-header {
    padding: 15px;
    background: var(--surface-color-1);
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 24px;
}

.content-header .university-logo {
    width: 80px;
    height: auto;
}

.name-location {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.location {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.university-content .contents {
    padding: 20px;
    background: var(--surface-color-1);
}

.menu-tabs {
    border-bottom: 1px solid var(--primary-color);
}

.menu-tabs li.nav-item {
    width: 100%;
    background: var(--white-color);
    border: 1px solid;
    border-bottom: 0;
    border-color: var(--primary-color);
}

.menu-tabs li.nav-item .nav-link {
    color: var(--heading-color);
    font-weight: 500;
}

.menu-tabs li.nav-item .nav-link:hover,
.menu-tabs li.nav-item .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.single-content p {
    text-align: justify;
}

/* Right Site Consultancy */
.consultancy-form {
    background: var(--surface-color-2);
}

.form-heading {
    padding: 20px;
    text-align: center;
    background: var(--primary-color);
    color: var(--white-color);
}

.form-body {
    padding: 20px;
}

.education-content.asscoiates ul li {
    font-size: 16px;
    color: var(--paragraph-color);
    display: flex;
    text-align: justify;
}

.education-content.asscoiates ul li i {
    font-size: 18px;
    margin-right: 15px;
}

.education-content.asscoiates ul li span {
    margin-top: -2px;
}

/* ========== University Details Page End =========== */

/* ============== Application Page Start =============== */
.appointment-card {
    background: var(--surface-color-1);
}

/* ============== Application Page End =============== */