/* ==========================================================================
   ALWIN ACADEMY - WEBSITE CUSTOM EXTERNAL STYLESHEET
   Developed by: Imran Raza
   ========================================================================== */

/* === GLOBAL UTILITY CLASSES === */
.text-navy {
  color: #0a192f !important;
}

.text-primary-blue {
  color: #0c429e !important;
}

.text-secondary-orange {
  color: #ff9800 !important;
}

.bg-primary-blue {
  background-color: #0c429e !important;
}

.bg-secondary-orange {
  background-color: #ff9800 !important;
}

.bg-light-blue {
  background-color: #f0f6ff !important;
}

.border-primary-blue {
  border-color: #0c429e !important;
}

.border-secondary-orange {
  border-color: #ff9800 !important;
}

.icon-navy-margin {
  margin-right: 8px;
}

/* === STUDENT LOGIN HEADER BUTTON & MODAL CUSTOM STYLES === */
.student-top-login-btn {
  background: #1053c4;
  color: #ffffff !important;
  border: none;
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(16, 83, 196, 0.25);
  cursor: pointer;
  text-decoration: none !important;
  margin-left: 15px;
}

.student-top-login-btn:hover {
  background: #0c429e;
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(16, 83, 196, 0.35);
}

.student-top-login-btn.logged-in {
  background: #1b8755;
  box-shadow: 0 2px 6px rgba(27, 135, 85, 0.25);
}

.student-top-login-btn.logged-in:hover {
  background: #146c43;
}

.social_wrapper {
  display: flex;
  align-items: center;
}

/* Modal Design */
#studentLoginModal .modal-content {
  border-radius: 20px !important;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.35) !important;
  border: none !important;
}

#studentLoginModal .modal-header {
  background: linear-gradient(135deg, #0d47a1 0%, #1053c4 50%, #1565c0 100%) !important;
  padding: 28px 24px 20px !important;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

#studentLoginModal .logo-container {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border: 3px solid #ffbd59;
  padding: 4px;
}

#studentLoginModal .modal-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 21px;
  color: #ffffff !important;
  letter-spacing: -0.2px;
  text-align: center !important;
  width: 100%;
}

#studentLoginModal .modal-subheading {
  color: #e2e8f0 !important;
  font-size: 13px;
  opacity: 0.95;
  text-align: center !important;
  width: 100%;
}

#studentLoginModal .modal-body {
  background-color: #ffffff !important;
  padding: 24px 28px 24px !important;
}

.login-role-tabs {
  background-color: #f1f5f9;
  border-radius: 12px;
  padding: 4px;
}

.login-nav-pills .nav-link {
  border-radius: 9px;
  font-weight: 600;
  font-size: 13.5px;
  color: #64748b;
  padding: 8px 12px;
  transition: all 0.25s ease;
  text-align: center;
  border: none;
}

.login-nav-pills .nav-link.active {
  background-color: #1053c4 !important;
  color: #ffffff !important;
  box-shadow: 0 3px 10px rgba(16, 83, 196, 0.3);
}

.login-nav-pills .nav-link:hover:not(.active) {
  color: #1053c4;
  background-color: rgba(16, 83, 196, 0.08);
}

#studentLoginModal .form-label-custom {
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 6px;
  display: block;
}

#studentLoginModal .input-group-custom {
  display: flex;
  align-items: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.25s ease;
  background: #ffffff;
}

#studentLoginModal .input-group-custom:focus-within {
  border-color: #1053c4;
  box-shadow: 0 0 0 4px rgba(16, 83, 196, 0.15);
}

#studentLoginModal .input-icon-box {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8fafc;
  color: #1053c4;
  font-size: 15px;
  border-right: 1px solid #e2e8f0;
  flex-shrink: 0;
}

#studentLoginModal .form-control-custom {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  height: 46px;
  font-size: 14px;
  color: #0f172a;
  padding: 0 14px;
  width: 100%;
  flex: 1;
  min-width: 0;
}

#studentLoginModal .form-control-custom::placeholder {
  color: #94a3b8;
}

#studentLoginModal .toggle-pass-btn {
  height: 46px;
  padding: 0 16px;
  background: #f8fafc !important;
  border: none !important;
  border-left: 1px solid #e2e8f0 !important;
  color: #64748b !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  outline: none !important;
  flex-shrink: 0;
  z-index: 2;
}

#studentLoginModal .toggle-pass-btn i {
  pointer-events: none;
}

#studentLoginModal .toggle-pass-btn:hover {
  background: #f1f5f9 !important;
  color: #1053c4 !important;
}

#studentLoginModal input:-webkit-autofill,
#studentLoginModal input:-webkit-autofill:hover,
#studentLoginModal input:-webkit-autofill:focus,
#studentLoginModal input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 40px #ffffff inset !important;
  -webkit-text-fill-color: #0f172a !important;
  transition: background-color 5000s ease-in-out 0s;
}

#studentModalAlert {
  border-radius: 10px;
  font-size: 13.5px;
  padding: 12px 16px;
  font-weight: 500;
  line-height: 1.5;
}

#studentModalAlert.alert-danger {
  background-color: #fef2f2 !important;
  border: 1px solid #fca5a5 !important;
  color: #991b1b !important;
}

#studentModalAlert.alert-success {
  background-color: #f0fdf4 !important;
  border: 1px solid #86efac !important;
  color: #166534 !important;
}

.btn-modal-primary {
  background: linear-gradient(135deg, #1053c4 0%, #0c429e 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 15px;
  height: 48px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 12px rgba(16, 83, 196, 0.3);
  transition: all 0.3s ease;
  width: 100%;
}

.btn-modal-primary:hover {
  background: linear-gradient(135deg, #0d47a1 0%, #082d72 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(16, 83, 196, 0.4);
}

.modal-dialog-custom {
  max-width: 440px;
}

.modal-header-custom {
  flex-direction: column;
  display: flex;
}

.modal-close-btn {
  top: 14px;
  right: 18px;
  opacity: 0.85;
  font-size: 24px;
  outline: none;
  background: transparent;
  border: none;
  cursor: pointer;
}

.modal-logo-img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.modal-forgot-link {
  color: #1053c4;
  text-decoration: underline;
}

/* === NAVBAR BOOK DEMO BUTTON & ALIGNMENT === */
.edu_nav .navbar-nav.menu {
  display: flex !important;
  align-items: center !important;
}

.edu_nav .navbar-nav.menu>li {
  display: inline-flex !important;
  align-items: center !important;
}

.menu>li.nav-demo-btn-item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 0 0 10px !important;
  margin: 0 !important;
}

.menu>li.nav-demo-btn-item>a.btn-book-demo-nav {
  height: 38px !important;
  max-height: 38px !important;
  line-height: 38px !important;
  padding: 0 16px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, #1053c4 0%, #0c429e 100%) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: 0.4px !important;
  white-space: nowrap !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  box-shadow: 0 3px 12px rgba(16, 83, 196, 0.35) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
  transition: all 0.25s ease-in-out !important;
  text-decoration: none !important;
  margin: 0 !important;
  position: relative !important;
  z-index: 10 !important;
}

.edu_nav .menu>li.nav-demo-btn-item>a.btn-book-demo-nav,
.edu_nav .menu>li.nav-demo-btn-item>a.btn-book-demo-nav:link,
.edu_nav .menu>li.nav-demo-btn-item>a.btn-book-demo-nav:visited,
.edu_nav .menu>li.nav-demo-btn-item>a.btn-book-demo-nav:hover,
.edu_nav .menu>li.nav-demo-btn-item>a.btn-book-demo-nav:focus,
.edu_nav .menu>li.nav-demo-btn-item>a.btn-book-demo-nav.active,
.edu_nav .menu>li.nav-demo-btn-item>a.btn-book-demo-nav .demo-btn-text {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  opacity: 1 !important;
}

.menu>li.nav-demo-btn-item>a.btn-book-demo-nav:hover {
  background: linear-gradient(135deg, #0d47a1 0%, #082d72 100%) !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 5px 16px rgba(16, 83, 196, 0.45) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

.demo-live-dot {
  width: 8px;
  height: 8px;
  background-color: #ffbd59;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(255, 189, 89, 0.8);
  animation: liveDotPulse 1.8s infinite;
}

@keyframes liveDotPulse {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 189, 89, 0.8);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(255, 189, 89, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(255, 189, 89, 0);
  }
}

/* === NOTICE TICKER === */
.notice-ticker-bar {
  background: linear-gradient(90deg, #0b2559 0%, #1048a3 50%, #0b2559 100%);
  color: #ffffff;
  border-top: 2px solid #ffbd59;
  border-bottom: 2px solid #ffbd59;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 90;
  margin: 0;
  padding: 0;
}

.notice-ticker-inner {
  min-height: 46px;
  height: 46px;
  display: flex;
  align-items: stretch;
}

.notice-badge {
  background: linear-gradient(135deg, #ffbd59 0%, #ff9800 100%);
  color: #0c1e3d;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  padding: 0 20px;
  white-space: nowrap;
  box-shadow: 3px 0 10px rgba(0, 0, 0, 0.2);
  z-index: 5;
  border-right: 2px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  align-self: stretch;
  height: 100%;
  margin: 0;
}

.notice-badge i {
  font-size: 14px;
  color: #0c1e3d;
  margin-right: 8px;
}

.notice-marquee-wrapper {
  padding: 0 15px;
  display: flex;
  align-items: center;
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.notice-marquee-el {
  vertical-align: middle;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 46px;
  height: 46px;
  margin: 0;
  width: 100%;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  margin-right: 15px;
}

.ticker-link {
  color: #ffffff !important;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.ticker-link:hover {
  color: #ffbd59 !important;
}

.ticker-text {
  color: #f8fafc;
}

.ticker-sep {
  margin: 0 18px;
  color: #ffbd59;
  font-size: 13px;
  display: inline-block;
}

/* === ABOUT US PAGE SPECIFIC STYLES === */
.about_img_box_img {
  object-fit: cover;
  max-height: 480px;
}

.heading-navy {
  color: #0a192f;
  font-size: 32px;
}

.heading-orange {
  color: #ff9800;
}

.heading-blue {
  color: #0c429e;
}

.about-promise-box {
  background-color: #f0f6ff;
  border-left: 4px solid #ff9800;
}

.journey_section {
  background-color: #f0f6ff;
}

.story-card-orange {
  background: #ffffff;
  border-top: 4px solid #ff9800 !important;
}

.story-card-blue {
  background: #ffffff;
  border-top: 4px solid #0c429e !important;
}

.icon-circle-orange {
  background: #fff8f0;
  color: #ff9800;
}

.icon-circle-blue {
  background: #f0f6ff;
  color: #0c429e;
}

.impact-section-wrapper {
  position: relative;
  padding: 70px 0 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.impact-header-container {
  text-align: center;
  position: relative;
  margin-bottom: 45px;
}

.laurel-decor-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.impact-header-title {
  font-size: 32px;
  font-weight: 800;
  color: #0a192f;
  margin-top: 10px;
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

.impact-header-subtitle {
  font-size: 16px;
  color: #475569;
  margin: 0;
  font-weight: 500;
}

.star-divider-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
}

.star-divider-line .line {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ff9800, transparent);
}

.star-divider-line .star {
  color: #ff9800;
  font-size: 18px;
}

.target-blue-box-wrapper {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.side-flag-left {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 180px;
  background: #ff9800;
  border-radius: 10px;
  z-index: 1;
}

.side-flag-right {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 180px;
  background: #0c429e;
  border-radius: 10px;
  z-index: 1;
}

.target-blue-box {
  background: linear-gradient(180deg, #0c429e 0%, #0056b3 100%);
  border-radius: 24px;
  padding: 45px 15px 70px 15px;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 45px rgba(0, 122, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.target-impact-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

@media (min-width: 992px) {
  .target-impact-col {
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
  }

  .target-impact-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 991px) {
  .target-impact-col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 35px;
  }
}

@media (max-width: 575px) {
  .target-impact-col {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

.target-impact-col {
  text-align: center;
  padding: 10px 15px;
}

.ring-icon-badge {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 5px;
}

.ring-icon-badge.ring-orange {
  border: 2px dashed #ff9800;
  box-shadow: 0 0 20px rgba(255, 152, 0, 0.3);
}

.ring-icon-badge.ring-blue {
  border: 2px dashed #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.ring-icon-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.ring-icon-inner i {
  font-size: 36px;
  color: #ffffff;
}

.ring-orange .ring-icon-inner i {
  color: #ff9800;
}

.stat-num-val {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2px;
}

.stat-num-val.val-orange {
  color: #ff9800;
}

.stat-num-val.val-blue {
  color: #ffffff;
}

.stat-sub-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-sub-title.title-orange {
  color: #ff9800;
}

.stat-sub-title.title-blue {
  color: #ffffff;
}

.stat-line-bar {
  width: 25px;
  height: 2px;
  margin: 6px auto 10px auto;
  border-radius: 2px;
}

.title-orange+.stat-line-bar {
  background: #ff9800;
}

.title-blue+.stat-line-bar {
  background: #ffffff;
}

.stat-paragraph-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.target-bottom-ribbon-wrapper {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: center;
}

.target-bottom-ribbon {
  background: #ffffff;
  padding: 10px 50px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.target-bottom-ribbon p {
  margin: 0;
  color: #0a192f;
  font-size: 16px;
  font-weight: 800;
  font-style: italic;
  white-space: nowrap;
  letter-spacing: 0.2px;
}

.target-bottom-ribbon .star-icon {
  color: #ff9800;
  margin: 0 10px;
  font-style: normal;
}

.trust-section-wrapper {
  padding: 80px 0;
  background: #f0f6ff;
  position: relative;
}

.trust-header {
  text-align: center;
  margin-bottom: 60px;
}

.trust-header-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 12px;
}

.trust-header-eyebrow .line {
  width: 60px;
  height: 2px;
  background: #ff9800;
}

.trust-header-eyebrow .dots {
  color: #ff9800;
  font-size: 14px;
  letter-spacing: 3px;
}

.trust-header-title {
  font-size: 38px;
  font-weight: 800;
  color: #0a192f;
  margin-bottom: 14px;
}

.trust-header-title span {
  color: #ff9800;
}

.trust-header-subtitle {
  font-size: 18px;
  color: #334155;
  max-width: 750px;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1.5;
}

.trust-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 2px 11px 12px 10px;
  height: 100%;
  position: relative;
  border: 1.5px solid #dde4ef;
  box-shadow: 0 3px 14px rgba(0, 122, 255, 0.05);
  transition: all 0.25s ease;
  text-align: center;
  overflow: hidden;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0c429e 0%, #ff9800 100%);
  border-radius: 14px 14px 0 0;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 35px rgba(0, 122, 255, 0.12);
  border-color: #ff9800;
}

.trust-card-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  background: #ff9800;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0c429e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 20px auto;
  color: #ffffff;
  font-size: 28px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 122, 255, 0.25);
}

.trust-card:hover .trust-card-icon {
  background: #ff9800;
  color: #ffffff;
  transform: scale(1.08);
}

.trust-card-title {
  font-size: 17.5px;
  font-weight: 800;
  color: #0a192f;
  margin-bottom: 10px;
  line-height: 1.35;
}

.trust-card-desc {
  font-size: 14.5px;
  color: #334155;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

.trust-bottom-banner {
  background: #0c429e;
  border-radius: 16px;
  padding: 28px 30px;
  margin-top: 55px;
  border-bottom: 4px solid #ff9800;
  box-shadow: 0 10px 30px rgba(0, 122, 255, 0.25);
}

.trust-bottom-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.trust-bottom-item i {
  font-size: 26px;
  color: #ff9800;
}

.trust-bottom-item h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
}

.trust-bottom-item h4 span {
  color: #ff9800;
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.trust-col-6 {
  margin-bottom: 28px;
}

.offer-section {
  padding: 70px 0;
  background-color: #ffffff;
}

.offer-header {
  text-align: center;
  margin-bottom: 50px;
}

.offer-eyebrow {
  color: #ff9800;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.offer-eyebrow::before,
.offer-eyebrow::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #ff9800;
  display: inline-block;
}

.offer-title {
  color: #0a192f;
  font-size: 36px;
  font-weight: 800;
  margin-top: 8px;
  margin-bottom: 8px;
}

.offer-subtitle {
  color: #334155;
  font-size: 17px;
  font-weight: 600;
  margin: 0;
}

.offer-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 24px 20px;
  height: 100%;
  border: 1.5px solid #dde4ef;
  box-shadow: 0 2px 12px rgba(0, 122, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 122, 255, 0.10);
  border-color: #ff9800;
}

.offer-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid #ff9800;
}

.offer-card-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  flex-shrink: 0;
  background: #0c429e;
}

.offer-card-title {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin: 0;
  text-transform: uppercase;
  color: #0a192f;
  line-height: 1.3;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-list li {
  font-size: 14.5px;
  color: #1e293b;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  border-bottom: 1px solid #f1f4f8;
}

.offer-list li:last-child {
  border-bottom: none;
}

.offer-list li span.list-icon {
  font-size: 16px;
  width: 22px;
  text-align: center;
  display: inline-block;
  flex-shrink: 0;
}

.country-col-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #0a192f;
  letter-spacing: 0.3px;
  padding-bottom: 4px;
  border-bottom: 1px solid #ff9800;
  margin-top: 4px;
}

.exam-list {
  list-style: none;
  padding-left: 0;
  margin: 0 0 8px 0;
}

.exam-list li {
  font-size: 13.5px;
  color: #334155;
  font-weight: 500;
  padding: 3px 0 3px 14px;
  position: relative;
  line-height: 1.45;
}

.exam-list li::before {
  content: '›';
  color: #ff9800;
  position: absolute;
  left: 0;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.bottom-feature-strip {
  background: #0c429e;
  border-radius: 14px;
  padding: 22px 25px;
  margin-top: 35px;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px;
}

.strip-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0c429e;
  background: #ff9800;
  font-size: 17px;
  flex-shrink: 0;
}

.strip-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.strip-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.lang-badge-eng {
  font-size: 10px;
  background: #0c429e;
}

.lang-box {
  background: #f0f6ff;
  border-color: #dde4ef !important;
  transition: all 0.25s ease;
  padding: 16px 8px 12px 8px !important;
  border-radius: 12px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lang-box:hover {
  border-color: #ff9800 !important;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(12, 66, 158, 0.12);
}

.lang-box .theme-icon-circle-sm {
  margin-bottom: 8px !important;
}

.offer-min-height {
  min-height: 440px;
}

.theme-icon-circle-sm {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0c429e;
  color: #ff9800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: 0 3px 8px rgba(12, 66, 158, 0.2);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.theme-icon-circle-sm:hover {
  background: #ff9800;
  color: #ffffff;
}

/* === HALL OF FAME PAGE === */
.achiever-card-orange {
  background: #f0f6ff;
  border-top: 4px solid #ff9800 !important;
  transition: transform 0.3s ease;
}

.achiever-card-blue {
  background: #f0f6ff;
  border-top: 4px solid #0c429e !important;
  transition: transform 0.3s ease;
}

.achiever-img-box {
  object-fit: contain;
  max-height: 280px;
  background: #ffffff;
}

/* === NOTICES PAGE === */
.notice-card_pd {
  min-height: 400px;
  padding-bottom: 50px;
}

.notice-card-item {
  border-radius: 10px;
  border: 1px solid #eee;
}

.notice-card-heading {
  font-weight: 700;
  font-size: 1.25rem;
  color: #0c429e;
}

.notice-card-date {
  font-size: 0.85rem;
}

.notice-card-text {
  font-size: 1rem;
  line-height: 1.5;
}

/* === MEDIA QUERIES === */
@media (min-width: 992px) {
  .trust-col-6 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}

@media (max-width: 767px) {
  .trust-section-wrapper {
    padding: 50px 0;
  }

  .trust-card {
    padding: 30px 14px 22px 14px;
  }

  .trust-col-6 {
    margin-bottom: 20px;
  }

  .menu>li.nav-demo-btn-item {
    padding: 8px 0 !important;
  }

  .notice-badge {
    padding: 9px 12px;
    font-size: 11.5px;
  }

  .notice-marquee-el {
    font-size: 13px;
  }

  .target-bottom-ribbon {
    padding: 8px 25px;
    clip-path: none;
    border-radius: 20px;
  }

  .target-bottom-ribbon p {
    font-size: 12px;
  }
}

/* === HOMEPAGE SPECIFIC STYLES === */
.error {
  color: red !important;
}

#news {
  background: #FFBD59;
}

.popup-content {
  max-width: 763px !important;
  height: 500px;
}

.hero-banner-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.hero-banner-slider .swiper.heroSlider {
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
  aspect-ratio: 1920 / 700;
}

.hero-banner-slider .swiper-slide {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  height: 100% !important;
  transition: transform 0s !important, margin 0s !important, padding 0s !important, box-shadow 0s !important;
}

.hero-banner-slider .swiper-slide:hover {
  transform: none !important;
}

.hero-banner-slider picture {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-banner-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-banner-slider .swiper-button-next,
.hero-banner-slider .swiper-button-prev {
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.4);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
}

.hero-banner-slider .swiper-button-next::after,
.hero-banner-slider .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

.hero-banner-slider .swiper-button-next:hover,
.hero-banner-slider .swiper-button-prev:hover {
  background: #FFBD59 !important;
  color: #000000 !important;
}

.hero-banner-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.hero-banner-slider .swiper-pagination-bullet-active {
  background: #FFBD59 !important;
  width: 25px;
  border-radius: 5px;
  opacity: 1;
}

.mobile-banner {
  display: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.desktop-banner {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {

  .hero-banner-slider .swiper-button-next,
  .hero-banner-slider .swiper-button-prev {
    display: none !important;
  }

  .hero-banner-slider {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
  }

  .desktop-banner {
    display: none !important;
  }

  .mobile-banner {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }

  .hero-banner-slider .swiper-slide a,
  .hero-banner-slider .swiper-slide {
    display: block !important;
    width: 100% !important;
    height: auto !important;
  }

  .hero-banner-slider .swiper,
  .hero-banner-slider .swiper-wrapper {
    height: auto !important;
    aspect-ratio: auto !important;
  }

  .hero-banner-slider .swiper-pagination {
    bottom: 6px !important;
  }
}

.slider-container {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  background: #1155cc;
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1155cc 0%, #0d42a6 100%);
}

.text-block {
  width: 45%;
  padding-left: 10%;
  color: #fff;
  z-index: 2;
}

.text-block h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1px;
  color: #fff;
}

.text-block p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  line-height: 1.5;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background-color: #ffb74d;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, background 0.3s;
}

.btn-primary:hover {
  background-color: #ffa726;
  transform: scale(1.05);
}

.image-block {
  width: 45%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.image-block img {
  max-width: 90%;
  height: auto;
  border-radius: 10px;
}

.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.slider-container .prev,
.slider-container .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #ffb74d;
  color: #000;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: background 0.3s, transform 0.2s;
}

.slider-container .prev {
  left: 20px;
}

.slider-container .next {
  right: 20px;
}

.slider-container .prev:hover,
.slider-container .next:hover {
  background-color: #ffa726;
  transform: translateY(-50%) scale(1.1);
}

.slide-content {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .slide-content {
    flex-direction: column;
    text-align: center;
  }

  .text-block,
  .image-block {
    width: 100%;
    padding: 0 20px;
  }

  .text-block h2 {
    font-size: 1.8rem;
  }

  .buttons {
    justify-content: center;
    margin-bottom: 20px;
  }

  .slider-container {
    height: auto;
    padding: 40px 0;
  }
}

.slider-flex-row {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}

.slider-nav-btn {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: #ffbd59;
  color: #1a1a2e;
  border: none;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  outline: none !important;
  position: static !important;
  transform: none !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  z-index: 1;
}

.slider-nav-btn:hover {
  background: #1053c4;
  color: #fff;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 18px rgba(16, 83, 196, 0.3);
}

.slider-flex-row .mySwiper,
.slider-flex-row .myTeamSwiper {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden !important;
  padding: 15px 12px 20px 12px !important;
  margin: 0 !important;
}

.mySwiper .swiper-slide,
.myTeamSwiper .swiper-slide {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  height: auto !important;
  display: flex !important;
}

.mySwiper .swiper-slide:hover,
.myTeamSwiper .swiper-slide:hover {
  transform: none !important;
}

.instructor-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 16px 22px 16px;
  text-align: center;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.instructor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.instructor-img {
  width: 150px !important;
  height: 150px !important;
  min-width: 150px;
  min-height: 150px;
  max-width: 150px;
  max-height: 150px;
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: top center !important;
  margin: 0 auto 16px auto !important;
  display: block !important;
  border: 4px solid #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  background-color: #f1f5f9;
}

.mySwiper .testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 22px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mySwiper .testimonial-card .stars {
  color: #f59e0b;
  font-size: 20px;
  letter-spacing: 2px;
}

.mySwiper .testimonial-card .testimonial-text {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  flex: 1;
  margin: 10px 0 18px 0;
}

@media (max-width: 768px) {
  .slider-nav-btn {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 13px;
  }

  .slider-flex-row .mySwiper,
  .slider-flex-row .myTeamSwiper {
    padding: 12px 6px 18px 6px !important;
  }
}

/* === COURSES & FORM HELPER STYLES === */
.courses-section-wrapper {
  padding: 60px 0;
  background-color: #f8fafc;
}

.courses-header {
  text-align: center;
  margin-bottom: 50px;
}

.courses-header .sub-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.1);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.courses-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.courses-header p {
  color: #64748b;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.modern-course-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.modern-course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 110, 253, 0.14);
  border-color: rgba(13, 110, 253, 0.3);
}

.modern-course-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #e2e8f0;
}

.modern-course-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modern-course-card:hover .modern-course-img {
  transform: scale(1.07);
}

.modern-grade-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, #0d6efd 0%, #0044b3 100%);
  color: #ffffff !important;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(13, 110, 253, 0.4);
  letter-spacing: 0.3px;
  z-index: 2;
}

.modern-course-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.modern-course-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color 0.2s ease;
}

.modern-course-card:hover .modern-course-title {
  color: #0d6efd;
}

.modern-meta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.modern-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0f6ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}

.modern-meta-chip img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.modern-course-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.modern-curriculum-box {
  background: #f8fafc;
  border-left: 4px solid #0d6efd;
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 14px;
  font-size: 0.85rem;
  color: #475569;
}

.modern-curriculum-box strong {
  color: #0f172a;
}

.modern-highlights-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
}

.modern-highlights-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.4;
  transition: transform 0.2s ease;
}

.modern-highlights-list li:hover {
  transform: translateX(4px);
  color: #0f172a;
}

.modern-check-icon {
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 10px;
  font-weight: bold;
}

.modern-card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  gap: 8px;
}

.btn-modern-enroll {
  flex: 1;
  background: linear-gradient(135deg, #0d6efd 0%, #0044b3 100%);
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 9px 14px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none !important;
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-modern-enroll:hover {
  background: linear-gradient(135deg, #0044b3 0%, #002b80 100%);
  box-shadow: 0 6px 18px rgba(13, 110, 253, 0.4);
  transform: translateY(-2px);
}

.btn-modern-demo {
  background: #ffffff;
  color: #0d6efd !important;
  border: 1.5px solid #0d6efd;
  font-weight: 600;
  font-size: 0.86rem;
  padding: 9px 14px;
  border-radius: 30px;
  text-align: center;
  text-decoration: none !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-modern-demo:hover {
  background: rgba(13, 110, 253, 0.08);
  transform: translateY(-2px);
}

.accordion-button:not(.collapsed) {
  color: #ffc107 !important;
  background-color: #fcf8e3 !important;
}

.accordion-button:focus {
  border-color: #ffc107 !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25) !important;
}

.enrolling li {
  list-style-type: none;
  margin-bottom: 5px;
}

/* === VIDEO CARDS & PDF MODAL STYLES === */
.course-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.ratio-16x9 {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
}

.ratio-16x9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

/* === PDF MODAL & PDF.JS CANVAS VIEWER STYLES === */
.pdf-modal {
  display: none;
  position: fixed;
  z-index: 999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: hidden;
}

.pdf-modal-content {
  background-color: #ffffff;
  margin: 1.5vh auto;
  padding: 0;
  border-radius: 12px;
  width: 95%;
  max-width: 1100px;
  height: 97vh;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border: 1px solid #cbd5e1;
}

.pdf-modal-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 10px 18px !important;
  background: #ffffff !important;
  border-bottom: 1px solid #e2e8f0 !important;
  gap: 12px !important;
  flex-wrap: nowrap !important;
  flex-shrink: 0 !important;
}

.pdf-toolbar-left {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-shrink: 0 !important;
}

.pdf-toolbar-right {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
  flex-wrap: nowrap !important;
}

.pdf-nav-btn {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  font-size: 13px !important;
  color: #334155 !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
  line-height: 1 !important;
}

.pdf-nav-btn:hover {
  background: #e2e8f0 !important;
  color: #0f172a !important;
}

.pdf-zoom-text {
  font-size: 13.5px !important;
  font-weight: 600 !important;
  color: #475569 !important;
  min-width: 48px !important;
  text-align: center !important;
  user-select: none !important;
}

.pdf-page-count {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #1e293b !important;
  background: #e2e8f0 !important;
  padding: 5px 12px !important;
  border-radius: 6px !important;
  margin-left: 4px !important;
  white-space: nowrap !important;
  user-select: none !important;
}

/* Specific Isolated Button Styling for Modal Action Buttons */
.pdf-btn-action {
  background: #f4b400 !important;
  color: #000000 !important;
  border: none !important;
  padding: 7px 16px !important;
  border-radius: 20px !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  cursor: pointer !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12) !important;
  width: auto !important;
  height: auto !important;
  white-space: nowrap !important;
  line-height: 1.4 !important;
}

.pdf-btn-action:hover {
  background: #dca300 !important;
  color: #000000 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18) !important;
  text-decoration: none !important;
}

.pdf-btn-action:active {
  transform: translateY(0) !important;
}

.pdf-btn-action i {
  font-size: 13px !important;
}

.pdf-modal-close {
  color: #64748b !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  line-height: 1 !important;
  padding: 4px 6px !important;
  margin-left: 6px !important;
  transition: color 0.2s !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.pdf-modal-close:hover,
.pdf-modal-close:focus {
  color: #ef4444 !important;
  text-decoration: none !important;
}

.pdf-viewer-wrapper {
  flex: 1;
  overflow-y: auto;
  overflow-x: auto;
  background: #525659;
  padding: 16px;
  text-align: center;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pdf-pages-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto;
  width: 100%;
}

.pdf-page-canvas {
  max-width: 100%;
  height: auto !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  background: #ffffff;
  border-radius: 4px;
  display: block;
}

.pdf-loader-wrap {
  padding: 80px 20px;
  text-align: center;
  background: #ffffff;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.open-pdf-modal {
  cursor: pointer;
}

@media (max-width: 768px) {
  .pdf-modal-content {
    width: 98%;
    height: 98vh;
    margin: 1vh auto;
  }
  .pdf-modal-header {
    padding: 8px 10px !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
  }
  .pdf-toolbar-left, .pdf-toolbar-right {
    gap: 5px !important;
  }
  .pdf-nav-btn {
    padding: 4px 8px !important;
    font-size: 12px !important;
  }
  .pdf-btn-action {
    padding: 5px 10px !important;
    font-size: 12px !important;
  }
  .pdf-zoom-text {
    min-width: 38px !important;
    font-size: 12px !important;
  }
  .pdf-page-count {
    padding: 4px 8px !important;
    font-size: 12px !important;
  }
  .pdf-viewer-wrapper {
    padding: 8px 4px;
  }
}

/* === ARTICLES STYLES === */
.article-card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
}

.article-img {
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.sidebar-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #0d6efd;
  padding-left: 10px;
}

.article-header {
  padding-top: 60px;
  padding-bottom: 40px;
}

.category-link {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  color: #0d6efd;
}

.entry-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 15px;
}

.featured-image-wrapper {
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.article-content {
  font-size: 1.15rem;
  color: #333;
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content blockquote {
  font-style: italic;
  font-size: 1.5rem;
  padding: 40px;
  border-left: 5px solid #0d6efd;
  background: #f8f9fa;
  border-radius: 0 20px 20px 0;
  margin: 40px 0;
}

.sticky-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  border: none;
  background: #f8f9fa;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 30px;
}

.author-box {
  background: #f1f3f5;
  border-radius: 25px;
  padding: 40px;
  margin-top: 60px;
}

.share-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  background: #eee;
  color: #333;
  text-decoration: none;
}

.share-btn:hover {
  background: #0d6efd;
  color: white;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .entry-title {
    font-size: 2.2rem;
  }
}

/* === TEAM SECTION LIGHT BACKGROUND === */
.team-section-wrapper {
  background-color: #f0f6ff;
}

/* === PROFESSIONAL OFFCANVAS MOBILE DRAWER SYSTEM === */
.mobile-login-icon-btn {
  background: #007aff;
  color: #ffffff !important;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
  box-shadow: 0 4px 10px rgba(0, 122, 255, 0.25);
}

.mobile-hamburger-btn {
  background: #0c1e3d;
  color: #ff9800;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(12, 30, 61, 0.2);
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(5px);
  z-index: 999990;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 310px;
  max-width: 85vw;
  height: 100vh;
  background: #0c1e3d;
  color: #ffffff;
  z-index: 999999;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
}

.mobile-drawer-menu.open {
  right: 0;
}

.mobile-drawer-close {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-drawer-close:hover {
  background: #ff9800;
  color: #0c1e3d;
}

.mobile-nav-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-link {
  color: #e2e8f0 !important;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 10px;
  display: block;
  text-decoration: none !important;
  transition: all 0.2s;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: #ff9800 !important;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 15px;
}

.mobile-sub-toggle-btn {
  background: transparent;
  border: none;
  color: #94a3b8;
  padding: 10px 14px;
  font-size: 13px;
  cursor: pointer;
}

.mobile-sub-menu {
  display: none;
  background: #061124;
  padding: 5px 0 5px 15px;
}

.mobile-sub-menu li a {
  color: #cbd5e1 !important;
  font-size: 14px;
  padding: 8px 12px;
  display: block;
  text-decoration: none !important;
}

.mobile-sub-menu li a:hover {
  color: #ff9800 !important;
}

/* Hide meanmenu bar completely */
.mean-container .mean-bar {
  display: none !important;
}

.notice-ticker-bar {
  z-index: 5 !important;
}

/* Logo Size Rules: 300px-600px -> 60px, Above 600px -> 80px */
.navbar-brand {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 600px) {
  .navbar-brand img {
    height: 60px !important;
    width: auto !important;
  }
}

@media (min-width: 601px) {
  .navbar-brand img {
    height: 80px !important;
    width: auto !important;
  }
}

@media (max-width: 991px) {

  header.home_1_update,
  header {
    padding: 0 !important;
    margin: 0 !important;
  }

  header .header_top {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .edu_nav {
    padding: 4px 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    border-bottom: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05) !important;
  }

  .edu_nav .navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 4px 15px !important;
    min-height: auto !important;
  }

  .hero-banner-slider {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* =========================================================
   HEADER & NAVBAR DROPDOWN STACKING & OVERLAY FIX
   Ensures dropdowns (Free Resources, About, Testimonials)
   always render on top of the hero banner slider
   ========================================================= */
header,
header.home_1_update {
  position: relative !important;
  z-index: 1050 !important;
  overflow: visible !important;
}

.edu_nav,
.edu_nav .container,
.edu_nav nav.navbar,
.edu_nav .navbar-collapse,
.edu_nav .navbar-nav,
.edu_nav .navbar-nav>li {
  overflow: visible !important;
  position: relative;
}

.edu_nav {
  z-index: 1050 !important;
}

/* Desktop dropdown styling & animation */
@media (min-width: 992px) {
  header .edu_nav nav .navbar-nav li ul {
    position: absolute !important;
    min-width: 250px !important;
    top: 70% !important;
    left: 0 !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    padding: 10px 0 !important;
    z-index: 999999 !important;
    background: #ffffff !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
    list-style: none !important;
    margin: 0 !important;
    pointer-events: none;
  }

  header .edu_nav nav .navbar-nav li:hover>ul {
    visibility: visible !important;
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    display: block !important;
  }

  header .edu_nav nav .navbar-nav li ul li {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }

  header .edu_nav nav .navbar-nav li ul li a {
    display: block !important;
    padding: 10px 22px !important;
    margin: 0 !important;
    color: #1e293b !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    text-transform: none !important;
    line-height: 1.4 !important;
    border-bottom: 1px solid #f8fafc !important;
    transition: all 0.2s ease !important;
    font-family: "Rubik", "Poppins", sans-serif !important;
  }

  header .edu_nav nav .navbar-nav li ul li:last-child a {
    border-bottom: none !important;
  }

  header .edu_nav nav .navbar-nav li ul li a:hover {
    background: #f8fafc !important;
    color: #ff9800 !important;
    padding-left: 26px !important;
  }

  header .edu_nav nav .navbar-nav li ul li a:before {
    display: none !important;
  }
}

.hero-banner-slider {
  position: relative !important;
  z-index: 1 !important;
}