/* ==========================================
   Font Family
========================================== */
/* ==========================================
   Color Codes
========================================== */
/* ==========================================
   BREAKPOINTS
========================================== */
/* ==========================================
   SPACING
========================================== */
.common-margin {
  margin-block: clamp(60px, 8vw, 150px);
}
.inner-padding {
  padding-block: clamp(50px, 8vw, 100px);
}
.top-margin {
  margin-top: clamp(36px, 3vw, 56px);
}
.mb-80 {
  margin-bottom: clamp(40px, 3vw, 80px);
}
.mt-80 {
  margin-top: clamp(40px, 3vw, 80px);
}
.my-80 {
  margin-block: clamp(40px, 3vw, 80px);
}
.mt-40 {
  margin-top: clamp(20px, 3vw, 36px);
}
.mb-40 {
  margin-bottom: clamp(20px, 3vw, 40px);
}
.m-40 {
  margin: clamp(20px, 3vw, 40px);
}
.my-40 {
  margin-block: clamp(20px, 3vw, 40px);
}
.p-40 {
  padding: clamp(20px, 3vw, 40px);
}
.w-lg-auto {
  width: auto;
}
/* ==========================================
   Typography
========================================== */
.hero-heading {
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  font-family: "Jost", sans-serif;
  color: #1F1F1F;
}
.primary-heading {
  font-size: clamp(26px, 2.5vw, 46px);
  font-weight: 500;
  line-height: 1.2;
  font-family: "Jost", sans-serif;
  color: #1F1F1F;
}
.secondary-heading {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 500;
  line-height: 1.3;
  font-family: "Jost", sans-serif;
}
.sub-heading {
  font-size: clamp(16px, 2.4vw, 20px);
  font-weight: 500;
  line-height: 1.3;
}
.sub-heading-sm {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 8px;
}
.primary-description {
  color: #727272;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
}
.primary-description-lg {
  color: #727272;
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
}
.primary-description p, .primary-description-lg p {
  margin-bottom: 0;
}
a {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 600;
  color: #2261AE;
  line-height: 1.5;
  margin-bottom: 0px;
  text-decoration: none !important;
}
.line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.no-wrap {
  white-space: nowrap;
}
.cursor-pointer {
  cursor: pointer;
  z-index: 9999;
  position: relative;
}
/* ==========================================
   Colors
========================================== */
.custom-blue {
  color: #2261AE;
}
.off-black {
  color: #1F1F1FCC;
}
.custom-light-blue {
  color: #327EDB;
}
.bg-custom-blue {
  background: #2261AE;
}
.bg-custom-light-blue {
  background: #327EDB;
}
.bg-custom-primary {
  background: #1F1F1F;
}
.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.2);
}
.primary-color {
  color: #1F1F1F;
}
.secondary-color {
  color: #727272;
}
.primary-font {
  font-family: "Jost", sans-serif !important;
}
.secondary-font {
  font-family: "Poppins", sans-serif;
}
.gradient-text {
  display: inline-block;
  width: fit-content;
  background-image: linear-gradient(90deg, #327edb 0%, #1b4375 100%);
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/* ==========================================
   Buttons
========================================== */
.custom-btn-text {
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 300;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
}
.custom-btn {
  border-radius: 6px;
  background: #2261AE !important;
  display: inline-flex;
  border: 1px solid #2261AE;
  height: 48px;
  padding: 12px clamp(12px, 3vw, 24px);
  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 #2261AE;
  background: transparent !important;
  color: #2261AE !important;
}
.custom-btn-outline {
  border-radius: 5px;
  background: transparent;
  display: inline-flex;
  height: 48px;
  padding: 10px clamp(10px, 3vw, 16px);
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.custom-btn-outline-white {
  border-radius: 6px;
  background: transparent;
  display: inline-flex;
  border: 1px solid #fff;
  height: 48px;
  padding: 12px clamp(12px, 3vw, 24px);
  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-outline-white:hover {
  border: 1px solid #fff;
  background: transparent;
  color: #fff !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: #1F1F1F;
  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: #1F1F1F;
  margin-block: 20px;
}
.common-policy-content p, .common-policy-content li, .common-policy-content ol {
  color: #727272;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  margin-block: 20px;
}
.exclusive-badge {
  border-radius: 70px;
  border: 1px solid rgba(34, 97, 174, 0.4);
  background: #EBF3FC;
  padding: 4px 16px;
}
/* ==========================================
  Common FAQ
========================================== */
.faq-section .faq-main .accordion-item {
  border-bottom: 1px solid #0e163b29 !important;
  border-radius: 0px !important;
}
.faq-section .faq-main .accordion-item:last-child {
  border-bottom: 0 !important;
}
.faq-section .faq-main .accordion-item .accordion-button {
  padding-block: 24px;
}
.faq-section .faq-main .accordion-item .accordion-button:not(.collapsed) {
  color: #2261AE;
}
.faq-section .faq-main .accordion-item .accordion-button::after {
  background-image: url("/wp-content/uploads/2026/05/accordion-open.svg");
  background-size: 100% 100%;
  width: 15px;
  height: 15px;
}
.faq-section .faq-main .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("/wp-content/uploads/2026/05/accordion-close.svg");
  background-size: 100% 100%;
  width: 13px;
  height: 13px;
}
/* ==========================================
 Header
========================================== */
body {
  padding-top: 157px;
}
.page-template-lead-page {
  padding-top: 120px;
}
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 991px) {
  body.admin-bar {
    padding-top: 123px;
  }
  body {
    padding-top: 123px;
  }
}
.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 .topbar {
  background: #f5fbff;
}
.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: #1F1F1F;
  font-size: clamp(14px, 1.2vw, 16px);
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  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: #1F1F1F;
}
.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;
}
.home-banner {
  position: relative;
  overflow: hidden;
  top: -3px;
}
.home-banner .main-wrapper {
  z-index: 99;
  position: relative;
}
.home-banner .hero-highlights {
  display: flex;
  flex-wrap: wrap;
  max-width: 765px;
  gap: clamp(16px, 3vw, 24px) clamp(20px, 3vw, 40px);
}
.home-banner .hero-highlights .item {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.6);
  width: clamp(230px, 24vw, 268px);
}
@media (max-width: 575px) {
  .home-banner {
    background-position: right 25% top 50% !important;
    height: 60vh;
  }
  .home-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
  }
  .home-banner .hero-heading {
    color: #fff;
  }
  .home-banner .hero-highlights-wrapper {
    order: 3;
  }
  .home-banner .hero-highlights-wrapper .item {
    width: 100% !important;
    position: relative;
    background: #2261ae;
  }
  .home-banner .hero-highlights-wrapper .item img {
    background: #fff;
    border-radius: 6px;
  }
  .home-banner .hero-highlights-wrapper .item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 43%;
    right: -18px;
    background-image: url("/wp-content/uploads/2026/05/card-arrow.svg");
    background-repeat: no-repeat;
    z-index: 3;
    width: 12px;
    height: 12px;
    background-size: contain;
  }
  .home-banner .hero-highlights-wrapper .item .primary-description {
    color: #fff;
  }
  .home-banner .button-container {
    order: 2;
  }
}
.admission-support .list-wrapper .item {
  border-radius: 6px;
  border: 1px solid rgba(31, 33, 35, 0.04);
  padding: clamp(18px, 3vw, 28px) clamp(14px, 3vw, 24px);
}
.admission-support .list-wrapper .item .sub-heading {
  color: #1f1f1fcc;
}
.admission-support .list-wrapper .item .icon-wrapper {
  display: flex;
  flex-shrink: 0;
}
.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%);
  }
}
.admission-enquiry .form-container {
  border-radius: 6px;
  border: 1px solid rgba(31, 33, 35, 0.04);
  background: rgba(50, 126, 219, 0.04);
}
.about-bau-university .overlapping-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
  position: relative;
}
.about-bau-university .overlapping-images img {
  display: block;
  border-radius: 12px;
}
.about-bau-university .overlapping-images .top-image {
  grid-column: 1 / span 8;
  grid-row: 1;
  z-index: 1;
}
.about-bau-university .overlapping-images .bottom-image {
  grid-column: 6 / span 7;
  grid-row: 1;
  margin-top: 110px;
  z-index: 2;
}
.about-bau-university .about-quote {
  color: #1f1f1fcc;
  font-size: clamp(14px, 1.2vw, 16px);
}
.board-of-directors .content-wrapper .primary-description {
  max-width: 950px;
  margin-inline: auto;
}
.programs-offered .floating-text {
  border-radius: 6px;
  border: 1px solid #fff;
  background: rgba(34, 97, 174, 0.6);
  backdrop-filter: blur(0px);
  padding: 16px 24px;
}
.programs-offered .step-content {
  border-bottom: 1px solid #1F21230A;
  padding-bottom: 24px;
}
.programs-offered .step-content:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0 !important;
}
.programs-offered .step-gradient {
  background: linear-gradient(90deg, rgba(50, 126, 219, 0.2) 0%, rgba(27, 67, 117, 0.2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.2);
  background-clip: text;
  color: transparent;
}
.recruitment-partners .content-wrapper-top .primary-description {
  max-width: 1025px;
  margin-inline: auto;
}
.recruitment-partners .card-wrapper {
  border-radius: 6px;
  border: 1px solid rgba(50, 126, 219, 0.2);
  background: #fff;
}
.recruitment-partners .card-wrapper .list-wrapper li {
  position: relative;
  padding-left: 24px;
}
.recruitment-partners .card-wrapper .list-wrapper li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #327EDB;
  animation: blueGlow 1.5s ease-in-out infinite;
}
.admission-journey {
  position: relative;
}
.admission-journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(50, 126, 219, 0.9) 0%, rgba(50, 126, 219, 0.9) 100%);
  z-index: 1;
}
.admission-journey .container, .admission-journey .content-wrapper {
  position: relative;
  z-index: 2;
}
.admission-journey .row {
  --bs-gutter-x: 32px;
}
.admission-journey .row .step-item {
  position: relative;
}
.admission-journey .row .step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  background-image: url("/wp-content/uploads/2026/05/card-arrow.svg");
  background-repeat: no repeat;
  color: #fff;
  z-index: 3;
  width: 15px;
  height: 12px;
}
.admission-journey .row .enrollment-card {
  border-radius: 6px;
  border: 1px solid rgba(50, 126, 219, 0.2);
  background: #fff;
  height: 100%;
}
.international-community .representation-cards-wrapper .custom-gap {
  gap: clamp(24px, 3vw, 36px);
}
.international-community .representation-cards-wrapper .custom-gap .card {
  border-radius: 6px;
  border: 1px solid rgba(50, 126, 219, 0.2);
  background: rgba(50, 126, 219, 0.1);
  padding: clamp(16px, 3vw, 24px);
  width: 270px;
}
.international-community .progress-bar-wrapper .country-progress-card {
  border-radius: 6px;
  border: 1px solid rgba(31, 33, 35, 0.04);
  max-width: 400px;
}
.international-community .progress-bar-wrapper .country-progress-card .progress-track {
  height: 5px;
  border-radius: 10px;
  background: rgba(31, 33, 35, 0.04);
  overflow: hidden;
}
.international-community .progress-bar-wrapper .country-progress-card .progress-fill {
  height: 100%;
  width: 0;
  border-radius: 10px;
  background: linear-gradient(90deg, #327edb 0%, #1b4375 100%);
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 767px) {
  .international-community .country-progress-card {
    max-width: 100% !important;
  }
}
.testimonial-section {
  max-width: 1044px;
  margin-inline: auto;
}
.testimonial-section .testimonial-image {
  width: 300px;
  display: flex;
  flex-shrink: 0;
}
.testimonial-section .quote-top, .testimonial-section .quote-bottom {
  display: flex;
  flex-shrink: 0;
}
.testimonial-section .quote-top {
  top: -25px;
}
.testimonial-section .quote-bottom {
  bottom: -12px;
}
.testimonial-section .swiper-pagination-bullet {
  border-radius: 10px;
  width: 40px;
  height: 3px;
}
.testimonial-section .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #327EDB;
}
.testimonial-section .swiper-wrapper {
  margin-bottom: 40px;
}
.testimonial-section .swiper-button-disabled {
  opacity: 0.5;
}
@media (max-width: 991px) {
  .testimonial-section .quote-top {
    top: 0px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .testimonial-section .custom-row {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@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;
  }
}
/* ==========================================
  Contact US
========================================== */
.marquee-request-animation {
  width: 100%;
  position: relative;
}
.marquee-request-animation .track {
  gap: 50px;
  width: max-content;
  will-change: transform;
}
.marquee-request-animation img {
  flex-shrink: 0;
  display: block;
  width: auto;
}
.map-section iframe {
  width: 100%;
}
/* ==========================================
  About US
========================================== */
.founder-section .custom-row {
  border-radius: 6px;
  border: 1px solid rgba(31, 31, 31, 0.05);
  background: rgba(50, 126, 219, 0.04);
}
.founder-section .custom-row .image-wrapper {
  display: flex;
  flex-shrink: 0;
}
@media (min-width: 991px) and (max-width: 1200px) {
  .founder-section .image-wrapper {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .founder-section .custom-row {
    flex-wrap: wrap;
  }
  .founder-section .custom-row .image-wrapper {
    width: 100%;
  }
  .founder-section .custom-row .image-wrapper img {
    width: 100%;
  }
}
.members-section .member-card {
  border-radius: 6px;
  border: 1px solid rgba(50, 126, 219, 0.2);
  height: 100%;
}
.our-regulations .regulation-card {
  border-radius: 6px;
  border: 1px solid rgba(31, 31, 31, 0.05);
  background: rgba(50, 126, 219, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.our-regulations .regulation-card .download-pdf span {
  position: relative;
  top: -2px;
}
/* ==========================================
 404
========================================== */
.page-404-wrapper .wrapper-404 {
  transform: rotate(-2deg);
  border-radius: 6px;
  border: 2px solid #2261AE;
  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;
}
/* ==========================================
  Lead Page
========================================== */
.scholarship-section .stack-slider {
  position: relative;
  height: clamp(360px, 30vw, 490px);
  overflow: hidden;
  margin-left: -30px;
}
.scholarship-section .stack-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 40px;
  padding-top: 30px;
  overflow: hidden;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
  will-change: transform, opacity;
}
.scholarship-section .icon-list-wrapper .custom-gap {
  gap: clamp(20px, 3vw, 40px);
}
.scholarship-section .icon-list-wrapper .custom-gap .sub-heading {
  color: #475569;
}
.scholarship-section p {
  color: #475569 !important;
}
.admission-journey-lead .row {
  --bs-gutter-x: 32px;
}
.admission-journey-lead .row .step-item {
  position: relative;
}
.admission-journey-lead .row .step-item:not(:last-child)::after {
  content: none !important;
}
.admission-journey-lead .row .enrollment-card {
  border-radius: 16px !important;
}
.fmge-passouts .passouts-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fmge-passouts .passout-row {
  display: flex;
  justify-content: center;
  gap: 50px;
}
.fmge-passouts .passout-row.row-7 {
  padding-left: 85px;
  padding-right: 85px;
}
.fmge-passouts .passout-item {
  flex: 0 0 120px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
}
.fmge-passouts .passout-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 1399px) and (min-width: 1200px) {
  .fmge-passouts .passouts-grid {
    gap: 14px;
  }
  .fmge-passouts .passout-row {
    gap: 32px;
  }
  .fmge-passouts .passout-item {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
  }
  .fmge-passouts .passout-row.row-7 {
    padding-left: 64px;
    padding-right: 64px;
  }
}
@media (max-width: 1199px) and (min-width: 992px) {
  .fmge-passouts .passouts-grid {
    gap: 12px;
  }
  .fmge-passouts .passout-row {
    gap: 20px;
  }
  .fmge-passouts .passout-item {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
  }
  .fmge-passouts .passout-row.row-7 {
    padding-left: 49px;
    padding-right: 49px;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .fmge-passouts .passouts-grid {
    gap: 10px;
  }
  .fmge-passouts .passout-row {
    gap: 14px;
  }
  .fmge-passouts .passout-item {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
  }
  .fmge-passouts .passout-row.row-7 {
    padding-left: 46px;
    padding-right: 46px;
  }
}
@media (max-width: 767px) and (min-width: 480px) {
  .fmge-passouts .passouts-grid {
    gap: 10px;
  }
  .fmge-passouts .passout-row {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .fmge-passouts .passout-item {
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
  }
  .fmge-passouts .passout-row.row-7 {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 479px) {
  .fmge-passouts .passouts-grid {
    gap: 8px;
  }
  .fmge-passouts .passout-row {
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .fmge-passouts .passout-item {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }
  .fmge-passouts .passout-row.row-7 {
    padding-left: 0;
    padding-right: 0;
  }
}
.custom-lead-page {
  background: linear-gradient(199deg, #315091 -78.82%, #24AAE1 160.9%);
}
.custom-lead-page .form-container {
  max-width: 480px;
  border-radius: 6px;
  background: #FFF;
  padding: clamp(20px, 3vw, 40px) clamp(12px, 3vw, 24px);
}
.custom-lead-page .form-container .secondary-heading {
  font-size: clamp(25px, 2vw, 32px);
}
.custom-lead-page .desc-custom {
  color: #FFDEA4 !important;
  position: relative;
  top: -30px;
}
.custom-lead-page .floating-image {
  bottom: 0;
  left: 53% !important;
  transform: translateX(-56%) !important;
}
.custom-lead-page .content-container .primary-description {
  max-width: 570px;
}
@media (min-width: 1200px) and (max-width: 1400px) {
  .custom-lead-page .floating-image {
    left: 52% !important;
  }
  .custom-lead-page .floating-image img {
    width: 400px;
  }
}
@media (max-width: 575px) {
  .custom-lead-page .image-wrapper-universities img {
    max-width: 150px;
  }
}
.custom-contact-form input.ff-el-form-control {
  position: relative;
  z-index: 1;
}
.stats-section-lead .container {
  border-radius: 6px;
  border: 1px solid rgba(31, 31, 31, 0.05);
  background: rgba(50, 126, 219, 0.04);
  padding: 52px;
}
.stats-section-lead .container .row-wrapper {
  max-width: 1039px;
  margin-inline: auto;
}
.custom-light-border {
  border-radius: 6px;
  border: 1px solid rgba(50, 126, 219, 0.2);
}
.toc-pillar-content .blog-right-content {
  position: sticky;
  top: 100px;
}
.toc-pillar-content .blog-right-content .table-content {
  border-radius: 6px;
  border: 1px solid rgba(50, 126, 219, 0.2);
  padding: 32px 0;
}
.toc-pillar-content .blog-right-content .table-content .secondary-heading {
  padding: 0 20px;
}
.toc-pillar-content .blog-right-content .table-content .toc-custom-list {
  border-top: 1px solid #327EDB99;
  padding-top: 16px;
}
.toc-pillar-content .blog-right-content .table-content .toc-custom-list .toc-list-item-wrapper {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(50, 126, 219, 0.2);
}
.toc-pillar-content .blog-right-content .table-content .toc-custom-list .toc-list-item-wrapper.active .toc-list-item {
  color: #2261AE !important;
  font-weight: 600;
}
.toc-pillar-content .blog-right-content .table-content .toc-custom-list .toc-list-item-wrapper.active::before {
  opacity: 1;
  transform: scaleY(1);
}
.toc-pillar-content .blog-right-content .table-content .toc-custom-list .toc-list-item-wrapper:first-child {
  padding-top: 0;
}
.toc-pillar-content .blog-right-content .table-content .toc-custom-list .toc-list-item-wrapper:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.toc-pillar-content .introduction-tab .introduction-wrapper {
  border-top: 1px solid #327EDB33;
  padding-top: 16px;
}
.toc-pillar-content .program-overview-tab .overview-wrapper {
  border-top: 1px solid #327EDB33;
  padding-block: 40px;
  padding-inline: 24px;
}
.toc-pillar-content .program-description-tab .main-content-with-bg {
  padding-block: 40px;
}
.toc-pillar-content .program-description-tab .content-with-border {
  padding: 40px 24px 24px 24px;
}
.toc-pillar-content .program-description-tab .skill-item {
  border-radius: 6px;
  border: 1px solid rgba(31, 31, 31, 0.05);
  background: rgba(50, 126, 219, 0.04);
  padding: 40px 16px;
  height: 100%;
}
.toc-pillar-content .program-description-tab .skill-item .year-text {
  color: #327EDB66;
}
.toc-pillar-content .content-with-list strong {
  font-weight: 600 !important;
}
.toc-pillar-content .content-wrapper-with-grid .item {
  border-bottom: 1px solid #327EDB33;
  margin: 0;
}
.toc-pillar-content .content-wrapper-with-grid .item:last-child {
  border-bottom: 0;
}
.toc-pillar-content .content-wrapper-with-grid .item > div {
  padding: 24px;
}
.toc-pillar-content .content-wrapper-with-grid .item > div:first-child {
  border-right: 1px solid #327EDB33;
  display: flex;
  align-items: center;
}
.program-highlights .years-tabs .nav-link {
  border: none;
  font-weight: 300;
  color: #327EDB;
  border-radius: 30px;
  border: 1px solid #327EDB;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.program-highlights .years-tabs .nav-link.active {
  color: #fff;
  background: #327EDB;
}
.program-highlights .years-tabs .nav-link:focus, .program-highlights .years-tabs .nav-link:focus-visible {
  box-shadow: none !important;
  outline: none !important;
}
.program-highlights .table-responsive {
  border-radius: 0 0 6px 6px;
}
.program-highlights .table-responsive .curriculum-table {
  border-collapse: collapse;
  border: 1px solid #327EDB33;
}
.program-highlights .table-responsive .curriculum-table tr {
  border-bottom: 1px solid #327EDB33;
}
.program-highlights .table-responsive .curriculum-table th:not(:last-child), .program-highlights .table-responsive .curriculum-table td:not(:last-child) {
  border-right: 1px solid #327EDB33;
}
.program-highlights .table-responsive table td, .program-highlights .table-responsive table tr {
  background: transparent !important;
  padding: 18px;
}
.program-highlights .table-responsive table th {
  white-space: nowrap;
  background: transparent !important;
  white-space: nowrap;
  padding: 18px;
}
@media (max-width: 575px) {
  .program-highlights .sliderCol {
    flex: 0 0 auto !important;
    scroll-snap-align: start;
    padding-right: 16px;
    padding-bottom: 5px;
  }
}
.fixed-table {
  width: 100%;
  table-layout: fixed;
}
.fixed-table th, .fixed-table td {
  width: 33.333%;
}
.toc-cta {
  border-radius: 6px;
  background: linear-gradient(90deg, #1B4375 0%, #327EDB 100%);
  padding: 36px 16px;
}
.toc-cta .custom-btn {
  background: #fff !important;
  color: #2261AE !important;
}
.toc-pillar-content {
  position: relative;
}
#blogToc .toc-list-item.active {
  color: #2261AE;
  font-weight: 600;
}
/* ==========================================
  Fluent Form
========================================== */
.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/button-arrow-1.svg');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.fluentform .ff-btn-submit {
  position: relative;
}
.custom-contact-form p {
  color: #727272;
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0px;
}
.custom-contact-form .ff-btn-submit:hover {
  color: #fff !important;
}
.custom-contact-form .ff-btn-submit:hover {
  color: #2261AE !important;
}
.custom-contact-form .ff-btn-submit::after {
  background-image: none !important;
}
.custom-contact-form select.ff-el-form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("/wp-content/uploads/2026/05/form-dropdown.svg");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 40px;
  color: #47556999;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  height: 50px !important;
}
.custom-contact-form .iti__selected-flag {
  background: none !important;
  border-right: 1px solid #1F1F1F33 !important;
}
.no-arrow .ff-btn-submit:hover {
  color: #2261AE !important;
}
.no-arrow .ff-btn-submit::after {
  background-image: none !important;
}
/* ==========================================
  Footer
========================================== */
.main-footer .footer-cta-wrapper {
  padding-block: 56px;
}
.main-footer .footer-cta-wrapper .footer-cta {
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  padding: clamp(20px, 3vw, 40px);
}
.main-footer .footer-cta-wrapper .footer-cta .content-wrapper {
  max-width: 600px;
}
.main-footer .footer-cta-wrapper .footer-cta .content-wrapper .primary-description {
  max-width: 500px;
}
.main-footer .social-icon {
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #1f1f1f;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-footer .item-head {
  font-size: clamp(16px, 1.2vw, 18px);
}
.main-footer .item-desc {
  color: #d2d2d2;
}
.main-footer .copyright-wrapper .primary-description {
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 991px) {
  .main-footer .custom-row {
    flex-wrap: wrap;
  }
}
/* ==========================================
   Responsive Design
========================================== */
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1368px;
  }
}
@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: #2261AE;
    border: 1px solid #2261AE;
  }
  .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: 767px) {
  .custom-wrap {
    flex-wrap: wrap;
  }
}
@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 !important;
  }
  .study-menu-list br {
    display: block !important;
  }
  .flex-wrap-custom {
    flex-wrap: wrap;
  }
}
