html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #1e242c;
  font-size: 18px;
  padding-top: 93px;
  background-color: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

a:hover, a:focus {
  text-decoration: none;
}
.select2-container--krajee-bs3 .select2-dropdown--above {
    width: max-content !important;
    font-size: 14px !important;
}
.select2-container--krajee-bs3 .select2-dropdown {
  border-color: #ff8fa9;
}
.select2-container--krajee-bs3 .select2-results__option--highlighted[aria-selected] {
    background-color: #a51637;
    color: #fff;
}
.container {
  max-width: 1200px;
}

.btn {
  font-size: 20px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  color: #000;
  background-color: #ccc;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

.nav-link {
  color: #000000;
  transition: color 0.3s ease, transform 0.2s ease;
  font-weight: 500;
}

.nav-link:hover {
  color: #AB1638;
  transform: translateY(-1px);
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 10px 15px;
  line-height: 1;
}

.navbar-expand-lg .navbar-nav .nav-link.btn {
    font-size: 17px;
    font-weight: 500;
    padding: 10px 20px;
    margin-left: 10px;
}

header {
  min-height: 80px;
  align-content: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  background-color: rgba(255, 255, 255, 0.95);
  z-index: 9;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.navbar {
  margin-bottom: 0;
}
.navbar-brand {
    height: auto;
    padding: 0;
}
.navbar-brand img {
    height: 40px;
}

section {
  padding: 60px 0;
  align-content: center;
  position: relative;
}

section > span {
  position: absolute;
  display: inline-block;
  top: -93px;
}

h2.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #AB1638 0%, #6f162b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn.btn-red, .btn.btn-red:focus {
  color: #fff;
  background: linear-gradient(135deg, #AB1638 0%, #8B1230 100%);
  border: none;
}

.btn.btn-red:hover {
  background: linear-gradient(135deg, #8B1230 0%, #6f162b 100%);
  box-shadow: 0 8px 25px rgba(171, 22, 56, 0.3);
}

.btn.btn-red-border, .btn.btn-red-border:focus {
  color: #AB1638;
  background-color: #fff;
  border: 2px solid #AB1638;
}

.btn.btn-red-border:hover {
  background-color: #AB1638;
  color: #fff;
  box-shadow: 0 8px 25px rgba(171, 22, 56, 0.2);
}

.btn.btn-dark-red, .btn.btn-dark-red:focus {
  color: #fff;
  background: linear-gradient(135deg, #6f162b 0%, #5a1123 100%);
  border: none;
}

.btn.btn-dark-red:hover {
  background: linear-gradient(135deg, #5a1123 0%, #45091a 100%);
}

.btn.btn-white, .btn.btn-white:focus {
  color: #6f162b;
  background-color: #fff;
  border: 2px solid #fff;
}

.btn.btn-white:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

/* Hero Section */
section.hero {
  min-height: 600px;
  display: flex;
  align-items: center;
}

section.hero h1.section-title {
  color: #1e242c;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section.hero h4 {
  font-size: 24px;
  font-weight: 600;
  color: #AB1638;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

section.hero p.section-info {
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 19px;
  color: #414D60;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

section.hero p span {
  margin: 0 20px;
  display: inline-block;
}

section.hero .ctas {
  margin-top: 30px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

section.hero .ctas .btn + .btn {
  margin-left: 15px;
}

section.hero .image-section {
  position: relative;
  text-align: center;
}

section.hero .image-section img {
  transition: transform 0.3s ease;
}

section.hero .image-section:after {
  content: '';
  height: 130px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

/* Key Program Section */
section.key-program {
  background: linear-gradient(180deg, rgba(255, 231, 231, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

section.key-program h2.section-title {
  text-align: center;
  margin-bottom: 50px;
}

section.key-program .offer-card {
  border: 2px solid rgba(171, 22, 56, 0.1);
  border-radius: 24px;
  padding: 25px 25px 25px 120px;
  height: 100%;
  color: #1e242c;
  background-color: rgba(255, 231, 231, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(171, 22, 56, 0.1);
  position: relative;
  align-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

section.key-program .offer-card:hover {
  color: #fff;
  background: linear-gradient(135deg, #AB1638 0%, #8B1230 100%);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(171, 22, 56, 0.3);
  border-color: transparent;
}

section.key-program .offer-card .offer-icon {
  width: 75px;
  height: 75px;
  color: #c8102e;
  background-color: #fff;
  position: absolute;
  left: 25px;
  top: 50%;
  margin-top: -37.5px;
  border-radius: 50%;
  background-image: url(../images/key-program-ic.webp);
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: 450px;
  box-shadow: 0 4px 20px rgba(171, 22, 56, 0.2);
  transition: transform 0.3s ease;
}

section.key-program .offer-card:hover .offer-icon {
  transform: scale(1.1);
}

section.key-program .offer-card.kp-1 .offer-icon {
  background-position-x: 18px;
}

section.key-program .offer-card.kp-2 .offer-icon {
  background-position-x: -63px;
}

section.key-program .offer-card.kp-3 .offer-icon {
  background-position-x: -145px;
}

section.key-program .offer-card.kp-4 .offer-icon {
  background-position-x: -228px;
}

section.key-program .offer-card.kp-5 .offer-icon {
  background-position-x: -310px;
}

section.key-program .offer-card.kp-6 .offer-icon {
  background-position-x: -392px;
}

section.key-program .offer-card .offer-title {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1.3;
}

section.key-program .offer-card .offer-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.95;
}

/* Why Section */
section.why h2.section-title {
  margin-bottom: 30px;
}

section.why ul {
  font-size: 17px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

section.why ul li {
  padding-left: 50px;
  position: relative;
  line-height: 1.7;
  color: #414D60;
}

section.why ul li + li {
  margin-top: 20px;
}

section.why ul li span {
  position: absolute;
  left: 10px;
  display: inline-block;
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #AB1638 0%, #8B1230 100%);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 15px rgba(171, 22, 56, 0.3);
}

section.why .image-section {
  position: relative;
  text-align: center;
}

section.why .image-section img {
  height: 550px;
  transition: transform 0.3s ease;
}

section.why .image-section:after {
  content: '';
  height: 130px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

/* Result Section */
section.result {
  background: linear-gradient(180deg, rgba(255, 231, 231, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

section.result h2.section-title,
section.result p.section-info {
  text-align: center;
}

section.result p.section-info {
  font-size: 20px;
  color: #414D60;
  margin-bottom: 30px;
}

section.result .score-card {
  padding: 0 25px 25px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 0 0 28px 28px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(171, 22, 56, 0.25);
  transition: all 0.3s ease;
  margin: 0 0 calc(var(--bs-gutter-x));
}

section.result .score-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(171, 22, 56, 0.35);
}

section.result .title {
  display: inline-block;
  border-radius: 0 0 28px 28px;
  margin-bottom: 20px;
  padding: 12px 40px;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #AB1638 0%, #8B1230 100%);
  box-shadow: 0 4px 15px rgba(171, 22, 56, 0.3);
}

section.result h4 {
  font-size: 21px;
  font-weight: 500;
  margin: 15px 0;
  color: #1e242c;
}

section.result .score {
  font-size: 32px;
  font-weight: 700;
  color: #AB1638;
}
section.result .score span {
  font-size: 20px;
  color: #000;
}

/* Join Section */
section.join .join-card {
  padding: 40px 40px 40px 70px;
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #6f162b 0%, #AB1638 100%);
  box-shadow: 0 15px 50px rgba(111, 22, 43, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

section.join h2.section-title {
  font-size: 48px;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

section.join p.section-info {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

section.join .join-card img {
  position: relative;
  bottom: -42px;
  margin-top: -109px;
  transition: transform 0.3s ease;
}


/* Essential Section */
section.essential h2.section-title {
  text-align: center;
  margin-bottom: 50px;
}

section.essential .features-wrapper {
  width: 100%;
  margin: auto;
}

section.essential .feature-item {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeInScale 0.6s ease-out forwards;
}

section.essential .feature-item:nth-child(1) { animation-delay: 0.1s; }
section.essential .feature-item:nth-child(2) { animation-delay: 0.2s; }
section.essential .feature-item:nth-child(3) { animation-delay: 0.3s; }
section.essential .feature-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

section.essential .feature-number {
  font-size: 80px;
  font-weight: 700;
  color: rgba(171, 22, 56, 0.12);
  margin-right: 25px;
  flex-shrink: 0;
  width: 90px;
  line-height: 1;
  text-align: center;
}

section.essential .feature-item:nth-child(even) .feature-number {
  margin-right: 0;
  margin-left: 25px;
}

section.essential .feature-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
  border: 2px solid rgba(171, 22, 56, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

section.essential .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(171, 22, 56, 0.15);
  border-color: rgba(171, 22, 56, 0.3);
}

section.essential .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0;
  background-image: url(../images/essential-ic.svg);
  background-repeat: no-repeat;
  background-position-y: center;
  background-size: 200px;
  transition: transform 0.3s ease;
}

section.essential .feature-card:hover .feature-icon {
  transform: scale(1.1);
}

section.essential .feature-icon.blue {
  background-color: #E1E9FE;
  background-position-x: 16px;
}

section.essential .feature-icon.orange {
  background-color: #FFEED2;
  background-position-x: -44px;
}

section.essential .feature-icon.purple {
  background-color: #F6E2FF;
  background-position-x: -100px;
}

section.essential .feature-icon.red {
  background-color: #FFD2D2;
  background-position-x: -160px;
}

section.essential .feature-text h4 {
  font-size: 22px;
  margin: 0 0 8px;
  font-weight: 600;
  color: #1E242C;
}

section.essential .feature-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #414D60;
  margin: 0;
}

section.essential .image-block {
  position: relative;
  text-align: center;
}

section.essential .image-block img {
  width: 530px;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.1));
}

section.essential .image-block:after {
  content: '';
  height: 130px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

/* Support Section */
section.support {
  background: linear-gradient(180deg, rgba(171, 22, 56, 0.05) 0%, rgba(171, 22, 56, 0.02) 100%);
  backdrop-filter: blur(10px);
}

section.support h2.section-title {
  text-align: center;
  margin-bottom: 15px;
}

section.support p.section-info {
  text-align: center;
  font-weight: 600;
  font-size: 22px;
  color: #414D60;
  margin-bottom: 40px;
}

section.support .support-card {
  padding: 35px 25px;
  text-align: center;
  border: 2px solid rgba(171, 22, 56, 0.1);
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

section.support .support-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(171, 22, 56, 0.2);
  border-color: rgba(171, 22, 56, 0.3);
}

section.support .support-card h4 {
  font-size: 26px;
  font-weight: 600;
  color: #AB1638;
  margin-bottom: 12px;
}

section.support .support-card p {
  font-size: 17px;
  font-weight: 400;
  color: #414D60;
  margin: 0;
  line-height: 1.6;
}

/* Class Schedule Section */
section.class-schedule {
  text-align: center;
}

section.class-schedule .week-view {
  position: relative;
  margin: 50px 0;
}

section.class-schedule .week-view .day-col {
  width: 14.2857%;
  float: left;
  padding: 0 5px;
  position: relative;
}

section.class-schedule .week-view .day-col:before {
  content: '';
  border-left: 1px dashed rgba(171, 22, 56, 0.4);
  position: absolute;
  top: 0;
  bottom: 30px;
  z-index: -1;
}

section.class-schedule .week-view .day-col.no-dashed-line:before {
  border-left: 1px solid rgba(171, 22, 56, 0.2);
}

section.class-schedule .week-view .day-col .day-date strong {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 800;
  color: #1e242c;
}

section.class-schedule .week-view .day-col .day-date {
  border: 2px solid #AB1638;
  padding: 10px;
  border-radius: 12px;
  margin-bottom: 25px;
  background-color: #fff;
  transition: all 0.3s ease;
}

section.class-schedule .week-view .day-col .day-date:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(171, 22, 56, 0.2);
}

section.class-schedule .week-view .day-col .lecture {
  position: relative;
  padding: 5px;
  font-size: 14px;
  border-radius: 8px;
  color: #fff;
  margin-bottom: 25px;
  overflow: hidden;
  background: linear-gradient(135deg, #3C8CE7 0%, #00EAFF 100%);
  height: 165px;
  box-shadow: 0 8px 25px rgba(60, 140, 231, 0.3);
  transition: all 0.3s ease;
}

section.class-schedule .week-view .day-col .lecture:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(60, 140, 231, 0.4);
}

section.class-schedule .week-view .day-col .lecture:before,
section.class-schedule .week-view .day-col .lecture:after {
  content: '';
  background-color: rgba(255, 255, 255, 0.2);
  height: 80px;
  width: 80px;
  display: inline-block;
  border-radius: 50%;
  position: absolute;
}

section.class-schedule .week-view .day-col .lecture:before {
  top: -53px;
  right: -30px;
}

section.class-schedule .week-view .day-col .lecture:after {
  bottom: -56px;
  left: -30px;
}

section.class-schedule .week-view .day-col .lecture.maths {
  background: linear-gradient(135deg, #51832C 0%, #28EF77 100%);
  box-shadow: 0 8px 25px rgba(81, 131, 44, 0.3);
}

section.class-schedule .week-view .day-col .lecture.reading-and-writing {
  background: linear-gradient(135deg, #3C8CE7 0%, #00EAFF 100%);
  box-shadow: 0 8px 25px rgba(60, 140, 231, 0.3);
}

section.class-schedule .week-view .day-col .lecture .time {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.5);
  font-size: 13px;
  font-weight: 600;
}

section.class-schedule .week-view .day-col .no-class {
  height: 250px;
  position: relative;
}

section.class-schedule .week-view .day-col .no-class span {
  transform: rotate(-90deg);
  display: inline-block;
  font-weight: 700;
  font-size: 32px;
  width: 100%;
  color: #d0d0d0;
  position: absolute;
  top: 50%;
  translate: -50% 0;
  padding: 0 8px;
  background-color: #fff;
}

section.class-schedule .notes {
  padding: 25px;
  border-radius: 16px;
  text-align: left;
  background: linear-gradient(135deg, #FFE7E7 0%, #FFD5D5 100%);
  border: 2px solid rgba(171, 22, 56, 0.2);
  box-shadow: 0 8px 25px rgba(171, 22, 56, 0.15);
  margin-top: 30px;
}

section.class-schedule .notes h3 {
  margin-top: 0;
  font-size: 22px;
  font-weight: 700;
  color: #6f162b;
}

section.class-schedule .notes ul {
  margin: 0;
  padding-left: 25px;
}

section.class-schedule .notes ul li {
  margin-bottom: 12px;
  font-weight: 500;
  color: #1e242c;
  line-height: 1.6;
}

section.class-schedule .notes ul li:last-child {
  margin-bottom: 0;
}

section.class-schedule span.class-tag {
  vertical-align: middle;
  font-size: 13px;
  padding: 3px 10px;
  margin: 5px 0;
  display: inline-block;
  border-radius: 20px;
  font-weight: 400;
  color: #000;
  background-color: #ffffff80;
  position: absolute;
  bottom: 0px;
  left: 20px;
}

section.class-schedule .topics {
  font-size: 14px;
  font-weight: 500;
}

section.class-schedule .ucat-schedule-tabs {
  margin-top: 30px;
}

section.class-schedule .ucat-schedule-tabs .nav-tabs {
  border: 0;
  text-align: center;
  justify-content: center;
  margin-bottom: 40px;
}

section.class-schedule .ucat-schedule-tabs .nav-tabs li {
  display: inline-block;
  float: none;
}

section.class-schedule .ucat-schedule-tabs .nav-tabs li a {
  display: inline-block;
  margin: 0;
  width: 220px;
  border: 0;
  color: #1e242c;
  font-size: 19px;
  padding: 12px;
  border-radius: 0;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

section.class-schedule .ucat-schedule-tabs .nav-tabs li a:hover {
  color: #AB1638;
}

section.class-schedule .ucat-schedule-tabs .nav-tabs li.active a {
  font-weight: 600;
  color: #fff;
  background-image: linear-gradient(135deg, #6f162b 2.64%, #ab1638 96.44%);
  box-shadow: 0 4px 15px rgba(171, 22, 56, 0.3);
}

section.class-schedule .ucat-schedule-tabs .nav-tabs li.active a:after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  transform: rotate(45deg);
  left: 50%;
  bottom: -11px;
  margin-left: -11px;
  z-index: -1;
  background-image: linear-gradient(135deg, #73162c 2.64%, #a21636 96.44%);
}

section.class-schedule .cal-nav {
  cursor: pointer;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  display: inline-block;
  position: absolute;
  background-color: #6f162b;
  top: 7px;
  background-image: url("https://www.gotouniversity.com//images/sat-cal-nav.svg");
  background-repeat: no-repeat;
  background-position: 0 center;
  box-shadow: 0 4px 15px rgba(111, 22, 43, 0.3);
  transition: all 0.3s ease;
}

section.class-schedule .cal-nav:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(111, 22, 43, 0.4);
}

section.class-schedule .cal-nav.pre {
  left: -60px;
  background-position: 14px center;
}

section.class-schedule .cal-nav.next {
  right: -60px;
  background-position: -49px center;
}

.week-view {
  position: relative;
}

/* Free Session Section */
section.free-session h2.section-title {
  margin-bottom: 30px;
}

section.free-session p.section-info {
  color: #414D60;
  font-size: 18px;
  line-height: 1.7;
}

section.free-session .ctas {
  text-align: left;
  margin-top: 40px;
}

section.free-session .ctas .btn + .btn {
  margin-left: 15px;
}

section.free-session .image-section {
  position: relative;
  text-align: center;
}

section.free-session .image-section img {
  width: 350px;
  margin-top: -10px;
  transition: transform 0.3s ease;
}

section.free-session .image-section img:hover {
  transform: scale(1.05);
}

section.free-session .image-section:after {
  content: '';
  height: 130px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}

/* Elevate Section */
section.elevate {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(171, 22, 56, 0.03) 100%);
}

section.elevate h2.section-title {
  text-align: center;
  margin-bottom: 30px;
}

section.elevate .elev-bg {
  padding: 30px 0;
  margin: 30px 0;
  background-image: url(../images/elev-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

section.elevate .ctas {
  text-align: center;
  margin-top: 40px;
}

section.elevate .elev-card {
  border-radius: 20px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  width: 200px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(171, 22, 56, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0 auto;
}

section.elevate .elev-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(171, 22, 56, 0.2);
  border-color: rgba(171, 22, 56, 0.3);
}

section.elevate .elev-card + .elev-card {
  margin-top: 25px;
}

section.elevate .elev-card span.ic {
  height: 35px;
  width: 35px;
  display: inline-block;
  background-image: url(../images/elev-ic.webp);
  background-size: 200px;
  background-repeat: no-repeat;
  margin-bottom: 8px;
  background-position-y: center;
  filter: drop-shadow(0 2px 8px rgba(171, 22, 56, 0.2));
}

section.elevate .elev-card.ec-1 span.ic {
  background-position-x: 0px;
}

section.elevate .elev-card.ec-2 span.ic {
  background-position-x: -85px;
}

section.elevate .elev-card.ec-3 span.ic {
  background-position-x: -170px;
}

.text-right {
  justify-items: self-end;
}

section.elevate .elev-card p {
  margin-bottom: 0;
  color: #1e242c;
  line-height: 1.5;
}

section.elevate .elev-image-card img {
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

section.elevate .elev-image-card img:hover {
  transform: scale(1.02);
}

/* User Profile */
.users-profile span.profile-pic i {
  display: inline-block;
  height: 45px;
  width: 45px;
  background-image: url(https://www.gotouniversity.com/images/user.svg);
  background-size: 35px;
  background-repeat: no-repeat;
  background-position: bottom center;
}

/* Modal Styles */
.modal-header {
  display: block;
  padding: 0;
}
.login-card .login-header-title, .login-modal .modal-header h2.login-header-title {
    background: linear-gradient(135deg, #AB1638 0%, #8B1230 100%);
}
.login-modal .modal-content .close {
  position: absolute;
  top: 0;
  right: 0;
  color: #AB1638;
  background-color: #fff;
  opacity: 1;
  padding: 0;
  text-align: center;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 0 12px 0 22px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(171, 22, 56, 0.2);
}
.login-card .login-form p.tnc a {
    color: #AB1638;
}
.login-card .login-form .login-ctas .btn {
    background: linear-gradient(135deg, #AB1638 0%, #8B1230 100%);
}

.otp-input {
  text-align: center;
  margin: 30px 0;
}

.otp-input input.form-control {
    height: 45px !important;
    width: 45px !important;
    display: inline-block !important;
    border-radius: 10px !important;
    font-size: 24px !important;
    text-align: center !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    color: #AB1638 !important;
    aspect-ratio: 1 !important;
    margin: 0 5px !important;
    border: 2px solid #AB1638 !important;
    transition: all 0.3s ease !important;
}

.otp-input input.form-control:focus {
  border-color: #6f162b !important;
  box-shadow: 0 0 0 4px rgba(171, 22, 56, 0.1) !important;
  transform: scale(1.05);
}

.resend-otp-timeout {
  text-align: center;
  color: #414D60;
  font-weight: 500;
}

#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(111, 22, 43, 0.7);
  backdrop-filter: blur(5px);
  z-index: 5000;
  cursor: pointer;
}

#spinner {
  position: absolute;
  z-index: 5001;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 48px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (min-width: 767px) {
  .navbar-expand-lg .navbar-collapse {
      justify-content: end;
      display: flex !important;
  }
}
/* Responsive Styles */
@media (max-width: 767px) {
  body {
    font-size: 16px;
    padding-top: 56px;
  }
  header {
    min-height: auto;
  }
  .navbar {
    margin-bottom: 0;
    display: block;
  }
  section {
    padding: 40px 0;
  }

  h2.section-title {
    font-size: 24px;
  }

  .btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .navbar-toggler {
    border: 0;
    padding: 6px 0;
    border-color: #000;
    border-width: 2px;
    font-size: 18px;
    float: right;
  }
  .navbar-nav {
    display: block;
  }
  .navbar-collapse {
    float: left;
    width: 100%;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 10px 0;
  }
  .navbar-expand-lg .navbar-nav .nav-link.btn {
    margin: 0;
    width: 100%;
  }

  /* Hero Mobile */
  section.hero {
    text-align: center;
    padding: 40px 0;
    min-height: auto;
  }

  section.hero h1.section-title {
    font-size: 28px;
  }

  section.hero h4 {
    font-size: 18px;
    font-weight: 600;
  }

  section.hero p.section-info {
    font-size: 16px;
  }

  section.hero .image-section img {
    width: 280px;
    margin-top: 20px;
  }

  section.hero .ctas {
    margin-top: 25px;
  }

  section.hero .ctas .btn + .btn {
    margin-left: 0;
    margin-top: 12px;
  }

  /* Key Program Mobile */
  section.key-program h2.section-title {
    margin-bottom: 30px;
  }
  section.key-program .offer-card {
    padding: 15px;
    margin-bottom: 20px;
  }

  section.key-program .offer-card .offer-title {
    padding-left: 75px;
    font-size: 18px;
    min-height: 50px;
    line-height: 1.4;
    margin-top: -5px;
    margin-bottom: 15px;
  }

  section.key-program .offer-card .offer-icon {
    width: 60px;
    height: 60px;
    left: 15px;
    top: 15px;
    margin-top: 0;
    background-size: 400px;
  }

  section.key-program .offer-card.kp-1 .offer-icon {
    background-position-x: 13px;
  }

  section.key-program .offer-card.kp-2 .offer-icon {
    background-position-x: -62px;
  }

  section.key-program .offer-card.kp-3 .offer-icon {
    background-position-x: -133px;
  }

  section.key-program .offer-card.kp-4 .offer-icon {
    background-position-x: -206px;
  }

  section.key-program .offer-card.kp-5 .offer-icon {
    background-position-x: -279px;
  }

  section.key-program .offer-card.kp-6 .offer-icon {
    background-position-x: -352px;
  }

  section.key-program .offer-card .offer-desc {
    font-size: 14px;
  }

  /* Why Mobile */
  section.why ul {
    font-size: 15px;
  }

  section.why ul li {
    padding-left: 40px;
    line-height: 1.6;
  }

  section.why ul li + li {
    margin-top: 15px;
  }

  section.why ul li span {
    left: 0;
    width: 24px;
    height: 24px;
    line-height: 24px;
  }

  section.why .image-section img {
    height: auto;
    width: 100%;
    max-width: 350px;
  }

  /* Result Mobile */
  section.result .score-card {
    padding: 0 15px 15px;
    margin-top: 20px;
  }

  section.result .title {
    font-size: 18px;
    padding: 10px 30px;
    margin-bottom: 12px;
  }

  section.result h4 {
    font-size: 19px;
  }

  section.result .score {
    font-size: 26px;
  }

  /* Join Mobile */
  section.join .join-card {
    margin-top: 0;
    padding: 25px;
  }

  section.join h2.section-title {
    font-size: 26px;
  }

  section.join h2.section-title br {
    display: none;
  }

  section.join p.section-info {
    font-size: 16px;
    line-height: 1.6;
  }

  section.join .join-card img {
    position: relative;
    bottom: -15px;
    margin-top: -40px;
    width: 250px;
    float: right;
    display: none;
  }

  /* Essential Mobile */
  section.essential .feature-number {
    display: none;
  }

  section.essential .feature-card {
    padding: 15px;
    display: block;
    position: relative;
  }

  section.essential .feature-icon {
    margin-top: 0;
    margin-bottom: 0;
    position: absolute;
    top: 15px;
    left: 15px;
    width: 48px;
    height: 48px;
  }
    section.essential .feature-icon.blue {
      background-position-x: 13px;
    }

    section.essential .feature-icon.orange {
      background-position-x: -47px;
    }

    section.essential .feature-icon.purple {
      background-position-x: -105px;
    }

    section.essential .feature-icon.red {
      background-position-x: -164px;
    }

  section.essential .feature-text h4 {
    padding-left: 70px;
    min-height: 50px;
    align-content: center;
    font-size: 18px;
    font-weight: 600;
  }

  section.essential .feature-text p {
    font-size: 15px;
  }

  section.essential .feature-item {
    margin-bottom: 25px;
  }

  section.essential .image-block img {
    width: 100%;
    max-width: 400px;
  }

  /* Support Mobile */
  section.support p.section-info {
    font-size: 18px;
  }

  section.support .support-card {
    padding: 25px 20px;
    margin-bottom: 20px;
    height: auto;
  }

  section.support .support-card h4 {
    font-size: 20px;
  }

  section.support .support-card h4 br {
    display: none;
  }

  section.support .support-card p {
    font-size: 15px;
  }

  /* Class Schedule Mobile */
  section.class-schedule .week-view {
    margin-top: 70px;
  }

  section.class-schedule .week-view .day-col {
    width: 33.333%;
  }

  section.class-schedule .week-view .day-col .no-class {
    min-height: 220px;
    height: auto;
  }

  section.class-schedule .week-view .day-col .lecture .time {
    font-size: 13px;
  }

  section.class-schedule span.class-tag {
    font-size: 11px;
    bottom: 8px;
    left: 8px;
    right: 8px;
    width: auto;
  }

  section.class-schedule .topics {
    font-size: 12px;
  }

  section.class-schedule .week-view .day-col .lecture .subject {
    font-size: 14px;
  }

  section.class-schedule .week-view .day-col .day-date {
    font-size: 14px;
  }

  section.class-schedule .ucat-schedule-tabs .nav-tabs li a {
    width: auto;
    padding: 8px 18px;
    font-size: 16px;
    border-radius: 8px;
  }

  section.class-schedule .cal-nav {
    height: 35px;
    width: 35px;
    top: -60px;
    background-size: 65px;
  }

  section.class-schedule .cal-nav.pre {
    left: 10px;
    background-position: 9px center;
  }

  section.class-schedule .cal-nav.next {
    right: 10px;
    background-position: -42px center;
  }

  section.class-schedule .notes {
    padding: 20px;
  }

  section.class-schedule .notes h3 {
    font-size: 19px;
  }

  /* Elevate Mobile */
  section.elevate {
    background-color: rgba(171, 22, 56, 0.05);
  }

  section.elevate .elev-card {
    font-size: 13px;
    width: 160px;
    padding: 18px;
  }

  section.elevate .elev-card + .elev-card {
    margin-top: 20px;
  }

  section.elevate .elev-bg {
    padding: 20px 0;
    margin: 20px 0;
  }

  /* Free Session Mobile */
  section.free-session h2.section-title,
  section.free-session p.section-info {
    text-align: center;
  }

  section.free-session .ctas {
    text-align: center;
    margin-top: 25px;
  }
  section.free-session .ctas .btn {
    font-size: 16px;
    padding: 10px 40px;
  }
  section.free-session .ctas .btn + .btn {
    margin-left: 0;
    margin-top: 12px;
  }

  section.free-session .image-section img {
    width: 280px;
    margin-top: 0;
  }
}
  .lead-modal .modal-content {
    border-radius: 30px;
    overflow: hidden;
  }
  .lead-modal .modal-content .modal-body {
    background-color: #ffe6eb;
    position: relative;
  }
  .lead-modal .modal-content .modal-body:before {
    content: '';
    width: 100px;
    height: 320px;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -160px;
    margin-left: -50px;
    transform: rotate(20deg);
    background: linear-gradient(135deg, #AB1638 0%, #8B1230 100%);
    border-radius: 0 150px 0 150px;
    opacity: .25;
    filter: blur(45px);
  }
  .lead-modal .lead-form form {
    margin-top: 0;
  }
  .lead-modal .lead-form img {
    height: 60px;
    margin-bottom: 10px;
  }
  .lead-modal .lead-form .number {
    line-height: 30px;
  }
  .lead-modal .lead-form .number img {
    width: 30px;
    height: auto;
    margin: 0 5px 0 0;
  }
  .lead-modal .lead-form .number a {
    color: #000;
  }
  .lead-modal .lead-form h2.modal-title {
    font-size: 25px;
  }
  .lead-modal .lead-form p.modal-discription {
    font-size: 14px !important;
    margin-bottom: 20px;
    margin-top: 10px;
  }
  .lead-modal .lead-form .direct-lead-form input {
    padding: 6px 12px !important;
    background-color: #fff;
    border: 1px solid #ccc !important;
    border-radius: 6px;
    height: 40px !important;
  }
  .lead-modal .lead-form .select2-container--krajee-bs3 .select2-selection--single {
    border: 1px solid #ccc;
    height: 40px;
    border-radius: 6px 0 0 6px !important;
    margin-right: -1px;
    padding: 8px 24px 8px 12px;
    line-height: 1.428571429;
  }
  .lead-modal .lead-form .select2-container--krajee-bs3 .select2-selection--single .select2-selection__arrow {
    height: 38px;
    border-left: 0;
  }
  .lead-modal .lead-form #w0 .field-directleads-phone input {
    border-radius: 0 6px 6px 0 !important;
  }
  .lead-modal .lead-form .btn.btn-blue {
    color: #fff;
    background-color: #2ac1f0;
    border-radius: 5px;
    display: block;
    width: 100%;
    margin-top: 20px;
    font-size: 16px;
  }
  .lead-modal .lead-form .select2-container--krajee-bs3 .select2-dropdown {
    width: auto !important;
  }
  .lead-modal .lead-form label.control-label {
    font-weight: 400;
    font-size: 15px;
    color: #1a1a1a;
  }
  .lead-modal .lead-form button.close {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(151.05deg, #2AC1F0 0%, #08F29B 98.69%);
    border-radius: 0 0 0 30px;
    padding: 0;
    height: 45px;
    width: 45px;
    font-size: 35px;
    text-shadow: none;
    color: #fff;
    opacity: 1;
    z-index: 999;
    font-weight: 500;
  }
  #leads #content {
    vertical-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main-form {
    padding: 0;
  }
  .main-form .row.g-0 {
    margin-right: initial;
    margin-left: initial;
  }
  .main-form .form-group {
    position: relative;
  }
  .main-form .form-group .form-group {
    margin-bottom: 0 !important;
  }
  #w0 .main-form .form-group .help-block {
    position: absolute;
    top: 0;
    right: 0;
    bottom: auto;
    left: auto;
    color: #a94442;
    background-color: transparent;
  }
  .lead-modal .phone-no {
    text-align: center;
    margin-top: 20px !important;
    padding: 20px 0 10px;
    border-top: 1px solid #ffb3c5;
  }
  .btn-close {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #AB1638 0%, #8B1230 100%);
    border-radius: 0 0 0 30px;
    padding: 0;
    height: 45px;
    width: 45px;
    font-size: 30px;
    text-shadow: none;
    color: #fff;
    opacity: 1;
    z-index: 999;
    font-weight: 400;
  }
  @media (max-width: 767px) {
    .lead-modal .lead-form .number {
      font-size: 18px;
      margin-bottom: 15px;
    }
    #leads .modal-body {
      padding: 30px 25px;
    }
    .lead-form .main-form{
      padding: 0px 0px 0px 0px;
    }
    .lead-form .form-btns {
      text-align: center;
      padding-top: 15px;
    }
    .login-modal .login-card {
      border-radius: 10px !important;
    }
    .lead-modal .lead-form button.close {
      border-radius: 0 0 0 20px;
      height: 30px;
      width: 30px;
      font-size: 20px;
    }
    .lead-modal .lead-form form {
      margin-top: 0;
      height: 100dvh !important;
    }
    .lead-modal .lead-form h2.modal-title {
      font-size: 20px;
      text-align: left;
    }
    .lead-modal .lead-form p.modal-discription {
      font-size: 14px !important;
      margin-top: 10px;
      text-align: left;
    }
    .modal-dialog.lead-modal {
      margin: 0;
    }
    .lead-modal .modal-content {
      border-radius: 0px 0px 0 0;
    }
    .modal-dialog.lead-modal {
      position: fixed;
      bottom: 0;
      width: 100%;
    }
    #leads.modal.fade .modal-dialog {
      -webkit-transform: translate(0,100%);
      -ms-transform: translate(0,100%);
      -o-transform: translate(0,100%);
      transform: translate(0,100%);
    }
    #leads.modal.fade.in .modal-dialog {
      -webkit-transform: translate(0,0);
      -ms-transform: translate(0,0);
      -o-transform: translate(0,0);
      transform: translate(0,0);
    }
    .modal-dialog.lead-modal {
      height: -webkit-fill-available;
    }
    .lead-modal .lead-form .number img {
      display: block;
      margin: 0 auto 10px;
    }
  }
  #w0 .main-form .form-group .help-block{
    position: absolute;
    right: 0;
    bottom: auto;
    left: auto;
    color: #a94442;
    background-color: transparent;
  }
  @media (max-width: 1400px) {
    .dropdown-submenu > ul.dropdown-menu {
      right: 100% !important;
      left: auto !important;
    }
  }
  @media (max-width: 767px) {
    .navbar-nav .dropdown .dropdown-submenu > ul.dropdown-menu li a {
      padding-left: 40px;
    }
    .dropdown-submenu > a::after {
      margin-right: 0;
    }
  }