/* ==========================================
   Font Family
========================================== */
/* ==========================================
   Color Codes
========================================== */
/* ==========================================
   BREAKPOINTS
========================================== */
/* ==========================================
   SPACING
========================================== */
.common-margin {
  margin-block: clamp(60px, 8vw, 150px);
}
.inner-padding {
  padding-block: clamp(50px, 8vw, 100px);
}
.inner-padding-sm {
  padding-block: clamp(36px, 8vw, 56px);
}
.top-margin {
  margin-top: clamp(36px, 3vw, 56px);
}
.mt-40 {
  margin-top: clamp(20px, 3vw, 40px);
}
.mb-40 {
  margin-bottom: clamp(20px, 3vw, 40px);
}
.m-40 {
  margin-block: clamp(20px, 3vw, 40px);
}
.pb-40 {
  padding-bottom: clamp(20px, 3vw, 40px);
}
.w-lg-auto {
  width: auto;
}
/* ==========================================
   Typography
========================================== */
.hero-heading {
  font-size: clamp(32px, 3vw, 56px);
  font-weight: 700;
  line-height: 1.2;
}
.primary-heading {
  font-size: clamp(22px, 2.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
}
.secondary-heading {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.2;
}
.sub-heading {
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 600;
  line-height: 1.3;
}
.primary-description {
  color: #4A5565;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  margin-bottom: 0px;
}
.primary-description p {
  margin-bottom: 0;
}
.primary-description-sm {
  color: #4A5565;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  margin-bottom: 0px;
}
.primary-description-xs {
  color: #4A5565;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  margin-bottom: 0px;
}
a {
  color: #4A5565;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  color: #FF6B35;
  line-height: 1.5;
  margin-bottom: 0px;
  text-decoration: none !important;
  font-family: "Inter", sans-serif;
}
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.no-wrap {
  white-space: nowrap;
}
/* ==========================================
   Colors
========================================== */
.custom-orange {
  color: #FF6B35 !important;
}
.custom-blue {
  color: #0052CC;
}
.bg-custom-blue {
  background: #0052CC;
}
.bg-custom-primary {
  background: #101828;
}
.custom-white-80 {
  color: rgba(255, 255, 255, 0.8);
}
.custom-divider {
  height: 1px;
  border-radius: 6px;
  border: 1px solid rgba(229, 231, 235, 0.4);
}
.primary-color {
  color: #101828;
}
.secondary-color {
  color: #4A5565;
}
.primary-font {
  font-family: "Arial", sans-serif !important;
}
.secondary-font {
  font-family: "Inter", sans-serif;
}
/* ==========================================
   Buttons
========================================== */
.custom-btn-text {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}
.custom-btn {
  border-radius: 6px;
  background: #FF6B35;
  display: inline-flex;
  border: 1px solid #FF6B35;
  height: 40px;
  padding: 8px clamp(10px, 3vw, 16px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: border 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.custom-btn:hover {
  border: 1px solid #FF6B35;
  background: transparent;
  color: #FF6B35 !important;
}
.custom-btn-outline {
  border-radius: 5px;
  border: 1px solid #fff;
  background: transparent;
  display: inline-flex;
  height: 40px;
  padding: 8px clamp(10px, 3vw, 16px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.custom-btn-outline-black {
  border-radius: 5px;
  border: 1px solid #101828;
  background: transparent;
  display: inline-flex;
  height: 40px;
  padding: 8px clamp(10px, 3vw, 16px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.hero-section {
  background: linear-gradient(135deg, #EFF6FF 0%, #FFF 50%, #FFF7ED 100%);
}
.hero-badge {
  background: #DBEAFE;
  width: fit-content;
  padding: 6px 16px;
}
.hero-badge .dot {
  border-radius: 33554400px;
  opacity: 0.5146;
  background: #0052CC;
  width: 8px;
  height: 8px;
  animation: blueGlow 1.5s ease-in-out infinite;
}
@keyframes blueGlow {
  0% {
    box-shadow: 0 0 5px #0052CC;
  }
  50% {
    box-shadow: 0 0 5px #0052CC, 0 0 10px #0052CC, 0 0 15px #0052CC;
  }
  100% {
    box-shadow: 0 0 5px #0052CC;
  }
}
/* ==========================================
 404
========================================== */
.page-404-wrapper .wrapper-404 {
  transform: rotate(-2deg);
  border-radius: 6px;
  border: 2px solid #0052CC;
  background: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 40px 30px;
  max-width: 380px;
  margin: auto;
}
.page-404-wrapper .wrapper-404 .secondary-heading {
  color: #0E163B;
}
.page-404-wrapper .wrapper-404 .custom-divider {
  background: linear-gradient(274deg, #24AAE1 0.31%, #315091 100%);
  height: 1px;
  display: block;
  width: 100%;
  margin-block: 10px 45px;
}
.page-404-wrapper .wrapper-404 .hero-heading {
  font-size: clamp(120px, 10vw, 160px);
  font-weight: 600;
  line-height: 85%;
}
.page-404-wrapper .error-page-container {
  margin-top: clamp(50px, 10vw, 80px);
}
.page-404-wrapper .error-page-container .dual-buttons {
  margin-top: 40px;
}
/* ==========================================
   Header
========================================== */
body {
  font-family: "Arial", sans-serif;
  padding-top: 154px;
}
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 991px) {
  body.admin-bar {
    padding-top: 115px;
  }
  body {
    padding-top: 115px;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.35s ease;
  will-change: transform;
}
.site-header.hide-header {
  transform: translateY(-100%);
}
.site-header .header-main .navbar-nav {
  gap: clamp(20px, 2vw, 40px);
  padding-block: 30px;
}
.site-header .header-main .navbar {
  gap: 40px;
}
.site-header .header-main .navbar .navbar-toggler:focus {
  box-shadow: none;
}
.site-header .header-main .navbar .nav-link {
  color: #364153;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 0px;
  padding: 0;
}
.site-header .header-main .navbar .nav-link.active, .site-header .header-main .navbar .nav-link.show {
  color: #101828;
}
.site-header .header-main .navbar .nav-link:focus, .site-header .header-main .navbar .nav-link:focus-visible {
  outline: none;
  box-shadow: none;
  background-color: transparent;
}
.main-footer .footer-list-bottom .primary-description::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: clamp(14px, 1.2vw, 18px);
  background: #FFFFFFCC;
  margin-left: 10px;
  position: relative;
  top: 2px;
}
.main-footer .footer-list-bottom li:last-child .primary-description::after {
  content: none;
}
@media (max-width: 575px) {
  .main-footer .footer-list-bottom {
    flex-wrap: wrap;
  }
}
/* ==========================================
   Homepage
========================================== */
.top-reasons .content-wrapper .primary-description {
  max-width: 700px;
  margin: auto;
}
.top-reasons .main-cards-wrapper .card-wrapper {
  padding: clamp(16px, 3vw, 24px) clamp(12px, 3vw, 20px);
  transition: border 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #fff;
}
.top-reasons .main-cards-wrapper .card-wrapper:hover {
  border: 1px solid #0052CC;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.top-reasons .main-cards-wrapper .card-wrapper .icon-box {
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
  width: 56px;
  height: 56px;
  margin-bottom: 36px;
}
.top-reasons .main-cards-wrapper .card-wrapper .primary-description {
  max-width: 375px;
}
.stats-bar .main-wrapper {
  border-radius: 6px;
  background: #0052CC;
}
.stats-bar .main-wrapper .hero-heading {
  font-weight: 700;
}
.gallery-section .marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.gallery-section .marquee-track-ltr {
  display: flex;
  width: max-content;
  animation: scrollRight 35s linear infinite;
  will-change: transform;
  gap: 1rem;
}
.gallery-section .marquee-track-rtl {
  display: flex;
  width: max-content;
  animation: scrollLeft 25s linear infinite;
  will-change: transform;
  gap: 1rem;
}
.gallery-section .single-image, .gallery-section .stacked-images {
  flex-shrink: 0;
}
.gallery-section .stacked-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}
@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.common-faq .accordion-item {
  border-radius: 14px;
  border: 1px solid #E5E7EB;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding-inline: 24px;
}
.common-faq .accordion-item .accordion-button:not(.collapsed) {
  color: #0052CC;
}
.common-faq .accordion-item .accordion-button::after {
  width: 26px;
  height: 26px;
  background-image: url('/wp-content/uploads/2026/05/accordion-icon.svg');
}
.document-checklist {
  background: linear-gradient(135deg, #EFF6FF 0%, #FFF 50%, #FFF7ED 100%);
}
.document-checklist .content-wrapper .primary-description {
  max-width: 450px;
}
.document-checklist .icon-wrapper {
  display: flex;
  flex-shrink: 0;
}
.document-checklist .list-unstyled {
  column-count: 2;
}
.document-checklist .list-unstyled li {
  border-radius: 5px;
  border: 1px solid #E5E7EB;
  padding: 16px;
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .document-checklist .list-unstyled {
    column-count: 1;
  }
}
.embark-journey {
  background: linear-gradient(90deg, #004FFF 0%, #FF6B35 100%);
}
.embark-journey .contact-cards-wrapper {
  max-width: 855px;
  margin-inline: auto;
}
.embark-journey .contact-cards-wrapper .card-wrapper {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.top-ranked-universities {
  background: linear-gradient(180deg, #F9FAFB 0%, #FFF 100%);
}
.top-ranked-universities .university-card {
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.top-ranked-universities .university-card .university-details {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.top-ranked-universities .university-card .star-rating {
  border-radius: 80px;
  background: #FFF;
  padding: 8px 16px;
}
.top-ranked-universities .university-card .key-highlights {
  flex-grow: 1;
}
.top-ranked-universities .university-card .key-highlights .highlight {
  border-radius: 80px;
  background: #EFF6FF;
  padding: 4px 12px;
  white-space: nowrap;
}
.with-overlay {
  position: relative;
}
.with-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.with-overlay .content-main {
  position: relative;
}
.with-overlay .content-wrapper, .with-overlay .button-container {
  position: relative;
  z-index: 2;
}
.easy-admission-process .step-count {
  color: rgba(16, 24, 40, 0.06);
}
.easy-admission-process .admission-step .content-wrapper {
  position: relative;
}
.easy-admission-process .admission-step .content-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 32px;
  height: 2px;
  background: linear-gradient(180deg, #0052CC 0%, #FF6B35 100%);
}
@media (min-width: 991px) {
  .easy-admission-process .row > div:last-child .admission-step .content-wrapper::after {
    display: none;
  }
}
@media (max-width: 575px) {
  .easy-admission-process .admission-step {
    max-width: 300px;
    margin-inline: auto;
  }
}
.india-georgia-cards .india-card-wrapper {
  border-radius: 6px;
  border: 1px solid #FF6B35;
  background: #FFF7ED;
}
.india-georgia-cards .georgia-card-wrapper {
  border-radius: 6px;
  border: 1px solid #0052CC;
  background: #EFF6FF;
}
.study-abroad-choices .table-responsive {
  border-radius: 12px;
}
.study-abroad-choices .table-responsive .comparison-table-mbbs {
  border-collapse: separate;
  border-spacing: 0;
}
.study-abroad-choices .table-responsive .comparison-table-mbbs th {
  padding: 16px 24px;
  border: 1px solid #E5E7EB;
  white-space: nowrap;
}
.study-abroad-choices .table-responsive .comparison-table-mbbs th:first-child {
  border-top-left-radius: 12px;
  background: linear-gradient(90deg, #004FFF 0%, #FF6B35 100%);
}
.study-abroad-choices .table-responsive .comparison-table-mbbs th:nth-child(2) {
  background: linear-gradient(90deg, #FF6B35 0%, #004FFF 100%);
}
.study-abroad-choices .table-responsive .comparison-table-mbbs th:last-child {
  border-top-right-radius: 12px;
  background: linear-gradient(90deg, #004FFF 0%, #FF6B35 100%);
}
.study-abroad-choices .table-responsive .comparison-table-mbbs tbody {
  background: linear-gradient(135deg, #EFF6FF 0%, #FFF 50%, #FFF7ED 100%);
}
.study-abroad-choices .table-responsive .comparison-table-mbbs td {
  border: 1px solid #E5E7EB;
  background: transparent;
  padding: 24px;
}
.study-abroad-choices .table-responsive .comparison-table-mbbs td .primary-description {
  color: #4A5565 !important;
}
.study-abroad-choices .table-responsive .comparison-table-mbbs tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}
.study-abroad-choices .table-responsive .comparison-table-mbbs tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}
.program-highlights .years-tabs {
  border-bottom: 1px solid #D8D9DF !important;
  padding-bottom: 1px;
}
.program-highlights .years-tabs .nav-link {
  border: none;
  padding-left: 0px;
  font-weight: 300;
  padding-right: 30px;
}
.program-highlights .years-tabs .nav-link.active {
  color: #0052CC;
  border: 0;
  font-weight: 500;
}
.program-highlights .years-tabs .nav-link:focus, .program-highlights .years-tabs .nav-link:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}
.program-highlights .years-tabs .nav-link:hover {
  color: #0052CC;
}
.program-highlights .table-responsive {
  border-radius: 0 0 6px 6px;
  border: 1px solid rgba(14, 22, 59, 0.16);
  background: linear-gradient(135deg, #EFF6FF 0%, #FFF 50%, #FFF7ED 100%);
  padding: 40px 30px;
}
.program-highlights .table-responsive table td, .program-highlights .table-responsive table tr {
  background: transparent !important;
  padding: 18px;
  color: #475569;
}
.program-highlights .table-responsive table th {
  white-space: nowrap;
  background: transparent !important;
  white-space: nowrap;
  padding: 18px;
  color: #475569;
}
.course-details .fees-year-wrapper {
  border-radius: 0 0 6px 6px;
  border: 1px solid rgba(14, 22, 59, 0.16);
  padding: clamp(20px, 3vw, 40px) clamp(16px, 3vw, 36px);
}
.course-details .fee {
  color: #475569 !important;
}
.course-details .main-note-wrapper .list-wrapper li::marker {
  color: #2f7dd1;
  font-size: 18px;
  background: linear-gradient(274deg, #315091 -0.68%, #24AAE1 137.21%);
}
.curriculum-table {
  border-collapse: collapse;
  border: none;
}
.curriculum-table tr {
  border-bottom: 1px solid #e0e0e0;
}
.curriculum-table th:not(:last-child), .curriculum-table td:not(:last-child) {
  border-right: 1px solid #e0e0e0;
}
.fmge-results-table .table-responsive th {
  white-space: nowrap;
}
.fmge-results-table .table-responsive .perc-res span {
  border-radius: 6px;
  background: rgba(0, 82, 204, 0.2);
  padding: 2px 8px;
}
.fmge-results-table .note-section {
  border-radius: 6px;
  border: 1px solid #FF6B35;
  background: #FFF7ED;
  max-width: 1040px;
  margin-inline: auto;
}
.smart-fmge {
  background: linear-gradient(180deg, #F9FAFB 0%, #FFF 100%);
}
/* ==========================================
   Contact
========================================== */
.contact-banner {
  background: linear-gradient(135deg, #EFF6FF 0%, #FFF 50%, #FFF7ED 100%);
}
.contact-banner .content-wrapper .primary-description {
  max-width: 1200px;
  margin: auto;
}
.counselling-center .map-wrapper iframe {
  width: 100%;
  height: 100%;
}
.counselling-center .admission-office {
  border-radius: 6px;
  background: linear-gradient(135deg, #EFF6FF 0%, #FFF 50%, #FFF7ED 100%);
  padding: 40px 24px;
}
.counselling-center .icon-wrapper {
  display: flex;
  flex-shrink: 0;
}
.note-section {
  border-radius: 6px;
  border: 1px solid #0052CC;
  background: #EFF6FF;
}
.note-section .bulb-icon {
  top: 6px;
}
.why-connect-with-us .cards-container .card-wrapper {
  border-radius: 6px;
  border: 1px solid #E5E7EB;
  background: #FFF;
  padding: clamp(20px, 3vw, 36px) clamp(16px, 3vw, 24px);
  height: 100%;
}
.why-connect-with-us .form-container {
  border-radius: 6px;
  border: 1px solid rgba(229, 231, 235, 0.5);
  background: linear-gradient(180deg, #F9FAFB 0%, #FFF 100%);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.02);
  padding: clamp(20px, 3vw, 40px) clamp(20px, 3vw, 36px) clamp(20px, 3vw, 40px) clamp(20px, 3vw, 36px);
}
.why-connect-with-us .form-container .primary-description a {
  font-weight: 400;
  color: #4A5565;
  transition: color 0.3s ease;
  font-family: "Inter", sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
}
.why-connect-with-us .form-container .primary-description a:hover {
  color: #FF6B35;
}
.fluentform .ff-el-group {
  margin-bottom: 16px !important;
}
.ff-el-group.ff-text-left.ff_submit_btn_wrapper {
  margin-bottom: 0px !important;
}
/* Arrow icon */
.fluentform .ff-btn-submit::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 12px;
  background-image: url('/wp-content/uploads/2026/05/arrow-white.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.fluentform .ff-btn-submit {
  padding-right: 45px !important;
}
.custom-image-list {
  list-style: none;
  padding-left: 0;
}
.custom-image-list li {
  position: relative;
  padding-left: 30px;
}
.custom-image-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 24px;
  height: 24px;
  background: url("/wp-content/uploads/2026/05/blue-tick.svg") no-repeat center center;
  background-size: contain;
}
.custom-image-list li::marker {
  content: '';
}
/* ==========================================
   Blogs
========================================== */
.articles-grids-main .card-wrapper {
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
}
.articles-grids-main .card-wrapper .floating-text-blogs {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #fff;
  padding: 6px 16px;
  border-radius: 80px;
}
.articles-grids-main .card-wrapper .date-wrapper {
  position: relative;
  padding-left: 15px;
}
.articles-grids-main .card-wrapper .date-wrapper::before {
  content: '';
  border-radius: 500px;
  background: #0052CC;
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  top: 8px;
}
.featured-blog-section .featured-blog-container {
  border-radius: 6px;
  background: #FAFBFC;
  overflow: hidden;
}
.featured-blog-section .featured-blog-container .right-content-wrapper {
  padding: clamp(20px, 3vw, 40px);
}
.featured-blog-section .featured-blog-container .right-content-wrapper::before {
  content: '';
  left: 0;
  width: 6px;
  height: 100%;
  border-radius: 6px 0 0 6px;
  background: linear-gradient(180deg, #004FFF 0%, #FF6B35 100%);
  position: absolute;
  top: 0;
}
.featured-blog-section .featured-blog-container .right-content-wrapper .floating-text {
  color: #0052CC;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  border-radius: 80px;
  background: #EFF6FF;
  width: fit-content;
  padding: 6px 12px;
}
.featured-blog-section .star-category {
  border-radius: 80px;
  background: #FFF;
  width: fit-content;
  padding: 6px 16px;
  position: absolute;
  bottom: 24px;
  left: 24px;
}
@media (max-width: 991px) {
  .featured-blog-section .right-content-wrapper::before {
    content: '';
    left: 0;
    width: 100% !important;
    height: 6px !important;
    border-radius: 6px 0 0 6px;
    background: linear-gradient(180deg, #004FFF 0%, #FF6B35 100%);
    position: absolute;
    top: 0;
  }
}
.importance-fmge {
  background: linear-gradient(180deg, #F9FAFB 0%, #FFF 100%);
}
.importance-fmge .card-wrapper {
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #FFF;
  height: 100%;
}
/* ==========================================
   University
========================================== */
.bau-benefits {
  background: linear-gradient(180deg, #F9FAFB 0%, #FFF 100%);
}
.bau-benefits .content-wrapper .primary-description {
  max-width: 900px;
  margin-inline: auto;
}
.bau-benefits .stacked-tabs .nav-item {
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.bau-benefits .stacked-tabs .nav-item .nav-link {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: clamp(10px, 3vw, 16px) clamp(12px, 3vw, 20px);
  border: 0;
  background: #fff;
  color: #0052CC !important;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
}
.bau-benefits .stacked-tabs .nav-item .nav-link.active {
  background: #0052CC;
  color: #fff !important;
}
.bau-benefits .stacked-tabs .nav-item .nav-link.active img {
  filter: brightness(0) invert(1);
}
@media (max-width: 767px) {
  .bau-benefits .stacked-tabs {
    flex-direction: row !important;
    position: relative;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start !important;
  }
  .bau-benefits .stacked-tabs .sliderCol {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
    padding-right: 0px;
  }
}
.start-mbbs-journey .list-wrapper {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.start-mbbs-journey .list-wrapper li {
  counter-increment: step;
  position: relative;
  padding-left: 65px;
}
.start-mbbs-journey .list-wrapper li:last-child {
  margin-bottom: 0 !important;
}
.start-mbbs-journey .list-wrapper li::before {
  content: counter(step,decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 5px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #0052CC;
  padding: 20px;
  width: 48px;
  height: 48px;
  color: #fff;
  text-align: justify;
  font-family: "Inter", sans-serif;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: normal;
}
.start-mbbs-journey .list-wrapper li::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 45px;
  width: 2px;
  height: calc(100% - -20px);
  background-image: url(/wp-content/uploads/2026/05/gradient-connector.svg);
  background-repeat: repeat;
}
.start-mbbs-journey .list-wrapper li:last-child::after {
  display: none;
}
.cursor-pointer {
  cursor: pointer;
}
.floating-text {
  position: absolute;
  top: 16px;
  left: 16px;
  border-radius: 80px;
  background: #fff;
  padding: 10px 16px;
  color: #0E163B;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
.clinical-training-opportunities {
  background: linear-gradient(180deg, #F9FAFB 0%, #FFF 100%);
}
.clinical-training-opportunities .swiper-pagination-bullet {
  border-radius: 10px;
  width: 40px;
  height: 3px;
}
.clinical-training-opportunities .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FF6B35;
}
.clinical-training-opportunities .swiper-wrapper {
  margin-bottom: 40px;
}
.custom-pagination {
  gap: 27px;
}
.custom-pagination .pagination-list {
  gap: 27px;
}
.custom-pagination .page-numbers {
  font-weight: 800 !important;
}
/* ==========================================
   Policy Pages
========================================== */
.common-policy-content h2, .common-policy-content h2 b {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  color: #101828;
  margin-block: 20px;
}
.common-policy-content h3, .common-policy-content h3 b {
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  color: #101828;
  margin-block: 20px;
}
.common-policy-content p, .common-policy-content li, .common-policy-content ol {
  color: #4A5565;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  margin-block: 20px;
}
.toc-pillar-content {
  position: relative;
}
.toc-pillar-content .blog-right-content {
  position: sticky;
  top: 100px;
}
.toc-pillar-content .toc-list-item-wrapper {
  position: relative;
  padding-left: 14px;
}
.toc-pillar-content .toc-list-item-wrapper::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 27px;
  width: 2px;
  background: #0052CC;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.toc-pillar-content .toc-list-item-wrapper .toc-list-item {
  transition: 0.25s ease;
}
.toc-pillar-content .toc-list-item-wrapper .toc-list-item.active {
  color: #0052CC !important;
  font-weight: 600;
}
.toc-pillar-content .toc-list-item-wrapper .toc-list-item.active::before {
  opacity: 1;
}
.toc-pillar-content .toc-list-item-wrapper:has(.toc-list-item.active)::before {
  opacity: 1;
}
.toc-pillar-content .flag-fee-wrapper .wrapper {
  border-radius: 6px;
  border: 1px solid rgba(0, 82, 204, 0.1);
}
.toc-pillar-content .content-list-with-image {
  border-radius: 6px;
  border: 1px solid rgba(0, 82, 204, 0.1);
}
.toc-pillar-content .list-with-icon {
  column-count: 2;
}
.toc-pillar-content .list-with-icon li {
  border-radius: 6px;
  border: 1px solid rgba(0, 82, 204, 0.1);
  padding: 12px 16px;
}
.toc-pillar-content .heading-unique {
  padding-top: clamp(50px, 8vw, 80px);
}
.toc-pillar-content .document-checklist {
  background: none !important;
}
.toc-pillar-content :where(img[class*="wp-image-"]) {
  margin-bottom: 24px;
  width: 100%;
  object-fit: cover;
}
.toc-pillar-content .application-list-wrapper .list-wrapper {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.toc-pillar-content .application-list-wrapper .list-wrapper li {
  counter-increment: step;
  position: relative;
  padding-left: 80px;
  margin-bottom: 60px;
}
.toc-pillar-content .application-list-wrapper .list-wrapper li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  padding: 10px 11px;
  width: 56px;
  height: 56px;
  color: #0052CC;
  text-align: justify;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  white-space: nowrap;
  background: #E6EEFA;
  overflow: hidden;
}
.toc-pillar-content .application-list-wrapper .list-wrapper li::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 45px;
  width: 2px;
  height: calc(100% - -20px);
  background: linear-gradient(180deg, #FF6B35 0%, #004FFF 100%) !important;
  background-repeat: repeat;
  z-index: -1;
}
.toc-pillar-content .application-list-wrapper .list-wrapper li:last-child::after {
  display: none;
}
.toc-pillar-content .application-list-wrapper .key-highlights-list .highlight-text {
  color: #0E163B;
  font-family: "Instagram Sans";
  font-size: 12px;
  font-weight: 400;
  line-height: 19.2px;
  border-radius: 6px;
  background: rgba(36, 170, 225, 0.3);
  padding: 6px 10px;
}
#blogToc .toc-list-item.active {
  color: #0052CC;
  font-weight: 600;
}
.inner-blog-cta {
  padding: clamp(20px, 3vw, 40px);
  background: linear-gradient(90deg, #FF6B35 0%, #004FFF 100%);
}
.inner-blog-cta .content-wrapper {
  max-width: 500px;
}
/* ==========================================
   Responsive Design
========================================== */
@media (max-width: 1200px) {
  .row-reverse-custom {
    flex-direction: row-reverse !important;
  }
}
@media (max-width: 991px) {
  /* TOC */
  .toc-pillar-content .blog-right-content {
    position: relative;
    top: 0;
  }
  #blogToc {
    position: fixed;
    top: 0;
    right: -100%;
    width: 330px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    transition: 0.4s ease;
    padding: 20px;
    margin-top: 0;
  }
  #blogToc.active {
    right: 0;
  }
  #openToc {
    position: fixed;
    bottom: 24px;
    left: 7%;
    width: fit-content !important;
    z-index: 1;
    border-radius: 50px;
    padding: 10px 16px;
    font-size: 14px;
    background: #0052CC;
    border: 1px solid #0052CC;
  }
  .toc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1049;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
  }
  .toc-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
  }
}
@media (max-width: 575px) {
  .mobile-slider {
    position: relative;
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scroll-padding-left: 1.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start !important;
  }
  .sliderCol {
    flex: 0 0 calc(100% - 40px) !important;
    scroll-snap-align: start;
    padding-right: 16px;
  }
  br {
    display: none;
  }
  .contact-banner .dual-buttons-container .filled-button, .contact-banner .dual-buttons-container .outlined-button {
    width: 100%;
  }
  .contact-banner .dual-buttons-container .filled-button a, .contact-banner .dual-buttons-container .outlined-button a {
    width: 100%;
  }
  .flex-wrap-custom {
    flex-wrap: wrap;
  }
}
