.lbs-about-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 45%, #fff5f5 100%);
  overflow: hidden;
}

.lbs-about-img {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(10, 72, 195, 0.18);
}

.lbs-about-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 72, 195, 0.45), transparent 55%);
  z-index: 1;
}

.lbs-about-img img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
}

.lbs-badge {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 2;
  background: #ffffff;
  padding: 20px 28px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-left: 6px solid #0a48c3;
}

.lbs-badge h3 {
  font-size: 34px;
  font-weight: 800;
  color: #0a48c3;
  margin: 0;
}

.lbs-badge p {
  margin: 0;
  color: #8b0000;
  font-weight: 700;
}

.lbs-tag {
  display: inline-block;
  background: rgba(10, 72, 195, 0.1);
  color: #0a48c3;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.lbs-about-content h2 {
  font-size: 46px;
  line-height: 1.15;
  font-weight: 800;
  color: #111;
  margin-bottom: 22px;
}

.lbs-about-content h2 span {
  color: #0a48c3;
}

.lbs-about-content p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.lbs-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.lbs-point {
  background: #ffffff;
  padding: 14px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(10, 72, 195, 0.08);
  border: 1px solid rgba(10, 72, 195, 0.08);
}

.lbs-point i {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.lbs-point span {
  font-size: 15px;
  font-weight: 700;
  color: #222;
}

.lbs-about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 15px 35px rgba(10, 72, 195, 0.24);
  transition: 0.3s ease;
}

.lbs-about-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .lbs-about-content h2 {
    font-size: 36px;
  }

  .lbs-about-img img {
    height: 480px;
  }
}

@media (max-width: 767px) {
  .lbs-about-section {
    padding: 60px 0;
  }

  .lbs-about-content h2 {
    font-size: 30px;
  }

  .lbs-points {
    grid-template-columns: 1fr;
  }

  .lbs-about-img img {
    height: 390px;
  }
}
.lbs-counter-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  position: relative;
  overflow: hidden;
}

.lbs-counter-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(255,193,7,0.22), transparent 28%);
}

.lbs-counter-card {
  position: relative;
  z-index: 2;
  background: rgba(255,255,255,0.96);
  padding: 34px 20px;
  border-radius: 24px;
  text-align: center;
  min-height: 220px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.16);
  transition: 0.35s ease;
  overflow: hidden;
}

.lbs-counter-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  top: -40px;
  background: rgba(10,72,195,0.12);
  border-radius: 50%;
}

.lbs-counter-card:hover {
  transform: translateY(-8px);
}

.lbs-counter-card i {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, #0a48c3, #e00022);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 28px rgba(10,72,195,0.25);
}

.lbs-counter-card h3 {
  font-size: 42px;
  font-weight: 800;
  color: #0a48c3;
  margin-bottom: 10px;
}

.lbs-counter-card p {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin: 0;
  line-height: 1.5;
}
.lbs-courses-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(10, 72, 195, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(139, 0, 0, 0.08), transparent 32%),
    #ffffff;
}

.lbs-section-tag {
  display: inline-block;
  background: rgba(10, 72, 195, 0.1);
  color: #0a48c3;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.lbs-section-title {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}

.lbs-section-title span {
  color: #0a48c3;
}

.lbs-section-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin: 0 auto;
}

.course-card {
  height: 100%;
  background: #ffffff;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(10, 72, 195, 0.1);
  border: 1px solid rgba(10, 72, 195, 0.08);
  transition: 0.35s ease;
  position: relative;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(10, 72, 195, 0.18);
}

.course-img {
  position: relative;
  
  overflow: hidden;
}

.course-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 72, 195, 0.45), transparent);
  z-index: 1;
}

.course-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.course-card:hover .course-img img {
  transform: scale(1.08);
}

.course-icon {
  position: absolute;
  left: 24px;
  bottom: 10px;
  z-index: 3;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 12px 30px rgba(10, 72, 195, 0.25);
}

.course-content {
  padding: 48px 24px 26px;
}

.course-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.course-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.course-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.course-content ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14.5px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.course-content ul li i {
  color: #0a48c3;
  margin-top: 3px;
}

.course-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.3s ease;
}

.course-btn:hover {
  color: #ffffff;
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .lbs-section-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .lbs-courses-section {
    padding: 70px 0;
  }

  .lbs-section-title {
    font-size: 30px;
  }

 
}
.lbs-why-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(10, 72, 195, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(139, 0, 0, 0.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7f9ff);
  overflow: hidden;
}

.lbs-why-tag {
  display: inline-block;
  background: rgba(10, 72, 195, 0.1);
  color: #0a48c3;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.lbs-why-title {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}

.lbs-why-title span {
  color: #0a48c3;
}

.lbs-why-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.why-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  margin-bottom: 22px;
  box-shadow: 0 14px 40px rgba(10, 72, 195, 0.09);
  border: 1px solid rgba(10, 72, 195, 0.08);
  transition: 0.35s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -35px;
  top: -35px;
  background: rgba(10, 72, 195, 0.08);
  border-radius: 50%;
}

.why-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 55px rgba(10, 72, 195, 0.16);
}

.why-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.why-card h4 {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.why-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.why-center-box {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  min-height: 620px;
  box-shadow: 0 25px 70px rgba(10, 72, 195, 0.22);
}

.why-center-box img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  display: block;
}

.why-center-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 72, 195, 0.75), rgba(139, 0, 0, 0.25), transparent);
  z-index: 1;
}

.why-center-content {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border-radius: 24px;
  text-align: center;
}

.why-center-content h3 {
  font-size: 25px;
  font-weight: 800;
  color: #0a48c3;
  margin-bottom: 8px;
}

.why-center-content p {
  color: #555;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 991px) {
  .lbs-why-title {
    font-size: 36px;
  }

  .why-center-box,
  .why-center-box img {
    min-height: auto;
    height: 480px;
  }
}

@media (max-width: 767px) {
  .lbs-why-section {
    padding: 70px 0;
  }

  .lbs-why-title {
    font-size: 30px;
  }


}
.lbs-diploma-section {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(10, 72, 195, 0.95), rgba(139, 0, 0, 0.92)),
    url("images/diploma-bg.jpg") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

.lbs-diploma-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 193, 7, 0.22), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.15), transparent 28%);
}

.lbs-diploma-section .container {
  position: relative;
  z-index: 2;
}

.diploma-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.diploma-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 18px;
}

.diploma-title span {
  color: #ffcc33;
}

.diploma-desc {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.diploma-note {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  padding: 22px;
  border-radius: 24px;
  display: flex;
  gap: 15px;
  align-items: center;
}

.diploma-note i {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 18px;
  background: #ffffff;
  color: #0a48c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.diploma-note p {
  color: #ffffff;
  font-weight: 700;
  margin: 0;
  line-height: 1.5;
}

.diploma-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.diploma-card {
  background: white;
  border-radius: 28px;
  padding: 26px;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  align-items: center;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  transition: 0.35s ease;
}

.diploma-card:hover {
  transform: translateY(-6px);
}

.diploma-left {
  background: linear-gradient(135deg, #f7f9ff, #fff3f3);
  border-radius: 24px;
  padding: 25px 15px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.diploma-icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 18px;
}

.duration-badge {
  background: #ffffff;
  color: #8b0000;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(10, 72, 195, 0.1);
}

.diploma-content h3 {
  color: #111;
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 10px;
}

.diploma-content p {
  color: #555;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 18px;
}

.course-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.course-includes span {
  background: rgba(10, 72, 195, 0.08);
  color: #0a48c3;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  border: 1px solid rgba(10, 72, 195, 0.08);
}

@media (max-width: 991px) {
  .diploma-title {
    font-size: 36px;
  }

  .diploma-card {
    grid-template-columns: 1fr;
  }

  .diploma-left {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .lbs-diploma-section {
    padding: 70px 0;
  }

  .diploma-title {
    font-size: 30px;
  }

  .diploma-card {
    padding: 20px;
  }
}
.teacher-content h5 {
  color: #8b0000;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 14px;
}

.small-desc {
  margin-top: -6px;
}

.teacher-bottom-box {
  margin-top: 55px;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  border-radius: 30px;
  padding: 34px;
  display: flex;
  align-items: center;
  gap: 25px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(10,72,195,0.22);
}

.bottom-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 24px;
  background: #ffffff;
  color: #0a48c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.teacher-bottom-box h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 10px;
}

.teacher-bottom-box p {
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
  color: rgba(255,255,255,0.9);
}

@media (max-width: 767px) {
  .teacher-bottom-box {
    flex-direction: column;
    text-align: center;
  }
}
.lbs-teacher-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(10,72,195,0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(139,0,0,0.10), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8faff);
  overflow: hidden;
}

.teacher-tag {
  display: inline-block;
  background: rgba(10,72,195,0.1);
  color: #0a48c3;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.teacher-title {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  margin-bottom: 18px;
}

.teacher-title span {
  color: #0a48c3;
}

.teacher-desc {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.teacher-card {
  height: 100%;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(10,72,195,0.12);
  border: 1px solid rgba(10,72,195,0.08);
  transition: 0.4s ease;
}

.teacher-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(10,72,195,0.20);
}

.teacher-img {
  position: relative;
 
  overflow: hidden;
}

.teacher-img::before {
  content: "";
  position: absolute;
  inset: 0;
  
  z-index: 1;
}

.teacher-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s ease;
}

.teacher-card:hover .teacher-img img {
  transform: scale(1.08);
}

.teacher-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.teacher-content {
  position: relative;
  padding: 52px 28px 30px;
}

.teacher-icon {
  position: absolute;
  top: -38px;
  left: 28px;
  width: 76px;
  height: 76px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0a48c3, #ffb703, #8b0000);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border: 5px solid #ffffff;
  box-shadow: 0 12px 30px rgba(10,72,195,0.25);
}

.teacher-content h3 {
  font-size: 25px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.teacher-content p {
  color: #555;
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.teacher-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 11px;
}

.teacher-content ul li {
  color: #333;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.teacher-content ul li i {
  color: #0a48c3;
  margin-top: 4px;
}

.teacher-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  padding: 13px 26px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s ease;
}

.teacher-btn:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.teacher-skill-box {
  margin-top: 55px;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  border-radius: 28px;
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.skill-item {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 22px 15px;
  text-align: center;
  color: #ffffff;
  transition: 0.3s ease;
}

.skill-item:hover {
  background: #ffffff;
  color: #0a48c3;
  transform: translateY(-6px);
}

.skill-item i {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.skill-item span {
  font-weight: 700;
  font-size: 15px;
}

@media (max-width: 991px) {
  .teacher-title {
    font-size: 36px;
  }

  .teacher-skill-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .lbs-teacher-section {
    padding: 70px 0;
  }

  .teacher-title {
    font-size: 30px;
  }

 

  .teacher-skill-box {
    grid-template-columns: 1fr;
  }
}
.google-review-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
}

.google-tag {
  display: inline-block;
  background: rgba(66, 133, 244, 0.12);
  color: #4285F4;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.google-title {
  font-size: 44px;
  font-weight: 800;
  color: #202124;
  line-height: 1.2;
  margin-bottom: 18px;
}

.google-title span {
  color: #4285F4;
}

.google-desc {
  color: #5f6368;
  font-size: 16px;
  line-height: 1.8;
}

.review-slider-wrap {
  position: relative;
  padding: 0 65px;
}

.review-slider {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s ease;
}

.review-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  border: 1px solid #e8eaed;
  box-shadow: 0 16px 45px rgba(60,64,67,0.12);
  min-height: 350px;
}

.google-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.google-g {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: conic-gradient(#4285F4 0 25%, #EA4335 0 50%, #FBBC05 0 75%, #34A853 0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.google-g::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  background: #ffffff;
  border-radius: 50%;
}

.google-g span {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 900;
  color: #4285F4;
}

.stars {
  color: #FBBC05;
  letter-spacing: 2px;
  font-size: 18px;
}

.review-card h3 {
  font-size: 21px;
  font-weight: 800;
  color: #202124;
  line-height: 1.4;
  margin-bottom: 16px;
}

.review-card p {
  color: #5f6368;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.student-info {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}

.student-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #EA4335);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
}

.student-info h4 {
  font-size: 17px;
  font-weight: 800;
  color: #202124;
  margin-bottom: 4px;
}

.student-info span {
  font-size: 13px;
  font-weight: 700;
  color: #4285F4;
}

.review-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: #ffffff;
  font-size: 17px;
  z-index: 5;
  transition: 0.3s ease;
}

.review-arrow:hover {
  background: linear-gradient(135deg, #EA4335, #FBBC05);
}

.prev-review {
  left: 0;
}

.next-review {
  right: 0;
}

@media (max-width: 991px) {
  .google-title {
    font-size: 36px;
  }

  .review-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .google-review-section {
    padding: 70px 0;
  }

  .google-title {
    font-size: 30px;
  }

  .review-slider-wrap {
    padding: 0 5px;
  }

  .review-card {
    flex: 0 0 100%;
  }

  .review-arrow {
    display: none;
  }
}
.testimonial-cta-box {
  margin-top: 65px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #4285F4, #34A853, #EA4335);
  border-radius: 34px;
  padding: 45px 50px;
  box-shadow: 0 25px 70px rgba(66,133,244,0.22);
}

.cta-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.shape-one {
  width: 240px;
  height: 240px;
  background: #ffffff;
  right: -80px;
  top: -80px;
}

.shape-two {
  width: 180px;
  height: 180px;
  background: #FBBC05;
  left: -50px;
  bottom: -50px;
}

.testimonial-cta-content {
  position: relative;
  z-index: 2;
}

.cta-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
}

.testimonial-cta-content h3 {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 16px;
}

.testimonial-cta-content p {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255,255,255,0.92);
  margin: 0;
  max-width: 750px;
}

.testimonial-cta-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #4285F4;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 800;
  transition: 0.35s ease;
  box-shadow: 0 14px 35px rgba(0,0,0,0.16);
}

.testimonial-cta-btn:hover {
  transform: translateY(-5px);
  color: #EA4335;
}

@media (max-width: 991px) {

  .testimonial-cta-box {
    padding: 40px 30px;
    text-align: center;
  }

  .testimonial-cta-content h3 {
    font-size: 30px;
  }

  .testimonial-cta-btn {
    margin-top: 28px;
  }
}

@media (max-width: 767px) {

  .testimonial-cta-box {
    padding: 32px 22px;
    border-radius: 24px;
  }

  .testimonial-cta-content h3 {
    font-size: 25px;
  }

  .testimonial-cta-content p {
    font-size: 15px;
  }

  .testimonial-cta-btn {
    width: 100%;
    justify-content: center;
  }
}
.lbs-admission-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(66,133,244,0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(234,67,53,0.10), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8fbff);
  overflow: hidden;
}

.admission-tag {
  display: inline-block;
  background: rgba(66,133,244,0.12);
  color: #4285F4;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
}

.admission-title {
  font-size: 50px;
  font-weight: 800;
  color: #202124;
  line-height: 1.2;
  margin-bottom: 22px;
}

.admission-title span {
  color: #4285F4;
}

.admission-desc {
  color: #5f6368;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 16px;
}

/* COURSE PILLS */

.admission-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.course-pill {
  background: #ffffff;
  border: 1px solid #e8eaed;
  padding: 12px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(60,64,67,0.08);
  transition: 0.3s ease;
}

.course-pill:hover {
  transform: translateY(-5px);
}

.course-pill i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.course-pill span {
  font-size: 14px;
  font-weight: 700;
  color: #202124;
}

/* SEAT BOX */

.seat-box {
  margin-top: 15px;
  background: linear-gradient(135deg, #4285F4, #34A853);
  padding: 24px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(66,133,244,0.20);
}

.seat-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 22px;
  background: #ffffff;
  color: #4285F4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.seat-box h4 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
}

.seat-box p {
  margin: 0;
  line-height: 1.7;
  color: rgba(255,255,255,0.92);
}

/* BUTTONS */

.admission-btns {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.apply-btn,
.enroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 60px;
  text-decoration: none;
  font-weight: 800;
  transition: 0.35s ease;
}

.apply-btn {
  background: linear-gradient(135deg, #4285F4, #EA4335);
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(66,133,244,0.22);
}

.apply-btn:hover {
  color: #ffffff;
  transform: translateY(-5px);
}

.enroll-btn {
  background: #ffffff;
  border: 2px solid #4285F4;
  color: #4285F4;
}

.enroll-btn:hover {
  background: #4285F4;
  color: #ffffff;
}

/* BOTTOM */

.bottom-line {
  margin-top: 28px;
  color: #202124;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bottom-line i {
  color: #FBBC05;
}

/* IMAGE */

.admission-image-box {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(66,133,244,0.20);
}

.admission-image-box img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
  rgba(32,33,36,0.55),
  rgba(66,133,244,0.18),
  transparent);
}

/* FLOATING */

.floating-box {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  padding: 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.floating-box i {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.floating-box h5 {
  font-size: 17px;
  font-weight: 800;
  color: #202124;
  margin-bottom: 4px;
}

.floating-box span {
  font-size: 13px;
  color: #5f6368;
  font-weight: 600;
}

.floating-one {
  left: 25px;
  top: 30px;
}

.floating-two {
  right: 25px;
  bottom: 30px;
}

@media (max-width: 991px) {

  .admission-title {
    font-size: 38px;
  }

  .admission-image-box img {
    height: 520px;
  }
}

@media (max-width: 767px) {

  .lbs-admission-section {
    padding: 70px 0;
  }

  .admission-title {
    font-size: 30px;
  }

  .admission-btns {
    flex-direction: column;
  }

  .apply-btn,
  .enroll-btn {
    width: 100%;
    justify-content: center;
  }

  .seat-box {
    flex-direction: column;
    text-align: center;
  }

  .floating-box {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 15px;
  }

  .admission-image-box img {
    height: 420px;
  }
}
.lbs-inquiry-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(10,72,195,0.12), transparent 32%),
    radial-gradient(circle at bottom right, rgba(139,0,0,0.12), transparent 30%),
    linear-gradient(135deg, #ffffff, #f7f9ff);
  overflow: hidden;
}

.inquiry-wrapper {
  background: #ffffff;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(10,72,195,0.15);
  border: 1px solid rgba(10,72,195,0.08);
}

.inquiry-left {
  height: 100%;
  padding: 55px 42px;
  background:
    linear-gradient(135deg, rgba(10,72,195,0.96), rgba(139,0,0,0.95)),
    url("images/inquiry-bg.jpg") center/cover no-repeat;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.inquiry-left::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  right: -100px;
  top: -90px;
}

.inquiry-left::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  background: rgba(255,193,7,0.18);
  border-radius: 50%;
  left: -60px;
  bottom: -50px;
}

.inquiry-left > * {
  position: relative;
  z-index: 2;
}

.inquiry-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.inquiry-left h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.inquiry-left h2 span {
  color: #ffcc33;
}

.inquiry-left p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.inquiry-info-list {
  display: grid;
  gap: 18px;
  margin-bottom: 35px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 15px;
  border-radius: 18px;
  backdrop-filter: blur(8px);
}

.info-item i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #ffffff;
  color: #0a48c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.info-item span {
  font-weight: 700;
}

.inquiry-bottom-text {
  background: #ffffff;
  color: #0a48c3;
  padding: 18px;
  border-radius: 20px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  display: flex;
  gap: 12px;
}

.inquiry-bottom-text i {
  color: #8b0000;
  margin-top: 4px;
}

/* FORM */

.inquiry-form-box {
  padding: 55px 45px;
  background:
    linear-gradient(135deg, #ffffff, #f8faff);
  height: 100%;
}

.form-heading h3 {
  font-size: 32px;
  font-weight: 800;
  color: #111;
  margin-bottom: 8px;
}

.form-heading p {
  color: #555;
  margin-bottom: 30px;
}

.form-group-custom label {
  font-size: 14px;
  font-weight: 800;
  color: #222;
  margin-bottom: 8px;
}

.input-box {
  position: relative;
}

.input-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #0a48c3;
  font-size: 16px;
}

.input-box input,
.input-box select,
.input-box textarea {
  width: 100%;
  border: 1px solid rgba(10,72,195,0.12);
  background: #ffffff;
  border-radius: 16px;
  padding: 15px 18px 15px 48px;
  font-size: 15px;
  color: #333;
  outline: none;
  box-shadow: 0 10px 28px rgba(10,72,195,0.05);
  transition: 0.3s ease;
}

.textarea-box i {
  top: 22px;
  transform: none;
}

.input-box textarea {
  height: 130px;
  resize: none;
}

.input-box input:focus,
.input-box select:focus,
.input-box textarea:focus {
  border-color: #0a48c3;
  box-shadow: 0 12px 30px rgba(10,72,195,0.12);
}

.inquiry-submit-btn {
  width: 100%;
  border: none;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  padding: 17px 30px;
  border-radius: 18px;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.35s ease;
  box-shadow: 0 15px 35px rgba(10,72,195,0.22);
}

.inquiry-submit-btn:hover {
  transform: translateY(-4px);
}

@media (max-width: 991px) {
  .inquiry-left h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .lbs-inquiry-section {
    padding: 70px 0;
  }

  .inquiry-left,
  .inquiry-form-box {
    padding: 36px 24px;
  }

  .inquiry-left h2 {
    font-size: 30px;
  }

  .form-heading h3 {
    font-size: 26px;
  }

  .inquiry-bottom-text {
    flex-direction: column;
  }
}
.lbs-faq-section {
  padding: 100px 0;
  background:
    radial-gradient(circle at top left, rgba(10,72,195,0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(139,0,0,0.10), transparent 30%),
    linear-gradient(135deg, #ffffff, #f8faff);
}

.faq-tag {
  display: inline-block;
  background: rgba(10,72,195,0.1);
  color: #0a48c3;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.faq-title {
  font-size: 44px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.faq-title span {
  color: #0a48c3;
}

.lbs-faq-accordion {
  display: grid;
  gap: 18px;
}

.lbs-faq-accordion .accordion-item {
  border: none;
  border-radius: 22px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(10,72,195,0.09);
}

.lbs-faq-accordion .accordion-button {
  padding: 22px 24px;
  font-size: 17px;
  font-weight: 800;
  color: #111;
  background: #ffffff;
  box-shadow: none;
  gap: 14px;
}

.lbs-faq-accordion .accordion-button i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lbs-faq-accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
}

.lbs-faq-accordion .accordion-button:not(.collapsed) i {
  background: #ffffff;
  color: #0a48c3;
}

.lbs-faq-accordion .accordion-button::after {
  filter: brightness(0);
}

.lbs-faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.lbs-faq-accordion .accordion-body {
  padding: 0 26px 24px 84px;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  background: #ffffff;
}

@media (max-width: 767px) {
  .lbs-faq-section {
    padding: 70px 0;
  }

  .faq-title {
    font-size: 30px;
  }

  .lbs-faq-accordion .accordion-button {
    font-size: 15px;
    padding: 18px;
  }

  .lbs-faq-accordion .accordion-body {
    padding: 0 18px 22px 18px;
  }
}
.success-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  padding: 20px;
}

.success-popup-overlay.show-popup {
  opacity: 1;
  visibility: visible;
}

.success-popup-box {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 28px;
  padding: 38px 28px;
  text-align: center;
  transform: scale(0.8);
  transition: 0.35s ease;
  box-shadow: 0 25px 80px rgba(10,72,195,0.25);
}

.success-popup-overlay.show-popup .success-popup-box {
  transform: scale(1);
}

.success-animation svg {
  width: 110px;
  height: 110px;
  margin-bottom: 18px;
}

.success-circle {
  fill: none;
  stroke: #0a48c3;
  stroke-width: 8;
  stroke-dasharray: 330;
  stroke-dashoffset: 330;
  animation: circleDraw 0.8s ease forwards;
}

.success-check {
  fill: none;
  stroke: #8b0000;
  stroke-width: 9;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 90;
  stroke-dashoffset: 90;
  animation: checkDraw 0.6s ease forwards 0.55s;
}

.success-popup-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}

.success-popup-box p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.success-close-btn {
  border: none;
  background: linear-gradient(135deg, #0a48c3, #8b0000);
  color: #ffffff;
  padding: 13px 34px;
  border-radius: 50px;
  font-weight: 800;
  transition: 0.3s ease;
}

.success-close-btn:hover {
  transform: translateY(-3px);
}

@keyframes circleDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes checkDraw {
  to {
    stroke-dashoffset: 0;
  }
}
.lbs-enquiry-modal .modal-dialog {
    max-width: 980px;
}

.lbs-modal-content {
    border: none;
    border-radius: 34px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 30px 90px rgba(10,72,195,0.25);
}

/* LEFT SIDE */

.lbs-modal-left {
    height: 100%;
    padding: 55px 38px;
    background:
    linear-gradient(135deg, rgba(10,72,195,0.96), rgba(139,0,0,0.92)),
    url("images/modal-bg.jpg") center/cover no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.lbs-modal-left::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    right: -90px;
    top: -90px;
}

.lbs-modal-left::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255,193,7,0.18);
    left: -60px;
    bottom: -60px;
}

.lbs-modal-left > * {
    position: relative;
    z-index: 2;
}

.modal-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 22px;
}

.lbs-modal-left h3 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 18px;
}

.lbs-modal-left h3 span {
    color: #ffcc33;
}

.lbs-modal-left p {
    color: rgba(255,255,255,0.92);
    line-height: 1.9;
    margin-bottom: 32px;
}

.modal-feature-list {
    display: grid;
    gap: 18px;
}

.modal-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    padding: 14px;
    backdrop-filter: blur(8px);
}

.modal-feature i {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #ffffff;
    color: #0a48c3;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FORM SIDE */

.lbs-modal-form-side {
    padding: 40px;
    background:
    linear-gradient(135deg, #ffffff, #f8faff);
    height: 100%;
}

.lbs-modal-header {
    border: none;
    padding: 0;
    margin-bottom: 28px;
}

.lbs-modal-header h5 {
    font-size: 32px;
    font-weight: 800;
    color: #111;
}

/* FORM */

.lbs-contact-form .form-group {
    margin-bottom: 18px;
}

.lbs-contact-form .form-control {
    height: 58px;
    border-radius: 18px;
    border: 1px solid rgba(10,72,195,0.10);
    background: #ffffff;
    box-shadow: 0 10px 28px rgba(10,72,195,0.05);
    padding: 14px 18px;
    font-size: 15px;
    color: #333;
    transition: 0.3s ease;
}

.lbs-contact-form textarea.form-control {
    height: 130px;
    resize: none;
    padding-top: 16px;
}

.lbs-contact-form .form-control:focus {
    border-color: #0a48c3;
    box-shadow: 0 12px 30px rgba(10,72,195,0.12);
}

.lbs-contact-form .form-control::placeholder {
    color: #777;
}

.lbs-submit-btn {
    width: 100%;
    border: none;
    border-radius: 18px;
    background: linear-gradient(135deg, #0a48c3, #8b0000);
    color: #ffffff;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.35s ease;
    box-shadow: 0 16px 40px rgba(10,72,195,0.22);
}

.lbs-submit-btn:hover {
    transform: translateY(-4px);
}

/* MOBILE */

@media (max-width: 991px) {

    .lbs-modal-left {
        padding: 40px 28px;
    }

    .lbs-modal-left h3 {
        font-size: 34px;
    }

    .lbs-modal-form-side {
        padding: 35px 24px;
    }
}

@media (max-width: 767px) {

    .lbs-modal-left h3 {
        font-size: 28px;
    }

    .lbs-modal-header h5 {
        font-size: 26px;
    }

    .lbs-modal-content {
        border-radius: 24px;
    }
}
/* MOBILE BOTTOM NAV */

.lbs-mobile-bottom-nav {
    position: fixed;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: calc(100% - 24px);
    max-width: 460px;
    z-index: 9999;

    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.22);

    border-radius: 24px;

    padding: 12px;

    display: none;
    gap: 12px;

    box-shadow:
    0 20px 50px rgba(10,72,195,0.25),
    0 0 25px rgba(10,72,195,0.12);
}

/* BUTTON */

.bottom-nav-btn {
    flex: 1;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 2px 18px;

    border-radius: 18px;

    text-decoration: none;

    transition: 0.35s ease;
}

/* SHINE EFFECT */

.bottom-nav-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;

    width: 70%;
    height: 100%;

    background:
    linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.45),
    transparent
    );

    transform: skewX(-20deg);

    animation: shineMove 3s infinite;
}

@keyframes shineMove {

    0% {
        left: -120%;
    }

    100% {
        left: 160%;
    }
}

/* CALL BUTTON */

.call-btn {
    background:
    linear-gradient(135deg,
    #0a48c3,
    #2563eb);
}

/* WHATSAPP */

.whatsapp-btn {
    background:
    linear-gradient(135deg,
    #25D366,
    #128C7E);
}

/* ICON */

.btn-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    border-radius: 16px;

    background: rgba(255,255,255,0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    backdrop-filter: blur(8px);

    box-shadow:
    inset 0 0 10px rgba(255,255,255,0.12);
}

.btn-icon i {
    color: #ffffff;
    font-size: 22px;
}

/* TEXT */

.btn-text span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

/* HOVER */

.bottom-nav-btn:hover {
    transform: translateY(-4px);
}

/* MOBILE ONLY */

@media (max-width: 767px) {

    .lbs-mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 95px;
    }
    .top-login-buttons{
    position: absolute;
    bottom: 88px; /* main buttons ke upar */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10000;
}
}
/* =========================
   CERTIFICATION SECTION
========================= */

.lbs-certification-section{
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #ffffff, #f5f9ff);
    overflow: hidden;
}

.lbs-certification-section::before{
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    background: rgba(0, 102, 255, 0.08);
    border-radius: 50%;
    filter: blur(30px);
}

.lbs-certification-section::after{
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: rgba(255, 0, 51, 0.08);
    border-radius: 50%;
    filter: blur(30px);
}

.lbs-certification-heading{
    text-align: center;
    max-width: 850px;
    margin: auto;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.lbs-section-tag{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(0, 102, 255, 0.08);
    color: #005eff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.lbs-certification-heading h2{
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    color: #0b1b3a;
    margin-bottom: 20px;
}

.lbs-certification-heading h2 span{
    color: #e4002b;
}

.lbs-certification-heading p{
    font-size: 17px;
    line-height: 1.8;
    color: #5c6784;
}

.lbs-certification-wrapper{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    position: relative;
    z-index: 2;
}

.lbs-certificate-card{
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,0.04);
    position: relative;
}

.lbs-certificate-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.lbs-certificate-top{
    height: 8px;
    width: 100%;
    background: linear-gradient(to right, #005eff, #00a2ff);
}

.lbs-certificate-top.red{
    background: linear-gradient(to right, #ff0037, #ff6b81);
}

.lbs-certificate-image{
    padding: 25px;
    background: #f7faff;
}

.lbs-certificate-image img{
    width: 100%;
    border-radius: 18px;
    border: 1px solid #dce7ff;
}

.lbs-certificate-content{
    padding: 30px;
}

.lbs-certificate-content h3{
    font-size: 26px;
    color: #0b1b3a;
    margin-bottom: 15px;
    font-weight: 700;
}

.lbs-certificate-content p{
    color: #5f6c8a;
    line-height: 1.8;
    font-size: 16px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .lbs-certification-heading h2{
        font-size: 38px;
    }

    .lbs-certification-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px){

    .lbs-certification-section{
        padding: 70px 15px;
    }

    .lbs-certification-heading h2{
        font-size: 30px;
    }

    .lbs-certificate-content{
        padding: 24px;
    }

}
/* =========================
   NIOS SUPPORT SECTION
========================= */

.nios-support-section{
    background: #f7f9fc;
    position: relative;
    overflow: hidden;
}

.nios-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.nios-title{
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
    margin-bottom: 20px;
}

.nios-title span{
    color: #0d6efd;
}

.nios-text{
    color: #666;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 15px;
}

.nios-feature-card{
    background: #fff;
    padding: 20px;
    border-radius: 18px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid #eee;
}

.nios-feature-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-icon{
    min-width: 55px;
    height: 55px;
    border-radius: 15px;
    background: linear-gradient(135deg,#0d6efd,#4dabff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.nios-feature-card h5{
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.nios-feature-card p{
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.7;
}

.nios-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg,#0d6efd,#4dabff);
    color: #fff;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.4s ease;
}

.nios-btn:hover{
    background: #111;
    color: #fff;
    transform: translateY(-3px);
}

/* IMAGE SIDE */

.nios-image-wrapper{
    position: relative;
    padding: 20px;
}

.main-nios-img{
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    width: 100%;
    object-fit: cover;
}

.floating-card{
    position: absolute;
    background: #fff;
    border-radius: 18px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    width: 260px;
}

.floating-card i{
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: linear-gradient(135deg,#0d6efd,#4dabff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.floating-card h6{
    margin: 0;
    font-weight: 700;
    font-size: 16px;
}

.floating-card span{
    color: #777;
    font-size: 13px;
}

.card-one{
    top: 40px;
    left: -20px;
}

.card-two{
    bottom: 40px;
    right: -20px;
}

/* Responsive */

@media(max-width:991px){

    .nios-title{
        font-size: 36px;
    }

    .card-one,
    .card-two{
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin-top: 20px;
        width: 100%;
    }

}

@media(max-width:576px){

    .nios-title{
        font-size: 30px;
    }

    .nios-feature-card{
        padding: 18px;
    }

}
/* =========================================
   NIOS ADMISSION SECTION
========================================= */

.nios-admission-section{
    position: relative;
    background: linear-gradient(135deg,#f8fbff,#eef5ff);
    overflow: hidden;
}

/* Background Shapes */

.shape{
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.shape-1{
    width: 350px;
    height: 350px;
    background: rgba(13,110,253,0.08);
    top: -120px;
    left: -100px;
}

.shape-2{
    width: 280px;
    height: 280px;
    background: rgba(255,193,7,0.12);
    bottom: -120px;
    right: -80px;
}

/* Content */

.nios-mini-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d6efd;
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.nios-main-title{
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
    color: #111;
    position: relative;
    z-index: 2;
}

.nios-main-title span{
    color: #0d6efd;
}

.nios-subtitle{
    font-size: 22px;
    font-weight: 600;
    color: #ff6b00;
    margin-bottom: 25px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

.nios-description{
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* Button */

.nios-admission-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg,#0d6efd,#3f8cff);
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(13,110,253,0.25);
}

.nios-admission-btn:hover{
    transform: translateY(-4px);
    color: #fff;
    background: #111;
}

/* Support Cards */

.support-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.support-card{
    border-radius: 24px;
    padding: 28px 24px;
    color: #fff;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.support-card:hover{
    transform: translateY(-8px);
}

.support-card::before{
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: -40px;
    right: -40px;
}

/* Card Colors */

.card-blue{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
}

.card-orange{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
}

.card-green{
    background: linear-gradient(135deg,#00a86b,#3bd18b);
}

.card-pink{
    background: linear-gradient(135deg,#ff3d71,#ff7da1);
}

.card-purple{
    background: linear-gradient(135deg,#6f42c1,#9b6bff);
}

.card-yellow{
    background: linear-gradient(135deg,#ffb703,#ffd166);
    color: #222;
}

/* Icons */

.support-icon{
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.card-yellow .support-icon{
    background: rgba(255,255,255,0.4);
}

/* Text */

.support-content h4{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.support-content p{
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.95;
}

/* Responsive */

@media(max-width:991px){

    .nios-main-title{
        font-size: 40px;
    }

    .support-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px){

    .nios-main-title{
        font-size: 32px;
    }

    .nios-subtitle{
        font-size: 18px;
    }

    .support-card{
        min-height: auto;
    }

}
/* =========================================
   WHY CHOOSE NIOS SECTION
========================================= */

.why-nios-section{
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Heading */

.section-top-content{
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

.why-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-main-heading{
    font-size: 52px;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
    margin-bottom: 20px;
}

.why-main-heading span{
    color: #0d6efd;
}

.why-main-text{
    font-size: 17px;
    color: #666;
    line-height: 1.9;
}

/* Image Area */

.why-nios-image-area{
    position: relative;
    padding: 40px;
}

.circle-bg{
    position: absolute;
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg,#0d6efd,#4dabff);
    border-radius: 50%;
    top: 20px;
    left: 0;
    opacity: 0.12;
}

.why-main-image{
    position: relative;
    z-index: 2;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.floating-info-card{
    position: absolute;
    bottom: 10%;
    right: -20px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    z-index: 3;
    min-width: 280px;
}

.floating-info-card i{
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,#0d6efd,#4dabff);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.floating-info-card h5{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.floating-info-card span{
    font-size: 14px;
    color: #666;
}

/* Right Content */

.why-content-box h3{
    font-size: 36px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #111;
}

.why-content-box p{
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 35px;
}

/* Benefits */

.nios-benefits-wrapper{
    position: relative;
    padding-left: 30px;
}

.nios-benefits-wrapper::before{
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom,#0d6efd,#4dabff);
    border-radius: 10px;
}

.benefit-item{
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.benefit-number{
    min-width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d6efd,#4dabff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(13,110,253,0.25);
}

.benefit-content{
    background: #f8fbff;
    border-radius: 20px;
    padding: 22px;
    width: 100%;
    transition: 0.4s ease;
    border: 1px solid #edf3ff;
}

.benefit-content:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.benefit-content h4{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.benefit-content p{
    margin: 0;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}

/* Responsive */

@media(max-width:991px){

    .why-main-heading{
        font-size: 40px;
    }

    .why-content-box h3{
        font-size: 30px;
    }

    .floating-info-card{
        right: 0;
    }

}

@media(max-width:576px){

    .why-main-heading{
        font-size: 30px;
    }

    .why-content-box h3{
        font-size: 25px;
    }

    .benefit-item{
        gap: 15px;
    }

    .floating-info-card{
        position: relative;
        margin-top: 20px;
        bottom: 0;
    }

}
/* =========================================
   SUBJECT & STUDY GUIDANCE SECTION
========================================= */

.subject-guidance-section{
    background: linear-gradient(135deg,#ffffff,#f6f9ff);
    position: relative;
    overflow: hidden;
}

/* Heading */

.subject-heading{
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

.subject-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.subject-heading h2{
    font-size: 52px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
}

.subject-heading h2 span{
    color: #0d6efd;
}

.subject-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

/* Left Content */

.main-content-card{
    background: #fff;
    padding: 45px;
    border-radius: 35px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid #eef2ff;
}

.main-content-card::before{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(13,110,253,0.05);
    border-radius: 50%;
    top: -120px;
    right: -80px;
}

.card-icon{
    width: 85px;
    height: 85px;
    border-radius: 25px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 30px;
    box-shadow: 0 15px 30px rgba(13,110,253,0.25);
}

.main-content-card h3{
    font-size: 34px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #111;
}

.main-content-card p{
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 15px;
}

/* Right Grid */

.guidance-feature-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
}

/* Feature Box */

.guidance-box{
    border-radius: 30px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    min-height: 280px;
    color: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.guidance-box:hover{
    transform: translateY(-8px);
}

.guidance-box::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}

/* Colors */

.box-blue{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
}

.box-orange{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
}

.box-green{
    background: linear-gradient(135deg,#00a86b,#36d28f);
}

.box-purple{
    background: linear-gradient(135deg,#6f42c1,#9b6bff);
}

/* Icons */

.guidance-icon{
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
}

/* Text */

.guidance-box h4{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.guidance-box p{
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
    opacity: 0.95;
}

/* Responsive */

@media(max-width:991px){

    .subject-heading h2{
        font-size: 40px;
    }

    .main-content-card h3{
        font-size: 28px;
    }

    .guidance-feature-grid{
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px){

    .subject-heading h2{
        font-size: 30px;
    }

    .main-content-card{
        padding: 30px;
    }

    .main-content-card h3{
        font-size: 24px;
    }

    .guidance-box{
        min-height: auto;
    }

}
/* =========================================
   ADMISSION PROCESS SECTION
========================================= */

.admission-process-section{
    position: relative;
    background: linear-gradient(135deg,#f8fbff,#eef5ff);
    overflow: hidden;
}

/* Shapes */

.admission-shape{
    position: absolute;
    border-radius: 50%;
}

.shape-one{
    width: 320px;
    height: 320px;
    background: rgba(13,110,253,0.08);
    top: -120px;
    left: -100px;
}

.shape-two{
    width: 280px;
    height: 280px;
    background: rgba(255,123,0,0.08);
    bottom: -120px;
    right: -100px;
}

/* Heading */

.admission-top-content{
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.admission-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.admission-main-heading{
    font-size: 54px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #111;
}

.admission-main-heading span{
    color: #0d6efd;
}

.admission-main-text{
    font-size: 17px;
    color: #666;
    line-height: 1.9;
}

/* Image */

.admission-image-wrapper{
    position: relative;
    padding-right: 40px;
}

.admission-main-image{
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 2;
}

.admission-floating-card{
    position: absolute;
    bottom: 30px;
    right: 0;
    background: #fff;
    border-radius: 25px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    z-index: 3;
    min-width: 320px;
}

.floating-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
}

.admission-floating-card h5{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.admission-floating-card span{
    font-size: 14px;
    color: #666;
}

/* Right Content */

.admission-content-area h3{
    font-size: 38px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #111;
}

.admission-content-area p{
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

/* Steps */

.admission-process-steps{
    margin-top: 40px;
    position: relative;
}

.process-step{
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    position: relative;
}

.process-step::before{
    content: "";
    position: absolute;
    left: 22px;
    top: 55px;
    width: 3px;
    height: calc(100% + 10px);
    background: #dce8ff;
}

.process-step:last-child::before{
    display: none;
}

.step-number{
    min-width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 10px 20px rgba(13,110,253,0.25);
    position: relative;
    z-index: 2;
}

.step-content{
    background: #fff;
    border-radius: 22px;
    padding: 22px;
    width: 100%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.step-content:hover{
    transform: translateY(-5px);
}

.step-content h4{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.step-content p{
    margin: 0;
    font-size: 15px;
}

/* Bottom Cards */

.admission-support-card{
    background: #fff;
    border-radius: 28px;
    padding: 30px;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid #edf2ff;
}

.admission-support-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.support-top{
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.support-icon{
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.support-icon.blue{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
}

.support-icon.orange{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
}

.support-icon.green{
    background: linear-gradient(135deg,#00a86b,#36d28f);
}

.support-icon.purple{
    background: linear-gradient(135deg,#6f42c1,#9b6bff);
}

.support-icon.pink{
    background: linear-gradient(135deg,#ff3d71,#ff7da1);
}

.support-icon.yellow{
    background: linear-gradient(135deg,#ffb703,#ffd166);
    color: #222;
}

.admission-support-card h4{
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.admission-support-card p{
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* Responsive */

@media(max-width:991px){

    .admission-main-heading{
        font-size: 42px;
    }

    .admission-content-area h3{
        font-size: 30px;
    }

    .admission-image-wrapper{
        padding-right: 0;
    }

    .admission-floating-card{
        right: 20px;
    }

}

@media(max-width:576px){

    .admission-main-heading{
        font-size: 32px;
    }

    .admission-content-area h3{
        font-size: 24px;
    }

    .admission-floating-card{
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: 20px;
        min-width: 100%;
    }

    .process-step{
        gap: 15px;
    }

    .admission-support-card{
        padding: 25px;
    }

}
/* =========================================
   CREATIVE DOCUMENTS SECTION
========================================= */

.creative-documents-section{
    background: linear-gradient(135deg,#f8fbff,#ffffff);
    position: relative;
    overflow: hidden;
}

/* Heading */

.creative-documents-heading{
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

.creative-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111827;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.creative-documents-heading h2{
    font-size: 54px;
    font-weight: 800;
    line-height: 1.3;
    color: #111;
    margin-bottom: 20px;
}

.creative-documents-heading h2 span{
    color: #0d6efd;
}

.creative-documents-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

/* Left Card */

.documents-info-card{
    background: #111827;
    border-radius: 35px;
    padding: 45px;
    color: #fff;
    position: sticky;
    top: 100px;
    overflow: hidden;
}

.documents-info-card::before{
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.big-icon{
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 30px;
}

.documents-info-card h3{
    font-size: 36px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 20px;
}

.documents-info-card p{
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 18px;
}

/* Mini Box */

.support-mini-box{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 35px;
    backdrop-filter: blur(10px);
}

.mini-icon{
    min-width: 65px;
    height: 65px;
    border-radius: 20px;
    background: linear-gradient(135deg,#ff7b00,#ffb347);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.support-mini-box h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.support-mini-box span{
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

/* Right Checklist */

.documents-checklist-wrapper{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Item */

.checklist-item{
    background: #fff;
    border-radius: 28px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 22px;
    transition: 0.4s ease;
    border: 1px solid #edf2ff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.checklist-item:hover{
    transform: translateX(10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Left Icon */

.check-left{
    min-width: 80px;
    height: 80px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
}

/* Colors */

.blue-bg{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
}

.orange-bg{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
}

.green-bg{
    background: linear-gradient(135deg,#00a86b,#36d28f);
}

.purple-bg{
    background: linear-gradient(135deg,#6f42c1,#9b6bff);
}

.pink-bg{
    background: linear-gradient(135deg,#ff3d71,#ff7da1);
}

.yellow-bg{
    background: linear-gradient(135deg,#ffb703,#ffd166);
    color: #222;
}

/* Content */

.check-right{
    flex: 1;
}

.check-right h4{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111;
}

.check-right p{
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Check Mark */

.check-mark{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e9f7ef;
    color: #00a86b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Responsive */

@media(max-width:991px){

    .creative-documents-heading h2{
        font-size: 42px;
    }

    .documents-info-card{
        position: relative;
        top: 0;
    }

}

@media(max-width:576px){

    .creative-documents-heading h2{
        font-size: 32px;
    }

    .documents-info-card{
        padding: 30px;
    }

    .documents-info-card h3{
        font-size: 28px;
    }

    .checklist-item{
        flex-direction: column;
        align-items: flex-start;
    }

    .check-mark{
        margin-left: 0;
    }

}
/* =========================================
   WHY CHOOSE US UNIQUE SECTION
========================================= */

.choose-us-unique-section{
    position: relative;
    background: #0f172a;
    overflow: hidden;
}

/* Glow Effects */

.glow{
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.glow-left{
    width: 300px;
    height: 300px;
    background: rgba(13,110,253,0.25);
    top: -100px;
    left: -100px;
}

.glow-right{
    width: 350px;
    height: 350px;
    background: rgba(255,123,0,0.18);
    bottom: -150px;
    right: -120px;
}

/* Left Content */

.choose-us-content{
    position: relative;
    z-index: 2;
}

.choose-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.choose-us-content h2{
    font-size: 54px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 25px;
}

.choose-us-content h2 span{
    color: #4dabff;
}

.choose-us-content p{
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.75);
    margin-bottom: 18px;
}

/* Highlight Box */

.highlight-box{
    margin-top: 40px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    backdrop-filter: blur(10px);
}

.highlight-icon{
    min-width: 75px;
    height: 75px;
    border-radius: 22px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.highlight-box h5{
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.highlight-box span{
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* Right Grid */

.features-wrapper{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    position: relative;
    z-index: 2;
}

/* Feature Card */

.feature-card{
    border-radius: 30px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    min-height: 280px;
}

.feature-card:hover{
    transform: translateY(-10px);
}

/* Card Backgrounds */

.style-one{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
}

.style-two{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
}

.style-three{
    background: linear-gradient(135deg,#00a86b,#36d28f);
}

.style-four{
    background: linear-gradient(135deg,#6f42c1,#9b6bff);
}

.style-five{
    background: linear-gradient(135deg,#ff3d71,#ff7da1);
}

.style-six{
    background: linear-gradient(135deg,#111827,#374151);
}

/* Decorative Circle */

.feature-card::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    top: -70px;
    right: -70px;
}

/* Top */

.feature-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.feature-icon{
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: red;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    backdrop-filter: blur(10px);
}

.feature-top span{
    font-size: 52px;
    font-weight: 800;
    color: rgba(255,255,255,0.2);
    line-height: 1;
}

/* Text */

.feature-card h4{
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 15px;
}

.feature-card p{
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

/* Responsive */

@media(max-width:991px){

    .choose-us-content h2{
        font-size: 42px;
    }

    .features-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px){

    .choose-us-content h2{
        font-size: 32px;
    }

    .feature-card{
        min-height: auto;
    }

    .highlight-box{
        flex-direction: column;
        align-items: flex-start;
    }

}
/* =========================================
   FINAL CTA SECTION
========================================= */

.nios-final-cta-section{
    background: linear-gradient(135deg,#f9fbff,#eef5ff);
    position: relative;
    overflow: hidden;
}

/* Background Circles */

.cta-bg-circle{
    position: absolute;
    border-radius: 50%;
}

.circle-one{
    width: 350px;
    height: 350px;
    background: rgba(13,110,253,0.08);
    top: -120px;
    left: -100px;
}

.circle-two{
    width: 280px;
    height: 280px;
    background: rgba(255,123,0,0.08);
    bottom: -120px;
    right: -80px;
}

/* Main Wrapper */

.cta-main-wrapper{
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(14px);
    border-radius: 40px;
    padding: 70px;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

/* Left Side */

.cta-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0d6efd;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.cta-left-content h2{
    font-size: 58px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 18px;
}

.cta-left-content h2 span{
    color: #0d6efd;
}

.cta-left-content h5{
    font-size: 24px;
    font-weight: 600;
    color: #ff7b00;
    margin-bottom: 25px;
    line-height: 1.5;
}

.cta-left-content p{
    font-size: 16px;
    line-height: 1.9;
    color: #5f6675;
    margin-bottom: 18px;
}

/* Buttons */

.cta-buttons{
    display: flex;
    gap: 18px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.cta-primary-btn{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s ease;
    box-shadow: 0 15px 35px rgba(13,110,253,0.2);
}

.cta-primary-btn:hover{
    transform: translateY(-4px);
    color: #fff;
}

.cta-outline-btn{
    background: #fff;
    color: #111827;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 60px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.4s ease;
    border: 1px solid #e4ebff;
}

.cta-outline-btn:hover{
    background: #111827;
    color: #fff;
}

/* Contact Card */

.contact-info-card{
    background: #fff;
    border-radius: 35px;
    padding: 35px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.06);
    border: 1px solid #eef2ff;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before{
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(13,110,253,0.05);
    border-radius: 50%;
    top: -100px;
    right: -80px;
}

/* Top */

.contact-card-top{
    display: flex;
    gap: 18px;
    align-items: center;
    margin-bottom: 35px;
}

.contact-icon-main{
    width: 85px;
    height: 85px;
    border-radius: 25px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 15px 30px rgba(13,110,253,0.2);
}

.contact-card-top h3{
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
}

.contact-card-top p{
    margin: 0;
    color: #666;
    font-size: 15px;
}

/* Contact Items */

.contact-items-wrapper{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item{
    background: #f8fbff;
    border-radius: 24px;
    padding: 20px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: 0.4s ease;
}

.contact-item:hover{
    transform: translateX(8px);
    background: #eef5ff;
}

.contact-icon{
    min-width: 65px;
    height: 65px;
    border-radius: 20px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-icon.blue{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
}

.contact-icon.orange{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
}

.contact-icon.green{
    background: linear-gradient(135deg,#00a86b,#36d28f);
}

.contact-icon.purple{
    background: linear-gradient(135deg,#6f42c1,#9b6bff);
}

/* Details */

.contact-details span{
    font-size: 13px;
    font-weight: 600;
    color: #0d6efd;
    display: inline-block;
    margin-bottom: 6px;
}

.contact-details h6{
    font-size: 17px;
    line-height: 1.7;
    color: #111827;
    margin: 0;
    font-weight: 700;
}

/* Responsive */

@media(max-width:991px){

    .cta-main-wrapper{
        padding: 45px;
    }

    .cta-left-content h2{
        font-size: 44px;
    }

}

@media(max-width:576px){

    .cta-main-wrapper{
        padding: 30px 22px;
        border-radius: 30px;
    }

    .cta-left-content h2{
        font-size: 34px;
    }

    .cta-left-content h5{
        font-size: 19px;
    }

    .contact-card-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-item{
        flex-direction: column;
    }

}

/* =========================================
   ABOUT US SECTION
========================================= */

.lbs-about-section{
    position: relative;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
    overflow: hidden;
}

/* Background Shapes */

.about-shape{
    position: absolute;
    border-radius: 50%;
}

.about-shape-1{
    width: 300px;
    height: 300px;
    background: rgba(13,110,253,0.06);
    top: -120px;
    left: -100px;
}

.about-shape-2{
    width: 250px;
    height: 250px;
    background: rgba(255,123,0,0.07);
    bottom: -100px;
    right: -80px;
}

/* IMAGE SIDE */

.about-image-wrapper{
    position: relative;
    padding-right: 40px;
}

.about-main-image{
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.about-main-image img{
    width: 100%;
    height: 620px;
    object-fit: cover;
    display: block;
}

/* Floating Card */

.about-floating-card{
    position: absolute;
    bottom: 30px;
    left: -20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    max-width: 320px;
}

.floating-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.about-floating-card h4{
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.about-floating-card span{
    font-size: 14px;
    color: #666;
}

/* Experience Box */

.experience-box{
    position: absolute;
    top: 35px;
    right: 0;
    background: linear-gradient(135deg,#ff7b00,#ffb347);
    color: #fff;
    padding: 28px;
    border-radius: 28px;
    text-align: center;
    width: 180px;
    box-shadow: 0 20px 45px rgba(255,123,0,0.25);
}

.experience-box h2{
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.experience-box p{
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* CONTENT SIDE */

.about-content{
    position: relative;
    z-index: 2;
}

.about-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0d6efd;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.about-content h2{
    font-size: 54px;
    font-weight: 800;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 25px;
}

.about-content h2 span{
    color: #0d6efd;
}

.about-content p{
    font-size: 16px;
    line-height: 1.9;
    color: #5f6675;
    margin-bottom: 18px;
}

/* Features */

.about-feature-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 35px;
}

.about-feature-item{
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #edf2ff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.about-feature-item:hover{
    transform: translateY(-6px);
}

/* Feature Icon */

.feature-icon{
    min-width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
}

.feature-icon.blue{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
}

.feature-icon.orange{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
}

.feature-icon.green{
    background: linear-gradient(135deg,#00a86b,#36d28f);
}

.feature-icon.purple{
    background: linear-gradient(135deg,#6f42c1,#9b6bff);
}

/* Feature Text */

.about-feature-item h5{
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.about-feature-item span{
    font-size: 14px;
    color: #666;
}

/* Button */

.about-btn-wrapper{
    margin-top: 40px;
}

.about-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 60px;
    font-weight: 600;
    transition: 0.4s ease;
    box-shadow: 0 15px 35px rgba(13,110,253,0.2);
}

.about-btn:hover{
    transform: translateY(-5px);
    color: #fff;
}

/* Responsive */

@media(max-width:991px){

    .about-content h2{
        font-size: 42px;
    }

    .about-image-wrapper{
        padding-right: 0;
    }

    .experience-box{
        right: 20px;
    }

}

@media(max-width:576px){

    .about-content h2{
        font-size: 32px;
    }

    .about-main-image img{
        height: 450px;
    }

    .about-feature-grid{
        grid-template-columns: 1fr;
    }

    .about-floating-card{
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: 100%;
    }

    .experience-box{
        width: 140px;
        padding: 18px;
    }

    .experience-box h2{
        font-size: 34px;
    }

}
/* =========================================
   MISSION & VISION SECTION
========================================= */

.mission-vision-section{
    position: relative;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
    overflow: hidden;
}

/* SVG Waves */

.wave-svg{
    position: absolute;
    width: 100%;
    left: 0;
    z-index: 1;
}

.wave-top{
    top: 0;
}

.wave-bottom{
    bottom: 0;
}

.wave-svg svg{
    width: 100%;
    height: 220px;
}

/* Heading */

.mission-vision-heading{
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

.mv-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: #0d6efd;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.mission-vision-heading h2{
    font-size: 56px;
    font-weight: 800;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 20px;
}

.mission-vision-heading h2 span{
    color: #dc3545;
}

.mission-vision-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

/* Cards */

.mv-card{
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    border-radius: 35px;
    padding: 45px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    height: 100%;
}

.mv-card:hover{
    transform: translateY(-10px);
}

/* Animated Glow */

.card-glow{
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(13,110,253,0.12);
    border-radius: 50%;
    top: -120px;
    right: -100px;
    animation: floatGlow 6s infinite ease-in-out;
}

.red-glow{
    background: rgba(220,53,69,0.12);
}

@keyframes floatGlow{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(20px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* Icon */

.mv-icon{
    width: 90px;
    height: 90px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 36px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.blue-icon{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    box-shadow: 0 15px 35px rgba(13,110,253,0.25);
}

.red-icon{
    background: linear-gradient(135deg,#dc3545,#ff6b81);
    box-shadow: 0 15px 35px rgba(220,53,69,0.25);
}

/* Text */

.mv-card h3{
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.mv-card p{
    font-size: 16px;
    line-height: 1.9;
    color: #5f6675;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

/* Bottom Points */

.mv-points{
    margin-top: 35px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.mv-points span{
    background: #fff;
    border-radius: 50px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.mv-points span i{
    color: #0d6efd;
}

.vision-card .mv-points span i{
    color: #dc3545;
}

/* Responsive */

@media(max-width:991px){

    .mission-vision-heading h2{
        font-size: 42px;
    }

}

@media(max-width:576px){

    .mission-vision-heading h2{
        font-size: 32px;
    }

    .mv-card{
        padding: 30px;
    }

    .mv-card h3{
        font-size: 30px;
    }

    .mv-icon{
        width: 75px;
        height: 75px;
        font-size: 28px;
    }

}
/* =========================================
   LEARNING ENVIRONMENT SECTION
========================================= */

.learning-environment-section{
    position: relative;
    background: linear-gradient(135deg,#ffffff,#f8fbff);
    overflow: hidden;
}

/* Grid Background */

.env-grid-bg{
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(13,110,253,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,110,253,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

/* Heading */

.environment-heading{
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    margin-bottom: 80px;
}

.env-badge{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #111827;
    color: #fff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

.environment-heading h2{
    font-size: 58px;
    font-weight: 800;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 20px;
}

.environment-heading h2 span{
    color: #0d6efd;
}

.environment-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

/* LEFT SIDE */

.environment-content-wrapper{
    position: relative;
    padding-left: 40px;
}

/* Timeline */

.timeline-line{
    position: absolute;
    left: 22px;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom,#0d6efd,#ff4d4d);
    border-radius: 50px;
}

/* Step */

.environment-step{
    position: relative;
    display: flex;
    gap: 25px;
    margin-bottom: 45px;
    z-index: 2;
}

/* Icon */

.step-icon{
    min-width: 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    position: relative;
    z-index: 3;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.step-icon.blue{
    background: #0d6efd;
}

.step-icon.orange{
    background: #ff7b00;
}

.step-icon.green{
    background: #00a86b;
}

.step-icon.red{
    background: #ff4d4d;
}

/* Content */

.step-content{
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 28px;
    border: 1px solid #edf2ff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.step-content:hover{
    transform: translateX(10px);
}

.step-content span{
    font-size: 14px;
    font-weight: 700;
    color: #0d6efd;
    display: inline-block;
    margin-bottom: 10px;
}

.step-content h4{
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.4;
}

.step-content p{
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin: 0;
}

/* RIGHT SIDE */

.environment-showcase{
    position: relative;
    z-index: 2;
}

/* Main Card */

.showcase-main-card{
    background: linear-gradient(135deg,#0f172a,#111827);
    border-radius: 40px;
    padding: 45px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

/* Decorative Glow */

.showcase-main-card::before{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

/* Top */

.showcase-top{
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.showcase-icon{
    width: 85px;
    height: 85px;
    border-radius: 28px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 15px 35px rgba(13,110,253,0.25);
}

.showcase-top h3{
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 8px;
}

.showcase-top span{
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

.showcase-main-card p{
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
}

/* Mini Grid */

.mini-feature-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
}

/* Mini Card */

.mini-feature-card{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    transition: 0.4s ease;
    backdrop-filter: blur(10px);
}

.mini-feature-card:hover{
    transform: translateY(-6px);
    background: rgba(255,255,255,0.1);
}

.mini-feature-card i{
    font-size: 32px;
    color: #4dabff;
    margin-bottom: 15px;
}

.mini-feature-card h5{
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* Floating Circle */

.floating-circle{
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg,#ff4d4d,#ff7b7b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    right: -20px;
    bottom: -20px;
    box-shadow: 0 20px 45px rgba(255,77,77,0.25);
    animation: floatCircle 4s infinite ease-in-out;
}

@keyframes floatCircle{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-12px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* Responsive */

@media(max-width:991px){

    .environment-heading h2{
        font-size: 42px;
    }

}

@media(max-width:576px){

    .environment-heading h2{
        font-size: 32px;
    }

    .environment-content-wrapper{
        padding-left: 20px;
    }

    .timeline-line{
        left: 11px;
    }

    .environment-step{
        gap: 16px;
    }

    .step-content{
        padding: 22px;
    }

    .step-content h4{
        font-size: 22px;
    }

    .showcase-main-card{
        padding: 30px;
    }

    .showcase-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .showcase-top h3{
        font-size: 26px;
    }

    .mini-feature-grid{
        grid-template-columns: 1fr;
    }

    .floating-circle{
        width: 90px;
        height: 90px;
        font-size: 18px;
    }

}
/* =========================================
   ACHIEVEMENTS SECTION
========================================= */

.lbs-achievement-section{
    position: relative;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
    overflow: hidden;
}

/* Background Blur */

.achievement-blur{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.blur-1{
    width: 320px;
    height: 320px;
    background: #0d6efd;
    top: -100px;
    left: -100px;
}

.blur-2{
    width: 350px;
    height: 350px;
    background: #ff4d4d;
    bottom: -120px;
    right: -100px;
}

/* LEFT CONTENT */

.achievement-content{
    position: relative;
    z-index: 2;
}

.achievement-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #0d6efd;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.achievement-content h2{
    font-size: 56px;
    font-weight: 800;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 25px;
}

.achievement-content h2 span{
    color: #ff4d4d;
}

.achievement-content p{
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

/* Bottom Box */

.achievement-bottom-box{
    margin-top: 35px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(14px);
    border-radius: 28px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid #edf2ff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.bottom-icon{
    width: 75px;
    height: 75px;
    border-radius: 24px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 15px 35px rgba(13,110,253,0.25);
}

.achievement-bottom-box h5{
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.achievement-bottom-box span{
    font-size: 14px;
    color: #666;
}

/* GRID */

.achievement-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 28px;
    position: relative;
    z-index: 2;
}

/* CARD */

.achievement-card{
    position: relative;
    border-radius: 35px;
    padding: 35px;
    overflow: hidden;
    transition: 0.4s ease;
    min-height: 320px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

.achievement-card:hover{
    transform: translateY(-10px);
}

/* Card Colors */

.blue-card{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
}

.orange-card{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
    color: #fff;
}

.green-card{
    background: linear-gradient(135deg,#00a86b,#36d28f);
    color: #fff;
}

.red-card{
    background: linear-gradient(135deg,#ff4d4d,#ff7b7b);
    color: #fff;
}

/* Decorative Shape */

.achievement-card::before{
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -70px;
    right: -60px;
}

/* Icon */

.achievement-icon{
    width: 80px;
    height: 80px;
    border-radius: 24px;
    background: rgba(255,255,255,0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

/* Text */

.achievement-card h3{
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 12px;
}

.achievement-card h4{
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 15px;
}

.achievement-card p{
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
    margin: 0;
}

/* Card Number */

.card-number{
    position: absolute;
    bottom: 18px;
    right: 25px;
    font-size: 70px;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    line-height: 1;
}

/* Responsive */

@media(max-width:991px){

    .achievement-content h2{
        font-size: 42px;
    }

}

@media(max-width:576px){

    .achievement-content h2{
        font-size: 32px;
    }

    .achievement-grid{
        grid-template-columns: 1fr;
    }

    .achievement-card{
        min-height: auto;
        padding: 30px;
    }

    .achievement-card h3{
        font-size: 48px;
    }

    .achievement-card h4{
        font-size: 22px;
    }

    .achievement-bottom-box{
        flex-direction: column;
        text-align: center;
    }

}
/* =========================================
   TESTIMONIAL SECTION
========================================= */

.lbs-testimonial-section{
    position: relative;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
    overflow: hidden;
}

/* Background Shapes */

.testimonial-bg-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.shape-1{
    width: 280px;
    height: 280px;
    background: #0d6efd;
    top: -100px;
    left: -100px;
}

.shape-2{
    width: 320px;
    height: 320px;
    background: #ff4d4d;
    bottom: -120px;
    right: -120px;
}

/* Heading */

.testimonial-heading{
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: auto;
    margin-bottom: 70px;
}

.testimonial-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #4285F4;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.testimonial-heading h2{
    font-size: 56px;
    font-weight: 800;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 20px;
}

.testimonial-heading h2 span{
    color: #0d6efd;
}

.testimonial-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

/* Review Card */

.google-review-card{
    position: relative;
    background: #fff;
    border-radius: 32px;
    padding: 32px;
    border: 1px solid #edf2ff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transition: 0.4s ease;
    overflow: hidden;
    height: 100%;
}

.google-review-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* Top */

.review-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.review-profile{
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Avatar */

.review-avatar{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

.blue-avatar{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
}

.orange-avatar{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
}

.green-avatar{
    background: linear-gradient(135deg,#00a86b,#36d28f);
}

.red-avatar{
    background: linear-gradient(135deg,#ff4d4d,#ff7b7b);
}

/* Name */

.review-profile h5{
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.review-profile span{
    font-size: 14px;
    color: #666;
}

/* Google Icon */

.google-icon{
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: #f8fbff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4285F4;
    font-size: 24px;
}

/* Stars */

.review-stars{
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i{
    color: #FFC107;
    font-size: 18px;
}

/* Text */

.review-text{
    font-size: 16px;
    line-height: 1.9;
    color: #5f6675;
    margin-bottom: 28px;
}

/* Bottom */

.review-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #edf2ff;
    padding-top: 18px;
}

.review-bottom span{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #00a86b;
    font-size: 14px;
    font-weight: 600;
}

.review-bottom small{
    font-size: 13px;
    color: #888;
}

/* Responsive */

@media(max-width:991px){

    .testimonial-heading h2{
        font-size: 42px;
    }

}

@media(max-width:576px){

    .testimonial-heading h2{
        font-size: 32px;
    }

    .google-review-card{
        padding: 24px;
        border-radius: 26px;
    }

    .review-top{
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .review-profile h5{
        font-size: 19px;
    }

    .review-avatar{
        width: 58px;
        height: 58px;
        font-size: 22px;
    }

    .review-bottom{
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

}
/* =========================================
   COURSES OVERVIEW SECTION
========================================= */

.lbs-courses-overview{
    position: relative;
    background: linear-gradient(135deg,#f5f9ff,#ffffff);
    overflow: hidden;
}

/* Background Pattern */

.course-pattern{
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(rgba(13,110,253,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,110,253,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.6;
}

/* CONTENT */

.courses-content{
    position: relative;
    z-index: 2;
}

/* Tag */

.course-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d6efd;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(13,110,253,0.2);
}

/* Heading */

.courses-content h2{
    font-size: 56px;
    font-weight: 800;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 25px;
}

.courses-content h2 span{
    color: #0d6efd;
}

/* Paragraph */

.courses-content p{
    font-size: 16px;
    line-height: 1.9;
    color: #5f6675;
    margin-bottom: 18px;
}

/* Highlight List */

.course-highlight-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

.highlight-item{
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 22px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #edf2ff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: 0.4s ease;
}

.highlight-item:hover{
    transform: translateY(-6px);
}

.highlight-item i{
    color: #0d6efd;
    font-size: 18px;
}

/* RIGHT SIDE */

.courses-showcase{
    position: relative;
    z-index: 2;
}

/* Main Card */

.courses-main-card{
    background: #fff;
    border-radius: 38px;
    padding: 35px;
    border: 1px solid #edf2ff;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

/* Decorative Gradient */

.courses-main-card::before{
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(13,110,253,0.06);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

/* Top */

.courses-card-top{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.courses-icon{
    width: 85px;
    height: 85px;
    border-radius: 28px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 15px 35px rgba(13,110,253,0.2);
}

.courses-card-top h3{
    font-size: 30px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.courses-card-top span{
    font-size: 14px;
    color: #666;
}

/* Image */

.courses-image{
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 30px;
}

.courses-image img{
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Floating Badge */

.floating-badge{
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    padding: 14px 22px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.floating-badge i{
    color: #0d6efd;
}

/* Stats */

.courses-stats-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.course-stat-card{
    background: linear-gradient(135deg,#f8fbff,#ffffff);
    border-radius: 24px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #edf2ff;
    transition: 0.4s ease;
}

.course-stat-card:hover{
    transform: translateY(-6px);
}

.course-stat-card h4{
    font-size: 38px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 10px;
}

.course-stat-card p{
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.7;
}

/* Decorative Circle */

.decor-circle{
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 18px solid rgba(13,110,253,0.08);
    bottom: -30px;
    right: -30px;
}

/* Responsive */

@media(max-width:991px){

    .courses-content h2{
        font-size: 42px;
    }

}

@media(max-width:576px){

    .courses-content h2{
        font-size: 32px;
    }

    .course-highlight-list{
        grid-template-columns: 1fr;
    }

    .courses-main-card{
        padding: 25px;
        border-radius: 28px;
    }

    .courses-card-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .courses-card-top h3{
        font-size: 24px;
    }

    .courses-image img{
        height: 260px;
    }

    .courses-stats-grid{
        grid-template-columns: 1fr;
    }

    .floating-badge{
        left: 10px;
        right: 10px;
        justify-content: center;
    }

}

/* =========================================
   BASIC COMPUTER COURSE SECTION
========================================= */

.basic-computer-course-section{
    position: relative;
    background: linear-gradient(135deg,#f7fbff,#ffffff);
    overflow: hidden;
}

/* Background Shapes */

.course-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.shape-left{
    width: 300px;
    height: 300px;
    background: #0d6efd;
    top: -100px;
    left: -100px;
}

.shape-right{
    width: 320px;
    height: 320px;
    background: #ff7b00;
    bottom: -120px;
    right: -120px;
}

/* Heading */

.computer-course-heading{
    max-width: 850px;
    margin: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.course-mini-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0d6efd;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    box-shadow: 0 15px 35px rgba(13,110,253,0.2);
}

.computer-course-heading h2{
    font-size: 58px;
    font-weight: 800;
    line-height: 1.3;
    color: #111827;
    margin-bottom: 22px;
}

.computer-course-heading h2 span{
    color: #0d6efd;
}

.computer-course-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #666;
}

/* LEFT IMAGE */

.computer-course-image-wrapper{
    position: relative;
    z-index: 2;
}

.computer-main-image{
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.computer-main-image img{
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

/* Floating Card */

.floating-course-card{
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.floating-icon{
    width: 65px;
    height: 65px;
    border-radius: 20px;
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.floating-course-card h5{
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.floating-course-card span{
    font-size: 14px;
    color: #666;
}

/* Mini Cards */

.mini-course-card{
    position: absolute;
    background: #fff;
    border-radius: 24px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
    min-width: 260px;
    animation: floatCard 4s infinite ease-in-out;
}

.mini-course-card i{
    width: 58px;
    height: 58px;
    border-radius: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.card-blue{
    top: 40px;
    left: -30px;
}

.card-blue i{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
}

.card-orange{
    bottom: 80px;
    right: -30px;
}

.card-orange i{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
}

.mini-course-card h6{
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.mini-course-card p{
    font-size: 14px;
    color: #666;
    margin: 0;
}

@keyframes floatCard{

    0%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-10px);
    }

    100%{
        transform: translateY(0px);
    }

}

/* RIGHT CONTENT */

.computer-course-content{
    position: relative;
    z-index: 2;
}

.computer-course-content h3{
    font-size: 42px;
    font-weight: 800;
    line-height: 1.4;
    color: #111827;
    margin-bottom: 22px;
}

.computer-course-content p{
    font-size: 16px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 18px;
}

/* Learning Boxes */

.learning-box-wrapper{
    margin-top: 35px;
}

.learning-box{
    display: flex;
    gap: 18px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 24px;
    margin-bottom: 22px;
    border: 1px solid #edf2ff;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.learning-box:hover{
    transform: translateX(8px);
}

.learning-icon{
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.blue-icon{
    background: linear-gradient(135deg,#0d6efd,#4e9eff);
}

.green-icon{
    background: linear-gradient(135deg,#00a86b,#36d28f);
}

.orange-icon{
    background: linear-gradient(135deg,#ff7b00,#ffb347);
}

.learning-box h5{
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.learning-box p{
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}

/* Benefits */

.course-benefits{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

.benefit-item{
    background: #fff;
    border-radius: 20px;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    border: 1px solid #edf2ff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-item i{
    color: #0d6efd;
}

/* Responsive */

@media(max-width:991px){

    .computer-course-heading h2{
        font-size: 42px;
    }

    .computer-main-image img{
        height: 500px;
    }

}

@media(max-width:576px){

    .computer-course-heading h2{
        font-size: 32px;
    }

    .computer-course-content h3{
        font-size: 30px;
    }

    .floating-course-card{
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .mini-course-card{
        position: relative;
        inset: unset;
        margin-top: 20px;
        min-width: auto;
    }

    .course-benefits{
        grid-template-columns: 1fr;
    }

    .learning-box{
        flex-direction: column;
    }

}
/* =========================================
   DIPLOMA PROGRAMS SECTION
========================================= */

.diploma-programs-section{
    position: relative;
    background: linear-gradient(135deg,#071120,#120816);
    overflow: hidden;
}

/* Background Shapes */

.dp-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
}

.dp-shape-1{
    width: 320px;
    height: 320px;
    background: #0d6efd;
    top: -100px;
    left: -100px;
}

.dp-shape-2{
    width: 320px;
    height: 320px;
    background: #9f1239;
    bottom: -100px;
    right: -100px;
}

/* =========================================
   HEADING
========================================= */

.dp-heading{
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
}

.dp-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    backdrop-filter: blur(10px);
    margin-bottom: 25px;
}

.dp-tag i{
    color: #4da3ff;
}

.dp-heading h2{
    font-size: 58px;
    line-height: 1.3;
    font-weight: 900;
    color: #fff;
    margin-bottom: 22px;
}

.dp-heading h2 span{
    background: linear-gradient(135deg,#4da3ff,#c0264f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dp-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: rgba(255,255,255,0.72);
}

/* =========================================
   COURSE CARD
========================================= */

.dp-course-card{
    position: relative;
    height: 100%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 32px;
    padding: 38px;
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.dp-course-card:hover{
    transform: translateY(-10px);
}

/* Featured */

.featured-card{
    border: 1px solid rgba(192,38,79,0.4);
    transform: translateY(-18px);
    background:
    linear-gradient(180deg,
    rgba(192,38,79,0.12),
    rgba(255,255,255,0.05));
}

/* Decorative Circle */

.dp-course-card::before{
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(255,255,255,0.04);
    border-radius: 50%;
    top: -120px;
    right: -120px;
}

/* =========================================
   TOP
========================================= */

.dp-card-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.dp-icon{
    width: 85px;
    height: 85px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-icon i{
    font-size: 34px;
    color: #fff;
}

.blue-bg{
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
}

.maroon-bg{
    background: linear-gradient(135deg,#9f1239,#e11d48);
}

.dark-bg{
    background: linear-gradient(135deg,#1e293b,#334155);
}

.dp-course-code{
    font-size: 12px;
    letter-spacing: 2px;
    color: #7ab8ff;
    font-weight: 700;
}

/* =========================================
   TEXT
========================================= */

.dp-course-card h3{
    font-size: 30px;
    line-height: 1.4;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
}

.dp-course-card p{
    font-size: 15px;
    line-height: 1.9;
    color: rgba(255,255,255,0.72);
    margin-bottom: 28px;
}

/* =========================================
   INCLUDE LIST
========================================= */

.dp-includes{
    margin-bottom: 35px;
}

.dp-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
}

.dp-item:last-child{
    border-bottom: none;
}

.dp-item i{
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(77,163,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4da3ff;
    font-size: 11px;
}

/* =========================================
   FOOTER
========================================= */

.dp-card-footer{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dp-card-footer span{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 600;
}

.dp-card-footer i{
    color: #4da3ff;
}

.dp-number{
    font-size: 54px !important;
    font-weight: 900 !important;
    line-height: 1;
    color: rgba(255,255,255,0.06) !important;
}

/* =========================================
   BENEFITS
========================================= */

.dp-benefits-wrapper{
    margin-top: 75px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 22px;
}

.dp-benefit-box{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 22px;
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.dp-benefit-box i{
    color: #4da3ff;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1199px){

    .dp-heading h2{
        font-size: 48px;
    }

}

@media(max-width:991px){

    .featured-card{
        transform: none;
    }

    .dp-heading h2{
        font-size: 40px;
    }

}

@media(max-width:767px){

    .diploma-programs-section{
        padding: 80px 0;
    }

    .dp-heading{
        margin-bottom: 55px;
    }

    .dp-heading h2{
        font-size: 32px;
    }

    .dp-heading p{
        font-size: 15px;
    }

    .dp-course-card{
        padding: 28px;
        border-radius: 24px;
    }

    .dp-course-card h3{
        font-size: 25px;
    }

    .dp-benefits-wrapper{
        grid-template-columns: 1fr;
    }

}
/* =========================================
   WEB DESIGN COURSE SECTION
========================================= */

.web-design-course-section{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
}

/* Background Shapes */

.wd-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.wd-shape-1{
    width: 320px;
    height: 320px;
    background: #0d6efd;
    top: -100px;
    left: -100px;
}

.wd-shape-2{
    width: 320px;
    height: 320px;
    background: #c0264f;
    bottom: -100px;
    right: -100px;
}

/* =========================================
   HEADING
========================================= */

.wd-heading{
    max-width: 850px;
    margin: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.wd-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e6eefc;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.wd-tag i{
    color: #0d6efd;
}

.wd-heading h2{
    font-size: 58px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
    margin-bottom: 22px;
}

.wd-heading h2 span{
    background: linear-gradient(135deg,#0d6efd,#c0264f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wd-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================================
   IMAGE SIDE
========================================= */

.wd-image-wrapper{
    position: relative;
    z-index: 2;
}

.wd-main-image{
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.wd-main-image img{
    width: 100%;
    height: 680px;
    object-fit: cover;
    display: block;
}

/* Floating Box */

.wd-floating-box{
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: rgba(255,255,255,0.95);
    border-radius: 24px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.wd-floating-icon{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-floating-icon i{
    color: #fff;
    font-size: 28px;
}

.wd-floating-box h5{
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.wd-floating-box span{
    font-size: 14px;
    color: #6b7280;
}

/* Mini Cards */

.wd-mini-card{
    position: absolute;
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 240px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.wd-mini-card i{
    width: 55px;
    height: 55px;
    border-radius: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.card-blue{
    top: 40px;
    left: -30px;
}

.card-blue i{
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
}

.card-maroon{
    bottom: 80px;
    right: -30px;
}

.card-maroon i{
    background: linear-gradient(135deg,#9f1239,#e11d48);
}

.wd-mini-card h6{
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 3px;
}

.wd-mini-card p{
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* =========================================
   CONTENT
========================================= */

.wd-content{
    position: relative;
    z-index: 2;
}

.wd-content h3{
    font-size: 44px;
    line-height: 1.4;
    font-weight: 800;
    color: #111827;
    margin-bottom: 22px;
}

.wd-content p{
    font-size: 16px;
    line-height: 1.9;
    color: #6b7280;
    margin-bottom: 18px;
}

/* =========================================
   LEARNING BOX
========================================= */

.wd-learn-box{
    background: #fff;
    border: 1px solid #edf2ff;
    border-radius: 26px;
    padding: 24px;
    height: 100%;
    display: flex;
    gap: 16px;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.wd-learn-box:hover{
    transform: translateY(-6px);
}

.wd-learn-icon{
    min-width: 65px;
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wd-learn-icon i{
    color: #fff;
    font-size: 28px;
}

.blue-bg{
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
}

.maroon-bg{
    background: linear-gradient(135deg,#9f1239,#e11d48);
}

.dark-bg{
    background: linear-gradient(135deg,#1e293b,#334155);
}

.gradient-bg{
    background: linear-gradient(135deg,#0d6efd,#c0264f);
}

.wd-learn-box h5{
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.wd-learn-box p{
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* =========================================
   BENEFITS
========================================= */

.wd-benefits{
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.wd-benefit-item{
    background: #fff;
    border: 1px solid #edf2ff;
    border-radius: 20px;
    padding: 18px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.wd-benefit-item i{
    color: #0d6efd;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .wd-heading h2{
        font-size: 42px;
    }

    .wd-main-image img{
        height: 500px;
    }

}

@media(max-width:767px){

    .web-design-course-section{
        padding: 80px 0;
    }

    .wd-heading{
        margin-bottom: 55px;
    }

    .wd-heading h2{
        font-size: 32px;
    }

    .wd-content h3{
        font-size: 30px;
    }

    .wd-main-image img{
        height: 420px;
    }

    .wd-mini-card{
        position: relative;
        inset: unset;
        margin-top: 20px;
        min-width: auto;
    }

    .wd-benefits{
        grid-template-columns: 1fr;
    }

}
/* =========================================
   FINANCIAL ACCOUNTING COURSE SECTION
========================================= */

.finance-course-section{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#f7faff,#ffffff);
}

/* Background Circles */

.finance-bg-circle{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.finance-circle-1{
    width: 320px;
    height: 320px;
    background: #0d6efd;
    top: -100px;
    left: -100px;
}

.finance-circle-2{
    width: 320px;
    height: 320px;
    background: #b91c4b;
    bottom: -100px;
    right: -100px;
}

/* =========================================
   HEADING
========================================= */

.finance-heading{
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.finance-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #e6eefc;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.finance-tag i{
    color: #0d6efd;
}

.finance-heading h2{
    font-size: 56px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
    margin-bottom: 22px;
}

.finance-heading h2 span{
    background: linear-gradient(135deg,#0d6efd,#b91c4b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.finance-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================================
   INTRO CARD
========================================= */

.finance-intro-card{
    background: #fff;
    border-radius: 35px;
    padding: 35px;
    display: flex;
    gap: 25px;
    border: 1px solid #edf2ff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    margin-bottom: 35px;
}

.finance-intro-icon{
    min-width: 90px;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.finance-intro-icon i{
    color: #fff;
    font-size: 38px;
}

.finance-intro-card h3{
    font-size: 34px;
    line-height: 1.4;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.finance-intro-card p{
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
    margin: 0;
}

/* =========================================
   FEATURE GRID
========================================= */

.finance-feature-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.finance-feature-card{
    background: #fff;
    border: 1px solid #edf2ff;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    gap: 18px;
    transition: 0.4s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}

.finance-feature-card:hover{
    transform: translateY(-6px);
}

.finance-feature-icon{
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.finance-feature-icon i{
    color: #fff;
    font-size: 28px;
}

.blue-bg{
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
}

.maroon-bg{
    background: linear-gradient(135deg,#9f1239,#e11d48);
}

.dark-bg{
    background: linear-gradient(135deg,#1e293b,#334155);
}

.gradient-bg{
    background: linear-gradient(135deg,#0d6efd,#c0264f);
}

.finance-feature-card h5{
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.finance-feature-card p{
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}

/* =========================================
   BENEFITS
========================================= */

.finance-benefits{
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.finance-benefit-item{
    background: #fff;
    border: 1px solid #edf2ff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.finance-benefit-item i{
    color: #0d6efd;
}

/* =========================================
   IMAGE SIDE
========================================= */

.finance-image-wrapper{
    position: relative;
}

.finance-main-image{
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.finance-main-image img{
    width: 100%;
    height: 760px;
    object-fit: cover;
    display: block;
}

/* Floating Card */

.finance-floating-card{
    position: absolute;
    left: -20px;
    bottom: 50px;
    background: rgba(255,255,255,0.96);
    border-radius: 28px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.finance-floating-icon{
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.finance-floating-icon i{
    color: #fff;
    font-size: 28px;
}

.finance-floating-card h5{
    font-size: 19px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.finance-floating-card p{
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Small Box */

.finance-small-box{
    position: absolute;
    top: 40px;
    right: -20px;
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.finance-small-icon{
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg,#9f1239,#e11d48);
    display: flex;
    align-items: center;
    justify-content: center;
}

.finance-small-icon i{
    color: #fff;
    font-size: 24px;
}

.finance-small-box h6{
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.finance-small-box span{
    font-size: 13px;
    color: #6b7280;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .finance-heading h2{
        font-size: 42px;
    }

    .finance-main-image img{
        height: 500px;
    }

}

@media(max-width:767px){

    .finance-course-section{
        padding: 80px 0;
    }

    .finance-heading{
        margin-bottom: 55px;
    }

    .finance-heading h2{
        font-size: 32px;
    }

    .finance-intro-card{
        flex-direction: column;
    }

    .finance-intro-card h3{
        font-size: 28px;
    }

    .finance-feature-grid{
        grid-template-columns: 1fr;
    }

    .finance-benefits{
        grid-template-columns: 1fr;
    }

    .finance-main-image img{
        height: 420px;
    }

    .finance-floating-card,
    .finance-small-box{
        position: relative;
        inset: unset;
        margin-top: 20px;
    }

}
/* =========================================
   ENGLISH SPEAKING COURSE SECTION
========================================= */

.english-course-section{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#ffffff,#f8fbff);
}

/* Background */

.english-bg{
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
}

.english-bg-1{
    width: 320px;
    height: 320px;
    background: #0d6efd;
    top: -100px;
    left: -100px;
}

.english-bg-2{
    width: 320px;
    height: 320px;
    background: #c0264f;
    bottom: -100px;
    right: -100px;
}

/* =========================================
   HEADING
========================================= */

.english-heading{
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.english-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid #e6eefc;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.english-tag i{
    color: #0d6efd;
}

.english-heading h2{
    font-size: 56px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
    margin-bottom: 22px;
}

.english-heading h2 span{
    background: linear-gradient(135deg,#0d6efd,#c0264f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.english-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================================
   IMAGE
========================================= */

.english-image-wrapper{
    position: relative;
}

.english-main-image{
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.english-main-image img{
    width: 100%;
    height: 760px;
    object-fit: cover;
    display: block;
}

/* Floating Card */

.english-floating-card{
    position: absolute;
    left: -20px;
    bottom: 50px;
    background: rgba(255,255,255,0.96);
    border-radius: 28px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.english-floating-icon{
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.english-floating-icon i{
    color: #fff;
    font-size: 28px;
}

.english-floating-card h5{
    font-size: 19px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.english-floating-card p{
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* Small Card */

.english-small-card{
    position: absolute;
    top: 40px;
    right: -20px;
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.10);
}

.english-small-card i{
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg,#c0264f,#e11d48);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.english-small-card h6{
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.english-small-card span{
    font-size: 13px;
    color: #6b7280;
}

/* =========================================
   CONTENT
========================================= */

.english-intro-box{
    background: #fff;
    border-radius: 35px;
    padding: 35px;
    border: 1px solid #edf2ff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    display: flex;
    gap: 24px;
    margin-bottom: 35px;
}

.english-intro-icon{
    min-width: 90px;
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
    display: flex;
    align-items: center;
    justify-content: center;
}

.english-intro-icon i{
    color: #fff;
    font-size: 38px;
}

.english-intro-box h3{
    font-size: 34px;
    line-height: 1.4;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.english-intro-box p{
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
    margin: 0;
}

/* =========================================
   LEARN CARDS
========================================= */

.english-learn-card{
    background: #fff;
    border: 1px solid #edf2ff;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    gap: 18px;
    height: 100%;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.english-learn-card:hover{
    transform: translateY(-6px);
}

.english-learn-icon{
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.english-learn-icon i{
    color: #fff;
    font-size: 28px;
}

.blue-bg{
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
}

.maroon-bg{
    background: linear-gradient(135deg,#9f1239,#e11d48);
}

.dark-bg{
    background: linear-gradient(135deg,#1e293b,#334155);
}

.gradient-bg{
    background: linear-gradient(135deg,#0d6efd,#c0264f);
}

.english-learn-card h5{
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.english-learn-card p{
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}

/* =========================================
   BENEFITS
========================================= */

.english-benefits{
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.english-benefit-item{
    background: #fff;
    border: 1px solid #edf2ff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.english-benefit-item i{
    color: #0d6efd;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .english-heading h2{
        font-size: 42px;
    }

    .english-main-image img{
        height: 500px;
    }

}

@media(max-width:767px){

    .english-course-section{
        padding: 80px 0;
    }

    .english-heading{
        margin-bottom: 55px;
    }

    .english-heading h2{
        font-size: 32px;
    }

    .english-intro-box{
        flex-direction: column;
    }

    .english-intro-box h3{
        font-size: 28px;
    }

    .english-learn-card{
        padding: 24px;
    }

    .english-benefits{
        grid-template-columns: 1fr;
    }

    .english-main-image img{
        height: 420px;
    }

    .english-floating-card,
    .english-small-card{
        position: relative;
        inset: unset;
        margin-top: 20px;
    }

}
/* =========================================
   PRACTICAL TRAINING & COMPUTER LAB
========================================= */

.practical-lab-section{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
}

/* Background */

.lab-bg-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.12;
}

.shape-1{
    width: 350px;
    height: 350px;
    background: #0d6efd;
    top: -120px;
    left: -120px;
}

.shape-2{
    width: 350px;
    height: 350px;
    background: #c0264f;
    bottom: -120px;
    right: -120px;
}

/* =========================================
   HEADING
========================================= */

.lab-heading{
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.lab-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid #e6eefc;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.lab-tag i{
    color: #0d6efd;
}

.lab-heading h2{
    font-size: 58px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
    margin-bottom: 22px;
}

.lab-heading h2 span{
    background: linear-gradient(135deg,#0d6efd,#c0264f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lab-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================================
   MAIN BOX
========================================= */

.lab-main-box{
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 70px rgba(0,0,0,0.06);
}

/* =========================================
   INTRO CARD
========================================= */

.lab-intro-card{
    display: flex;
    gap: 24px;
    margin-bottom: 35px;
}

.lab-intro-icon{
    min-width: 90px;
    width: 90px;
    height: 90px;
    border-radius: 28px;
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(13,110,253,0.25);
}

.lab-intro-icon i{
    color: #fff;
    font-size: 38px;
}

.lab-intro-card h3{
    font-size: 38px;
    line-height: 1.4;
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.lab-intro-card p{
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
    margin: 0;
}

/* =========================================
   FEATURE CARDS
========================================= */

.lab-feature-card{
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    gap: 18px;
    height: 100%;
    border: 1px solid #edf2ff;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.lab-feature-card:hover{
    transform: translateY(-7px);
}

.lab-feature-icon{
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-feature-icon i{
    color: #fff;
    font-size: 28px;
}

.blue-bg{
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
}

.maroon-bg{
    background: linear-gradient(135deg,#9f1239,#e11d48);
}

.dark-bg{
    background: linear-gradient(135deg,#1e293b,#334155);
}

.gradient-bg{
    background: linear-gradient(135deg,#0d6efd,#c0264f);
}

.lab-feature-card h5{
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.lab-feature-card p{
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}

/* =========================================
   IMAGE
========================================= */

.lab-image-wrapper{
    position: relative;
}

.lab-main-image{
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.lab-main-image img{
    width: 100%;
    height: 720px;
    object-fit: cover;
    display: block;
}

/* Floating Box */

.lab-floating-box{
    position: absolute;
    left: -20px;
    top: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 28px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.lab-floating-icon{
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg,#c0264f,#e11d48);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lab-floating-icon i{
    color: #fff;
    font-size: 28px;
}

.lab-floating-box h5{
    font-size: 19px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.lab-floating-box span{
    font-size: 14px;
    color: #6b7280;
}

/* Glass Card */

.lab-glass-card{
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 24px;
    padding: 22px;
    width: 290px;
}

.lab-glass-item{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.lab-glass-item:last-child{
    border-bottom: none;
}

.lab-glass-item i{
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .lab-heading h2{
        font-size: 42px;
    }

    .lab-main-box{
        padding: 40px;
    }

    .lab-main-image img{
        height: 500px;
    }

}

@media(max-width:767px){

    .practical-lab-section{
        padding: 80px 0;
    }

    .lab-heading{
        margin-bottom: 55px;
    }

    .lab-heading h2{
        font-size: 34px;
    }

    .lab-main-box{
        padding: 30px 20px;
        border-radius: 30px;
    }

    .lab-intro-card{
        flex-direction: column;
    }

    .lab-intro-card h3{
        font-size: 30px;
    }

    .lab-main-image img{
        height: 420px;
    }

    .lab-floating-box,
    .lab-glass-card{
        position: relative;
        inset: unset;
        margin-top: 20px;
        width: 100%;
    }

}
/* =========================================
   TEACHER TRAINING PROGRAM SECTION
========================================= */

.teacher-training-section{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
}

/* Background Shapes */

.tt-shape{
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.12;
}

.tt-shape-1{
    width: 350px;
    height: 350px;
    background: #0d6efd;
    top: -120px;
    left: -120px;
}

.tt-shape-2{
    width: 350px;
    height: 350px;
    background: #c0264f;
    bottom: -120px;
    right: -120px;
}

/* =========================================
   HEADING
========================================= */

.tt-heading{
    max-width: 950px;
    margin: auto;
    margin-bottom: 85px;
    position: relative;
    z-index: 2;
}

.tt-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e6eefc;
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
}

.tt-tag i{
    color: #0d6efd;
}

.tt-heading h2{
    font-size: 58px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
    margin-bottom: 22px;
}

.tt-heading h2 span{
    background: linear-gradient(135deg,#0d6efd,#c0264f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tt-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================================
   MAIN WRAPPER
========================================= */

.tt-main-wrapper{
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(14px);
    border-radius: 40px;
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: 0 30px 70px rgba(0,0,0,0.06);
}

/* =========================================
   INTRO CARD
========================================= */

.tt-intro-card{
    display: flex;
    gap: 24px;
    margin-bottom: 35px;
}

.tt-intro-icon{
    min-width: 95px;
    width: 95px;
    height: 95px;
    border-radius: 28px;
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(13,110,253,0.25);
}

.tt-intro-icon i{
    color: #fff;
    font-size: 40px;
}

.tt-intro-card h3{
    font-size: 38px;
    line-height: 1.4;
    font-weight: 800;
    color: #111827;
    margin-bottom: 16px;
}

.tt-intro-card p{
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
    margin: 0;
}

/* =========================================
   FEATURE CARDS
========================================= */

.tt-feature-wrapper{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.tt-feature-card{
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    gap: 18px;
    border: 1px solid #edf2ff;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.tt-feature-card:hover{
    transform: translateX(8px);
}

.tt-feature-icon{
    min-width: 72px;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-feature-icon i{
    color: #fff;
    font-size: 28px;
}

.blue-bg{
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
}

.maroon-bg{
    background: linear-gradient(135deg,#9f1239,#e11d48);
}

.dark-bg{
    background: linear-gradient(135deg,#1e293b,#334155);
}

.gradient-bg{
    background: linear-gradient(135deg,#0d6efd,#c0264f);
}

.tt-feature-card h5{
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.tt-feature-card p{
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
    margin: 0;
}

/* =========================================
   IMAGE SECTION
========================================= */

.tt-image-wrapper{
    position: relative;
}

.tt-main-image{
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.tt-main-image img{
    width: 100%;
    height: 760px;
    object-fit: cover;
    display: block;
}

/* Floating Card */

.tt-floating-card{
    position: absolute;
    left: -20px;
    top: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 28px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.tt-floating-icon{
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: linear-gradient(135deg,#c0264f,#e11d48);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tt-floating-icon i{
    color: #fff;
    font-size: 28px;
}

.tt-floating-card h5{
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.tt-floating-card span{
    font-size: 14px;
    color: #6b7280;
}

/* Info Panel */

.tt-info-panel{
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 22px;
    width: 300px;
    border: 1px solid rgba(255,255,255,0.25);
}

.tt-info-item{
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.tt-info-item:last-child{
    border-bottom: none;
}

.tt-info-item i{
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .tt-heading h2{
        font-size: 42px;
    }

    .tt-main-wrapper{
        padding: 40px;
    }

    .tt-main-image img{
        height: 520px;
    }

}

@media(max-width:767px){

    .teacher-training-section{
        padding: 80px 0;
    }

    .tt-heading{
        margin-bottom: 55px;
    }

    .tt-heading h2{
        font-size: 34px;
    }

    .tt-main-wrapper{
        padding: 30px 20px;
        border-radius: 30px;
    }

    .tt-intro-card{
        flex-direction: column;
    }

    .tt-intro-card h3{
        font-size: 30px;
    }

    .tt-main-image img{
        height: 420px;
    }

    .tt-floating-card,
    .tt-info-panel{
        position: relative;
        inset: unset;
        margin-top: 20px;
        width: 100%;
    }

}

/* =========================================
   NTT & NPTT PROGRAMS
========================================= */

.teacher-programs-section{
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
}

/* Background Effects */

.tp-bg{
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.10;
}

.tp-bg-1{
    width: 350px;
    height: 350px;
    background: #0d6efd;
    top: -120px;
    left: -120px;
}

.tp-bg-2{
    width: 350px;
    height: 350px;
    background: #9f1239;
    bottom: -120px;
    right: -120px;
}

/* =========================================
   HEADING
========================================= */

.tp-heading{
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.tp-tag{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #e5ecff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.tp-tag i{
    color: #0d6efd;
}

.tp-heading h2{
    font-size: 58px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
    margin-bottom: 20px;
}

.tp-heading h2 span{
    background: linear-gradient(135deg,#0d6efd,#9f1239);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tp-heading p{
    font-size: 17px;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================================
   PROGRAM CARD
========================================= */

.tp-program-card{
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(14px);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

/* =========================================
   IMAGE
========================================= */

.tp-image-box{
    position: relative;
}

.tp-image-box img{
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 35px;
    display: block;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Floating Badge */

.tp-floating-badge{
    position: absolute;
    left: -20px;
    bottom: 30px;
    background: rgba(13,110,253,0.95);
    color: #fff;
    padding: 18px 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 18px 40px rgba(13,110,253,0.25);
}

.maroon-badge{
    background: rgba(159,18,57,0.95);
    box-shadow: 0 18px 40px rgba(159,18,57,0.25);
}

.tp-floating-badge i{
    font-size: 30px;
}

.tp-floating-badge h6{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.tp-floating-badge span{
    font-size: 13px;
    opacity: 0.9;
}

/* =========================================
   CONTENT
========================================= */

.tp-course-label{
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.blue-label{
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
}

.maroon-label{
    background: rgba(159,18,57,0.1);
    color: #9f1239;
}

.tp-content h2{
    font-size: 46px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
    margin-bottom: 22px;
}

.tp-main-text{
    font-size: 16px;
    line-height: 2;
    color: #4b5563;
    margin-bottom: 20px;
}

.tp-sub-text{
    font-size: 15px;
    line-height: 1.9;
    color: #6b7280;
}

/* =========================================
   FEATURES
========================================= */

.tp-feature-item{
    background: #fff;
    border-radius: 22px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
    border: 1px solid #eef2ff;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.tp-feature-item:hover{
    transform: translateY(-6px);
}

.tp-icon{
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tp-icon i{
    color: #fff;
    font-size: 24px;
}

.blue-bg{
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
}

.maroon-bg{
    background: linear-gradient(135deg,#9f1239,#e11d48);
}

.dark-bg{
    background: linear-gradient(135deg,#1e293b,#334155);
}

.gradient-bg{
    background: linear-gradient(135deg,#0d6efd,#9f1239);
}

.tp-feature-item span{
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    line-height: 1.7;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .tp-heading h2{
        font-size: 42px;
    }

    .tp-program-card{
        padding: 35px;
    }

    .tp-content h2{
        font-size: 36px;
    }

    .tp-image-box img{
        height: 500px;
    }

}

@media(max-width:767px){

    .teacher-programs-section{
        padding: 80px 0;
    }

    .tp-heading{
        margin-bottom: 50px;
    }

    .tp-heading h2{
        font-size: 34px;
    }

    .tp-program-card{
        padding: 24px;
        border-radius: 30px;
    }

    .tp-content h2{
        font-size: 30px;
    }

    .tp-image-box img{
        height: 400px;
    }

    .tp-floating-badge{
        left: 15px;
        right: 15px;
        bottom: 15px;
        border-radius: 18px;
    }

}
/* =========================================
   TEACHING & CAREER SECTION
========================================= */

.teaching-career-section{
    position: relative;
    overflow: hidden;
    background:
    linear-gradient(135deg,#eef5ff,#ffffff,#fff4f7);
}

/* Background */

.tc-circle{
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
}

.tc-circle-1{
    width: 380px;
    height: 380px;
    background: #0d6efd;
    top: -120px;
    left: -120px;
}

.tc-circle-2{
    width: 380px;
    height: 380px;
    background: #9f1239;
    bottom: -120px;
    right: -120px;
}

/* =========================================
   BOXES
========================================= */

.tc-top-box,
.tc-career-box{
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(15px);
    border-radius: 40px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.6);
    box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

/* =========================================
   IMAGE
========================================= */

.tc-image-wrap,
.tc-career-image{
    position: relative;
}

.tc-image-wrap img,
.tc-career-image img{
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 35px;
    display: block;
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Floating Card */

.tc-float-card,
.career-badge{
    position: absolute;
    left: -20px;
    bottom: 25px;
    background: rgba(255,255,255,0.96);
    border-radius: 24px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.tc-float-icon,
.career-badge i{
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.career-badge i{
    background: linear-gradient(135deg,#9f1239,#e11d48);
}

.tc-float-card h5,
.career-badge h6{
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.tc-float-card span,
.career-badge span{
    font-size: 13px;
    color: #6b7280;
}

/* =========================================
   CONTENT
========================================= */

.tc-small-tag{
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 25px;
}

.blue-tag{
    background: rgba(13,110,253,0.1);
    color: #0d6efd;
}

.maroon-tag{
    background: rgba(159,18,57,0.1);
    color: #9f1239;
}

.tc-content-box h2,
.career-content h2{
    font-size: 50px;
    line-height: 1.3;
    font-weight: 900;
    color: #111827;
    margin-bottom: 22px;
}

.tc-content-box h2 span,
.career-content h2 span{
    background: linear-gradient(135deg,#0d6efd,#9f1239);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tc-content-box p,
.career-content p{
    font-size: 16px;
    line-height: 2;
    color: #4b5563;
}

/* =========================================
   FEATURE CARDS
========================================= */

.tc-feature-card{
    background: #fff;
    border-radius: 24px;
    padding: 22px;
    display: flex;
    gap: 16px;
    height: 100%;
    border: 1px solid #eef2ff;
    transition: 0.4s ease;
    box-shadow: 0 12px 25px rgba(0,0,0,0.04);
}

.tc-feature-card:hover{
    transform: translateY(-7px);
}

.tc-feature-icon{
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tc-feature-icon i{
    color: #fff;
    font-size: 24px;
}

.blue-bg{
    background: linear-gradient(135deg,#0d6efd,#4da3ff);
}

.maroon-bg{
    background: linear-gradient(135deg,#9f1239,#e11d48);
}

.dark-bg{
    background: linear-gradient(135deg,#1e293b,#334155);
}

.gradient-bg{
    background: linear-gradient(135deg,#0d6efd,#9f1239);
}

.tc-feature-card h5{
    font-size: 19px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
}

.tc-feature-card span{
    font-size: 14px;
    line-height: 1.8;
    color: #6b7280;
}

/* =========================================
   CAREER GRID
========================================= */

.career-grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
}

.career-item{
    background: #fff;
    border-radius: 18px;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    border: 1px solid #edf2ff;
    box-shadow: 0 10px 22px rgba(0,0,0,0.04);
}

.career-item i{
    width: 35px;
    height: 35px;
    border-radius: 12px;
    background: linear-gradient(135deg,#9f1239,#e11d48);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Bottom Box */

.career-bottom-box{
    margin-top: 35px;
    background:
    linear-gradient(135deg,
    rgba(13,110,253,0.08),
    rgba(159,18,57,0.08));
    border-radius: 28px;
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.career-bottom-icon{
    min-width: 70px;
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg,#0d6efd,#9f1239);
    display: flex;
    align-items: center;
    justify-content: center;
}

.career-bottom-icon i{
    color: #fff;
    font-size: 28px;
}

.career-bottom-box p{
    margin: 0;
    font-size: 15px;
    line-height: 1.9;
    color: #374151;
}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px){

    .tc-content-box h2,
    .career-content h2{
        font-size: 38px;
    }

    .tc-image-wrap img,
    .tc-career-image img{
        height: 500px;
    }

}

@media(max-width:767px){

    .teaching-career-section{
        padding: 80px 0;
    }

    .tc-top-box,
    .tc-career-box{
        padding: 24px;
        border-radius: 28px;
    }

    .tc-content-box h2,
    .career-content h2{
        font-size: 30px;
    }

    .tc-image-wrap img,
    .tc-career-image img{
        height: 380px;
    }

    .career-grid{
        grid-template-columns: 1fr;
    }

    .tc-float-card,
    .career-badge{
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .career-bottom-box{
        flex-direction: column;
    }

}