body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.navbar {
  background-color: #ffffff;
  padding: 10px 80px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2000;
}
.navbar-brand img {
  max-height: 73px;
}
.nav-link {
  color: #333333 !important;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 15px !important;
  cursor: pointer;
  display: inline-block;
  width: 100%;
}

.custom-dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  border-top: 4px solid #e32626;
  border-radius: 0 0 6px 6px;
  margin-top: 12px;
  padding: 8px 0;
  min-width: 220px;
  z-index: 2100;
}

.dropdown-menu.show-menu {
  display: block;
  animation: dropdownFadeIn 0.25s ease;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  font-size: 14px;
  color: #444444;
  padding: 12px 24px;
  font-weight: 500;
  display: block;
  text-decoration: none;
  transition: all 0.25s ease;
}
.dropdown-item:hover {
  background-color: #fff5f5;
  color: #e32626;
  padding-left: 30px;
  text-decoration: none;
}

.hero-section {
  position: relative;
  height: 700px;
  background: linear-gradient(rgb(20 40 69 / 27%), rgb(6 35 77)),
    url("assets/images/home-page/hero-1.webp") no-repeat center center;
  background-size: cover;
  /* background-attachment: fixed; */
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

@keyframes containerSlideIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
.animated-slider-container {
  animation: containerSlideIn 1.2s cubic-bezier(0.1, 1, 0.1, 1) forwards;
  width: 100%;
}

.info-box {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
  width: 90%;
  min-height: 360px;
  border: 2px dotted #af2917;
}

.info-title {
  color: #0b2265;
  font-weight: 600;
  font-size: 43px;
  line-height: 48px;
  margin-bottom: 18px;
  font-family: "Playfair Display", serif;
}

.info-text {
  color: #555555;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 30px;
}

.btn-theme {
  background-color: #c21629;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
}
.btn-theme:hover {
  background-color: #b81d1e;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(227, 37, 38, 0.3);
}

.right-brand-panel {
  border-left: 1px solid #eeeeee;
  padding-left: 45px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.brand-graphic {
  max-width: 220px;
  height: auto;
  margin-bottom: 15px;
  margin-left: 35px;
}
.brand-subtext {
  font-size: 11px;
  color: #222222;
  font-weight: 600;
  line-height: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-left: 35px;
}
.hub-title {
  color: #0b2265;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
}

.carousel-indicators {
  bottom: -65px;
  margin: 0;
  gap: 12px;
}
.carousel-indicators li {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-indicators .active {
  background-color: #ffffff;
  transform: scale(1.3);
}

@media (max-width: 1199px) {
  .navbar {
    padding: 15px 25px;
  }
}

@media (max-width: 991px) {
  .navbar-brand img {
    max-height: 55px !important;
  }
  .navbar-collapse {
    display: none;
    width: 100%;
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
  }
  .separator {
    width: 6% !important;
  }
  .navbar-collapse.show-collapse {
    display: block;
  }
  .nav-item {
    border-bottom: 1px solid #f5f5f5;
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: #fafafa;
    border-left: 3px solid #e32626;
    border-top: none;
    border-radius: 0;
    margin-top: 5px;
    width: 100%;
    padding-left: 15px;
  }
  .hero-section {
    height: 800px;
  }
  .right-brand-panel {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #eeeeee;
    margin-top: 30px;
    padding-top: 25px;
  }
  .info-title {
    font-size: 30px;
    line-height: 38px;
  }
  .info-box {
    width: 100% !important;
  }
}

@media (max-width: 767px) {
  .hero-section {
    height: auto;
    padding: 50px 15px 90px 15px;
    background-attachment: scroll;
  }
  .info-box {
    padding: 35px 20px;
    min-height: auto;
  }
  .info-title {
    font-size: 24px;
    line-height: 32px;
  }
  .info-text {
    font-size: 15px;
  }
}

.client-slider-section {
  background-color: #f7f7f7;
  padding: 12px 0px;
}

/* --------------about-start------------------- */

.about_us_bgcolor {
  background-color: #ffffff;
  padding: 80px 0;
}

.about_heading {
  font-family: "Playfair Display", serif;
  font-size: 55px;

  color: #1a1a1a;
  margin-bottom: 25px;
  font-weight: 500;
}

.program-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  max-width: 440px;
  margin-bottom: 25px;
}

.action-container {
  position: relative;
}

.view-all-btn {
  background-color: #c21629;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 4px;
  border: none;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background-color: #b81d1e;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(227, 37, 38, 0.3);
}

.view-all-btn span {
  margin-left: 8px;
  font-size: 1.1rem;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-col-left {
  padding-top: 0px;
}

.program-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  height: 340px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  background-color: #eaeaea;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: all 0.4s ease;
  z-index: 2;
}

.card-main-title {
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: 1.6rem;
  margin: 0;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.hover-content {
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  color: #e0e0e0;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 0px;
}

.learn-more-link {
  color: #ffffff !important;
  font-weight: 500;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  font-size: 15px;
}

.learn-more-link span {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.program-card:hover img {
  transform: scale(1.08);
}

.program-card:hover .card-overlay {
  background: rgba(40, 36, 36, 0.88);
  justify-content: center;
}

.program-card:hover .card-main-title {
  transform: translateY(-5px);
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.program-card:hover .hover-content {
  max-height: 200px;
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

.program-card:hover .learn-more-link span {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .about_heading {
    font-size: 30px;
    text-align: center;
  }
  .program-desc {
    max-width: 100%;
    text-align: center;
  }
  .action-container {
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-bottom: 60px;
  }
  .view-all-btn {
    transform: rotate(0deg);
    margin-top: 20px;
  }
  .view-all-btn:hover {
    transform: scale(1.05);
  }
  .arrow-svg {
    display: none;
  }
  .grid-col-right {
    padding-top: 0px;
  }
}

@media (max-width: 575.98px) {
  .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .grid-col-right {
    padding-top: 0px;
  }
  .program-card {
    height: 300px;
  }
}

.apply-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #eaeaea26;
}

.header-row {
  margin-bottom: 50px;
}

.title-text {
  font-family: "Playfair Display", Georgia, serif;
  color: #1a2530;
  font-size: 55px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.help-text {
  font-size: 15px;
  line-height: 1.6;
  color: #6c757d;
  margin: 0;
  text-align: center;
  margin-top: 20px;
}
.card-icon img {
  width: 80%;
}

.card-wrapper {
  margin-bottom: 30px;
}

.apply-card {
  height: 380px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card-always {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
    url("assets/images/home-page/ser.png");
  background-size: cover;
  background-position: center;
}

.hover-image-card {
  background-color: #06234d;
  background-size: cover;
  background-position: center;
  background-blend-mode: multiply;
  transition: background 0.4s ease-in-out, transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card-two-bg:hover {
  background-image: linear-gradient(
      rgba(128, 10, 29, 0.75),
      rgba(128, 10, 29, 0.75)
    ),
    url("assets/images/home-page/ser1.jpg");
}

.card-three-bg:hover {
  background-image: linear-gradient(
      rgba(128, 10, 29, 0.75),
      rgba(128, 10, 29, 0.75)
    ),
    url("assets/images/home-page/ser2.jpg");
}
.card-four-bg:hover {
  background-image: linear-gradient(
      rgba(128, 10, 29, 0.75),
      rgba(128, 10, 29, 0.75)
    ),
    url(assets/images/home-page/ser3.jpg);
}
.apply-card:hover {
  transform: translateY(-8px);
}

.custom-icon-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 50px;
}

.card-icon i {
  font-size: 34px;
  color: transparent;
  -webkit-text-stroke: 1.5px #ffffff;
  display: block;
}

.icon-line-design {
  width: 100%;
  height: 1.5px;
  background-color: #ffffff;
  margin-top: 6px;
  position: relative;
}

.icon-line-design::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: #800a1d;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
}

.image-card-always .icon-line-design::after {
  background-color: #1a2530;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-items: center;
}

.card-number {
  line-height: 1;

  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
}

.card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  margin-top: 0;
}

.card-description {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.85;
  margin: 0;
}

@media (max-width: 991px) {
  .title-text {
    font-size: 32px;
  }
  .apply-card {
    height: 350px;
  }
}

@media (max-width: 576px) {
  .title-text {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .apply-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.learn_more {
  margin-top: 10px;
  position: relative;
  top: 12px;
  font-size: 14px;
  color: #fff;
}

.feedback-section {
  padding-top: 80px;
  padding-bottom: 80px;
}

.header-container {
  margin-bottom: 50px;
}

.section-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 55px;
  color: #1a2530;
  margin-bottom: 12px;
  font-weight: 500;
}

.section-subtitle {
  font-size: 15px;
  color: #8a8a8a;
  letter-spacing: 0.3px;
  margin: 0;
}

.slide-item {
  padding: 0 15px;
}

.feedback-card {
  background-color: #eaeaea47;
  padding: 40px 35px 1px;

  border-radius: 0px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.rating-stars {
  margin-bottom: 20px;
}

.rating-stars img {
  width: 27%;
}

.feedback-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 14px;
}

.card-user-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-info {
  display: flex;
  align-items: center;
}

.profile-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 15px;
}

.user-meta .user-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  color: #1a2530;
  margin-bottom: 2px;
  margin-top: 0;
  font-weight: bold;
}

.user-meta .user-role {
  font-size: 13px;
  color: #777777;
  display: block;
}

.quote-icon {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 90px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px #dc3545;
  user-select: none;
  font-weight: 300;
  margin-top: 25px;
}

.slick-dots {
  bottom: -40px;
}

.slick-dots li button:before {
  font-size: 10px;
  color: #dc3545;
}

.slick-dots li.slick-active button:before {
  color: #dc3545;
}

@media (max-width: 768px) {
  .london_aplication_form .section-title {
    font-size: 22px !important;
  }
  .feedback-card {
    padding: 30px 20px;
  }
  .quote-icon {
    font-size: 70px;
  }
}

.blog-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #eaeaea26;
}

.blog-card-wrapper {
  margin-bottom: 30px;
}

.blog-card {
  background-color: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
  /* display: flex;
  flex-direction: column; */
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.card-img-box {
  width: 100%;
  height: 220px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.card-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-meta-info {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.meta-item {
  font-size: 14px;
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 6px;
}

.meta-item i {
  font-size: 14px;
  color: #495057;
}

.blog-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
  color: #1a2530;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 13px;
  flex-grow: 1;
}
.blog-card p {
  font-size: 15px;
}

.blog-arrow-btn {
  width: 112px;
  height: 40px;
  border: 1px solid #cccccc;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333333;
  background-color: #ffffff;
  transition: all 0.3s ease;
}

.blog-arrow-btn i {
  font-size: 14px;
  transform: rotate(45deg);
}

.blog-arrow-btn:hover {
  background-color: #1a2530;
  color: #ffffff;
  border-color: #1a2530;
  text-decoration: none;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 19px;
  }
  .blog-card {
    padding: 20px;
  }
  .card-img-box {
    height: 190px;
  }
}

.custom-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  padding: 40px 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.custom-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #1e2a63;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px auto;
}

.icon-circle i {
  color: #ffffff;
  font-size: 28px;
}

.card-link {
  color: #c21629;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: #b00820;
  text-decoration: none;
}

.card-link .arrow {
  margin-left: 8px;
  font-size: 18px;
  transition: transform 0.2s ease;
}

.custom-card:hover .arrow {
  transform: translateX(4px);
}

.icon-circle img {
  width: 46%;
}

.enquiry_bgcolor {
  padding: 60px 0px;
}

.footer {
  padding: 60px 0px 40px;
  background-color: #000000;
}
.footer_description > img {
  padding: 8px 8px 8px 8px;
  background-color: #fff;
  margin-bottom: 15px;
  border-radius: 3px;
  width: 45% !important;
}
.footer_description p {
  font-size: 14px;
  text-align: justify;
  font-family: "Poppins", sans-serif;
  color: #fff;
}
.social_media_footer ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  margin-top: 15px;
}
.social_media_footer ul li {
  margin: 0px 8px;
  list-style: none;
  background-color: #fff;
  padding: 5px 8px;
  border-radius: 5px;
  width: 13%;
}
.social_media_footer ul li a > img {
  width: 70%;
  margin: auto;
  display: block;
}
.footer_list .footer-title {
  margin: 0px;
  font-size: 25px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  padding: 0px 0px 20px;
  color: #fff;
}
.menu-footer ul {
  margin: 0px;
  padding: 0px;
}
.menu-footer ul li {
  list-style: none;
  color: #fff;
  font-family: "Poppins", sans-serif;
  color: #fff;
  margin-bottom: 10px;
}
.menu-footer ul li a {
  color: #fff !important;
}
.menu-footer ul li a img {
  width: 62%;
}
.menu-footer ul a span {
  margin-left: 10px;
  color: #fff;
}

@media screen and (max-width: 992px) {
  .footer_list {
    margin-top: 30px;
  }
}

.copy_bgcolor {
  background-color: #fff !important;
  padding: 15px;
}
.cpoyright_text h2 {
  text-align: center;
  font-size: 15px;
  color: #000;
  margin: 0px;
}
.cpoyright_text h2 a {
  text-decoration: underline;
  color: #000;
}

.breadcrumb-banner {
  position: relative;

  background-image: url("assets/images/home-page/breadcrumb.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 120px 0;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.breadcrumb-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 44, 69, 0.55);
  z-index: 1;
}

.banner-content {
  position: relative;
  z-index: 2;
}

.custom-breadcrumb {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  font-family: Arial, sans-serif;
}

.custom-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.custom-breadcrumb a:hover {
  opacity: 1;
  text-decoration: underline;
}
.separator {
  width: 2%;
}
.custom-breadcrumb .separator img {
  width: 35%;
}
.custom-breadcrumb .separator {
  margin: 0 10px;
  font-size: 13px;
  display: inline-block;
  vertical-align: middle;
}

.custom-breadcrumb .current-page {
  color: #ffffff;
  opacity: 0.9;
}

.banner-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .breadcrumb-banner {
    padding: 80px 0;
  }
  .banner-title {
    font-size: 34px;
  }
  .custom-breadcrumb {
    font-size: 14px;
  }
}

.about_us_page_bgcolor {
  background-color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.about-header {
  padding-bottom: 30px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.main-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 45px;

  font-weight: 500;
  color: #111111;
}

.header-desc-box {
  border-left: 1px solid #ccc;
  padding-left: 25px;
}

.header-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
}

.about-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.stat-box {
  background-color: #c41629;
  color: #ffffff;
  padding: 25px 30px;
  margin-bottom: 20px;
  border-radius: 2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stat-box:last-child {
  margin-bottom: 0;
}

.stat-info h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}

.stat-info p {
  font-size: 13px;
  margin: 0;
  opacity: 0.9;
  letter-spacing: 0.3px;
}

.stat-icon {
  font-size: 36px;
  opacity: 0.85;
}

@media (max-width: 767.98px) {
  .header-desc-box {
    border-left: none;
    padding-left: 0;
    margin-top: 15px;
  }
  .main-title {
    font-size: 28px;
  }
  .stat-box {
    padding: 20px;
  }
  .stat-info h2 {
    font-size: 26px;
  }
}

.history-section {
  padding: 0px 0px 80px;
}

.history-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.history-content {
  padding-left: 20px;
}

.history-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 30px;
}

.history-text {
  font-size: 14.5px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 25px;
}

.stats-banner {
  background-color: #c41629;
  color: #ffffff;
  padding: 45px 0;
}

.stat-item {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 20px;
}

.row > div:last-child .stat-item {
  border-right: none;
}

.stat-number {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1;
}

.stat-label {
  font-size: 13.5px;
  font-weight: normal;
  line-height: 1.5;
  opacity: 0.95;
  max-width: 200px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .history-content {
    padding-left: 0;
  }
  .history-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  .row > div:last-child .stat-item {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .stat-number {
    font-size: 36px;
  }
}

.mission-section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  /* font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  font-weight: 500;
  color: #111111; */
  margin-bottom: 15px !important;
}

.timeline-container {
  position: relative;
}

.timeline-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #e0e0e0;
  transform: translateX(-50%);
  z-index: 1;
}

.mission-row {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.block-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: #111111;
  margin-bottom: 12px;
  position: relative;
}

.block-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.mission-img-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2px;
}

.left-content-box {
  padding-right: 40px;
}

.left-content-box .block-title::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #e0e0e0;
}

.right-content-box {
  padding-left: 40px;
}

.right-content-box .block-title::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 50%;
  width: 30px;
  height: 1px;
  background-color: #e0e0e0;
}

@media (max-width: 991.98px) {
  .timeline-container::before,
  .left-content-box .block-title::after,
  .right-content-box .block-title::before {
    display: none;
  }

  .left-content-box {
    padding-right: 15px;
    text-align: left !important;
  }

  .right-content-box {
    padding-left: 15px;
  }

  .mission-row {
    margin-bottom: 50px;
  }
}

.our_identity {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.our_identity .section-title {
  font-family: "Playfair Display", serif;
  color: #0f172a;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 24px;

  line-height: 55px;
}

.our_identity .sub-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e293b;
  margin-top: 24px;
  margin-bottom: 12px;
}

.our_identity p {
  font-size: 16px;
  line-height: 28px;
  color: #475569;
}

.our_identity .custom-list {
  list-style: none;
  padding-left: 0px;
}

.our_identity .custom-list li {
  position: relative;

  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 500;
  color: #334155;
}

.our_identity .img-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 20px 40px rgba(15, 23, 42, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 100%;
}

.our_identity .img-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0px 30px 50px rgba(15, 23, 42, 0.12);
}

.our_identity .identity-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.our_identity .identity-img-secondary {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.our_identity .badge-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.03);
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.3s ease;
}

.our_identity .badge-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.06);
}

.our_identity .badge-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
}

.our_identity .row-gap-divider {
  margin-bottom: 80px;
  padding-bottom: 20px;
}

@media (max-width: 991.98px) {
  .our_identity {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .our_identity .section-title {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 18px;
  }
  .our_identity .identity-img,
  .our_identity .identity-img-secondary {
    height: 380px;
  }
  .row-reverse-mobile {
    flex-direction: column-reverse;
  }
  .our_identity .row-gap-divider {
    margin-bottom: 50px;
    padding-bottom: 0px;
  }
  .cards-container {
    padding-bottom: 50px !important;
  }
  .img-wrapper_margin_top {
    margin-top: 30px;
  }
}

@media (max-width: 575.98px) {
  .section-title_top_margin {
    margin-top: 30px;
  }
  .our_identity {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .our_identity .section-title {
    font-size: 26px;
    line-height: 34px;
    text-align: center;
  }
  .our_identity p {
    font-size: 15px;
    line-height: 26px;
    text-align: justify;
  }
  .our_identity .identity-img {
    height: 280px;
  }
  .our_identity .identity-img-secondary {
    height: 250px;
  }
  .our_identity .badge-card {
    padding: 20px 15px;
  }
  .our_identity .badge-icon-wrapper {
    font-size: 48px;
  }
  .row-reverse-mobile-secondary {
    flex-direction: column-reverse;
  }
}

.custom-list li img {
  width: 3%;
}

.lms_overview {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #ffffff;
}

.lms_overview .section-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2b6cb0;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.lms_overview .section-title {
  font-family: "Playfair Display", serif;
  color: #0f172a;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 55px;
}

.lms_overview p.lead-text {
  font-size: 18px;
  line-height: 30px;
  color: #1e293b;
  font-weight: 500;
}

.lms_overview p {
  font-size: 16px;
  line-height: 28px;
  color: #475569;
}

.lms_overview .stats-wrapper {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 40px;
  color: #ffffff;
  margin-top: 50px;
  margin-bottom: 60px;
  box-shadow: 0px 20px 40px rgba(15, 23, 42, 0.15);
}

.lms_overview .stat-box {
  text-align: center;
}

.lms_overview .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #38bdf8;
  margin-bottom: 8px;
}

.lms_overview .stat-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8;
}

.lms_overview .pillar-card {
  background: #f8fafc;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #e2e8f0;
  height: 100%;
  transition: all 0.3s ease;
}

.lms_overview .pillar-card:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  box-shadow: 0px 15px 30px rgba(15, 23, 42, 0.05);
  transform: translateY(-5px);
}

.lms_overview .pillar-icon {
  font-size: 32px;
  color: #2b6cb0;
  margin-bottom: 20px;
  display: inline-block;
}

.lms_overview .pillar-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
}

.lms_overview .img-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08);
}

.lms_overview .overview-img {
  width: 100%;
  height: 347px;
  object-fit: cover;
}

.lms_overview .custom-hr {
  border-top: 1px solid #e2e8f0;
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (max-width: 991.98px) {
  .lms_overview {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .lms_overview .section-title {
    font-size: 30px;
    line-height: 40px;
  }
  .lms_overview .overview-img {
    height: 380px;
  }
  .mobile-column-reverse {
    flex-direction: column-reverse;
  }
  .lms_overview .stat-box {
    margin-bottom: 30px;
  }
  .lms_overview .stat-box:last-child {
    margin-bottom: 0px;
  }
}

@media (max-width: 575.98px) {
  .lms_overview {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .lms_overview .section-title {
    font-size: 26px;
    line-height: 34px;
    text-align: center;
  }
  .lms_overview .section-tag {
    text-align: center;
  }
  .lms_overview p {
    text-align: justify;
    font-size: 15px;
  }
  .lms_overview .stats-wrapper {
    padding: 30px 20px;
  }
  .lms_overview .pillar-card {
    padding: 24px 20px;
  }
}

.our_foundation_bgcolor {
  padding: 80px 0px 0px;
}

/* ------------------certified-css-start--------------------------- */

.certified {
  padding-top: 80px;
  padding-bottom: 80px;
}

.certified .section-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2b6cb0;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.certified .section-title {
  font-family: "Playfair Display", Georgia, serif;
  color: #1a2530;
  font-size: 55px;
  line-height: 1.2;
  font-weight: 500;
  margin: 0;
  text-align: center;
}

.certified .section-desc {
  font-size: 16px;
  line-height: 28px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.certified .course-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2e8f0;

  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-right: 12px;
}

.certified .course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0px 20px 40px rgba(15, 23, 42, 0.09);
  border-color: #cbd5e1;
}

.certified .card-img-box {
  position: relative;
  overflow: hidden;
  height: 220px;
  width: 100%;
}

.certified .course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.certified .course-card:hover .course-img {
  transform: scale(1.05);
}

.certified .badge-premium {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #c21629;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certified .card-info-body {
  padding: 26px;
}

.certified .course-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 14px;
  font-weight: 500;
}

.certified .course-meta i {
  color: #2b6cb0;
  margin-right: 6px;
}

.certified .course-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
  color: #1a2530;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 13px;
  flex-grow: 1;
}

.certified .course-text {
  font-size: 15px;
  line-height: 24px;
  color: #475569;
  margin-bottom: 24px;
}

.certified .btn-course-details {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #f1f5f9;
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.certified .btn-course-details:hover {
  background: #2b6cb0;
  color: #ffffff;
  box-shadow: 0px 8px 20px rgba(43, 108, 176, 0.25);
}

@media (max-width: 991.98px) {
  .certified {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .certified .section-title {
    font-size: 32px;
    line-height: 42px;
  }
  .certified .card-img-box {
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .certified {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .certified .section-title {
    font-size: 26px;
    line-height: 34px;
  }
  .certified .section-desc {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 40px;
  }
  .certified .card-info-body {
    padding: 20px;
  }
  .certified .course-title {
    font-size: 18px;
    line-height: 26px;
  }
}

/* ------------------certified-css-end--------------------------- */

/* ------------------membership-start--------------------------- */

.card-icon-badge img {
  width: 56%;
}
.premium-wrapper {
  padding: 80px 0;
}

.section-header-center {
  margin-bottom: 90px;
}

.main-title {
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.5px;
  font-size: 36px;
  position: relative;
  display: inline-block;
}

.custom-divider-line {
  margin-top: 50px;
  margin-bottom: 80px;
  border-top: 1px solid #e2e8f0;
}

.membership-grid {
  padding-top: 20px;
}

.tier-card-col {
  margin-bottom: 40px;
}

.luxury-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  padding: 32px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.luxury-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  border-color: rgb(175 175 175 / 30%);
}

.luxury-card::after {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(194, 155, 56, 0.05) 0%,
    transparent 70%
  );
  transition: all 0.4s;
}

.luxury-card:hover::after {
  scale: 1.5;
}

.card-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  transition: all 0.3s;
}

.tier-title {
  font-family: "Playfair Display", Georgia, serif;
  color: #1a2530;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #0f172a;
}

.tier-abbr {
  font-size: 12px;
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 600;
  color: #64748b;
}

.tier-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
}

.membership_bgcolor_blue {
  background-color: #0f2d4a !important;
  color: #ffffff !important;
}
.membership_bgcolor_gold {
  background-color: #0f2d4a !important;
  color: #ffffff !important;
}
.membership_bgcolor_dark {
  background: linear-gradient(135deg, #091522 0%, #030a12 100%) !important;
}

.btn-luxury-action {
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  padding: 10px 16px;
  transition: all 0.3s;
}

.luxury-card:hover .btn-luxury-action {
  background-color: #c21628;
  color: #ffffff;
  border-color: #b1b1b1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.feature-showcase-row {
  margin-bottom: 40px;
}

.feature-panel-col {
  margin-bottom: 30px;
}

.minimal-feature-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  transition: all 0.3s;
  height: 100%;
}

.minimal-feature-card h5 {
  margin-top: 20px;
  font-family: "Playfair Display", Georgia, serif;
}
.minimal-feature-card img {
  width: 18%;
}

.feature-avatar-icon {
  font-size: 24px;
  color: #c29b38;
  margin-bottom: 20px;
  display: block;
}

.presence-dashboard-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.dashboard-map-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
  background: #f8fafc;
  padding: 10px;
}

.dashboard-map-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(20%) brightness(96%);
}

.luxury-country-item {
  background: #f8fafc;
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.luxury-country-item:hover {
  background: #ffffff;
  border-color: #e2e8f0;
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.flag-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 16px;
  border: 2px solid #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.view-all-link-btn {
  background: none;
  border: none;
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}

.view-all-link-btn:hover {
  color: #c29b38;
  gap: 12px;
}

.partner-marquee-title {
  font-size: 12px;
  letter-spacing: 2px;
  color: #94a3b8;
  margin-bottom: 50px;
}

.partner-minimal-text {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}

.partner-minimal-text:hover {
  color: #c29b38;
}

.split-testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.6);
}

.quote-mark-icon {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 28px;
  color: #f1f5f9;
}

.testimonial-user-title {
  font-size: 13px;
  color: #c29b38;
  font-weight: 600;
}

.btn-footer-gold:hover {
  background-color: #af872f;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ------------------membership-end --------------------------- */

/* ------------------student-start--------------------------- */
.students {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.students .section-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2b6cb0;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.students .section-title {
  font-family: "Playfair Display", serif;
  color: #0f172a;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 48px;
}

.students .section-desc {
  font-size: 16px;
  line-height: 28px;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.students .student-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0px 10px 30px rgba(15, 23, 42, 0.03);
  text-align: center;
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.students .student-box:hover {
  transform: translateY(-6px);
  box-shadow: 0px 20px 40px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.students .icon-wrapper {
  width: 70px;
  height: 70px;
  background: #f1f5f9;
  color: #2b6cb0;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 26px auto;
  font-size: 26px;
  transition: all 0.4s ease;
}

.students .student-box:hover .icon-wrapper {
  background: #2b6cb0;
  color: #ffffff;
  transform: rotate(-10deg);
}

.students .feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  line-height: 28px;
}

.students .feature-text {
  font-size: 15px;
  line-height: 24px;
  color: #475569;
  margin-bottom: 24px;
}

.students .student-link {
  font-size: 14px;
  font-weight: 600;
  color: #2b6cb0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.students .student-link i {
  margin-left: 6px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.students .student-box:hover .student-link {
  color: #1d4ed8;
}

.students .student-box:hover .student-link i {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {
  .students {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .students .section-title {
    font-size: 32px;
    line-height: 42px;
  }
  .students .student-box {
    padding: 35px 24px;
    margin-bottom: 20px;
  }
}

@media (max-width: 575.98px) {
  .students {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .students .section-title {
    font-size: 26px;
    line-height: 34px;
  }
  .students .section-desc {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 40px;
  }
  .students .feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}
/* ------------------student-end--------------------------- */

/* ------------------partners-start--------------------------- */

.partners {
  padding-top: 80px;
  padding-bottom: 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.partners .section-tag {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #2b6cb0;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.partners .section-title {
  font-family: "Playfair Display", serif;
  color: #0f172a;
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 48px;
}

.partners .section-desc {
  font-size: 16px;
  line-height: 28px;
  color: #64748b;
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.partners .partner-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 40px 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0px 8px 24px rgba(15, 23, 42, 0.02);
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.partners .partner-box:hover {
  transform: translateY(-5px);
  box-shadow: 0px 20px 35px rgba(15, 23, 42, 0.06);
  border-color: #cbd5e1;
}

.partners .partner-logo-container {
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.partners .partner-box:hover .partner-logo-container {
  filter: grayscale(0%);
  opacity: 1;
}

.partners .partner-logo-text {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1e293b;
}

.partners .partner-badge {
  font-size: 11px;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.partners .partner-box:hover .partner-badge {
  background: #e0f2fe;
  color: #0369a1;
}

.partners .partner-info {
  font-size: 14px;
  line-height: 22px;
  color: #64748b;
  margin-bottom: 0px;
}

@media (max-width: 991.98px) {
  .partners {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .partners .section-title {
    font-size: 32px;
    line-height: 42px;
  }
  .partners .partner-box {
    padding: 30px 15px;
    margin-bottom: 24px;
  }
}

@media (max-width: 575.98px) {
  .partners {
    padding-top: 45px;
    padding-bottom: 45px;
  }
  .partners .section-title {
    font-size: 26px;
    line-height: 34px;
  }
  .partners .section-desc {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 40px;
  }
}

/* ------------------partners-end--------------------------- */

.profile_bgcolor {
  padding: 80px 0px 80px;
}

.profile-card {
  background: #ffffff;
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  overflow: hidden;
}
.profile-header {
  background: linear-gradient(135deg, #07254c 0%, #2a5298 100%);
  color: white;
  padding: 30px;
  position: relative;
}
.profile-img-container {
  width: 130px;
  height: 130px;
  border: 5px solid white;
  border-radius: 10px;
  overflow: hidden;
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.profile-img-container i {
  font-size: 4rem;
  color: #adb5bd;
}
.id-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.digital-badge-box {
  border: 2px dashed #2a5298;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  background: #f8fafc;
  transition: all 0.3s ease;
}
.digital-badge-box:hover {
  background: #edf2f7;
  transform: translateY(-2px);
}
.badge-icon {
  font-size: 2.5rem;
  color: #ffc107;
  margin-bottom: 8px;
}
.info-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #6c757d;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}
.info-value {
  font-size: 1.05rem;
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 15px;
}
.section-title {
  display: flex;
  align-items: center;
}
.section-title i {
  margin-right: 8px;
}
.content-box {
  background: #f8fafc;
  border-left: 4px solid #2a5298;
  padding: 15px;
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
}

.section-title img {
  width: 3%;
  margin-right: 10px;
}

.briefcase_icon img {
  width: 5%;
  margin-right: 6px;
}

.badge-icon img {
  width: 22%;
}

/* -------------------sabmenu-navbar-css------------------------- */

@media (min-width: 992px) {
  .sub-dropdown {
    position: relative;
  }

  .sub-dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 2px 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    padding: 5px 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
  }

  .sub-dropdown:hover .sub-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

@media (max-width: 991px) {
  .sub-dropdown-menu {
    display: none;
    background-color: #eaeaea;
    padding-left: 15px;
  }

  .sub-dropdown.active .sub-dropdown-menu {
    display: block;
  }
}

/* -------------------sabmenu-navbar-css------------------------- */

.authorization_bgcolor {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.auth-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  background: #ffffff;
}

.auth-header {
  background: #ffffff;
  border-bottom: none;
  padding-top: 30px;
}

.auth-title {
  font-weight: 700;
  color: #333;
}

.form-control {
  border-radius: 30px;
  padding: 1.5rem 1.2rem;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: 0 0 10px rgba(42, 82, 152, 0.2);
  border-color: #2a5298;
}

.input-group-text {
  background: transparent;
  border: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #aaa;
}

.position-relative {
  position: relative;
}

.btn-auth {
  background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-auth:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 82, 152, 0.4);
}

.auth-links a {
  color: #2a5298;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-links a:hover {
  color: #1e3c72;
  text-decoration: underline;
}

.autorization_bgcolor {
  background: linear-gradient(135deg, #1f4068 0%, #162447 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  padding: 20px 0;
}

.Accerdation {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border: none;
  transition: transform 0.3s ease;
}

.accreditation-header {
  background: #e4f1fe;
  color: #1f4068;
  padding: 25px;
  text-align: center;
  border-bottom: 2px solid #cbdcf0;
}

.badge-icon {
  font-size: 3rem;
  color: #e9b10a;
  margin-bottom: 10px;
}

.form-control {
  border-radius: 8px;
  padding: 1.2rem 1rem;
  border: 1px solid #ced4da;
}

.form-control:focus {
  box-shadow: 0 0 10px rgba(31, 64, 104, 0.2);
  border-color: #1f4068;
}

.custom-file-upload {
  border: 2px dashed #cbdcf0;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  background: #f8f9fa;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-file-upload:hover {
  background: #e4f1fe;
  border-color: #1f4068;
}

.btn-submit {
  background: #1f4068;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-submit:hover {
  background: #162447;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.premium-wrapper {
  background: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  border: 1px solid #f0f0f0;
}

.country-card {
  background: #fafafa;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  user-select: none;
}

.country-card:hover {
  background: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  border-color: #e2e8f0;
}

.country-card.active-card {
  background: #ffffff;
  border-color: #007bff;
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.1);
}

.flag-icon {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-right: 15px;
  flex-shrink: 0;
}

.country-title {
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 2px;
}

.country-desc {
  font-size: 13px;
  color: #718096;
  font-weight: 400;
}

.logo-display-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 40px 20px;
  margin-top: 30px;
  border: 1px dashed #cbd5e0;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.2s ease;
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  animation: fadeIn 0.4s ease forwards;
}

.logo-item {
  width: 140px;
  height: 70px;
  background: #f8fafc;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 1px solid #edf2f7;
  transition: transform 0.2s ease;
}

.logo-item:hover {
  transform: scale(1.05);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.container_main_top {
  padding-top: 80px;
}

.header-row_gap {
  padding-top: 80px;
}

.section-header {
  padding: 0px 0 30px;
  text-align: center;
}

.section-subtitle {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-color);
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 24px;
  margin-bottom: 20px;
}

.value-card {
  background: #ffffff;
  border: 1px solid rgb(177 177 177 / 25%);
  border-radius: 12px;
  padding: 40px 30px;
  margin-bottom: 30px;
  position: relative;
  box-shadow: 0 10px 25px rgba(13, 35, 58, 0.03);
  height: 100%;
}

.icon-box {
  width: 65px;
  height: 65px;
  background-color: #0f2d4a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--accent-color);
  margin-bottom: 25px;
}

.card-number {
  position: absolute;
  top: 25px;
  right: 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #121212;
  opacity: 0.6;
}

.card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
  margin-bottom: 15px;
}

.card-text {
  font-size: 15px;
  line-height: 1.7;

  margin-bottom: 0;
}

.cards-container {
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  .custom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.icon-box img {
  width: 56%;
}

.custom-list_our_view {
  list-style: none;
  padding-left: 0px;
}
.custom-list_our_view li {
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
}
.custom-list_our_view li img {
  width: 3%;
}

.section-padding {
  padding: 80px 0;
}
.section-title {
  position: relative;
  padding-bottom: 15px;
}

.study-areas {
  background-color: #f4f7f6;
  border-radius: 10px;
  padding: 40px;
}
.list-item {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}
.list-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.list-item span {
  font-weight: 500;
  color: #333;
}

.vision-box {
  background: linear-gradient(135deg, #0b2545, #134074);
  color: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 37, 69, 0.2);
}
.vision-box h3 {
  font-weight: 600;
  margin-bottom: 15px;
}
.vision-box p {
  color: #e0e0e0;
  margin-bottom: 0;
}

.about-img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 350px;
}

.row_padding_top {
  margin-top: 60px;
}

.row_padding_bottom {
  padding: 80px 0px 80px;
}
.about_lms {
  text-align: justify;
}
.text-left {
  color: #334155;
  line-height: 24px;
  margin-bottom: 0px;
}

.margin_text_center {
  margin: auto;
  display: block;
}

.membership-container {
  max-width: 850px;
  margin: 50px auto 0px;
  padding: 20px;
}
.main-title {
  font-weight: 700;
  color: #0f2d59;
  position: relative;
  padding-bottom: 12px;
}

.section-heading {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-top: 35px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
}
.section-heading i {
  margin-right: 10px;
  font-size: 19px;
  color: #c51629;
}
.accordion-toggle-btn span i {
  color: #06234c !important;
}

.custom-accordion .card {
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.custom-accordion .card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}
.custom-accordion .card-header {
  background-color: #ffffff;
  border-bottom: none;
  padding: 0;
}
.custom-accordion .accordion-toggle-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  font-weight: 500;
  color: #475569;
  text-decoration: none !important;
  background: none;
  border: none;
  transition: all 0.25s ease;
  text-align: left;
  cursor: pointer;
}

.custom-accordion .card.is-open {
  border-color: #3b82f6;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}
.custom-accordion .card.is-open .accordion-toggle-btn {
  background-color: #eff6ff;
  color: #000000;
  font-weight: 600;
}

.custom-accordion .accordion-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.25s ease;
}

.custom-accordion .accordion-icon-box::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #94a3b8;
  font-size: 16px;
}

.custom-accordion .card.is-open .accordion-icon-box::before {
  content: "\f068";
  color: #3b82f6;
}

.card-body {
  background-color: #ffffff;
  color: #4b5563;
  line-height: 1.7;
  padding: 24px 24px;
  border-top: 1px solid #f1f5f9;
  font-size: 15px;
}

.benefit-card {
  text-align: right;
}

.member_ship_portal_heading h2 {
  font-family: "Playfair Display", serif;
  color: #0f172a;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 55px;
}

.membership_bgcolor {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
}

.view-all-btn_click {
  background-color: #c21629;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 4px;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s ease;
}

.view-all-btn_click:hover {
  background-color: #b81d1e;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(227, 37, 38, 0.3);
}

.accordion-toggle-btn span i {
  color: #06234c !important;
}

.custom-accordion .card {
  border: 1px solid #e2e8f0;
  margin-bottom: 12px;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.custom-accordion .card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}
.custom-accordion .card-header {
  background-color: #ffffff;
  border-bottom: none;
  padding: 0;
}
.custom-accordion .accordion-toggle-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 24px;
  font-weight: 500;
  color: #475569;
  text-decoration: none !important;
  background: none;
  border: none;
  transition: all 0.25s ease;
  text-align: left;
  cursor: pointer;
}

.custom-accordion .card.is-open {
  border-color: #3b82f6;
  box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1);
}
.custom-accordion .card.is-open .accordion-toggle-btn {
  background-color: #eff6ff;
  color: #000000;
  font-weight: 600;
}

.custom-accordion .accordion-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  transition: all 0.25s ease;
}

.custom-accordion .accordion-icon-box::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #94a3b8;
  font-size: 18px;
}

.custom-accordion .card.is-open .accordion-icon-box::before {
  content: "\f107";
  color: #3b82f6;
}

.card-body {
  background-color: #ffffff;
  color: #4b5563;
  line-height: 1.7;
  padding: 24px 24px;
  border-top: 1px solid #f1f5f9;
  font-size: 15px;
}

.benefit-card {
  text-align: right;
}

.member_ship_portal_heading h2 {
  font-family: "Playfair Display", serif;
  color: #0f172a;
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 55px;
}
.custom-accordion .accordion-icon-box::before {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #94a3b8;
  font-size: 18px;
}

.custom-accordion .card.is-open .accordion-icon-box::before {
  content: "\f107";
  color: #3b82f6;
}

.about_list {
  background-color: #f8f9fa;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 17px;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about_list p {
  margin: 0px;
  padding: 0px;
  font-size: 13px;
}

.about_list_top {
  margin-top: 20px;
}

/* ------------------form-start-------------------- */

.london_aplication_form {
  background: #ffffff;
  padding: 45px;
  border-radius: 8px;
  box-shadow: 0px 4px 20px rgba(0, 32, 96, 0.08);
  border-top: 5px solid #002060;
  margin-top: 80px;
  margin-bottom: 80px;
}

.london_aplication_form .section-title {
  font-size: 18px;
  font-weight: 700;
  color: #970212;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 22px;
  margin-top: 10px;
}

.london_aplication_form hr {
  border-top: 1px solid #eef1f5;
  margin-top: 25px;
  margin-bottom: 25px;
}

.london_aplication_form label {
  font-size: 14px;
  font-weight: 600;
  color: #4a5568;
  margin-bottom: 8px;
}

.london_aplication_form label .text-danger {
  color: #dc3545 !important;
}

.london_aplication_form .form-control,
.london_aplication_form .custom-select {
  height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 14px;
  color: #495057;
  padding-left: 15px;
  padding-right: 15px;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
}

.london_aplication_form .form-control:focus,
.london_aplication_form .custom-select:focus {
  border-color: #002060;
  box-shadow: 0px 0px 0px 3px rgba(0, 32, 96, 0.15);
  color: #1a202c;
}

.london_aplication_form .btn-submit {
  background-color: #c21629;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 4px;
  text-transform: uppercase;

  font-size: 15px;
  letter-spacing: 0.8px;
  border: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.london_aplication_form .btn-submit:hover {
  background-color: #b81d1e;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(227, 37, 38, 0.3);
}

.london_aplication_form .custom-checkbox .custom-control-label {
  font-size: 14px;
  color: #4a5568;
  cursor: pointer;
  padding-top: 2px;
  user-select: none;
}

.london_aplication_form
  .custom-control-input:checked
  ~ .custom-control-label::before {
  background-color: #002060;
  border-color: #002060;
}

@media (max-width: 767px) {
  .london_aplication_form {
    padding: 25px 20px;
  }
  .london_aplication_form .btn-submit {
    width: 100%;
  }
}

/* ------------------form-start-------------------- */

.london_course-main-title {
  font-size: 28px;
  font-weight: 800;
  color: #1f2937;
  letter-spacing: -0.5px;
}

.london_course-card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.london_course-img-thumb {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #f3f4f6;
  position: relative;
}

.london_course-img-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.london_course-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.08);
}

.london_course-card:hover .london_course-img-thumb img {
  transform: scale(1.06);
}

.london_course-header-split {
  padding: 24px;
  background: #fbfbfc;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.london_course-heading {
  font-size: 19px;
  font-weight: 500;
  font-family: "Playfair Display", Georgia, serif;
  text-transform: uppercase;
  line-height: 1.4;
  color: #111827;
  margin: 0;
}

.london_course-body-panel {
  padding: 24px;
  flex-grow: 1;
}

.london_course-stream {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.london_course-stream li {
  font-size: 14px;
  color: #4b5563;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  transition: all 0.25s ease;
  font-family: "Poppins", sans-serif;
}

.london_course-stream li:last-child {
  border-bottom: none;
}

.london_course-stream li:hover {
  color: #000000;
  padding-left: 5px;
}

.stream-idx {
  font-size: 11px;
  font-weight: 700;
  color: #6b7280;
  margin-right: 12px;
  background: #f3f4f6;
  padding: 2px 7px;
  border-radius: 4px;
  display: inline-block;
  margin-top: 2px;
  transition: all 0.2s ease;
}

.london_course-stream li:hover .stream-idx {
  color: #ffffff;
  background: #111827;
}

.accent-blue {
  border: 1px solid #011d4554;
}

@media (max-width: 576px) {
  .london_course-main-title {
    font-size: 22px;
  }
  .london_course-img-thumb {
    height: 150px;
  }
  .london_course-header-split {
    padding: 18px;
  }
  .london_course-body-panel {
    padding: 18px;
  }
}

.card_btn {
  text-align: center;
  margin-top: 20px;
}

.card_btn a {
  background-color: #c21629;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 25px;
  border-radius: 4px;
  border: none;
  font-size: 13px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  display: inline-block;
  transition: all 0.3s ease;
}
.card_btn a:hover {
  text-decoration: none;
}

.card_course_heading h2 {
  color: #011d45;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
}

.info-card h2 {
  font-size: 24px;
  color: #1d3557;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 8px;
}

.info-card p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #555555;
}

.intro-text {
  font-size: 18px;
  color: #222222;
  font-weight: 500;
}

.suitability {
  font-style: italic;
  color: #666666;
}

.section-divider {
  border: 0;
  height: 1px;
  background: #e0e0e0;
  margin: 30px 0;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.info-card {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 6px;
  border-left: 4px solid #1d3557;
}

.content-section {
  margin-bottom: 35px;
}

.horizontal-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
  padding: 0px;
}

.horizontal-list li {
  font-size: 15px;

  color: #333333;
  padding: 8px 16px;
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.horizontal-list li::before {
  content: "✓";
  margin-right: 8px;
  color: #cd5058;
  font-weight: bold;
}

.objectives-list li {
  background: #fafafa;

  border-radius: 4px;
}

.completion-box {
  background: #e6f2ff;
  padding: 25px;
  border-radius: 6px;
  border: 1px solid #b3d7ff;
  margin-bottom: 35px;
}

.completion-box h2 {
  color: #004085;
}

blockquote {
  font-size: 17px;
  border-left: 4px solid #e63946;
  padding-left: 20px;
  margin-top: 15px;
  font-style: italic;
  color: #4a4a4a;
}

@media (max-width: 768px) {
  .card_course_heading h1 {
    font-size: 30px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .horizontal-list {
    flex-direction: column;
    gap: 8px;
  }

  .horizontal-list li {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .card_course_heading h1 {
    font-size: 26px;
  }

  .info-card h2 {
    font-size: 20px;
  }

  .info-card p {
    font-size: 15px;
  }
}

.cta-banner-section {
  min-height: 480px;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 20px;
  padding-right: 20px;

  background-image: linear-gradient(rgb(0 0 0 / 65%), rgb(0 0 0 / 51%)),
    url(./assets/images/home-page/bottom-cta-1.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.cta-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-top: 0;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 850px;
  font-weight: 400;
}

.cta-subnote {
  font-size: 15px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
}

.btn-read-more {
  background-color: #c21629;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 45px;
  padding-right: 45px;
  border-radius: 4px;
  border-style: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-read-more:hover {
  background-color: #c21629;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}

@media (max-width: 991px) {
  .cta-banner-section {
    min-height: 420px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .card_course_heading h1 {
    font-size: 34px;
  }
  .content-section h2 {
    font-size: 23px;
  }
  .card_course_heading h2 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .cta-banner-section {
    min-height: auto;
    padding-top: 45px;
    padding-bottom: 45px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .card_course_heading h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .cta-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .cta-subnote {
    font-size: 14px;
    margin-bottom: 25px;
  }

  .btn-read-more {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 35px;
    padding-right: 35px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .card_course_heading h1 {
    font-size: 24px;
  }
}

.content-section h2 {
  font-size: 30px;
}

.content-section .diploma_margin-b {
  margin-bottom: 20px;
}

.card_course_heading_b h2 {
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 52px;
}


/* ------------CONTACT-US-START------------------------ */


        .contact-section {
    padding: 80px 0;
}

.wrapper {
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}


.info-wrap {
       background: linear-gradient(135deg, #0b2545, #134074);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.font-weight-500 {
    font-weight: 500;
}

.dbox {
    width: 100%;
    margin-bottom: 25px;
}

.dbox .icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}


.contact-wrap {
    background: #fff;
}

.color-primary {
    color: #1e3c72;
}

.form-group .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-control {
    height: 45px;
    background: #f7f9fc;
    color: #333;
    font-size: 14px;
    border-radius: 6px;
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: #fff;
    border-color: #2a5298;
    box-shadow: 0 0 0 0.2rem rgba(42, 82, 152, 0.15);
}

textarea.form-control {
    height: inherit !important;
}

.btn-custom {
   background-color: #c21629;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 38px;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-custom:hover {
       background-color: #b81d1e;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(227, 37, 38, 0.3);
}


@media (max-width: 767.98px) {
    .contact-section {
        padding: 40px 0;
    }
    .info-wrap {
        border-radius: 0;
    }
    .no-gutters {
        display: flex;
        flex-direction: column-reverse; 
    }
}

.contact-wrap h3{
  font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.info-wrap h3{
  font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}


/* ------------CONTACT-US-END------------------------ */










.icon-box i {
    color: #fff;
    font-size: 30px;
}

.feature-card {
  transition: transform 0.3s ease, shadow 0.3s ease;
  border-radius: 12px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}


.pathway-card {
  border-radius: 12px;
  transition: border-color 0.3s ease;
  border-left: 4px solid #0d3b66 !important;
}

.pathway-card:hover {
     border-left-color: #980211 !important;
}


.custom-accordion .btn-link {
  text-decoration: none;
  font-size: 1.1rem;
}

.custom-accordion .btn-link:focus {
  text-decoration: none;
  box-shadow: none;
}


.form-control {
  height: 48px;
  border-radius: 8px;
}

.form-control:focus {
  border-color: #0d3b66;
  box-shadow: 0 0 0 0.2rem rgba(13, 59, 102, 0.25);
}

.icon_color i{
     color: #980211;
}









.pathway-section {
      padding: 60px 0;
    }

    .section-title {
      font-weight: 700;
      letter-spacing: 1px;
      color: #0d2149;
    }

    /* Program Cards */
    .program-card_main {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 4px solid #0d2149;
    }

    .program-card_main:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }

    .program-icon {
      width: 60px;
      height: 60px;
      background: #eef2f7;
      color: #0d2149;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin-bottom: 20px;
    }

    .list-custom {
      list-style: none;
      padding-left: 0;
    }

    .list-custom li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 12px;
      color: #555;
      font-size: 15px;
    }

    .list-custom li i {
      position: absolute;
      left: 0;
      top: 3px;
      color: #28a745;
    }

    .btn-custom {
      background-color: #c21629;
    color: #ffffff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    transition: all 0.3s ease;
    }

    .btn-custom:hover {
         background-color: #b81d1e;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(227, 37, 38, 0.3);
    }

   .program-card_main h3{
        font-family: "Playfair Display", Georgia, serif;
   }
   .key_course_head{
     font-family: "Playfair Display", Georgia, serif;
   }
    .dark-info-card {
      background: #0d2149;
      color: #fff;
      border-radius: 12px;
      padding: 30px;
      height: 100%;
    }

    .dark-info-card h4 {
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 12px;
       font-family: "Playfair Display", Georgia, serif;
    }

    .dark-info-card ul li {
      color: #e0e0e0;
      margin-bottom: 15px;
      font-size: 14px;
    }

    /* Flexible Options Block */
    .flex-option-box {
      background: #fff;
      border-radius: 10px;
      padding: 25px 20px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.04);
      height: 100%;
      text-align: center;
      border: 1px solid #eee;
    }

    .flex-option-box i {
      font-size: 32px;
      color: #0d2149;
      margin-bottom: 15px;
    }


    .need_more{
          margin-top: 14px;
          margin-bottom: 14px;
}

    .need_more a{
         color: #fff;
}

    .need_more a:hover{
       text-decoration: none;
}

.our_education_text{
  color: #fff;
}


.image-card-always_under_graduate {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                url(assets/images/home-page/ser1.jpg);
    background-size: cover;
    background-position: center;
}

.image-card-always_ai_cert {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                url(assets/images/home-page/ser2.jpg);
    background-size: cover;
    background-position: center;
}

.image-card-always_professional_traning {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)),
                url(assets/images/home-page/ser3.jpg);
    background-size: cover;
    background-position: center;
}