@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap');

:root {
  --body-font-family: "Rubik", serif;
  --heading-font-family: "Lexend", serif;
  --metal-font: "Metal Mania", serif;
  --transition: all 0.3s ease 0s;
  --duration-long: 500ms;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --border-color: #D9D9D9;
  --hover-color: #323E95;
  --white-color: #fff;
  --black-color: #000000;
  --purple-color: #4F3F8B;
  --purple-color-2: rgb(33 36 129);
  --bg-primary-gradient: linear-gradient(258deg, #046195 -0.19%, #4F3F8B 61.94%);
  --bg-gradient-2: linear-gradient(180deg, rgba(245, 249, 253, 1) 0%, rgba(255, 255, 255, 0.6446953781512605) 100%);
  --bg-grey: #f5f9fc;
  --primary-para-color: #5c7189;
  --heading-color: #002147; 
  --bg-white: #ffffff;
  --py-70: 70px 0;
  --py-60: 60px 0;
  --pt-60: 60px 0 0 0;
  --pt-70: 70px 0 0 0;
  --pb-70: 0 0 70px 0;
  --my-70: 70px 0;
  --mt-70: 70px 0 0 0;
  --mb-70: 0 0 70px 0;
  --pt-80: 80px 0 0 0;
  --py-80: 80px 0;
  --border-round-30: 8px;
  --bg-grey: #f5f9fd;
  --font18: 18px;
}

.padding-y-60 {
    padding: var(--py-60) !important;
}
.padding-t-60 {
    padding: var(--pt-60) !important;
}

.bg-grey {
  background: var(--bg-grey);
}

.bg-gradient-2 {
  background: var(--bg-gradient-2);
}

.mt-80 {
    margin-top: 80px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--body-font-family);
  line-height: 1.8;
  position: relative;
  color: var(--primary-para-color);
  transition: ease-in-out all 0.2s;
}

p {
  color: var(--primary-para-color);
  font-size: 15px;
  margin: 0 0 10px 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 600;
  font-family: var(--heading-font-family);
  color: var(--heading-color);
  margin: 0 0 30px 0;
}

h1,
.h1 {
  font-size: 36px;
}

h5,
.h5 {
  font-size: 18px;
}

ul li {
  font-size: 15px;
  list-style: none;
}

.lead {
  font-size: 18px;
  font-weight: 450;
  color: #575757;
}

a {
  color: var(--purple-color);
  text-decoration: none;
}

.form-group {
  margin: 7.5px 0;
}

.form-group label {
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}
.form-group label sup {
    top: 0;
    font-size: 16px;
    color: #f00;
}

.form-control,
.form-select {
  padding: 12px 24px;
  border-radius: 5px;
  font-size: 15px;
  color: #575757;
  background-color: #ffffffd9;
  backdrop-filter: blur(6px);
}

.btn-white {
  background: var(--bg-white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--black-color);
}

.btn-primary-outline {
  border: 1px solid var(--purple-color-2);
  color: var(--purple-color-2);
  padding: 8px 15px;
  font-size: 15px;
}

.btn-primary-outline:hover {
  border-color: var(--purple-color-2);
  background-color: var(--purple-color-2);
  color: var(--white-color);
  font-size: 15px;
}

.btn-pdf {
  background: var(--bg-primary-gradient);
  color: var(--white-color) !important;
  border: none;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 21px;
  font-weight: 450;
}

.btn-primary { background: var(--purple-color-2); display: flex; align-items: center; height: 50px; width: 160px; margin: 30px 0 0 0; color: white; cursor: pointer; padding: 11px 24px 10px 15px; font-size: 15px; border-radius: 6px; border: none; box-shadow: inset 0 0 1.6em -0.6em #714da6; overflow: hidden; position: relative; }
.btn-primary:hover { color: #ffffff;}
.btn-primary .icon { background: white; margin-left: 15px; position: absolute; display: flex; align-items: center; justify-content: center; height: 36px; width: 36px; border-radius: 5px; box-shadow: 0.1em 0.1em 0.6em 0.2em #1a195b; right: 12px; transition: all 0.3s; }
.btn-primary:hover .icon { width: calc(100% - 1.6em); }
.btn-primary .icon svg { width: 1.1em; transition: transform 0.3s; color: #7b52b9; }
.btn-primary:hover .icon svg { transform: translateX(0.1em); }
.btn-primary:active .icon { transform: scale(0.95); }

.btn-search {
    background-color: var(--purple-color-2) !important;
    border-color: rgb(33 52 129);
    width: 50px;
    color: #ffffff;
}
.btn-search:hover {
    background-color: var(--hover-color) !important;
    color: #ffffff;
}

/*========== Slick Slider Button Default Setting css =====================*/
.slick-next,
.slick-prev {
  background-color: transparent;
  top: -45px;
  width: 55px;
  height: 42px;
  cursor: pointer;
  border: none;
}
.slick-next {
  right: 0;
  border-radius: 0px 30px 30px 0px;
  border: 1px solid var(--purple-color-2);
  border-left: none;
}
.slick-next:hover {
  border-radius: 30px;
  transition: ease-in-out all 0.2s;
}
.slick-prev {
  left: auto;
  right: 35px;
  border-radius: 30px 0px 0px 30px;
  border: 1px solid var(--purple-color-2);
  border-right: none;
}
.slick-prev:hover {
  border-radius: 30px;
  transition: ease-in-out all 0.2s;
}
.slick-next:before,
.slick-prev:before {
  line-height: 1;
  opacity: 0.75;
  font-family: bootstrap-icons !important;
  color: var(--purple-color-2);
  font-size: 21px;
}
.slick-prev:before {
  content: "\F12F";
  position: relative;
  left: -5px;
}
.slick-next:before {
  content: "\F138";
  position: relative;
  left: 5px;
}
.slick-next:hover:before,
.slick-prev:hover:before {
  color: #ffffff;
  transition: ease-in-out all 0.2s;
  border-radius: 30px;
}
.slick-next:focus:before,
.slick-prev:focus:before {
  color: #ffffff;
  background: var(--bg-primary-gradient);
  border-radius: 30px;
}
.slick-next:focus,
.slick-next:hover,
.slick-prev:focus,
.slick-prev:hover {
  color: #ffffff;
  outline: 0;
  background: var(--bg-primary-gradient);
  border-radius: 30px;
}

/*========== Slider Section css Start =====================*/
.slider-section {
  height: 640px;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/slider-img.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center right;
}

.slider-section .btn-primary {
  font-size: 16px;
}

.slider-section .input-group select {
  border-radius: 8px 0 0 8px;
  padding: 20px 24px;
  border: none;

}

.slider-section .input-group .form-control {
  width: 55%;
  border: none;
  border-left: 1px solid #4F3F8B;
}

.slider-section .slider-content {
  text-align: start;
}

.slider-section .slider-content h1 {
  margin: 0 0 20px 0;
  font-size: 54px;
  color: #ffffff;
}
.slider-section .slider-content .lead {
  margin: 0; 
  color: #ffffff;
}

/*------------------------- Country Section css Start -------------------------*/
.country-section {
  position: relative;
  padding: var(--pt-70);
}

.country-section .tab-content .tab-pane.ct-1-bg {
  background: linear-gradient(90deg, #323E95 71.92%, #F4F4F4 72.08%);
  border-radius: 8px;
  overflow: hidden;
  height: 540px;
  padding: 35px 30px 60px 30px;
}

.country-section .tab-content .tab-pane.ct-2-bg {
  background: linear-gradient(90deg, #ff0000 71.92%, #f9f9f9 72.08%);
  border-radius: 8px;
  overflow: hidden;
  height: 540px;
  padding: 35px 30px 60px 30px;
}

.country-section .tab-content .tab-pane.ct-3-bg {
  background: linear-gradient(90deg, #c40f0f 71.92%, #F4F4F4 72.08%);
  border-radius: 8px;
  overflow: hidden;
  height: 540px;
  padding: 35px 30px 60px 30px;
}

.country-section .tab-content .tab-pane.ct-4-bg {
  background: linear-gradient(90deg, #e79e00 71.92%, #F4F4F4 72.08%);
  border-radius: 8px;
  overflow: hidden;
  height: 540px;
  padding: 35px 30px 60px 30px;
}

.country-section .tab-content .tab-pane.ct-5-bg {
  background: linear-gradient(90deg, #00b5bb 71.92%, #F4F4F4 72.08%);
  border-radius: 8px;
  overflow: hidden;
  height: 540px;
  padding: 35px 30px 60px 30px;
}

.country-section .tab-content .tab-pane.ct-6-bg {
  background: linear-gradient(90deg, #bb00bb 71.92%, #F4F4F4 72.08%);
  border-radius: 8px;
  overflow: hidden;
  height: 540px;
  padding: 35px 30px 60px 30px;
}

.country-section .tab-content .tab-pane.ct-7-bg {
  background: linear-gradient(90deg, #bbbe00 71.92%, #F4F4F4 72.08%);
  border-radius: 8px;
  overflow: hidden;
  height: 540px;
  padding: 35px 30px 60px 30px;
}

.country-section .tab-content .tab-pane.ct-8-bg {
  background: linear-gradient(90deg, #009b4d 71.92%, #F4F4F4 72.08%);
  border-radius: 8px;
  overflow: hidden;
  height: 540px;
  padding: 35px 30px 60px 30px;
}

.country-section .tab-content .tab-pane h1 {
  font-size: 90px;
  color: var(--white-color);
  font-family: var(--metal-font);
  margin: 0 0 30px 0;
  font-weight: normal;
  letter-spacing: 5px;
}

.country-section .tab-content .tab-pane ul li {
  color: #ffffff;
}

/* .country-section{
  background-color: #ffffff;
  border: 1px solid rgb(221, 221, 221);
} */
.country-section .nav {
  flex-wrap: unset;
  margin: 0;
  padding: 15px 0;
}

.country-section .nav.scroll-2 {
  background-color: transparent;
  display: inline-flex;
  width: 94%;
  overflow-x: auto;
  border: none;
  -ms-overflow-style: none;
  position: absolute;
  overflow: -moz-scrollbars-none;
  bottom: 30px;
  left: 3%;
}

.country-section .nav.scroll-2 li a {
  background-color: var(--bg-white);
  display: flex;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 10px;
  transition: ease-in-out all 0.2s;
  white-space: nowrap;
  border-radius: 5px;
  margin: 0 30px 0 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: auto;
  border: none;
  color: var(--heading-color);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.country-section .nav.scroll-2 li a.active {
  background: var(--bg-primary-gradient);
  color: #ffffff;
  border: none;
}

.country-section .nav.scroll-2 li a img {
  width: 35px;
  border-radius: 5px;
  border: 1px solid #e3e3e3;
}

.country-section .nav.scroll-2 li a.active img {
  border: none;
}

.country-section .nav.scroll-2::-webkit-scrollbar {
  display: none;
}

.country-section .scroll-tab {
  display: inline-flex;
  width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
  background: transparent;
  box-shadow: none;
  overflow-x: scroll;
  overflow-y: hidden;
  -ms-flex-align: stretch;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row nowrap;
  flex-flow: row nowrap;
  margin: 0 auto;
}


/*.select-country-section {
  min-height: 80vh; 
  background-image: url("../img/shape-2.png"); , url("../img/country-texture.png") 
  background-position: 100% 0, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: contain, 30px;
  align-items: center;
  display: flex;
}*/

.countries {
  background: var(--purple-color-2);
}

.select-country-section {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.select-country-section .card {
  background-color: transparent;
  border: none;
  border-right: 2px solid #ffffff1a;
  border-radius: 0;
}

.select-country-section .card:last-child {
  border-right: none;
}

.select-country-section .card a {
  padding: 30px 24px;
  background-color: transparent;
  text-align: center;
  transition: ease-in-out all 0.2s;
}

.select-country-section .card a h4 {
  margin: 15px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  transition: ease-in-out all 0.2s;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.select-country-section .card:hover a h4 {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.select-country-section .card .card-icon {
  min-width: 100px;
  width: 100px;
  margin: 0 auto;
}

.select-country-section .card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  border-radius: 8px;
}

.select-country-section .card:hover .card-icon img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}


/*---------------------------------- About Section css Start --------------------------*/
.about-section {
  background-image: url("../img/shape-2.png"); 
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: contain;
  padding: var(--py-80);
  position: relative;
}

.about-section .part-1 {
    background-color: #ffffff0f;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px; 
    padding: 24px 20px;
    backdrop-filter: blur(7px);
    border: 1px solid #0000001c;
}

.about-section .part-1 img {
  height: 60px;
}

.about-section .part-1 h5 {
  margin: 0
}

.about-section .part-1 h5 small {
  font-weight: 400;
}

.about-section .btn-primary {
    width: 140px;
}

.about-section img {
  border-radius: var(--border-round-30);
}

.about-card-img {
  position: relative;
}

.about-card-img .card-1 {
  position: absolute;
  bottom: -30px;
  left: 15%;
  width: auto;
  background-color: #ffffff7d;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 10px 24px;
  backdrop-filter: blur(10px);
}

.about-card-img h5 {
  font-size: 21px;
  margin: 0;
}

.about-card-img h5 small {
  font-size: 15px;
  margin: 0;
  font-weight: 450;
  font-family: var(--body-font-family);
}

.about-card-img .card-2 {
  position: absolute;
  top: 30%;
  right: -12%;
  width: auto;
  background-color: #ffffff7d;
  border-radius: 8px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 10px 24px;
  backdrop-filter: blur(10px);
}

/*==================== Trending University Section css Start ==================*/
.trending-university-section {
  padding: var(--py-70);
  margin: var(--mt-70);
  background: linear-gradient(90deg, rgb(33 36 129 / 90%) 42%, rgb(255 255 255 / 60%) 42%), url(../img/34923.jpg) fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.trending-university-section h2 {
  color: var(--white-color);
  font-size: 42px;
  margin: 0 0 15px 0
}

.trending-university-section .lead {
  color: var(--white-color);
  margin: 0 0 30px 0;
  font-weight: normal;
  font-size: 16px;
}

.trending-university-section .btn-white {
  margin: 20px 0 0 0;
}

.trending-university-section .univ-card {
  background-color: #ffffffc9;
    border-radius: 8px;
    padding: 20px 15px;
    margin: 0;
    backdrop-filter: blur(6px);
}

.trending-university-section .univ-card .btn-primary {
    font-size: 14px; 
  height: 42px;
    width: 140px;
    padding: 10px 24px 10px 10px;
}
.trending-university-section .univ-card .btn-primary .icon {
    height: 30px;
    right: 10px; 
    top: 6px;
}

.trending-university-section .univ-card .univ-card-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 250px 
}

.trending-university-section .univ-card .univ-country {
  padding: 5px;
  border-radius: 7px 0 0 7px;
  position: absolute;
  z-index: 1;
  left: 10px;
  top: 10px;
  width: 50%;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.36) 50%, rgba(255, 255, 255, 0) 100%);
}

.trending-university-section .univ-card .univ-country h6 {
  display: flex;
  margin: 0;
  align-items: center;
  gap: 10px;
}

.trending-university-section .univ-card .univ-country h6 span {
  height: 35px;
  width: 35px;
  display: inline-block;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: 5px 5px 22px 1px rgba(0, 0, 0, 0.17);
}

.trending-university-section .univ-card .univ-country h6 span img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.trending-university-section .univ-card .univ-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.trending-university-section .univ-card .univ-card-detail {
  margin: 15px 0 10px 0;
}

.trending-university-section .univ-card .univ-card-detail h5 {
  margin: 0 0 10px 0;
      display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.trending-university-section .univ-card .univ-card-detail p {
  font-size: 15px;
  margin: 0;
}

.trending-university-section .univ-card .univ-fee-detail {
  margin: 0 0 15px 0;
}

.trending-university-section .univ-card .univ-fee-detail ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

.trending-university-section .univ-card .univ-fee-detail ul li {
  list-style: none;
  font-weight: 400;
  font-size: 14px;
  color: var(--purple-color-2);
  font-family: var(--heading-font-family);
}

.trending-university-section .univ-card .univ-fee-detail ul li i {
  color: #000000;
  font-size: 16px;
  margin: 0 5px 0 0;
}

/*====================== Owl Controls css Start =====================*/
.owl-nav button {
    position: absolute;
    top: -50px;
    transform: translateY(-50%);
    background: #2526835e !important;
    color: #ffffff !important;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px !important;
    border: none !important;
    transition: ease-in-out all 0.2s;
    backdrop-filter: blur(10px);
}

.owl-nav button:hover { 
    color: #ffffff !important;
    background: var(--purple-color-2) !important;
}

.owl-nav button:focus {
    outline: none;
}

.owl-nav button.owl-prev {
    left: auto;
    right: 45px;
}

.owl-nav button.owl-next {
    right: 0;
}

.owl-dots {
    text-align: center;
    padding-top: 0px;
}

.owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc;
    margin: 0 3px;
}

.owl-dots button.owl-dot.active {
    background-color: #ffb145;
}

.owl-dots button.owl-dot:focus {
    outline: none;
}

#service-slider .owl-nav button, #inner-slider .owl-nav button {
    position: absolute;
    top: 50%;
}
#service-slider .owl-nav button.owl-next, #inner-slider .owl-nav button.owl-next {
    right: -24px;
}
#service-slider .owl-nav button.owl-prev, #inner-slider .owl-nav button.owl-prev {
    left: -24px;
    right: auto;
}

#inner-slider .owl-nav button {
    position: absolute;
    top: auto;
    bottom: 0;
}
#inner-slider .owl-nav button.owl-next {
    right: 15px;
}
#inner-slider .owl-nav button.owl-prev {
    left: auto;
    right: 65px;
}

/*=================== Get a Quote Section ================*/
.get-a-quote-section {
  width: 100%;
  border: 3px solid transparent;
  background-image: linear-gradient(white, white), radial-gradient(circle at top left, #046195, #4F3F8B);
  background-origin: border-box;
  background-clip: content-box, border-box;
  border-radius: 15px;
  margin: var(--mt-70);
}

.get-a-quote-section .btn-primary {
    width: 180px;
    margin: 0;
}

.get-a-quote-detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 35px 24px;
}

.get-a-quote-detail h1 {
  font-size: 36px;
  font-family: var(--metal-font);
  letter-spacing: 1px;
  margin: 0;
  font-weight: normal;
}

.get-a-quote-detail h1 span {
  background: linear-gradient(90deg, #046195 0%, #4F3F8B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.get-a-quote-detail .btn-primary {
  font-size: 18px;
}


/*=================== Top Search Section ================*/
.top-search-section {
  padding: var(--py-70);
  margin: var(--mt-70);
  background-image: url("../img/bg-1.png");
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
}

.top-search-section h2 {
  text-align: center;
}

.top-search-detail {
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.90);
  box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.04);
  padding: 70px 45px;
  width: 90%;
  margin: 70px auto 0 auto;
  position: relative;
}



.top-search-detail ul {
  padding: 0;
  margin: 0;
}

.top-search-detail ul li {
  list-style: none;
  display: inline-block;
  margin: 0 10px 10px 0;
}

.top-search-detail ul li a {
  border: 1px solid rgb(186, 186, 186);
  background: #FFF;
  padding: 10px 15px;
  border-radius: 8px;
  width: max-content;
  display: block;
  font-size: 15px;
  font-weight: 450;
  color: var(--primary-para-color);
}

/*=================== YT Section css Start ================*/
.yt-section {
  padding: var(--py-70); 
  background-color: #f2f9ff;
}

.yt-section .video-container {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  margin: 12px 0;
}

.yt-section .video-container iframe {
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.12);
}

.yt-btn {
  border-radius: 8px;
  background: #F61C0D;
  color: #ffffff;
  padding: 12px 30px;
  transition: ease-in-out all 0.2s;
}

/*=================== Partner Section css Start ================*/
.partner-section {
  padding: var(--pt-70);
}

.partner-card {
  border: 1px solid #b3cfeb;
  border-radius: 8px; 
  overflow: hidden;
  text-align: center;
  padding: 10px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-card img {
  margin: 0 auto;
}

/*=================== News Section css Start ================*/
.news-section { 
  padding: var(--py-70); 
}

.news-section .news-card {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 0;
  margin: 0;
  /*box-shadow: 2px 2px 20px 1px rgba(0, 0, 0, 0.04);*/
  border: 1px solid #b3cfeb; 
}

.news-section .news-card .news-card-img {
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  height: 120px;
  border-bottom: 1px solid #b3cfeb;
}

.news-section .news-card .news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
 

.news-section .news-card .news-card-detail {
  margin: 0;
  padding: 10px 15px 15px 15px;
}

.news-section .news-card .news-card-detail h5 {
  margin: 0 0 10px 0;
  font-weight: 500;
}

.news-section .news-card .news-card-detail p {
  font-size: 15px;
  margin: 0;
}

.news-section .news-card .news-card-detail a {
  font-size: 16px;
  font-weight: 500;
  margin: 10px 0 0 0;
  color: var(--purple-color);
  font-family: var(--heading-font-family);
  display: block;
  transition: ease-in-out all 0.2s;
}

.news-section .news-card .news-card-detail:hover a {
  color: var(--black-color);
}

/*================== Footer css Start ==================*/
footer {
  width: 100%;
  padding: 70px 0 15px 0;
  position: relative;
  background-color: #ffffff;
}

footer .btn-primary { width: auto; }

footer .form-control {
  font-size: 14px;
}

footer p {
  font-size: 14px;
  margin: 0 0 10px 0;
}

footer p a {
  color: var(--primary-para-color);
}

footer p a:hover {
  color: var(--hover-color);
}

footer hr {
  margin: 24px 0;
  color: inherit;
  border: 0;
  border-top: 1px solid #e5e3e9;
  opacity: 1;
}

footer .foot-logo p {
  font-size: 14px;
  margin: 24px 0 0 0;
  color: #000000;
}

footer .foot-logo img {
  width: 135px;
}

footer h5 {
  font-weight: 500;
  font-size: 18px;
  margin: 0 0 10px 0;
}

footer h6 {
  font-weight: 400;
  font-size: 16px;
  margin: 0 0 10px 0;
}

footer ul {
  margin: 0 auto;
  padding-left: 0;
  display: block;
}

footer ul li {
  list-style: none;
  padding: 0;
  color: #acacac;
}

footer ul li:last-child {
  border-bottom: none;
}

footer ul li a {
  color: var(--primary-para-color);
  list-style: none;
  font-size: 14px;
  transition: ease-in-out all 0.2s;
  display: block;
  padding: 0 0 3px 0;
}

footer ul li a:hover {
  color: var(--hover-color);
}

footer ul li a:focus {
  text-decoration: none;
}

footer .border-top {
  margin-top: 30px;
  margin-bottom: 1rem;
  border-top: 1px solid #f0f0f02b !important;
  padding: 15px 0 0 0;
}

footer .designedBy {
  color: #66625d;
  transition: ease-in-out all 0.2s;
}

footer .designedBy:hover {
  color: #fec001;
}

.footer-social-icon {
  display: block;
  margin: 15px 0 0 0;
}

.footer-social-icon li {
  display: inline-block;
  background-color: transparent;
  transition: ease-in-out all 0.2s;
  border: none;
}

.footer-social-icon li:last-child {
  border-bottom: none;
}

.footer-social-icon li::before {
  content: none;
}

.footer-social-icon li a {
  font-size: 14px;
  color: #ffffff;
  display: block;
  text-align: center;
  padding: 0 !important;
  margin-right: 5px;
  border: 1px solid #000000;
  height: 30px;
  width: 30px;
  background-color: #000000;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-icon li a:hover {
  color: #ffffff;
}

footer .top-universities {
  margin-bottom: 0;
}

footer .top-universities li {
  display: inline-block;
  position: relative;
  padding: 0;
  margin: 0 24px 0px 0;
  font-size: 14px;
  color: var(--primary-para-color);
}

/* footer .top-universities li::before {
  content: "";
  position: absolute;
  height: 4px;
  width: 4px;
  background-color: var(--primary-para-color);
  border-radius: 100%;
  top: 10px;
  left: 0;
} */




/*============ Country Page css start ==========*/
.inner-banner {
  background-color: #e5eff961;
  padding: 30px 0;
  border-top: 1px solid #b3cfeb40;
  border-bottom: 1px solid #b3cfeb40;
}

.inner-banner .inner-banner-detail {
  padding: 30px 0 0 0;
}

.inner-banner .inner-banner-detail h1 {
  margin: 0 0 10px 0;
}

.inner-banner .inner-banner-detail ul {
  display: inline-block;
  padding: 0;
  margin: 5px 0 10px 0;
}

.inner-banner .inner-banner-detail ul li {
  width: 48%;
  float: left;
  margin: 0 2% 15px 0;
   min-height: 90px;
  display: flex;
  align-items: center;
  border: 1px solid #b3cfeb;
  padding: 15px;
  border-radius: 8px;
  gap: 15px;
  background-color: #ffffff4f;
  backdrop-filter: blur(7px);
  color: var(--heading-color);
  font-weight: 450;
}

.inner-banner .inner-banner-detail ul li img {
  width: 40px;
}

.inner-banner .inner-banner-detail ul li a {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 450;
  color: var(--heading-color);
}
.inner-banner .inner-banner-detail ul li:hover a {
    color: var(--hover-color);
}

.inner-banner .inner-banner-detail ul li a img {
  width: 35px;
}

.inner-banner .country-slide {
  height: 640px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

.inner-banner .country-slide img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
 
.inner-banner .btn-primary {
    height: 44px;
    width: 130px;
    padding: 10px 20px 10px 10px;
    font-size: 15px;
}
.inner-banner .btn-primary .icon { 
    height: 32px;
    width: 32px;
    right: 10px;
}
.inner-banner .btn-primary:hover .icon {
    width: calc(100% - 1.35em);
} 

.about-slider {
  background-image: url(../img/abt-slider.jpg);
  background-size: cover;
  background-position: top center;
  height: 350px;
  display: flex;
  align-items: center;
}

.about-slider h1 {
  color: #ffffff;
}

.about-slider .breadcrumb .breadcrumb-item a {
  color: #ffffff;
}

.about-slider .breadcrumb-item.active {
  color: #ffffff;
}

.about-slider .breadcrumb-item+.breadcrumb-item::before {
  color: #ffffff;
}

/*====================== Breadcrumb css Start =====================*/

.breadcrumb {
  border-bottom: 1px solid #b3cfeb40;
  padding: 0 0 10px 0;
}

.breadcrumb .breadcrumb-item a {
  font-size: 16px;
}

.breadcrumb-item+.breadcrumb-item::before {
  font-family: bootstrap-icons !important;
  content: '\F138';
  font-weight: 900 !important;
  font-size: 15px;
  position: relative;
  top: 0;
}

.breadcrumb-item.active {
  color: var(--primary-para-color)
}

/*====================== Country Page Detail css Start =====================*/

.card {
  border: 1px solid #00000020;
  border-radius: 8px;
}

.card .card-body {
  padding: 24px 15px;
}

.card .card-body p:last-child {
  margin: 0;
}

.card .card-body ul {
  margin-bottom: 0;
}

.options-sec .card {
  border-color: #b3cfeb;
}

.options-sec .card .card-body {
  background: var(--bg-white);
  /* background: linear-gradient(90deg, rgba(245,249,252,1) 0%, rgba(255,255,255,0.7105435924369747) 100%); */
  padding: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 8px;
}

.options-sec .card .card-body .card-icon {
  min-width: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.options-sec .card .card-body .card-icon img {
  width: 80%;
}

.options-sec .card .card-body .card-detail {
  padding: 15px 15px 15px 0;
}

.options-sec .card .card-body .card-detail ul li {
  margin: 0;
}

.options-sec .card .card-body .card-detail ul li:last-child {
  margin: 0;
}

.inner-page-sec {
  padding: 0;
}
.inner-page-sec.loan-service {
    padding: var(--pb-70) ;
}

.inner-page-sec h3 {
  margin: 30px 0 20px 0;
}

.inner-page-sec h3:first-child {
  margin-top: 0;
}

.inner-page-sec h4 {
  margin: 0 0 15px 0;
}

.inner-page-sec h5 {
  margin: 0 0 15px 0;
}

.inner-page-sec h6 {
  margin: 0 0 15px 0;
}

.inner-page-sec .points {
  padding-left: 30px;
  display: inline-block;
  margin-top: 0;
}

.inner-page-sec .points li {
  list-style: square;
  font-size: 16px;
  color: #606060;
  text-align: justify;
}

.inner-page-sec .points-two {
  padding-left: 15px;
  display: block;
  margin-top: 0;
  margin-bottom: 15px;
}

.inner-page-sec .points-two li {
  list-style: disc;
  margin-bottom: 10px;
}

.inner-page-sec .points-two li:last-child {
  margin-bottom: 0;
}

.inner-page-sec .points-two li b {
  font-weight: 450;
  color: var(--heading-color);
}

.inner-page-sec .points-two li::marker {
  color: var(--heading-color);
}

/*============= Country wise University Detail css Start ======================*/
.country-university-card {
  background-color: var(--white-color);
  border: 1px solid #b3cfeb;
  border-radius: 8px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.country-university-card .country-univ-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  border-bottom: 1px solid #b3cfeb;
  padding: 5px 15px;
}

.country-university-card .country-univ-card-header .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 50px;
  height: 50px;
  width: 50px;
  object-fit: cover;
  object-position: center;
  border-radius: 100%;
  border-radius: 100%;
  overflow: hidden;
  border: 1px solid #00000020;
}

.country-university-card .country-univ-card-header img {
  width: 75%;
}

.country-university-card .country-univ-card-header h5 {
  font-size: 15px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.country-university-card .university-img {
    overflow: hidden;
}
.country-university-card .university-img img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  object-position: top center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.country-university-card:hover .university-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); 
}

.country-university-card .country-univ-card-body {
  padding: 15px;
}

.country-university-card .country-univ-card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.country-university-card .country-univ-card-body ul {
  padding: 0;
}

.country-university-card .country-univ-card-body ul li {
  font-size: 15px;
}

.country-university-card .country-univ-card-body ul li i {
  color: var(--heading-color);
  font-size: 18px;
}

.country-university-card .country-univ-card-body .btn-primary {
    height: 40px;
    width: 124px;
    padding: 10px 20px 10px 10px;
    font-size: 14px;
}
.country-university-card .country-univ-card-body .btn-primary .icon { 
    height: 30px;
    width: 30px;
    right: 10px;
}
.country-university-card .country-univ-card-body .btn-primary:hover .icon {
    width: calc(100% - 1.4em);
}

.nmc-points .card {
  min-height: 395px;
  margin: 0 0 24px 0;
  background-color: #f2f3ff73;
}

.nav-item .nav-link {
  color: var(--primary-para-color);
  padding: 7px 20px;
  font-size: 15px;
  border: 1px solid #00000020;
  margin-right: 15px;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  color: var(--white-color);
  background: var(--bg-primary-gradient);
}

ul.list-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin: 0;
  padding: 0 0 0 20px;
}

ul.list-container li {
  font-size: 15px;
  list-style: disc;
}

ul.list-container li b {
  color: var(--heading-color);
  font-weight: 500;
}

ul.list-container li::marker {
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
}

ol.list-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 30px;
  margin: 0;
  padding: 0 0 0 20px;
}

ol.list-container li {
  font-size: 15px;
}

ol.list-container li::marker {
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
}

.list-container li h6 {
  margin: 0 0 10px 0;
}

.inner-page-sec .lead {
  font-size: 16px;
  color: var(--hover-color);
  margin: 0 0 15px 0;
}

.timeline {
  position: relative;
  padding: 0;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 4px;
  background: rgb(79, 63, 139);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.timeline-step {
  position: relative;
  width: 100%;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.5s ease-in-out;
  left: 0 !important;
  text-align: left !important;
}

.timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step .timeline-step-header {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: start;
  margin: 0 0 30px 0;
}

.timeline-step .timeline-step-header .timeline-step-header-icon {
  min-height: 80px;
  min-width: 80px;
  height: 80px;
  width: 80px;
  border-radius: 8px;
  border: 1px solid #b3cfeb;
  overflow: hidden;
}

.timeline-step .timeline-step-body p {
  position: relative;
}

.timeline-step .timeline-step-body ul li {
  list-style: disc;
  margin: 0 0 10px 0;
  padding: 0 0 0 10px;
  line-height: 1.6;
}

.timeline-step .timeline-step-body ul li::marker {
  content: "\f26a";
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  position: relative;
  top: 2px;
  right: 10px;
  color: var(--heading-color);
}


.timeline-step::before {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 20px;
  background: rgb(79, 63, 139);
  border-radius: 50%;
  transform: translateY(-50%);
  border: 3px solid white;
}

.timeline::after {
  left: 0;
}

.timeline-step {
  width: 100%;
  left: 0 !important;
  text-align: left;
  padding: 30px 0 30px 30px;
  border-top: 1px solid #b3cfeb;
}

.timeline-step:first-child {
  border-top: none;
}

.timeline-step::before {
  left: -10px !important;
}

.sticky-step {
  position: sticky;
  top: 60px;
  margin-top: 0;
}

.sticky-step img {
  border-radius: 10px;
}

.accordion-flush .accordion-item {
  margin: 0 0 10px 0;
  border-bottom: none;
}

.values-section {
  padding: var(--py-70);
  background-color: #f2f9ff;
}

.stats-section {
  padding: var(--py-70);
  background-color: #eef8ff;
}


.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stats-detail {
  padding: 30px 24px;
  border-radius: 10px;
  margin: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid #b3cfeb;
}

.stats-detail h1 {
  font-size: 42px;
  position: relative;
  margin: 0 0 10px 0;
}

.stats-detail h1::after {
  color: #000000;
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  top: -4px;
  font-weight: 900;
  position: relative;
  left: 5px;
}


.stats-detail h1 span {
  color: #00af79;
  margin: 0 0 0 10px;
}

.stats-detail h6 {
  font-size: 16px;
  margin: 0;
  font-weight: 500;
}

.stats-detail p {
  margin: 0;
}

.stats-icon {
  background: var(--bg-primary-gradient);
  height: 80px;
  width: 80px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 30px 0;
}

.stats-icon img {
  width: 45px;
}


.team-section {
  padding: var(--py-70);  
  background-position: 100% 0px;
  background-repeat: no-repeat;
}

.team-card {
  background-color: #ffffff38;
    height: 100%;
    border-radius: 8px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    transition: all .35s ease-out;
    display: flex;
    position: relative;
    text-align: center;
    border: 1px solid #b3cfeb;
    backdrop-filter: blur(6px);
  
  /*-webkit-box-shadow: 0 0 7px rgb(0 0 0 / 10%);
  box-shadow: 0 0 7px rgb(0 0 0 / 10%);*/
}

.team-card h4 {
  margin: 0 0 5px 0;
}

.team-card p {
  margin: 0;
}

.team-card .team-profile {
  margin: 0 auto 15px auto;
  width: 100%; 
  position: relative;
}

.team-card .team-profile img {
  height: 310px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.team-card p {
    margin: 0;
    color: var(--primary-para-color);
    font-size: 16px;
}

.profile-sm {
    margin: -45px auto 0 auto;
    padding: 0;
}

.profile-sm li {
  display: inline-block;
  background-color: transparent;
  transition: ease-in-out all 0.2s;
  border: none;
}

.profile-sm li:last-child {
  border-bottom: none;
}

.profile-sm li::before {
  content: none;
}

.profile-sm li a {
  font-size: 15px;
  color: #ffffff;
  display: block;
  text-align: center;
  padding: 0 !important;
  margin: 0 5px;
  height: 35px;
  width: 35px;
  background: var(--bg-primary-gradient);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-sm li a:hover {
  color: #ffffff;
}

.team-detail {
  margin: 0;
}

.team-detail img {
  border-radius: 10px;
}

.team-detail h5 {
  margin: 20px 0 5px 0;
}

.team-detail p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

#team-slider .owl-controls .owl-buttons {
  position: absolute;
  top: -60px;
  width: auto;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 10px;
  right: 15px;
  background: var(--bg-primary-gradient);
  border-radius: 30px;
  padding: 0 15px;
}

#team-slider .owl-controls .owl-prev,
#team-slider .owl-controls .owl-next {
  height: auto;
  width: auto;
  background: transparent;
  border-radius: 100%;
  transition: background 0.50s ease;
  margin: 0;
}

#team-slider .owl-controls .owl-prev {
  left: auto;
  position: relative;
  right: 0;
}

#team-slider .owl-controls .owl-next {
  right: 0;
  position: relative;
}

#team-slider .owl-controls .owl-prev:after {
  content: "\F12F";
  font-family: bootstrap-icons !important;
  color: var(--white-color);
  font-size: 24px;
}

#team-slider .owl-controls .owl-next:after {
  content: "\F138";
  color: var(--white-color);
  font-size: 24px;
}

.why-choose-section {
  padding: var(--py-70);
}

.why-choose-section ul {
  margin: 0;
}

.why-choose-section ul li {
  list-style: disc;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading-color);
  position: relative;
  padding: 0px 0 0 10px;
  margin: 0 0 5px 0;
}
.why-choose-section.education-loan {
    margin: var(--my-70);
}
.why-choose-section.education-loan ul li {
    font-weight: normal;
    font-size: 15px;
    color: var(--primary-para-color);
    text-align: justify;
}

.why-choose-section.education-loan ul li b {
    color: var(--heading-color);
}
.why-choose-section.education-loan img {
    border-radius: 8px;
}

.why-choose-section ul li::marker {
  content: "\f26a";
  font-family: bootstrap-icons !important;
  color: #007dfe;

}

.contact-section {
  padding: var(--py-70);
}


.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #00000020;
  padding: 0 0 30px 0;
}

.contact-card:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.contact-card .contact-icon {
  height: 70px;
  width: 70px;
  min-height: 70px;
  min-width: 70px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary-gradient);
  color: var(--white-color) !important;
}

.contact-card .contact-detail p {
  margin: 0;
}

.contact-card .contact-detail h5 {
  margin: 0 0 5px 0;
  font-weight: 500;
}

.contact-card .contact-detail p a {
  color: var(--paraColor);
}

.contact-card .contact-detail p a:hover {
  color: var(--hover-color);
}

.contact-card .contact-icon i {
  font-size: 27px;
}

iframe {
  border-radius: 0;
}

.contact-form {
  background-color: #f2f9ff;
  padding: 30px 24px;
  border-radius: var(--border-round-30);
}

.contact-form h4 {
  margin: 0 0 10px 0;
}

.contact-form .btn-primary {
    width: 130px;
}


/*=================== Blog Posts=====================*/

.blog-section { 
  margin: 0;
  padding: var(--py-70);
  /* border-bottom: 1px solid #b3cfeb; */
}

.blog-section aside {
    position: -webkit-sticky;
    position: sticky;
    top: 140px;
}

.post {
  background-color: #ffffff;
  margin-bottom: 30px;
  margin-right: 0;
  border: 1px solid #b3cfeb;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 16px;
  border-radius: 8px;
}


.post .post-thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.post .post-thumbnail a {
  display: block;
}

.post .post-thumbnail img {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: scale(1) translateX(0) rotate(0deg);
  -ms-transform: scale(1) translateX(0) rotate(0deg);
  transform: scale(1) translateX(0) rotate(0deg);
  
  object-fit: cover;
  object-position: top center;
}

.post .post-thumbnail:hover img {
  -webkit-transform: scale(1.1) translateX(0) rotate(2deg);
  -ms-transform: scale(1.1) translateX(0) rotate(2deg);
  transform: scale(1.1) translateX(0) rotate(2deg);
}

.post .post-thumbnail .post-meta {
    background: #000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0, #000 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    border-radius: 8px;
    opacity: 1;
    visibility: visible;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    pointer-events: none;
    padding: 30px 15px 10px 15px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: end;
}
.post .post-thumbnail .post-meta p {
    color: #ffffff;
    margin: 0;
}

.post .post-thumbnail .post-meta span {
  background: var(--bg-primary-gradient);
  display: block;
  color: #fff;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px 0 0 0;
}

.post:hover .post-thumbnail .post-meta {
  opacity: 1;
  visibility: visible;
}

.post.post-no-thumbnail .post-meta {
  margin: 0;
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.post.post-no-thumbnail .post-meta span {
  font-size: 13px;
}

.post-categories {
  margin-top: 15px;
}

.post-categories span {
  display: inline-block;
  padding: 5px 15px;
  color: var(--paraColor);
  background-color: #EEF9FF;
  border-radius: 5px;
  font-weight: normal;
  margin: 0 2px 5px 0;
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}

.post-categories a:hover {
  background-color: var(--blueColor);
  color: #fff;
}

.post h5 {
  transition: ease-in-out all 0.2s;
}

.post:hover h5 {
  color: var(--hover-color);
}

.post .post-body {
  margin: 10px 0 0;
  display: inline-block;
  width: 100%;
}
.post .post-body .btn-primary {
    height: 40px;
    width: 125px;
    margin: 15px 0 0 0;
    font-size: 14px;
    padding: 10px;
}
.post .post-body .btn-primary .icon {
    height: 30px;
    width: 30px;
    top: 5px;
        right: 10px;
}
    
    .post .post-body .btn-primary:active .icon {
    transform: scale(0.95);
}

.post .post-body .btn-primary:hover .icon {
    width: calc(100% - 1.5em);
}
    
    
.post .post-body p {
  margin: 0;
  display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post .post-body h5 {
  font-size: 18px;
  margin: 15px 0 10px 0;
  display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post .video-player-trigger,
.post-single .video-player-trigger {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.post .video-player-trigger a,
.post-single .video-player-trigger a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*============ Blog Sidebar ===================== */
.sidebar-widget .media {
    margin-bottom: 30px;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: center;
    display: flex;
    gap: 15px;
}

    .sidebar-widget .media:last-child {
        margin-bottom: 0
    }

    .sidebar-widget .media > a {
        display: block;
        width: 130px;
        min-width: 130px;
        border-radius: 8px;
        margin-right: 15px;
        overflow: hidden;
        border: 1px solid #ddd
    }
    .sidebar-widget .media .media-thumb {
        max-width: 120px;
        max-height: 100px;
        width: 120px;
        height: 100px;
    }

    .sidebar-widget .media img {
        width: 100%;
        border-radius: 8px;
        height: 100%;
        object-fit: cover;
        object-position: center
    }

    .sidebar-widget .media h6 {
        margin: 0 0 5px;
        font-size: 16px
    }

        .sidebar-widget .media h6 a {
            color: #030303;
            transition: .2s ease-in-out;
            display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
        }

    .sidebar-widget .media:hover h6 a {
        color: var(--CyanColor)
    }

.sidebar-widget h5 {
    font-size: 24px;
    margin-bottom: 30px
}

.sidebar-widget p {
    margin-bottom: 0;
    font-size: 13px
}

/*============ Blog Detail ===================== */
.post-single {
  background-color: #ffffff;
  margin: 0 30px 30px 0;
  border: 1px solid #b3cfeb;
  padding: 24px;
  box-shadow: rgba(0, 0, 0, 0.12) 0px 6px 16px;
  border-radius: 8px; 
}

.post-single h1 {
  font-size: 36px;
  margin: 0 0 15px 0;
}

.post-single h2 {
  font-size: 30px;
  margin: 0 0 15px 0;
}

.post-single h3 {
  font-size: 24px;
  margin: 0 0 15px 0;
}
.post-single h3 strong {
    font-weight: 600;
}

.post-single h4 {
  font-size: 21px;
  margin: 0 0 15px 0;
}

.post-single h5 {
  font-size: 18px;
  margin: 0 0 15px 0;
}

.post-single h6 {
  font-size: 16px;
  margin: 0 0 15px 0;
}

.post-single h2 strong {
  font-weight: 600;
}

.post-single blockquote {
  color: var(--paraColor);
  position: relative;
  padding: 20px;
  margin: 20px 0;
  border-left: 3px solid var(--blueColor);
  font-size: 16px;
  font-style: italic;
}

.post-single .post-categories {
  margin-bottom: 15px;
}

.post-single .post-meta {
  margin-bottom: 0;
}

.post-single .post-meta span,
.post-single .post-meta span i {
  margin-right: 10px;
  font-size: 14px;
  color: var(--headingColor);
}

.post-single .post-thumbnail {
  position: relative;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.post-single .post-thumbnail img {
  border-radius: 8px; 
}

.post-single img {
    max-width: 100%;
    height: auto;
    border-radisu: 8px;
}

.post-single .post-categories a {
  display: inline-block;
  padding: 4px 15px;
  color: #ffffff; 
  border-radius: 20px;
  margin: 0 2px 5px 0;
  font-size: 13px;
  z-index: 1;
  bottom: 0;
  left: 0;
  display: inline-block;
  padding: 5px 15px;
  color: var(--paraColor);
  background-color: #EEF9FF;
  border-radius: 5px;
  font-weight: normal;
  margin: 0;
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
}

.post-single .media {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.post-single .media img {
  width: 50px;
  border-radius: 50%;
}

.post-single .media p {
  margin-bottom: 0;
}

.post-content blockquote p {
  margin: 0;
}

.post-content img {
  border-radius: 8px;
}

.post-content p {
  margin-bottom: 15px;
}

.post-content p strong {
  font-weight: 450;
  color: var(--blueColor);
}

.post-content ul {
  margin: 0;
    padding: 0 0 0 20px;
}

.post-content ul li {
  list-style: disc;
  color: var(--paraColor);
  margin: 0 0 5px 0;
}

.post-content ul li p {
  margin: 0;
}

.post-content ul li p strong {
  font-weight: 600;
  color: var(--headingColor);
}

.post-content ul li::marker {
  color: var(--headingColor);
}

.post-content ol {
  margin: 0 0 15px 0;
}

.post-content ol li {
  margin: 0 0 5px 0;
}

.post-content ol li p {
  margin: 0;
}

.post-content ol li p strong {
  font-weight: 600;
  color: var(--headingColor);
}

.post-content ol li::marker {
  color: var(--headingColor);
}

.post-content ol li {
  color: var(--paraColor);
}

.post-content img {
  margin-bottom: 20px;
}

.post-meta {
  margin-bottom: 50px;
}

 
.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}

.social-media li {
  margin: 0;
}

.about-author .social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 0;
}

.about-author .social-media li a {
  background-color: #f3f3f3;
  border: 0;
  color: #515151;
  width: 40px;
  height: 40px;
  font-size: 14px;
  transition: ease-in-out all 0.2s;
}

.about-author .social-media li a:hover {
  background-color: var(--blueColor);
  color: #fff;
}

.social-media a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 15px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #1d2228;
  color: #1d2228;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.social-media a:hover {
  background-color: #85b72c;
  border-color: #85b72c;
  color: #fff;
}

.social-media li a i {
  margin: 0;
}

 

.media {
  display: flex;
}

.media-body {
  -ms-flex: 1;
  flex: 1;
}

.blog-place-img img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

 

aside {
  position: -webkit-sticky;
  position: sticky;
  top: 70px;
}

.page-link {
  color: var(--heading-color);
  font-size: var(--font18);
  border-color: #b3cfeb;
}

.page-link:focus,
.page-link:hover {
  box-shadow: none;
  background: var(--black-color);
  color: var(--white-color);
  border-color: var(--black-color);
}

.active>.page-link {
  background: var(--bg-primary-gradient);
  color: var(--white-color);
  border-color: #4f3f8b;

}

.country-card {
  background-color: #f5faff;
  border: 1px solid #b3cfeb;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
}

.country-card h5 {
    margin: 5px 0 0 0;
    display: inline-block;
    width: 100%;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    
}
.country-card:hover h5 {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.country-card .country-card-img {
  margin: 0 auto 10px auto; 
}

.country-card .country-card-img img {
    height: 65px;
    object-fit: cover;
    object-position: center;
    border-radius: 8px; 
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}
.country-card:hover .country-card-img img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2); 
}


.top-university {
  width:100%;
  margin:0px auto;
}


.news-section a.box_news {
  position: relative;
  display: block; 
  color: #555;
  border: 1px solid #b3cfeb;
  border-radius: 8px;
  margin: 0 0 24px 0;
  min-height: 170px; 
  padding: 24px;
  transition: ease-in-out all 0.2s;
}
.news-section a.box_news:last-child {
    margin-bottom: 0;
}
.news-section a.box_news:hover {
   border-color: var(--purple-color); 
}
.news-section a.box_news h5 {
  margin: 10px 0;
  display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section a.box_news p {
  margin: 0;
      display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.news-section a.box_news figure {
  overflow: hidden; 
  margin: 0;
}
.news-section a.box_news figure figcaption {
    background: var(--bg-primary-gradient);
    color: var(--white-color);
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 60px;
    padding: 7px 15px; 
    border-radius: 0 7px 0 8px;
    text-align: center;
    font-size: 13px;
    line-height: 1;
    margin: -1px -1px 0 0;
}
.news-section a.box_news figure figcaption strong {
  display: block;
  font-size: 21px;
}
.news-section a.box_news:hover h4 {
  color: #94c93d;
  transition: 0.3s ease-in-out;
}
.news-section a.box_news ul {
  margin: 0;
  padding: 0;
}
.news-section a.box_news ul li {
  display: inline-block;
  color: var(--purple-color);
  font-size: 14px;
}
.news-section a.box_news ul li:last-child {
  margin-right: 0;
}
.news-section a.box_news ul li:last-child:after {
  content: "";
  margin: 0;
}
.news-section a.box_news ul li:after {
  content: "-";
  margin: 0 0 0 10px;
}
.news-section a.box_news_middle figure {
    min-height: 425px;
    height: 425px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    position: relative; 
    margin: 0;
}
.news-section .box_news_wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: transparent;
  background-image: linear-gradient(360deg, #000 0%, #00000000 100%);
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.news-section .box_news_wrapper h2 {
    color: var(--white-color);
    margin: 0 0 20px 0;
}
.news-section .box_news_wrapper p {
    color: var(--white-color);
}
.news-section a.box_news_middle figure img {
        height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/*=============================== University Page css Start ==========================*/

.moretext {
  display: none;
}

.inner-banner.university-details {
    padding: 35px 0; 
    border-bottom: none;
}

.univ-slider .slick-slide {
    margin: 0 7.5px 0 0;
}

.inner-banner.university-details .country-slide {
    height: 420px;}

.inner-banner.university-details .inner-banner-detail {
    padding: 0;
    
}
.inner-banner.university-details .inner-banner-detail .breadcrumb {
    border-bottom: 0;
    padding: 0;
    margin: 15px 0 0 0;
    display: flex;
    align-items: center;
}

.inner-banner.university-details .inner-banner-detail .breadcrumb .breadcrumb-item a {
    font-size: 13px;
}
.inner-banner.university-details .inner-banner-detail .breadcrumb .breadcrumb-item.active {
    color: var(--primary-para-color);
    font-size: 13px;
}
.inner-banner.university-details .inner-banner-detail .breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    font-family: bootstrap-icons !important;
    content: '\F138';
    font-weight: 900 !important;
    font-size: 12px;
    position: relative;
    top: 5px;
}

.inner-banner.university-details .inner-banner-detail h1 {
    margin: 0 0 5px 0;
    font-size: 30px;
}

.inner-banner.university-details .inner-banner-detail .univ-location {
    margin: 0 0 24px 0;
    font-size: 16px;
}
.inner-banner.university-details .inner-banner-detail .univ-location i {
  color: var(--heading-color);  
}

.inner-banner.university-details .inner-banner-detail .fact-grids {
    margin: 30px 0 0 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.inner-banner.university-details .inner-banner-detail .fact-grids-detail { 
    border: 1px solid #b3cfeb;
    padding: 20px 10px;
    border-radius: 8px;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.inner-banner.university-details .inner-banner-detail .fact-grids-detail .fact-icon { 
    margin: 0 0 10px 0;
    width: 45px;
}
.inner-banner.university-details .inner-banner-detail .fact-grids-detail .fact-icon img {
    
}
.inner-banner.university-details .inner-banner-detail .fact-grids-detail h6 {
    margin: 0;
}
.inner-banner.university-details .inner-banner-detail .fact-grids-detail p {
    margin: 0;
    font-size: 13px;
}

.about-ksmu-img img {
    border-radius: 8px;
}

thead tr th, tbody tr th {
    font-weight: 500;
}

/*============== Progress section css start ==============*/
.process-section {
    background-color: #ffffff;
    position: relative;
    z-index: 1;
    padding: var(--py-80);
}

.process-card {
    background-color: transparent;
    padding: 24px 15px;
    max-width: 300px;
    width: 100%;
    margin: 0 auto 3px auto;
    position: relative;
    z-index: 1;
    text-align: center;
    border-radius: 8px; 
    
}

.process-card .process-thumb {
    position: relative;
    z-index: 1;
    max-width: 100px;
    width: 100%;
    border-radius: 10px;
    margin: 0 auto 20px;
}

.process-card .process-thumb img {
        background-color: #ffffff;
    border-radius: 8px;
    border: 2px solid #682bec47;
    padding: 15px;
}

.process-card .process-thumb .number {
    position: absolute;
    z-index: 10;
    right: -25px;
    top: -16px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #682bec;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox; 
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-size: 18px;
    border: 4px solid #fff
}

.process-card p {
    font-size: 14px;
}

.process-card-two {
    text-align: center;
    -webkit-transition: .3s;
    transition: .3s
}

.process-card-two .process-thumb {
    position: relative;
    z-index: 1;
    width: 176px;
    height: 176px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    border: 1px dashed #1e56a3;
    padding: 10px
}

.process-card-two .process-thumb .number {
    position: absolute;
    z-index: 10;
    top: 10px;
    left: 2px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #1e56a3;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    font-size: 18px
}

.process-card-two .process-thumb img {
    border-radius: 50%
}

.row .col-12:nth-child(odd) .process-card-two {
    margin-top: 100px
}

.process-wrap .col-12:first-child .process-card .process-thumb::after,.process-wrap .col-12:nth-child(2) .process-card .process-thumb::after {
    position: absolute;
    background-image: url("../img/curve1.png");
    width: 180px;
    top: 50%;
    left: calc(100% + 50px);
    z-index: 10;
    content: "";
    height: 34px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none
}

/* Arrow from 3rd to 4th process card */
.process-wrap .col-12:nth-child(3) .process-card .process-thumb::after {
  position: absolute;
  background-image: url("../img/curve1.png"); /* or curve4.png if you have a new one */
  width: 125px;
  top: 50%;
  left: calc(100% + 50px);
  z-index: 10;
  content: "";
  height: 34px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  transform: translateY(-50%);
  display: none;
}

@media only screen and (min-width: 992px) {
  .process-wrap .col-12:nth-child(3) .process-card .process-thumb::after {
    display: block;
  }
}

@media only screen and (min-width: 992px) {
    .process-wrap .col-12:first-child .process-card .process-thumb::after,.process-wrap .col-12:nth-child(2) .process-card .process-thumb::after {
        width:90px;
        display: block;
        left: calc(100% + 50px)
    }
    .process-wrap .col-12:nth-child(3) .process-card .process-thumb::after {
    position: absolute;
    background-image: url(../img/curve1.png);
    width: 90px; }
}

@media only screen and (min-width: 1200px) {
    .process-wrap .col-12:first-child .process-card .process-thumb::after,.process-wrap .col-12:nth-child(2) .process-card .process-thumb::after {
        width: 125px;
        left: calc(100% + 50px)
    }
}

@media only screen and (min-width: 1400px) {
    .process-wrap .col-12:first-child .process-card .process-thumb::after,.process-wrap .col-12:nth-child(2) .process-card .process-thumb::after {
        width:150px
    }
}

.process-wrap .col-12:nth-child(2) .process-card .process-thumb::after {
    background-image: url("../img/curve2.png")
}

.process-section .bg-shape {
    position: absolute;
    z-index: -10;
    top: 0;
    left: 0;
    width: auto;
    height: 100%
}

.process-section .bg-shape img {
    width: auto;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}


.fee-structure-btn .btn-primary {
    width: 255px;
}



.otp-container {
      display: flex;
      gap: 10px;
      justify-content: start; 
      margin: 0 0 10px 0;
    }

    .otp-input {
    width: 50px;
    height: 45px;
    font-size: 18px;
    text-align: center;
    border: 1.5px solid #d3d3d3;
    border-radius: 5px;
    outline: none;
    background-color: #fff;
    transition: border 0.2s;
}

    .otp-input:focus {
      border-color: #4a90e2;
      box-shadow: 0 0 4px rgba(74, 144, 226, 0.6);
    }

    .resend {
      font-size: 16px;
      color: #444;
    }

    .resend a {
      color: #1a73e8;
      text-decoration: none;
      font-weight: 600;
      margin-left: 0;
      cursor: pointer;
      transition: ease-in-out all 0.2s;
    }

    .resend a:hover { 
      color: #222481;
    }


.btn-otp {
    background: var(--purple-color-2) !important;
    border-color: rgb(33 52 129);
}

.Country-sidebar {
    background-color: #eff8ff;
    padding: 24px;
    border-radius: 8px;
    min-height: 320px;
}

.Country-sidebar ul {
    padding: 0;
    margin: 0;
}


.Country-sidebar ul li a {
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 500;
    transition: ease-in-out all 0.2s;
}

.Country-sidebar ul li:hover a {
    color: var(--hover-color);
}

.Country-sidebar ul li img {
    width: 45px;
    border-radius: 5px;
}



/* Add this CSS to your existing stylesheet */

.otp-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 20px 0;
}

.otp-input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid #ddd;
  border-radius: 8px;
  outline: none;
  transition: border-color 0.3s ease;
}

.otp-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.otp-input:valid {
  border-color: #28a745;
}

.resend {
  text-align: center;
  margin-top: 15px;
}

.resend a {
  color: #007bff;
  text-decoration: none;
  font-size: 14px;
}

.resend a:hover {
  text-decoration: underline;
}

.btn-otp {
  min-width: 100px;
  white-space: nowrap;
}

.btn-otp:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form validation styles */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

/* Modal improvements */
.modal-content {
  border-radius: 10px;
  border: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.modal-header {
  border-bottom: 1px solid #eee;
  padding: 20px;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  border-top: 1px solid #eee;
  padding: 20px;
}

 
.btn-secondary {
  border-radius: 0 5px 5px 0;
}

/* Form group spacing */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

/* Input focus effects */
.form-control:focus,
.form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .otp-input {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .otp-container {
    gap: 8px;
  }
  
  .modal-dialog {
    margin: 1rem;
  }
}









.admin-blog-section {
    padding: 70px 0;
    min-height: 90vh;
}

.admin-blog-section label {
    color: #000000;
    font-weight: 600;
    font-size: 14px;
    margin: 0;
}



