/* =========================================================
   KHADKESWAR NEET JEE ACADEMY - MAIN CSS
   File: assets/css/style.css
   Theme: Dark Navy + Red CTA + Premium Education UI
========================================================= */





/* =========================
   ROOT VARIABLES
========================= */
:root {
  --primary-dark: #000B26;
  --primary-blue: #071B4D;
  --accent-red: #D40D1F;
  --accent-red-dark: #A60816;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --light-gray: #E8EAF0;
  --text-dark: #07122D;
  --text-muted: #5E6475;

  --shadow: 0 24px 70px rgba(0, 11, 38, .12);
  --shadow-soft: 0 14px 36px rgba(0, 11, 38, .08);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
}

/* =========================
   RESET CSS
========================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1180px;
}

/* =========================
   COMMON SECTION CSS
========================= */
.section-padding {
  padding: 95px 0;
}

.section-light {
  background: var(--off-white);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  border-radius: 999px;
  background: rgba(212, 13, 31, .08);
  color: var(--accent-red);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
}

.section-badge i {
  font-size: 16px;
}

.badge-light {
  background: rgba(255, 255, 255, .1);
  color: #ffccd1;
}

.section-title {
  max-width: 720px;
  margin-bottom: 45px;
}

.section-title.center {
  margin-inline: auto;
  text-align: center;
}

.section-title h2 {
  color: var(--primary-dark);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 900;
  margin-bottom: 14px;
  letter-spacing: -.8px;
}

.section-title p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* =========================
   BUTTON CSS
========================= */
.btn-main,
.btn-white,
.btn-outline-main {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  transition: .28s ease;
}

.btn-main {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 16px 34px rgba(212, 13, 31, .28);
}

.btn-main:hover {
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 22px 42px rgba(212, 13, 31, .35);
}

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  box-shadow: 0 16px 32px rgba(0, 0, 0, .08);
}

.btn-white:hover {
  transform: translateY(-3px);
  color: var(--primary-dark);
}

.btn-outline-main {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .24);
  color: var(--white);
}

.btn-outline-main:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
}



/* =========================================================
   TOP BAR FINAL FIX - MOBILE VISIBLE PREMIUM
   Paste this at the very bottom of style.css
========================================================= */

.top-bar {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  height: auto !important;
  max-height: none !important;
  min-height: auto !important;
  overflow: visible !important;
  position: relative;
  z-index: 1005;
  background:
    radial-gradient(circle at 8% 0%, rgba(212, 13, 31, .28), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, .10), transparent 25%),
    linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.top-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .45;
  pointer-events: none;
}

.top-bar .container {
  position: relative;
  z-index: 2;
}

.top-bar-wrap {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-info {
  display: flex !important;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.top-info-item {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .86);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: .25s ease;
  min-width: 0;
}

.top-info-item:hover {
  color: var(--white);
  background: rgba(255, 255, 255, .11);
  transform: translateY(-2px);
}

.top-info-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 13, 31, .20);
  color: #ffccd1;
  font-size: 13px;
}

.top-info-text {
  display: grid;
  line-height: 1.1;
  min-width: 0;
}

.top-info-text small {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255, 255, 255, .56);
  letter-spacing: .2px;
}

.top-info-text strong {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, .94);
  white-space: nowrap;
}

.top-right {
  display: flex !important;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.top-mini-badge {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 13, 31, .20);
  color: var(--white);
  border: 1px solid rgba(212, 13, 31, .32);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.top-mini-badge i {
  color: #ffccd1;
}

.top-social {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.top-social a {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: .25s ease;
  font-size: 13px;
}

.top-social a:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: translateY(-2px) scale(1.04);
  color: var(--white);
}

/* =========================
   TABLET
========================= */

@media (max-width: 1199px) {
  .top-bar {
    display: block !important;
  }

  .top-bar-wrap {
    gap: 12px;
  }

  .top-info {
    gap: 8px;
  }

  .top-info-item {
    padding: 7px 9px;
  }

  .top-info-text strong {
    font-size: 11px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
  .top-bar {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 9px 0 !important;
  }

  .top-bar-wrap {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
  }

  .top-info {
    display: grid !important;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .top-info-item {
    width: 100%;
    border-radius: 16px;
    padding: 9px 10px;
  }

  .top-location {
    grid-column: 1 / -1;
  }

  .top-info-text strong {
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-right {
    display: flex !important;
    width: 100%;
    justify-content: space-between;
  }

  .top-mini-badge {
    display: inline-flex !important;
  }
}

@media (max-width: 767px) {
  .top-bar {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    max-height: none !important;
    padding: 8px 0 !important;
  }

  .top-bar .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .top-info {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .top-email {
    display: none !important;
  }

  .top-phone,
  .top-location {
    grid-column: auto;
  }

  .top-info-item {
    display: inline-flex !important;
    min-height: 48px;
    padding: 8px 9px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
  }

  .top-info-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  .top-info-text small {
    font-size: 9px;
  }

  .top-info-text strong {
    font-size: 11px;
    max-width: 130px;
  }

  .top-location .top-info-text strong {
    max-width: 145px;
  }

  .top-right {
    display: flex !important;
    padding-top: 2px;
  }

  .top-mini-badge {
    display: inline-flex !important;
    padding: 7px 10px;
    font-size: 11px;
  }

  .top-social {
    display: flex !important;
  }

  .top-social a {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    display: block !important;
  }

  .top-info {
    display: grid !important;
    grid-template-columns: 1fr;
  }

  .top-phone,
  .top-location {
    grid-column: 1 / -1;
  }

  .top-info-item {
    justify-content: flex-start;
  }

  .top-info-text strong {
    max-width: 100%;
  }

  .top-right {
    justify-content: center;
    /* flex-wrap: wrap; */
    gap: 8px;
  }
}

/* =========================
   TOP BAR HIDE ON MOBILE
   Paste at bottom of style.css
========================= */

@media (max-width: 991px) {
  .top-bar {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
}




/* =========================================================
   HEADER FINAL CSS - PREMIUM HOVER PILL + PROPER SPACING
========================================================= */

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100% !important;
  max-width: 100% !important;
  background:
    radial-gradient(circle at 6% 0%, rgba(212, 13, 31, .24), transparent 28%),
    radial-gradient(circle at 94% 0%, rgba(255, 255, 255, .11), transparent 24%),
    linear-gradient(135deg, rgba(0, 11, 38, .98), rgba(7, 27, 77, .98));
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  box-shadow: 0 16px 42px rgba(0, 11, 38, .20);
}

.main-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .32;
  pointer-events: none;
}

.main-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 13, 31, .75), transparent);
  pointer-events: none;
}

.premium-navbar {
  position: relative;
  z-index: 2;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}

.header-fluid {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.header-container {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 84px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* LOGO */
.brand-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 34px 0 0 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  flex: 0 0 auto !important;
  line-height: 0 !important;
}

.header-logo {
  width: 118px !important;
  height: 72px !important;
  min-width: 118px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  display: block !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

/* NAV */
.premium-mobile-menu {
  align-items: center !important;
  justify-content: center !important;
  flex: 1 1 auto !important;
  min-width: 0 !important;
}

.premium-nav-list {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.premium-nav-list .nav-item {
  flex: 0 0 auto !important;
}

.nav-mobile-icon {
  display: none;
}

.main-header .premium-nav-list .nav-link {
  position: relative;
  min-height: 40px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 10px 11px !important;
  border-radius: 14px !important;
  background: transparent !important;
  border: 1px solid transparent !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, .88) !important;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  transition: all .25s ease;
}

.main-header .premium-nav-list .nav-link span {
  position: relative;
  z-index: 2;
  font-size: 14px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  color: rgba(255, 255, 255, .88) !important;
  white-space: nowrap !important;
}

.main-header .premium-nav-list .nav-link i {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .88) !important;
}

/* Hover background ko controlled rounded pill rakha hai */
.main-header .premium-nav-list .nav-link::before {
  content: "";
  position: absolute;
  inset: 3px 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .10);
  opacity: 0;
  transform: scale(.96);
  transition: all .25s ease;
  pointer-events: none;
}

.main-header .premium-nav-list .nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  border-radius: 20px;
  background: linear-gradient(90deg, #D40D1F, #ff8a97);
  transform: scaleX(0);
  transform-origin: center;
  transition: all .25s ease;
}

.main-header .premium-nav-list .nav-link:hover,
.main-header .premium-nav-list .nav-link:focus,
.main-header .premium-nav-list .nav-link:active,
.main-header .premium-nav-list .nav-link.show,
.main-header .premium-nav-list .nav-link.active,
.main-header .premium-nav-list .dropdown-toggle.show {
  color: #ffffff !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}

.main-header .premium-nav-list .nav-link:hover::before,
.main-header .premium-nav-list .nav-link:focus::before,
.main-header .premium-nav-list .nav-link.show::before,
.main-header .premium-nav-list .nav-link.active::before,
.main-header .premium-nav-list .dropdown-toggle.show::before {
  opacity: 1;
  transform: scale(1);
}

.main-header .premium-nav-list .nav-link:hover::after,
.main-header .premium-nav-list .nav-link:focus::after,
.main-header .premium-nav-list .nav-link.show::after,
.main-header .premium-nav-list .nav-link.active::after,
.main-header .premium-nav-list .dropdown-toggle.show::after {
  transform: scaleX(1);
}

.main-header .premium-nav-list .nav-link:hover span,
.main-header .premium-nav-list .nav-link:focus span,
.main-header .premium-nav-list .nav-link.show span,
.main-header .premium-nav-list .nav-link.active span,
.main-header .premium-nav-list .dropdown-toggle.show span,
.main-header .premium-nav-list .nav-link:hover i,
.main-header .premium-nav-list .nav-link:focus i,
.main-header .premium-nav-list .nav-link.show i,
.main-header .premium-nav-list .nav-link.active i,
.main-header .premium-nav-list .dropdown-toggle.show i {
  color: #ffffff !important;
}

.main-header .premium-nav-list .dropdown-toggle::after {
  position: relative;
  z-index: 2;
  margin-left: 6px;
  vertical-align: middle;
  transition: .25s ease;
  border-top-color: rgba(255, 255, 255, .88) !important;
}

.main-header .premium-nav-list .dropdown-toggle.show::after,
.main-header .premium-nav-list .dropdown-toggle:hover::after,
.main-header .premium-nav-list .dropdown-toggle:focus::after {
  border-top-color: #ffffff !important;
}

/* DROPDOWN */
.about-dropdown,
.courses-dropdown {
  position: relative;
}

.premium-dropdown {
  min-width: 315px !important;
  border: 1px solid rgba(255, 255, 255, .14) !important;
  border-radius: 24px !important;
  padding: 12px !important;
  margin-top: 12px !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 13, 31, .22), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .08), transparent 28%),
    rgba(0, 11, 38, .97) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  box-shadow: 0 28px 70px rgba(0, 11, 38, .42) !important;
}

.premium-dropdown::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 32px;
  width: 14px;
  height: 14px;
  background: rgba(0, 11, 38, .97);
  transform: rotate(45deg);
  border-left: 1px solid rgba(255, 255, 255, .12);
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.premium-dropdown .dropdown-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  border-radius: 17px !important;
  padding: 12px !important;
  background: transparent !important;
  color: rgba(255, 255, 255, .82) !important;
  transition: .25s ease !important;
}

.dropdown-icon {
  width: 40px !important;
  height: 40px !important;
  flex: 0 0 40px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 14px !important;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .16), transparent 28%),
    rgba(212, 13, 31, .17) !important;
  color: #ffccd1 !important;
  font-size: 16px !important;
  transition: .25s ease;
}

.premium-dropdown .dropdown-item strong {
  display: block !important;
  color: #ffffff !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 900 !important;
  margin-bottom: 3px !important;
}

.premium-dropdown .dropdown-item small {
  display: block !important;
  color: rgba(255, 255, 255, .58) !important;
  font-size: 11px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
}

.premium-dropdown .dropdown-item:hover,
.premium-dropdown .dropdown-item:focus {
  background: rgba(212, 13, 31, .18) !important;
  color: #ffffff !important;
  transform: translateX(4px);
}

.premium-dropdown .dropdown-item:hover .dropdown-icon,
.premium-dropdown .dropdown-item:focus .dropdown-icon {
  background: linear-gradient(135deg, #D40D1F, #A60816) !important;
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(212, 13, 31, .24);
}

/* HEADER ACTIONS */
.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-left: 34px !important;
  flex: 0 0 auto !important;
  max-width: 210px !important;
  overflow: hidden !important;
}

.header-admission-btn {
  min-height: 46px !important;
  max-width: 210px !important;
  padding: 11px 16px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 32px rgba(212, 13, 31, .26);
}

.header-whatsapp {
  min-height: 44px;
  color: rgba(255, 255, 255, .90);
  font-weight: 900;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  transition: .25s ease;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .10);
}

.header-whatsapp:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  transform: translateY(-2px);
}

.header-phone-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(212, 13, 31, .20);
  color: #ffccd1;
}

.header-whatsapp small {
  display: none;
}

.header-whatsapp strong {
  display: block;
  color: #ffffff;
  font-size: 12px;
  line-height: 1;
}

/* TOGGLER */
.premium-toggler {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .13) !important;
  box-shadow: none !important;
  border-radius: 17px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .15), transparent 30%),
    rgba(255, 255, 255, .085) !important;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  transition: .25s ease;
}

.premium-toggler:hover {
  background: rgba(255, 255, 255, .13) !important;
  transform: translateY(-1px);
}

.menu-line {
  width: 21px;
  height: 2px;
  border-radius: 99px;
  background: #ffffff;
  display: block;
  transition: .25s ease;
}

.premium-toggler:not(.collapsed) .menu-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.premium-toggler:not(.collapsed) .menu-line:nth-child(2) {
  opacity: 0;
}

.premium-toggler:not(.collapsed) .menu-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-head {
  display: none;
}

/* DESKTOP HOVER DROPDOWN */
@media (min-width: 1200px) {
  .about-dropdown:hover .premium-dropdown,
  .courses-dropdown:hover .premium-dropdown {
    display: block !important;
  }
}

/* LARGE DESKTOP */
@media (min-width: 1500px) {
  .premium-nav-list {
    gap: 10px !important;
  }

  .brand-wrap {
    margin-right: 42px !important;
  }

  .header-actions {
    margin-left: 42px !important;
  }
}

/* NORMAL LAPTOP */
@media (min-width: 1321px) and (max-width: 1450px) {
  .header-container {
    min-height: 84px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .header-logo {
    width: 112px !important;
    height: 68px !important;
    min-width: 112px !important;
  }

  .brand-wrap {
    margin-right: 22px !important;
  }

  .premium-nav-list {
    gap: 14px !important;
  }

  .main-header .premium-nav-list .nav-link {
    padding: 10px 9px !important;
  }

  .main-header .premium-nav-list .nav-link span {
    font-size: 13.6px !important;
  }

  .header-actions {
    margin-left: 22px !important;
    max-width: 190px !important;
  }

  .header-admission-btn {
    max-width: 190px !important;
    padding-inline: 14px !important;
  }
}

/* SMALL LAPTOP FIT */
@media (min-width: 1200px) and (max-width: 1320px) {
  .header-container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .header-logo {
    width: 102px !important;
    height: 66px !important;
    min-width: 102px !important;
  }

  .brand-wrap {
    margin-right: 12px !important;
  }

  .premium-nav-list {
    gap: 8px !important;
  }

  .main-header .premium-nav-list .nav-link {
    padding: 10px 7px !important;
  }

  .main-header .premium-nav-list .nav-link span {
    font-size: 13px !important;
  }

  .header-actions {
    max-width: 172px !important;
    margin-left: 12px !important;
  }

  .header-admission-btn {
    max-width: 172px !important;
    padding-inline: 12px !important;
  }
}

/* =========================================================
   FULL SCREEN MOBILE / TABLET MENU — REFERENCE DESIGN
========================================================= */

.premium-mobile-drawer {
  display: none;
}

@media (max-width: 1199px) {

  body.mobile-menu-open {
    overflow: hidden !important;
  }

  .header-container {
    min-height: 76px !important;
    padding: 5px 16px !important;
  }

  .header-logo {
    width: 112px !important;
    height: 66px !important;
    min-width: 112px !important;
  }

  .premium-toggler {
    width: 50px !important;
    height: 50px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    margin-left: auto !important;
    padding: 0 !important;
    border-radius: 17px !important;
    background: rgba(255,255,255,.09) !important;
    border: 1px solid rgba(255,255,255,.15) !important;
  }

  .menu-line {
    width: 21px;
    height: 2px;
    border-radius: 99px;
    background: #ffffff;
  }

  .premium-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: block;
    width: 100%;
    height: 100dvh;
    padding: 28px clamp(20px, 5vw, 54px) 32px;
    overflow-y: auto;
    overflow-x: hidden;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform .35s ease,
      opacity .3s ease,
      visibility .3s ease;

    background:
      radial-gradient(circle at 2% 4%, rgba(207,11,44,.32), transparent 25%),
      radial-gradient(circle at 95% 96%, rgba(207,11,44,.17), transparent 28%),
      linear-gradient(145deg, #07061f 0%, #06163d 52%, #020c27 100%);
  }

  .premium-mobile-drawer.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
  }

  .premium-mobile-drawer::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
      linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
    background-size: 34px 34px;
  }

  .mobile-drawer-decoration {
    position: fixed;
    right: -100px;
    bottom: -100px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 50%;
    pointer-events: none;
  }

  .mobile-drawer-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .mobile-drawer-logo img {
    width: 125px;
    height: 110px;
    object-fit: contain;
  }

  .mobile-drawer-close {
    width: 66px;
    height: 66px;
    display: grid;
    place-items: center;
    margin-top: 12px;
    border-radius: 21px;
    color: #ffffff;
    background:
      radial-gradient(circle at 25% 20%, rgba(255,255,255,.15), transparent 32%),
      rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 18px 42px rgba(0,0,0,.18);
    font-size: 27px;
  }

  .mobile-drawer-heading {
    position: relative;
    z-index: 2;
    margin: 20px 0 28px;
  }

  .mobile-drawer-heading h2 {
    color: #ffffff;
    font-size: clamp(36px, 7vw, 54px);
    line-height: 1;
    font-weight: 950;
    letter-spacing: -1.5px;
    margin: 0;
  }

  .mobile-drawer-heading > span {
    display: block;
    width: 42px;
    height: 3px;
    margin: 12px 0 9px;
    border-radius: 999px;
    background: #ff3b5b;
  }

  .mobile-drawer-heading p {
    color: rgba(255,255,255,.62);
    font-size: 17px;
    font-weight: 650;
    margin: 0;
  }

  .mobile-menu-panel {
    position: relative;
    z-index: 2;
    padding: 26px;
    border-radius: 34px;
    background: rgba(3,15,48,.58);
    border: 1px solid rgba(255,255,255,.13);
    box-shadow:
      0 32px 90px rgba(0,0,0,.25),
      inset 0 1px 0 rgba(255,255,255,.04);
  }

  .mobile-menu-group + .mobile-menu-group {
    margin-top: 26px;
  }

  .mobile-group-title {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 7px 11px;
    font-size: 17px;
    line-height: 1;
    font-weight: 900;
  }

  .group-main {
    color: #ff4967;
  }

  .group-academics {
    color: #3ea8ff;
  }

  .group-opportunities {
    color: #bf69f4;
  }

  .group-media {
    color: #f1a253;
  }

  .group-support {
    color: #2dd274;
  }

  .mobile-menu-card {
    position: relative;
    width: 100%;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 11px 58px 11px 14px;
    margin-top: 6px;
    border-radius: 22px;
    color: #ffffff;
    text-align: left;
    text-decoration: none;
    background:
      linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
    border: 1px solid rgba(255,255,255,.13);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.045),
      0 12px 30px rgba(0,0,0,.11);
    transition: .25s ease;
  }

  button.mobile-menu-card {
    appearance: none;
  }

  .mobile-menu-card:hover,
  .mobile-menu-card:focus,
  .mobile-menu-card-active {
    color: #ffffff;
    transform: translateY(-2px);
    border-color: rgba(255,62,91,.65);
    background:
      radial-gradient(circle at 7% 50%, rgba(212,13,31,.18), transparent 30%),
      linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
    box-shadow:
      inset 4px 0 0 #ff3b5b,
      0 18px 38px rgba(0,0,0,.15);
  }

  .mobile-menu-card-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.16),
      0 14px 30px rgba(0,0,0,.14);
    font-size: 22px;
  }

  .icon-red {
    background: linear-gradient(145deg, #d8153b, #84132d);
  }

  .icon-blue {
    background: linear-gradient(145deg, #2286d2, #124578);
  }

  .icon-purple {
    background: linear-gradient(145deg, #8951c7, #4c2877);
  }

  .icon-orange {
    background: linear-gradient(145deg, #d9893c, #7e4822);
  }

  .icon-green {
    background: linear-gradient(145deg, #2ac372, #14633c);
  }

  .mobile-menu-card-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  .mobile-menu-card-content strong {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 900;
  }

  .mobile-menu-card-content small {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.61);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 650;
  }

  .mobile-card-arrow {
    position: absolute;
    right: 21px;
    top: 50%;
    color: rgba(255,255,255,.82);
    font-size: 21px;
    transform: translateY(-50%);
  }

  .mobile-submenu {
    padding: 8px 8px 2px 72px;
  }

  .mobile-submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 9px 12px;
    margin-top: 5px;
    border-radius: 13px;
    color: rgba(255,255,255,.78);
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.07);
    text-decoration: none;
    font-size: 13px;
    font-weight: 750;
  }

  .mobile-submenu a i {
    color: #ff8b9d;
  }

  .mobile-drawer-actions {
    display: grid;
    grid-template-columns: minmax(0,.85fr) minmax(0,1.45fr);
    gap: 18px;
    margin-top: 26px;
  }

  .mobile-whatsapp-btn,
  .mobile-admission-btn {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 12px 18px;
    border-radius: 22px;
    color: #ffffff;
    text-decoration: none;
  }

  .mobile-whatsapp-btn {
    background: rgba(4,27,61,.88);
    border: 1px solid rgba(40,208,107,.72);
  }

  .mobile-admission-btn {
    background: linear-gradient(135deg, #f00d34, #bd041f);
    border: 1px solid rgba(255,255,255,.15);
    box-shadow: 0 18px 42px rgba(211,8,36,.30);
  }

  .mobile-whatsapp-btn > span,
  .mobile-admission-btn > span {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 24px;
  }

  .mobile-whatsapp-btn > span {
    background: linear-gradient(145deg, #27d66d, #079b42);
  }

  .mobile-admission-btn > span {
    background: rgba(255,255,255,.12);
  }

  .mobile-whatsapp-btn strong,
  .mobile-admission-btn strong {
    display: block;
    color: #ffffff;
    font-size: 17px;
    line-height: 1.15;
    font-weight: 900;
  }

  .mobile-whatsapp-btn small,
  .mobile-admission-btn small {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.67);
    font-size: 12px;
    font-weight: 650;
  }
}

/* MOBILE */
@media (max-width: 767px) {

  .premium-mobile-drawer {
    padding: 18px 12px 22px;
  }

  .mobile-drawer-logo img {
    width: 102px;
    height: 82px;
  }

  .mobile-drawer-close {
    width: 54px;
    height: 54px;
    margin-top: 7px;
    border-radius: 17px;
    font-size: 22px;
  }

  .mobile-drawer-heading {
    margin: 16px 10px 22px;
  }

  .mobile-drawer-heading h2 {
    font-size: 36px;
  }

  .mobile-drawer-heading p {
    font-size: 15px;
  }

  .mobile-menu-panel {
    padding: 18px 12px;
    border-radius: 25px;
  }

  .mobile-group-title {
    font-size: 15px;
  }

  .mobile-menu-card {
    min-height: 68px;
    gap: 13px;
    padding: 9px 48px 9px 10px;
    border-radius: 18px;
  }

  .mobile-menu-card-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 14px;
    font-size: 19px;
  }

  .mobile-menu-card-content strong {
    font-size: 17px;
  }

  .mobile-menu-card-content small {
    font-size: 11.5px;
  }

  .mobile-card-arrow {
    right: 15px;
    font-size: 18px;
  }

  .mobile-submenu {
    padding-left: 18px;
  }

  .mobile-drawer-actions {
    grid-template-columns: 1fr 1.4fr;
    gap: 9px;
  }

  .mobile-whatsapp-btn,
  .mobile-admission-btn {
    min-height: 66px;
    gap: 8px;
    padding: 9px;
    border-radius: 18px;
  }

  .mobile-whatsapp-btn > span,
  .mobile-admission-btn > span {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 20px;
  }

  .mobile-whatsapp-btn strong,
  .mobile-admission-btn strong {
    font-size: 13px;
  }

  .mobile-whatsapp-btn small,
  .mobile-admission-btn small {
    font-size: 10px;
  }
}

/* VERY SMALL MOBILE */
@media (max-width: 420px) {

  .mobile-drawer-actions {
    grid-template-columns: 1fr;
  }

  .mobile-whatsapp-btn,
  .mobile-admission-btn {
    justify-content: flex-start;
    padding-left: 20px;
  }
}
/* =========================================================
   MOBILE HAMBURGER ICON CHANGE FIX
   Header button hamesha hamburger rahega
========================================================= */

@media (max-width: 1199px) {

  .premium-toggler,
  .premium-toggler.collapsed,
  .premium-toggler:not(.collapsed) {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  .premium-toggler .menu-line,
  .premium-toggler.collapsed .menu-line,
  .premium-toggler:not(.collapsed) .menu-line {
    width: 20px !important;
    height: 2px !important;
    display: block !important;

    opacity: 1 !important;
    visibility: visible !important;

    border-radius: 999px !important;
    background: #ffffff !important;

    transform: none !important;
    translate: none !important;
    rotate: none !important;
  }

  .premium-toggler .menu-line:nth-child(1),
  .premium-toggler .menu-line:nth-child(2),
  .premium-toggler .menu-line:nth-child(3),
  .premium-toggler:not(.collapsed) .menu-line:nth-child(1),
  .premium-toggler:not(.collapsed) .menu-line:nth-child(2),
  .premium-toggler:not(.collapsed) .menu-line:nth-child(3) {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* =========================================================
   MOBILE SUBMENU SAME AS MAIN CARDS FINAL FIX
========================================================= */

@media (max-width: 1199px) {

  /* Submenu ko full width rakho */
  .mobile-submenu {
    width: 100% !important;
    padding: 7px 0 3px !important;
    margin: 0 !important;
  }

  /* Har submenu item main card jaisa */
  .mobile-submenu a {
    position: relative !important;

    width: 100% !important;
    min-height: 62px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 13px !important;
    padding: 10px 50px 10px 12px !important;
    margin: 7px 0 0 !important;

    border-radius: 18px !important;

    color: #ffffff !important;
    text-decoration: none !important;

    background:
      linear-gradient(
        135deg,
        rgba(255, 255, 255, .085),
        rgba(255, 255, 255, .045)
      ) !important;

    border: 1px solid rgba(255, 255, 255, .12) !important;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .045),
      0 10px 26px rgba(0, 0, 0, .10) !important;

    transition: .25s ease !important;
  }

  /* Submenu icon square */
  .mobile-submenu a > i {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    flex: 0 0 42px !important;

    display: grid !important;
    place-items: center !important;

    border-radius: 13px !important;

    color: #ffffff !important;

    background:
      radial-gradient(
        circle at 25% 20%,
        rgba(255, 255, 255, .20),
        transparent 32%
      ),
      linear-gradient(145deg, #1d7dca, #0d3f76) !important;

    border: 1px solid rgba(255, 255, 255, .14) !important;

    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .15),
      0 12px 26px rgba(23, 120, 200, .18) !important;

    font-size: 16px !important;
  }

  /* Submenu text */
  .mobile-submenu a > span {
    color: #ffffff !important;
    font-size: 14px !important;
    line-height: 1.25 !important;
    font-weight: 850 !important;
  }

  /* Right arrow */
  .mobile-submenu a::after {
    content: "\F285";
    font-family: "bootstrap-icons";

    position: absolute;
    top: 50%;
    right: 18px;

    color: rgba(255, 255, 255, .72);
    font-size: 17px;
    line-height: 1;

    transform: translateY(-50%);
  }

  /* Hover */
  .mobile-submenu a:hover,
  .mobile-submenu a:focus {
    color: #ffffff !important;

    transform: translateY(-2px) !important;

    border-color: rgba(56, 167, 255, .48) !important;

    background:
      radial-gradient(
        circle at 8% 50%,
        rgba(30, 130, 210, .20),
        transparent 32%
      ),
      linear-gradient(
        135deg,
        rgba(255, 255, 255, .11),
        rgba(255, 255, 255, .055)
      ) !important;

    box-shadow:
      inset 4px 0 0 #38a7ff,
      0 15px 34px rgba(0, 0, 0, .14) !important;
  }

  /* Dropdown open card aur submenu ke beech clean spacing */
  .mobile-menu-card[aria-expanded="true"] {
    margin-bottom: 3px !important;
    border-color: rgba(56, 167, 255, .55) !important;
  }

  .mobile-menu-card[aria-expanded="true"] .mobile-card-arrow {
    transform: translateY(-50%) rotate(180deg) !important;
  }
}

/* =========================================================
   MOBILE COMPACT
========================================================= */

@media (max-width: 767px) {

  .mobile-submenu {
    padding: 6px 0 2px !important;
  }

  .mobile-submenu a {
    min-height: 57px !important;
    padding: 8px 42px 8px 9px !important;
    margin-top: 6px !important;
    border-radius: 16px !important;
  }

  .mobile-submenu a > i {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    flex-basis: 38px !important;
    border-radius: 12px !important;
    font-size: 14px !important;
  }

  .mobile-submenu a > span {
    font-size: 12.5px !important;
  }

  .mobile-submenu a::after {
    right: 14px !important;
    font-size: 15px !important;
  }
}





/* =========================================================
   KHADKESHWAR ULTRA PREMIUM HERO
========================================================= */

.knj-hero {
  --knj-navy: #061a49;
  --knj-navy-dark: #020d2b;
  --knj-red: #d50b23;
  --knj-red-dark: #a80318;
  --knj-text: #071b4d;
  --knj-muted: rgba(7, 27, 77, .66);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 34px 0 62px;
  background:
    radial-gradient(circle at 8% 8%, rgba(213, 11, 35, .10), transparent 27%),
    radial-gradient(circle at 92% 15%, rgba(255, 202, 210, .38), transparent 30%),
    linear-gradient(135deg, #fffafa 0%, #ffffff 48%, #f5f7fb 100%);
}

.knj-hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 27, 77, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.knj-hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(42px);
  pointer-events: none;
}

.knj-hero-glow-one {
  width: 330px;
  height: 330px;
  left: -170px;
  top: 70px;
  background: rgba(213, 11, 35, .12);
}

.knj-hero-glow-two {
  width: 380px;
  height: 380px;
  right: -180px;
  bottom: 110px;
  background: rgba(6, 26, 73, .10);
}

/* =========================================================
   MAIN HERO
========================================================= */

.knj-hero-main {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: 56% 44%;
  align-items: stretch;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 8% 10%, rgba(213, 11, 35, .06), transparent 30%),
    linear-gradient(115deg, #fffafa 0%, #fffafa 53%, #f8e8ec 100%);
  border: 1px solid rgba(7, 27, 77, .07);
  box-shadow:
    0 32px 90px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .95);
}

.knj-hero-content {
  position: relative;
  z-index: 5;
  padding: 42px 0 38px 42px;
}

.knj-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.knj-hero-badge {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  white-space: nowrap;
}

.knj-hero-badge-dark {
  color: #ffffff;
  background: linear-gradient(135deg, var(--knj-navy), var(--knj-navy-dark));
  box-shadow: 0 16px 36px rgba(6, 26, 73, .17);
}

.knj-hero-badge-light {
  color: var(--knj-text);
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(7, 27, 77, .07);
  box-shadow: 0 15px 34px rgba(7, 27, 77, .07);
}

.knj-hero-badge-light i {
  color: var(--knj-red);
}

.knj-hero-content h1 {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--knj-text);
  font-size: clamp(40px, 5vw, 50px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -3px;
}

.knj-hero-content h1 span {
  display: block;
  color: var(--knj-red);
}

.knj-hero-description {
  max-width: 620px;
  margin: 0 0 28px;
  color: rgba(7, 27, 77, .74);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 650;
}

.knj-hero-description strong {
  color: var(--knj-red);
  font-weight: 950;
}

/* =========================================================
   HERO IMAGE
========================================================= */

.knj-hero-image-wrap {
  position: relative;
  min-height: 540px;
}

.knj-hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.knj-hero-image-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fffafa 0%, rgba(255, 250, 250, .88) 12%, transparent 48%),
    linear-gradient(180deg, transparent 66%, rgba(255, 255, 255, .72) 100%);
}

.knj-image-badge {
  position: absolute;
  right: 22px;
  top: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--knj-text);
  background: rgba(255, 255, 255, .90);
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 16px 38px rgba(7, 27, 77, .10);
  backdrop-filter: blur(12px);
  font-size: 11px;
  font-weight: 900;
}

.knj-image-badge i {
  color: var(--knj-red);
}

/* =========================================================
   FEATURE CARDS
========================================================= */

.knj-hero-features {
  position: relative;
  z-index: 8;
  width: 118%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 28px;
}

.knj-hero-feature-card {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 19px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(7, 27, 77, .07);
  box-shadow: 0 17px 42px rgba(7, 27, 77, .08);
}

.knj-feature-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--knj-red), var(--knj-red-dark));
  box-shadow: 0 14px 28px rgba(213, 11, 35, .22);
  font-size: 18px;
}

.knj-hero-feature-card strong {
  display: block;
  color: var(--knj-text);
  font-size: 14px;
  line-height: 1.22;
  font-weight: 950;
}

.knj-hero-feature-card small {
  display: block;
  margin-top: 5px;
  color: rgba(7, 27, 77, .56);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
}

/* =========================================================
   ACTIONS
========================================================= */

.knj-hero-actions {
  position: relative;
  z-index: 8;
  width: 145%;
  display: flex;
  align-items: center;
  gap: 14px;
}

.knj-primary-btn,
.knj-secondary-btn,
.knj-call-btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: .25s ease;
}

.knj-primary-btn {
  padding: 13px 25px;
  color: #ffffff;
  background: linear-gradient(135deg, #e30b29, #b8051d);
  border: 0;
  box-shadow: 0 18px 42px rgba(213, 11, 35, .28);
  font-size: 13px;
  font-weight: 950;
}

.knj-secondary-btn {
  padding: 13px 25px;
  color: var(--knj-text);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(213, 11, 35, .23);
  box-shadow: 0 16px 38px rgba(7, 27, 77, .06);
  font-size: 13px;
  font-weight: 950;
}

.knj-call-btn {
  padding: 8px 19px;
  color: var(--knj-text);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(7, 27, 77, .07);
  box-shadow: 0 16px 40px rgba(7, 27, 77, .08);
}

.knj-call-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  color: var(--knj-text);
  font-size: 18px;
}

.knj-call-btn small {
  display: block;
  color: rgba(7, 27, 77, .55);
  font-size: 9.5px;
  line-height: 1;
  font-weight: 800;
}

.knj-call-btn strong {
  display: block;
  margin-top: 4px;
  color: var(--knj-text);
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
}

.knj-primary-btn:hover,
.knj-secondary-btn:hover,
.knj-call-btn:hover {
  transform: translateY(-3px);
}

/* =========================================================
   STATS STRIP
========================================================= */

.knj-stats-strip {
  position: relative;
  z-index: 9;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
  padding: 22px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(7, 27, 77, .07);
  box-shadow: 0 24px 65px rgba(7, 27, 77, .10);
}

.knj-stat-item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 5px 22px;
  border-right: 1px solid rgba(7, 27, 77, .09);
}

.knj-stat-item:last-child {
  border-right: 0;
}

.knj-stat-icon {
  width: 51px;
  height: 51px;
  min-width: 51px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-size: 19px;
  box-shadow: 0 14px 30px rgba(7, 27, 77, .14);
}

.knj-stat-red {
  background: linear-gradient(145deg, #db0924, #a50719);
}

.knj-stat-blue {
  background: linear-gradient(145deg, #5368dd, #273ba8);
}

.knj-stat-purple {
  background: linear-gradient(145deg, #b629d3, #7a108d);
}

.knj-stat-green {
  background: linear-gradient(145deg, #42bd59, #19852d);
}

.knj-stat-item strong {
  display: block;
  color: var(--knj-text);
  font-size: 27px;
  line-height: 1;
  font-weight: 950;
}

.knj-stat-item span:not(.knj-stat-icon) {
  display: block;
  margin-top: 6px;
  color: rgba(7, 27, 77, .66);
  font-size: 10.5px;
  line-height: 1.35;
  font-weight: 800;
}

/* =========================================================
   CLASSROOM PANEL
========================================================= */

.knj-classroom-panel {
  display: grid;
  grid-template-columns: 54% 46%;
  overflow: hidden;
  margin-top: 26px;
  border-radius: 30px;
  background: linear-gradient(135deg, #fffefe, #fff1f3);
  border: 1px solid rgba(7, 27, 77, .07);
  box-shadow: 0 26px 70px rgba(7, 27, 77, .10);
}

.knj-classroom-image {
  position: relative;
  min-height: 385px;
  overflow: hidden;
}

.knj-classroom-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.knj-classroom-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(2, 13, 43, .52));
}

.knj-year-card,
.knj-ai-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 16px;
  border-radius: 18px;
  color: #ffffff;
}

.knj-year-card {
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #e40a28, #b6041c);
}

.knj-ai-card {
  left: 18px;
  bottom: 18px;
  background: linear-gradient(135deg, var(--knj-navy), var(--knj-navy-dark));
}

.knj-year-card i,
.knj-ai-card i {
  font-size: 21px;
}

.knj-year-card strong,
.knj-ai-card strong {
  display: block;
  font-size: 16px;
  line-height: 1;
  font-weight: 950;
}

.knj-year-card span,
.knj-ai-card span {
  display: block;
  margin-top: 5px;
  font-size: 10px;
  font-weight: 750;
  opacity: .82;
}

.knj-classroom-features {
  display: grid;
  align-content: center;
  gap: 11px;
  padding: 25px;
}

.knj-classroom-feature {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(7, 27, 77, .06);
  box-shadow: 0 14px 34px rgba(7, 27, 77, .07);
}

.knj-classroom-feature > span {
  width: 47px;
  height: 47px;
  min-width: 47px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--knj-red), var(--knj-red-dark));
  font-size: 18px;
}

.knj-classroom-feature strong {
  display: block;
  color: var(--knj-text);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 950;
}

.knj-classroom-feature small {
  display: block;
  margin-top: 5px;
  color: rgba(7, 27, 77, .56);
  font-size: 10.5px;
  line-height: 1.3;
  font-weight: 700;
}

/* =========================================================
   COUNSELLING CTA
========================================================= */

.knj-counselling-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 21px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(7, 27, 77, .07);
  box-shadow: 0 24px 65px rgba(7, 27, 77, .10);
}

.knj-counselling-content {
  display: flex;
  align-items: center;
  gap: 19px;
}

.knj-counselling-icon {
  position: relative;
  width: 74px;
  height: 74px;
  min-width: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(145deg, #ed0a2c, #b7051d);
  box-shadow: 0 18px 40px rgba(213, 11, 35, .25);
  font-size: 30px;
}

.knj-counselling-icon::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #31c75a;
  border: 3px solid #ffffff;
}

.knj-counselling-content h2 {
  margin: 0 0 7px;
  color: var(--knj-text);
  font-size: 23px;
  line-height: 1.15;
  font-weight: 950;
}

.knj-counselling-content p {
  max-width: 470px;
  margin: 0;
  color: rgba(7, 27, 77, .64);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
}

.knj-counselling-action {
  min-width: 390px;
}

.knj-counselling-btn {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 25px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #e30a27, #bc051d);
  box-shadow: 0 18px 42px rgba(213, 11, 35, .28);
  text-decoration: none;
  font-size: 14px;
  font-weight: 950;
}

.knj-counselling-points {
  display: flex;
  justify-content: center;
  gap: 17px;
  margin-top: 12px;
}

.knj-counselling-points span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(7, 27, 77, .66);
  font-size: 10px;
  font-weight: 800;
}

.knj-counselling-points i {
  color: var(--knj-red);
}

/* =========================================================
   TRUST SECTION
========================================================= */

.knj-trust-section {
  margin-top: 34px;
}

.knj-trust-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-bottom: 23px;
}

.knj-trust-heading h2 {
  margin: 0;
  color: var(--knj-text);
  font-size: 20px;
  font-weight: 950;
}

.knj-trust-heading span {
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--knj-red);
}

.knj-trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.knj-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 17px;
  border-right: 1px solid rgba(7, 27, 77, .10);
}

.knj-trust-item:last-child {
  border-right: 0;
}

.knj-trust-item i {
  color: var(--knj-red);
  font-size: 21px;
}

.knj-trust-item strong {
  display: block;
  color: var(--knj-text);
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 950;
}

.knj-trust-item small {
  display: block;
  margin-top: 3px;
  color: rgba(7, 27, 77, .54);
  font-size: 8.5px;
  line-height: 1.2;
  font-weight: 700;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .knj-hero-main {
    grid-template-columns: 58% 42%;
  }

  .knj-hero-content {
    padding: 36px 0 34px 31px;
  }

  .knj-hero-content h1 {
    font-size: 50px;
  }

  .knj-hero-features {
    width: 128%;
  }

  .knj-hero-actions {
    width: 145%;
  }

  .knj-stats-strip {
    padding: 19px 13px;
  }

  .knj-stat-item {
    padding: 5px 12px;
  }

  .knj-stat-item strong {
    font-size: 24px;
  }

  .knj-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }

  .knj-trust-item {
    border-right: 0;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .knj-hero {
    padding-top: 22px;
  }

  .knj-hero-main {
    display: flex;
    flex-direction: column;
    min-height: auto;
    border-radius: 28px;
  }

  .knj-hero-content {
    padding: 30px 24px;
    text-align: center;
  }

  .knj-hero-content h1 {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 47px;
  }

  .knj-hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .knj-hero-badges,
  .knj-hero-actions {
    justify-content: center;
  }

  .knj-hero-features,
  .knj-hero-actions {
    width: 100%;
  }

  .knj-hero-actions {
    flex-wrap: wrap;
  }

  .knj-hero-image-wrap {
    min-height: 420px;
  }

  .knj-hero-image-overlay {
    background:
      linear-gradient(180deg, #fffafa 0%, transparent 20%),
      linear-gradient(180deg, transparent 70%, rgba(255, 255, 255, .55));
  }

  .knj-stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }

  .knj-stat-item {
    border-right: 0;
  }

  .knj-classroom-panel {
    grid-template-columns: 1fr;
  }

  .knj-counselling-card {
    flex-direction: column;
    text-align: center;
  }

  .knj-counselling-content {
    flex-direction: column;
  }

  .knj-counselling-action {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .knj-hero {
    padding: 14px 0 40px;
  }

  .knj-hero-main {
    border-radius: 22px;
  }

  .knj-hero-content {
    padding: 23px 14px;
  }

  .knj-hero-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
    margin-bottom: 22px;
  }

  .knj-hero-badge {
    width: 100%;
    min-height: 40px;
    font-size: 10.5px;
  }

  .knj-hero-content h1 {
    font-size: 35px;
    line-height: 1.02;
    letter-spacing: -1.7px;
  }

  .knj-hero-description {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .knj-hero-features {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .knj-hero-feature-card {
    min-height: 73px;
    text-align: left;
  }

  .knj-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .knj-primary-btn,
  .knj-secondary-btn,
  .knj-call-btn {
    width: 100%;
  }

  .knj-hero-image-wrap {
    min-height: 320px;
  }

  .knj-stats-strip {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    padding: 14px;
    border-radius: 22px;
  }

  .knj-stat-item {
    min-height: 100px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 12px 8px;
    border-radius: 16px;
    background: rgba(247, 249, 252, .82);
  }

  .knj-stat-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    font-size: 16px;
  }

  .knj-stat-item strong {
    font-size: 21px;
  }

  .knj-stat-item span:not(.knj-stat-icon) {
    font-size: 9px;
  }

  .knj-classroom-panel {
    border-radius: 22px;
  }

  .knj-classroom-image {
    min-height: 285px;
  }

  .knj-classroom-features {
    padding: 14px;
  }

  .knj-classroom-feature {
    min-height: 68px;
    padding: 11px;
  }

  .knj-classroom-feature > span {
    width: 43px;
    height: 43px;
    min-width: 43px;
  }

  .knj-classroom-feature strong {
    font-size: 14px;
  }

  .knj-classroom-feature small {
    font-size: 10px;
  }

  .knj-counselling-card {
    padding: 19px 14px;
    border-radius: 22px;
  }

  .knj-counselling-icon {
    width: 66px;
    height: 66px;
    min-width: 66px;
    font-size: 26px;
  }

  .knj-counselling-content h2 {
    font-size: 20px;
  }

  .knj-counselling-content p {
    font-size: 12px;
  }

  .knj-counselling-points {
    flex-wrap: wrap;
  }

  .knj-trust-heading {
    gap: 10px;
  }

  .knj-trust-heading h2 {
    font-size: 16px;
    text-align: center;
  }

  .knj-trust-heading span {
    width: 24px;
  }

  .knj-trust-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .knj-trust-item {
    justify-content: flex-start;
    padding: 12px 15px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .80);
    box-shadow: 0 10px 28px rgba(7, 27, 77, .05);
  }

  .knj-trust-item strong {
    font-size: 11px;
  }

  .knj-trust-item small {
    font-size: 9px;
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .knj-hero-content h1 {
    font-size: 31px;
  }

  .knj-stats-strip {
    grid-template-columns: 1fr;
  }

  .knj-stat-item {
    min-height: 82px;
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    padding: 12px;
  }

  .knj-counselling-points {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}
/* =========================================================
   TRUST STRIP COMPACT + CLEAN FINAL FIX
========================================================= */

.knj-trust-section {
  margin-top: 24px !important;
  padding: 22px 26px !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, .92) !important;
  border: 1px solid rgba(7, 27, 77, .08) !important;
  box-shadow: 0 18px 48px rgba(7, 27, 77, .07) !important;
}

/* Heading ko compact karo */
.knj-trust-heading {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px !important;
  margin: 0 0 20px !important;
}

.knj-trust-heading h2 {
  margin: 0 !important;
  color: #071b4d !important;
  font-size: 20px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
  text-align: center !important;
}

.knj-trust-heading span {
  width: 36px !important;
  height: 3px !important;
  flex: 0 0 36px !important;
  border-radius: 999px !important;
  background: #d40d1f !important;
}

/* Five items same row */
.knj-trust-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 0 !important;
  align-items: stretch !important;
}

/* Item height aur blank space fix */
.knj-trust-item {
  min-width: 0 !important;
  min-height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  padding: 10px 16px !important;
  margin: 0 !important;
  border-right: 1px solid rgba(7, 27, 77, .10) !important;
  background: transparent !important;
}

.knj-trust-item:last-child {
  border-right: 0 !important;
}

/* Icons */
.knj-trust-item > i {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  display: grid !important;
  place-items: center !important;
  color: #d40d1f !important;
  font-size: 20px !important;
  line-height: 1 !important;
}

/* Text container */
.knj-trust-item > div {
  min-width: 0 !important;
}

.knj-trust-item strong {
  display: block !important;
  margin: 0 0 4px !important;
  color: #071b4d !important;
  font-size: 11px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}

.knj-trust-item small {
  display: block !important;
  margin: 0 !important;
  color: rgba(7, 27, 77, .56) !important;
  font-size: 8.5px !important;
  line-height: 1.25 !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

/* Laptop */
@media (max-width: 1199px) {
  .knj-trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .knj-trust-item {
    justify-content: flex-start !important;
    border-right: 0 !important;
    border-radius: 14px !important;
    background: rgba(248, 249, 252, .75) !important;
  }
}

/* Tablet */
@media (max-width: 767px) {
  .knj-trust-section {
    padding: 18px 14px !important;
    border-radius: 20px !important;
  }

  .knj-trust-heading {
    gap: 10px !important;
    margin-bottom: 16px !important;
  }

  .knj-trust-heading h2 {
    font-size: 16px !important;
  }

  .knj-trust-heading span {
    width: 24px !important;
    flex-basis: 24px !important;
  }

  .knj-trust-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .knj-trust-item {
    min-height: 58px !important;
    justify-content: flex-start !important;
    padding: 10px 12px !important;
    border-radius: 14px !important;
    background: rgba(248, 249, 252, .88) !important;
  }

  .knj-trust-item strong,
  .knj-trust-item small {
    white-space: normal !important;
  }
}





/* =========================================================
   ABOUT SECTION CSS - ULTRA PREMIUM RESPONSIVE
   Replace old about CSS with this
========================================================= */

.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(212, 13, 31, .07), transparent 25%),
    radial-gradient(circle at 92% 15%, rgba(7, 27, 77, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.about-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(18px);
  opacity: .9;
}

.about-bg-shape-1 {
  width: 220px;
  height: 220px;
  left: -90px;
  top: 80px;
  background: rgba(212, 13, 31, .10);
}

.about-bg-shape-2 {
  width: 260px;
  height: 260px;
  right: -120px;
  bottom: 60px;
  background: rgba(7, 27, 77, .08);
}

/* =========================
   ABOUT CARD
========================= */

.about-card {
  position: relative;
  z-index: 2;
  height: 70%;
  padding: 34px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 13, 31, .08), transparent 24%),
    rgba(255, 255, 255, .92);
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow:
    0 22px 60px rgba(0, 11, 38, .09),
    inset 0 1px 0 rgba(255, 255, 255, .85);
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -80px;
  top: -80px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .08);
}

.about-badge {
  position: relative;
  z-index: 1;
}

.about-title {
  position: relative;
  z-index: 1;
}

.about-title h2 {
  color: var(--primary-dark);
  font-size: clamp(26px, 3.4vw, 35px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -.7px;
  margin-bottom: 14px;
}

.about-title p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* =========================
   ABOUT LIST
========================= */

.about-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(248, 249, 252, .90);
  border: 1px solid rgba(7, 27, 77, .07);
  color: var(--text-muted);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.55;
  transition: .25s ease;
}

.about-list li:hover {
  transform: translateY(-4px);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 11, 38, .08);
  border-color: rgba(212, 13, 31, .14);
}

.about-list-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(212, 13, 31, .10);
  color: var(--accent-red);
  font-size: 15px;
}

/* =========================
   MINI STATS
========================= */

.about-mini-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.about-mini-stat {
  padding: 15px 12px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 20% 15%, rgba(212, 13, 31, .11), transparent 28%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 10px 28px rgba(0, 11, 38, .06);
  transition: .25s ease;
}

.about-mini-stat:hover {
  transform: translateY(-4px);
}

.about-mini-stat strong {
  display: block;
  color: var(--primary-dark);
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 6px;
}

.about-mini-stat span {
  display: block;
  color: var(--text-muted);
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.25;
}

.about-action {
  position: relative;
  z-index: 1;
  margin-top: 24px;
}

/* =========================
   ABOUT VISUAL
========================= */

.about-visual-wrap {
  position: relative;
  z-index: 2;
  padding: 16px;
}

.about-visual-wrap::before {
  content: "";
  position: absolute;
  inset: 44px 0 0 44px;
  border-radius: 34px;
  background: rgba(212, 13, 31, .10);
  z-index: -1;
}

.about-visual {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: var(--light-gray);
  box-shadow:
    0 30px 75px rgba(0, 11, 38, .16),
    0 0 0 1px rgba(255, 255, 255, .70);
}

.about-visual img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: .45s ease;
}

.about-visual:hover img {
  transform: scale(1.06);
}

.about-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 26px;
  pointer-events: none;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 11, 38, .62), transparent 60%),
    radial-gradient(circle at 20% 20%, rgba(212, 13, 31, .18), transparent 28%);
}

/* =========================
   FLOATING CARDS
========================= */

.about-floating {
  position: absolute;
  left: 38px;
  right: 38px;
  bottom: 38px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .74);
}

.about-floating-icon {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .18), transparent 28%),
    linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
  color: var(--white);
  font-size: 23px;
  box-shadow: 0 14px 28px rgba(0, 11, 38, .18);
}

.about-floating h4 {
  color: var(--primary-dark);
  font-size: 15.5px;
  line-height: 1.25;
  font-weight: 900;
  margin: 0 0 4px;
}

.about-floating p {
  color: var(--text-muted);
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 700;
}

.about-trust-card {
  position: absolute;
  right: 0;
  top: 44px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, .22), transparent 28%),
    linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: var(--white);
  box-shadow: 0 18px 42px rgba(212, 13, 31, .28);
  font-size: 12px;
  font-weight: 900;
}

.about-trust-card i {
  color: #fff;
  font-size: 15px;
}

/* =========================================================
   RESPONSIVE ABOUT SECTION
========================================================= */

@media (max-width: 1199px) {
  .about-card {
    padding: 30px;
  }

  .about-title h2 {
    font-size: clamp(27px, 3.6vw, 38px);
  }

  .about-visual img {
    height: 440px;
  }
}

@media (max-width: 991px) {
  .about-section {
    text-align: center;
  }

  .about-card {
    max-width: 760px;
    margin: 0 auto;
  }

  .about-list li {
    text-align: left;
  }

  .about-mini-stats {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-action {
    display: flex;
    justify-content: center;
  }

  .about-visual-wrap {
    max-width: 620px;
    margin: 0 auto;
    padding: 12px;
  }

  .about-visual img {
    height: 410px;
  }

  .about-floating {
    left: 28px;
    right: 28px;
    bottom: 28px;
    text-align: left;
  }

  .about-trust-card {
    right: 12px;
    top: 28px;
  }
}

@media (max-width: 767px) {
  .about-section {
    text-align: left;
  }

  .about-card {
    padding: 24px;
    border-radius: 26px;
  }

  .about-title h2 {
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.16;
    letter-spacing: -.5px;
  }

  .about-title p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .about-list {
    gap: 10px;
    margin-top: 20px;
  }

  .about-list li {
    padding: 13px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.55;
  }

  .about-list-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    border-radius: 10px;
    font-size: 14px;
  }

  .about-mini-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .about-mini-stat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 15px;
    border-radius: 16px;
  }

  .about-mini-stat strong {
    font-size: 17px;
    margin-bottom: 0;
  }

  .about-mini-stat span {
    font-size: 12px;
  }

  .about-action .btn-main {
    width: 100%;
    min-height: 50px;
  }

  .about-visual-wrap {
    padding: 0;
    margin-top: 4px;
  }

  .about-visual-wrap::before {
    display: none;
  }

  .about-visual {
    border-radius: 26px;
  }

  .about-visual::before {
    inset: 9px;
    border-radius: 19px;
  }

  .about-visual img {
    height: 330px;
  }

  .about-trust-card {
    top: 12px;
    right: 12px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .about-floating {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -54px 14px 0;
    padding: 15px;
    border-radius: 20px;
    align-items: flex-start;
  }

  .about-floating-icon {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 16px;
    font-size: 20px;
  }

  .about-floating h4 {
    font-size: 14.5px;
  }

  .about-floating p {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .about-card {
    padding: 20px;
    border-radius: 24px;
  }

  .about-title h2 {
    font-size: clamp(22px, 7vw, 28px);
  }

  .about-title p {
    font-size: 14px;
  }

  .about-list li {
    font-size: 13px;
  }

  .about-visual img {
    height: 285px;
  }

  .about-floating {
    margin: -44px 10px 0;
    padding: 14px;
  }

  .about-floating-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .about-trust-card {
    max-width: calc(100% - 24px);
    white-space: nowrap;
  }
}



/* =========================================================
   WHY PARENTS TRUST KHADKESHWAR ACADEMY
========================================================= */

.kpt-section {
  --kpt-navy: #061a49;
  --kpt-dark: #020d2b;
  --kpt-red: #d40d1f;
  --kpt-red-dark: #a60717;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 82px 0 70px;

  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 28%),
    radial-gradient(circle at 92% 13%, rgba(46, 105, 222, .07), transparent 30%),
    linear-gradient(135deg, #fffafa 0%, #ffffff 48%, #f8f9fd 100%);
}

.kpt-bg-grid {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(7, 27, 77, .023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .023) 1px, transparent 1px);

  background-size: 42px 42px;
}

.kpt-bg-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(44px);
  pointer-events: none;
}

.kpt-bg-glow-one {
  width: 330px;
  height: 330px;
  left: -170px;
  top: 60px;
  background: rgba(212, 13, 31, .11);
}

.kpt-bg-glow-two {
  width: 390px;
  height: 390px;
  right: -190px;
  bottom: 70px;
  background: rgba(39, 103, 220, .09);
}

/* =========================================================
   HEADING
========================================================= */

.kpt-heading {
  max-width: 930px;
  margin: 0 auto 44px;
  text-align: center;
}

.kpt-heading-badge {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 20px;
  padding: 10px 19px;

  border-radius: 999px;

  color: #d2172f;
  background: linear-gradient(135deg, #fff0f3, #fff7f8);
  border: 1px solid rgba(212, 13, 31, .11);

  box-shadow: 0 12px 30px rgba(212, 13, 31, .07);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.kpt-heading-badge i {
  font-size: 16px;
}

.kpt-heading h2 {
  max-width: 900px;
  margin: 0 auto 16px;

  color: var(--kpt-navy);

  font-size: clamp(40px, 5vw, 42px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2.8px;
}

.kpt-heading h2 span {
  display: block;
  color: var(--kpt-red);
}

.kpt-heading p {
  max-width: 790px;
  margin: 0 auto;

  color: rgba(7, 27, 77, .67);

  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

/* =========================================================
   GRID
========================================================= */

.kpt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* =========================================================
   CARD
========================================================= */

.kpt-card {
  --card-color: #d40d1f;
  --card-soft: #fff0f3;

  position: relative;
  min-width: 0;
  min-height: 285px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  border-radius: 28px;

  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 20px 54px rgba(7, 27, 77, .08),
    inset 0 1px 0 rgba(255, 255, 255, .98);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.kpt-card:hover {
  transform: translateY(-7px);
  border-color: rgba(212, 13, 31, .16);
  box-shadow: 0 32px 72px rgba(7, 27, 77, .13);
}

.kpt-card-body {
  min-height: 212px;

  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: 22px;
  align-items: center;

  padding: 27px 28px;
}

/* ICON */

.kpt-card-icon {
  width: 122px;
  height: 122px;

  display: grid;
  place-items: center;

  border-radius: 30px;

  color: var(--card-color);

  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .88), transparent 34%),
    var(--card-soft);

  border: 1px solid rgba(7, 27, 77, .04);

  box-shadow:
    0 19px 42px rgba(7, 27, 77, .07),
    inset 0 1px 0 rgba(255, 255, 255, .95);

  font-size: 51px;
}

/* CONTENT */

.kpt-card-content {
  min-width: 0;
}

.kpt-card-content h3 {
  margin: 0 0 12px;

  color: var(--kpt-navy);

  font-size: 24px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -.55px;
}

.kpt-card-line {
  width: 35px;
  height: 3px;

  display: block;

  margin-bottom: 15px;

  border-radius: 999px;
  background: var(--card-color);
}

.kpt-card-content p {
  margin: 0;

  color: rgba(7, 27, 77, .68);

  font-size: 14px;
  line-height: 1.58;
  font-weight: 600;
}

/* CARD FOOTER */

.kpt-card-footer {
  min-height: 72px;

  display: flex;
  align-items: center;
  gap: 13px;

  margin-top: auto;
  padding: 15px 27px;

  color: #071b4d;

  background:
    linear-gradient(
      135deg,
      var(--card-soft),
      rgba(255, 255, 255, .78)
    );

  border-top: 1px solid rgba(7, 27, 77, .045);

  font-size: 13px;
  line-height: 1.35;
  font-weight: 800;
}

.kpt-card-footer > i {
  width: 38px;
  height: 38px;
  min-width: 38px;

  display: grid;
  place-items: center;

  color: var(--card-color);

  font-size: 23px;
}

.kpt-card-footer > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.kpt-card-footer strong {
  color: var(--card-color);
  font-size: 15px;
  font-weight: 950;
}

.kpt-card-footer b {
  width: 1px;
  height: 17px;
  display: inline-block;
  background: rgba(7, 27, 77, .17);
}

/* =========================================================
   COLOR THEMES
========================================================= */

.kpt-card-red {
  --card-color: #dc1832;
  --card-soft: #fff0f3;
}

.kpt-card-blue {
  --card-color: #2b6de0;
  --card-soft: #edf3ff;
}

.kpt-card-green {
  --card-color: #24a843;
  --card-soft: #edf9f0;
}

.kpt-card-purple {
  --card-color: #9842d4;
  --card-soft: #f6effd;
}

.kpt-card-orange {
  --card-color: #e89517;
  --card-soft: #fff6e8;
}

.kpt-card-cyan {
  --card-color: #20aeb4;
  --card-soft: #eafafb;
}

.kpt-card-violet {
  --card-color: #824de3;
  --card-soft: #f2edff;
}

.kpt-card-coral {
  --card-color: #e95d68;
  --card-soft: #fff0f2;
}

/* =========================================================
   COMMITMENT BANNER
========================================================= */

.kpt-commitment {
  position: relative;
  overflow: hidden;

  min-height: 300px;

  display: grid;
  grid-template-columns: 56% 44%;
  align-items: stretch;

  margin-top: 24px;

  border-radius: 31px;

  background:
    radial-gradient(circle at 95% 10%, rgba(212, 13, 31, .27), transparent 30%),
    linear-gradient(140deg, #071b4d 0%, #001039 62%, #020b28 100%);

  border: 1px solid rgba(255, 255, 255, .11);

  box-shadow:
    0 30px 80px rgba(7, 27, 77, .24),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.kpt-commitment::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);

  background-size: 32px 32px;
}

.kpt-commitment-content {
  position: relative;
  z-index: 3;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 40px 38px;
}

.kpt-commitment-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;

  margin-bottom: 16px;

  color: #ff7185;

  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.kpt-commitment-content h3 {
  max-width: 620px;
  margin: 0 0 14px;

  color: #ffffff;

  font-size: clamp(28px, 3.5vw, 35px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.6px;
}

.kpt-commitment-content h3 span {
  display: block;
}

.kpt-commitment-content p {
  max-width: 610px;
  margin: 0 0 24px;

  color: rgba(255, 255, 255, .72);

  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

.kpt-commitment-btn {
  min-height: 51px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  align-self: flex-start;

  padding: 13px 22px;

  border-radius: 999px;

  color: #ffffff;
  background: linear-gradient(135deg, #e40c2a, #b8041d);

  box-shadow: 0 17px 40px rgba(212, 13, 31, .30);

  text-decoration: none;

  font-size: 12px;
  font-weight: 950;

  transition: .25s ease;
}

.kpt-commitment-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.kpt-commitment-visual {
  position: relative;
  z-index: 2;

  min-height: 300px;

  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.kpt-commitment-visual::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, #001039 0%, transparent 30%),
    radial-gradient(circle at 60% 60%, rgba(212, 13, 31, .20), transparent 48%);
}

.kpt-commitment-visual img {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
  object-position: center bottom;
}

/* =========================================================
   STATS STRIP
========================================================= */

.kpt-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-top: 16px;
  padding: 19px 24px;

  border-radius: 25px;

  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(7, 27, 77, .07);

  box-shadow:
    0 22px 58px rgba(7, 27, 77, .08);
}

.kpt-stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  min-width: 0;
  padding: 5px 20px;

  border-right: 1px solid rgba(7, 27, 77, .10);
}

.kpt-stat:last-child {
  border-right: 0;
}

.kpt-stat > i {
  width: 40px;
  height: 40px;
  min-width: 40px;

  display: grid;
  place-items: center;

  color: var(--kpt-navy);

  font-size: 22px;
}

.kpt-stat strong {
  display: block;

  color: var(--kpt-navy);

  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.kpt-stat span {
  display: block;

  margin-top: 5px;

  color: rgba(7, 27, 77, .59);

  font-size: 10px;
  line-height: 1.25;
  font-weight: 750;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .kpt-card-body {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
  }

  .kpt-card-icon {
    width: 102px;
    height: 102px;
    border-radius: 25px;
    font-size: 43px;
  }

  .kpt-card-content h3 {
    font-size: 21px;
  }

  .kpt-card-content p {
    font-size: 13px;
  }

  .kpt-commitment {
    grid-template-columns: 58% 42%;
  }

  .kpt-stat {
    padding-inline: 12px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .kpt-heading h2 {
    font-size: 48px;
  }

  .kpt-grid {
    grid-template-columns: 1fr;
  }

  .kpt-card-body {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .kpt-card-icon {
    width: 118px;
    height: 118px;
    font-size: 49px;
  }

  .kpt-commitment {
    grid-template-columns: 1fr;
  }

  .kpt-commitment-content {
    text-align: center;
    align-items: center;
  }

  .kpt-commitment-label,
  .kpt-commitment-btn {
    align-self: center;
  }

  .kpt-commitment-visual {
    min-height: 260px;
  }

  .kpt-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .kpt-stat {
    justify-content: flex-start;
    border-right: 0;
    border-radius: 15px;
    background: rgba(248, 249, 252, .82);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .kpt-section {
    padding: 55px 0 45px;
  }

  .kpt-heading {
    margin-bottom: 32px;
  }

  .kpt-heading-badge {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 10px;
  }

  .kpt-heading h2 {
    font-size: 34px;
    line-height: 1.07;
    letter-spacing: -1.3px;
  }

  .kpt-heading p {
    font-size: 13px;
    line-height: 1.6;
  }

  .kpt-grid {
    gap: 15px;
  }

  .kpt-card {
    min-height: auto;
    border-radius: 23px;
  }

  .kpt-card-body {
    min-height: auto;

    grid-template-columns: 86px minmax(0, 1fr);
    gap: 15px;

    padding: 19px 16px;
  }

  .kpt-card-icon {
    width: 80px;
    height: 80px;

    border-radius: 21px;

    font-size: 34px;
  }

  .kpt-card-content h3 {
    margin-bottom: 8px;

    font-size: 18px;
  }

  .kpt-card-line {
    width: 28px;
    margin-bottom: 10px;
  }

  .kpt-card-content p {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .kpt-card-footer {
    min-height: 61px;

    padding: 12px 16px;

    font-size: 11px;
  }

  .kpt-card-footer > i {
    width: 31px;
    height: 31px;
    min-width: 31px;

    font-size: 19px;
  }

  .kpt-card-footer strong {
    font-size: 12px;
  }

  .kpt-commitment {
    min-height: auto;
    border-radius: 24px;
  }

  .kpt-commitment-content {
    padding: 28px 18px;
  }

  .kpt-commitment-content h3 {
    font-size: 29px;
  }

  .kpt-commitment-content p {
    font-size: 12px;
  }

  .kpt-commitment-visual {
    min-height: 230px;
  }

  .kpt-stats {
    padding: 14px;
    border-radius: 21px;
  }

  .kpt-stat {
    min-height: 72px;
    padding: 11px;
  }

  .kpt-stat strong {
    font-size: 19px;
  }

  .kpt-stat span {
    font-size: 9px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .kpt-heading h2 {
    font-size: 29px;
  }

  .kpt-card-body {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kpt-card-icon {
    margin: 0 auto;
  }

  .kpt-card-line {
    margin-left: auto;
    margin-right: auto;
  }

  .kpt-card-footer {
    justify-content: center;
    text-align: center;
  }

  .kpt-stats {
    grid-template-columns: 1fr;
  }
}




/* =========================================================
   PREMIUM COURSES SECTION — DARK REFERENCE DESIGN
========================================================= */

.kpc-section {
  --kpc-navy: #030e34;
  --kpc-dark: #010924;
  --kpc-red: #e31835;
  --kpc-red-dark: #ae061c;
  --kpc-blue: #2168dd;
  --kpc-purple: #8138cf;
  --kpc-teal: #089c9c;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 82px 0 68px;

  color: #ffffff;

  background:
    radial-gradient(circle at 8% 10%, rgba(227, 24, 53, .14), transparent 28%),
    radial-gradient(circle at 92% 16%, rgba(33, 104, 221, .13), transparent 30%),
    linear-gradient(180deg, #03103b 0%, #010924 100%);
}

.kpc-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);

  background-size: 44px 44px;
}

.kpc-glow {
  position: absolute;
  z-index: -2;

  border-radius: 50%;

  filter: blur(50px);
  pointer-events: none;
}

.kpc-glow-one {
  width: 380px;
  height: 380px;
  left: -210px;
  top: 70px;

  background: rgba(227, 24, 53, .21);
}

.kpc-glow-two {
  width: 430px;
  height: 430px;
  right: -230px;
  bottom: 90px;

  background: rgba(35, 99, 215, .18);
}

.kpc-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */

.kpc-heading {
  max-width: 1050px;
  margin: 0 auto 46px;

  text-align: center;
}

.kpc-heading-badge {
  min-height: 43px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 20px;
  padding: 10px 20px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(227, 24, 53, .14),
      rgba(255, 255, 255, .055)
    );

  border: 1px solid rgba(255, 255, 255, .20);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .07);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.kpc-heading-badge i {
  color: #f1324c;
  font-size: 16px;
}

.kpc-heading h2 {
  max-width: 980px;
  margin: 0 auto 18px;

  color: #ffffff;

  font-size: clamp(38px, 5vw, 42px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -2.5px;
}

.kpc-heading h2 > span {
  display: block;
}

.kpc-heading h2 b {
  font-weight: inherit;
}

.kpc-red-text {
  color: #f12842;
}

.kpc-blue-text {
  color: #4386ff;
}

.kpc-purple-text {
  color: #a956eb;
}

.kpc-heading p {
  max-width: 790px;
  margin: 0 auto;

  color: rgba(255, 255, 255, .69);

  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.kpc-heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  margin-top: 21px;
}

.kpc-heading-divider span {
  width: 65px;
  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(227, 24, 53, .96)
    );
}

.kpc-heading-divider span:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(227, 24, 53, .96),
      transparent
    );
}

.kpc-heading-divider i {
  color: var(--kpc-red);
  font-size: 13px;
}

/* =========================================================
   COURSES GRID
========================================================= */

.kpc-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* =========================================================
   COURSE CARD BASE
========================================================= */

.kpc-course-card {
  --course-color: #e31835;
  --course-dark-color: #ae061c;
  --course-soft: rgba(227, 24, 53, .11);

  position: relative;
  min-width: 0;
  min-height: 550px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  padding: 28px;

  border-radius: 28px;

  background:
    radial-gradient(circle at 95% 4%, var(--course-soft), transparent 28%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .078),
      rgba(255, 255, 255, .035)
    );

  border: 1px solid color-mix(
    in srgb,
    var(--course-color) 75%,
    rgba(255, 255, 255, .12)
  );

  box-shadow:
    0 26px 65px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .06);

  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.kpc-course-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 36px 82px rgba(0, 0, 0, .30),
    0 0 35px var(--course-soft),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

/* CARD THEMES */

.kpc-course-neet {
  --course-color: #e31835;
  --course-dark-color: #af051c;
  --course-soft: rgba(227, 24, 53, .16);
}

.kpc-course-jee {
  --course-color: #2772e6;
  --course-dark-color: #0843a8;
  --course-soft: rgba(39, 114, 230, .16);
}

.kpc-course-foundation {
  --course-color: #8d3bd3;
  --course-dark-color: #58149d;
  --course-soft: rgba(141, 59, 211, .16);
}

.kpc-course-ai {
  --course-color: #08a4a2;
  --course-dark-color: #047170;
  --course-soft: rgba(8, 164, 162, .16);
}

/* STATUS BADGE */

.kpc-course-status {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 5;

  min-height: 35px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 14px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--course-color),
      var(--course-dark-color)
    );

  box-shadow:
    0 13px 30px var(--course-soft);

  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}

/* =========================================================
   CARD HEAD
========================================================= */

.kpc-course-head {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 20px;
  align-items: start;

  padding-right: 105px;
  margin-bottom: 23px;
}

.kpc-course-icon {
  width: 72px;
  height: 72px;

  display: grid;
  place-items: center;

  border-radius: 20px;

  color: #ffffff;

  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .25), transparent 30%),
    linear-gradient(
      135deg,
      var(--course-color),
      var(--course-dark-color)
    );

  box-shadow:
    0 17px 38px var(--course-soft);

  font-size: 32px;
}

.kpc-course-head h3 {
  margin: 8px 0 10px;

  color: #ffffff;

  font-size: 25px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -.5px;
}

.kpc-course-head p {
  margin: 0;

  color: rgba(255, 255, 255, .68);

  font-size: 13px;
  line-height: 1.58;
  font-weight: 600;
}

/* =========================================================
   FEATURES
========================================================= */

.kpc-course-features {
  position: relative;
  z-index: 2;

  display: grid;
  gap: 11px;

  margin: 0 0 22px;
  padding: 0;

  list-style: none;
}

.kpc-course-features li {
  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255, 255, 255, .86);

  font-size: 13px;
  line-height: 1.4;
  font-weight: 750;
}

.kpc-course-features i {
  color: var(--course-color);
  font-size: 17px;
}

/* DECORATIVE ICON */

.kpc-course-decoration {
  position: absolute;
  z-index: 1;

  right: 27px;
  top: 165px;

  color: var(--course-color);
  opacity: .24;

  font-size: 105px;
  line-height: 1;

  pointer-events: none;
}

.kpc-decoration-ai {
  font-size: 112px;
}

/* =========================================================
   COURSE DETAILS GRID
========================================================= */

.kpc-course-info-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-top: auto;
  margin-bottom: 17px;

  overflow: hidden;

  border-radius: 15px;

  background: rgba(0, 8, 36, .34);
  border: 1px solid rgba(255, 255, 255, .12);
}

.kpc-course-info {
  min-width: 0;
  min-height: 66px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 10px 8px;

  border-right: 1px solid rgba(255, 255, 255, .10);
}

.kpc-course-info:last-child {
  border-right: 0;
}

.kpc-course-info > i {
  color: var(--course-color);
  font-size: 17px;
  flex: 0 0 auto;
}

.kpc-course-info span {
  min-width: 0;

  display: block;

  color: rgba(255, 255, 255, .61);

  font-size: 8.5px;
  line-height: 1.3;
  font-weight: 650;
}

.kpc-course-info strong {
  display: block;

  margin-bottom: 3px;

  color: #ffffff;

  font-size: 9px;
  line-height: 1.25;
  font-weight: 850;
}

/* =========================================================
   BUTTONS
========================================================= */

.kpc-course-actions {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.kpc-btn {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 17px;

  border-radius: 14px;

  text-decoration: none;

  font-size: 13px;
  line-height: 1;
  font-weight: 900;

  transition: .25s ease;
}

.kpc-btn:hover {
  transform: translateY(-3px);
}

.kpc-btn-outline {
  color: #ffffff;

  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .30);
}

.kpc-btn-outline:hover {
  color: #ffffff;
  border-color: var(--course-color);
  background: var(--course-soft);
}

.kpc-btn-filled {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--course-color),
      var(--course-dark-color)
    );

  border: 1px solid transparent;

  box-shadow: 0 16px 35px var(--course-soft);
}

.kpc-btn-filled:hover {
  color: #ffffff;
}

/* =========================================================
   STATISTICS STRIP
========================================================= */

.kpc-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));

  margin-top: 25px;
  padding: 23px 18px;

  border-radius: 25px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .075),
      rgba(255, 255, 255, .035)
    );

  border: 1px solid rgba(255, 255, 255, .14);

  box-shadow:
    0 25px 65px rgba(0, 0, 0, .20);
}

.kpc-stat {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  padding: 7px 15px;

  border-right: 1px solid rgba(255, 255, 255, .13);
}

.kpc-stat:last-child {
  border-right: 0;
}

.kpc-stat > i {
  width: 49px;
  height: 49px;
  min-width: 49px;

  display: grid;
  place-items: center;

  font-size: 34px;
}

.kpc-stat-red > i {
  color: #ed263f;
}

.kpc-stat-yellow > i {
  color: #f4ae21;
}

.kpc-stat-blue > i {
  color: #3078ef;
}

.kpc-stat-green > i {
  color: #34c463;
}

.kpc-stat-orange > i {
  color: #f0a01e;
}

.kpc-stat strong {
  display: block;

  color: #ffffff;

  font-size: 19px;
  line-height: 1.1;
  font-weight: 950;
}

.kpc-stat span {
  display: block;

  margin-top: 5px;

  color: rgba(255, 255, 255, .65);

  font-size: 10px;
  line-height: 1.3;
  font-weight: 650;
}

/* =========================================================
   CONTACT STRIP
========================================================= */

.kpc-contact-strip {
  display: grid;
  grid-template-columns: 1fr 1px 1.25fr 1px .75fr;
  align-items: center;

  margin-top: 20px;
  padding: 18px 25px;

  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .07),
      rgba(255, 255, 255, .03)
    );

  border: 1px solid rgba(255, 255, 255, .13);

  box-shadow:
    0 20px 52px rgba(0, 0, 0, .18);
}

.kpc-contact-item {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: #ffffff;

  text-decoration: none;

  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;

  transition: .24s ease;
}

.kpc-contact-item:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.kpc-contact-item i {
  color: var(--kpc-red);
  font-size: 21px;
}

.kpc-contact-item:nth-of-type(2) i {
  color: #ffffff;
}

.kpc-contact-divider {
  width: 1px;
  height: 42px;

  background: rgba(255, 255, 255, .14);
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .kpc-course-card {
    min-height: 540px;
    padding: 24px;
  }

  .kpc-course-head {
    padding-right: 88px;
  }

  .kpc-course-head h3 {
    font-size: 22px;
  }

  .kpc-course-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kpc-course-info:nth-child(2) {
    border-right: 0;
  }

  .kpc-course-info:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }

  .kpc-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .kpc-stat {
    justify-content: flex-start;
    border-right: 0;

    border-radius: 15px;
    background: rgba(255, 255, 255, .035);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .kpc-heading h2 {
    font-size: 46px;
  }

  .kpc-course-grid {
    grid-template-columns: 1fr;
  }

  .kpc-course-card {
    min-height: auto;
  }

  .kpc-course-info-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .kpc-course-info:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, .10);
  }

  .kpc-course-info:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .kpc-contact-strip {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .kpc-contact-divider {
    width: 100%;
    height: 1px;
  }

  .kpc-contact-item {
    justify-content: flex-start;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .kpc-section {
    padding: 54px 0 45px;
  }

  .kpc-heading {
    margin-bottom: 34px;
  }

  .kpc-heading-badge {
    min-height: 38px;
    padding: 9px 15px;

    font-size: 10px;
  }

  .kpc-heading h2 {
    font-size: 33px;
    line-height: 1.08;
    letter-spacing: -1.3px;
  }

  .kpc-heading p {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .kpc-course-grid {
    gap: 16px;
  }

  .kpc-course-card {
    min-height: auto;

    padding: 19px 15px;

    border-radius: 23px;
  }

  .kpc-course-status {
    position: static;

    width: fit-content;

    margin: 0 0 16px auto;

    min-height: 30px;
    padding: 7px 11px;

    font-size: 8.5px;
  }

  .kpc-course-head {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;

    padding-right: 0;
    margin-bottom: 18px;
  }

  .kpc-course-icon {
    width: 58px;
    height: 58px;

    border-radius: 17px;

    font-size: 25px;
  }

  .kpc-course-head h3 {
    margin-top: 3px;

    font-size: 19px;
  }

  .kpc-course-head p {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .kpc-course-features {
    gap: 9px;
  }

  .kpc-course-features li {
    font-size: 11.5px;
  }

  .kpc-course-decoration {
    right: 18px;
    top: 190px;

    font-size: 75px;
  }

  .kpc-course-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kpc-course-info {
    min-height: 61px;
  }

  .kpc-course-info:nth-child(2) {
    border-right: 0;
  }

  .kpc-course-info:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .10);
  }

  .kpc-course-actions {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .kpc-btn {
    min-height: 46px;
  }

  .kpc-stats {
    grid-template-columns: 1fr 1fr;
    padding: 14px;
  }

  .kpc-stat {
    min-height: 74px;
    padding: 10px;
  }

  .kpc-stat > i {
    width: 40px;
    height: 40px;
    min-width: 40px;

    font-size: 27px;
  }

  .kpc-stat strong {
    font-size: 15px;
  }

  .kpc-stat span {
    font-size: 8.5px;
  }

  .kpc-contact-strip {
    padding: 15px;

    border-radius: 19px;
  }

  .kpc-contact-item {
    font-size: 10px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .kpc-heading h2 {
    font-size: 29px;
  }

  .kpc-course-head {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .kpc-course-icon {
    margin: 0 auto;
  }

  .kpc-course-status {
    margin-right: auto;
  }

  .kpc-course-features {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .kpc-course-decoration {
    display: none;
  }

  .kpc-stats {
    grid-template-columns: 1fr;
  }
}





/* =========================================================
   FACULTY PREVIEW SECTION
========================================================= */

.faculty-preview-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .09), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(7, 27, 77, .12), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f8f9fc 52%, #eef2f8 100%);
}

.faculty-bg-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(24px);
  z-index: 0;
}

.faculty-bg-shape-1 {
  width: 260px;
  height: 260px;
  left: -110px;
  top: 90px;
  background: rgba(212, 13, 31, .13);
}

.faculty-bg-shape-2 {
  width: 310px;
  height: 310px;
  right: -140px;
  bottom: 90px;
  background: rgba(7, 27, 77, .12);
}

.faculty-preview-section .container {
  position: relative;
  z-index: 2;
}

.faculty-preview-title {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.faculty-preview-title h2 {
  font-size: 36px !important;
}

.faculty-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.faculty-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .08), transparent 30%),
    rgba(255, 255, 255, .90);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 18px 46px rgba(7, 27, 77, .08);
  transition: .28s ease;
}

.faculty-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 68px rgba(7, 27, 77, .13);
  border-color: rgba(212, 13, 31, .18);
}

.featured-faculty-card {
  border-color: rgba(212, 13, 31, .20);
  box-shadow: 0 24px 62px rgba(212, 13, 31, .10);
}

.faculty-photo {
  position: relative;
  height: 260px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(212, 13, 31, .16), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.faculty-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0, 11, 38, .76) 100%);
  pointer-events: none;
}

.faculty-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: .45s ease;
}

.faculty-card:hover .faculty-photo img {
  transform: scale(1.06);
}

.faculty-subject-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  box-shadow: 0 14px 30px rgba(212, 13, 31, .28);
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
}

.faculty-content {
  padding: 20px;
}

.faculty-content h3 {
  color: #071b4d;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 950;
  margin: 0 0 5px;
}

.faculty-role {
  display: block;
  color: var(--accent-red);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 16px;
}

.faculty-info-list {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.faculty-info-list div {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(7, 27, 77, .68);
  font-size: 12.6px;
  line-height: 1.45;
  font-weight: 700;
}

.faculty-info-list i {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  font-size: 12px;
  margin-top: -4px;
}

.faculty-info-list strong {
  color: #071b4d;
  font-weight: 950;
}

.faculty-video-btn {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  box-shadow: 0 16px 34px rgba(212, 13, 31, .24);
  font-size: 13px;
  font-weight: 950;
  transition: .25s ease;
}

.faculty-video-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(212, 13, 31, .30);
}

.faculty-preview-action {
  text-align: center;
  margin-top: 32px;
}

/* =========================
   FACULTY VIDEO MODAL
========================= */

.faculty-video-modal-content {
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 0%, rgba(212, 13, 31, .22), transparent 34%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 34px 90px rgba(0, 11, 38, .35);
}

.faculty-video-head {
  min-height: 68px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.faculty-video-head h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  margin: 0;
}

.faculty-video-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  display: grid;
  place-items: center;
}

.faculty-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.faculty-video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {
  .faculty-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faculty-photo {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .faculty-preview-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .faculty-card {
    border-radius: 24px;
  }

  .faculty-photo {
    height: 300px;
  }

  .faculty-content {
    padding: 18px;
  }

  .faculty-content h3 {
    font-size: 18px;
  }

  .faculty-video-modal-content {
    border-radius: 22px;
  }

  .faculty-video-head {
    padding: 14px 16px;
  }

  .faculty-video-head h3 {
    font-size: 15px;
  }
}

@media (max-width: 420px) {
  .faculty-photo {
    height: 250px;
  }
}





/* =========================================================
   WHY CHOOSE US — DARK PREMIUM REFERENCE DESIGN
========================================================= */

.kwc-section {
  --kwc-dark: #020b25;
  --kwc-navy: #05143d;
  --kwc-red: #f0203c;
  --kwc-blue: #4386f5;
  --kwc-green: #39d46b;
  --kwc-yellow: #f4ba28;
  --kwc-purple: #b156ec;
  --kwc-cyan: #26c9d8;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 78px 0 38px;

  color: #ffffff;

  background:
    radial-gradient(circle at 5% 10%, rgba(240, 32, 60, .21), transparent 27%),
    radial-gradient(circle at 94% 11%, rgba(34, 94, 210, .16), transparent 29%),
    linear-gradient(180deg, #06143a 0%, #020b25 100%);
}

/* BACKGROUND GRID */

.kwc-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, .021) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .021) 1px, transparent 1px);

  background-size: 42px 42px;
}

/* BACKGROUND GLOW */

.kwc-glow {
  position: absolute;
  z-index: -2;

  border-radius: 50%;

  filter: blur(48px);
  pointer-events: none;
}

.kwc-glow-one {
  width: 370px;
  height: 370px;

  top: 60px;
  left: -220px;

  background: rgba(240, 32, 60, .28);
}

.kwc-glow-two {
  width: 420px;
  height: 420px;

  right: -230px;
  bottom: 100px;

  background: rgba(38, 102, 224, .17);
}

.kwc-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */

.kwc-heading {
  max-width: 1080px;

  margin: 0 auto 37px;

  text-align: center;
}

.kwc-heading-badge {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 18px;
  padding: 10px 20px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(240, 32, 60, .13),
      rgba(255, 255, 255, .045)
    );

  border: 1px solid rgba(240, 32, 60, .72);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, .17),
    inset 0 1px 0 rgba(255, 255, 255, .07);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.kwc-heading-badge i {
  color: #ff3e58;
  font-size: 16px;
}

/* H2 KO CONTROLLED/CHHOTA RAKHA HAI */

.kwc-heading h2 {
  max-width: 1050px;

  margin: 0 auto 16px;

  color: #ffffff;

  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.8px;
}

.kwc-heading h2 span {
  color: var(--kwc-red);
}

.kwc-heading p {
  max-width: 930px;

  margin: 0 auto;

  color: rgba(255, 255, 255, .74);

  font-size: 15px;
  line-height: 1.72;
  font-weight: 600;
}

/* =========================================================
   CARDS GRID
========================================================= */

.kwc-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* =========================================================
   CARD BASE
========================================================= */

.kwc-card {
  --kwc-card-color: #f0203c;
  --kwc-card-soft: rgba(240, 32, 60, .14);

  position: relative;
  min-width: 0;
  min-height: 345px;
  overflow: hidden;

  display: flex;
  flex-direction: column;

  padding: 29px;

  border-radius: 23px;

  background:
    radial-gradient(circle at 14% 9%, var(--kwc-card-soft), transparent 30%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .07),
      rgba(255, 255, 255, .027)
    );

  border: 1px solid rgba(255, 255, 255, .17);

  box-shadow:
    0 23px 60px rgba(0, 0, 0, .21),
    inset 0 1px 0 rgba(255, 255, 255, .065);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.kwc-card::before {
  content: "";

  position: absolute;

  width: 160px;
  height: 160px;

  top: -90px;
  right: -85px;

  border-radius: 50%;

  background: var(--kwc-card-soft);

  pointer-events: none;
}

.kwc-card:hover {
  transform: translateY(-7px);

  border-color: var(--kwc-card-color);

  box-shadow:
    0 32px 78px rgba(0, 0, 0, .29),
    0 0 34px var(--kwc-card-soft),
    inset 0 1px 0 rgba(255, 255, 255, .075);
}

/* CARD THEMES */

.kwc-card-red {
  --kwc-card-color: #f23650;
  --kwc-card-soft: rgba(242, 54, 80, .17);
}

.kwc-card-blue {
  --kwc-card-color: #5593ff;
  --kwc-card-soft: rgba(85, 147, 255, .17);
}

.kwc-card-green {
  --kwc-card-color: #4adb78;
  --kwc-card-soft: rgba(74, 219, 120, .15);
}

.kwc-card-yellow {
  --kwc-card-color: #f6bd2d;
  --kwc-card-soft: rgba(246, 189, 45, .15);
}

.kwc-card-purple {
  --kwc-card-color: #bd62f1;
  --kwc-card-soft: rgba(189, 98, 241, .16);
}

.kwc-card-cyan {
  --kwc-card-color: #35d2df;
  --kwc-card-soft: rgba(53, 210, 223, .16);
}

/* =========================================================
   CARD ICON
========================================================= */

.kwc-card-icon {
  position: relative;
  z-index: 2;

  width: 78px;
  height: 78px;

  display: grid;
  place-items: center;

  margin-bottom: 24px;

  border-radius: 50%;

  color: #ffffff;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .14), transparent 30%),
    rgba(5, 21, 60, .85);

  border: 1px solid var(--kwc-card-color);

  box-shadow:
    0 0 0 8px var(--kwc-card-soft),
    0 16px 38px rgba(0, 0, 0, .25);

  font-size: 32px;
}

.kwc-card-content {
  position: relative;
  z-index: 2;

  flex: 1;
}

.kwc-card h3 {
  margin: 0 0 10px;

  color: #ffffff;

  font-size: 21px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -.35px;
}

.kwc-card-line {
  width: 27px;
  height: 3px;

  display: block;

  margin-bottom: 15px;

  border-radius: 999px;

  background: var(--kwc-card-color);
}

.kwc-card p {
  margin: 0;

  color: rgba(255, 255, 255, .71);

  font-size: 13px;
  line-height: 1.58;
  font-weight: 600;
}

/* =========================================================
   CARD FOOTER
========================================================= */

.kwc-card-footer {
  position: relative;
  z-index: 2;

  min-height: 46px;

  display: flex;
  align-items: center;
  gap: 10px;

  margin-top: 23px;
  padding: 11px 14px;

  border-radius: 10px;

  color: var(--kwc-card-color);

  background: rgba(3, 13, 43, .44);

  border: 1px solid color-mix(
    in srgb,
    var(--kwc-card-color) 40%,
    transparent
  );

  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
}

.kwc-card-footer i {
  font-size: 16px;
}

.kwc-card-footer strong {
  color: inherit;
  font-weight: 900;
}

/* =========================================================
   STATISTICS
========================================================= */

.kwc-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));

  margin-top: 24px;
  padding: 22px 17px;

  border-radius: 21px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .065),
      rgba(255, 255, 255, .025)
    );

  border: 1px solid rgba(99, 117, 255, .47);

  box-shadow:
    0 23px 60px rgba(0, 0, 0, .20),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

.kwc-stat {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  padding: 7px 15px;

  border-right: 1px solid rgba(255, 255, 255, .13);
}

.kwc-stat:last-child {
  border-right: 0;
}

.kwc-stat-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;

  display: grid;
  place-items: center;

  font-size: 38px;
}

.kwc-stat-red .kwc-stat-icon {
  color: #ff3654;
}

.kwc-stat-yellow .kwc-stat-icon {
  color: #ffc12b;
}

.kwc-stat-blue .kwc-stat-icon {
  color: #4389ff;
}

.kwc-stat-green .kwc-stat-icon {
  color: #5cdf71;
}

.kwc-stat-purple .kwc-stat-icon {
  color: #c161f1;
}

.kwc-stat strong {
  display: block;

  color: #ffffff;

  font-size: 19px;
  line-height: 1.1;
  font-weight: 950;
}

.kwc-stat span {
  display: block;

  margin-top: 5px;

  color: rgba(255, 255, 255, .67);

  font-size: 9px;
  line-height: 1.3;
  font-weight: 650;
}

/* =========================================================
   ADMISSION CTA
========================================================= */

.kwc-admission {
  display: grid;
  grid-template-columns: 1.25fr 1px .85fr auto;
  align-items: center;
  gap: 27px;

  margin-top: 22px;
  padding: 19px 25px;

  border-radius: 20px;

  background:
    radial-gradient(circle at 9% 50%, rgba(240, 32, 60, .29), transparent 28%),
    linear-gradient(
      135deg,
      rgba(240, 32, 60, .13),
      rgba(255, 255, 255, .027)
    );

  border: 1px solid rgba(240, 32, 60, .63);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .055);
}

.kwc-admission-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.kwc-admission-icon {
  width: 66px;
  height: 66px;
  min-width: 66px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    linear-gradient(135deg, #f12543, #ad051c);

  box-shadow:
    0 17px 38px rgba(240, 32, 60, .31);

  font-size: 31px;
}

.kwc-admission-title h3 {
  margin: 0 0 5px;

  color: #ffffff;

  font-size: 24px;
  line-height: 1.15;
  font-weight: 950;
}

.kwc-admission-title p {
  margin: 0;

  color: rgba(255, 255, 255, .66);

  font-size: 11px;
  line-height: 1.35;
  font-weight: 650;
}

.kwc-admission-divider {
  width: 1px;
  height: 58px;

  background: rgba(255, 255, 255, .15);
}

.kwc-admission-phone {
  display: flex;
  align-items: center;
  gap: 13px;

  color: #ffffff;

  text-decoration: none;
}

.kwc-admission-phone > span {
  width: 54px;
  height: 54px;
  min-width: 54px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background: linear-gradient(135deg, #f12845, #bb071e);

  font-size: 24px;
}

.kwc-admission-phone small {
  display: block;

  margin-bottom: 5px;

  color: rgba(255, 255, 255, .67);

  font-size: 10px;
  line-height: 1;
  font-weight: 650;
}

.kwc-admission-phone strong {
  display: block;

  color: #ffffff;

  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

.kwc-apply-btn {
  min-width: 190px;
  min-height: 57px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  padding: 13px 23px;

  border-radius: 10px;

  color: #ffffff;

  background: linear-gradient(135deg, #ff1c42, #cc001f);

  box-shadow:
    0 16px 38px rgba(240, 32, 60, .32);

  text-decoration: none;

  font-size: 15px;
  font-weight: 950;

  transition: .25s ease;
}

.kwc-apply-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* =========================================================
   BOTTOM STRIP
========================================================= */

.kwc-bottom-strip {
  display: grid;
  grid-template-columns: 1fr 1px 1.2fr 1px auto;
  align-items: center;

  margin-top: 17px;
  padding: 14px 20px;

  border-radius: 16px;

  background: rgba(255, 255, 255, .035);

  border: 1px solid rgba(255, 255, 255, .13);
}

.kwc-bottom-item {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  color: rgba(255, 255, 255, .78);

  text-decoration: none;

  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
}

.kwc-bottom-item:hover {
  color: #ffffff;
}

.kwc-bottom-item i {
  color: var(--kwc-red);
  font-size: 18px;
}

.kwc-bottom-divider {
  width: 1px;
  height: 29px;

  background: rgba(255, 255, 255, .13);
}

.kwc-social-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.kwc-social-wrap > span {
  margin-right: 4px;

  color: rgba(255, 255, 255, .68);

  font-size: 10px;
  font-weight: 700;
}

.kwc-social-wrap a {
  width: 28px;
  height: 28px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background: rgba(255, 255, 255, .08);

  font-size: 14px;

  text-decoration: none;

  transition: .24s ease;
}

.kwc-social-wrap a:hover {
  transform: translateY(-3px);
  background: var(--kwc-red);
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .kwc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kwc-card {
    min-height: 320px;
  }

  .kwc-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .kwc-stat {
    justify-content: flex-start;

    border-right: 0;

    border-radius: 14px;

    background: rgba(255, 255, 255, .035);
  }

  .kwc-admission {
    grid-template-columns: 1fr auto;
  }

  .kwc-admission-divider {
    display: none;
  }

  .kwc-admission-phone {
    justify-self: end;
  }

  .kwc-apply-btn {
    grid-column: 1 / -1;
    width: 100%;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .kwc-heading h2 {
    font-size: 39px;
  }

  .kwc-admission {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kwc-admission-title,
  .kwc-admission-phone {
    justify-content: center;
    justify-self: center;
  }

  .kwc-bottom-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kwc-bottom-divider {
    width: 100%;
    height: 1px;
  }

  .kwc-bottom-item {
    justify-content: flex-start;
  }

  .kwc-social-wrap {
    justify-content: flex-start;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .kwc-section {
    padding: 54px 0 35px;
  }

  .kwc-heading {
    margin-bottom: 31px;
  }

  .kwc-heading-badge {
    min-height: 38px;

    padding: 9px 15px;

    font-size: 10px;
  }

  .kwc-heading h2 {
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -1px;
  }

  .kwc-heading p {
    font-size: 12.5px;
    line-height: 1.62;
  }

  .kwc-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kwc-card {
    min-height: auto;

    padding: 20px;

    border-radius: 21px;
  }

  .kwc-card-icon {
    width: 64px;
    height: 64px;

    margin-bottom: 18px;

    font-size: 26px;
  }

  .kwc-card h3 {
    font-size: 18px;
  }

  .kwc-card p {
    font-size: 12px;
    line-height: 1.55;
  }

  .kwc-card-footer {
    min-height: 42px;

    margin-top: 18px;

    font-size: 10.5px;
  }

  .kwc-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    padding: 13px;
  }

  .kwc-stat {
    min-height: 75px;
    padding: 10px;
  }

  .kwc-stat-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;

    font-size: 28px;
  }

  .kwc-stat strong {
    font-size: 15px;
  }

  .kwc-stat span {
    font-size: 8px;
  }

  .kwc-admission {
    padding: 19px 14px;

    border-radius: 19px;
  }

  .kwc-admission-title {
    flex-direction: column;
  }

  .kwc-admission-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;

    font-size: 27px;
  }

  .kwc-admission-title h3 {
    font-size: 20px;
  }

  .kwc-admission-phone strong {
    font-size: 19px;
  }

  .kwc-apply-btn {
    min-width: 0;
    min-height: 51px;
  }

  .kwc-bottom-strip {
    padding: 14px;

    border-radius: 15px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .kwc-heading h2 {
    font-size: 27px;
  }

  .kwc-stats {
    grid-template-columns: 1fr;
  }

  .kwc-card {
    text-align: center;
  }

  .kwc-card-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .kwc-card-line {
    margin-left: auto;
    margin-right: auto;
  }

  .kwc-card-footer {
    justify-content: center;
  }

  .kwc-admission-phone {
    flex-direction: column;
  }
}




/* =========================================================
   SCHOLARSHIP & FINANCIAL ASSISTANCE
   DARK PREMIUM REFERENCE DESIGN
========================================================= */

.ksf-section {
  --ksf-dark: #010a26;
  --ksf-navy: #061643;
  --ksf-card: #0b1d4d;
  --ksf-red: #e31a35;
  --ksf-red-dark: #aa051b;
  --ksf-blue: #367ce8;
  --ksf-green: #35c96d;
  --ksf-purple: #9144dc;
  --ksf-orange: #f09324;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 82px 0 64px;

  color: #ffffff;

  background:
    radial-gradient(circle at 7% 12%, rgba(227, 26, 53, .17), transparent 28%),
    radial-gradient(circle at 93% 10%, rgba(47, 102, 218, .18), transparent 30%),
    linear-gradient(180deg, #061643 0%, #010a26 100%);
}

.ksf-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);

  background-size: 44px 44px;
}

.ksf-glow {
  position: absolute;
  z-index: -2;

  border-radius: 50%;

  pointer-events: none;
  filter: blur(50px);
}

.ksf-glow-one {
  width: 390px;
  height: 390px;

  top: 30px;
  left: -220px;

  background: rgba(227, 26, 53, .23);
}

.ksf-glow-two {
  width: 430px;
  height: 430px;

  right: -230px;
  bottom: 120px;

  background: rgba(47, 102, 218, .18);
}

.ksf-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   TOP AREA
========================================================= */

.ksf-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 55px;
  align-items: center;

  max-width: 1120px;

  margin: 0 auto 34px;
}

.ksf-heading {
  min-width: 0;
}

.ksf-badge {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 24px;
  padding: 10px 19px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(227, 26, 53, .14),
      rgba(255, 255, 255, .045)
    );

  border: 1px solid rgba(227, 26, 53, .70);

  box-shadow:
    0 14px 35px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .07);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.ksf-badge i {
  color: #f23750;
}

.ksf-heading h2 {
  max-width: 750px;

  margin: 0 0 17px;

  color: #ffffff;

  font-size: clamp(34px, 5.5vw, 42px);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -2.7px;
}

.ksf-heading h2 span {
  display: block;
  color: var(--ksf-red);
}

.ksf-heading > p {
  max-width: 650px;

  margin: 0;

  color: rgba(255, 255, 255, .72);

  font-size: 18px;
  line-height: 1.6;
  font-weight: 600;
}

/* =========================================================
   50% CONCESSION CARD
========================================================= */

.ksf-concession-card {
  position: relative;
  overflow: hidden;

  min-height: 275px;

  padding: 25px 27px;

  border-radius: 23px;

  background:
    radial-gradient(circle at 10% 8%, rgba(227, 26, 53, .26), transparent 34%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .11),
      rgba(255, 255, 255, .035)
    );

  border: 1px solid rgba(255, 255, 255, .16);

  box-shadow:
    0 30px 75px rgba(0, 0, 0, .28),
    inset 0 1px 0 rgba(255, 255, 255, .07);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.ksf-concession-card::before {
  content: "";

  position: absolute;
  width: 180px;
  height: 180px;

  top: -95px;
  right: -90px;

  border-radius: 50%;

  background: rgba(50, 95, 198, .22);
}

.ksf-up-to {
  position: relative;
  z-index: 2;

  display: inline-flex;

  padding: 7px 12px;

  border-radius: 7px;

  color: #ffffff;

  background: linear-gradient(135deg, #f12a47, #bc071f);

  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.ksf-concession-card > strong {
  position: relative;
  z-index: 2;

  display: block;

  margin: 12px 0 0;

  color: #ffffff;

  font-size: 76px;
  line-height: .95;
  font-weight: 950;
  letter-spacing: -3px;
}

.ksf-concession-card h3 {
  position: relative;
  z-index: 2;

  margin: 10px 0 4px;

  color: #f3344d;

  font-size: 20px;
  line-height: 1.1;
  font-weight: 950;
  text-transform: uppercase;
}

.ksf-concession-card > p {
  position: relative;
  z-index: 2;

  margin: 0;

  color: rgba(255, 255, 255, .74);

  font-size: 12px;
  line-height: 1.4;
  font-weight: 750;
  text-transform: uppercase;
}

.ksf-concession-line {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 1px;

  margin: 16px 0;

  background: rgba(255, 255, 255, .17);
}

.ksf-document-note {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255, 255, 255, .82);

  font-size: 10px;
  line-height: 1.4;
  font-weight: 850;
  text-transform: uppercase;
}

.ksf-document-note i {
  color: #ffffff;
  font-size: 17px;
}

/* =========================================================
   MAIN PANEL
========================================================= */

.ksf-main-panel {
  max-width: 1120px;

  margin: 0 auto;
  padding: 30px;

  border-radius: 28px;

  background:
    radial-gradient(circle at 95% 5%, rgba(47, 102, 218, .08), transparent 30%),
    rgba(1, 11, 39, .58);

  border: 1px solid rgba(255, 255, 255, .10);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, .23),
    inset 0 1px 0 rgba(255, 255, 255, .04);
}

/* =========================================================
   SECTION TITLES
========================================================= */

.ksf-section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  margin-bottom: 24px;
}

.ksf-section-title > span {
  width: 75px;
  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(227, 26, 53, .92)
    );
}

.ksf-section-title > span:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(227, 26, 53, .92),
      transparent
    );
}

.ksf-section-title > i {
  color: var(--ksf-red);

  font-size: 7px;
}

.ksf-section-title h3 {
  margin: 0;

  color: #ffffff;

  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
}

/* =========================================================
   ELIGIBILITY CARDS
========================================================= */

.ksf-eligibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
}

.ksf-eligibility-card {
  --ksf-card-color: #e31a35;
  --ksf-card-soft: #fff0f3;

  min-width: 0;
  min-height: 165px;

  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 17px;
  align-items: center;

  padding: 20px;

  border-radius: 18px;

  color: #06143f;

  background: #ffffff;

  border: 1px solid rgba(255, 255, 255, .88);
  border-bottom: 4px solid var(--ksf-card-color);

  box-shadow:
    0 18px 42px rgba(0, 0, 0, .14);

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.ksf-eligibility-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 27px 58px rgba(0, 0, 0, .22);
}

.ksf-card-red {
  --ksf-card-color: #df1c34;
  --ksf-card-soft: #fff0f3;
}

.ksf-card-pink {
  --ksf-card-color: #f25d79;
  --ksf-card-soft: #fff0f4;
}

.ksf-card-purple {
  --ksf-card-color: #9541da;
  --ksf-card-soft: #f5edff;
}

.ksf-card-blue {
  --ksf-card-color: #3078e8;
  --ksf-card-soft: #edf4ff;
}

.ksf-card-green {
  --ksf-card-color: #2cbd62;
  --ksf-card-soft: #ebfaef;
}

.ksf-card-orange {
  --ksf-card-color: #ee8b17;
  --ksf-card-soft: #fff3e6;
}

.ksf-eligibility-icon {
  width: 68px;
  height: 68px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--ksf-card-color);

  background: var(--ksf-card-soft);

  font-size: 33px;
}

.ksf-eligibility-card h4 {
  margin: 0 0 9px;

  color: #071b4d;

  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
}

.ksf-eligibility-card p {
  margin: 0;

  color: rgba(7, 27, 77, .68);

  font-size: 12px;
  line-height: 1.5;
  font-weight: 650;
}

/* =========================================================
   PROCESS
========================================================= */

.ksf-process-title {
  margin-top: 34px;
}

.ksf-process-grid {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    45px
    minmax(0, 1fr)
    45px
    minmax(0, 1fr)
    45px
    minmax(0, 1fr);

  align-items: start;
  gap: 4px;
}

.ksf-process-card {
  position: relative;

  min-width: 0;

  text-align: center;
}

.ksf-step-number {
  position: absolute;
  z-index: 3;

  top: -9px;
  left: 50%;

  width: 34px;
  height: 34px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background: linear-gradient(135deg, var(--ksf-red), var(--ksf-red-dark));

  box-shadow: 0 10px 25px rgba(227, 26, 53, .28);

  font-size: 13px;
  line-height: 1;
  font-weight: 950;

  transform: translateX(-50%);
}

.ksf-process-icon {
  width: 100px;
  height: 100px;

  display: grid;
  place-items: center;

  margin: 10px auto 16px;

  border-radius: 50%;

  color: #ffffff;

  background: rgba(255, 255, 255, .035);

  border: 1px solid rgba(255, 255, 255, .24);

  font-size: 39px;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .055);
}

.ksf-process-card h4 {
  margin: 0 0 8px;

  color: #ffffff;

  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.ksf-process-card p {
  max-width: 190px;

  margin: 0 auto;

  color: rgba(255, 255, 255, .66);

  font-size: 10.5px;
  line-height: 1.5;
  font-weight: 600;
}

.ksf-process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 105px;

  color: rgba(175, 197, 255, .75);

  font-size: 24px;
}

/* =========================================================
   IMPORTANT NOTES
========================================================= */

.ksf-notes-box {
  margin-top: 31px;
  padding: 22px;

  border-radius: 18px;

  background: rgba(255, 255, 255, .035);

  border: 1px solid rgba(255, 255, 255, .14);
}

.ksf-notes-box > h3 {
  position: relative;

  margin: 0 0 19px;

  color: #ffffff;

  font-size: 20px;
  line-height: 1.2;
  font-weight: 950;
}

.ksf-notes-box > h3::after {
  content: "";

  display: block;

  width: 27px;
  height: 3px;

  margin-top: 7px;

  border-radius: 999px;

  background: var(--ksf-red);
}

.ksf-notes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ksf-note-item {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 5px 18px;

  border-right: 1px solid rgba(255, 255, 255, .13);
}

.ksf-note-item:last-child {
  border-right: 0;
}

.ksf-note-item > span {
  width: 43px;
  height: 43px;
  min-width: 43px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #f2344d;

  background: rgba(227, 26, 53, .12);

  font-size: 20px;
}

.ksf-note-item p {
  margin: 0;

  color: rgba(255, 255, 255, .76);

  font-size: 10px;
  line-height: 1.45;
  font-weight: 650;
}

/* =========================================================
   STATS
========================================================= */

.ksf-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-top: 19px;
  padding: 19px 15px;

  border-radius: 17px;

  background: rgba(255, 255, 255, .035);

  border: 1px solid rgba(255, 255, 255, .14);
}

.ksf-stat {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  padding: 5px 18px;

  border-right: 1px solid rgba(255, 255, 255, .13);
}

.ksf-stat:last-child {
  border-right: 0;
}

.ksf-stat > i {
  width: 50px;
  height: 50px;
  min-width: 50px;

  display: grid;
  place-items: center;

  font-size: 36px;
}

.ksf-stat-red > i {
  color: #f02b45;
}

.ksf-stat-blue > i {
  color: #397ff0;
}

.ksf-stat-green > i {
  color: #42d173;
}

.ksf-stat-orange > i {
  color: #f19224;
}

.ksf-stat strong {
  display: block;

  color: #ffffff;

  font-size: 20px;
  line-height: 1.1;
  font-weight: 950;
}

.ksf-stat span {
  display: block;

  margin-top: 4px;

  color: rgba(255, 255, 255, .65);

  font-size: 9px;
  line-height: 1.3;
  font-weight: 650;
}

/* =========================================================
   ADMISSION CTA
========================================================= */

.ksf-admission-box {
  max-width: 1120px;

  display: grid;
  grid-template-columns: 1.3fr 1px .8fr;
  gap: 30px;
  align-items: center;

  margin: 20px auto 0;
  padding: 24px 28px;

  border-radius: 24px;

  background:
    radial-gradient(circle at 7% 50%, rgba(227, 26, 53, .22), transparent 30%),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .06),
      rgba(255, 255, 255, .025)
    );

  border: 1px solid rgba(227, 26, 53, .62);

  box-shadow:
    0 26px 68px rgba(0, 0, 0, .24);
}

.ksf-admission-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ksf-admission-icon {
  width: 112px;
  height: 92px;
  min-width: 112px;

  display: grid;
  place-items: center;

  color: #ffffff;

  font-size: 59px;

  filter: drop-shadow(0 14px 20px rgba(227, 26, 53, .25));
}

.ksf-admission-left h3 {
  margin: 0 0 5px;

  color: #ffffff;

  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
}

.ksf-admission-left p {
  margin: 0;

  color: rgba(255, 255, 255, .66);

  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.ksf-admission-actions {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 16px;
}

.ksf-btn {
  min-height: 47px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 11px 20px;

  border-radius: 9px;

  border: 0;

  text-decoration: none;

  font-size: 12px;
  line-height: 1;
  font-weight: 900;

  cursor: pointer;

  transition: .25s ease;
}

.ksf-btn:hover {
  transform: translateY(-3px);
}

.ksf-btn-red {
  color: #ffffff;

  background: linear-gradient(135deg, #f02845, #c00620);

  box-shadow: 0 15px 35px rgba(227, 26, 53, .28);
}

.ksf-btn-red:hover {
  color: #ffffff;
}

.ksf-btn-outline {
  color: #ffffff;

  background: rgba(255, 255, 255, .025);

  border: 1px solid rgba(255, 255, 255, .28);
}

.ksf-btn-outline:hover {
  color: #ffffff;

  border-color: var(--ksf-red);
}

.ksf-admission-divider {
  width: 1px;
  height: 95px;

  background: rgba(255, 255, 255, .14);
}

/* CONTACT */

.ksf-admission-contact {
  display: grid;
  gap: 15px;
}

.ksf-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;

  color: #ffffff;

  text-decoration: none;
}

.ksf-contact-row > span {
  width: 44px;
  height: 44px;
  min-width: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background: linear-gradient(135deg, #f02845, #ba061d);

  font-size: 20px;
}

.ksf-contact-row small {
  display: block;

  margin-bottom: 5px;

  color: rgba(255, 255, 255, .63);

  font-size: 9px;
  line-height: 1;
  font-weight: 650;
}

.ksf-contact-row strong {
  display: block;

  color: #ffffff;

  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .ksf-heading h2 {
    font-size: 54px;
  }

  .ksf-eligibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ksf-notes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ksf-note-item {
    border-right: 0;

    border-radius: 13px;

    background: rgba(255, 255, 255, .025);
  }

  .ksf-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .ksf-stat {
    justify-content: flex-start;

    border-right: 0;

    border-radius: 13px;

    background: rgba(255, 255, 255, .025);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .ksf-top {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .ksf-heading h2,
  .ksf-heading > p {
    margin-left: auto;
    margin-right: auto;
  }

  .ksf-concession-card {
    width: min(100%, 340px);

    margin: 0 auto;
  }

  .ksf-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 20px;
  }

  .ksf-process-arrow {
    display: none;
  }

  .ksf-admission-box {
    grid-template-columns: 1fr;
  }

  .ksf-admission-divider {
    width: 100%;
    height: 1px;
  }

  .ksf-admission-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .ksf-section {
    padding: 54px 0 44px;
  }

  .ksf-top {
    gap: 28px;

    margin-bottom: 24px;
  }

  .ksf-badge {
    min-height: 38px;

    padding: 9px 14px;

    font-size: 9px;
  }

  .ksf-heading h2 {
    font-size: 36px;
    line-height: 1.06;
    letter-spacing: -1.4px;
  }

  .ksf-heading > p {
    font-size: 14px;
  }

  .ksf-concession-card {
    min-height: 240px;
    padding: 22px;
  }

  .ksf-concession-card > strong {
    font-size: 65px;
  }

  .ksf-main-panel {
    padding: 18px 14px;

    border-radius: 22px;
  }

  .ksf-section-title {
    gap: 8px;
  }

  .ksf-section-title > span {
    width: 28px;
  }

  .ksf-section-title h3 {
    font-size: 18px;
  }

  .ksf-eligibility-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .ksf-eligibility-card {
    min-height: 125px;

    grid-template-columns: 60px minmax(0, 1fr);
    gap: 13px;

    padding: 16px;
  }

  .ksf-eligibility-icon {
    width: 54px;
    height: 54px;

    font-size: 26px;
  }

  .ksf-eligibility-card h4 {
    font-size: 15px;
  }

  .ksf-eligibility-card p {
    font-size: 10.5px;
  }

  .ksf-process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .ksf-process-icon {
    width: 85px;
    height: 85px;

    font-size: 32px;
  }

  .ksf-process-card p {
    max-width: 260px;
  }

  .ksf-notes-grid {
    grid-template-columns: 1fr;
  }

  .ksf-note-item {
    padding: 11px;
  }

  .ksf-stats {
    grid-template-columns: 1fr;
  }

  .ksf-admission-box {
    padding: 20px 15px;

    border-radius: 20px;
  }

  .ksf-admission-left {
    flex-direction: column;

    text-align: center;
  }

  .ksf-admission-icon {
    width: 80px;
    height: 70px;
    min-width: 80px;

    font-size: 48px;
  }

  .ksf-admission-left h3 {
    font-size: 22px;
  }

  .ksf-admission-actions {
    display: grid;
    grid-template-columns: 1fr;

    width: 100%;
  }

  .ksf-btn {
    width: 100%;
  }

  .ksf-admission-contact {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .ksf-heading h2 {
    font-size: 31px;
  }

  .ksf-heading > p {
    font-size: 13px;
  }

  .ksf-section-title h3 {
    font-size: 16px;
  }

  .ksf-section-title > span {
    width: 16px;
  }

  .ksf-eligibility-card {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .ksf-eligibility-icon {
    margin: 0 auto;
  }

  .ksf-stat {
    padding: 10px;
  }

  .ksf-stat > i {
    width: 42px;
    height: 42px;
    min-width: 42px;

    font-size: 29px;
  }

  .ksf-stat strong {
    font-size: 17px;
  }
}





/* =========================================================
   AI LEARNING SECTION CSS - ULTRA PREMIUM RESPONSIVE
========================================================= */

.ai-learning-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(212, 13, 31, .07), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(7, 27, 77, .08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.ai-learning-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .035) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .75;
  pointer-events: none;
}

.ai-learning-section .container {
  position: relative;
  z-index: 2;
}

.ai-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(22px);
  pointer-events: none;
}

.ai-bg-orb-1 {
  width: 240px;
  height: 240px;
  left: -110px;
  top: 90px;
  background: rgba(212, 13, 31, .10);
}

.ai-bg-orb-2 {
  width: 300px;
  height: 300px;
  right: -140px;
  bottom: 60px;
  background: rgba(7, 27, 77, .08);
}

/* =========================
   AI CARD
========================= */

.ai-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 8%, rgba(212, 13, 31, .11), transparent 25%),
    linear-gradient(135deg, #ffffff 0%, #f2f5ff 100%);
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow:
    0 22px 60px rgba(0, 11, 38, .09),
    inset 0 1px 0 rgba(255, 255, 255, .88);
  padding: 40px;
}

.ai-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -82px;
  top: -82px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .08);
}

.ai-card::after {
  content: "";
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 0;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
  opacity: .55;
}

.ai-badge {
  position: relative;
  z-index: 2;
}

.ai-card h2 {
  position: relative;
  z-index: 2;
  color: var(--primary-dark);
  font-size: clamp(28px, 3.8vw, 38px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -.7px;
  margin: 0 0 15px;
}

.ai-card p {
  position: relative;
  z-index: 2;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.75;
  max-width: 690px;
  margin: 0;
}

/* =========================
   AI FEATURES
========================= */

.ai-features {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 26px;
}

.ai-feature {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 12px 30px rgba(0, 11, 38, .06);
  color: var(--primary-dark);
  font-size: 13.8px;
  line-height: 1.35;
  font-weight: 850;
  transition: .25s ease;
}

.ai-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 13, 31, .14);
  box-shadow: 0 18px 42px rgba(0, 11, 38, .10);
}

.ai-feature-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(212, 13, 31, .10);
  color: var(--accent-red);
  font-size: 18px;
}

/* =========================
   MINI POINTS
========================= */

.ai-mini-points {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.ai-mini-points div {
  padding: 15px 13px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 14%, rgba(212, 13, 31, .10), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 10px 28px rgba(0, 11, 38, .055);
}

.ai-mini-points strong {
  display: block;
  color: var(--primary-dark);
  font-size: 16px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 6px;
}

.ai-mini-points span {
  display: block;
  color: var(--text-muted);
  font-size: 11.5px;
  line-height: 1.3;
  font-weight: 800;
}

.ai-action {
  position: relative;
  z-index: 2;
  margin-top: 26px;
}

/* =========================
   AI VISUAL
========================= */

.ai-visual-wrap {
  position: relative;
  height: 100%;
  min-height: 100%;
  padding: 14px;
}

.ai-visual-wrap::before {
  content: "";
  position: absolute;
  inset: 46px 0 0 46px;
  border-radius: 34px;
  background: rgba(212, 13, 31, .10);
  z-index: -1;
}

.ai-visual {
  position: relative;
  height: 100%;
  min-height: 470px;
  overflow: hidden;
  border-radius: 32px;
  background: var(--light-gray);
  box-shadow:
    0 30px 75px rgba(0, 11, 38, .16),
    0 0 0 1px rgba(255, 255, 255, .70);
}

.ai-visual img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
  transition: .45s ease;
}

.ai-visual:hover img {
  transform: scale(1.06);
}

.ai-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 24px;
  pointer-events: none;
}

.ai-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 11, 38, .70), transparent 58%),
    radial-gradient(circle at 20% 20%, rgba(212, 13, 31, .18), transparent 28%);
}

/* =========================
   PHASE BADGE
========================= */

.phase-badge {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 4;
  background: rgba(255, 255, 255, .94);
  color: var(--primary-dark);
  padding: 17px 19px;
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
  border: 1px solid rgba(255, 255, 255, .72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.phase-badge strong {
  display: block;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
  color: var(--accent-red);
  margin-bottom: 5px;
}

.phase-badge span {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
}

/* =========================
   FLOATING CARD
========================= */

.ai-floating-card {
  position: absolute;
  top: 42px;
  right: 0;
  z-index: 5;
  max-width: 260px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .95);
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ai-floating-card>span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .20), transparent 28%),
    linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
  color: var(--white);
  font-size: 19px;
}

.ai-floating-card h4 {
  color: var(--primary-dark);
  font-size: 14.5px;
  line-height: 1.25;
  font-weight: 900;
  margin: 0 0 4px;
}

.ai-floating-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

/* =========================================================
   RESPONSIVE AI LEARNING SECTION
========================================================= */

@media (max-width: 1199px) {
  .ai-card {
    padding: 34px;
  }

  .ai-card h2 {
    font-size: clamp(28px, 3.8vw, 40px);
  }

  .ai-visual,
  .ai-visual img {
    min-height: 430px;
  }
}

@media (max-width: 991px) {
  .ai-learning-section {
    text-align: center;
  }

  .ai-card {
    max-width: 760px;
    margin: 0 auto;
  }

  .ai-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .ai-mini-points {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .ai-action {
    display: flex;
    justify-content: center;
  }

  .ai-visual-wrap {
    max-width: 620px;
    margin: 0 auto;
  }

  .ai-visual,
  .ai-visual img {
    min-height: 410px;
  }

  .ai-floating-card {
    right: 16px;
    top: 34px;
    text-align: left;
  }
}

@media (max-width: 767px) {
  .ai-learning-section {
    text-align: left;
  }

  .ai-card {
    padding: 24px;
    border-radius: 26px;
  }

  .ai-card h2 {
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1.16;
    letter-spacing: -.45px;
  }

  .ai-card p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .ai-features {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 22px;
  }

  .ai-feature {
    min-height: auto;
    padding: 13px;
    border-radius: 17px;
    font-size: 13.5px;
  }

  .ai-feature-icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
    border-radius: 13px;
  }

  .ai-mini-points {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .ai-mini-points div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 15px;
    border-radius: 16px;
  }

  .ai-mini-points strong {
    font-size: 15.5px;
    margin-bottom: 0;
  }

  .ai-mini-points span {
    font-size: 12px;
  }

  .ai-action .btn-main {
    width: 100%;
    min-height: 50px;
  }

  .ai-visual-wrap {
    padding: 0;
    margin-top: 4px;
  }

  .ai-visual-wrap::before {
    display: none;
  }

  .ai-visual {
    border-radius: 26px;
    min-height: auto;
  }

  .ai-visual::before {
    inset: 9px;
    border-radius: 19px;
  }

  .ai-visual img {
    min-height: 330px;
    height: 330px;
  }

  .phase-badge {
    left: 14px;
    bottom: 14px;
    padding: 13px 15px;
    border-radius: 17px;
  }

  .phase-badge strong {
    font-size: 18px;
  }

  .phase-badge span {
    font-size: 11px;
  }

  .ai-floating-card {
    position: relative;
    top: auto;
    right: auto;
    max-width: 100%;
    margin: -42px 14px 0;
    padding: 14px;
    border-radius: 19px;
  }

  .ai-floating-card>span {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .ai-card {
    padding: 20px;
    border-radius: 24px;
  }

  .ai-card h2 {
    font-size: clamp(23px, 7vw, 30px);
  }

  .ai-card p {
    font-size: 14px;
  }

  .ai-feature {
    font-size: 13px;
  }

  .ai-visual img {
    height: 285px;
    min-height: 285px;
  }

  .phase-badge {
    transform: scale(.92);
    transform-origin: left bottom;
  }

  .ai-floating-card {
    margin: -36px 10px 0;
  }
}








/* =========================================================
   RESULTS & ACHIEVEMENTS — IMAGE MATCH DESIGN
========================================================= */

.knj-results-section {
  --results-navy: #06194b;
  --results-red: #e21532;
  --results-red-dark: #b70620;
  --results-blue: #2879df;
  --results-green: #15aa50;
  --results-purple: #7632d2;
  --results-orange: #f3920b;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0;

  background:
    radial-gradient(
      circle at 5% 12%,
      rgba(226, 21, 50, .13),
      transparent 25%
    ),
    radial-gradient(
      circle at 95% 20%,
      rgba(40, 121, 223, .08),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fbfcff 48%,
      #f6f8fc 100%
    );
}

.knj-results-grid-pattern {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(7, 27, 77, .032) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(7, 27, 77, .032) 1px,
      transparent 1px
    );

  background-size: 44px 44px;
}

.knj-results-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}

.knj-results-glow-left {
  width: 360px;
  height: 360px;
  left: -190px;
  top: 80px;
  background: rgba(226, 21, 50, .15);
}

.knj-results-glow-right {
  width: 340px;
  height: 340px;
  right: -190px;
  top: 110px;
  background: rgba(40, 121, 223, .09);
}

.knj-results-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */

.knj-results-heading {
  position: relative;
  max-width: 940px;
  margin: 0 auto 46px;
  text-align: center;
}

.knj-results-badge {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  margin-bottom: 22px;
  border-radius: 999px;

  color: var(--results-red);
  background: rgba(226, 21, 50, .08);
  border: 1px solid rgba(226, 21, 50, .10);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.knj-results-heading h2 {
  max-width: 900px;
  margin: 0 auto 17px;

  color: var(--results-navy);

  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.07;
  letter-spacing: -2px;
  font-weight: 950;
}

.knj-results-heading h2 span {
  color: var(--results-red);
}

.knj-results-heading p {
  max-width: 760px;
  margin: 0 auto;

  color: rgba(7, 27, 77, .65);

  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
}

.knj-results-laurel {
  position: absolute;
  top: 64px;
  width: 105px;
  height: 145px;
  color: rgba(226, 21, 50, .43);
  font-size: 27px;
  pointer-events: none;
}

.knj-results-laurel::before,
.knj-results-laurel::after {
  content: "";
  position: absolute;
  width: 55px;
  height: 110px;
  border: 7px solid rgba(226, 21, 50, .38);
  border-top-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
}

.knj-results-laurel-left {
  left: -80px;
}

.knj-results-laurel-left::before {
  left: 0;
  transform: rotate(-12deg);
}

.knj-results-laurel-left i {
  position: absolute;
  left: -18px;
  top: 52px;
}

.knj-results-laurel-right {
  right: -80px;
}

.knj-results-laurel-right::before {
  right: 0;
  transform: rotate(12deg);
}

.knj-results-laurel-right i {
  position: absolute;
  right: -18px;
  top: 52px;
}

/* =========================================================
   CARDS GRID
========================================================= */

.knj-results-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.knj-result-card {
  --card-color: var(--results-red);
  --card-soft: rgba(226, 21, 50, .09);

  position: relative;
  min-width: 0;
  min-height: 410px;
  overflow: hidden;
  grid-column: span 2;

  padding: 26px;

  border-radius: 29px;

  background:
    radial-gradient(
      circle at 96% 2%,
      var(--card-soft),
      transparent 29%
    ),
    rgba(255, 255, 255, .96);

  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 24px 62px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .95);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.knj-result-card-wide {
  grid-column: span 3;
  min-height: 300px;
}

.knj-result-card:hover {
  transform: translateY(-8px);
  border-color: color-mix(in srgb, var(--card-color) 24%, transparent);
  box-shadow:
    0 34px 80px rgba(7, 27, 77, .15),
    inset 0 1px 0 rgba(255, 255, 255, .97);
}

.knj-result-card::before {
  content: "";
  position: absolute;
  right: -47px;
  top: -47px;
  width: 135px;
  height: 135px;
  border-radius: 0 0 0 100%;
  background: var(--card-soft);
  pointer-events: none;
}

.knj-result-card::after {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 68px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--card-color);
  opacity: .8;
}

/* CARD COLORS */

.knj-result-card-red {
  --card-color: #e21532;
  --card-soft: rgba(226, 21, 50, .09);
}

.knj-result-card-blue {
  --card-color: #2879df;
  --card-soft: rgba(40, 121, 223, .09);
}

.knj-result-card-green {
  --card-color: #15aa50;
  --card-soft: rgba(21, 170, 80, .09);
}

.knj-result-card-purple {
  --card-color: #7632d2;
  --card-soft: rgba(118, 50, 210, .09);
}

.knj-result-card-orange {
  --card-color: #f3920b;
  --card-soft: rgba(243, 146, 11, .09);
}

/* =========================================================
   NUMBER
========================================================= */

.knj-result-number {
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 3;

  color: rgba(226, 21, 50, .72);

  font-size: 28px;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 950;
}

/* =========================================================
   ICON
========================================================= */

.knj-result-card-head {
  position: relative;
  z-index: 3;
  margin-bottom: 22px;
}

.knj-result-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 28% 18%,
      rgba(255, 255, 255, .26),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--card-color) 88%, white),
      var(--card-color)
    );

  box-shadow:
    0 0 0 8px var(--card-soft),
    0 18px 40px color-mix(in srgb, var(--card-color) 24%, transparent);

  font-size: 29px;
  transition: .28s ease;
}

.knj-result-card:hover .knj-result-icon {
  transform: rotate(-5deg) scale(1.05);
}

/* =========================================================
   CONTENT
========================================================= */

.knj-result-content {
  position: relative;
  z-index: 3;
}

.knj-result-content h3 {
  margin: 0;

  color: var(--results-navy);

  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -.35px;
  font-weight: 950;
}

.knj-result-line {
  width: 36px;
  height: 3px;
  display: block;
  margin: 13px 0 16px;
  border-radius: 999px;
  background: var(--card-color);
}

.knj-result-content p {
  max-width: 330px;
  margin: 0;

  color: rgba(7, 27, 77, .68);

  font-size: 14px;
  line-height: 1.65;
  font-weight: 620;
}

.knj-wide-card-layout {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.knj-wide-card-layout .knj-result-card-head {
  margin: 0;
}

/* =========================================================
   CARD VISUALS
========================================================= */

.knj-result-visual {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

/* PODIUM */

.knj-podium-visual {
  left: 45px;
  right: 45px;
  bottom: 18px;
  height: 120px;
}

.knj-podium-column {
  position: absolute;
  bottom: 12px;
  width: 62px;
  border-radius: 10px 10px 2px 2px;
  background: linear-gradient(180deg, #f2465d, #cf0823);
  box-shadow: 0 14px 30px rgba(226, 21, 50, .23);
}

.knj-podium-small {
  height: 45px;
  left: 18px;
}

.knj-podium-large {
  height: 80px;
  left: 50%;
  transform: translateX(-50%);
}

.knj-podium-medium {
  height: 58px;
  right: 18px;
}

.knj-podium-star {
  position: absolute;
  left: 50%;
  top: -14px;
  transform: translateX(-50%);
  color: #f7b51b;
  font-size: 45px;
  filter: drop-shadow(0 12px 12px rgba(247, 181, 27, .25));
}

.knj-podium-visual::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 9px;
  border-radius: 999px;
  background: rgba(226, 21, 50, .23);
}

/* CHART */

.knj-chart-visual {
  left: 40px;
  right: 40px;
  bottom: 20px;
  height: 118px;
  border-bottom: 3px solid rgba(40, 121, 223, .18);
}

.knj-chart-bar {
  position: absolute;
  bottom: 0;
  width: 34px;
  border-radius: 7px 7px 0 0;
  background: linear-gradient(180deg, #54a0ff, #2879df);
  box-shadow: 0 12px 25px rgba(40, 121, 223, .18);
}

.knj-chart-visual .bar-one {
  left: 14%;
  height: 25px;
}

.knj-chart-visual .bar-two {
  left: 34%;
  height: 43px;
}

.knj-chart-visual .bar-three {
  left: 55%;
  height: 63px;
}

.knj-chart-visual .bar-four {
  left: 76%;
  height: 91px;
}

.knj-chart-arrow {
  position: absolute;
  right: 9%;
  top: 1px;
  color: #2879df;
  font-size: 44px;
  transform: rotate(-7deg);
}

/* TARGET */

.knj-target-visual {
  right: 35px;
  bottom: 16px;
  width: 135px;
  height: 135px;
}

.knj-target-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 13px solid;
}

.knj-target-visual .ring-one {
  width: 120px;
  height: 120px;
  border-color: rgba(21, 170, 80, .22);
}

.knj-target-visual .ring-two {
  width: 82px;
  height: 82px;
  border-color: rgba(21, 170, 80, .48);
}

.knj-target-visual .ring-three {
  width: 44px;
  height: 44px;
  border-color: #15aa50;
}

.knj-target-center {
  position: absolute;
  width: 15px;
  height: 15px;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  background: #15aa50;
}

.knj-target-arrow {
  position: absolute;
  top: -17px;
  right: -4px;
  color: #078b40;
  font-size: 49px;
  transform: rotate(-7deg);
}

/* SCHOLARSHIP */

.knj-scholarship-visual {
  right: 55px;
  bottom: 26px;
  width: 180px;
  height: 100px;
}

.knj-cap-top {
  position: absolute;
  right: 22px;
  top: 8px;
  width: 108px;
  height: 52px;
  background: linear-gradient(145deg, #6230be, #28136e);
  clip-path: polygon(50% 0, 100% 38%, 50% 76%, 0 38%);
}

.knj-cap-base {
  position: absolute;
  right: 52px;
  top: 53px;
  width: 52px;
  height: 20px;
  border-radius: 4px 4px 15px 15px;
  background: #4b239b;
}

.knj-cap-tassel {
  position: absolute;
  right: 18px;
  top: 38px;
  width: 3px;
  height: 43px;
  background: #f0b622;
}

.knj-cap-tassel::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: -5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #f0b622;
}

.knj-certificate {
  position: absolute;
  left: 10px;
  bottom: 2px;
  width: 78px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #e8ad18;
  background: #fff4c9;
  border: 2px solid #e5b834;
  font-size: 26px;
  transform: rotate(-6deg);
}

/* QUOTE */

.knj-quote-visual {
  right: 45px;
  bottom: 26px;
  width: 155px;
  height: 105px;
}

.knj-quote-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 115px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ed5570;
  background: #fff2f5;
  border: 2px solid rgba(226, 21, 50, .12);
  box-shadow: 0 18px 38px rgba(226, 21, 50, .12);
  font-size: 48px;
}

.knj-quote-box::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: -14px;
  border-style: solid;
  border-width: 16px 4px 0 18px;
  border-color: #fff2f5 transparent transparent transparent;
}

.knj-result-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--card-color);
  transform: rotate(45deg);
  opacity: .35;
}

.knj-result-spark.spark-one {
  left: 10px;
  top: 10px;
}

.knj-result-spark.spark-two {
  right: 12px;
  top: 22px;
}

/* =========================================================
   BOTTOM PANEL
========================================================= */

.knj-results-bottom-panel {
  display: grid;
  grid-template-columns: 1fr auto auto auto 1fr;
  gap: 30px;
  align-items: center;

  margin-top: 28px;
  padding: 24px 30px;

  border-radius: 27px;

  background:
    radial-gradient(
      circle at 7% 50%,
      rgba(226, 21, 50, .07),
      transparent 25%
    ),
    radial-gradient(
      circle at 93% 50%,
      rgba(226, 21, 50, .07),
      transparent 25%
    ),
    rgba(255, 255, 255, .94);

  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 23px 58px rgba(7, 27, 77, .09);
}

.knj-results-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.knj-results-trust-item-right {
  justify-content: flex-end;
}

.knj-results-trust-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--results-red);
  background: rgba(226, 21, 50, .08);

  font-size: 21px;
}

.knj-results-trust-item strong {
  display: block;
  margin-bottom: 3px;

  color: var(--results-navy);

  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.knj-results-trust-item span {
  display: block;

  color: rgba(7, 27, 77, .62);

  font-size: 11px;
  line-height: 1.3;
  font-weight: 650;
}

.knj-results-divider {
  width: 1px;
  height: 44px;
  background: rgba(7, 27, 77, .13);
}

.knj-results-button {
  min-width: 235px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  padding: 15px 27px;

  border-radius: 999px;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    #f11a39,
    #c40822
  );

  text-decoration: none;

  box-shadow:
    0 18px 42px rgba(226, 21, 50, .27);

  font-size: 17px;
  line-height: 1;
  font-weight: 950;

  transition: .25s ease;
}

.knj-results-button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow:
    0 24px 52px rgba(226, 21, 50, .34);
}

.knj-results-button i {
  transition: .25s ease;
}

.knj-results-button:hover i {
  transform: translateX(5px);
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {
  .knj-results-heading h2 {
    font-size: 42px;
  }

  .knj-results-laurel {
    display: none;
  }

  .knj-result-card {
    min-height: 390px;
  }

  .knj-result-card-wide {
    min-height: 285px;
  }

  .knj-results-bottom-panel {
    gap: 18px;
    padding: 22px;
  }

  .knj-results-button {
    min-width: 200px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .knj-results-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knj-result-card,
  .knj-result-card-wide {
    grid-column: span 1;
    min-height: 355px;
  }

  .knj-results-bottom-panel {
    grid-template-columns: 1fr 1fr;
  }

  .knj-results-divider {
    display: none;
  }

  .knj-results-button {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
  }

  .knj-results-trust-item-right {
    justify-content: flex-start;
  }

  .knj-result-visual {
    transform: scale(.85);
    transform-origin: right bottom;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .knj-results-section {
    padding: 58px 0;
  }

  .knj-results-heading {
    margin-bottom: 32px;
    text-align: center;
  }

  .knj-results-badge {
    min-height: 37px;
    padding: 9px 15px;
    margin-bottom: 16px;
    font-size: 10.5px;
  }

  .knj-results-heading h2 {
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .knj-results-heading h2 br {
    display: none;
  }

  .knj-results-heading p {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .knj-results-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .knj-result-card,
  .knj-result-card-wide {
    min-height: 310px;
    padding: 21px;
    border-radius: 23px;
  }

  .knj-result-card:hover {
    transform: none;
  }

  .knj-result-icon {
    width: 58px;
    height: 58px;
    font-size: 23px;
  }

  .knj-result-number {
    top: 17px;
    right: 18px;
    font-size: 25px;
  }

  .knj-result-content h3 {
    font-size: 18px;
  }

  .knj-result-content p {
    max-width: 100%;
    padding-right: 0;
    font-size: 13px;
    line-height: 1.6;
  }

  .knj-wide-card-layout {
    display: block;
  }

  .knj-wide-card-layout .knj-result-card-head {
    margin-bottom: 19px;
  }

  .knj-result-visual {
    opacity: .85;
    transform: scale(.72);
    transform-origin: right bottom;
  }

  .knj-podium-visual,
  .knj-chart-visual {
    left: 20px;
    right: 20px;
  }

  .knj-results-bottom-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 23px;
  }

  .knj-results-trust-item,
  .knj-results-trust-item-right {
    justify-content: flex-start;
  }

  .knj-results-button {
    grid-column: auto;
    grid-row: auto;
    min-width: 100%;
    min-height: 52px;
    font-size: 14px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .knj-results-heading h2 {
    font-size: 28px;
  }

  .knj-result-card,
  .knj-result-card-wide {
    min-height: 300px;
    padding: 18px;
    border-radius: 21px;
  }

  .knj-result-content h3 {
    font-size: 16px;
  }

  .knj-result-content p {
    font-size: 12.5px;
  }

  .knj-result-icon {
    width: 52px;
    height: 52px;
    font-size: 21px;
  }

  .knj-result-visual {
    transform: scale(.64);
  }

  .knj-results-trust-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
  }
}




/* =========================================================
   MEDIA HUB & SUCCESS STORIES — IMAGE MATCH DESIGN
========================================================= */

.knj-media-section {
  --media-navy: #06194b;
  --media-red: #dc102d;
  --media-red-dark: #ae071f;
  --media-blue: #166ad8;
  --media-purple: #7836d5;
  --media-green: #08a355;
  --media-orange: #f18a0c;
  --media-cyan: #0aa7b8;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0;

  background:
    radial-gradient(
      circle at 5% 10%,
      rgba(220, 16, 45, .13),
      transparent 26%
    ),
    radial-gradient(
      circle at 94% 14%,
      rgba(35, 113, 218, .09),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fafbfe 52%,
      #f2f6fb 100%
    );
}

.knj-media-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(7, 27, 77, .027) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(7, 27, 77, .027) 1px,
      transparent 1px
    );

  background-size: 45px 45px;
}

.knj-media-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}

.knj-media-glow-left {
  width: 380px;
  height: 380px;
  left: -210px;
  top: 80px;
  background: rgba(220, 16, 45, .15);
}

.knj-media-glow-right {
  width: 380px;
  height: 380px;
  right: -210px;
  top: 160px;
  background: rgba(22, 106, 216, .10);
}

.knj-media-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   HEADING
========================================================= */

.knj-media-heading {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.knj-media-badge {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 20px;
  margin-bottom: 21px;
  border-radius: 999px;

  color: var(--media-red);
  background: rgba(220, 16, 45, .08);
  border: 1px solid rgba(220, 16, 45, .11);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.knj-media-heading h2 {
  margin: 0 0 15px;

  color: var(--media-navy);

  font-size: clamp(36px, 4.8vw, 44px);
  line-height: 1.04;
  letter-spacing: -2.4px;
  font-weight: 950;
}

.knj-media-heading h2 span {
  color: var(--media-red);
}

.knj-media-heading p {
  margin: 0;

  color: rgba(7, 27, 77, .62);

  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

.knj-media-heading-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin-top: 17px;
}

.knj-media-heading-decoration span {
  width: 64px;
  height: 1px;
  background: rgba(220, 16, 45, .22);
}

.knj-media-heading-decoration i {
  color: var(--media-red);
  font-size: 11px;
}

/* =========================================================
   GRID
========================================================= */

.knj-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* =========================================================
   MEDIA CARD
========================================================= */

.knj-media-card {
  --card-color: var(--media-red);
  --card-soft: rgba(220, 16, 45, .10);

  position: relative;
  min-width: 0;
  min-height: 310px;
  overflow: hidden;

  padding: 25px;
  border-radius: 27px;

  background:
    radial-gradient(
      circle at 95% 4%,
      var(--card-soft),
      transparent 29%
    ),
    rgba(255, 255, 255, .97);

  border: 1px solid rgba(7, 27, 77, .09);

  box-shadow:
    0 22px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .95);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.knj-media-card:hover {
  transform: translateY(-8px);

  border-color:
    color-mix(
      in srgb,
      var(--card-color) 25%,
      transparent
    );

  box-shadow:
    0 32px 78px rgba(7, 27, 77, .15),
    inset 0 1px 0 rgba(255, 255, 255, .97);
}

.knj-media-card::before {
  content: "";
  position: absolute;
  right: -48px;
  top: -48px;
  width: 140px;
  height: 140px;
  border-radius: 0 0 0 100%;
  background: var(--card-soft);
  pointer-events: none;
}

.knj-media-card::after {
  content: "";
  position: absolute;
  left: 25px;
  bottom: 0;
  width: 62px;
  height: 3px;
  border-radius: 999px 999px 0 0;
  background: var(--card-color);
  opacity: .75;
}

.knj-media-card-red {
  --card-color: #dc102d;
  --card-soft: rgba(220, 16, 45, .09);
}

.knj-media-card-blue {
  --card-color: #166ad8;
  --card-soft: rgba(22, 106, 216, .09);
}

.knj-media-card-purple {
  --card-color: #7836d5;
  --card-soft: rgba(120, 54, 213, .09);
}

.knj-media-card-green {
  --card-color: #08a355;
  --card-soft: rgba(8, 163, 85, .09);
}

.knj-media-card-orange {
  --card-color: #f18a0c;
  --card-soft: rgba(241, 138, 12, .09);
}

.knj-media-card-cyan {
  --card-color: #0aa7b8;
  --card-soft: rgba(10, 167, 184, .09);
}

/* =========================================================
   CARD CONTENT
========================================================= */

.knj-media-card-content {
  position: relative;
  z-index: 3;
  max-width: 58%;
}

.knj-media-icon {
  width: 59px;
  height: 59px;
  display: grid;
  place-items: center;

  margin-bottom: 18px;
  border-radius: 16px;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 25% 18%,
      rgba(255, 255, 255, .25),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--card-color) 80%, white),
      var(--card-color)
    );

  box-shadow:
    0 15px 34px
    color-mix(in srgb, var(--card-color) 25%, transparent);

  font-size: 25px;
  transition: .28s ease;
}

.knj-media-card:hover .knj-media-icon {
  transform: rotate(-5deg) scale(1.05);
}

.knj-media-card h3 {
  margin: 0;

  color: var(--media-navy);

  font-size: 21px;
  line-height: 1.22;
  letter-spacing: -.35px;
  font-weight: 950;
}

.knj-media-line {
  width: 35px;
  height: 3px;
  display: block;
  margin: 12px 0 15px;
  border-radius: 999px;
  background: var(--card-color);
}

.knj-media-list {
  display: grid;
  gap: 9px;

  margin: 0 0 18px;
  padding: 0;

  list-style: none;
}

.knj-media-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;

  color: rgba(7, 27, 77, .76);

  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 650;
}

.knj-media-list i {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--card-color);
  font-size: 12px;
}

.knj-media-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--card-color);
  text-decoration: none;

  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.knj-media-link i {
  transition: .25s ease;
}

.knj-media-link:hover {
  color: var(--card-color);
}

.knj-media-link:hover i {
  transform: translateX(5px);
}

/* =========================================================
   CARD VISUALS
========================================================= */

.knj-media-visual {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 10px;
  width: 43%;
  height: 72%;
  pointer-events: none;
}

/* VIDEO WINDOW */

.knj-video-window {
  position: absolute;
  right: 0;
  bottom: 10px;

  width: 100%;
  height: 150px;

  overflow: hidden;
  border-radius: 12px;

  background:
    linear-gradient(
      145deg,
      #e9edf3,
      #cdd4de
    );

  box-shadow:
    0 18px 35px rgba(7, 27, 77, .13);
}

.knj-video-window-top {
  height: 25px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 9px;
  background: rgba(7, 27, 77, .06);
}

.knj-video-window-top i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(7, 27, 77, .22);
}

.knj-video-play {
  position: absolute;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%);

  width: 57px;
  height: 57px;
  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;
  background: linear-gradient(145deg, #f12a42, #c60822);

  box-shadow: 0 14px 30px rgba(220, 16, 45, .27);

  font-size: 31px;
}

.knj-video-progress {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 23px;

  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(7, 27, 77, .18);
}

.knj-video-progress i {
  display: block;
  width: 47%;
  height: 100%;
  background: var(--media-red);
}

.knj-video-time {
  position: absolute;
  left: 10px;
  bottom: 7px;

  color: rgba(7, 27, 77, .55);
  font-size: 8px;
  font-weight: 700;
}

/* MICROPHONE */

.knj-microphone {
  position: absolute;
  right: 24px;
  bottom: 0;
  width: 130px;
  height: 195px;
}

.knj-mic-head {
  position: absolute;
  left: 35px;
  top: 0;

  width: 68px;
  height: 105px;

  border-radius: 45px 45px 35px 35px;

  background:
    repeating-linear-gradient(
      45deg,
      #8d929b 0 3px,
      #c8ccd2 3px 6px
    );

  border: 4px solid #b5bac2;

  box-shadow:
    inset 0 0 20px rgba(0, 0, 0, .12),
    0 18px 30px rgba(7, 27, 77, .16);
}

.knj-mic-neck {
  position: absolute;
  left: 65px;
  top: 100px;

  width: 9px;
  height: 52px;
  border-radius: 10px;
  background: #979ca5;
}

.knj-mic-stand {
  position: absolute;
  left: 41px;
  top: 125px;

  width: 58px;
  height: 48px;

  border: 7px solid #a7abb3;
  border-top: 0;
  border-radius: 0 0 30px 30px;
}

.knj-mic-base {
  position: absolute;
  left: 25px;
  bottom: 4px;

  width: 90px;
  height: 13px;
  border-radius: 50%;
  background: linear-gradient(180deg, #c9cdd3, #9298a0);
}

/* SUCCESS VISUAL */

.knj-success-visual {
  overflow: hidden;
}

.knj-success-mountain {
  position: absolute;
  bottom: 0;
  background: rgba(120, 54, 213, .16);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.knj-success-visual .mountain-one {
  right: 0;
  width: 170px;
  height: 140px;
}

.knj-success-visual .mountain-two {
  right: 85px;
  width: 120px;
  height: 95px;
  opacity: .65;
}

.knj-success-person {
  position: absolute;
  right: 60px;
  bottom: 85px;

  color: #7250bd;
  font-size: 52px;
}

.knj-success-flag {
  position: absolute;
  right: 31px;
  bottom: 148px;

  color: #7b58c6;
  font-size: 33px;
}

/* NEWSPAPER */

.knj-newspaper {
  position: absolute;
  right: 7px;
  bottom: 6px;

  width: 180px;
  height: 160px;

  padding: 18px;
  border-radius: 10px;

  background:
    linear-gradient(145deg, #f7f8fa, #dfe4ea);

  box-shadow:
    0 18px 35px rgba(7, 27, 77, .12);

  transform: rotate(8deg);
}

.knj-news-title {
  display: block;
  margin-bottom: 10px;

  color: rgba(7, 27, 77, .20);
  font-size: 28px;
  font-weight: 950;
}

.knj-news-photo {
  width: 50px;
  height: 47px;
  display: grid;
  place-items: center;
  float: left;
  margin-right: 10px;

  border-radius: 5px;

  color: rgba(7, 27, 77, .34);
  background: rgba(7, 27, 77, .08);
}

.knj-news-row {
  display: block;
  height: 5px;
  margin-bottom: 7px;
  border-radius: 99px;
  background: rgba(7, 27, 77, .11);
}

.knj-news-row.row-one {
  width: 55%;
}

.knj-news-row.row-two {
  width: 48%;
}

.knj-news-row.row-three {
  width: 95%;
  clear: both;
  margin-top: 12px;
}

.knj-news-row.row-four {
  width: 77%;
}

/* PRESS */

.knj-press-visual {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.knj-press-mic {
  position: absolute;
  bottom: 12px;

  width: 62px;
  height: 140px;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: #9298a4;
  font-size: 51px;
}

.knj-press-mic small {
  margin-top: -4px;
  padding: 5px 7px;

  color: #ffffff;
  background: #8e95a1;

  font-size: 7px;
  font-weight: 900;
}

.press-mic-one {
  left: 3px;
  transform: rotate(-10deg);
}

.press-mic-two {
  left: 55px;
  z-index: 2;
}

.press-mic-three {
  right: 2px;
  transform: rotate(10deg);
}

/* GALLERY */

.knj-gallery-visual {
  right: 10px;
  bottom: 8px;
}

.knj-gallery-photo {
  position: absolute;

  width: 91px;
  height: 68px;

  display: grid;
  place-items: center;

  border: 6px solid #ffffff;
  border-radius: 7px;

  color: rgba(7, 27, 77, .55);
  background:
    linear-gradient(145deg, #eef2f8, #ced8e5);

  box-shadow:
    0 12px 24px rgba(7, 27, 77, .13);

  font-size: 23px;
}

.knj-gallery-visual .photo-one {
  left: 3px;
  top: 13px;
  transform: rotate(-7deg);
}

.knj-gallery-visual .photo-two {
  right: 1px;
  top: 2px;
  transform: rotate(7deg);
}

.knj-gallery-visual .photo-three {
  left: 8px;
  bottom: 3px;
  transform: rotate(4deg);
}

.knj-gallery-visual .photo-four {
  right: 1px;
  bottom: 6px;
  transform: rotate(-5deg);
}

/* =========================================================
   STATS PANEL
========================================================= */

.knj-media-stats-panel {
  display: grid;
  grid-template-columns:
    1.35fr auto
    .75fr auto
    .75fr auto
    .75fr
    1.05fr;

  align-items: center;
  gap: 22px;

  margin-top: 26px;
  padding: 22px 24px;

  border-radius: 24px;

  background: rgba(255, 255, 255, .96);

  border: 1px solid rgba(7, 27, 77, .09);

  box-shadow:
    0 22px 58px rgba(7, 27, 77, .09);
}

.knj-media-mission {
  display: flex;
  align-items: center;
  gap: 15px;
}

.knj-media-mission-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--media-navy);
  background: rgba(7, 27, 77, .07);

  font-size: 31px;
}

.knj-media-mission h3 {
  margin: 0 0 5px;

  color: var(--media-navy);

  font-size: 17px;
  line-height: 1.18;
  font-weight: 950;
}

.knj-media-mission h3 span {
  display: block;
  color: var(--media-red);
}

.knj-media-mission p {
  margin: 0;

  color: rgba(7, 27, 77, .63);

  font-size: 10.5px;
  line-height: 1.35;
  font-weight: 650;
}

.knj-media-divider {
  width: 1px;
  height: 52px;
  background: rgba(7, 27, 77, .13);
}

.knj-media-stat {
  display: flex;
  align-items: center;
  gap: 11px;
}

.knj-media-stat-icon {
  font-size: 32px;
}

.knj-media-stat-icon.stat-red {
  color: var(--media-red);
}

.knj-media-stat-icon.stat-blue {
  color: var(--media-blue);
}

.knj-media-stat-icon.stat-purple {
  color: var(--media-purple);
}

.knj-media-stat strong {
  display: block;

  color: var(--media-navy);

  font-size: 19px;
  line-height: 1;
  font-weight: 950;
}

.knj-media-stat span {
  display: block;
  margin-top: 5px;

  color: rgba(7, 27, 77, .62);

  font-size: 9.5px;
  line-height: 1.25;
  font-weight: 650;
}

.knj-media-call {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 13px 20px;
  border-radius: 17px;

  color: #ffffff;
  background: linear-gradient(
    135deg,
    #e61735,
    #bf071f
  );

  text-decoration: none;

  box-shadow:
    0 17px 38px rgba(220, 16, 45, .25);
}

.knj-media-call:hover {
  color: #ffffff;
}

.knj-media-call > span {
  font-size: 26px;
}

.knj-media-call small {
  display: block;
  margin-bottom: 4px;

  color: rgba(255, 255, 255, .88);

  font-size: 10px;
  font-weight: 700;
}

.knj-media-call strong {
  display: block;

  color: #ffffff;

  font-size: 22px;
  line-height: 1;
  font-weight: 950;
}

/* =========================================================
   TRUST STRIP
========================================================= */

.knj-media-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;

  margin-top: 20px;
  padding: 4px 0;
}

.knj-media-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 56px;
  padding: 8px 20px;

  border-right: 1px solid rgba(7, 27, 77, .13);
}

.knj-media-trust-item:last-child {
  border-right: 0;
}

.knj-media-trust-item > span {
  color: var(--media-red);
  font-size: 25px;
}

.knj-media-trust-item strong {
  display: block;

  color: var(--media-navy);

  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 950;
}

.knj-media-trust-item small {
  display: block;
  margin-top: 3px;

  color: rgba(7, 27, 77, .60);

  font-size: 10px;
  line-height: 1.3;
  font-weight: 650;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {
  .knj-media-card-content {
    max-width: 62%;
  }

  .knj-media-stats-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .knj-media-divider {
    display: none;
  }

  .knj-media-mission {
    grid-column: span 2;
  }

  .knj-media-call {
    grid-column: span 1;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .knj-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knj-media-heading h2 {
    font-size: 43px;
  }

  .knj-media-stats-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knj-media-mission,
  .knj-media-call {
    grid-column: span 2;
  }

  .knj-media-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knj-media-trust-item:nth-child(2) {
    border-right: 0;
  }

  .knj-media-trust-item {
    border-bottom: 1px solid rgba(7, 27, 77, .10);
  }

  .knj-media-trust-item:nth-child(3),
  .knj-media-trust-item:nth-child(4) {
    border-bottom: 0;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .knj-media-section {
    padding: 58px 0;
  }

  .knj-media-heading {
    margin-bottom: 31px;
  }

  .knj-media-badge {
    min-height: 37px;
    padding: 9px 14px;
    margin-bottom: 16px;
    font-size: 10.5px;
  }

  .knj-media-heading h2 {
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .knj-media-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  .knj-media-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .knj-media-card {
    min-height: 290px;
    padding: 21px;
    border-radius: 22px;
  }

  .knj-media-card:hover {
    transform: none;
  }

  .knj-media-card-content {
    max-width: 64%;
  }

  .knj-media-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 15px;
    border-radius: 14px;
    font-size: 22px;
  }

  .knj-media-card h3 {
    font-size: 18px;
  }

  .knj-media-list li {
    font-size: 11.5px;
  }

  .knj-media-link {
    font-size: 12px;
  }

  .knj-media-visual {
    right: 5px;
    width: 39%;
    transform: scale(.82);
    transform-origin: right bottom;
  }

  .knj-media-stats-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 19px;
    border-radius: 21px;
  }

  .knj-media-mission,
  .knj-media-call {
    grid-column: auto;
  }

  .knj-media-stat {
    padding: 11px;
    border-radius: 14px;
    background: rgba(7, 27, 77, .035);
  }

  .knj-media-call {
    width: 100%;
  }

  .knj-media-trust-strip {
    grid-template-columns: 1fr;
  }

  .knj-media-trust-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(7, 27, 77, .10);
  }

  .knj-media-trust-item:nth-child(3) {
    border-bottom: 1px solid rgba(7, 27, 77, .10);
  }

  .knj-media-trust-item:last-child {
    border-bottom: 0;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .knj-media-heading h2 {
    font-size: 28px;
  }

  .knj-media-card {
    min-height: 315px;
    padding: 18px;
  }

  .knj-media-card-content {
    max-width: 100%;
  }

  .knj-media-card h3 {
    font-size: 17px;
  }

  .knj-media-list {
    max-width: 65%;
  }

  .knj-media-visual {
    width: 42%;
    opacity: .75;
    transform: scale(.68);
  }

  .knj-media-link {
    position: absolute;
    left: 18px;
    bottom: 20px;
  }

  .knj-media-mission {
    align-items: flex-start;
  }

  .knj-media-mission-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    font-size: 25px;
  }

  .knj-media-call strong {
    font-size: 19px;
  }
}




/* =========================================================
   LIFE AT KHADKESHWAR ACADEMY GALLERY
   IMAGE-MATCH PREMIUM RESPONSIVE DESIGN
========================================================= */

.gallery-section {
  --gallery-navy: #061a49;
  --gallery-dark: #020d2b;
  --gallery-red: #d80d28;
  --gallery-red-dark: #ab061c;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 88px 0;

  background:
    radial-gradient(
      circle at 5% 13%,
      rgba(216, 13, 40, .13),
      transparent 25%
    ),
    radial-gradient(
      circle at 94% 18%,
      rgba(33, 94, 183, .09),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f9fbff 48%,
      #f2f6fb 100%
    );
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;

  background-image:
    linear-gradient(
      rgba(7, 27, 77, .027) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(7, 27, 77, .027) 1px,
      transparent 1px
    );

  background-size: 44px 44px;
  pointer-events: none;
}

.gallery-section .container {
  position: relative;
  z-index: 2;
}

.gallery-bg-shape {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(52px);
  pointer-events: none;
}

.gallery-bg-shape-1 {
  width: 340px;
  height: 340px;
  left: -190px;
  top: 70px;
  background: rgba(216, 13, 40, .16);
}

.gallery-bg-shape-2 {
  width: 380px;
  height: 380px;
  right: -210px;
  top: 140px;
  background: rgba(19, 76, 173, .10);
}

.gallery-dot-pattern {
  position: absolute;
  z-index: -2;
  right: 18px;
  top: 175px;
  width: 85px;
  height: 140px;
  opacity: .35;

  background-image:
    radial-gradient(
      circle,
      rgba(216, 13, 40, .35) 2px,
      transparent 2.5px
    );

  background-size: 13px 13px;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.gallery-title {
  max-width: 930px;
  margin: 0 auto 26px;
  text-align: center;
}

.gallery-section-badge {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 9px 17px;
  margin-bottom: 20px;
  border-radius: 999px;

  color: var(--gallery-red);
  background: rgba(216, 13, 40, .08);
  border: 1px solid rgba(216, 13, 40, .11);

  font-size: 11.5px;
  line-height: 1;
  font-weight: 900;
}

.gallery-title h2 {
  max-width: 850px;
  margin: 0 auto 17px;

  color: var(--gallery-navy);

  font-size: clamp(31px, 4vw, 45px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.gallery-title h2 span {
  display: block;
}

.gallery-title p {
  max-width: 760px;
  margin: 0 auto;

  color: rgba(7, 27, 77, .62);

  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
}

/* =========================================================
   TABS
========================================================= */

.gallery-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;

  margin-bottom: 31px;
}

.gallery-tab {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 12px 23px;
  border-radius: 999px;

  color: var(--gallery-navy);
  background: rgba(255, 255, 255, .96);

  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 13px 30px rgba(7, 27, 77, .08);

  font-size: 13px;
  line-height: 1;
  font-weight: 900;

  transition:
    transform .25s ease,
    color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}

.gallery-tab i {
  color: var(--gallery-red);
}

.gallery-tab.active,
.gallery-tab:hover {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--gallery-red),
      var(--gallery-red-dark)
    );

  border-color: transparent;

  box-shadow:
    0 17px 38px rgba(216, 13, 40, .25);

  transform: translateY(-2px);
}

.gallery-tab.active i,
.gallery-tab:hover i {
  color: #ffffff;
}

/* =========================================================
   GALLERY GRID
========================================================= */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.hidden-gallery {
  display: none;
}

/* =========================================================
   GALLERY CARD
========================================================= */

.gallery-item {
  position: relative;
  min-width: 0;
  height: 285px;
  overflow: hidden;

  border-radius: 25px;

  cursor: pointer;
  background: #dfe5ec;

  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 20px 52px rgba(7, 27, 77, .12);

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.gallery-item-large {
  grid-column: 1 / -1;
  height: 375px;
}

.gallery-item:hover {
  transform: translateY(-6px);

  box-shadow:
    0 29px 72px rgba(7, 27, 77, .17);
}

.gallery-item > img,
.gallery-item .video-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition:
    transform .55s ease,
    filter .55s ease;
}

.gallery-item:hover > img,
.gallery-item:hover .video-thumb {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.03);
}

/* CARD INNER BORDER */

.gallery-item::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 4;

  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 19px;

  pointer-events: none;
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  align-items: flex-end;
  gap: 12px;

  padding: 21px;

  color: #ffffff;

  background:
    linear-gradient(
      to top,
      rgba(0, 10, 37, .88) 0%,
      rgba(0, 10, 37, .48) 31%,
      rgba(0, 10, 37, .08) 67%,
      transparent 82%
    );

  pointer-events: none;
}

.gallery-content-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;

  display: grid;
  place-items: center;

  border-radius: 15px;

  color: #ffffff;
  font-size: 21px;

  box-shadow:
    0 13px 28px rgba(0, 0, 0, .25);
}

.gallery-icon-red {
  background: linear-gradient(145deg, #e3213e, #b60722);
}

.gallery-icon-blue {
  background: linear-gradient(145deg, #2673df, #1647a5);
}

.gallery-icon-green {
  background: linear-gradient(145deg, #28cf70, #079b4a);
}

.gallery-icon-yellow {
  background: linear-gradient(145deg, #ffcf22, #e49a00);
}

.gallery-icon-purple {
  background: linear-gradient(145deg, #9253e8, #6023b9);
}

.gallery-icon-indigo {
  background: linear-gradient(145deg, #5375ef, #293fa9);
}

.gallery-icon-cyan {
  background: linear-gradient(145deg, #20cfb4, #07977f);
}

.gallery-icon-orange {
  background: linear-gradient(145deg, #ff9c21, #e16700);
}

.gallery-icon-pink {
  background: linear-gradient(145deg, #ec4c8d, #b91860);
}

.gallery-icon-teal {
  background: linear-gradient(145deg, #13b9b8, #087e8d);
}

.gallery-overlay-content {
  min-width: 0;
}

.gallery-overlay h3 {
  margin: 0 0 4px;

  color: #ffffff;

  font-size: 18px;
  line-height: 1.2;
  font-weight: 950;

  text-shadow: 0 3px 15px rgba(0, 0, 0, .35);
}

.gallery-overlay p {
  margin: 0;

  color: rgba(255, 255, 255, .80);

  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 650;
}

/* =========================================================
   ZOOM BUTTON
========================================================= */

.gallery-zoom-btn {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 6;

  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  color: #ffffff;
  background: rgba(255, 255, 255, .22);

  border: 1px solid rgba(255, 255, 255, .30);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, .20);

  transition:
    transform .25s ease,
    background .25s ease;
}

.gallery-zoom-btn:hover {
  color: #ffffff;
  background: var(--gallery-red);
  border-color: var(--gallery-red);
  transform: scale(1.06);
}

/* =========================================================
   VIDEO PLAY BUTTON
========================================================= */

.play-btn {
  position: absolute;
  inset: 0;
  z-index: 6;

  width: 70px;
  height: 70px;

  display: grid;
  place-items: center;

  margin: auto;
  border-radius: 50%;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 28% 20%,
      rgba(255, 255, 255, .27),
      transparent 29%
    ),
    linear-gradient(
      145deg,
      var(--gallery-red),
      var(--gallery-red-dark)
    );

  box-shadow:
    0 20px 45px rgba(216, 13, 40, .38);

  font-size: 32px;

  transition: transform .25s ease;
}

.video-item:hover .play-btn {
  transform: scale(1.09);
}

/* =========================================================
   TRUST STRIP
========================================================= */

.gallery-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-top: 21px;
  padding: 18px 14px;

  border-radius: 22px;

  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(7, 27, 77, .09);

  box-shadow:
    0 18px 45px rgba(7, 27, 77, .08);
}

.gallery-trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  min-width: 0;
  padding: 7px 15px;

  border-right: 1px solid rgba(7, 27, 77, .12);
}

.gallery-trust-item:last-child {
  border-right: 0;
}

.gallery-trust-item > i {
  flex: 0 0 auto;

  color: var(--gallery-red);

  font-size: 25px;
}

.gallery-trust-item:nth-child(1) > i {
  color: #173d9f;
}

.gallery-trust-item:nth-child(2) > i {
  color: #d5122d;
}

.gallery-trust-item:nth-child(3) > i {
  color: #0caf58;
}

.gallery-trust-item:nth-child(4) > i {
  color: #7937cb;
}

.gallery-trust-item strong {
  display: block;

  color: var(--gallery-navy);

  font-size: 11.5px;
  line-height: 1.2;
  font-weight: 950;
}

.gallery-trust-item span {
  display: block;
  margin-top: 3px;

  color: rgba(7, 27, 77, .57);

  font-size: 9.5px;
  line-height: 1.35;
  font-weight: 650;
}

/* =========================================================
   ACTION
========================================================= */

.gallery-action {
  display: flex;
  justify-content: center;
  margin-top: 27px;
}

.gallery-action .btn-main {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 13px 24px;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 28px;

  background: rgba(0, 9, 35, .92);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.gallery-lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;

  width: min(980px, calc(100% - 100px));
  overflow: hidden;

  border-radius: 27px;

  background: #000000;
  border: 1px solid rgba(255, 255, 255, .15);

  box-shadow:
    0 35px 100px rgba(0, 0, 0, .55);
}

.lightbox-content img,
.lightbox-content video {
  width: 100%;
  height: min(76vh, 680px);
  display: block;

  object-fit: contain;
  background: #000000;
}

.lightbox-content video {
  display: none;
}

.lightbox-caption {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 17px;

  padding: 14px 17px;
  border-radius: 16px;

  color: #ffffff;
  background: rgba(0, 11, 38, .56);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lightbox-caption h4 {
  margin: 0;

  color: #ffffff;

  font-size: 15px;
  font-weight: 900;
}

.lightbox-close,
.lightbox-nav {
  width: 47px;
  height: 47px;

  display: grid;
  place-items: center;

  border-radius: 15px;

  color: #ffffff;
  background: rgba(255, 255, 255, .13);

  border: 1px solid rgba(255, 255, 255, .17);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    transform .25s ease,
    background .25s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  color: #ffffff;
  background: var(--gallery-red);
  border-color: var(--gallery-red);
}

.lightbox-close {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 100002;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  z-index: 100002;

  transform: translateY(-50%);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.05);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .gallery-title {
    max-width: 760px;
  }

  .gallery-title h2 {
    font-size: 38px;
  }

  .gallery-item {
    height: 260px;
  }

  .gallery-item-large {
    height: 345px;
  }

  .gallery-trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-trust-item:nth-child(2) {
    border-right: 0;
  }

  .gallery-trust-item:nth-child(1),
  .gallery-trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(7, 27, 77, .10);
  }
}

/* =========================================================
   MOBILE — SAME AS REFERENCE IMAGE
========================================================= */

@media (max-width: 767px) {
  .gallery-section {
    padding: 57px 0;
  }

  .gallery-section .container {
    max-width: 100%;
    padding-left: 11px;
    padding-right: 11px;
  }

  .gallery-title {
    max-width: 650px;
    margin-bottom: 22px;
    padding: 0 16px;
    text-align: center;
  }

  .gallery-section-badge {
    min-height: 35px;
    padding: 8px 13px;
    margin-bottom: 17px;

    font-size: 9.5px;
  }

  .gallery-title h2 {
    max-width: 600px;

    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .gallery-title p {
    max-width: 570px;

    font-size: 12.5px;
    line-height: 1.65;
  }

  .gallery-tabs {
    gap: 9px;
    margin-bottom: 25px;
  }

  .gallery-tab {
    min-height: 44px;
    padding: 11px 21px;

    font-size: 12px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }

  .gallery-item {
    height: 210px;
    border-radius: 20px;
  }

  .gallery-item-large {
    grid-column: 1 / -1;
    height: 270px;
  }

  .gallery-item::before {
    inset: 6px;
    border-radius: 15px;
  }

  .gallery-overlay {
    gap: 8px;
    padding: 13px;
  }

  .gallery-content-icon {
    width: 43px;
    height: 43px;
    min-width: 43px;

    border-radius: 12px;

    font-size: 18px;
  }

  .gallery-overlay h3 {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .gallery-overlay p {
    font-size: 9.5px;
    line-height: 1.3;
  }

  .gallery-item-large .gallery-overlay h3 {
    font-size: 16px;
  }

  .gallery-item-large .gallery-overlay p {
    font-size: 10.5px;
  }

  .gallery-zoom-btn {
    right: 11px;
    top: 11px;

    width: 36px;
    height: 36px;

    border-radius: 11px;

    font-size: 13px;
  }

  .play-btn {
    width: 59px;
    height: 59px;

    font-size: 27px;
  }

  .gallery-trust-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));

    margin-top: 17px;
    padding: 13px 5px;
    border-radius: 17px;
  }

  .gallery-trust-item {
    min-width: 0;
    flex-direction: column;
    gap: 5px;

    padding: 5px 7px;
    text-align: center;

    border-bottom: 0 !important;
    border-right: 1px solid rgba(7, 27, 77, .10);
  }

  .gallery-trust-item:nth-child(2) {
    border-right: 1px solid rgba(7, 27, 77, .10);
  }

  .gallery-trust-item:last-child {
    border-right: 0;
  }

  .gallery-trust-item > i {
    font-size: 20px;
  }

  .gallery-trust-item strong {
    font-size: 8.5px;
  }

  .gallery-trust-item span {
    font-size: 7.2px;
    line-height: 1.25;
  }

  .gallery-action {
    margin-top: 20px;
  }

  .gallery-action .btn-main {
    width: 100%;
  }

  .gallery-lightbox {
    padding: 12px;
  }

  .lightbox-content {
    width: 100%;
    border-radius: 20px;
  }

  .lightbox-content img,
  .lightbox-content video {
    height: 72vh;
  }

  .lightbox-close {
    right: 13px;
    top: 13px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .lightbox-prev {
    left: 12px;
  }

  .lightbox-next {
    right: 12px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {
  .gallery-section .container {
    padding-left: 9px;
    padding-right: 9px;
  }

  .gallery-title {
    padding: 0 10px;
  }

  .gallery-title h2 {
    font-size: 27px;
  }

  .gallery-title p {
    font-size: 11.5px;
  }

  .gallery-item {
    height: 185px;
    border-radius: 18px;
  }

  .gallery-item-large {
    height: 245px;
  }

  .gallery-overlay {
    padding: 11px;
  }

  .gallery-content-icon {
    width: 37px;
    height: 37px;
    min-width: 37px;

    border-radius: 10px;

    font-size: 15px;
  }

  .gallery-overlay h3 {
    font-size: 12.5px;
  }

  .gallery-overlay p {
    font-size: 8.5px;
  }

  .gallery-item-large .gallery-overlay h3 {
    font-size: 15px;
  }

  .gallery-item-large .gallery-overlay p {
    font-size: 9.5px;
  }

  .gallery-zoom-btn {
    width: 33px;
    height: 33px;
    right: 9px;
    top: 9px;
  }

  .gallery-tab {
    min-width: 105px;
    padding: 10px 16px;
  }

  .gallery-trust-item {
    padding-left: 3px;
    padding-right: 3px;
  }

  .gallery-trust-item strong {
    font-size: 7.8px;
  }

  .gallery-trust-item span {
    font-size: 6.7px;
  }
}





/* =========================================================
   FOUNDER VISION — REFERENCE IMAGE MATCH
========================================================= */

.kfv-section {
  --kfv-navy: #03113b;
  --kfv-navy-light: #0b245d;
  --kfv-red: #e1122d;
  --kfv-red-dark: #af051c;
  --kfv-green: #149942;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 76px 0;

  background:
    radial-gradient(circle at 8% 12%, rgba(225, 18, 45, .12), transparent 27%),
    radial-gradient(circle at 93% 10%, rgba(0, 42, 111, .16), transparent 30%),
    linear-gradient(180deg, #07143d 0%, #03113b 100%);
}

.kfv-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);

  background-size: 42px 42px;
}

.kfv-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
}

.kfv-glow-one {
  width: 380px;
  height: 380px;
  left: -210px;
  top: 80px;
  background: rgba(225, 18, 45, .23);
}

.kfv-glow-two {
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: 50px;
  background: rgba(225, 18, 45, .13);
}

/* =========================================================
   MAIN WRAPPER
========================================================= */

.kfv-wrapper {
  position: relative;
  overflow: hidden;

  max-width: 1180px;
  margin: 0 auto;
  padding: 42px;

  border-radius: 34px;

  background:
    radial-gradient(circle at 95% 5%, rgba(225, 18, 45, .16), transparent 30%),
    linear-gradient(145deg, rgba(4, 18, 58, .98), rgba(3, 19, 61, .98));

  border: 1px solid rgba(255, 255, 255, .12);

  box-shadow:
    0 38px 100px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.kfv-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);

  background-size: 36px 36px;
}

/* =========================================================
   TOP AREA
========================================================= */

.kfv-top {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 43% 57%;
  gap: 40px;
  align-items: center;
}

/* LEFT INTRO */

.kfv-intro {
  padding: 20px 0 20px 4px;
}

.kfv-badge {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  margin-bottom: 22px;
  padding: 10px 18px;

  border-radius: 999px;

  color: #ffffff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .20);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.kfv-badge i {
  color: #f3324c;
}

.kfv-intro h2 {
  max-width: 470px;
  margin: 0;

  color: #ffffff;

  font-size: clamp(40px, 5vw, 42px);
  line-height: .98;
  font-weight: 950;
  letter-spacing: -2.7px;
}

.kfv-intro h2 span {
  display: block;
  color: #ef233c;
}

.kfv-title-divider {
  display: flex;
  align-items: center;
  gap: 16px;

  margin: 24px 0;
}

.kfv-title-divider span {
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .38);
}

.kfv-title-divider i {
  color: #e51530;
  font-size: 12px;
}

.kfv-intro p {
  max-width: 470px;
  margin: 0;

  color: rgba(255, 255, 255, .76);

  font-size: 17px;
  line-height: 1.75;
  font-weight: 600;
}

/* =========================================================
   FOUNDER IMAGE
========================================================= */

.kfv-founder-visual {
  position: relative;
}

.kfv-founder-frame {
  position: relative;
  min-height: 505px;
  overflow: hidden;

  border-radius: 34px;

  background: #ffffff;

  border: 1px solid rgba(255, 255, 255, .20);

  box-shadow:
    0 28px 75px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .20);
}

.kfv-founder-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 4;

  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 25px;

  pointer-events: none;
}

.kfv-founder-frame img {
  width: 100%;
  height: 505px;

  display: block;

  object-fit: cover;
  object-position: center top;
}

.kfv-founder-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg, transparent 52%, rgba(0, 9, 40, .80)),
    radial-gradient(circle at 90% 10%, rgba(225, 18, 45, .12), transparent 31%);
}

.kfv-founder-name-card {
  position: absolute;
  z-index: 5;

  left: 24px;
  right: 24px;
  bottom: 22px;

  padding: 22px 24px;

  border-radius: 25px;

  color: #ffffff;

  background:
    radial-gradient(circle at 95% 10%, rgba(255, 255, 255, .17), transparent 32%),
    linear-gradient(135deg, rgba(225, 18, 45, .97), rgba(166, 5, 24, .95));

  border: 1px solid rgba(255, 255, 255, .19);

  box-shadow: 0 21px 55px rgba(225, 18, 45, .36);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.kfv-founder-name-card > span {
  display: block;
  margin-bottom: 8px;

  color: rgba(255, 255, 255, .82);

  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.kfv-founder-name-card h3 {
  margin: 0 0 5px;

  color: #ffffff;

  font-size: 29px;
  line-height: 1.1;
  font-weight: 950;
}

.kfv-founder-name-card p {
  margin: 0 0 8px;

  color: rgba(255, 255, 255, .82);

  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
}

.kfv-founder-name-card strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 950;
}

/* =========================================================
   FOUR MAIN FEATURES
========================================================= */

.kfv-primary-features {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;

  margin-top: 30px;
}

.kfv-primary-card {
  min-height: 155px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 20px;

  border-radius: 22px;

  text-align: center;

  background:
    linear-gradient(145deg, rgba(255, 255, 255, .105), rgba(255, 255, 255, .055));

  border: 1px solid rgba(255, 255, 255, .16);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .07),
    0 17px 40px rgba(0, 0, 0, .13);

  transition: .27s ease;
}

.kfv-primary-card:hover {
  transform: translateY(-6px);
  border-color: rgba(225, 18, 45, .45);
  background: rgba(225, 18, 45, .10);
}

.kfv-primary-icon {
  width: 58px;
  height: 58px;

  display: grid;
  place-items: center;

  margin-bottom: 14px;

  color: #ef233c;

  font-size: 33px;
}

.kfv-primary-card h3 {
  max-width: 170px;
  margin: 0;

  color: #ffffff;

  font-size: 17px;
  line-height: 1.35;
  font-weight: 900;
}

/* =========================================================
   QUOTE BOX
========================================================= */

.kfv-quote-box {
  position: relative;
  z-index: 2;

  margin-top: 22px;
  padding: 48px 80px 35px;

  border-radius: 25px;

  text-align: center;

  background:
    radial-gradient(circle at 90% 10%, rgba(225, 18, 45, .12), transparent 30%),
    rgba(255, 255, 255, .065);

  border: 1px solid rgba(255, 255, 255, .14);
}

.kfv-quote-label {
  position: absolute;
  top: 0;
  left: 50%;

  min-height: 35px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 18px;

  border-radius: 0 0 16px 16px;

  color: #ffffff;
  background: linear-gradient(135deg, #df102b, #b3051b);

  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;

  transform: translateX(-50%);
}

.kfv-quote-box blockquote {
  max-width: 830px;
  margin: 0 auto;

  color: #ffffff;

  font-size: 26px;
  line-height: 1.45;
  font-weight: 800;
}

.kfv-quote-left,
.kfv-quote-right {
  position: absolute;

  color: #ec1b36;

  font-size: 47px;
}

.kfv-quote-left {
  left: 42px;
  top: 48px;
}

.kfv-quote-right {
  right: 42px;
  bottom: 35px;

  transform: rotate(180deg);
}

.kfv-quote-line {
  width: 70px;
  height: 3px;

  display: block;

  margin: 22px auto 0;

  border-radius: 999px;

  background: #e51530;
}

/* =========================================================
   COMMITMENT TITLE
========================================================= */

.kfv-commitment-title {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin: 28px 0 20px;
}

.kfv-commitment-title span {
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: #e51530;
}

.kfv-commitment-title h3 {
  margin: 0;

  color: #ffffff;

  font-size: 20px;
  line-height: 1.2;
  font-weight: 950;
}

/* =========================================================
   SIX COMMITMENT CARDS
========================================================= */

.kfv-commitment-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.kfv-commitment-card {
  min-height: 106px;

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 17px;

  border-radius: 19px;

  background:
    linear-gradient(145deg, rgba(255, 255, 255, .095), rgba(255, 255, 255, .05));

  border: 1px solid rgba(255, 255, 255, .12);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);

  transition: .25s ease;
}

.kfv-commitment-card:hover {
  transform: translateY(-4px);
  background: rgba(225, 18, 45, .12);
  border-color: rgba(225, 18, 45, .33);
}

.kfv-commitment-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background: linear-gradient(135deg, #e51632, #af051b);

  box-shadow: 0 14px 30px rgba(225, 18, 45, .23);

  font-size: 21px;
}

.kfv-commitment-card h4 {
  margin: 0 0 6px;

  color: #ffffff;

  font-size: 14px;
  line-height: 1.25;
  font-weight: 950;
}

.kfv-commitment-card p {
  margin: 0;

  color: rgba(255, 255, 255, .60);

  font-size: 11px;
  line-height: 1.4;
  font-weight: 650;
}

/* =========================================================
   COMPANY / LOCATION
========================================================= */

.kfv-meta-panel {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;

  margin-top: 22px;
  padding: 24px 27px;

  border-radius: 23px;

  background:
    linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .045));

  border: 1px solid rgba(255, 255, 255, .13);
}

.kfv-meta-item {
  display: flex;
  align-items: center;
  gap: 17px;
}

.kfv-meta-icon {
  width: 65px;
  height: 65px;
  min-width: 65px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #b7cbff;

  border: 1px solid rgba(183, 203, 255, .38);

  font-size: 28px;
}

.kfv-meta-item small {
  display: block;

  margin-bottom: 6px;

  color: #80a8ef;

  font-size: 12px;
  font-weight: 850;
}

.kfv-meta-item strong {
  display: block;

  max-width: 300px;

  color: #ffffff;

  font-size: 14px;
  line-height: 1.45;
  font-weight: 850;
}

.kfv-meta-divider {
  width: 1px;
  height: 68px;

  background: rgba(255, 255, 255, .14);
}

/* =========================================================
   ACTION BUTTONS
========================================================= */

.kfv-actions {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 14px;

  margin-top: 24px;
}

.kfv-btn {
  min-height: 65px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  padding: 14px 20px;

  border-radius: 19px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 950;

  transition: .25s ease;
}

.kfv-btn:hover {
  transform: translateY(-3px);
}

.kfv-btn-light {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
}

.kfv-btn-light:hover {
  color: #ffffff;
}

.kfv-btn-red {
  color: #ffffff;
  background: linear-gradient(135deg, #e51632, #b3051b);
  box-shadow: 0 17px 40px rgba(225, 18, 45, .25);
}

.kfv-btn-red:hover {
  color: #ffffff;
}

.kfv-btn-green {
  color: #ffffff;
  background: linear-gradient(135deg, #1fad52, #117a38);
  box-shadow: 0 17px 40px rgba(20, 153, 66, .22);
}

.kfv-btn-green:hover {
  color: #ffffff;
}

.kfv-btn-green > i {
  font-size: 20px;
}

.kfv-btn-green span {
  display: flex;
  flex-direction: column;
}

.kfv-btn-green small {
  color: rgba(255, 255, 255, .75);
  font-size: 9px;
  line-height: 1;
}

.kfv-btn-green strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .kfv-wrapper {
    padding: 34px;
  }

  .kfv-top {
    grid-template-columns: 42% 58%;
    gap: 28px;
  }

  .kfv-intro h2 {
    font-size: 49px;
  }

  .kfv-intro p {
    font-size: 15px;
  }

  .kfv-founder-frame,
  .kfv-founder-frame img {
    min-height: 460px;
    height: 460px;
  }

  .kfv-primary-card h3 {
    font-size: 15px;
  }

  .kfv-quote-box blockquote {
    font-size: 23px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .kfv-wrapper {
    max-width: 760px;
  }

  .kfv-top {
    grid-template-columns: 1fr;
  }

  .kfv-intro {
    text-align: center;
  }

  .kfv-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .kfv-intro h2,
  .kfv-intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .kfv-title-divider {
    justify-content: center;
  }

  .kfv-founder-frame,
  .kfv-founder-frame img {
    min-height: 520px;
    height: 520px;
  }

  .kfv-primary-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kfv-commitment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kfv-actions {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .kfv-section {
    padding: 48px 0;
  }

  .kfv-wrapper {
    padding: 20px 14px;
    border-radius: 25px;
  }

  .kfv-intro {
    padding: 8px 0 4px;
  }

  .kfv-badge {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 10px;
  }

  .kfv-intro h2 {
    font-size: 39px;
    line-height: 1.03;
    letter-spacing: -1.7px;
  }

  .kfv-title-divider {
    margin: 18px 0;
  }

  .kfv-title-divider span {
    width: 46px;
  }

  .kfv-intro p {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .kfv-founder-frame,
  .kfv-founder-frame img {
    min-height: 390px;
    height: 390px;
    border-radius: 24px;
  }

  .kfv-founder-name-card {
    left: 13px;
    right: 13px;
    bottom: 13px;

    padding: 16px;

    border-radius: 19px;
  }

  .kfv-founder-name-card h3 {
    font-size: 22px;
  }

  .kfv-founder-name-card p {
    font-size: 11px;
  }

  .kfv-founder-name-card strong {
    font-size: 12px;
  }

  .kfv-primary-features {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .kfv-primary-card {
    min-height: 130px;
    padding: 15px 10px;
    border-radius: 18px;
  }

  .kfv-primary-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    font-size: 27px;
  }

  .kfv-primary-card h3 {
    font-size: 12px;
    line-height: 1.35;
  }

  .kfv-quote-box {
    padding: 46px 27px 27px;
    border-radius: 20px;
  }

  .kfv-quote-box blockquote {
    font-size: 17px;
    line-height: 1.55;
  }

  .kfv-quote-left,
  .kfv-quote-right {
    font-size: 29px;
  }

  .kfv-quote-left {
    left: 14px;
  }

  .kfv-quote-right {
    right: 14px;
  }

  .kfv-commitment-title h3 {
    font-size: 17px;
  }

  .kfv-commitment-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kfv-commitment-card {
    min-height: 88px;
    padding: 14px;
  }

  .kfv-commitment-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    font-size: 18px;
  }

  .kfv-meta-panel {
    grid-template-columns: 1fr;
    gap: 18px;

    padding: 19px;

    border-radius: 20px;
  }

  .kfv-meta-divider {
    width: 100%;
    height: 1px;
  }

  .kfv-meta-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    font-size: 23px;
  }

  .kfv-meta-item strong {
    font-size: 12px;
  }

  .kfv-btn {
    min-height: 58px;
    border-radius: 17px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .kfv-wrapper {
    padding-inline: 11px;
  }

  .kfv-intro h2 {
    font-size: 34px;
  }

  .kfv-founder-frame,
  .kfv-founder-frame img {
    min-height: 335px;
    height: 335px;
  }

  .kfv-primary-features {
    grid-template-columns: 1fr;
  }

  .kfv-primary-card {
    min-height: 95px;

    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;

    text-align: left;
  }

  .kfv-primary-icon {
    margin-bottom: 0;
    flex: 0 0 48px;
  }

  .kfv-primary-card h3 {
    max-width: none;
    font-size: 13px;
  }
}




/* =========================================================
   TESTIMONIALS SECTION
   IMAGE-MATCH ULTRA PREMIUM RESPONSIVE
========================================================= */

.testimonials-section {
  --testimonial-navy: #061746;
  --testimonial-red: #e3164d;
  --testimonial-red-dark: #bd0735;
  --testimonial-purple: #6d2bc8;
  --testimonial-purple-dark: #4321a3;
  --testimonial-yellow: #ffb400;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 0;

  background:
    radial-gradient(
      circle at 3% 8%,
      rgba(236, 43, 92, .13),
      transparent 24%
    ),
    radial-gradient(
      circle at 96% 12%,
      rgba(109, 43, 200, .06),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #fcfcfe 50%,
      #f7f8fb 100%
    );
}

/* GRID BACKGROUND */

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;

  background-image:
    linear-gradient(
      rgba(7, 27, 77, .025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(7, 27, 77, .025) 1px,
      transparent 1px
    );

  background-size: 44px 44px;
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.testimonial-bg-shape {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  pointer-events: none;
}

.testimonial-bg-shape-1 {
  width: 260px;
  height: 260px;
  left: -125px;
  top: -95px;

  background:
    linear-gradient(
      145deg,
      rgba(240, 45, 93, .20),
      rgba(255, 217, 226, .52)
    );
}

.testimonial-bg-shape-2 {
  width: 215px;
  height: 215px;
  right: -90px;
  bottom: -100px;

  background:
    linear-gradient(
      145deg,
      rgba(244, 117, 155, .16),
      rgba(255, 222, 231, .48)
    );
}

.testimonial-dots {
  position: absolute;
  z-index: -2;

  width: 130px;
  height: 130px;

  opacity: .42;

  background-image:
    radial-gradient(
      circle,
      rgba(229, 29, 79, .33) 2px,
      transparent 2.5px
    );

  background-size: 14px 14px;
}

.testimonial-dots-top {
  right: 15px;
  top: 10px;
}

.testimonial-dots-bottom {
  left: 0;
  bottom: 28px;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.testimonials-title {
  max-width: 1000px;
  margin: 0 auto 43px;
  text-align: center;
}

.testimonial-section-badge {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 10px 19px;
  margin-bottom: 22px;

  border-radius: 999px;

  color: #bf0c43;
  background:
    linear-gradient(
      135deg,
      rgba(255, 231, 238, .95),
      rgba(248, 237, 252, .95)
    );

  border: 1px solid rgba(207, 26, 76, .10);

  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.testimonials-title h2 {
  margin: 0 auto 17px;

  color: var(--testimonial-navy);

  font-size: clamp(34px, 4.8vw, 42px);
  line-height: 1.06;
  letter-spacing: -2.1px;
  font-weight: 950;
}

.testimonial-red-text {
  color: var(--testimonial-red);
}

.testimonial-purple-text {
  color: var(--testimonial-purple);
}

.testimonials-title p {
  max-width: 710px;
  margin: 0 auto;

  color: rgba(6, 23, 70, .64);

  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

/* =========================================================
   TESTIMONIAL GRID
========================================================= */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 21px;
}

/* =========================================================
   TESTIMONIAL CARD
========================================================= */

.testimonial-card {
  --card-accent: var(--testimonial-red);
  --card-soft: rgba(227, 22, 77, .09);

  position: relative;
  overflow: hidden;

  min-width: 0;
  min-height: 320px;

  display: flex;
  flex-direction: column;

  padding: 28px 27px 25px;

  border-radius: 25px;

  background:
    radial-gradient(
      circle at 92% 8%,
      var(--card-soft),
      transparent 27%
    ),
    rgba(255, 255, 255, .97);

  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 17px 47px rgba(7, 27, 77, .08),
    inset 0 1px 0 rgba(255, 255, 255, .96);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  right: -52px;
  top: -54px;

  width: 140px;
  height: 140px;

  border-radius: 50%;

  background: var(--card-soft);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-7px);

  border-color: color-mix(
    in srgb,
    var(--card-accent) 25%,
    transparent
  );

  box-shadow:
    0 27px 67px rgba(7, 27, 77, .14);
}

/* CARD COLOR VARIANTS */

.testimonial-card-red {
  --card-accent: #e3194f;
  --card-soft: rgba(227, 25, 79, .09);
}

.testimonial-card-purple {
  --card-accent: #6132c9;
  --card-soft: rgba(97, 50, 201, .08);
}

.testimonial-card-parent {
  --card-accent: #4c26ba;
  --card-soft: rgba(91, 48, 197, .08);
}

/* =========================================================
   CARD TOP
========================================================= */

.testimonial-top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;

  margin-bottom: 23px;
}

.testimonial-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  color: var(--testimonial-yellow);

  font-size: 17px;
  line-height: 1;
}

.review-badge {
  min-width: 48px;
  height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 11px;

  border-radius: 10px;

  color: #17151d;
  background:
    linear-gradient(
      135deg,
      #fff1f4,
      #f9e9ee
    );

  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.testimonial-quote-icon {
  width: 49px;
  height: 49px;
  flex: 0 0 49px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--card-accent);
  background:
    linear-gradient(
      145deg,
      #fff7f9,
      #ffe5ed
    );

  border: 1px solid rgba(227, 22, 77, .08);

  font-size: 28px;
  line-height: 1;

  box-shadow:
    0 10px 25px rgba(227, 22, 77, .09);
}

.testimonial-quote-icon i {
  line-height: 1;
}

/* =========================================================
   REVIEW TEXT
========================================================= */

.testimonial-text {
  position: relative;
  z-index: 2;

  flex: 1;

  margin: 0 0 23px;

  color: #14141b;

  font-size: 16px;
  line-height: 1.58;
  font-weight: 600;
}

/* =========================================================
   STUDENT / PARENT INFO
========================================================= */

.student-info {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 13px;

  padding-top: 17px;

  border-top: 1px solid rgba(7, 27, 77, .09);
}

.testimonial-user-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  color: var(--card-accent);

  background:
    linear-gradient(
      145deg,
      #fff5f8,
      #ffe7ef
    );

  font-size: 23px;

  box-shadow:
    0 10px 25px rgba(7, 27, 77, .06);
}

.testimonial-card-purple .testimonial-user-icon,
.testimonial-card-parent .testimonial-user-icon {
  background:
    linear-gradient(
      145deg,
      #f8f4ff,
      #ece5ff
    );
}

.student-info h4 {
  margin: 0 0 4px;

  color: var(--card-accent);

  font-size: 16px;
  line-height: 1.2;
  font-weight: 900;
}

.student-info span {
  display: block;

  color: rgba(7, 27, 77, .55);

  font-size: 11.5px;
  line-height: 1.3;
  font-weight: 700;
}

/* =========================================================
   ACTION BUTTONS
========================================================= */

.testimonial-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  margin-top: 29px;
}

.testimonial-more-btn,
.testimonial-google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-decoration: none;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.testimonial-more-btn {
  min-width: 345px;
  min-height: 57px;

  padding: 14px 24px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      105deg,
      #ef1853 0%,
      #d70b45 48%,
      #6530d2 100%
    );

  box-shadow:
    0 17px 36px rgba(209, 16, 74, .26);

  font-size: 15px;
  font-weight: 900;
}

.testimonial-more-btn i:last-child {
  margin-left: auto;
}

.testimonial-more-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);

  box-shadow:
    0 23px 48px rgba(209, 16, 74, .33);
}

.testimonial-google-btn {
  min-width: 345px;
  min-height: 52px;

  padding: 12px 20px;

  border-radius: 999px;

  color: #141827;
  background: #ffffff;

  border: 1px solid rgba(7, 27, 77, .09);

  box-shadow:
    0 11px 28px rgba(7, 27, 77, .10);

  font-size: 13.5px;
  font-weight: 900;
}

.testimonial-google-btn i {
  margin-left: auto;
}

.testimonial-google-btn:hover {
  color: var(--testimonial-red);
  transform: translateY(-2px);

  box-shadow:
    0 17px 36px rgba(7, 27, 77, .14);
}

/* GOOGLE LETTER ICON */

.google-icon {
  width: 27px;
  height: 27px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #4285f4;
  background: #ffffff;

  border: 2px solid #f2f2f2;

  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-card {
    min-height: 290px;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .testimonials-title {
    max-width: 800px;
  }

  .testimonials-title h2 {
    font-size: 43px;
  }

  .testimonials-title p {
    font-size: 16px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .testimonials-section .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .testimonials-title {
    margin-bottom: 30px;
    padding: 0 5px;
  }

  .testimonial-section-badge {
    min-height: 36px;
    padding: 8px 14px;
    margin-bottom: 16px;

    font-size: 10.5px;
  }

  .testimonials-title h2 {
    font-size: clamp(29px, 8.2vw, 38px);
    line-height: 1.1;
    letter-spacing: -1.2px;
  }

  .testimonials-title p {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonial-card {
    min-height: auto;

    padding: 21px 19px;

    border-radius: 22px;
  }

  .testimonial-card:hover {
    transform: none;
  }

  .testimonial-top {
    margin-bottom: 17px;
  }

  .stars {
    gap: 3px;
    font-size: 14px;
  }

  .review-badge {
    min-width: 44px;
    height: 29px;

    font-size: 11.5px;
  }

  .testimonial-quote-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;

    font-size: 24px;
  }

  .testimonial-text {
    margin-bottom: 19px;

    font-size: 14px;
    line-height: 1.62;
  }

  .student-info {
    padding-top: 15px;
  }

  .testimonial-user-icon {
    width: 47px;
    height: 47px;
    min-width: 47px;

    font-size: 20px;
  }

  .student-info h4 {
    font-size: 14.5px;
  }

  .student-info span {
    font-size: 10.5px;
  }

  .testimonial-actions {
    margin-top: 23px;
  }

  .testimonial-more-btn,
  .testimonial-google-btn {
    width: 100%;
    min-width: 0;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .testimonials-title h2 {
    font-size: 30px;
  }

  .testimonials-title p {
    font-size: 12.5px;
  }

  .testimonial-card {
    padding: 19px 17px;
  }

  .testimonial-rating {
    gap: 7px;
  }

  .stars {
    font-size: 13px;
  }

  .testimonial-text {
    font-size: 13.5px;
  }

  .testimonial-more-btn {
    min-height: 52px;
    font-size: 13.5px;
  }

  .testimonial-google-btn {
    min-height: 49px;
    font-size: 12.5px;
  }
}






/* =========================================================
   ADMISSION CTA SECTION
   IMAGE-MATCH PREMIUM RESPONSIVE DESIGN
========================================================= */

.admission-cta-section {
  --cta-navy: #03173a;
  --cta-navy-deep: #00102f;
  --cta-red: #e1122d;
  --cta-red-dark: #ae071c;
  --cta-pink: #ec3072;
  --cta-purple: #8d43de;
  --cta-blue: #3474eb;
  --cta-cyan: #20b8b8;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 90px 0;

  background:
    radial-gradient(
      circle at 5% 8%,
      rgba(225, 18, 45, .11),
      transparent 25%
    ),
    radial-gradient(
      circle at 96% 90%,
      rgba(225, 18, 45, .08),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f9fc 100%
    );
}

/* LIGHT GRID BACKGROUND */

.admission-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(7, 27, 77, .028) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(7, 27, 77, .028) 1px,
      transparent 1px
    );

  background-size: 44px 44px;
}

.admission-cta-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   OUTER BACKGROUND SHAPES
========================================================= */

.cta-bg-shape {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(28px);
}

.cta-bg-shape-1 {
  width: 280px;
  height: 280px;
  left: -145px;
  top: 60px;
  background: rgba(225, 18, 45, .13);
}

.cta-bg-shape-2 {
  width: 320px;
  height: 320px;
  right: -155px;
  bottom: 35px;
  background: rgba(7, 27, 77, .11);
}

/* =========================================================
   MAIN DARK CARD
========================================================= */

.admission-cta {
  position: relative;
  overflow: hidden;

  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 48px 48px 34px;

  border-radius: 32px;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 4% 4%,
      rgba(225, 18, 45, .20),
      transparent 28%
    ),
    radial-gradient(
      circle at 96% 5%,
      rgba(225, 18, 45, .17),
      transparent 24%
    ),
    linear-gradient(
      145deg,
      var(--cta-navy) 0%,
      #021c49 50%,
      var(--cta-navy-deep) 100%
    );

  border: 1px solid rgba(255, 255, 255, .12);

  box-shadow:
    0 35px 90px rgba(1, 15, 47, .22),
    inset 0 1px 0 rgba(255, 255, 255, .12);
}

/* DARK GRID INSIDE CARD */

.admission-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, .035) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .035) 1px,
      transparent 1px
    );

  background-size: 38px 38px;
  opacity: .75;
}

/* DECORATIVE RED CIRCLE */

.admission-cta::after {
  content: "";
  position: absolute;
  right: -75px;
  top: 320px;

  width: 180px;
  height: 180px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(225, 18, 45, .25),
      rgba(225, 18, 45, .05) 68%,
      transparent 70%
    );

  border: 1px solid rgba(225, 18, 45, .18);
  pointer-events: none;
}

.cta-content,
.cta-helpline-panel {
  position: relative;
  z-index: 2;
}

/* =========================================================
   TOP CONTENT
========================================================= */

.cta-content {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.cta-badge {
  min-height: 42px;
  width: fit-content;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 10px 20px;
  margin: 0 auto 22px;

  border-radius: 999px;

  color: #ffffff !important;

  background:
    linear-gradient(
      135deg,
      var(--cta-red),
      var(--cta-red-dark)
    ) !important;

  border: 1px solid rgba(255, 255, 255, .12) !important;

  box-shadow:
    0 14px 32px rgba(225, 18, 45, .26);

  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.cta-badge i {
  font-size: 15px;
}

.admission-cta h2 {
  max-width: 790px;
  margin: 0 auto 15px;

  color: #ffffff;

  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.13;
  letter-spacing: -1.7px;
  font-weight: 950;
}

.admission-cta h2 span {
  color: #ef243b;
}

/* HEADING DECORATION */

.cta-heading-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  margin: 3px auto 20px;
}

.cta-heading-decoration span {
  width: 35px;
  height: 2px;

  border-radius: 999px;
  background: rgba(225, 18, 45, .58);
}

.cta-heading-decoration i {
  width: 6px;
  height: 6px;

  display: block;

  border-radius: 50%;
  background: var(--cta-red);
}

.admission-cta .cta-content > p {
  max-width: 735px;
  margin: 0 auto 12px;

  color: rgba(255, 255, 255, .75);

  font-size: 14.5px;
  line-height: 1.65;
  font-weight: 600;
}

.admission-cta .cta-content > p + p {
  margin-top: 3px;
  margin-bottom: 27px;
}

/* =========================================================
   HIGHLIGHT LIST
========================================================= */

.cta-highlights {
  max-width: 700px;
  margin: 0 auto 27px;

  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;

  text-align: left;
}

.cta-highlight-item {
  position: relative;
  overflow: hidden;

  min-height: 78px;

  display: flex;
  align-items: center;
  gap: 17px;

  padding: 12px 18px;

  border-radius: 14px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .11),
      rgba(255, 255, 255, .065)
    );

  border: 1px solid rgba(255, 255, 255, .12);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05);

  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease;
}

.cta-highlight-item::after {
  content: "";
  position: absolute;
  left: 101px;
  top: 18px;
  bottom: 18px;

  width: 1px;

  background: rgba(255, 255, 255, .14);
}

.cta-highlight-item:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .18);
}

/* ICON */

.cta-highlight-icon {
  width: 57px;
  height: 57px;
  min-width: 57px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  font-size: 23px;

  box-shadow:
    0 12px 28px rgba(0, 0, 0, .22);
}

.cta-highlight-item > div {
  padding-left: 18px;
}

/* INDIVIDUAL ICON COLORS */

.cta-highlight-red .cta-highlight-icon {
  background:
    linear-gradient(
      135deg,
      #ef293f,
      #b9061c
    );
}

.cta-highlight-pink .cta-highlight-icon {
  background:
    linear-gradient(
      135deg,
      #f15187,
      #cf145b
    );
}

.cta-highlight-purple .cta-highlight-icon {
  background:
    linear-gradient(
      135deg,
      #a252ea,
      #6722b9
    );
}

.cta-highlight-blue .cta-highlight-icon {
  background:
    linear-gradient(
      135deg,
      #4b8bfa,
      #1c53c4
    );
}

.cta-highlight-cyan .cta-highlight-icon {
  background:
    linear-gradient(
      135deg,
      #35c8c5,
      #11908d
    );
}

.cta-highlight-item strong {
  display: block;
  margin-bottom: 4px;

  color: #ffffff;

  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.cta-highlight-item small {
  display: block;

  color: rgba(255, 255, 255, .67);

  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
}

/* =========================================================
   BUTTONS
========================================================= */

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-bottom: 34px;
}

.cta-apply-btn,
.cta-call-btn {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 25px;

  border-radius: 999px;

  border: 0;
  text-decoration: none;

  font-size: 13.5px;
  line-height: 1;
  font-weight: 900;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.cta-apply-btn {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--cta-red),
      var(--cta-red-dark)
    );

  box-shadow:
    0 17px 38px rgba(225, 18, 45, .30);
}

.cta-apply-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);

  box-shadow:
    0 23px 46px rgba(225, 18, 45, .38);
}

.cta-call-btn {
  color: #06163f;
  background: #ffffff;

  box-shadow:
    0 16px 34px rgba(0, 0, 0, .18);
}

.cta-call-btn:hover {
  color: var(--cta-red);
  transform: translateY(-3px);
}

/* =========================================================
   HELPLINE PANEL
========================================================= */

.cta-helpline-panel {
  min-height: 220px;

  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: 30px;

  padding: 28px 34px;

  border-radius: 28px;

  color: #071b4d;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f8f9fc
    );

  border: 1px solid rgba(255, 255, 255, .88);
  border-bottom: 3px solid var(--cta-red);

  box-shadow:
    0 25px 60px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

/* LEFT HELPLINE */

.cta-helpline-main {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 22px;

  padding-right: 28px;

  border-right: 1px solid rgba(7, 27, 77, .11);
}

.cta-helpline-icon {
  width: 108px;
  height: 108px;
  min-width: 108px;

  display: grid;
  place-items: center;

  border-radius: 26px;

  color: #e4213a;

  background:
    radial-gradient(
      circle at 35% 25%,
      #fff5f7,
      #ffe4e9
    );

  box-shadow:
    0 18px 40px rgba(225, 18, 45, .12);

  font-size: 48px;
}

.cta-helpline-content > span {
  display: block;
  margin-bottom: 8px;

  color: var(--cta-red);

  font-size: 14px;
  line-height: 1;
  font-weight: 900;
}

.cta-helpline-content > a {
  display: block;
  width: fit-content;

  margin-bottom: 10px;

  color: #06163f;
  text-decoration: none;

  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -.5px;
  font-weight: 950;
}

.cta-helpline-content > a:hover {
  color: var(--cta-red);
}

.cta-helpline-content p {
  max-width: 310px;
  margin: 0;

  color: rgba(7, 27, 77, .62);

  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 650;
}

/* =========================================================
   TRUST POINTS
========================================================= */

.cta-trust-points {
  display: grid;
  gap: 14px;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cta-trust-item > span {
  width: 48px;
  height: 48px;
  min-width: 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--cta-red);

  background:
    linear-gradient(
      145deg,
      #fff1f4,
      #ffe3e8
    );

  font-size: 19px;
}

.cta-trust-item strong {
  display: block;
  margin-bottom: 3px;

  color: #071b4d;

  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 900;
}

.cta-trust-item small {
  display: block;

  color: rgba(7, 27, 77, .58);

  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 650;
}

/* =========================================================
   RESPONSIVE — SMALL LAPTOP
========================================================= */

@media (max-width: 1199px) {
  .admission-cta {
    max-width: 930px;
    padding: 42px 38px 32px;
  }

  .admission-cta h2 {
    font-size: 40px;
  }

  .cta-highlights {
    max-width: 660px;
  }
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {
  .admission-cta {
    max-width: 760px;
  }

  .admission-cta h2 {
    font-size: 36px;
  }

  .cta-helpline-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-helpline-main {
    padding-right: 0;
    padding-bottom: 24px;

    border-right: 0;
    border-bottom: 1px solid rgba(7, 27, 77, .11);
  }

  .cta-trust-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-trust-item {
    align-items: flex-start;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
  .admission-cta-section {
    padding: 60px 0;
  }

  .admission-cta-section .container {
    padding-left: 13px;
    padding-right: 13px;
  }

  .admission-cta {
    padding: 28px 16px 19px;
    border-radius: 25px;
  }

  .cta-badge {
    min-height: 36px;
    padding: 8px 14px;
    margin-bottom: 17px;

    font-size: 10.5px;
  }

  .admission-cta h2 {
    font-size: 28px;
    line-height: 1.15;
    letter-spacing: -.8px;
  }

  .admission-cta .cta-content > p {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .cta-heading-decoration {
    margin-bottom: 16px;
  }

  .cta-highlights {
    gap: 9px;
  }

  .cta-highlight-item {
    min-height: 69px;
    gap: 12px;

    padding: 10px 12px;

    border-radius: 13px;
  }

  .cta-highlight-item::after {
    left: 78px;
    top: 14px;
    bottom: 14px;
  }

  .cta-highlight-icon {
    width: 47px;
    height: 47px;
    min-width: 47px;

    font-size: 19px;
  }

  .cta-highlight-item > div {
    padding-left: 11px;
  }

  .cta-highlight-item strong {
    font-size: 12px;
  }

  .cta-highlight-item small {
    font-size: 10.5px;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;

    margin-bottom: 24px;
  }

  .cta-apply-btn,
  .cta-call-btn {
    width: 100%;
    min-height: 50px;

    font-size: 12.5px;
  }

  .cta-helpline-panel {
    padding: 20px 16px;
    border-radius: 21px;
  }

  .cta-helpline-main {
    align-items: flex-start;
    gap: 14px;
  }

  .cta-helpline-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;

    border-radius: 19px;
    font-size: 28px;
  }

  .cta-helpline-content > span {
    font-size: 11px;
  }

  .cta-helpline-content > a {
    font-size: 21px;
  }

  .cta-helpline-content p {
    font-size: 11px;
  }

  .cta-trust-points {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-trust-item > span {
    width: 42px;
    height: 42px;
    min-width: 42px;

    font-size: 17px;
  }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .admission-cta {
    padding-left: 13px;
    padding-right: 13px;
  }

  .admission-cta h2 {
    font-size: 25px;
  }

  .admission-cta h2 br {
    display: none;
  }

  .cta-highlight-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .cta-highlight-item strong {
    font-size: 11.2px;
  }

  .cta-highlight-item small {
    font-size: 9.7px;
  }

  .cta-helpline-main {
    flex-direction: column;
  }

  .cta-helpline-content > a {
    font-size: 20px;
  }
}




/* =========================================================
   SCHOLARSHIP ENTRANCE TEST SECTION
   PREMIUM IMAGE-MATCH RESPONSIVE DESIGN
========================================================= */

.scholarship-cta-section {
  --scholarship-navy: #071b4d;
  --scholarship-red: #dc102c;
  --scholarship-red-dark: #aa061b;
  --scholarship-pink: #ed2e67;
  --scholarship-orange: #ef7f15;
  --scholarship-muted: rgba(7, 27, 77, .66);

  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 90px 0;

  background:
    radial-gradient(
      circle at 7% 10%,
      rgba(220, 16, 44, .08),
      transparent 27%
    ),
    radial-gradient(
      circle at 92% 15%,
      rgba(7, 27, 77, .07),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f9fc 100%
    );
}

.scholarship-cta-section *,
.scholarship-cta-section *::before,
.scholarship-cta-section *::after {
  box-sizing: border-box;
}

/* BACKGROUND GRID */

.scholarship-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(7, 27, 77, .025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(7, 27, 77, .025) 1px,
      transparent 1px
    );

  background-size: 46px 46px;
}

.scholarship-cta-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   BACKGROUND ORBS
========================================================= */

.scholarship-cta-orb {
  position: absolute;
  z-index: -2;

  border-radius: 50%;
  filter: blur(28px);

  pointer-events: none;
}

.scholarship-cta-orb-1 {
  width: 280px;
  height: 280px;

  left: -140px;
  top: 80px;

  background: rgba(220, 16, 44, .12);
}

.scholarship-cta-orb-2 {
  width: 330px;
  height: 330px;

  right: -155px;
  bottom: 70px;

  background: rgba(7, 27, 77, .10);
}

/* =========================================================
   MAIN WHITE WRAPPER
========================================================= */

.scholarship-cta-box {
  position: relative;
  overflow: hidden;

  width: 100%;
  max-width: 1150px;

  margin: 0 auto;
  padding: 40px 42px 30px;

  border-radius: 32px;

  background:
    radial-gradient(
      circle at 97% 3%,
      rgba(220, 16, 44, .08),
      transparent 23%
    ),
    rgba(255, 255, 255, .96);

  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 30px 90px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

/* TOP RIGHT PINK DECORATION */

.scholarship-cta-box::before,
.scholarship-cta-box::after {
  content: "";
  position: absolute;

  border-radius: 0 0 0 100%;

  pointer-events: none;
}

.scholarship-cta-box::before {
  width: 145px;
  height: 145px;

  right: 0;
  top: 0;

  background: rgba(220, 16, 44, .09);
}

.scholarship-cta-box::after {
  width: 102px;
  height: 102px;

  right: 0;
  top: 0;

  background: rgba(220, 16, 44, .08);
}

/* =========================================================
   SECTION HEADING
========================================================= */

.scholarship-cta-heading {
  position: relative;
  z-index: 2;

  max-width: 960px;

  margin: 0 auto 34px;

  text-align: center;
}

.scholarship-badge {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 22px;
  padding: 10px 22px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--scholarship-red),
      var(--scholarship-red-dark)
    );

  border: 1px solid rgba(220, 16, 44, .16);

  box-shadow:
    0 15px 34px rgba(220, 16, 44, .20);

  font-size: 13px;
  line-height: 1;
  font-weight: 900;
}

.scholarship-badge i {
  font-size: 16px;
}

.scholarship-cta-heading h2 {
  max-width: 920px;

  margin: 0 auto 18px;

  color: var(--scholarship-navy);

  font-size: clamp(36px, 4.8vw, 42px);
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 950;
}

.scholarship-cta-heading h2 span,
.scholarship-cta-heading h2 strong {
  color: var(--scholarship-red);
  font-weight: 950;
}

.scholarship-title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin: 0 auto 18px;
}

.scholarship-title-divider span {
  width: 76px;
  height: 1px;

  background: rgba(7, 27, 77, .18);
}

.scholarship-title-divider i {
  color: var(--scholarship-red);
  font-size: 20px;
}

.scholarship-cta-heading p {
  max-width: 850px;

  margin: 0 auto;

  color: var(--scholarship-muted);

  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 600;
}

.scholarship-cta-heading p strong {
  color: var(--scholarship-red);
  font-weight: 900;
}

/* =========================================================
   THREE SCHOLARSHIP CARDS
========================================================= */

.scholarship-highlights {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;

  margin-bottom: 30px;
}

.scholarship-highlight-card {
  position: relative;
  overflow: hidden;

  min-height: 270px;

  padding: 28px 28px 25px;

  border-radius: 25px;

  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(220, 16, 44, .05),
      transparent 28%
    ),
    #ffffff;

  border: 1px solid rgba(7, 27, 77, .09);

  box-shadow:
    0 20px 52px rgba(7, 27, 77, .08),
    inset 0 1px 0 rgba(255, 255, 255, .96);

  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.scholarship-highlight-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 30px 68px rgba(7, 27, 77, .13);
}

.scholarship-highlight-top {
  display: flex;
  align-items: flex-start;
  gap: 17px;

  margin-bottom: 23px;
}

.scholarship-highlight-icon {
  width: 68px;
  height: 68px;
  min-width: 68px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  font-size: 27px;
}

.scholarship-highlight-card h3 {
  margin: 5px 0 10px;

  color: var(--scholarship-red);

  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
}

.scholarship-highlight-card h3 strong {
  display: block;

  color: var(--scholarship-navy);
  font-weight: 950;
}

.scholarship-small-line {
  display: block;

  width: 45px;
  height: 3px;

  border-radius: 999px;
}

.scholarship-highlight-card > p {
  margin: 0;

  color: var(--scholarship-muted);

  font-size: 14px;
  line-height: 1.7;
  font-weight: 650;
  text-align: center;
}

/* CARD RED */

.scholarship-card-red .scholarship-highlight-icon {
  color: var(--scholarship-red);

  background:
    linear-gradient(
      145deg,
      #fff6f7,
      #ffe5e9
    );
}

.scholarship-card-red .scholarship-small-line {
  background: var(--scholarship-red);
}

/* CARD PINK */

.scholarship-card-pink .scholarship-highlight-icon {
  color: var(--scholarship-pink);

  background:
    linear-gradient(
      145deg,
      #fff6fa,
      #ffe4ef
    );
}

.scholarship-card-pink h3 {
  color: var(--scholarship-red);
}

.scholarship-card-pink .scholarship-small-line {
  background: var(--scholarship-pink);
}

/* CARD ORANGE */

.scholarship-card-orange .scholarship-highlight-icon {
  color: var(--scholarship-red);

  background:
    linear-gradient(
      145deg,
      #fff7f8,
      #ffe5e9
    );
}

.scholarship-card-orange .scholarship-small-line {
  background: #ed9bab;
}

/* =========================================================
   BUTTONS
========================================================= */

.scholarship-actions {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;

  margin-bottom: 34px;
}

.scholarship-primary-btn,
.scholarship-outline-btn {
  min-height: 56px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 14px 28px;

  border-radius: 999px;

  text-decoration: none;

  font-size: 14px;
  line-height: 1;
  font-weight: 900;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    color .25s ease,
    background .25s ease;
}

.scholarship-primary-btn {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--scholarship-red),
      var(--scholarship-red-dark)
    );

  border: 1px solid transparent;

  box-shadow:
    0 17px 38px rgba(220, 16, 44, .25);
}

.scholarship-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);

  box-shadow:
    0 23px 46px rgba(220, 16, 44, .34);
}

.scholarship-outline-btn {
  color: var(--scholarship-navy);
  background: #ffffff;

  border: 1px solid var(--scholarship-red);
}

.scholarship-outline-btn i {
  color: var(--scholarship-red);
}

.scholarship-outline-btn:hover {
  color: #ffffff;

  background: var(--scholarship-red);

  transform: translateY(-3px);
}

.scholarship-outline-btn:hover i {
  color: #ffffff;
}

/* =========================================================
   STATISTICS
========================================================= */

.scholarship-stats {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin-bottom: 28px;
  padding: 22px 12px;

  border-radius: 25px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #fbfbfd
    );

  border: 1px solid rgba(7, 27, 77, .07);

  box-shadow:
    0 18px 45px rgba(7, 27, 77, .07);
}

.scholarship-stat-item {
  position: relative;

  min-width: 0;

  padding: 8px 20px;

  text-align: center;
}

.scholarship-stat-item:not(:last-child) {
  border-right: 1px solid rgba(7, 27, 77, .12);
}

.scholarship-stat-icon {
  display: block;

  margin-bottom: 6px;

  color: var(--scholarship-red);

  font-size: 37px;
  line-height: 1;
}

.scholarship-stat-item strong {
  display: block;

  margin-bottom: 5px;

  color: var(--scholarship-red);

  font-size: 31px;
  line-height: 1.05;
  font-weight: 950;
}

.scholarship-stat-item p {
  margin: 0;

  color: var(--scholarship-navy);

  font-size: 12px;
  line-height: 1.4;
  font-weight: 850;
}

/* =========================================================
   WHY APPLY BOX
========================================================= */

.scholarship-why-box {
  position: relative;
  z-index: 2;
  overflow: hidden;

  min-height: 250px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: center;
  gap: 26px;

  margin-bottom: 24px;
  padding: 28px 32px;

  border-radius: 27px;

  background:
    radial-gradient(
      circle at 89% 35%,
      rgba(220, 16, 44, .09),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #ffffff,
      #fff8f9
    );

  border: 1px solid rgba(220, 16, 44, .08);
}

.scholarship-why-content {
  position: relative;
  z-index: 2;
}

.scholarship-why-content h3 {
  margin: 0 0 8px;

  color: var(--scholarship-navy);

  font-size: 29px;
  line-height: 1.15;
  font-weight: 950;
}

.scholarship-why-line {
  display: block;

  width: 46px;
  height: 3px;

  margin-bottom: 22px;

  border-radius: 999px;
  background: rgba(220, 16, 44, .35);
}

.scholarship-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 30px;
}

.scholarship-why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;

  color: var(--scholarship-navy);

  font-size: 12.5px;
  line-height: 1.45;
  font-weight: 850;
}

.scholarship-why-item i {
  color: var(--scholarship-red);
  margin-top: 1px;
}

/* =========================================================
   CSS EDUCATION ILLUSTRATION
========================================================= */

.scholarship-why-visual {
  position: relative;

  min-height: 195px;
}

.scholarship-book {
  position: absolute;
  left: 55px;

  width: 210px;
  height: 37px;

  border-radius: 8px;
  transform: skewX(-12deg);

  box-shadow: 0 12px 20px rgba(7, 27, 77, .12);
}

.book-one {
  bottom: 37px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 65%,
      #db1431 65%,
      #db1431 100%
    );

  border: 1px solid rgba(7, 27, 77, .08);
}

.book-two {
  bottom: 5px;
  left: 68px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #ffffff 65%,
      #b80620 65%,
      #b80620 100%
    );

  border: 1px solid rgba(7, 27, 77, .08);
}

.scholarship-cap {
  position: absolute;
  left: 82px;
  bottom: 75px;

  width: 180px;
  height: 110px;
}

.cap-top {
  position: absolute;
  left: 15px;
  top: 0;

  width: 150px;
  height: 78px;

  background:
    linear-gradient(
      135deg,
      #162b5d,
      #06163e
    );

  transform: rotate(4deg) skewX(-18deg);

  clip-path: polygon(
    50% 0%,
    100% 35%,
    50% 70%,
    0% 35%
  );

  box-shadow: 0 18px 30px rgba(7, 27, 77, .20);
}

.cap-base {
  position: absolute;
  left: 53px;
  bottom: 12px;

  width: 85px;
  height: 35px;

  border-radius: 0 0 10px 10px;

  background:
    linear-gradient(
      135deg,
      #142a5d,
      #06163e
    );
}

.cap-string {
  position: absolute;
  right: 8px;
  top: 31px;

  width: 3px;
  height: 66px;

  background: var(--scholarship-red);
}

.cap-string::after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -13px;

  width: 13px;
  height: 20px;

  border-radius: 0 0 50% 50%;

  background: var(--scholarship-red);
}

.scholarship-certificate {
  position: absolute;
  right: 25px;
  bottom: 5px;

  width: 75px;
  height: 34px;

  border-radius: 5px;

  background:
    linear-gradient(
      135deg,
      #ffffff,
      #f7f7f8
    );

  transform: rotate(-7deg);

  box-shadow: 0 12px 24px rgba(7, 27, 77, .12);
}

.scholarship-certificate::before,
.scholarship-certificate::after {
  content: "";
  position: absolute;

  border-radius: 50%;

  background: var(--scholarship-red);
}

.scholarship-certificate::before {
  width: 16px;
  height: 16px;

  right: 10px;
  top: 9px;
}

.scholarship-certificate::after {
  width: 7px;
  height: 24px;

  right: 14px;
  bottom: -15px;

  border-radius: 0;
}

/* =========================================================
   CONTACT BAR
========================================================= */

.scholarship-contact-bar {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 27px;

  min-height: 84px;
  padding: 15px 24px;

  border-radius: 23px;

  background:
    linear-gradient(
      145deg,
      #ffffff,
      #fafbfe
    );

  border: 1px solid rgba(7, 27, 77, .07);

  box-shadow:
    0 16px 42px rgba(7, 27, 77, .06);
}

.scholarship-contact-item,
.scholarship-phone-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.scholarship-phone-item {
  color: inherit;
  text-decoration: none;
}

.scholarship-contact-icon,
.scholarship-phone-item > i {
  width: 50px;
  height: 50px;
  min-width: 50px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--scholarship-red),
      var(--scholarship-red-dark)
    );

  font-size: 21px;

  box-shadow:
    0 12px 28px rgba(220, 16, 44, .22);
}

.scholarship-contact-item strong,
.scholarship-phone-item strong {
  display: block;

  margin-bottom: 3px;

  color: var(--scholarship-navy);

  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.scholarship-phone-item strong {
  font-size: 21px;
}

.scholarship-contact-item small,
.scholarship-phone-item small {
  display: block;

  color: rgba(7, 27, 77, .57);

  font-size: 11px;
  line-height: 1.35;
  font-weight: 700;
}

.scholarship-contact-divider {
  width: 1px;
  height: 52px;

  background: rgba(7, 27, 77, .13);
}

/* =========================================================
   RESPONSIVE — LAPTOP
========================================================= */

@media (max-width: 1199px) {
  .scholarship-cta-box {
    padding: 36px 30px 28px;
  }

  .scholarship-cta-heading h2 {
    font-size: 46px;
  }

  .scholarship-highlight-card {
    padding: 24px;
  }

  .scholarship-why-box {
    grid-template-columns: minmax(0, 1fr) 280px;
  }
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {
  .scholarship-highlights {
    grid-template-columns: 1fr;
  }

  .scholarship-highlight-card {
    min-height: auto;
  }

  .scholarship-highlight-card > p {
    text-align: left;
  }

  .scholarship-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .scholarship-stat-item:nth-child(2) {
    border-right: 0;
  }

  .scholarship-stat-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(7, 27, 77, .10);
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .scholarship-why-box {
    grid-template-columns: 1fr;
  }

  .scholarship-why-visual {
    max-width: 360px;
    width: 100%;
    margin: 0 auto;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
  .scholarship-cta-section {
    padding: 58px 0;
  }

  .scholarship-cta-section .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .scholarship-cta-box {
    padding: 26px 15px 18px;
    border-radius: 24px;
  }

  .scholarship-badge {
    min-height: 36px;

    padding: 8px 13px;
    margin-bottom: 17px;

    font-size: 10px;
  }

  .scholarship-cta-heading {
    margin-bottom: 26px;
  }

  .scholarship-cta-heading h2 {
    font-size: 30px;
    line-height: 1.12;
    letter-spacing: -.9px;
  }

  .scholarship-title-divider span {
    width: 44px;
  }

  .scholarship-cta-heading p {
    font-size: 13px;
    line-height: 1.65;
  }

  .scholarship-highlights {
    gap: 13px;
  }

  .scholarship-highlight-card {
    padding: 19px;
    border-radius: 20px;
  }

  .scholarship-highlight-top {
    gap: 13px;
    margin-bottom: 14px;
  }

  .scholarship-highlight-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;

    font-size: 22px;
  }

  .scholarship-highlight-card h3 {
    font-size: 18px;
  }

  .scholarship-highlight-card > p {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .scholarship-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .scholarship-primary-btn,
  .scholarship-outline-btn {
    width: 100%;
    min-height: 51px;

    padding: 13px 16px;

    font-size: 12px;
  }

  .scholarship-stats {
    grid-template-columns: 1fr 1fr;

    padding: 16px 8px;
    border-radius: 20px;
  }

  .scholarship-stat-item {
    padding: 10px;
  }

  .scholarship-stat-icon {
    font-size: 27px;
  }

  .scholarship-stat-item strong {
    font-size: 23px;
  }

  .scholarship-stat-item p {
    font-size: 10px;
  }

  .scholarship-why-box {
    padding: 22px 17px;
    border-radius: 21px;
  }

  .scholarship-why-content h3 {
    font-size: 24px;
  }

  .scholarship-why-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .scholarship-why-item {
    font-size: 12px;
  }

  .scholarship-why-visual {
    transform: scale(.88);
    margin-top: -10px;
    margin-bottom: -12px;
  }

  .scholarship-contact-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;

    padding: 18px;

    border-radius: 19px;
  }

  .scholarship-contact-divider {
    width: 100%;
    height: 1px;
  }

  .scholarship-phone-item strong {
    font-size: 18px;
  }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .scholarship-cta-heading h2 {
    font-size: 26px;
  }

  .scholarship-highlight-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
  }

  .scholarship-highlight-card h3 {
    font-size: 16px;
  }

  .scholarship-stats {
    grid-template-columns: 1fr;
  }

  .scholarship-stat-item,
  .scholarship-stat-item:nth-child(2) {
    border-right: 0;
  }

  .scholarship-stat-item:not(:last-child) {
    border-bottom: 1px solid rgba(7, 27, 77, .10);
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .scholarship-why-visual {
    left: -12px;
  }

  .scholarship-contact-item,
  .scholarship-phone-item {
    align-items: flex-start;
  }
}
/* =========================================================
   SCHOLARSHIP HIGHLIGHT CARDS — FINAL CONFLICT-FREE FIX
========================================================= */

.scholarship-highlights {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 22px !important;
  margin: 34px 0 30px !important;
}

/* CARD */

.scholarship-highlights .scholarship-highlight-card {
  position: relative !important;
  overflow: hidden !important;

  width: 100% !important;
  min-width: 0 !important;
  min-height: 285px !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;

  gap: 0 !important;
  padding: 30px 24px 26px !important;

  text-align: center !important;

  background:
    radial-gradient(
      circle at 50% 14%,
      rgba(212, 13, 31, .055),
      transparent 30%
    ),
    #ffffff !important;

  border: 1px solid rgba(7, 27, 77, .10) !important;
  border-radius: 28px !important;

  box-shadow:
    0 18px 48px rgba(7, 27, 77, .075),
    inset 0 1px 0 rgba(255, 255, 255, .95) !important;

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease !important;
}

.scholarship-highlights .scholarship-highlight-card:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(212, 13, 31, .18) !important;
  box-shadow:
    0 27px 65px rgba(7, 27, 77, .12),
    inset 0 1px 0 rgba(255, 255, 255, .96) !important;
}

/* Remove old decorative pseudo elements */

.scholarship-highlights .scholarship-highlight-card::before,
.scholarship-highlights .scholarship-highlight-card::after {
  display: none !important;
  content: none !important;
}

/* ICON */

.scholarship-highlights .scholarship-highlight-icon {
  position: relative !important;

  width: 76px !important;
  height: 76px !important;
  min-width: 76px !important;
  flex: 0 0 76px !important;

  display: grid !important;
  place-items: center !important;

  margin: 0 auto 20px !important;

  color: #d40d1f !important;
  background: linear-gradient(145deg, #fff7f8, #ffe8ed) !important;

  border: 1px solid rgba(212, 13, 31, .10) !important;
  border-radius: 50% !important;

  box-shadow:
    0 15px 34px rgba(212, 13, 31, .12),
    inset 0 1px 0 #ffffff !important;
}

.scholarship-highlights .scholarship-highlight-icon i {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;

  color: #d40d1f !important;
  background: transparent !important;

  font-size: 30px !important;
  line-height: 1 !important;
}

/* Remove red square created by old span CSS */

.scholarship-highlights .scholarship-highlight-icon::before,
.scholarship-highlights .scholarship-highlight-icon::after {
  display: none !important;
  content: none !important;
}

/* CONTENT */

.scholarship-highlight-content {
  width: 100% !important;
  min-width: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;

  text-align: center !important;
}

/* HEADING */

.scholarship-highlights .scholarship-highlight-content h3 {
  width: 100% !important;
  max-width: 250px !important;

  margin: 0 auto !important;

  color: #071b4d !important;

  font-size: 20px !important;
  line-height: 1.28 !important;
  font-weight: 900 !important;
  letter-spacing: -.35px !important;

  text-align: center !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  white-space: normal !important;
}

.scholarship-highlights .scholarship-highlight-content h3 span {
  display: block !important;

  width: auto !important;
  height: auto !important;
  min-width: 0 !important;

  margin: 0 !important;
  padding: 0 !important;

  color: #d40d1f !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;

  font: inherit !important;
  line-height: inherit !important;
}

/* SMALL RED LINE */

.scholarship-highlights .scholarship-highlight-line {
  display: block !important;

  width: 46px !important;
  height: 3px !important;
  min-width: 46px !important;
  min-height: 3px !important;

  flex: 0 0 3px !important;

  margin: 16px auto 17px !important;
  padding: 0 !important;

  background: #ef9aa7 !important;
  border: 0 !important;
  border-radius: 999px !important;
  box-shadow: none !important;
}

/* DESCRIPTION */

.scholarship-highlights .scholarship-highlight-content p {
  width: 100% !important;
  max-width: 255px !important;

  margin: 0 auto !important;

  color: rgba(7, 27, 77, .68) !important;

  font-size: 14px !important;
  line-height: 1.72 !important;
  font-weight: 650 !important;

  text-align: center !important;
  word-break: normal !important;
  overflow-wrap: break-word !important;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {
  .scholarship-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .scholarship-highlights .scholarship-highlight-card {
    min-height: 270px !important;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {
  .scholarship-highlights {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    margin: 26px 0 24px !important;
  }

  .scholarship-highlights .scholarship-highlight-card {
    min-height: auto !important;
    padding: 25px 20px 23px !important;
    border-radius: 24px !important;
  }

  .scholarship-highlights .scholarship-highlight-icon {
    width: 66px !important;
    height: 66px !important;
    min-width: 66px !important;
    flex-basis: 66px !important;

    margin-bottom: 16px !important;
  }

  .scholarship-highlights .scholarship-highlight-icon i {
    font-size: 26px !important;
  }

  .scholarship-highlights .scholarship-highlight-content h3 {
    max-width: 270px !important;
    font-size: 18px !important;
  }

  .scholarship-highlights .scholarship-highlight-content p {
    max-width: 310px !important;
    font-size: 13.5px !important;
    line-height: 1.65 !important;
  }

  .scholarship-highlights .scholarship-highlight-line {
    margin: 14px auto 15px !important;
  }
}






/* =========================================================
   SCHOLARSHIP SUPPORT & CERTIFICATES — FINAL PREMIUM CSS
========================================================= */

.kha-scholarship-section {
  --kha-navy: #061a49;
  --kha-navy-dark: #00102f;
  --kha-red: #d50b22;
  --kha-red-dark: #aa0617;
  --kha-pink: #f8dfe4;
  --kha-text: #071b4d;
  --kha-muted: rgba(7, 27, 77, .66);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 0;
  background:
    radial-gradient(circle at 6% 8%, rgba(213, 11, 34, .10), transparent 26%),
    radial-gradient(circle at 93% 14%, rgba(7, 27, 77, .10), transparent 29%),
    linear-gradient(135deg, #ffffff 0%, #fafbfe 48%, #f0f4fa 100%);
}

.kha-scholarship-section *,
.kha-scholarship-section *::before,
.kha-scholarship-section *::after {
  box-sizing: border-box;
}

.kha-scholarship-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 27, 77, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .028) 1px, transparent 1px);
  background-size: 42px 42px;
}

.kha-scholarship-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(48px);
  pointer-events: none;
}

.kha-scholarship-glow-one {
  width: 360px;
  height: 360px;
  left: -190px;
  top: 160px;
  background: rgba(213, 11, 34, .13);
}

.kha-scholarship-glow-two {
  width: 400px;
  height: 400px;
  right: -210px;
  bottom: 240px;
  background: rgba(7, 27, 77, .12);
}

/* =========================================================
   COMMON PANELS
========================================================= */

.kha-scholarship-main-panel,
.kha-certificate-panel {
  position: relative;
  overflow: hidden;
  max-width: 1220px;
  margin: 0 auto;
  padding: 48px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 96% 3%, rgba(213, 11, 34, .10), transparent 25%),
    rgba(255, 255, 255, .96);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 28px 85px rgba(7, 27, 77, .11),
    inset 0 1px 0 rgba(255, 255, 255, .95);
}

.kha-scholarship-main-panel::before,
.kha-certificate-panel::before {
  content: "";
  position: absolute;
  top: -105px;
  right: -105px;
  width: 245px;
  height: 245px;
  border-radius: 50%;
  background: rgba(213, 11, 34, .065);
  pointer-events: none;
}

.kha-certificate-panel {
  margin-top: 42px;
}

/* =========================================================
   MAIN HEADING
========================================================= */

.kha-scholarship-heading,
.kha-certificate-heading {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto 40px;
  text-align: center;
}

.kha-scholarship-badge,
.kha-certificate-badge {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 17px;
  margin-bottom: 20px;
  border-radius: 999px;
  color: var(--kha-red);
  background: rgba(213, 11, 34, .085);
  border: 1px solid rgba(213, 11, 34, .11);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.kha-scholarship-heading h2,
.kha-certificate-heading h2 {
  max-width: 930px;
  margin: 0 auto;
  color: var(--kha-text);
  font-size: clamp(37px, 4.4vw, 42px);
  line-height: 1.05;
  letter-spacing: -2.5px;
  font-weight: 950;
}

.kha-scholarship-heading h2 span,
.kha-certificate-heading h2 span {
  display: block;
  color: var(--kha-red);
}

.kha-scholarship-divider,
.kha-certificate-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 22px auto 19px;
}

.kha-scholarship-divider span,
.kha-certificate-divider span {
  width: 62px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(213, 11, 34, .70)
  );
}

.kha-scholarship-divider span:last-child,
.kha-certificate-divider span:last-child {
  background: linear-gradient(
    90deg,
    rgba(213, 11, 34, .70),
    transparent
  );
}

.kha-scholarship-divider i,
.kha-certificate-divider i {
  color: var(--kha-red);
  font-size: 19px;
}

.kha-scholarship-heading p,
.kha-certificate-heading p {
  max-width: 820px;
  margin: 0 auto;
  color: var(--kha-muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 650;
}

/* =========================================================
   FOUR SUPPORT CARDS
========================================================= */

.kha-support-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.kha-support-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  min-height: 300px;
  padding: 26px 22px;
  border-radius: 27px;
  text-align: center;
  background:
    radial-gradient(circle at 92% 8%, rgba(213, 11, 34, .06), transparent 29%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 18px 48px rgba(7, 27, 77, .075);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.kha-support-card:hover {
  transform: translateY(-8px);
  border-color: rgba(213, 11, 34, .18);
  box-shadow: 0 28px 68px rgba(7, 27, 77, .13);
}

.kha-support-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  color: var(--kha-red);
  background: rgba(213, 11, 34, .09);
  box-shadow: 0 14px 34px rgba(213, 11, 34, .12);
  font-size: 28px;
}

.kha-support-card > strong {
  display: block;
  color: var(--kha-red);
  font-size: clamp(23px, 2.3vw, 31px);
  line-height: 1.12;
  font-weight: 950;
  margin-bottom: 5px;
}

.kha-support-card h3 {
  color: var(--kha-text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
  margin: 0;
}

.kha-card-line {
  width: 43px;
  height: 2px;
  display: block;
  margin: 16px auto;
  border-radius: 999px;
  background: var(--kha-red);
}

.kha-support-card p {
  color: var(--kha-muted);
  font-size: 13.5px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* =========================================================
   HOSTEL PANEL
========================================================= */

.kha-hostel-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 30px;
  margin-top: 26px;
  padding: 27px 34px;
  border-radius: 29px;
  background:
    radial-gradient(circle at 15% 30%, rgba(213, 11, 34, .10), transparent 30%),
    linear-gradient(135deg, #fff9fa 0%, #ffffff 100%);
  border: 1px solid rgba(213, 11, 34, .12);
  box-shadow: 0 18px 50px rgba(7, 27, 77, .07);
}

.kha-hostel-visual {
  min-height: 185px;
  position: relative;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(213, 11, 34, .13), transparent 48%);
}

.kha-hostel-house {
  color: rgba(213, 11, 34, .82);
  font-size: 112px;
  line-height: 1;
}

.kha-hostel-books {
  position: absolute;
  left: 50%;
  bottom: 18px;
  color: var(--kha-navy);
  font-size: 73px;
  line-height: 1;
  transform: translateX(-50%);
}

.kha-hostel-content h3 {
  color: var(--kha-text);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -1px;
  margin: 0;
}

.kha-hostel-line {
  width: 47px;
  height: 2px;
  display: block;
  margin: 15px 0 20px;
  border-radius: 999px;
  background: var(--kha-red);
}

.kha-hostel-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 28px;
}

.kha-hostel-points div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--kha-text);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 800;
}

.kha-hostel-points i {
  flex: 0 0 auto;
  color: var(--kha-red);
  margin-top: 2px;
}

/* =========================================================
   ACTION BUTTONS
========================================================= */

.kha-scholarship-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.kha-scholarship-btn {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 22px;
  text-decoration: none;
  transition: .26s ease;
}

.kha-scholarship-btn > span:first-child {
  width: 47px;
  height: 47px;
  flex: 0 0 47px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  font-size: 21px;
}

.kha-scholarship-btn > span:last-child {
  min-width: 0;
}

.kha-scholarship-btn strong,
.kha-scholarship-btn small {
  display: block;
}

.kha-scholarship-btn strong {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.kha-scholarship-btn small {
  margin-top: 4px;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 700;
}

.kha-scholarship-btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--kha-red), var(--kha-red-dark));
  box-shadow: 0 18px 38px rgba(213, 11, 34, .25);
}

.kha-scholarship-btn-primary > span:first-child {
  background: rgba(255, 255, 255, .13);
}

.kha-scholarship-btn-primary small {
  color: rgba(255, 255, 255, .72);
}

.kha-scholarship-btn-outline {
  color: var(--kha-text);
  background: #ffffff;
  border: 1px solid rgba(213, 11, 34, .55);
}

.kha-scholarship-btn-outline > span:first-child {
  color: var(--kha-red);
  background: rgba(213, 11, 34, .08);
}

.kha-scholarship-btn-outline small,
.kha-scholarship-btn-whatsapp small {
  color: var(--kha-muted);
}

.kha-scholarship-btn-whatsapp {
  color: var(--kha-text);
  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .10);
  box-shadow: 0 15px 38px rgba(7, 27, 77, .07);
}

.kha-scholarship-btn-whatsapp > span:first-child {
  color: #ffffff;
  background: #1db954;
}

.kha-scholarship-btn:hover {
  color: inherit;
  transform: translateY(-5px);
}

/* =========================================================
   WHY CHOOSE STRIP
========================================================= */

.kha-choose-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  padding: 22px 27px;
  border-radius: 25px;
  background:
    linear-gradient(135deg, rgba(213, 11, 34, .055), rgba(255, 255, 255, .95));
  border: 1px solid rgba(213, 11, 34, .10);
}

.kha-choose-title h3 {
  color: var(--kha-text);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 950;
  margin: 0;
}

.kha-choose-title > span {
  width: 38px;
  height: 2px;
  display: block;
  margin-top: 13px;
  background: var(--kha-red);
}

.kha-choose-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kha-choose-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 6px 15px;
  border-left: 1px solid rgba(7, 27, 77, .09);
}

.kha-choose-item i {
  color: var(--kha-red);
  font-size: 28px;
}

.kha-choose-item span {
  color: var(--kha-text);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 850;
}

/* =========================================================
   MISSION STRIP
========================================================= */

.kha-mission-strip {
  position: relative;
  z-index: 2;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  margin-top: 20px;
  padding: 15px 23px;
  border-radius: 18px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 50%, rgba(213, 11, 34, .16), transparent 35%),
    linear-gradient(135deg, var(--kha-navy), var(--kha-navy-dark));
}

.kha-mission-strip > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kha-mission-strip i {
  font-size: 25px;
}

.kha-mission-strip span {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.45;
  font-weight: 700;
}

.kha-mission-strip strong {
  color: #ff6372;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
  text-align: right;
}

/* =========================================================
   CERTIFICATE CAROUSEL
========================================================= */

.kha-certificate-carousel {
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.kha-certificate-viewport {
  overflow: hidden;
  width: 100%;
}

.kha-certificate-track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  transition: transform .45s ease;
}

.kha-certificate-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 25px;
  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 18px 48px rgba(7, 27, 77, .085);
}

.kha-certificate-image {
  position: relative;
  min-height: 270px;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff, #fbfcff);
  border-bottom: 1px solid rgba(7, 27, 77, .07);
}

.kha-certificate-image img {
  width: 100%;
  height: 245px;
  display: block;
  object-fit: contain;
  background: #ffffff;
  cursor: zoom-in;
  transition: transform .3s ease;
}

.kha-certificate-card:hover img {
  transform: scale(1.025);
}

.kha-certificate-zoom {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--kha-red), var(--kha-red-dark));
  box-shadow: 0 14px 30px rgba(213, 11, 34, .23);
  cursor: pointer;
}

.kha-certificate-card-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  padding: 17px 18px 20px;
}

.kha-certificate-card-content h3 {
  color: var(--kha-text);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 950;
  margin: 0 0 5px;
}

.kha-certificate-card-content p {
  color: var(--kha-muted);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
  margin: 0 0 5px;
}

.kha-certificate-card-content strong {
  display: block;
  color: var(--kha-red);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 900;
}

.kha-view-certificate {
  flex: 0 0 auto;
  min-height: 37px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--kha-red);
  background: #ffffff;
  border: 1px solid rgba(213, 11, 34, .34);
  font-size: 10.5px;
  line-height: 1;
  font-weight: 900;
  cursor: pointer;
  transition: .24s ease;
}

.kha-view-certificate:hover {
  color: #ffffff;
  background: var(--kha-red);
}

/* Certificate arrows */

.kha-certificate-arrow {
  position: absolute;
  top: 45%;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--kha-red);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 16px 38px rgba(7, 27, 77, .15);
  cursor: pointer;
  transform: translateY(-50%);
  transition: .24s ease;
}

.kha-certificate-arrow:hover {
  color: #ffffff;
  background: var(--kha-red);
  transform: translateY(-50%) scale(1.07);
}

.kha-certificate-prev {
  left: -24px;
}

.kha-certificate-next {
  right: -24px;
}

.kha-certificate-arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* Dots */

.kha-certificate-dots {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 14px;
}

.kha-certificate-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(213, 11, 34, .18);
  cursor: pointer;
  transition: .24s ease;
}

.kha-certificate-dot.active {
  width: 33px;
  background: var(--kha-red);
}

/* =========================================================
   IMPACT BOX
========================================================= */

.kha-impact-box {
  position: relative;
  z-index: 2;
  margin-top: 6px;
  padding: 24px 28px;
  border-radius: 25px;
  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 16px 46px rgba(7, 27, 77, .07);
}

.kha-impact-title {
  text-align: center;
  margin-bottom: 21px;
}

.kha-impact-title h3 {
  color: var(--kha-text);
  font-size: 24px;
  line-height: 1.2;
  font-weight: 950;
  margin: 0;
}

.kha-impact-title span {
  width: 43px;
  height: 2px;
  display: block;
  margin: 10px auto 0;
  background: var(--kha-red);
}

.kha-impact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kha-impact-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 8px 18px;
  border-left: 1px solid rgba(7, 27, 77, .09);
}

.kha-impact-item:first-child {
  border-left: 0;
}

.kha-impact-item > span {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--kha-red);
  background: rgba(213, 11, 34, .08);
  font-size: 22px;
}

.kha-impact-item strong,
.kha-impact-item h4,
.kha-impact-item small {
  display: block;
}

.kha-impact-item strong {
  color: var(--kha-red);
  font-size: 19px;
  line-height: 1.1;
  font-weight: 950;
}

.kha-impact-item h4 {
  color: var(--kha-text);
  font-size: 11.5px;
  line-height: 1.3;
  font-weight: 900;
  margin: 4px 0;
}

.kha-impact-item small {
  color: var(--kha-muted);
  font-size: 10px;
  line-height: 1.25;
  font-weight: 700;
}

/* =========================================================
   LIGHTBOX
========================================================= */

.kha-certificate-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(0, 8, 30, .91);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .28s ease,
    visibility .28s ease;
}

.kha-certificate-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.kha-lightbox-content {
  width: min(1100px, calc(100% - 130px));
  max-height: 90vh;
  padding: 14px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, .48);
  transform: scale(.95);
  transition: transform .28s ease;
}

.kha-certificate-lightbox.active .kha-lightbox-content {
  transform: scale(1);
}

.kha-lightbox-content img {
  width: 100%;
  max-height: calc(90vh - 28px);
  display: block;
  object-fit: contain;
  border-radius: 15px;
  background: #ffffff;
}

.kha-lightbox-close,
.kha-lightbox-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--kha-red), var(--kha-red-dark));
  box-shadow: 0 17px 38px rgba(0, 0, 0, .28);
  cursor: pointer;
}

.kha-lightbox-close {
  top: 22px;
  right: 22px;
  width: 48px;
  height: 48px;
}

.kha-lightbox-arrow {
  top: 50%;
  width: 52px;
  height: 52px;
  transform: translateY(-50%);
}

.kha-lightbox-prev {
  left: 22px;
}

.kha-lightbox-next {
  right: 22px;
}

body.kha-lightbox-open {
  overflow: hidden;
}

/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

  .kha-scholarship-main-panel,
  .kha-certificate-panel {
    padding: 38px;
  }

  .kha-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kha-support-card {
    min-height: 250px;
  }

  .kha-hostel-panel {
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .kha-choose-strip {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .kha-choose-items {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    overflow-x: auto;
  }
}

@media (max-width: 991px) {

  .kha-hostel-panel {
    grid-template-columns: 1fr;
  }

  .kha-hostel-visual {
    min-height: 170px;
  }

  .kha-scholarship-actions {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .kha-choose-strip {
    grid-template-columns: 1fr;
  }

  .kha-choose-title {
    text-align: center;
  }

  .kha-choose-title > span {
    margin-left: auto;
    margin-right: auto;
  }

  .kha-impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  .kha-impact-item:nth-child(3) {
    border-left: 0;
  }
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 767px) {

  .kha-scholarship-section {
    padding: 58px 0;
  }

  .kha-scholarship-main-panel,
  .kha-certificate-panel {
    padding: 22px 16px;
    border-radius: 26px;
  }

  .kha-certificate-panel {
    margin-top: 24px;
  }

  .kha-scholarship-heading,
  .kha-certificate-heading {
    margin-bottom: 30px;
  }

  .kha-scholarship-heading h2,
  .kha-certificate-heading h2 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -1.3px;
  }

  .kha-scholarship-heading p,
  .kha-certificate-heading p {
    font-size: 13.5px;
    line-height: 1.65;
  }

  .kha-scholarship-badge,
  .kha-certificate-badge {
    min-height: 36px;
    padding: 9px 13px;
    font-size: 10.5px;
  }

  .kha-support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .kha-support-card {
    min-height: 225px;
    padding: 18px 13px;
    border-radius: 21px;
  }

  .kha-support-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 13px;
    font-size: 22px;
  }

  .kha-support-card > strong {
    font-size: 21px;
  }

  .kha-support-card h3 {
    font-size: 13px;
  }

  .kha-support-card p {
    font-size: 11.5px;
    line-height: 1.55;
  }

  .kha-card-line {
    margin: 12px auto;
  }

  .kha-hostel-panel {
    padding: 19px;
    border-radius: 22px;
    gap: 17px;
  }

  .kha-hostel-visual {
    min-height: 130px;
  }

  .kha-hostel-house {
    font-size: 85px;
  }

  .kha-hostel-books {
    bottom: 5px;
    font-size: 54px;
  }

  .kha-hostel-content h3 {
    font-size: 23px;
  }

  .kha-hostel-points {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .kha-hostel-points div {
    font-size: 12.5px;
  }

  .kha-scholarship-btn {
    min-height: 70px;
    justify-content: flex-start;
    padding: 13px 16px;
  }

  .kha-choose-strip {
    padding: 20px 15px;
  }

  .kha-choose-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
    gap: 15px 0;
  }

  .kha-choose-item {
    justify-content: flex-start;
    border-left: 0;
  }

  .kha-choose-item:nth-child(even) {
    border-left: 1px solid rgba(7, 27, 77, .09);
  }

  .kha-mission-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .kha-mission-strip strong {
    width: 100%;
    text-align: left;
  }

  /* Mobile carousel */

  .kha-certificate-viewport {
    overflow: hidden;
  }

  .kha-certificate-track {
    display: flex;
    gap: 0;
  }

  .kha-certificate-card {
    min-width: 100%;
    border-radius: 21px;
  }

  .kha-certificate-image {
    min-height: 245px;
    padding: 12px;
  }

  .kha-certificate-image img {
    height: 220px;
  }

  .kha-certificate-card-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .kha-certificate-arrow {
    width: 42px;
    height: 42px;
    top: 38%;
  }

  .kha-certificate-prev {
    left: 7px;
  }

  .kha-certificate-next {
    right: 7px;
  }

  .kha-impact-box {
    padding: 20px 14px;
  }

  .kha-impact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kha-impact-item {
    justify-content: flex-start;
    padding: 14px 5px;
    border-left: 0;
    border-top: 1px solid rgba(7, 27, 77, .08);
  }

  .kha-impact-item:first-child {
    border-top: 0;
  }

  .kha-lightbox-content {
    width: 100%;
    padding: 8px;
  }

  .kha-lightbox-arrow {
    top: auto;
    bottom: 18px;
    width: 43px;
    height: 43px;
    transform: none;
  }

  .kha-lightbox-prev {
    left: 18px;
  }

  .kha-lightbox-next {
    right: 18px;
  }

  .kha-lightbox-close {
    top: 13px;
    right: 13px;
    width: 43px;
    height: 43px;
  }
}

@media (max-width: 420px) {

  .kha-scholarship-heading h2,
  .kha-certificate-heading h2 {
    font-size: 28px;
  }

  .kha-support-grid {
    grid-template-columns: 1fr;
  }

  .kha-support-card {
    min-height: auto;
    padding: 20px;
  }

  .kha-choose-items {
    grid-template-columns: 1fr;
  }

  .kha-choose-item,
  .kha-choose-item:nth-child(even) {
    border-left: 0;
    border-top: 1px solid rgba(7, 27, 77, .08);
    padding: 12px 5px;
  }

  .kha-choose-item:first-child {
    border-top: 0;
  }

  .kha-certificate-image {
    min-height: 205px;
  }

  .kha-certificate-image img {
    height: 185px;
  }
}



/* =========================================================
   KHADKESHWAR ULTRA PREMIUM FOOTER
========================================================= */

.knj-footer {
  --knj-footer-navy: #020d29;
  --knj-footer-navy-light: #071637;
  --knj-footer-card: rgba(255, 255, 255, .055);
  --knj-footer-card-hover: rgba(255, 255, 255, .085);
  --knj-footer-border: rgba(255, 255, 255, .11);
  --knj-footer-red: #e3142d;
  --knj-footer-red-dark: #b9081d;
  --knj-footer-green: #17a94b;
  --knj-footer-white: #ffffff;
  --knj-footer-muted: rgba(255, 255, 255, .70);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 58px 0 24px;
  color: var(--knj-footer-white);
  background:
    radial-gradient(circle at 4% 2%, rgba(227, 20, 45, .16), transparent 25%),
    radial-gradient(circle at 93% 12%, rgba(34, 77, 168, .13), transparent 29%),
    linear-gradient(145deg, #020b24 0%, #03102c 48%, #01081c 100%);
}

.knj-footer *,
.knj-footer *::before,
.knj-footer *::after {
  box-sizing: border-box;
}

.knj-footer a {
  text-decoration: none;
}

.knj-footer-decoration,
.knj-footer-grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.knj-footer-decoration {
  z-index: -2;
}

.knj-footer-grid-pattern {
  opacity: .32;
  background-image:
    linear-gradient(rgba(255, 255, 255, .026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .026) 1px, transparent 1px);
  background-size: 42px 42px;
}

.knj-footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
}

.knj-footer-glow-one {
  width: 300px;
  height: 300px;
  left: -170px;
  top: 80px;
  background: rgba(227, 20, 45, .20);
}

.knj-footer-glow-two {
  width: 340px;
  height: 340px;
  right: -190px;
  top: 220px;
  background: rgba(37, 92, 207, .14);
}

.knj-footer-glow-three {
  width: 300px;
  height: 300px;
  right: 25%;
  bottom: -220px;
  background: rgba(227, 20, 45, .12);
}

/* =========================================================
   BRAND HEADER
========================================================= */

.knj-footer-brand-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.knj-footer-main-brand {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  color: #ffffff;
}

.knj-footer-main-brand:hover {
  color: #ffffff;
}

.knj-footer-logo-wrap {
  width: 84px;
  height: 84px;
  flex: 0 0 84px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
}

.knj-footer-logo-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.knj-footer-brand-text h2 {
  color: #ffffff;
  font-size: 31px;
  line-height: 1.08;
  letter-spacing: -.65px;
  font-weight: 900;
  margin: 0 0 7px;
}

.knj-footer-brand-text p {
  color: rgba(255, 255, 255, .78);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0;
}

.knj-footer-menu-box {
  width: 68px;
  height: 68px;
  flex: 0 0 68px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #ffffff;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .17);
  font-size: 38px;
  transition: .25s ease;
}

.knj-footer-menu-box:hover {
  color: #ffffff;
  background: rgba(227, 20, 45, .17);
  transform: translateY(-3px);
}

.knj-footer-top-divider {
  width: 100%;
  height: 1px;
  margin: 26px 0;
  background: rgba(255, 255, 255, .18);
}

/* =========================================================
   ABOUT ROW
========================================================= */

.knj-footer-about-row {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 27px;
}

.knj-footer-about-icon {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .16), transparent 30%),
    linear-gradient(135deg, var(--knj-footer-red), var(--knj-footer-red-dark));
  box-shadow: 0 15px 36px rgba(227, 20, 45, .30);
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
}

.knj-footer-about-content {
  flex: 1;
  min-width: 0;
}

.knj-footer-about-content > p {
  max-width: 690px;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.68;
  font-weight: 500;
  margin: 0 0 20px;
}

.knj-footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}

.knj-footer-socials a {
  width: 55px;
  height: 55px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .11);
  font-size: 22px;
  transition: .25s ease;
}

.knj-footer-socials a:hover {
  color: #ffffff;
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, .22);
}

.knj-social-facebook:hover {
  background: #1877f2 !important;
}

.knj-social-instagram:hover {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045) !important;
}

.knj-social-youtube:hover {
  background: #ff0000 !important;
}

.knj-social-whatsapp {
  color: #48e577 !important;
}

.knj-social-whatsapp:hover {
  color: #ffffff !important;
  background: #18a84b !important;
}

/* =========================================================
   COMMON CARDS
========================================================= */

.knj-footer-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.knj-footer-link-card,
.knj-footer-contact-card,
.knj-footer-legal-card {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background: var(--knj-footer-card);
  border: 1px solid var(--knj-footer-border);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.knj-footer-link-card {
  padding: 24px;
}

.knj-footer-card-heading {
  display: flex;
  align-items: center;
  gap: 13px;
}

.knj-footer-card-heading > span {
  color: var(--knj-footer-red);
  font-size: 26px;
  line-height: 1;
}

.knj-footer-card-heading h3 {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0;
}

.knj-footer-heading-line {
  width: 39px;
  height: 2px;
  margin: 17px 0 16px 42px;
  border-radius: 999px;
  background: var(--knj-footer-red);
}

/* =========================================================
   LINKS
========================================================= */

.knj-footer-links {
  display: grid;
  gap: 3px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.knj-footer-links li {
  margin: 0;
}

.knj-footer-links a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  color: rgba(255, 255, 255, .81);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 500;
  transition: .24s ease;
}

.knj-footer-links a > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.knj-footer-links a i {
  font-size: 12px;
}

.knj-footer-links a > i {
  color: rgba(255, 255, 255, .78);
}

.knj-footer-links a:hover {
  color: #ffffff;
  padding-left: 7px;
}

.knj-footer-links a:hover i {
  color: var(--knj-footer-red);
}

/* =========================================================
   CONTACT INFORMATION
========================================================= */

.knj-footer-contact-card {
  padding: 24px;
  margin-bottom: 20px;
}

.knj-footer-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.knj-footer-contact-item {
  min-width: 0;
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 19px 14px;
  border-radius: 20px;
  color: #ffffff;
  text-align: center;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .10);
  transition: .25s ease;
}

a.knj-footer-contact-item:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .075);
  transform: translateY(-5px);
}

.knj-contact-icon {
  width: 59px;
  height: 59px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  font-size: 25px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .20);
}

.knj-contact-red {
  background: linear-gradient(
    135deg,
    var(--knj-footer-red),
    var(--knj-footer-red-dark)
  );
}

.knj-contact-green {
  background: linear-gradient(135deg, #1fb858, #08792f);
}

.knj-footer-contact-item small {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 5px;
}

.knj-footer-contact-item strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.38;
  font-weight: 800;
  overflow-wrap: anywhere;
}

/* =========================================================
   LEGAL INFORMATION
========================================================= */

.knj-footer-legal-card {
  padding: 0 23px;
  margin-bottom: 20px;
}

.knj-footer-legal-heading {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
}

.knj-footer-legal-heading > i {
  font-size: 18px;
  transition: transform .25s ease;
}

.knj-footer-legal-heading[aria-expanded="true"] > i {
  transform: rotate(180deg);
}

.knj-footer-legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 21px 0;
}

.knj-legal-item {
  min-width: 0;
  padding: 0 20px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.knj-legal-item:first-child {
  border-left: 0;
}

.knj-legal-item span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 6px;
}

.knj-legal-item strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
  overflow-wrap: anywhere;
}

/* =========================================================
   ADMISSION CTA
========================================================= */

.knj-footer-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 25px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 10% 50%, rgba(227, 20, 45, .30), transparent 31%),
    linear-gradient(135deg, rgba(227, 20, 45, .17), rgba(255, 255, 255, .045));
  border: 1px solid rgba(227, 20, 45, .65);
  box-shadow: 0 20px 52px rgba(0, 0, 0, .13);
}

.knj-footer-cta::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(227, 20, 45, .09);
  pointer-events: none;
}

.knj-footer-cta-icon {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(227, 20, 45, .14);
  border: 1px solid rgba(227, 20, 45, .58);
  font-size: 39px;
}

.knj-footer-cta-content {
  position: relative;
  z-index: 2;
}

.knj-footer-cta-content > span {
  display: block;
  color: #ff5368;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 7px;
}

.knj-footer-cta-content h3 {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  margin: 0;
}

.knj-footer-cta-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 14px;
}

.knj-footer-apply-button,
.knj-footer-call-button,
.knj-footer-whatsapp-button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
  transition: .25s ease;
}

.knj-footer-apply-button {
  grid-column: 1 / -1;
  width: 195px;
  justify-self: center;
  color: #ffffff;
  border: 0;
  background: linear-gradient(
    135deg,
    var(--knj-footer-red),
    #f52945
  );
  box-shadow: 0 13px 32px rgba(227, 20, 45, .28);
}

.knj-footer-call-button {
  color: #ffffff;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .35);
}

.knj-footer-whatsapp-button {
  color: #ffffff;
  background: linear-gradient(135deg, #138c3d, #075c29);
  border: 1px solid rgba(39, 214, 101, .37);
}

.knj-footer-apply-button:hover,
.knj-footer-call-button:hover,
.knj-footer-whatsapp-button:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* =========================================================
   FOOTER BOTTOM
========================================================= */

.knj-footer-bottom {
  margin-top: 27px;
  padding: 24px 15px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.knj-footer-bottom p {
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.45;
  margin: 0 0 4px;
}

.knj-footer-policy-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 17px;
}

.knj-footer-policy-links a {
  color: rgba(255, 255, 255, .55);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  transition: .25s ease;
}

.knj-footer-policy-links a:hover {
  color: #ffffff;
}

.knj-footer-policy-links span {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, .28);
}

/* =========================================================
   BACK TO TOP
========================================================= */

.knj-footer-back-top {
  position: absolute;
  right: 31px;
  bottom: 27px;
  width: 54px;
  height: 54px;
  z-index: 5;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--knj-footer-red);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(227, 20, 45, .25);
  font-size: 24px;
  transition: .25s ease;
}

.knj-footer-back-top:hover {
  color: #ffffff;
  background: var(--knj-footer-red);
  transform: translateY(-5px);
}

/* =========================================================
   LAPTOP RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

  .knj-footer-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knj-footer-contact-item {
    min-height: 140px;
  }

  .knj-footer-cta {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .knj-footer-cta-actions {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
  }

  .knj-footer-apply-button {
    grid-column: auto;
    width: auto;
  }
}

/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .knj-footer-brand-text h2 {
    font-size: 27px;
  }

  .knj-footer-about-content > p {
    max-width: none;
  }

  .knj-footer-links-grid {
    grid-template-columns: 1fr;
  }

  .knj-footer-legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 0;
  }

  .knj-legal-item:nth-child(3) {
    border-left: 0;
  }

  .knj-footer-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .knj-footer-cta-icon {
    margin: auto;
  }
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 767px) {

  .knj-footer {
    padding: 40px 0 82px;
  }

  .knj-footer-brand-header {
    align-items: center;
  }

  .knj-footer-main-brand {
    gap: 12px;
  }

  .knj-footer-logo-wrap {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .knj-footer-brand-text h2 {
    font-size: 19px;
    line-height: 1.08;
    letter-spacing: -.25px;
  }

  .knj-footer-brand-text p {
    font-size: 11.5px;
    line-height: 1.25;
  }

  .knj-footer-menu-box {
    width: 47px;
    height: 47px;
    flex-basis: 47px;
    border-radius: 13px;
    font-size: 27px;
  }

  .knj-footer-top-divider {
    margin: 20px 0;
  }

  .knj-footer-about-row {
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
  }

  .knj-footer-about-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    font-size: 14px;
  }

  .knj-footer-about-content > p {
    font-size: 13px;
    line-height: 1.62;
    margin-bottom: 15px;
  }

  .knj-footer-socials {
    gap: 9px;
  }

  .knj-footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 18px;
  }

  .knj-footer-links-grid {
    gap: 14px;
  }

  .knj-footer-link-card,
  .knj-footer-contact-card {
    padding: 18px;
    border-radius: 21px;
  }

  .knj-footer-card-heading h3 {
    font-size: 17px;
  }

  .knj-footer-card-heading > span {
    font-size: 21px;
  }

  .knj-footer-heading-line {
    margin: 13px 0 12px 34px;
  }

  .knj-footer-links a {
    min-height: 38px;
    font-size: 14px;
  }

  .knj-footer-contact-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .knj-footer-contact-item {
    min-height: auto;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 13px;
    padding: 13px;
    text-align: left;
  }

  .knj-contact-icon {
    width: 47px;
    height: 47px;
    flex: 0 0 47px;
    font-size: 19px;
  }

  .knj-footer-contact-item small {
    font-size: 11.5px;
  }

  .knj-footer-contact-item strong {
    font-size: 13px;
  }

  .knj-footer-legal-card {
    padding: 0 17px;
    border-radius: 21px;
  }

  .knj-footer-legal-heading {
    min-height: 63px;
  }

  .knj-footer-legal-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 11px 0 16px;
  }

  .knj-legal-item,
  .knj-legal-item:nth-child(3) {
    padding: 14px 5px;
    text-align: left;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
  }

  .knj-legal-item:first-child {
    border-top: 0;
  }

  .knj-footer-cta {
    gap: 16px;
    padding: 20px 16px;
    border-radius: 22px;
  }

  .knj-footer-cta-icon {
    width: 66px;
    height: 66px;
    font-size: 28px;
  }

  .knj-footer-cta-content > span {
    font-size: 12px;
  }

  .knj-footer-cta-content h3 {
    font-size: 21px;
  }

  .knj-footer-cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .knj-footer-apply-button,
  .knj-footer-call-button,
  .knj-footer-whatsapp-button {
    width: 100%;
    min-height: 47px;
  }

  .knj-footer-bottom {
    padding-top: 20px;
  }

  .knj-footer-bottom p {
    font-size: 12.5px;
  }

  .knj-footer-policy-links {
    gap: 12px;
    margin-top: 13px;
  }

  .knj-footer-policy-links a {
    font-size: 12.5px;
  }

  .knj-footer-back-top {
    position: absolute;
    right: 18px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    font-size: 20px;
  }
}

@media (max-width: 420px) {

  .knj-footer-brand-text h2 {
    font-size: 17px;
  }

  .knj-footer-brand-text p {
    font-size: 10.5px;
  }

  .knj-footer-about-row {
    flex-direction: column;
  }

  .knj-footer-about-icon {
    margin-bottom: 2px;
  }

  .knj-footer-policy-links {
    flex-wrap: wrap;
  }
}






/* =========================================================
   FLOATING CONTACT CSS - ULTRA PRO PREMIUM RESPONSIVE
========================================================= */

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 9998;
  display: grid;
  gap: 12px;
}

.floating-btn {
  position: relative;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 18px 42px rgba(0, 11, 38, .24),
    inset 0 1px 0 rgba(255, 255, 255, .20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: .28s ease;
}

.floating-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 1;
}

.floating-btn::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -45%;
  width: 48%;
  height: 220%;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .32), transparent);
  transform: rotate(18deg);
  animation: floatingShine 4.5s ease-in-out infinite;
}

@keyframes floatingShine {

  0%,
  55% {
    left: -48%;
  }

  100% {
    left: 125%;
  }
}

.float-phone::before {
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .24), transparent 28%),
    linear-gradient(135deg, var(--primary-blue), var(--primary-dark));
}

.float-whatsapp::before {
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .24), transparent 28%),
    linear-gradient(135deg, #22c55e, #128c4a);
}

.floating-btn i {
  position: relative;
  z-index: 2;
  font-size: 23px;
  line-height: 1;
  transition: .25s ease;
}

.floating-btn small {
  position: absolute;
  left: 50%;
  bottom: 7px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .86);
  font-size: 8.5px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .2px;
  opacity: .92;
}

.floating-btn:hover {
  color: var(--white);
  transform: translateY(-5px) scale(1.04);
}

.float-phone:hover {
  box-shadow:
    0 22px 52px rgba(0, 11, 38, .34),
    0 0 0 7px rgba(7, 27, 77, .12);
}

.float-whatsapp:hover {
  box-shadow:
    0 22px 52px rgba(34, 197, 94, .28),
    0 0 0 7px rgba(34, 197, 94, .13);
}

.floating-btn:hover i {
  transform: translateY(-3px) scale(1.08);
}

.floating-pulse {
  position: absolute;
  inset: -7px;
  z-index: -3;
  border-radius: 26px;
  opacity: .65;
  animation: floatingPulse 2.2s ease-in-out infinite;
}

.float-phone .floating-pulse {
  background: rgba(212, 13, 31, .24);
}

.float-whatsapp .floating-pulse {
  background: rgba(34, 197, 94, .24);
  animation-delay: .5s;
}

@keyframes floatingPulse {
  0% {
    transform: scale(.92);
    opacity: .65;
  }

  70% {
    transform: scale(1.18);
    opacity: 0;
  }

  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 767px) {
  .floating-contact {
    left: 14px;
    right: 14px;
    bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(0, 11, 38, .76);
    border: 1px solid rgba(255, 255, 255, .13);
    box-shadow: 0 18px 54px rgba(0, 11, 38, .32);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .floating-btn {
    width: 100%;
    height: 52px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
  }

  .floating-btn i {
    font-size: 19px;
  }

  .floating-btn small {
    position: static;
    transform: none;
    font-size: 12px;
    opacity: 1;
  }

  .floating-pulse {
    display: none;
  }
}

@media (max-width: 480px) {
  .floating-contact {
    left: 10px;
    right: 10px;
    bottom: 12px;
    padding: 9px;
    border-radius: 22px;
  }

  .floating-btn {
    height: 50px;
    border-radius: 16px;
  }

  .floating-btn small {
    font-size: 11.5px;
  }
}











/* =========================
   MODAL CSS
========================= */
.modal-content {
  border: 0;
  border-radius: 26px;
  overflow: hidden;
}

.admission-form-head {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  color: var(--white);
  padding: 28px;
}

.admission-form-head h3 {
  margin: 0 0 6px;
  font-weight: 900;
}

.admission-form-head p {
  margin: 0;
  color: rgba(255, 255, 255, .74);
}

.form-control,
.form-select {
  min-height: 50px;
  border-radius: 14px;
  border: 1px solid rgba(7, 27, 77, .12);
  font-weight: 700;
  box-shadow: none !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent-red);
}

.form-label {
  font-weight: 900;
  font-size: 13px;
  color: var(--primary-dark);
}

.success-msg {
  display: none;
  padding: 13px 15px;
  border-radius: 14px;
  background: rgba(22, 163, 74, .1);
  color: #15803d;
  font-weight: 800;
  margin-bottom: 16px;
}

.lightbox-modal .modal-content {
  background: transparent;
  box-shadow: none;
}

.lightbox-img {
  border-radius: 24px;
  max-height: 82vh;
  width: auto;
  margin: auto;
  box-shadow: var(--shadow);
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
}




/* =========================================================
   ADMISSION MODAL CSS - EXTRA ULTRA PRO PREMIUM
========================================================= */

.admission-modal {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.admission-modal .modal-dialog {
  padding: 14px;
}

.admission-modal-content {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 30px;
  background: var(--white);
  box-shadow:
    0 34px 100px rgba(0, 11, 38, .28),
    inset 0 1px 0 rgba(255, 255, 255, .90);
}

.admission-modal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 12%, rgba(212, 13, 31, .07), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(7, 27, 77, .06), transparent 26%);
  pointer-events: none;
}

/* =========================
   MODAL HEADER
========================= */

.admission-form-head {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(212, 13, 31, .38), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, .11), transparent 26%),
    linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admission-form-head::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .55;
  pointer-events: none;
}

.admission-form-head::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  top: -110px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .20);
  pointer-events: none;
}

.modal-head-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.modal-head-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, .24), transparent 28%),
    linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
  color: var(--white);
  font-size: 25px;
  box-shadow: 0 18px 40px rgba(212, 13, 31, .28);
}

.modal-small-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 8px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  color: #ffccd1;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.admission-form-head h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 7px;
  color: var(--white);
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.4px;
}

.admission-form-head p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
}

.modal-close-btn {
  position: relative;
  z-index: 4;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .10);
  color: var(--white);
  font-size: 16px;
  transition: .25s ease;
}

.modal-close-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  transform: rotate(90deg);
}

/* =========================
   MODAL BODY
========================= */

.admission-modal-body {
  position: relative;
  z-index: 2;
  padding: 28px;
  background:
    radial-gradient(circle at 96% 4%, rgba(212, 13, 31, .05), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.success-msg {
  display: none;
  align-items: center;
  gap: 9px;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(22, 163, 74, .10);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, .16);
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 16px;
}

.success-msg i {
  font-size: 16px;
}

.global-success-msg {
  position: fixed;
  top: 92px;
  right: 24px;
  z-index: 9999;
  display: flex;
  max-width: min(420px, calc(100vw - 32px));
  box-shadow: 0 18px 44px rgba(7, 27, 77, .16);
}

/* =========================
   FORM
========================= */

.form-label {
  color: var(--primary-dark);
  font-size: 12.5px;
  line-height: 1.2;
  font-weight: 900;
  margin-bottom: 8px;
}

.form-label span {
  color: var(--accent-red);
}

.input-box {
  position: relative;
}

.input-box>i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  color: var(--accent-red);
  font-size: 15px;
  pointer-events: none;
}

.textarea-box>i {
  top: 18px;
  transform: none;
}

.form-control,
.form-select {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(7, 27, 77, .12);
  background: rgba(255, 255, 255, .92);
  color: var(--primary-dark);
  font-size: 13.5px;
  font-weight: 750;
  padding-left: 42px;
  box-shadow:
    0 10px 28px rgba(0, 11, 38, .045),
    inset 0 1px 0 rgba(255, 255, 255, .90) !important;
  transition: .25s ease;
}

.form-select {
  cursor: pointer;
}

textarea.form-control {
  min-height: 112px;
  resize: none;
  padding-top: 14px;
}

.form-control::placeholder {
  color: rgba(94, 100, 117, .66);
  font-weight: 650;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(212, 13, 31, .48);
  background: var(--white);
  box-shadow:
    0 0 0 4px rgba(212, 13, 31, .10),
    0 14px 34px rgba(0, 11, 38, .07) !important;
}

.input-box:focus-within>i {
  color: var(--accent-red-dark);
}

/* =========================
   ACTION BUTTONS
========================= */

.modal-action-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(7, 27, 77, .08);
}

.modal-cancel-btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(7, 27, 77, .10);
  background: var(--white);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(0, 11, 38, .05);
  transition: .25s ease;
}

.modal-cancel-btn:hover {
  color: var(--accent-red);
  transform: translateY(-2px);
  border-color: rgba(212, 13, 31, .18);
}

.modal-submit-btn {
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 16px 34px rgba(212, 13, 31, .22);
}

/* =========================================================
   LIGHTBOX MODAL CSS
========================================================= */

.lightbox-modal .modal-content {
  background: transparent;
  box-shadow: none;
  border: 0;
}

.lightbox-img {
  border-radius: 24px;
  max-height: 82vh;
  width: auto;
  margin: auto;
  box-shadow: 0 28px 80px rgba(0, 11, 38, .28);
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 22px;
  overflow: hidden;
}

/* =========================================================
   RESPONSIVE MODAL
========================================================= */

@media (max-width: 767px) {
  .admission-modal .modal-dialog {
    padding: 10px;
    margin: 0;
  }

  .admission-modal-content {
    border-radius: 24px;
  }

  .admission-form-head {
    padding: 20px;
    gap: 12px;
  }

  .modal-head-content {
    gap: 12px;
  }

  .modal-head-icon {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-radius: 17px;
    font-size: 21px;
  }

  .modal-small-badge {
    min-height: 28px;
    padding: 7px 10px;
    font-size: 10.5px;
    margin-bottom: 10px;
  }

  .admission-form-head h3 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .admission-form-head p {
    font-size: 13px;
    line-height: 1.5;
  }

  .modal-close-btn {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 13px;
  }

  .admission-modal-body {
    padding: 20px;
  }

  .form-label {
    font-size: 12px;
  }

  .form-control,
  .form-select {
    min-height: 50px;
    border-radius: 15px;
    font-size: 13px;
  }

  textarea.form-control {
    min-height: 105px;
  }

  .modal-action-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .modal-cancel-btn,
  .modal-submit-btn {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  .admission-modal .modal-dialog {
    padding: 8px;
  }

  .admission-modal-content {
    border-radius: 22px;
  }

  .admission-form-head {
    padding: 18px;
  }

  .modal-head-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 15px;
    font-size: 19px;
  }

  .admission-form-head h3 {
    font-size: 22px;
  }

  .admission-modal-body {
    padding: 16px;
  }

  .input-box>i {
    left: 13px;
  }

  .form-control,
  .form-select {
    padding-left: 38px;
    font-size: 12.8px;
  }
}







/* =========================
   HOVER ANIMATION CSS
========================= */
.hover-card {
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.hover-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
  border-color: rgba(212, 13, 31, .18);
}

.tilt-card {
  transition: transform .25s ease, box-shadow .25s ease;
  transform-style: preserve-3d;
}















/* =========================================================
   EXTRA SECTIONS CSS - STARTUP / VISION / APP / IMPACT
========================================================= */
/* =========================================================
   WHY STUDENTS & PARENTS TRUST US
========================================================= */

.startup-recognition-section.trust-us-section {
  position: relative;
  z-index: 5;
  margin-top: 0;
  padding: 70px 0;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(212, 13, 31, .08),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 12%,
      rgba(51, 106, 230, .07),
      transparent 30%
    ),
    linear-gradient(135deg, #fffafa 0%, #ffffff 50%, #f8f9fc 100%);
}

/* MAIN WRAPPER */

.trust-us-wrap {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border-radius: 36px;

  background:
    radial-gradient(
      circle at 4% 4%,
      rgba(212, 13, 31, .05),
      transparent 24%
    ),
    rgba(255, 255, 255, .96);

  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 32px 90px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .96);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.trust-us-wrap::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  left: -130px;
  top: -140px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .06);
  pointer-events: none;
}

.trust-us-wrap::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -150px;
  bottom: -160px;
  border-radius: 50%;
  background: rgba(73, 93, 220, .06);
  pointer-events: none;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.trust-us-head {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0 auto 38px;
  text-align: center;
}

.trust-us-badge {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 18px;
  padding: 9px 17px;

  border-radius: 999px;

  color: #d40d1f;
  background: rgba(212, 13, 31, .09);
  border: 1px solid rgba(212, 13, 31, .11);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.trust-us-badge i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;
  background: linear-gradient(135deg, #e20c28, #b8051c);

  font-size: 11px;
}

.trust-us-head h2 {
  max-width: 900px;
  margin: 0 auto 16px;

  color: #071b4d;

  font-size: clamp(38px, 4.5vw, 58px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -2.3px;
}

.trust-us-head h2 span {
  color: #d40d1f;
}

.trust-us-head p {
  max-width: 800px;
  margin: 0 auto;

  color: rgba(7, 27, 77, .67);

  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

/* =========================================================
   CARDS GRID
========================================================= */

.startup-recognition-grid.trust-us-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

/* CARD */

.startup-recognition-card.trust-card {
  --trust-color: #d40d1f;
  --trust-soft: rgba(212, 13, 31, .08);

  position: relative;
  overflow: hidden;

  min-height: 280px;
  padding: 0;

  display: flex;
  flex-direction: column;

  border-radius: 28px;

  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(7, 27, 77, .09);

  box-shadow:
    0 20px 52px rgba(7, 27, 77, .08),
    inset 0 1px 0 rgba(255, 255, 255, .96);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.startup-recognition-card.trust-card:hover {
  transform: translateY(-7px);
  border-color: color-mix(in srgb, var(--trust-color) 28%, transparent);
  box-shadow: 0 30px 68px rgba(7, 27, 77, .13);
}

/* COLOR THEMES */

.trust-card-red {
  --trust-color: #d40d1f;
  --trust-soft: rgba(212, 13, 31, .08);
}

.trust-card-blue {
  --trust-color: #2969db;
  --trust-soft: rgba(41, 105, 219, .08);
}

.trust-card-green {
  --trust-color: #20a542;
  --trust-soft: rgba(32, 165, 66, .08);
}

.trust-card-purple {
  --trust-color: #9b3ed0;
  --trust-soft: rgba(155, 62, 208, .08);
}

/* CARD MAIN */

.trust-card-main {
  min-height: 210px;

  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 22px;
  align-items: center;

  padding: 28px;
}

/* ICON */

.trust-card .startup-recognition-icon.trust-card-icon {
  width: 126px;
  height: 126px;

  display: grid;
  place-items: center;

  margin: 0;

  border-radius: 30px;

  color: var(--trust-color);

  background:
    radial-gradient(
      circle at 25% 20%,
      rgba(255, 255, 255, .85),
      transparent 34%
    ),
    var(--trust-soft);

  border: 1px solid color-mix(
    in srgb,
    var(--trust-color) 12%,
    transparent
  );

  box-shadow:
    0 18px 38px color-mix(
      in srgb,
      var(--trust-color) 12%,
      transparent
    );

  font-size: 55px;
}

/* CARD TEXT */

.trust-card-content {
  min-width: 0;
}

.trust-card-content h3 {
  margin: 0 0 13px;

  color: #071b4d;

  font-size: 25px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -.5px;
}

.trust-card-line {
  width: 34px;
  height: 3px;

  display: block;

  margin-bottom: 15px;

  border-radius: 999px;

  background: var(--trust-color);
}

.trust-card-content p {
  margin: 0;

  color: rgba(7, 27, 77, .66);

  font-size: 15px;
  line-height: 1.55;
  font-weight: 600;
}

/* CARD FOOTER */

.trust-card-footer {
  min-height: 70px;

  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: auto;
  padding: 16px 28px;

  color: #071b4d;

  background:
    linear-gradient(
      135deg,
      var(--trust-soft),
      rgba(255, 255, 255, .75)
    );

  border-top: 1px solid rgba(7, 27, 77, .05);

  font-size: 14px;
  line-height: 1.35;
  font-weight: 800;
}

.trust-card-footer > i {
  width: 38px;
  height: 38px;
  min-width: 38px;

  display: grid;
  place-items: center;

  color: var(--trust-color);

  font-size: 25px;
}

.trust-card-footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.trust-card-footer strong {
  color: var(--trust-color);
  font-size: 16px;
  font-weight: 950;
}

.trust-card-footer b {
  width: 1px;
  height: 18px;

  display: inline-block;

  background: rgba(7, 27, 77, .18);
}

/* =========================================================
   COMMITMENT BOX
========================================================= */

.trust-commitment-box {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: auto 1px 1fr auto;
  align-items: center;
  gap: 25px;

  margin-top: 24px;
  padding: 24px 30px;

  border-radius: 27px;

  background:
    radial-gradient(
      circle at 5% 50%,
      rgba(212, 13, 31, .11),
      transparent 24%
    ),
    linear-gradient(
      135deg,
      rgba(255, 245, 247, .96),
      rgba(255, 255, 255, .98)
    );

  border: 1px solid rgba(212, 13, 31, .08);

  box-shadow:
    0 20px 52px rgba(7, 27, 77, .07);
}

.trust-commitment-title {
  display: flex;
  align-items: center;
  gap: 16px;

  white-space: nowrap;
}

.trust-commitment-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;

  display: grid;
  place-items: center;

  border-radius: 20px;

  color: #ffffff;

  background: linear-gradient(135deg, #df0b27, #aa0419);

  box-shadow: 0 16px 36px rgba(212, 13, 31, .25);

  font-size: 28px;
}

.trust-commitment-title strong {
  color: #c90a20;

  font-size: 18px;
  line-height: 1.2;
  font-weight: 950;
}

.trust-commitment-divider {
  width: 1px;
  height: 46px;

  background: rgba(212, 13, 31, .18);
}

.trust-commitment-box > p {
  max-width: 650px;
  margin: 0;

  color: rgba(7, 27, 77, .72);

  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
}

/* STUDENT COUNT */

.trust-student-count {
  display: flex;
  align-items: center;
  gap: 13px;

  min-width: 210px;
}

.trust-student-count > span {
  width: 55px;
  height: 55px;
  min-width: 55px;

  display: grid;
  place-items: center;

  border-radius: 18px;

  color: #ffffff;
  background: linear-gradient(135deg, #df0b27, #b0041a);

  box-shadow: 0 15px 32px rgba(212, 13, 31, .22);

  font-size: 22px;
}

.trust-student-count strong {
  display: block;

  color: #c90a20;

  font-size: 27px;
  line-height: 1;
  font-weight: 950;
}

.trust-student-count small {
  display: block;

  margin-top: 5px;

  color: #071b4d;

  font-size: 11px;
  line-height: 1.2;
  font-weight: 800;
}

/* =========================================================
   LAPTOP RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

  .trust-us-wrap {
    padding: 32px;
  }

  .trust-card-main {
    grid-template-columns: 112px 1fr;
    gap: 18px;
    padding: 24px;
  }

  .trust-card .startup-recognition-icon.trust-card-icon {
    width: 105px;
    height: 105px;
    border-radius: 25px;
    font-size: 45px;
  }

  .trust-card-content h3 {
    font-size: 21px;
  }

  .trust-card-content p {
    font-size: 13.5px;
  }

  .trust-commitment-box {
    grid-template-columns: auto 1px 1fr;
  }

  .trust-student-count {
    grid-column: 1 / -1;
    justify-content: center;

    padding-top: 18px;

    border-top: 1px solid rgba(7, 27, 77, .08);
  }
}

/* =========================================================
   TABLET RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .startup-recognition-section.trust-us-section {
    padding: 55px 0;
  }

  .startup-recognition-grid.trust-us-grid {
    grid-template-columns: 1fr;
  }

  .trust-us-head h2 {
    font-size: 42px;
  }

  .trust-card-main {
    grid-template-columns: 130px 1fr;
  }

  .trust-card .startup-recognition-icon.trust-card-icon {
    width: 118px;
    height: 118px;
  }
}

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 767px) {

  .startup-recognition-section.trust-us-section {
    padding: 42px 0;
  }

  .trust-us-wrap {
    padding: 20px 14px;
    border-radius: 25px;
  }

  .trust-us-head {
    margin-bottom: 28px;
  }

  .trust-us-head h2 {
    font-size: 32px;
    line-height: 1.08;
    letter-spacing: -1.2px;
  }

  .trust-us-head p {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .startup-recognition-grid.trust-us-grid {
    gap: 14px;
  }

  .startup-recognition-card.trust-card {
    min-height: auto;
    border-radius: 22px;
  }

  .trust-card-main {
    min-height: auto;

    grid-template-columns: 78px 1fr;
    gap: 14px;

    padding: 18px 15px;
  }

  .trust-card .startup-recognition-icon.trust-card-icon {
    width: 72px;
    height: 72px;

    border-radius: 20px;

    font-size: 31px;
  }

  .trust-card-content h3 {
    margin-bottom: 8px;

    font-size: 18px;
  }

  .trust-card-line {
    width: 28px;
    margin-bottom: 10px;
  }

  .trust-card-content p {
    font-size: 12px;
    line-height: 1.5;
  }

  .trust-card-footer {
    min-height: 58px;

    padding: 12px 16px;

    font-size: 11.5px;
  }

  .trust-card-footer > i {
    width: 32px;
    height: 32px;
    min-width: 32px;

    font-size: 20px;
  }

  .trust-card-footer strong {
    font-size: 13px;
  }

  .trust-commitment-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 17px;

    padding: 20px 16px;

    border-radius: 22px;

    text-align: center;
  }

  .trust-commitment-title {
    justify-content: center;
    flex-direction: column;
    gap: 11px;
  }

  .trust-commitment-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;

    border-radius: 18px;

    font-size: 24px;
  }

  .trust-commitment-divider {
    width: 100%;
    height: 1px;
  }

  .trust-commitment-box > p {
    font-size: 12px;
  }

  .trust-student-count {
    min-width: 0;
    justify-content: center;

    padding-top: 16px;

    border-top: 1px solid rgba(7, 27, 77, .08);
  }
}

/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .trust-us-head h2 {
    font-size: 28px;
  }

  .trust-card-main {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-card .startup-recognition-icon.trust-card-icon {
    margin: 0 auto;
  }

  .trust-card-line {
    margin-left: auto;
    margin-right: auto;
  }

  .trust-card-footer {
    justify-content: center;
    text-align: center;
  }
}

/* =========================================================
   TRUST CARDS IMAGE-MATCH COLOR FIX
========================================================= */

/* -------------------------
   CARD 01 — RED
------------------------- */
.trust-card-red {
  --trust-color: #df1530 !important;
  --trust-soft: #fff0f3 !important;
}

.trust-card-red .trust-card-icon {
  color: #df1530 !important;
  background: linear-gradient(145deg, #fff7f8, #ffe8ec) !important;
  border-color: rgba(223, 21, 48, .14) !important;
  box-shadow: 0 18px 38px rgba(223, 21, 48, .12) !important;
}

.trust-card-red .trust-card-line {
  background: #df1530 !important;
}

.trust-card-red .trust-card-footer {
  background: linear-gradient(135deg, #fff1f3, #fff8f9) !important;
}

.trust-card-red .trust-card-footer i,
.trust-card-red .trust-card-footer strong {
  color: #df1530 !important;
}

/* -------------------------
   CARD 02 — BLUE
------------------------- */
.trust-card-blue {
  --trust-color: #2869dc !important;
  --trust-soft: #edf3ff !important;
}

.trust-card-blue .trust-card-icon {
  color: #2869dc !important;
  background: linear-gradient(145deg, #f5f8ff, #e6efff) !important;
  border-color: rgba(40, 105, 220, .15) !important;
  box-shadow: 0 18px 38px rgba(40, 105, 220, .12) !important;
}

.trust-card-blue .trust-card-line {
  background: #2869dc !important;
}

.trust-card-blue .trust-card-footer {
  background: linear-gradient(135deg, #edf3ff, #f8faff) !important;
}

.trust-card-blue .trust-card-footer i,
.trust-card-blue .trust-card-footer strong {
  color: #2869dc !important;
}

/* -------------------------
   CARD 03 — GREEN
------------------------- */
.trust-card-green {
  --trust-color: #26a641 !important;
  --trust-soft: #edf9f0 !important;
}

.trust-card-green .trust-card-icon {
  color: #26a641 !important;
  background: linear-gradient(145deg, #f7fff9, #e6f7ea) !important;
  border-color: rgba(38, 166, 65, .15) !important;
  box-shadow: 0 18px 38px rgba(38, 166, 65, .12) !important;
}

.trust-card-green .trust-card-line {
  background: #26a641 !important;
}

.trust-card-green .trust-card-footer {
  background: linear-gradient(135deg, #eefaf1, #f8fdf9) !important;
}

.trust-card-green .trust-card-footer i,
.trust-card-green .trust-card-footer strong {
  color: #26a641 !important;
}

/* -------------------------
   CARD 04 — PURPLE
------------------------- */
.trust-card-purple {
  --trust-color: #9a43d4 !important;
  --trust-soft: #f6effd !important;
}

.trust-card-purple .trust-card-icon {
  color: #9a43d4 !important;
  background: linear-gradient(145deg, #fcf9ff, #f1e7fb) !important;
  border-color: rgba(154, 67, 212, .15) !important;
  box-shadow: 0 18px 38px rgba(154, 67, 212, .12) !important;
}

.trust-card-purple .trust-card-line {
  background: #9a43d4 !important;
}

.trust-card-purple .trust-card-footer {
  background: linear-gradient(135deg, #f6effd, #fbf8ff) !important;
}

.trust-card-purple .trust-card-footer i,
.trust-card-purple .trust-card-footer strong {
  color: #9a43d4 !important;
}

/* =========================================================
   GENERAL CARD COLOR MATCH
========================================================= */

.startup-recognition-card.trust-card {
  background: #ffffff !important;
  border: 1px solid rgba(7, 27, 77, .09) !important;
  box-shadow:
    0 18px 45px rgba(7, 27, 77, .08),
    inset 0 1px 0 rgba(255, 255, 255, .96) !important;
}

.startup-recognition-card.trust-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 28px 65px rgba(7, 27, 77, .13) !important;
}

/* Icon size and softness image ke according */
.trust-card .startup-recognition-icon.trust-card-icon {
  border-radius: 28px !important;
  background-image: none !important;
}

/* Text colors */
.trust-card-content h3 {
  color: #071b4d !important;
}

.trust-card-content p {
  color: rgba(7, 27, 77, .68) !important;
}

/* =========================================================
   COMMITMENT BOX IMAGE COLOR MATCH
========================================================= */

.trust-commitment-box {
  background:
    radial-gradient(circle at 8% 50%, rgba(212, 13, 31, .10), transparent 24%),
    linear-gradient(135deg, #fff4f6, #ffffff) !important;

  border: 1px solid rgba(212, 13, 31, .09) !important;
}

.trust-commitment-icon {
  background: linear-gradient(145deg, #e20b29, #b6051d) !important;
  box-shadow: 0 16px 36px rgba(212, 13, 31, .25) !important;
}

.trust-commitment-title strong,
.trust-student-count strong {
  color: #cf0b22 !important;
}

.trust-student-count > span {
  background: linear-gradient(145deg, #e20b29, #b6051d) !important;
}

/* =========================================================
   MOBILE COLOR FIX
========================================================= */

@media (max-width: 767px) {
  .trust-card .startup-recognition-icon.trust-card-icon {
    border-radius: 20px !important;
  }

  .trust-card-red .trust-card-footer,
  .trust-card-blue .trust-card-footer,
  .trust-card-green .trust-card-footer,
  .trust-card-purple .trust-card-footer {
    background-size: 100% 100% !important;
  }
}

/* =========================================================
   VISION 2030 PREMIUM ROADMAP
========================================================= */

.kvr-section {
  --kvr-navy: #061643;
  --kvr-navy-dark: #020d2d;
  --kvr-card: #0c1f50;
  --kvr-red: #e01a34;
  --kvr-red-dark: #ae061c;
  --kvr-blue: #4482ef;
  --kvr-green: #28c567;
  --kvr-purple: #9c48de;
  --kvr-orange: #ed9a31;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 82px 0 70px;

  color: #ffffff;

  background:
    radial-gradient(circle at 8% 10%, rgba(224, 26, 52, .16), transparent 28%),
    radial-gradient(circle at 92% 14%, rgba(44, 93, 200, .16), transparent 30%),
    linear-gradient(180deg, #061643 0%, #020d2d 100%);
}

/* BACKGROUND GRID */

.kvr-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, .024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px);

  background-size: 44px 44px;
}

/* BACKGROUND GLOWS */

.kvr-glow {
  position: absolute;
  z-index: -2;

  border-radius: 50%;

  filter: blur(50px);
  pointer-events: none;
}

.kvr-glow-one {
  width: 380px;
  height: 380px;

  left: -210px;
  top: 70px;

  background: rgba(224, 26, 52, .22);
}

.kvr-glow-two {
  width: 430px;
  height: 430px;

  right: -230px;
  bottom: 100px;

  background: rgba(51, 103, 220, .17);
}

/* =========================================================
   HEADING
========================================================= */

.kvr-heading {
  position: relative;
  z-index: 2;

  max-width: 980px;

  margin: 0 auto 52px;

  text-align: center;
}

.kvr-badge {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 21px;
  padding: 10px 20px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(224, 26, 52, .14),
      rgba(255, 255, 255, .06)
    );

  border: 1px solid rgba(224, 26, 52, .50);

  box-shadow:
    0 15px 34px rgba(224, 26, 52, .12),
    inset 0 1px 0 rgba(255, 255, 255, .06);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.kvr-badge i {
  color: #f3354d;
}

.kvr-heading h2 {
  max-width: 920px;

  margin: 0 auto;

  color: #ffffff;

  font-size: clamp(38px, 5vw, 42px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2.5px;
}

.kvr-heading h2 span {
  display: block;
}

.kvr-heading h2 span::first-letter {
  color: inherit;
}

.kvr-heading h2 span {
  color: #ffffff;
}

.kvr-heading h2 span::after {
  content: "";
}

.kvr-heading-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  margin: 22px 0 18px;
}

.kvr-heading-divider span {
  width: 62px;
  height: 2px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(224, 26, 52, .95)
    );
}

.kvr-heading-divider span:last-child {
  background:
    linear-gradient(
      90deg,
      rgba(224, 26, 52, .95),
      transparent
    );
}

.kvr-heading-divider i {
  color: var(--kvr-red);

  font-size: 12px;
}

.kvr-heading p {
  max-width: 850px;

  margin: 0 auto;

  color: rgba(255, 255, 255, .70);

  font-size: 16px;
  line-height: 1.75;
  font-weight: 600;
}

/* =========================================================
   TIMELINE
========================================================= */

.kvr-timeline {
  position: relative;

  max-width: 1120px;

  margin: 0 auto;
}

/* CENTER LINE */

.kvr-timeline-line {
  position: absolute;

  top: 86px;
  bottom: 90px;
  left: 50%;

  width: 4px;

  border-radius: 999px;

  transform: translateX(-50%);

  background:
    linear-gradient(
      180deg,
      var(--kvr-red) 0%,
      var(--kvr-red) 28%,
      var(--kvr-blue) 62%,
      rgba(68, 130, 239, .30) 100%
    );

  box-shadow:
    0 0 18px rgba(224, 26, 52, .35);
}

/* ROADMAP ITEM */

.kvr-roadmap-item {
  position: relative;

  width: calc(50% - 46px);

  margin-bottom: 22px;
}

.kvr-item-left {
  margin-right: auto;
}

.kvr-item-right {
  margin-left: auto;
}

/* CONNECTING HORIZONTAL LINE */

.kvr-item-left::after,
.kvr-item-right::after {
  content: "";

  position: absolute;

  top: 50%;

  width: 47px;
  height: 2px;

  background: rgba(255, 255, 255, .28);
}

.kvr-item-left::after {
  right: -47px;
}

.kvr-item-right::after {
  left: -47px;
}

/* CARD */

.kvr-roadmap-card {
  position: relative;
  overflow: hidden;

  min-height: 215px;

  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: center;

  padding: 27px;

  border-radius: 27px;

  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(255, 255, 255, .05),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .085),
      rgba(255, 255, 255, .04)
    );

  border: 1px solid rgba(255, 255, 255, .13);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, .19),
    inset 0 1px 0 rgba(255, 255, 255, .055);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease;
}

.kvr-roadmap-card:hover {
  transform: translateY(-6px);

  border-color: rgba(224, 26, 52, .42);

  box-shadow:
    0 32px 75px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .07);
}

/* CURRENT CARD */

.kvr-current .kvr-roadmap-card {
  border-color: rgba(224, 26, 52, .85);

  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(224, 26, 52, .18),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(224, 26, 52, .09),
      rgba(255, 255, 255, .045)
    );

  box-shadow:
    0 0 0 1px rgba(224, 26, 52, .17),
    0 27px 70px rgba(224, 26, 52, .14),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* CURRENT PHASE LABEL */

.kvr-current-label {
  position: absolute;
  z-index: 5;

  top: 0;
  right: 16px;

  min-height: 34px;

  display: inline-flex;
  align-items: center;

  padding: 8px 16px;

  border-radius: 0 0 14px 14px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      var(--kvr-red),
      var(--kvr-red-dark)
    );

  box-shadow: 0 12px 27px rgba(224, 26, 52, .28);

  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .45px;
}

/* ROADMAP ICON */

.kvr-roadmap-icon {
  width: 96px;
  height: 96px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, .10),
      transparent 32%
    ),
    rgba(6, 22, 67, .86);

  border: 2px solid rgba(224, 26, 52, .80);

  box-shadow:
    0 16px 38px rgba(0, 0, 0, .25),
    inset 0 1px 0 rgba(255, 255, 255, .07);

  font-size: 38px;
}

/* CONTENT */

.kvr-roadmap-content {
  min-width: 0;
}

.kvr-year {
  display: block;

  margin-bottom: 7px;

  color: #ef2a43;

  font-size: 20px;
  line-height: 1;
  font-weight: 950;
}

.kvr-roadmap-content h3 {
  margin: 0 0 8px;

  color: #ffffff;

  font-size: 21px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -.35px;
}

.kvr-roadmap-content p {
  margin: 0 0 14px;

  color: rgba(255, 255, 255, .66);

  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

/* STATUS */

.kvr-status {
  min-height: 31px;

  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 12px;

  border-radius: 999px;

  font-size: 10px;
  line-height: 1;
  font-weight: 850;
}

.kvr-status-completed {
  color: #4ae685;
  background: rgba(40, 197, 103, .08);
  border: 1px solid rgba(40, 197, 103, .38);
}

.kvr-status-progress {
  color: #ff6578;
  background: rgba(224, 26, 52, .09);
  border: 1px solid rgba(224, 26, 52, .42);
}

.kvr-status-planned {
  color: #71a4ff;
  background: rgba(68, 130, 239, .08);
  border: 1px solid rgba(68, 130, 239, .38);
}

/* TIMELINE NODES */

.kvr-node {
  position: absolute;
  z-index: 5;

  top: 50%;

  width: 22px;
  height: 22px;

  border-radius: 50%;

  background: var(--kvr-navy);

  border: 4px solid #ffffff;

  transform: translateY(-50%);

  box-shadow:
    0 0 0 4px rgba(255, 255, 255, .08),
    0 0 20px rgba(255, 255, 255, .22);
}

.kvr-item-left .kvr-node {
  right: -57px;
}

.kvr-item-right .kvr-node {
  left: -57px;
}

.kvr-node-red {
  background: var(--kvr-red);
}

.kvr-node-blue {
  background: var(--kvr-blue);
}

/* =========================================================
   GOALS
========================================================= */

.kvr-goals-wrap {
  position: relative;

  max-width: 1120px;

  margin: 36px auto 0;
  padding: 36px 30px 26px;

  border-radius: 29px;

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(224, 26, 52, .12),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .075),
      rgba(255, 255, 255, .035)
    );

  border: 1px solid rgba(255, 255, 255, .13);

  box-shadow:
    0 26px 70px rgba(0, 0, 0, .20),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

/* GOALS TITLE */

.kvr-goals-title {
  position: absolute;

  top: -18px;
  left: 50%;

  min-height: 40px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 8px 19px;

  border-radius: 999px;

  background: var(--kvr-navy);

  border: 1px solid rgba(255, 255, 255, .12);

  transform: translateX(-50%);
}

.kvr-goals-title span {
  width: 22px;
  height: 2px;

  border-radius: 999px;

  background: var(--kvr-red);
}

.kvr-goals-title h3 {
  margin: 0;

  color: #ffffff;

  font-size: 20px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

/* GOALS GRID */

.kvr-goals-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.kvr-goal-item {
  min-width: 0;

  display: flex;
  flex-direction: column;
  align-items: center;

  padding: 12px 17px;

  text-align: center;

  border-right: 1px solid rgba(255, 255, 255, .12);
}

.kvr-goal-item:last-child {
  border-right: 0;
}

.kvr-goal-icon {
  width: 62px;
  height: 62px;

  display: grid;
  place-items: center;

  margin-bottom: 14px;

  border-radius: 50%;

  font-size: 27px;

  background: rgba(255, 255, 255, .045);

  border: 1px solid currentColor;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

.kvr-goal-red {
  color: #f02f48;
}

.kvr-goal-blue {
  color: #4b8cff;
}

.kvr-goal-purple {
  color: #ab56ec;
}

.kvr-goal-green {
  color: #3dd679;
}

.kvr-goal-orange {
  color: #f0a33d;
}

.kvr-goal-item strong {
  display: block;

  min-height: 44px;

  color: #ffffff;

  font-size: 19px;
  line-height: 1.15;
  font-weight: 950;
}

.kvr-goal-item p {
  margin: 5px 0 0;

  color: rgba(255, 255, 255, .62);

  font-size: 11px;
  line-height: 1.35;
  font-weight: 650;
}

/* =========================================================
   JOIN CTA
========================================================= */

.kvr-join-card {
  position: relative;
  overflow: hidden;

  max-width: 1120px;
  min-height: 115px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;

  margin: 27px auto 0;
  padding: 24px 30px;

  border-radius: 27px;

  text-align: center;

  background:
    radial-gradient(
      circle at 40% 50%,
      rgba(224, 26, 52, .30),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(224, 26, 52, .12),
      rgba(255, 255, 255, .04)
    );

  border: 1px solid rgba(224, 26, 52, .34);

  box-shadow:
    0 24px 65px rgba(0, 0, 0, .20);
}

.kvr-join-card::before {
  content: "";

  position: absolute;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(224, 26, 52, .08),
      transparent
    );
}

.kvr-join-icon {
  position: relative;
  z-index: 2;

  color: #ffffff;

  font-size: 34px;
}

.kvr-join-card > div {
  position: relative;
  z-index: 2;
}

.kvr-join-card h3 {
  margin: 0 0 6px;

  color: #ffffff;

  font-size: 27px;
  line-height: 1.1;
  font-weight: 950;
}

.kvr-join-card p {
  margin: 0;

  color: rgba(255, 255, 255, .72);

  font-size: 14px;
  font-weight: 600;
}

/* =========================================================
   CONTACT STRIP
========================================================= */

.kvr-contact-strip {
  max-width: 1120px;

  display: grid;
  grid-template-columns: 1fr 1px 1.3fr 1px 1fr;
  align-items: center;

  margin: 18px auto 0;
  padding: 18px 24px;

  border-radius: 24px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .075),
      rgba(255, 255, 255, .035)
    );

  border: 1px solid rgba(255, 255, 255, .12);

  box-shadow:
    0 20px 55px rgba(0, 0, 0, .17);
}

.kvr-contact-item {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  color: #ffffff;

  text-decoration: none;
}

.kvr-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;

  display: grid;
  place-items: center;

  color: #4b8cff;

  font-size: 21px;
}

.kvr-contact-phone {
  color: var(--kvr-red);
}

.kvr-contact-item strong {
  display: block;

  color: #ffffff;

  font-size: 13px;
  line-height: 1.25;
  font-weight: 850;
}

.kvr-contact-item small {
  display: block;

  margin-top: 4px;

  color: rgba(255, 255, 255, .55);

  font-size: 9px;
  font-weight: 650;
}

.kvr-contact-link {
  transition: .24s ease;
}

.kvr-contact-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.kvr-contact-divider {
  width: 1px;
  height: 46px;

  background: rgba(255, 255, 255, .15);
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .kvr-heading h2 {
    font-size: 52px;
  }

  .kvr-roadmap-item {
    width: calc(50% - 38px);
  }

  .kvr-roadmap-card {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 18px;

    padding: 23px;
  }

  .kvr-roadmap-icon {
    width: 80px;
    height: 80px;

    font-size: 31px;
  }

  .kvr-roadmap-content h3 {
    font-size: 18px;
  }

  .kvr-roadmap-content p {
    font-size: 12px;
  }

  .kvr-item-left .kvr-node {
    right: -49px;
  }

  .kvr-item-right .kvr-node {
    left: -49px;
  }

  .kvr-item-left::after,
  .kvr-item-right::after {
    width: 39px;
  }

  .kvr-item-left::after {
    right: -39px;
  }

  .kvr-item-right::after {
    left: -39px;
  }
}

/* =========================================================
   TABLET — SINGLE TIMELINE
========================================================= */

@media (max-width: 991px) {

  .kvr-heading h2 {
    font-size: 45px;
  }

  .kvr-heading p {
    font-size: 14px;
  }

  .kvr-timeline {
    max-width: 760px;

    padding-left: 48px;
  }

  .kvr-timeline-line {
    left: 17px;

    transform: none;
  }

  .kvr-roadmap-item,
  .kvr-item-left,
  .kvr-item-right {
    width: 100%;

    margin-left: 0;
    margin-right: 0;
  }

  .kvr-item-left::after,
  .kvr-item-right::after {
    left: -31px;
    right: auto;

    width: 31px;
  }

  .kvr-item-left .kvr-node,
  .kvr-item-right .kvr-node {
    left: -42px;
    right: auto;
  }

  .kvr-current-label {
    right: 16px;
  }

  .kvr-goals-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }

  .kvr-goal-item {
    border-right: 0;

    border-radius: 18px;

    background: rgba(255, 255, 255, .04);
  }

  .kvr-contact-strip {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .kvr-contact-divider {
    width: 100%;
    height: 1px;
  }

  .kvr-contact-item {
    justify-content: flex-start;

    padding: 4px 12px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .kvr-section {
    padding: 54px 0 46px;
  }

  .kvr-heading {
    margin-bottom: 38px;
  }

  .kvr-badge {
    min-height: 38px;

    padding: 9px 15px;

    font-size: 10px;
  }

  .kvr-heading h2 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1.3px;
  }

  .kvr-heading p {
    font-size: 12.5px;
    line-height: 1.65;
  }

  .kvr-heading-divider {
    margin: 17px 0 14px;
  }

  .kvr-heading-divider span {
    width: 42px;
  }

  .kvr-timeline {
    padding-left: 34px;
  }

  .kvr-timeline-line {
    left: 10px;

    width: 3px;
  }

  .kvr-roadmap-item {
    margin-bottom: 15px;
  }

  .kvr-roadmap-card {
    min-height: auto;

    grid-template-columns: 68px minmax(0, 1fr);
    gap: 14px;

    padding: 18px 15px;

    border-radius: 22px;
  }

  .kvr-roadmap-icon {
    width: 62px;
    height: 62px;

    border-width: 1px;

    font-size: 24px;
  }

  .kvr-year {
    font-size: 16px;
  }

  .kvr-roadmap-content h3 {
    margin-bottom: 6px;

    font-size: 16px;
  }

  .kvr-roadmap-content p {
    margin-bottom: 10px;

    font-size: 10.5px;
    line-height: 1.5;
  }

  .kvr-status {
    min-height: 27px;

    padding: 6px 9px;

    font-size: 8.5px;
  }

  .kvr-item-left::after,
  .kvr-item-right::after {
    left: -24px;

    width: 24px;
  }

  .kvr-item-left .kvr-node,
  .kvr-item-right .kvr-node {
    left: -34px;

    width: 18px;
    height: 18px;

    border-width: 3px;
  }

  .kvr-current-label {
    top: 0;
    right: 10px;

    min-height: 27px;

    padding: 6px 10px;

    font-size: 8px;
  }

  .kvr-goals-wrap {
    padding: 33px 14px 16px;

    border-radius: 23px;
  }

  .kvr-goals-title h3 {
    font-size: 16px;
  }

  .kvr-goals-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .kvr-goal-item {
    min-height: 145px;

    justify-content: center;

    padding: 13px 8px;
  }

  .kvr-goal-icon {
    width: 52px;
    height: 52px;

    font-size: 22px;
  }

  .kvr-goal-item strong {
    min-height: auto;

    font-size: 15px;
  }

  .kvr-goal-item p {
    font-size: 9px;
  }

  .kvr-join-card {
    min-height: 100px;

    flex-direction: column;
    gap: 8px;

    padding: 20px 15px;

    border-radius: 22px;
  }

  .kvr-join-icon {
    font-size: 28px;
  }

  .kvr-join-card h3 {
    font-size: 22px;
  }

  .kvr-join-card p {
    font-size: 11px;
  }

  .kvr-contact-strip {
    padding: 15px;

    border-radius: 20px;
  }

  .kvr-contact-item strong {
    font-size: 11px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .kvr-heading h2 {
    font-size: 29px;
  }

  .kvr-timeline {
    padding-left: 28px;
  }

  .kvr-roadmap-card {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .kvr-roadmap-icon {
    margin: 0 auto;
  }

  .kvr-status {
    justify-content: center;
  }

  .kvr-current-label {
    position: static;

    width: fit-content;

    margin: 0 auto 8px;

    border-radius: 999px;
  }

  .kvr-goals-grid {
    grid-template-columns: 1fr;
  }

  .kvr-goal-item {
    min-height: auto;

    flex-direction: row;
    justify-content: flex-start;
    gap: 14px;

    text-align: left;
  }

  .kvr-goal-icon {
    flex: 0 0 52px;

    margin-bottom: 0;
  }
}

/* =========================================================
   VISION TIMELINE — EXTRA SPACE REMOVE FINAL FIX
========================================================= */

/* Timeline ko compact rakho */
.kvr-timeline {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
}

/* Har card ki unnecessary bottom spacing remove */
.kvr-roadmap-item {
  width: calc(50% - 46px);
  margin-bottom: 0 !important;
}

/* First card normal position par */
.kvr-roadmap-item:first-of-type {
  margin-top: 0 !important;
}

/* Uske baad har alternate card ko upar lao */
.kvr-roadmap-item + .kvr-roadmap-item {
  margin-top: -92px !important;
}

/* Left and right alignment maintain */
.kvr-item-left {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.kvr-item-right {
  margin-left: auto !important;
  margin-right: 0 !important;
}

/* Card ki height thodi compact */
.kvr-roadmap-card {
  min-height: 190px !important;
  padding: 24px !important;
}

/* Center line ko cards ke according fit karo */
.kvr-timeline-line {
  top: 82px !important;
  bottom: 82px !important;
}

/* Connector aur node exact center par */
.kvr-item-left::after,
.kvr-item-right::after,
.kvr-node {
  top: 50% !important;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) and (min-width: 992px) {
  .kvr-roadmap-item {
    width: calc(50% - 38px);
  }

  .kvr-roadmap-item + .kvr-roadmap-item {
    margin-top: -78px !important;
  }

  .kvr-roadmap-card {
    min-height: 180px !important;
    padding: 21px !important;
  }
}

/* =========================================================
   TABLET AND MOBILE
   Single-column layout me negative margin nahi chahiye
========================================================= */

@media (max-width: 991px) {
  .kvr-roadmap-item,
  .kvr-roadmap-item:first-of-type,
  .kvr-roadmap-item + .kvr-roadmap-item {
    width: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 16px !important;
  }

  .kvr-item-left,
  .kvr-item-right {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .kvr-roadmap-card {
    min-height: auto !important;
  }
}
/* =========================
   MOBILE APP SECTION
========================= */

.mobile-app-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .10), transparent 30%),
    radial-gradient(circle at 92% 16%, rgba(7, 27, 77, .12), transparent 32%),
    linear-gradient(135deg, #f8f9fc, #ffffff);
}

.mobile-app-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(24px);
  pointer-events: none;
}

.mobile-app-orb-1 {
  width: 240px;
  height: 240px;
  left: -110px;
  top: 80px;
  background: rgba(212, 13, 31, .12);
}

.mobile-app-orb-2 {
  width: 280px;
  height: 280px;
  right: -120px;
  bottom: 70px;
  background: rgba(7, 27, 77, .11);
}

.mobile-app-content {
  position: relative;
  z-index: 2;
}

.mobile-app-content h2 {
  color: #071b4d;
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.5px;
  margin: 16px 0 16px;
}

.mobile-app-content p {
  color: rgba(7, 27, 77, .68);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 24px;
}

.mobile-app-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.mobile-app-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 16px 36px rgba(7, 27, 77, .07);
  color: #071b4d;
  font-size: 13px;
  font-weight: 900;
}

.mobile-app-points i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-red-dark));
}

.mobile-app-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: min(360px, 100%);
  padding: 14px;
  border-radius: 42px;
  background: #071b4d;
  border: 1px solid rgba(255, 255, 255, .85);
  box-shadow: 0 34px 90px rgba(7, 27, 77, .25);
}

.phone-top {
  width: 92px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .30);
  margin: 0 auto 12px;
}

.phone-screen {
  min-height: 540px;
  padding: 22px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 12%, rgba(212, 13, 31, .24), transparent 32%),
    linear-gradient(145deg, #071b4d, #000b26);
  color: #fff;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(212, 13, 31, .25);
  border: 1px solid rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 900;
}

.phone-screen h3 {
  font-size: 28px;
  line-height: 1.12;
  font-weight: 950;
  margin: 22px 0;
}

.app-progress-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .12);
  margin-bottom: 16px;
}

.app-progress-card span {
  display: block;
  color: rgba(255, 255, 255, .70);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 8px;
}

.app-progress-card strong {
  display: block;
  font-size: 38px;
  line-height: 1;
  margin-bottom: 12px;
}

.app-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  overflow: hidden;
}

.app-progress span {
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-red), #ff7b88);
}

.app-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.app-mini-grid div {
  min-height: 100px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
}

.app-mini-grid i {
  color: #ffccd1;
  font-size: 24px;
  margin-bottom: 8px;
}

.app-mini-grid span {
  font-size: 12px;
  font-weight: 850;
}
/* =========================================================
   ACHIEVEMENTS & IMPACT — DARK PREMIUM DESIGN
========================================================= */

.kai-section {
  --kai-dark: #010a26;
  --kai-navy: #061640;
  --kai-red: #f0213d;
  --kai-blue: #2d73ef;
  --kai-green: #47d23d;
  --kai-purple: #a831f2;
  --kai-orange: #ff6414;
  --kai-cyan: #20cae8;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 78px 0 56px;

  color: #ffffff;

  background:
    radial-gradient(circle at 3% 12%, rgba(240, 33, 61, .28), transparent 27%),
    radial-gradient(circle at 95% 12%, rgba(36, 91, 215, .22), transparent 28%),
    linear-gradient(180deg, #041136 0%, #010923 100%);
}

/* =========================================================
   BACKGROUND GRID
========================================================= */

.kai-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -4;

  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, .023) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .023) 1px, transparent 1px);

  background-size: 44px 44px;
}

/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.kai-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;

  filter: blur(55px);
  pointer-events: none;
}

.kai-glow-one {
  width: 390px;
  height: 390px;

  left: -220px;
  top: 10px;

  background: rgba(240, 33, 61, .30);
}

.kai-glow-two {
  width: 420px;
  height: 420px;

  right: -230px;
  top: 40px;

  background: rgba(45, 115, 239, .21);
}

/* =========================================================
   DOT PATTERN
========================================================= */

.kai-dot-pattern {
  position: absolute;
  z-index: -2;

  width: 150px;
  height: 110px;

  opacity: .65;

  background-image:
    radial-gradient(circle, rgba(255, 255, 255, .82) 2px, transparent 2.5px);

  background-size: 23px 23px;
}

.kai-dot-left {
  top: 4px;
  left: 0;
}

.kai-dot-right {
  top: 4px;
  right: 0;

  background-image:
    radial-gradient(circle, rgba(68, 119, 255, .95) 2px, transparent 2.5px);
}

.kai-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.kai-heading {
  max-width: 1100px;

  margin: 0 auto 38px;

  text-align: center;
}

.kai-heading-badge {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 18px;
  padding: 10px 20px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(240, 33, 61, .15),
      rgba(255, 255, 255, .045)
    );

  border: 1px solid rgba(240, 33, 61, .75);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .07);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.kai-heading-badge i {
  color: #ff9b23;
  font-size: 16px;
}

/* H2 CONTROLLED SIZE */

.kai-heading h2 {
  max-width: 1080px;

  margin: 0 auto 18px;

  color: #ffffff;

  font-size: clamp(38px, 5vw, 40px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
}

.kai-heading h2 span {
  display: block;
}

.kai-heading h2 b {
  color: var(--kai-red);
  font-weight: inherit;
}

.kai-heading > p {
  max-width: 790px;

  margin: 0 auto;

  color: rgba(255, 255, 255, .82);

  font-size: 17px;
  line-height: 1.6;
  font-weight: 600;
}

/* =========================================================
   TRUST LINE
========================================================= */

.kai-trust-line {
  max-width: 860px;
  min-height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  margin: 20px auto 0;
  padding: 12px 20px;

  border-radius: 999px;

  background:
    linear-gradient(
      90deg,
      rgba(240, 33, 61, .08),
      rgba(255, 255, 255, .035),
      rgba(63, 183, 88, .04)
    );

  border: 1px solid rgba(255, 255, 255, .15);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

.kai-trust-line i {
  color: var(--kai-red);

  font-size: 20px;
}

.kai-trust-line span {
  color: rgba(255, 255, 255, .90);

  font-size: 14px;
  line-height: 1.4;
  font-weight: 750;
}

/* =========================================================
   CARDS GRID
========================================================= */

.kai-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

/* =========================================================
   IMPACT CARD
========================================================= */

.kai-card {
  --kai-card-color: #f0213d;
  --kai-card-soft: rgba(240, 33, 61, .18);

  position: relative;
  min-width: 0;
  min-height: 230px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 24px;

  border-radius: 22px;

  text-align: center;

  background:
    radial-gradient(circle at 50% 8%, var(--kai-card-soft), transparent 31%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .066),
      rgba(255, 255, 255, .024)
    );

  border: 1px solid var(--kai-card-color);

  box-shadow:
    0 24px 62px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .06);

  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);

  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.kai-card::before {
  content: "";

  position: absolute;

  width: 170px;
  height: 170px;

  top: -110px;
  left: 50%;

  border-radius: 50%;

  background: var(--kai-card-soft);

  transform: translateX(-50%);

  pointer-events: none;
}

.kai-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 34px 78px rgba(0, 0, 0, .30),
    0 0 34px var(--kai-card-soft),
    inset 0 1px 0 rgba(255, 255, 255, .07);
}

/* =========================================================
   CARD COLOR THEMES
========================================================= */

.kai-card-red {
  --kai-card-color: #f0213d;
  --kai-card-soft: rgba(240, 33, 61, .20);
}

.kai-card-blue {
  --kai-card-color: #2d73ef;
  --kai-card-soft: rgba(45, 115, 239, .20);
}

.kai-card-green {
  --kai-card-color: #47d23d;
  --kai-card-soft: rgba(71, 210, 61, .18);
}

.kai-card-purple {
  --kai-card-color: #a831f2;
  --kai-card-soft: rgba(168, 49, 242, .20);
}

.kai-card-orange {
  --kai-card-color: #ff6414;
  --kai-card-soft: rgba(255, 100, 20, .20);
}

.kai-card-cyan {
  --kai-card-color: #20cae8;
  --kai-card-soft: rgba(32, 202, 232, .19);
}

/* =========================================================
   CARD ICON
========================================================= */

.kai-card-icon {
  position: relative;
  z-index: 2;

  width: 78px;
  height: 78px;

  display: grid;
  place-items: center;

  margin-bottom: 18px;

  border-radius: 50%;

  color: #ffffff;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .23), transparent 31%),
    linear-gradient(
      145deg,
      var(--kai-card-color),
      color-mix(in srgb, var(--kai-card-color) 60%, #071b4d)
    );

  box-shadow:
    0 0 0 9px var(--kai-card-soft),
    0 17px 38px rgba(0, 0, 0, .28);

  font-size: 34px;
}

/* =========================================================
   CARD TEXT
========================================================= */

.kai-card > strong {
  position: relative;
  z-index: 2;

  display: block;

  margin-bottom: 8px;

  color: var(--kai-card-color);

  font-size: 44px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1px;
}

.kai-card h3 {
  position: relative;
  z-index: 2;

  margin: 0;

  color: #ffffff;

  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

.kai-card-line {
  position: relative;
  z-index: 2;

  width: 45px;
  height: 3px;

  display: block;

  margin-top: 14px;

  border-radius: 999px;

  background: var(--kai-card-color);

  box-shadow: 0 0 15px var(--kai-card-color);
}

/* =========================================================
   BOTTOM IMPACT PANEL
========================================================= */

.kai-bottom-panel {
  position: relative;
  min-height: 115px;
  overflow: hidden;

  display: grid;
  grid-template-columns: auto 1px minmax(0, 1fr) 270px;
  gap: 28px;
  align-items: center;

  margin-top: 20px;
  padding: 22px 28px;

  border-radius: 21px;

  background:
    radial-gradient(circle at 92% 50%, rgba(28, 104, 255, .23), transparent 31%),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .065),
      rgba(255, 255, 255, .025)
    );

  border: 1px solid rgba(61, 112, 255, .48);

  box-shadow:
    0 25px 64px rgba(0, 0, 0, .23),
    inset 0 1px 0 rgba(255, 255, 255, .05);
}

.kai-bottom-title {
  display: flex;
  align-items: center;
  gap: 18px;
}

.kai-target-icon {
  width: 76px;
  height: 76px;
  min-width: 76px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .23), transparent 31%),
    linear-gradient(135deg, #ff233f, #ac061b);

  box-shadow:
    0 16px 38px rgba(240, 33, 61, .30);

  font-size: 38px;
}

.kai-bottom-title h3 {
  margin: 0;

  color: #ffffff;

  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
}

.kai-bottom-divider {
  width: 1px;
  height: 66px;

  background: rgba(255, 255, 255, .14);
}

.kai-bottom-panel > p {
  margin: 0;

  color: rgba(255, 255, 255, .79);

  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

/* =========================================================
   BOTTOM VISUAL
========================================================= */

.kai-bottom-visual {
  position: relative;
  min-height: 76px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  color: rgba(255, 255, 255, .86);

  background:
    radial-gradient(circle at 50% 100%, rgba(36, 128, 255, .65), transparent 60%);

  border-radius: 50%;
}

.kai-bottom-visual > i {
  position: relative;
  z-index: 2;

  font-size: 62px;

  filter: drop-shadow(0 0 17px rgba(65, 141, 255, .75));
}

.kai-bottom-visual span {
  position: absolute;
  bottom: 4px;

  width: 28px;
  height: 42px;

  border-radius: 50% 50% 18% 18%;

  background: rgba(1, 7, 24, .92);
}

.kai-bottom-visual span:nth-child(2) {
  left: 38px;
}

.kai-bottom-visual span:nth-child(3) {
  right: 38px;
}

.kai-bottom-visual span:nth-child(4) {
  right: 85px;

  height: 32px;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .kai-heading h2 {
    font-size: 48px;
  }

  .kai-card {
    min-height: 215px;
  }

  .kai-bottom-panel {
    grid-template-columns: auto 1px 1fr;
  }

  .kai-bottom-visual {
    display: none;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .kai-heading h2 {
    font-size: 41px;
  }

  .kai-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kai-bottom-panel {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .kai-bottom-title {
    justify-content: center;
  }

  .kai-bottom-divider {
    width: 100%;
    height: 1px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .kai-section {
    padding: 54px 0 42px;
  }

  .kai-heading {
    margin-bottom: 30px;
  }

  .kai-heading-badge {
    min-height: 38px;

    padding: 9px 15px;

    font-size: 10px;
  }

  .kai-heading h2 {
    font-size: 31px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .kai-heading > p {
    font-size: 13px;
    line-height: 1.6;
  }

  .kai-trust-line {
    min-height: auto;

    align-items: flex-start;

    padding: 12px 15px;

    border-radius: 18px;
  }

  .kai-trust-line span {
    font-size: 11px;
  }

  .kai-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kai-card {
    min-height: 190px;

    padding: 20px;

    border-radius: 20px;
  }

  .kai-card-icon {
    width: 66px;
    height: 66px;

    margin-bottom: 15px;

    font-size: 28px;
  }

  .kai-card > strong {
    font-size: 36px;
  }

  .kai-card h3 {
    font-size: 14px;
  }

  .kai-bottom-panel {
    padding: 21px 17px;

    border-radius: 19px;
  }

  .kai-bottom-title {
    flex-direction: column;
  }

  .kai-target-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;

    font-size: 31px;
  }

  .kai-bottom-title h3 {
    font-size: 23px;
  }

  .kai-bottom-panel > p {
    font-size: 11px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .kai-heading h2 {
    font-size: 28px;
  }

  .kai-heading > p {
    font-size: 12.5px;
  }

  .kai-trust-line {
    flex-direction: column;
    align-items: center;

    text-align: center;
  }
}

/* =========================================================
   COLOR-MIX FALLBACK
========================================================= */

@supports not (background: color-mix(in srgb, red 50%, blue)) {
  .kai-card-icon {
    background:
      radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .23), transparent 31%),
      var(--kai-card-color);
  }
}



/* =========================================================
   FUTURE AI STUDENT DASHBOARD
========================================================= */

.future-ai-dashboard-section {
  --fad-dark: #010820;
  --fad-navy: #061640;
  --fad-card: #071a43;
  --fad-red: #ec1939;
  --fad-red-dark: #a8051b;
  --fad-blue: #267bf2;
  --fad-green: #32de78;
  --fad-purple: #a83de5;
  --fad-orange: #f3a11e;
  --fad-cyan: #27cfe0;

  position: relative;
  isolation: isolate;
  overflow: hidden;

  padding: 80px 0 50px;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 4% 5%,
      rgba(236, 25, 57, .29),
      transparent 28%
    ),
    radial-gradient(
      circle at 96% 8%,
      rgba(38, 123, 242, .24),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #061540 0%,
      #020b2c 48%,
      #01061b 100%
    );
}

/* =========================================================
   BACKGROUND
========================================================= */

.fad-bg-grid {
  position: absolute;
  inset: 0;
  z-index: -4;

  pointer-events: none;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, .024) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .024) 1px,
      transparent 1px
    );

  background-size: 42px 42px;
}

.fad-glow {
  position: absolute;
  z-index: -3;

  border-radius: 50%;

  filter: blur(60px);
  pointer-events: none;
}

.fad-glow-left {
  width: 420px;
  height: 420px;

  top: 0;
  left: -250px;

  background: rgba(236, 25, 57, .28);
}

.fad-glow-right {
  width: 460px;
  height: 460px;

  top: 40px;
  right: -260px;

  background: rgba(38, 123, 242, .22);
}

.future-ai-dashboard-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   MAIN HEADING
========================================================= */

.fad-heading {
  max-width: 980px;

  margin: 0 auto 34px;

  text-align: center;
}

.fad-heading-badge {
  min-height: 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 18px;
  padding: 10px 22px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      rgba(236, 25, 57, .17),
      rgba(255, 255, 255, .035)
    );

  border: 1px solid rgba(236, 25, 57, .65);

  box-shadow:
    0 14px 34px rgba(0, 0, 0, .18);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.fad-heading-badge i {
  color: #ffffff;
}

.fad-heading h2 {
  margin: 0 0 14px;

  color: #ffffff;

  font-size: clamp(38px, 5vw, 40px);
  line-height: 1.04;
  letter-spacing: -2.2px;
  font-weight: 950;
}

.fad-heading h2 span {
  color: var(--fad-blue);
}

.fad-heading p {
  max-width: 730px;

  margin: 0 auto;

  color: rgba(255, 255, 255, .77);

  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

/* =========================================================
   FEATURE CARDS
========================================================= */

.fad-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fad-feature-card {
  --fad-feature-color: #ec1939;
  --fad-feature-soft: rgba(236, 25, 57, .15);

  position: relative;
  min-width: 0;
  min-height: 190px;
  overflow: hidden;

  padding: 24px 20px;

  text-align: center;

  border-radius: 21px;

  background:
    radial-gradient(
      circle at 50% 12%,
      var(--fad-feature-soft),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .055),
      rgba(255, 255, 255, .015)
    );

  border: 1px solid var(--fad-feature-color);

  box-shadow:
    0 22px 54px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .05);

  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.fad-feature-card:hover {
  transform: translateY(-7px);

  box-shadow:
    0 32px 70px rgba(0, 0, 0, .30),
    0 0 28px var(--fad-feature-soft);
}

.fad-feature-red {
  --fad-feature-color: #ef2545;
  --fad-feature-soft: rgba(239, 37, 69, .17);
}

.fad-feature-orange {
  --fad-feature-color: #f1a01c;
  --fad-feature-soft: rgba(241, 160, 28, .16);
}

.fad-feature-purple {
  --fad-feature-color: #a23de2;
  --fad-feature-soft: rgba(162, 61, 226, .17);
}

.fad-feature-blue {
  --fad-feature-color: #2983f1;
  --fad-feature-soft: rgba(41, 131, 241, .17);
}

.fad-feature-icon {
  width: 68px;
  height: 68px;

  display: grid;
  place-items: center;

  margin: 0 auto 18px;

  border-radius: 50%;

  color: #ffffff;

  background:
    radial-gradient(
      circle at 30% 20%,
      rgba(255, 255, 255, .23),
      transparent 30%
    ),
    var(--fad-feature-color);

  box-shadow:
    0 0 0 9px var(--fad-feature-soft),
    0 16px 34px rgba(0, 0, 0, .24);

  font-size: 28px;
}

.fad-feature-card h3 {
  margin: 0;

  color: #ffffff;

  font-size: 17px;
  line-height: 1.25;
  font-weight: 950;
}

.fad-feature-line {
  width: 28px;
  height: 3px;

  display: block;

  margin: 11px auto;

  border-radius: 999px;

  background: var(--fad-feature-color);
}

.fad-feature-card p {
  max-width: 210px;

  margin: 0 auto;

  color: rgba(255, 255, 255, .68);

  font-size: 12px;
  line-height: 1.55;
  font-weight: 600;
}

/* =========================================================
   MAIN ACTIONS
========================================================= */

.fad-main-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin: 22px 0;
}

.fad-primary-btn,
.fad-outline-btn {
  min-height: 51px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  padding: 13px 24px;

  border-radius: 999px;

  text-decoration: none;

  font-size: 13px;
  line-height: 1;
  font-weight: 900;

  transition: .25s ease;
}

.fad-primary-btn {
  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #f12040,
      #b90620
    );

  box-shadow:
    0 18px 40px rgba(236, 25, 57, .32);
}

.fad-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

.fad-outline-btn {
  color: #ffffff;

  background: rgba(255, 255, 255, .025);

  border: 1px solid rgba(255, 255, 255, .32);
}

.fad-outline-btn:hover {
  color: #ffffff;

  border-color: rgba(236, 25, 57, .70);

  transform: translateY(-3px);
}

/* =========================================================
   DASHBOARD PANEL
========================================================= */

.fad-dashboard-panel {
  position: relative;
  overflow: hidden;

  padding: 28px;

  border-radius: 28px;

  background:
    radial-gradient(
      circle at 0 0,
      rgba(236, 25, 57, .15),
      transparent 28%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgba(38, 123, 242, .13),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      #091944,
      #020c2b
    );

  border: 1px solid rgba(236, 25, 57, .55);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, .34),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

.fad-dashboard-pattern {
  position: absolute;
  inset: 0;

  pointer-events: none;
  opacity: .35;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, .018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, .018) 1px,
      transparent 1px
    );

  background-size: 32px 32px;
}

.fad-dashboard-panel > *:not(.fad-dashboard-pattern) {
  position: relative;
  z-index: 2;
}

/* =========================================================
   DASHBOARD HEADER
========================================================= */

.fad-dashboard-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;

  margin-bottom: 19px;
}

.fad-dashboard-eyebrow {
  display: block;

  margin-bottom: 6px;

  color: rgba(255, 255, 255, .55);

  font-size: 10px;
  line-height: 1;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.1px;
}

.fad-dashboard-header h3 {
  margin: 0;

  color: #ffffff;

  font-size: 27px;
  line-height: 1.15;
  font-weight: 950;
}

.fad-ai-powered {
  min-height: 40px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 15px;

  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #ef1d3d,
      #b2071e
    );

  box-shadow:
    0 14px 30px rgba(236, 25, 57, .28);

  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

/* =========================================================
   ANALYTICS LAYOUT
========================================================= */

.fad-analytics-layout {
  display: grid;
  grid-template-columns: .76fr 1.65fr .82fr;
  gap: 15px;
}

/* =========================================================
   SCORE CARD
========================================================= */

.fad-score-card,
.fad-graph-card,
.fad-summary-card {
  min-width: 0;

  padding: 18px;

  border-radius: 19px;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .05),
      rgba(255, 255, 255, .018)
    );

  border: 1px solid rgba(255, 255, 255, .10);
}

.fad-score-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.fad-score-ring {
  width: 160px;
  height: 160px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background:
    conic-gradient(
      #34ee79 0 77%,
      #28d9bc 77% 85%,
      rgba(255, 255, 255, .09) 85% 100%
    );

  box-shadow:
    0 0 40px rgba(52, 238, 121, .18);
}

.fad-score-inner {
  width: 123px;
  height: 123px;

  display: grid;
  place-content: center;

  border-radius: 50%;

  text-align: center;

  background: #071537;

  border: 1px solid rgba(255, 255, 255, .08);
}

.fad-score-inner strong {
  display: block;

  color: #ffffff;

  font-size: 43px;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 950;
}

.fad-score-inner span {
  display: block;

  margin-top: 7px;

  color: rgba(255, 255, 255, .57);

  font-size: 10px;
  font-weight: 700;
}

.fad-score-growth {
  margin-top: 16px;

  text-align: center;
}

.fad-score-growth strong {
  display: block;

  color: #42eb72;

  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.fad-score-growth span {
  display: block;

  margin-top: 7px;

  color: #45dc70;

  font-size: 11px;
  font-weight: 750;
}

/* =========================================================
   GRAPH CARD
========================================================= */

.fad-graph-label {
  display: block;

  color: rgba(255, 255, 255, .60);

  font-size: 12px;
  font-weight: 800;
}

.fad-graph-card h4 {
  margin: 7px 0 13px;

  color: #ffffff;

  font-size: 21px;
  line-height: 1.2;
  font-weight: 950;
}

.fad-green-progress {
  width: 100%;
  height: 9px;

  overflow: hidden;

  margin-bottom: 14px;

  border-radius: 999px;

  background: rgba(255, 255, 255, .09);
}

.fad-green-progress span {
  display: block;
  height: 100%;

  border-radius: inherit;

  background:
    linear-gradient(
      90deg,
      #29e96f,
      #4ee57c
    );

  box-shadow:
    0 0 17px rgba(41, 233, 111, .42);
}

.fad-chart {
  position: relative;
  height: 170px;
  overflow: hidden;

  border-radius: 12px;
}

.fad-chart-grid-line {
  position: absolute;
  left: 0;
  right: 0;

  height: 1px;

  background: rgba(255, 255, 255, .07);
}

.fad-chart-grid-line.line-1 {
  top: 20%;
}

.fad-chart-grid-line.line-2 {
  top: 40%;
}

.fad-chart-grid-line.line-3 {
  top: 60%;
}

.fad-chart-grid-line.line-4 {
  top: 80%;
}

.fad-chart svg {
  position: absolute;
  inset: 0;

  width: 100%;
  height: calc(100% - 25px);
}

.fad-chart-labels {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  justify-content: space-between;

  color: rgba(255, 255, 255, .50);

  font-size: 8px;
  font-weight: 700;
}

.fad-chart-labels span:last-child {
  color: #43e779;
}

/* =========================================================
   SUMMARY CARD
========================================================= */

.fad-summary-card h4 {
  margin: 0 0 15px;

  color: #ffffff;

  font-size: 16px;
  font-weight: 950;
}

.fad-summary-list {
  display: grid;
  gap: 13px;
}

.fad-summary-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
}

.fad-summary-icon {
  width: 32px;
  height: 32px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: rgba(2, 11, 37, .75);

  font-size: 13px;
}

.fad-summary-blue {
  color: #37a5ff;
  border: 1px solid #37a5ff;
}

.fad-summary-red {
  color: #f63d58;
  border: 1px solid #f63d58;
}

.fad-summary-yellow {
  color: #f8bc27;
  border: 1px solid #f8bc27;
}

.fad-summary-cyan {
  color: #29d4df;
  border: 1px solid #29d4df;
}

.fad-summary-item > span:nth-child(2) {
  color: rgba(255, 255, 255, .76);

  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
}

.fad-summary-item strong {
  color: #ffffff;

  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

/* =========================================================
   SUBJECT LIST
========================================================= */

.fad-subject-list {
  display: grid;
  gap: 8px;

  margin-top: 13px;
}

.fad-subject-row {
  --fad-subject-color: #ef3150;
  --fad-subject-soft: rgba(239, 49, 80, .16);

  display: grid;
  grid-template-columns: 48px 240px minmax(150px, 1fr) 54px 125px;
  gap: 14px;
  align-items: center;

  padding: 11px 13px;

  border-radius: 14px;

  background:
    linear-gradient(
      90deg,
      var(--fad-subject-soft),
      rgba(255, 255, 255, .028)
    );

  border: 1px solid rgba(255, 255, 255, .075);
}

.fad-subject-physics {
  --fad-subject-color: #f03b58;
  --fad-subject-soft: rgba(240, 59, 88, .15);
}

.fad-subject-chemistry {
  --fad-subject-color: #35d36e;
  --fad-subject-soft: rgba(53, 211, 110, .13);
}

.fad-subject-biology {
  --fad-subject-color: #278fff;
  --fad-subject-soft: rgba(39, 143, 255, .14);
}

.fad-subject-maths {
  --fad-subject-color: #aa46e6;
  --fad-subject-soft: rgba(170, 70, 230, .14);
}

.fad-subject-icon {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  border-radius: 11px;

  color: #ffffff;
  background: var(--fad-subject-color);

  box-shadow:
    0 12px 26px var(--fad-subject-soft);

  font-size: 20px;
}

.fad-subject-name strong {
  display: block;

  color: #ffffff;

  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.fad-subject-name small {
  display: block;

  margin-top: 4px;

  color: rgba(255, 255, 255, .52);

  font-size: 9px;
  line-height: 1.3;
  font-weight: 600;
}

.fad-subject-progress {
  width: 100%;
  height: 8px;

  overflow: hidden;

  border-radius: 999px;

  background: rgba(255, 255, 255, .10);
}

.fad-subject-progress span {
  display: block;
  height: 100%;

  border-radius: inherit;

  background: var(--fad-subject-color);

  box-shadow:
    0 0 13px var(--fad-subject-color);
}

.fad-subject-score {
  color: #ffffff;

  font-size: 19px;
  line-height: 1;
  font-weight: 950;
}

.fad-subject-status {
  justify-self: end;

  min-width: 105px;

  padding: 8px 12px;

  border-radius: 999px;

  text-align: center;

  color: var(--fad-subject-color);

  background: var(--fad-subject-soft);

  font-size: 9px;
  line-height: 1;
  font-weight: 850;
}

/* =========================================================
   TOOL CARDS
========================================================= */

.fad-tool-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;

  margin-top: 14px;
}

.fad-tool-card {
  --fad-tool-color: #ed2444;
  --fad-tool-soft: rgba(237, 36, 68, .14);

  min-width: 0;
  min-height: 190px;

  padding: 18px 12px;

  text-align: center;

  border-radius: 18px;

  background:
    radial-gradient(
      circle at 50% 7%,
      var(--fad-tool-soft),
      transparent 35%
    ),
    rgba(255, 255, 255, .025);

  border: 1px solid var(--fad-tool-color);

  transition: .25s ease;
}

.fad-tool-card:hover {
  transform: translateY(-6px);

  box-shadow:
    0 22px 48px rgba(0, 0, 0, .24),
    0 0 24px var(--fad-tool-soft);
}

.fad-tool-red {
  --fad-tool-color: #ed2848;
  --fad-tool-soft: rgba(237, 40, 72, .16);
}

.fad-tool-yellow {
  --fad-tool-color: #e7ae27;
  --fad-tool-soft: rgba(231, 174, 39, .15);
}

.fad-tool-blue {
  --fad-tool-color: #278bff;
  --fad-tool-soft: rgba(39, 139, 255, .15);
}

.fad-tool-purple {
  --fad-tool-color: #9f43e0;
  --fad-tool-soft: rgba(159, 67, 224, .15);
}

.fad-tool-orange {
  --fad-tool-color: #e5aa2b;
  --fad-tool-soft: rgba(229, 170, 43, .15);
}

.fad-tool-cyan {
  --fad-tool-color: #25cbd8;
  --fad-tool-soft: rgba(37, 203, 216, .15);
}

.fad-tool-icon {
  width: 60px;
  height: 60px;

  display: grid;
  place-items: center;

  margin: 0 auto 16px;

  border-radius: 50%;

  color: var(--fad-tool-color);

  background: rgba(2, 10, 34, .78);

  border: 1px solid var(--fad-tool-color);

  box-shadow:
    0 0 0 7px var(--fad-tool-soft);

  font-size: 25px;
}

.fad-tool-card h4 {
  margin: 0 0 6px;

  color: #ffffff;

  font-size: 14px;
  line-height: 1.2;
  font-weight: 950;
}

.fad-tool-card p {
  min-height: 30px;

  margin: 0 0 13px;

  color: rgba(255, 255, 255, .60);

  font-size: 10px;
  line-height: 1.4;
  font-weight: 600;
}

.fad-tool-card a {
  min-height: 32px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 8px 13px;

  border-radius: 999px;

  color: #ffffff;

  background: rgba(255, 255, 255, .06);

  border: 1px solid rgba(255, 255, 255, .11);

  text-decoration: none;

  font-size: 9px;
  line-height: 1;
  font-weight: 800;
}

/* =========================================================
   RURAL PANEL
========================================================= */

.fad-rural-panel {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 300px;
  gap: 25px;
  align-items: center;

  margin-top: 15px;
  padding: 20px 22px;

  border-radius: 20px;

  background:
    radial-gradient(
      circle at 10% 50%,
      rgba(38, 123, 242, .27),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .045),
      rgba(255, 255, 255, .018)
    );

  border: 1px solid rgba(45, 118, 243, .48);

  box-shadow:
    0 24px 60px rgba(0, 0, 0, .24);
}

.fad-rural-visual {
  min-height: 145px;

  display: grid;
  place-items: center;

  border-radius: 18px;

  background:
    radial-gradient(
      circle,
      rgba(27, 133, 255, .48),
      transparent 67%
    );
}

.fad-rural-icon {
  width: 120px;
  height: 120px;

  display: grid;
  place-items: center;

  color: #51d8ff;

  border-radius: 30px;

  border: 2px solid rgba(73, 204, 255, .60);

  box-shadow:
    0 0 45px rgba(39, 145, 255, .65),
    inset 0 0 35px rgba(39, 145, 255, .20);

  font-size: 56px;

  transform: perspective(500px) rotateX(12deg) rotateZ(-4deg);
}

.fad-rural-content h3 {
  margin: 0;

  color: #ffffff;

  font-size: 28px;
  line-height: 1.13;
  letter-spacing: -.7px;
  font-weight: 950;
}

.fad-rural-content h3 span {
  display: block;

  color: var(--fad-red);
}

.fad-rural-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  margin-top: 18px;
}

.fad-rural-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 9px 12px;

  border-radius: 10px;

  color: rgba(255, 255, 255, .79);

  background: rgba(255, 255, 255, .04);

  border: 1px solid rgba(255, 255, 255, .07);

  font-size: 9px;
  line-height: 1;
  font-weight: 750;
}

.fad-rural-benefits span:nth-child(1) i {
  color: #4ac7ff;
}

.fad-rural-benefits span:nth-child(2) i {
  color: #44df62;
}

.fad-rural-benefits span:nth-child(3) i {
  color: #318df7;
}

.fad-helpline-card {
  padding: 20px;

  border-radius: 17px;

  background: rgba(1, 8, 27, .64);

  border: 1px dashed rgba(255, 255, 255, .22);
}

.fad-helpline-number {
  display: flex;
  align-items: center;
  gap: 13px;
}

.fad-helpline-number > span {
  width: 52px;
  height: 52px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #ef2545,
      #a9061d
    );

  font-size: 20px;
}

.fad-helpline-number small {
  display: block;

  margin-bottom: 4px;

  color: rgba(255, 255, 255, .63);

  font-size: 10px;
  font-weight: 700;
}

.fad-helpline-number a {
  color: #ffffff;

  text-decoration: none;

  font-size: 24px;
  line-height: 1;
  font-weight: 950;
}

.fad-helpline-card p {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: 15px 0 0;

  color: rgba(255, 255, 255, .70);

  font-size: 11px;
  font-weight: 700;
}

.fad-helpline-card p i {
  color: #ef2848;
}

/* =========================================================
   APP STRIP
========================================================= */

.fad-app-strip {
  display: grid;
  grid-template-columns: 1.15fr .9fr .9fr;
  gap: 20px;
  align-items: center;

  margin-top: 14px;
  padding: 14px 17px;

  border-radius: 17px;

  background: rgba(255, 255, 255, .025);

  border: 1px solid rgba(255, 255, 255, .12);
}

.fad-app-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fad-app-icon {
  width: 51px;
  height: 51px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #25aaf3,
      #2368e5
    );

  box-shadow:
    0 14px 28px rgba(37, 125, 235, .24);

  font-size: 23px;
}

.fad-app-info strong {
  display: block;

  margin-bottom: 4px;

  color: #ffffff;

  font-size: 13px;
  font-weight: 900;
}

.fad-app-info small {
  display: block;

  color: rgba(255, 255, 255, .58);

  font-size: 8px;
  line-height: 1.4;
  font-weight: 600;
}

.fad-store-buttons {
  display: flex;
  gap: 9px;
}

.fad-store-buttons a {
  min-width: 125px;
  min-height: 43px;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 8px 11px;

  border-radius: 8px;

  color: #ffffff;

  background: #000000;

  border: 1px solid rgba(255, 255, 255, .30);

  text-decoration: none;
}

.fad-store-buttons i {
  font-size: 20px;
}

.fad-store-buttons small {
  display: block;

  font-size: 6px;
  line-height: 1;
}

.fad-store-buttons strong {
  display: block;

  margin-top: 3px;

  font-size: 10px;
  line-height: 1;
}

.fad-revolution-card {
  min-height: 72px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  padding: 14px 18px;

  border-radius: 13px;

  color: #ffffff;

  background:
    linear-gradient(
      135deg,
      #c91531,
      #790c2f
    );

  text-decoration: none;

  box-shadow:
    0 16px 34px rgba(190, 17, 50, .25);
}

.fad-revolution-card strong {
  display: block;

  margin-bottom: 4px;

  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

.fad-revolution-card small {
  display: block;

  color: rgba(255, 255, 255, .73);

  font-size: 8px;
  line-height: 1.35;
}

.fad-revolution-card > i {
  font-size: 33px;
}

/* =========================================================
   RESPONSIVE — LAPTOP
========================================================= */

@media (max-width: 1199px) {
  .fad-heading h2 {
    font-size: 48px;
  }

  .fad-subject-row {
    grid-template-columns: 45px 190px minmax(130px, 1fr) 48px 108px;
    gap: 10px;
  }

  .fad-tool-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fad-rural-panel {
    grid-template-columns: 170px minmax(0, 1fr) 260px;
  }

  .fad-app-strip {
    grid-template-columns: 1fr 1fr;
  }

  .fad-revolution-card {
    grid-column: 1 / -1;
  }
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {
  .fad-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fad-analytics-layout {
    grid-template-columns: 1fr 1.5fr;
  }

  .fad-summary-card {
    grid-column: 1 / -1;
  }

  .fad-summary-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fad-subject-row {
    grid-template-columns: 45px 180px minmax(120px, 1fr) 50px;
  }

  .fad-subject-status {
    grid-column: 2 / -1;
    justify-self: start;
  }

  .fad-rural-panel {
    grid-template-columns: 150px 1fr;
  }

  .fad-helpline-card {
    grid-column: 1 / -1;
  }

  .fad-app-strip {
    grid-template-columns: 1fr;
  }

  .fad-store-buttons {
    justify-content: flex-start;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
  .future-ai-dashboard-section {
    padding: 56px 0 38px;
  }

  .fad-heading {
    margin-bottom: 27px;
  }

  .fad-heading-badge {
    min-height: 37px;

    padding: 9px 15px;

    font-size: 10px;
  }

  .fad-heading h2 {
    font-size: 33px;
    line-height: 1.06;
    letter-spacing: -1.1px;
  }

  .fad-heading p {
    font-size: 13px;
    line-height: 1.6;
  }

  .fad-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .fad-feature-card {
    min-height: auto;

    padding: 20px;

    border-radius: 18px;
  }

  .fad-main-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fad-primary-btn,
  .fad-outline-btn {
    width: 100%;
  }

  .fad-dashboard-panel {
    padding: 16px;

    border-radius: 21px;
  }

  .fad-dashboard-header {
    align-items: flex-start;
  }

  .fad-dashboard-header h3 {
    font-size: 21px;
  }

  .fad-ai-powered {
    padding: 8px 10px;

    font-size: 8px;
  }

  .fad-analytics-layout {
    grid-template-columns: 1fr;
  }

  .fad-score-ring {
    width: 135px;
    height: 135px;
  }

  .fad-score-inner {
    width: 103px;
    height: 103px;
  }

  .fad-score-inner strong {
    font-size: 36px;
  }

  .fad-summary-list {
    grid-template-columns: 1fr 1fr;
  }

  .fad-subject-row {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
  }

  .fad-subject-name {
    min-width: 0;
  }

  .fad-subject-progress {
    grid-column: 2 / -1;
  }

  .fad-subject-status {
    grid-column: 2 / -1;
  }

  .fad-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fad-rural-panel {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .fad-rural-visual {
    min-height: auto;
  }

  .fad-rural-icon {
    width: 95px;
    height: 95px;

    margin: auto;

    font-size: 43px;
  }

  .fad-rural-content h3 {
    font-size: 24px;
  }

  .fad-rural-benefits {
    justify-content: center;
  }

  .fad-helpline-number {
    justify-content: center;
  }

  .fad-helpline-card p {
    justify-content: center;
  }

  .fad-store-buttons {
    flex-direction: column;
  }

  .fad-store-buttons a {
    width: 100%;
  }
}

/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .fad-heading h2 {
    font-size: 29px;
  }

  .fad-dashboard-header {
    flex-direction: column;
  }

  .fad-summary-list {
    grid-template-columns: 1fr;
  }

  .fad-tool-grid {
    grid-template-columns: 1fr;
  }

  .fad-subject-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .fad-subject-score {
    grid-column: 2;
  }

  .fad-app-info {
    align-items: flex-start;
  }

  .fad-revolution-card {
    align-items: flex-start;
  }
}





/* =========================================================
   NAVBAR ABOUT DROPDOWN BLACK TEXT FIX
   Paste at very bottom of style.css
========================================================= */

/* Default nav text white */
.main-header .premium-nav-list .nav-link,
.main-header .premium-nav-list .nav-link span,
.main-header .premium-nav-list .nav-link i {
  color: rgba(255, 255, 255, .86) !important;
}

/* Hover / Focus / Click / Dropdown Open state */
.main-header .premium-nav-list .nav-link:hover,
.main-header .premium-nav-list .nav-link:focus,
.main-header .premium-nav-list .nav-link:active,
.main-header .premium-nav-list .nav-link.show,
.main-header .premium-nav-list .nav-link.active,
.main-header .premium-nav-list .dropdown-toggle.show,
.main-header .premium-nav-list .dropdown-toggle:focus,
.main-header .premium-nav-list .dropdown-toggle:active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .075) !important;
}

/* Important: span black hone se rokega */
.main-header .premium-nav-list .nav-link:hover span,
.main-header .premium-nav-list .nav-link:focus span,
.main-header .premium-nav-list .nav-link:active span,
.main-header .premium-nav-list .nav-link.show span,
.main-header .premium-nav-list .nav-link.active span,
.main-header .premium-nav-list .dropdown-toggle.show span,
.main-header .premium-nav-list .dropdown-toggle:focus span,
.main-header .premium-nav-list .dropdown-toggle:active span {
  color: #ffffff !important;
}

/* Icon bhi white rahe */
.main-header .premium-nav-list .nav-link:hover i,
.main-header .premium-nav-list .nav-link:focus i,
.main-header .premium-nav-list .nav-link:active i,
.main-header .premium-nav-list .nav-link.show i,
.main-header .premium-nav-list .dropdown-toggle.show i {
  color: #ffffff !important;
}

/* About dropdown open state premium background */
.main-header .about-dropdown .dropdown-toggle.show {
  background: rgba(212, 13, 31, .18) !important;
  border-color: rgba(212, 13, 31, .32) !important;
  color: #ffffff !important;
}

/* Dropdown arrow white fix */
.main-header .premium-nav-list .dropdown-toggle::after,
.main-header .premium-nav-list .dropdown-toggle.show::after,
.main-header .premium-nav-list .dropdown-toggle:focus::after,
.main-header .premium-nav-list .dropdown-toggle:active::after {
  border-top-color: #ffffff !important;
}

/* Bootstrap focus shadow/outline remove */
.main-header .premium-nav-list .nav-link:focus,
.main-header .premium-nav-list .dropdown-toggle:focus {
  box-shadow: none !important;
  outline: none !important;
}

/* Dropdown item text white fix */
.main-header .premium-dropdown .dropdown-item,
.main-header .premium-dropdown .dropdown-item strong,
.main-header .premium-dropdown .dropdown-item small {
  color: rgba(255, 255, 255, .88) !important;
}

.main-header .premium-dropdown .dropdown-item:hover,
.main-header .premium-dropdown .dropdown-item:focus,
.main-header .premium-dropdown .dropdown-item:hover strong,
.main-header .premium-dropdown .dropdown-item:focus strong {
  color: #ffffff !important;
}

/* Mobile menu same fix */
@media (max-width: 1199px) {

  .main-header .premium-nav-list .nav-link,
  .main-header .premium-nav-list .nav-link span,
  .main-header .premium-nav-list .nav-link i {
    color: rgba(255, 255, 255, .90) !important;
  }

  .main-header .premium-nav-list .nav-link.show,
  .main-header .premium-nav-list .nav-link:focus,
  .main-header .premium-nav-list .nav-link:active,
  .main-header .about-dropdown .dropdown-toggle.show {
    color: #ffffff !important;
    background: rgba(212, 13, 31, .20) !important;
    border-color: rgba(212, 13, 31, .34) !important;
  }

  .main-header .premium-nav-list .nav-link.show span,
  .main-header .premium-nav-list .nav-link:focus span,
  .main-header .premium-nav-list .nav-link:active span {
    color: #ffffff !important;
  }
}


























/* =========================================================
   ABOUT ACADEMY - FINAL PREMIUM CLIENT VERSION
========================================================= */

/* =========================================================
   ABOUT HERO MOBILE BOTTOM CUT FIX
   Image frame + red academy focus box safe spacing
========================================================= */




/* Desktop safe */
.aboutv2-hero-card {
  overflow: visible !important;
}

.aboutv2-hero-visual {
  overflow: visible !important;
}

.aboutv2-image-frame {
  overflow: hidden !important;
}

/* Red bottom info card ko image ke andar safe rakho */
.aboutv2-image-info {
  left: 20px !important;
  right: 20px !important;
  bottom: 20px !important;
  max-width: calc(100% - 40px);
}

/* Tablet fix */
@media (max-width: 991px) {
  .aboutv2-hero-card {
    overflow: hidden !important;
  }

  .aboutv2-hero-visual {
    height: auto !important;
    min-height: auto !important;
    padding: 0 18px 34px !important;
  }

  .aboutv2-image-frame {
    height: auto !important;
    min-height: 460px !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  .aboutv2-image-frame img {
    height: 460px !important;
    min-height: 460px !important;
    object-fit: cover;
  }

  .aboutv2-image-info {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
    max-width: calc(100% - 36px);
  }
}

/* Mobile exact fix */
@media (max-width: 767px) {
  .aboutv2-hero {
    padding: 16px 0 48px !important;
  }

  .aboutv2-hero-card {
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .aboutv2-hero-visual {
    padding: 0 12px 30px !important;
  }

  .aboutv2-image-frame {
    height: 380px !important;
    min-height: 380px !important;
    border-radius: 22px !important;
    overflow: hidden !important;
  }

  .aboutv2-image-frame img {
    height: 380px !important;
    min-height: 380px !important;
    object-fit: cover;
    object-position: center top;
  }

  .aboutv2-image-info {
    left: 14px !important;
    right: 14px !important;
    bottom: 16px !important;
    padding: 15px !important;
    border-radius: 18px !important;
    max-width: calc(100% - 28px);
  }

  .aboutv2-image-badge {
    left: 14px !important;
    top: 14px !important;
  }

  /* Floating cards mobile me normal card banenge */
  .aboutv2-floating-stat {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
  }
}

/* Small mobile extra safety */
@media (max-width: 420px) {
  .aboutv2-hero-visual {
    padding: 0 10px 28px !important;
  }

  .aboutv2-image-frame {
    height: 360px !important;
    min-height: 360px !important;
    border-radius: 20px !important;
  }

  .aboutv2-image-frame img {
    height: 360px !important;
    min-height: 360px !important;
  }

  .aboutv2-image-info {
    left: 12px !important;
    right: 12px !important;
    bottom: 14px !important;
    max-width: calc(100% - 24px);
  }
}

.aboutv2-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 7% 4%, rgba(212, 13, 31, .08), transparent 30%),
    radial-gradient(circle at 94% 14%, rgba(7, 27, 77, .08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 48%, #eef2f8 100%);
}

.aboutv2-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.aboutv2-hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 72px;
}

.aboutv2-grid-bg,
.aboutv2-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.aboutv2-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.aboutv2-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.aboutv2-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.aboutv2-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.aboutv2-orb-3 {
  width: 220px;
  height: 220px;
  right: 22%;
  top: 90px;
  background: rgba(212, 13, 31, .08);
}

/* Breadcrumb */
.aboutv2-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .84);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 16px 44px rgba(7, 27, 77, .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.aboutv2-breadcrumb a,
.aboutv2-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.aboutv2-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.aboutv2-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
}

/* Hero Card */
.aboutv2-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .25), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, .14), transparent 26%),
    linear-gradient(135deg, #000b26 0%, #071b4d 56%, #091d56 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow:
    0 38px 110px rgba(0, 11, 38, .26),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.aboutv2-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .55;
  pointer-events: none;
}

.aboutv2-hero-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .24);
  filter: blur(8px);
  pointer-events: none;
}

.aboutv2-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  pointer-events: none;
}

/* Hero Content */
.aboutv2-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutv2-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 18px;
}

.aboutv2-hero-content h1 {
  color: #ffffff;
  max-width: 780px;
  font-size: clamp(28px, 4.3vw, 38px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -1.7px;
  margin: 0 0 16px;
}

.aboutv2-hero-content h1 span {
  color: #ffccd1;
}

.aboutv2-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.72;
  font-weight: 650;
  margin: 0 0 22px;
}

.aboutv2-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.aboutv2-hero-tags span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .085);
  border: 1px solid rgba(255, 255, 255, .13);
  font-size: 11px;
  font-weight: 850;
}

.aboutv2-hero-tags i {
  color: #ffccd1;
}

.aboutv2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.aboutv2-outline-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

/* Hero Visual */
.aboutv2-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 540px;
  padding: 24px;
}

.aboutv2-image-frame {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 492px;
  border-radius: 34px;
  background: #ffffff;
  box-shadow: 0 30px 82px rgba(0, 0, 0, .30);
}

.aboutv2-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 11, 38, .84), transparent 56%),
    radial-gradient(circle at 20% 18%, rgba(212, 13, 31, .18), transparent 30%);
}

.aboutv2-image-frame img {
  width: 100%;
  height: 100%;
  min-height: 492px;
  object-fit: cover;
  display: block;
  transition: .5s ease;
}

.aboutv2-hero-card:hover .aboutv2-image-frame img {
  transform: scale(1.045);
}

.aboutv2-image-badge {
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 11px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(212, 13, 31, .28);
}

.aboutv2-image-info {
  position: absolute;
  z-index: 4;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .20), transparent 28%),
    linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 22px 58px rgba(212, 13, 31, .35);
}

.aboutv2-image-info span {
  display: block;
  color: rgba(255, 255, 255, .76);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .8px;
  margin-bottom: 6px;
}

.aboutv2-image-info h3 {
  color: #ffffff;
  font-size: 21px;
  font-weight: 950;
  margin: 0 0 5px;
}

.aboutv2-image-info p {
  color: rgba(255, 255, 255, .80);
  font-size: 12px;
  margin: 0;
}

.aboutv2-floating-stat {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .68);
  box-shadow: 0 18px 48px rgba(0, 11, 38, .18);
  backdrop-filter: blur(16px);
}

.aboutv2-floating-stat i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.aboutv2-floating-stat strong {
  display: block;
  color: #071b4d;
  font-size: 13px;
  font-weight: 950;
}

.aboutv2-floating-stat span {
  color: rgba(7, 27, 77, .62);
  font-size: 11px;
  font-weight: 750;
}

.aboutv2-stat-1 {
  left: -32px;
  top: 105px;
}

.aboutv2-stat-2 {
  right: -24px;
  bottom: 108px;
}

/* Common Headings */
.aboutv2-section-head {
  max-width: 830px;
  margin: 0 auto 34px;
  text-align: center;
}

.aboutv2-section-head h2,
.aboutv2-intro-text h3,
.aboutv2-method-content h2,
.aboutv2-support-main h2 {
  color: #071b4d;
  font-size: clamp(27px, 3.7vw, 41px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin: 15px 0 12px;
}

.aboutv2-section-head p,
.aboutv2-intro-text p,
.aboutv2-method-content p,
.aboutv2-support-main p {
  color: rgba(7, 27, 77, .64);
  font-size: 13.5px;
  line-height: 1.68;
  font-weight: 650;
}

/* Intro */
.aboutv2-intro {
  background: #ffffff;
}

.aboutv2-intro-card {
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .07), transparent 30%),
    rgba(255, 255, 255, .94);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 28px 88px rgba(7, 27, 77, .10);
}

.aboutv2-quote-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 24px;
  display: flex;
  gap: 15px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .16), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.aboutv2-quote-box>i {
  color: #ffccd1;
  font-size: 34px;
  line-height: 1;
}

.aboutv2-quote-box strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 850;
  margin-bottom: 7px;
}

.aboutv2-quote-box span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
}

.aboutv2-core-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.aboutv2-core-card,
.aboutv2-vm-card,
.aboutv2-method-card,
.aboutv2-program-card,
.aboutv2-support-item,
.aboutv2-why-card {
  position: relative;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 18px 52px rgba(7, 27, 77, .08);
  transition: .28s ease;
}

.aboutv2-core-card:hover,
.aboutv2-vm-card:hover,
.aboutv2-method-card:hover,
.aboutv2-program-card:hover,
.aboutv2-support-item:hover,
.aboutv2-why-card:hover {
  transform: translateY(-7px);
}

.aboutv2-core-card {
  min-height: 210px;
  padding: 22px;
}

.aboutv2-core-card.dark,
.aboutv2-vm-card.dark,
.aboutv2-program-card.featured {
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .20), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.aboutv2-core-card>span,
.aboutv2-method-card>span,
.aboutv2-why-card>span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(7, 27, 77, .08);
  font-size: 38px;
  font-weight: 950;
}

.aboutv2-core-card.dark>span {
  color: rgba(255, 255, 255, .11);
}

.aboutv2-core-card i,
.aboutv2-method-card>i,
.aboutv2-support-item>i,
.aboutv2-why-card>i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 15px;
}

.aboutv2-core-card h3,
.aboutv2-method-card h3,
.aboutv2-support-item h3,
.aboutv2-why-card h3 {
  color: #071b4d;
  font-size: 16px;
  font-weight: 950;
  margin-bottom: 8px;
}

.aboutv2-core-card p,
.aboutv2-method-card p,
.aboutv2-support-item p,
.aboutv2-why-card p {
  color: rgba(7, 27, 77, .62);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
  margin: 0;
}

.aboutv2-core-card.dark h3,
.aboutv2-core-card.dark p,
.aboutv2-vm-card.dark h3,
.aboutv2-vm-card.dark p,
.aboutv2-program-card.featured h3,
.aboutv2-program-card.featured p,
.aboutv2-program-card.featured li,
.aboutv2-program-card.featured a {
  color: #ffffff;
}

.aboutv2-core-card.dark p,
.aboutv2-vm-card.dark p,
.aboutv2-program-card.featured p,
.aboutv2-program-card.featured li {
  color: rgba(255, 255, 255, .72);
}

/* Vision Mission */
.aboutv2-vm,
.aboutv2-programs,
.aboutv2-why {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.aboutv2-vm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.aboutv2-vm-card {
  min-height: 260px;
  padding: 24px;
}

.aboutv2-icon,
.aboutv2-program-top i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 16px;
}

.aboutv2-vm-card h3 {
  color: #071b4d;
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 10px;
}

.aboutv2-vm-card p {
  color: rgba(7, 27, 77, .63);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 650;
}

/* Method */
.aboutv2-method {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(212, 13, 31, .22), transparent 30%),
    linear-gradient(135deg, #000b26 0%, #071b4d 58%, #091d56 100%);
}

.aboutv2-method-content,
.aboutv2-method-content h2,
.aboutv2-method-content p {
  color: #ffffff;
}

.aboutv2-method-content p {
  color: rgba(255, 255, 255, .72);
}

.aboutv2-method-note {
  margin: 20px 0;
  padding: 14px 16px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
}

.aboutv2-method-note i {
  color: #ffccd1;
  font-size: 18px;
}

.aboutv2-method-note span {
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}

.aboutv2-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.aboutv2-method-card {
  min-height: 205px;
  padding: 22px;
  background: rgba(255, 255, 255, .09);
  border-color: rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
}

.aboutv2-method-card>span {
  color: rgba(255, 255, 255, .10);
}

.aboutv2-method-card h3 {
  color: #ffffff;
}

.aboutv2-method-card p {
  color: rgba(255, 255, 255, .72);
}

/* Programs */
.aboutv2-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.aboutv2-program-card {
  overflow: hidden;
  min-height: 380px;
  padding: 25px;
}

.aboutv2-program-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .08);
}

.aboutv2-program-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.aboutv2-program-top i {
  margin: 0;
}

.aboutv2-program-top span {
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.aboutv2-program-card.featured .aboutv2-program-top span {
  color: #ffccd1;
}

.aboutv2-program-card h3 {
  position: relative;
  z-index: 2;
  color: #071b4d;
  font-size: 21px;
  font-weight: 950;
  margin-bottom: 10px;
}

.aboutv2-program-card p {
  position: relative;
  z-index: 2;
  color: rgba(7, 27, 77, .64);
  font-size: 13px;
  line-height: 1.65;
  font-weight: 650;
}

.aboutv2-program-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
}

.aboutv2-program-card li {
  display: flex;
  gap: 9px;
  color: rgba(7, 27, 77, .72);
  font-size: 12.5px;
  font-weight: 750;
}

.aboutv2-program-card li i {
  color: var(--accent-red, #d40d1f);
}

.aboutv2-program-card a {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-red, #d40d1f);
  font-size: 12.5px;
  font-weight: 950;
  text-decoration: none;
}

/* Support */
.aboutv2-support {
  background: #ffffff;
}

.aboutv2-support-main {
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .10), transparent 30%),
    rgba(255, 255, 255, .94);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 24px 70px rgba(7, 27, 77, .09);
}

.aboutv2-support-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .18), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  margin-top: 22px;
}

.aboutv2-support-highlight>i {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.aboutv2-support-highlight h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 7px;
}

.aboutv2-support-highlight p {
  color: rgba(255, 255, 255, .72);
  font-size: 12.5px;
  margin: 0;
}

.aboutv2-support-grid,
.aboutv2-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.aboutv2-support-item,
.aboutv2-why-card {
  min-height: 205px;
  padding: 22px;
}

.aboutv2-why-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* CTA */
.aboutv2-cta-section {
  background: #ffffff;
}

.aboutv2-cta {
  padding: 36px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .22), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 30px 90px rgba(7, 27, 77, .22);
}

.aboutv2-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 13px;
}

.aboutv2-cta h2 {
  color: #ffffff;
  max-width: 760px;
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 10px;
}

.aboutv2-cta p {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.aboutv2-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* Responsive */
@media (max-width: 1199px) {
  .aboutv2-hero-content {
    padding: 42px;
  }

  .aboutv2-vm-grid,
  .aboutv2-program-grid,
  .aboutv2-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aboutv2-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .aboutv2-hero {
    padding-bottom: 52px;
  }

  .aboutv2-hero-card {
    border-radius: 30px;
  }

  .aboutv2-hero-visual {
    min-height: auto;
    padding: 0 18px 18px;
  }

  .aboutv2-image-frame,
  .aboutv2-image-frame img {
    min-height: 430px;
  }

  .aboutv2-floating-stat {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 12px;
  }

  .aboutv2-method-grid,
  .aboutv2-support-grid {
    grid-template-columns: 1fr;
  }

  .aboutv2-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .aboutv2-hero {
    padding-top: 16px;
  }

  .aboutv2-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .aboutv2-breadcrumb a,
  .aboutv2-breadcrumb span {
    font-size: 11.5px;
  }

  .aboutv2-hero-card {
    border-radius: 23px;
  }

  .aboutv2-hero-content {
    padding: 24px 17px 22px;
  }

  .aboutv2-hero-content h1 {
    font-size: 29px;
    letter-spacing: -1px;
  }

  .aboutv2-hero-content p,
  .aboutv2-section-head p,
  .aboutv2-intro-text p,
  .aboutv2-method-content p,
  .aboutv2-support-main p {
    font-size: 13px;
    line-height: 1.62;
  }

  .aboutv2-vm-grid,
  .aboutv2-core-grid,
  .aboutv2-program-grid,
  .aboutv2-support-grid,
  .aboutv2-why-grid {
    grid-template-columns: 1fr;
  }

  .aboutv2-hero-actions,
  .aboutv2-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aboutv2-hero-actions .btn-main,
  .aboutv2-outline-btn,
  .aboutv2-cta-actions .btn-main,
  .aboutv2-cta-actions .btn-white {
    width: 100%;
  }

  .aboutv2-image-frame,
  .aboutv2-image-frame img {
    min-height: 330px;
  }

  .aboutv2-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .aboutv2-section-head h2,
  .aboutv2-intro-text h3,
  .aboutv2-method-content h2,
  .aboutv2-support-main h2 {
    font-size: 27px;
    letter-spacing: -1px;
  }

  .aboutv2-intro-card,
  .aboutv2-support-main,
  .aboutv2-cta {
    padding: 22px;
    border-radius: 26px;
  }

  .aboutv2-support-highlight,
  .aboutv2-quote-box {
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .aboutv2-hero-content h1 {
    font-size: 26px;
  }

  .aboutv2-image-frame,
  .aboutv2-image-frame img {
    min-height: 300px;
  }

  .aboutv2-image-info h3 {
    font-size: 18px;
  }

  .aboutv2-program-card,
  .aboutv2-core-card,
  .aboutv2-vm-card,
  .aboutv2-method-card,
  .aboutv2-support-item,
  .aboutv2-why-card {
    padding: 20px;
    border-radius: 22px;
  }
}
































/* =========================================================
   FOUNDER JOURNEY - BEAUTIFUL PREMIUM VERSION
========================================================= */

.fjx-founder-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 7% 6%, rgba(212, 13, 31, .09), transparent 30%),
    radial-gradient(circle at 92% 10%, rgba(7, 27, 77, .08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 48%, #eef2f8 100%);
}

.fjx-founder-page .container {
  position: relative;
  z-index: 3;
}

/* HERO */
.fjx-hero-section {
  position: relative;
  overflow: hidden;
  padding: 24px 0 72px;
}

.fjx-bg-grid,
.fjx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.fjx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.fjx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(32px);
  pointer-events: none;
}

.fjx-orb-one {
  width: 360px;
  height: 360px;
  left: -170px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.fjx-orb-two {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 40px;
  background: rgba(7, 27, 77, .13);
}

.fjx-orb-three {
  width: 250px;
  height: 250px;
  right: 18%;
  top: 80px;
  background: rgba(212, 13, 31, .08);
}

/* BREADCRUMB */
.fjx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .84);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.fjx-breadcrumb a,
.fjx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
  transition: .25s ease;
}

.fjx-breadcrumb a:hover {
  color: var(--accent-red, #d40d1f);
}

.fjx-breadcrumb>i {
  color: var(--accent-red, #d40d1f);
  font-size: 10px;
  opacity: .85;
}

.fjx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.fjx-breadcrumb a i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* HERO CARD */
.fjx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .25), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, .14), transparent 26%),
    linear-gradient(135deg, #000b26 0%, #071b4d 56%, #091d56 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow:
    0 34px 100px rgba(0, 11, 38, .24),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.fjx-hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .58;
  pointer-events: none;
}

/* PHOTO */
.fjx-photo-area {
  position: relative;
  z-index: 2;
  min-height: 560px;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fjx-photo-card {
  position: relative;
  overflow: hidden;
  height: 435px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow:
    0 28px 74px rgba(0, 0, 0, .28),
    0 0 0 1px rgba(255, 255, 255, .20);
}

.fjx-photo-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 4;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  pointer-events: none;
}

.fjx-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: .55s ease;
}

.fjx-hero-card:hover .fjx-photo-card img {
  transform: scale(1.045);
}

.fjx-photo-glass {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(0, 11, 38, .86), transparent 58%),
    radial-gradient(circle at 18% 16%, rgba(212, 13, 31, .18), transparent 30%);
}

.fjx-founder-id-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  padding: 16px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, .20), transparent 28%),
    linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 20px 52px rgba(212, 13, 31, .34);
  border: 1px solid rgba(255, 255, 255, .18);
}

.fjx-founder-id-card span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: 10px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 1px;
  margin-bottom: 7px;
}

.fjx-founder-id-card h3 {
  color: #ffffff;
  font-size: 22px;
  line-height: 1.12;
  font-weight: 950;
  margin: 0 0 5px;
}

.fjx-founder-id-card p {
  color: rgba(255, 255, 255, .80);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 800;
  margin: 0 0 7px;
}

.fjx-founder-id-card strong {
  display: block;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 950;
}

.fjx-photo-badge-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.fjx-photo-badge-row div {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .095);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
}

.fjx-photo-badge-row i {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.fjx-photo-badge-row span {
  color: rgba(255, 255, 255, .88);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 900;
}

/* HERO CONTENT */
.fjx-hero-content {
  position: relative;
  z-index: 4;
  height: 100%;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fjx-top-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 18px;
}

.fjx-hero-content h1 {
  color: #ffffff;
  font-size: clamp(27px, 4.1vw, 37px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -1.5px;
  margin: 0 0 16px;
}

.fjx-hero-content h1 span {
  color: #ffccd1;
}

.fjx-hero-content p {
  max-width: 700px;
  color: rgba(255, 255, 255, .76);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
  margin: 0 0 24px;
}

.fjx-hero-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 26px;
}

.fjx-hero-info-card {
  min-height: 100px;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .085);
  border: 1px solid rgba(255, 255, 255, .13);
  transition: .25s ease;
}

.fjx-hero-info-card:hover {
  transform: translateY(-5px);
  background: rgba(212, 13, 31, .17);
}

.fjx-hero-info-card i {
  color: #ffccd1;
  font-size: 21px;
  margin-bottom: 9px;
  display: block;
}

.fjx-hero-info-card span {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: 10.5px;
  font-weight: 850;
  margin-bottom: 5px;
}

.fjx-hero-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
}

.fjx-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.fjx-outline-btn,
.fjx-company-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  text-decoration: none;
  transition: .25s ease;
}

.fjx-outline-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
}

.fjx-outline-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
  background: rgba(255, 255, 255, .15);
}

/* SECTION HEADING */
.fjx-section-heading {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.fjx-section-heading h2 {
  color: #071b4d;
  font-size: clamp(28px, 3.8vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin: 15px 0 11px;
}

.fjx-section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(7, 27, 77, .64);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
}

.fjx-section-heading.light h2 {
  color: #ffffff;
}

.fjx-section-heading.light p {
  color: rgba(255, 255, 255, .70);
}

/* STORY */
.fjx-story-section {
  position: relative;
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #ffffff;
}

.fjx-story-card,
.fjx-company-panel,
.fjx-roadmap-card,
.fjx-impact-card {
  height: 100%;
  border-radius: 30px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 22px 64px rgba(7, 27, 77, .085);
}

.fjx-story-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.fjx-story-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .08);
}

.fjx-story-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 16px 34px rgba(212, 13, 31, .25);
  margin-bottom: 18px;
}

.fjx-story-icon i {
  font-size: 24px;
}

.fjx-story-card h3 {
  color: #071b4d;
  font-size: clamp(25px, 3vw, 35px);
  line-height: 1.14;
  font-weight: 950;
  letter-spacing: -1px;
  margin: 0 0 16px;
}

.fjx-story-card p {
  color: rgba(7, 27, 77, .66);
  font-size: 14px;
  line-height: 1.75;
  font-weight: 650;
  margin-bottom: 14px;
}

.fjx-premium-quote {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  margin-top: 24px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .15), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.fjx-premium-quote>i {
  color: #ffccd1;
  font-size: 38px;
  line-height: 1;
}

.fjx-premium-quote h4 {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 850;
  margin: 0 0 9px;
}

.fjx-premium-quote span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
}

/* COMPANY */
.fjx-company-panel {
  position: sticky;
  top: 110px;
  overflow: hidden;
  padding: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .20), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.fjx-company-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .5;
}

.fjx-company-panel>* {
  position: relative;
  z-index: 2;
}

.fjx-company-head {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  margin-bottom: 16px;
}

.fjx-company-head div {
  width: 60px;
  height: 60px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.fjx-company-head i {
  font-size: 25px;
}

.fjx-company-head span {
  color: #ffccd1;
  font-size: 11px;
  font-weight: 900;
}

.fjx-company-head h3 {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 950;
  margin: 5px 0 0;
}

.fjx-company-list {
  display: grid;
  gap: 10px;
}

.fjx-company-list div {
  padding: 12px 13px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .11);
}

.fjx-company-list span {
  display: block;
  color: rgba(255, 255, 255, .58);
  font-size: 10.5px;
  font-weight: 850;
  margin-bottom: 5px;
}

.fjx-company-list strong,
.fjx-company-list a {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 900;
  text-decoration: none;
  word-break: break-word;
}

.fjx-company-btn {
  width: 100%;
  margin-top: 16px;
  color: #071b4d;
  background: #ffffff;
}

/* RESPONSIBILITY */
.fjx-responsibility-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(212, 13, 31, .24), transparent 30%),
    linear-gradient(135deg, #000b26 0%, #071b4d 58%, #091d56 100%);
}

.fjx-resp-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fjx-resp-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
  transition: .28s ease;
}

.fjx-resp-card:hover {
  transform: translateY(-8px);
  background: rgba(212, 13, 31, .18);
}

.fjx-resp-card span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255, 255, 255, .10);
  font-size: 40px;
  line-height: 1;
  font-weight: 950;
}

.fjx-resp-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 16px 34px rgba(212, 13, 31, .25);
  margin-bottom: 16px;
}

.fjx-resp-card h3 {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 950;
  margin-bottom: 9px;
}

.fjx-resp-card p {
  color: rgba(255, 255, 255, .70);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
  margin: 0;
}

/* ROADMAP + IMPACT */
.fjx-roadmap-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.fjx-roadmap-card,
.fjx-impact-card {
  padding: 26px;
}

.fjx-card-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.fjx-card-title>i {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 16px 34px rgba(212, 13, 31, .22);
}

.fjx-card-title span {
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.fjx-card-title h3 {
  color: #071b4d;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 950;
  margin: 4px 0 0;
}

.fjx-timeline-list {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 24px;
}

.fjx-timeline-list::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  bottom: 7px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-red, #d40d1f), rgba(212, 13, 31, .12));
}

.fjx-timeline-list div {
  position: relative;
  padding: 15px 16px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 14px 34px rgba(7, 27, 77, .06);
}

.fjx-timeline-list div::before {
  content: "";
  position: absolute;
  left: -23px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-red, #d40d1f);
  box-shadow: 0 0 0 6px rgba(212, 13, 31, .12);
}

.fjx-timeline-list strong {
  display: block;
  color: #071b4d;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 5px;
}

.fjx-timeline-list p {
  color: rgba(7, 27, 77, .64);
  font-size: 12.5px;
  line-height: 1.58;
  font-weight: 650;
  margin: 0;
}

.fjx-impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.fjx-impact-grid div {
  min-height: 132px;
  padding: 16px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .12), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 14px 34px rgba(7, 27, 77, .06);
}

.fjx-impact-grid i {
  color: var(--accent-red, #d40d1f);
  font-size: 25px;
  margin-bottom: 9px;
  display: block;
}

.fjx-impact-grid strong {
  display: block;
  color: #071b4d;
  font-size: 29px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 7px;
}

.fjx-impact-grid span {
  color: rgba(7, 27, 77, .66);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 800;
}

.fjx-impact-image {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  margin-top: 15px;
  border-radius: 22px;
  background: #071b4d;
}

.fjx-impact-image img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  opacity: .72;
}

.fjx-impact-image div {
  position: absolute;
  inset: auto 18px 16px;
  color: #ffffff;
  text-align: center;
}

.fjx-impact-image i {
  color: var(--accent-red, #d40d1f);
  font-size: 30px;
}

.fjx-impact-image p {
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 900;
  margin: 0;
}

/* RECOGNITION */
.fjx-recognition-section {
  background: #ffffff;
}

.fjx-recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fjx-recognition-card {
  min-height: 220px;
  padding: 22px;
  border-radius: 26px;
  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 18px 54px rgba(7, 27, 77, .08);
  transition: .28s ease;
}

.fjx-recognition-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .20);
}

.fjx-recognition-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 16px 34px rgba(212, 13, 31, .22);
  font-size: 23px;
  margin-bottom: 16px;
}

.fjx-recognition-card h3 {
  color: #071b4d;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 950;
  margin-bottom: 9px;
}

.fjx-recognition-card p {
  color: rgba(7, 27, 77, .62);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
  margin: 0;
}

/* VALUE STRIP */
.fjx-value-section {
  padding: 0 0 34px;
  background: #ffffff;
}

.fjx-value-strip {
  padding: 18px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .22), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 24px 72px rgba(7, 27, 77, .22);
}

.fjx-value-strip div {
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.fjx-value-strip div:last-child {
  border-right: 0;
}

.fjx-value-strip i {
  color: var(--accent-red, #d40d1f);
  font-size: 37px;
}

.fjx-value-strip strong {
  display: block;
  color: #ffffff;
  font-size: 14.5px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 4px;
}

.fjx-value-strip span {
  display: block;
  color: rgba(255, 255, 255, .70);
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 650;
}

/* CTA */
.fjx-final-cta-section {
  background: #f8f9fc;
}

.fjx-cta-card {
  padding: 34px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .22), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 28px 84px rgba(7, 27, 77, .22);
}

.fjx-cta-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 11px;
  font-weight: 950;
  margin-bottom: 13px;
}

.fjx-cta-card h2 {
  color: #ffffff;
  max-width: 740px;
  font-size: clamp(25px, 3.5vw, 38px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1px;
  margin: 0 0 11px;
}

.fjx-cta-card p {
  max-width: 700px;
  color: rgba(255, 255, 255, .72);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

.fjx-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .fjx-photo-area {
    min-height: 520px;
  }

  .fjx-photo-card {
    height: 410px;
  }

  .fjx-hero-content {
    padding: 40px;
  }

  .fjx-resp-grid,
  .fjx-recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fjx-value-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .fjx-value-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .fjx-value-strip div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 991px) {
  .fjx-hero-section {
    padding-bottom: 52px;
  }

  .fjx-hero-card {
    border-radius: 30px;
  }

  .fjx-photo-area {
    min-height: auto;
    padding: 18px 18px 0;
  }

  .fjx-photo-card {
    height: 440px;
  }

  .fjx-hero-content {
    padding: 30px 26px 30px;
  }

  .fjx-company-panel {
    position: relative;
    top: auto;
  }

  .fjx-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .fjx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .fjx-hero-section {
    padding-top: 16px;
  }

  .fjx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .fjx-breadcrumb a,
  .fjx-breadcrumb span {
    font-size: 11.5px;
  }

  .fjx-hero-card {
    border-radius: 23px;
  }

  .fjx-photo-area {
    padding: 12px 12px 0;
  }

  .fjx-photo-card {
    height: 330px;
    border-radius: 20px;
  }

  .fjx-photo-card::before {
    inset: 8px;
    border-radius: 15px;
  }

  .fjx-founder-id-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 13px;
    border-radius: 16px;
  }

  .fjx-founder-id-card h3 {
    font-size: 18px;
  }

  .fjx-photo-badge-row,
  .fjx-hero-info-grid,
  .fjx-resp-grid,
  .fjx-impact-grid,
  .fjx-recognition-grid,
  .fjx-value-strip {
    grid-template-columns: 1fr;
  }

  .fjx-hero-content {
    padding: 24px 17px 21px;
  }

  .fjx-hero-content h1 {
    font-size: 29px;
    letter-spacing: -1px;
  }

  .fjx-hero-content p,
  .fjx-section-heading p {
    font-size: 13px;
    line-height: 1.62;
  }

  .fjx-hero-actions,
  .fjx-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fjx-hero-actions .btn-main,
  .fjx-outline-btn,
  .fjx-cta-actions .btn-main,
  .fjx-cta-actions .btn-white {
    width: 100%;
  }

  .fjx-section-heading {
    text-align: left;
    margin-bottom: 22px;
  }

  .fjx-section-heading h2 {
    font-size: 27px;
    letter-spacing: -1px;
  }

  .fjx-story-card,
  .fjx-company-panel,
  .fjx-roadmap-card,
  .fjx-impact-card,
  .fjx-cta-card {
    padding: 20px;
    border-radius: 24px;
  }

  .fjx-premium-quote {
    flex-direction: column;
    padding: 17px;
    border-radius: 19px;
  }

  .fjx-resp-card,
  .fjx-recognition-card {
    min-height: auto;
    padding: 20px;
    border-radius: 22px;
  }

  .fjx-card-title {
    align-items: flex-start;
  }

  .fjx-value-strip div {
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .fjx-value-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .fjx-photo-card {
    height: 300px;
  }

  .fjx-hero-content h1 {
    font-size: 26px;
  }

  .fjx-story-card h3 {
    font-size: 24px;
  }

  .fjx-company-head {
    text-align: left;
  }

  .fjx-company-head div {
    margin-left: 0;
  }
}































/* =========================================================
   COMPANY INFORMATION - BEAUTIFUL PREMIUM CLIENT VERSION
   Font-size mostly same, design upgraded
========================================================= */

.companyx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 7% 4%, rgba(212, 13, 31, .08), transparent 30%),
    radial-gradient(circle at 94% 14%, rgba(7, 27, 77, .08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8f9fc 48%, #eef2f8 100%);
}

.companyx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.companyx-hero {
  position: relative;
  overflow: hidden;
  padding: 24px 0 72px;
}

.companyx-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.companyx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.companyx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.companyx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.companyx-orb-3 {
  width: 220px;
  height: 220px;
  right: 22%;
  top: 90px;
  background: rgba(212, 13, 31, .08);
}

/* Breadcrumb */
.companyx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .84);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 16px 44px rgba(7, 27, 77, .10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.companyx-breadcrumb a,
.companyx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.companyx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.companyx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero Card */
.companyx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .25), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, .14), transparent 26%),
    linear-gradient(135deg, #000b26 0%, #071b4d 56%, #091d56 100%);
  border: 1px solid rgba(255, 255, 255, .14);
  box-shadow:
    0 38px 110px rgba(0, 11, 38, .26),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.companyx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: .55;
  pointer-events: none;
}

.companyx-hero-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .24);
  filter: blur(8px);
  pointer-events: none;
}

.companyx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  pointer-events: none;
}

.companyx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.companyx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.companyx-hero-content h1 {
  color: #ffffff;
  max-width: 780px;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
}

.companyx-hero-content h1 span {
  color: #ffccd1;
}

.companyx-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 16.5px;
  line-height: 1.78;
  font-weight: 650;
  margin: 0 0 22px;
}

.companyx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.companyx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background: rgba(255, 255, 255, .085);
  border: 1px solid rgba(255, 255, 255, .13);
  font-size: 12px;
  font-weight: 850;
}

.companyx-hero-tags i {
  color: #ffccd1;
}

.companyx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.companyx-outline-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

/* Hero Panel */
.companyx-hero-panel {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 540px;
  padding: 24px;
}

.companyx-official-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 492px;
  padding: 28px;
  border-radius: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .22), transparent 32%),
    rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 30px 82px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}

.companyx-official-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .55;
  pointer-events: none;
}

.companyx-official-card>* {
  position: relative;
  z-index: 2;
}

.companyx-official-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 18px 40px rgba(212, 13, 31, .28);
  margin-bottom: 22px;
}

.companyx-official-icon i {
  font-size: 30px;
}

.companyx-official-card>span {
  display: block;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
}

.companyx-official-card h3 {
  color: #ffffff;
  font-size: 26px;
  line-height: 1.22;
  font-weight: 950;
  margin-bottom: 22px;
}

.companyx-official-list {
  display: grid;
  gap: 13px;
}

.companyx-official-list div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .12);
}

.companyx-official-list small {
  display: block;
  color: rgba(255, 255, 255, .60);
  font-size: 11px;
  font-weight: 850;
  margin-bottom: 6px;
}

.companyx-official-list strong,
.companyx-official-list a {
  color: #ffffff;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 900;
  text-decoration: none;
  word-break: break-word;
}

.companyx-floating-badge {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .68);
  box-shadow: 0 18px 48px rgba(0, 11, 38, .18);
  backdrop-filter: blur(16px);
}

.companyx-floating-badge i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.companyx-floating-badge strong {
  display: block;
  color: #071b4d;
  font-size: 13px;
  font-weight: 950;
}

.companyx-floating-badge span {
  color: rgba(7, 27, 77, .62);
  font-size: 11px;
  font-weight: 750;
}

.companyx-floating-badge-1 {
  left: -28px;
  top: 105px;
}

.companyx-floating-badge-2 {
  right: -24px;
  bottom: 110px;
}

/* Common sections */
.companyx-section-head {
  max-width: 830px;
  margin: 0 auto 34px;
  text-align: center;
}

.companyx-section-head h2,
.companyx-overview-content h2 {
  color: #071b4d;
  font-size: clamp(28px, 4.8vw, 38px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.6px;
  margin: 18px 0 12px;
}

.companyx-section-head p,
.companyx-overview-content p {
  color: rgba(7, 27, 77, .66);
  font-size: 15.5px;
  line-height: 1.78;
  font-weight: 650;
}

/* Overview */
.companyx-overview,
.companyx-contact-section,
.companyx-summary-section {
  background: #ffffff;
}

.companyx-quote-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 24px;
  display: flex;
  gap: 15px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .16), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.companyx-quote-box>i {
  color: #ffccd1;
  font-size: 34px;
  line-height: 1;
}

.companyx-quote-box strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 850;
  margin-bottom: 7px;
}

.companyx-quote-box span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
}

.companyx-focus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.companyx-focus-card,
.companyx-detail-card,
.companyx-recognition-card {
  position: relative;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 18px 52px rgba(7, 27, 77, .08);
  transition: .28s ease;
}

.companyx-focus-card:hover,
.companyx-detail-card:hover,
.companyx-recognition-card:hover {
  transform: translateY(-7px);
}

.companyx-focus-card {
  min-height: 215px;
  padding: 24px;
}

.companyx-focus-card.dark,
.companyx-detail-card.featured {
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .20), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.companyx-focus-card>span,
.companyx-detail-card>span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(7, 27, 77, .08);
  font-size: 40px;
  font-weight: 950;
}

.companyx-focus-card.dark>span,
.companyx-detail-card.featured>span {
  color: rgba(255, 255, 255, .11);
}

.companyx-focus-card i,
.companyx-detail-icon,
.companyx-recognition-card>i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 18px;
}

.companyx-focus-card h3,
.companyx-detail-card h3,
.companyx-recognition-card h3 {
  color: #071b4d;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 950;
  margin-bottom: 10px;
}

.companyx-focus-card p,
.companyx-detail-card p,
.companyx-recognition-card p {
  color: rgba(7, 27, 77, .62);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

.companyx-focus-card.dark h3,
.companyx-focus-card.dark p,
.companyx-detail-card.featured h3,
.companyx-detail-card.featured p {
  color: #ffffff;
}

.companyx-focus-card.dark p,
.companyx-detail-card.featured p {
  color: rgba(255, 255, 255, .72);
}

/* Details */
.companyx-details,
.companyx-recognition,
.companyx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.companyx-details-grid,
.companyx-recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.companyx-detail-card,
.companyx-recognition-card {
  min-height: 255px;
  padding: 24px;
}

.companyx-detail-card small {
  display: block;
  color: rgba(7, 27, 77, .55);
  font-size: 11.5px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 9px;
}

.companyx-detail-card.featured small {
  color: rgba(255, 255, 255, .62);
}

/* Contact */
.companyx-address-card,
.companyx-contact-panel {
  height: 100%;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .09), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 24px 70px rgba(7, 27, 77, .09);
}

.companyx-card-title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.companyx-card-title>i {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 28px;
}

.companyx-card-title span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 8px;
}

.companyx-card-title h2 {
  color: #071b4d;
  font-size: clamp(26px, 4vw, 37px);
  line-height: 1.16;
  font-weight: 950;
  margin: 0;
}

.companyx-address-card p {
  color: rgba(7, 27, 77, .66);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 650;
  margin-bottom: 24px;
}

.companyx-address-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.companyx-address-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 13px;
  border-radius: 999px;
  color: #071b4d;
  background: #f8f9fc;
  border: 1px solid rgba(7, 27, 77, .08);
  font-size: 12px;
  font-weight: 850;
}

.companyx-address-tags i {
  color: var(--accent-red, #d40d1f);
}

.companyx-contact-panel h3 {
  color: #071b4d;
  font-size: 28px;
  line-height: 1.18;
  font-weight: 950;
  margin: 16px 0 22px;
}

.companyx-contact-list {
  display: grid;
  gap: 12px;
}

.companyx-contact-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 14px;
  border-radius: 20px;
  text-decoration: none;
  background: #f8f9fc;
  border: 1px solid rgba(7, 27, 77, .08);
  transition: .25s ease;
}

.companyx-contact-list a:hover {
  transform: translateY(-4px);
  background: rgba(212, 13, 31, .06);
}

.companyx-contact-list a>i {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.companyx-contact-list span {
  display: block;
  color: rgba(7, 27, 77, .54);
  font-size: 11px;
  font-weight: 850;
  margin-bottom: 4px;
}

.companyx-contact-list strong {
  color: #071b4d;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 950;
}

/* Summary */
.companyx-summary-card {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .20), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 28px 80px rgba(7, 27, 77, .20);
}

.companyx-summary-left h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.12;
  font-weight: 950;
  margin: 16px 0 12px;
}

.companyx-summary-left p {
  color: rgba(255, 255, 255, .72);
  font-size: 14.5px;
  line-height: 1.7;
  margin: 0;
}

.companyx-summary-table {
  display: grid;
  gap: 12px;
}

.companyx-summary-table div {
  padding: 14px 16px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.companyx-summary-table span {
  color: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 850;
}

.companyx-summary-table strong {
  color: #ffffff;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 900;
  word-break: break-word;
}

/* CTA */
.companyx-cta {
  padding: 38px;
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .22), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 28px 80px rgba(7, 27, 77, .20);
}

.companyx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.companyx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.companyx-cta p {
  color: rgba(255, 255, 255, .72);
  max-width: 700px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.companyx-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* Responsive */
@media (max-width: 1199px) {
  .companyx-hero-content {
    padding: 42px;
  }

  .companyx-details-grid,
  .companyx-recognition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .companyx-summary-card {
    grid-template-columns: 1fr;
  }

  .companyx-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .companyx-hero {
    padding-bottom: 52px;
  }

  .companyx-hero-card {
    border-radius: 30px;
  }

  .companyx-hero-panel {
    min-height: auto;
    padding: 0 18px 18px;
  }

  .companyx-official-card {
    min-height: auto;
  }

  .companyx-floating-badge {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin-top: 12px;
  }

  .companyx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .companyx-hero {
    padding-top: 16px;
  }

  .companyx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .companyx-breadcrumb a,
  .companyx-breadcrumb span {
    font-size: 12px;
  }

  .companyx-hero-card {
    border-radius: 23px;
  }

  .companyx-hero-content {
    padding: 24px 17px 22px;
  }

  .companyx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .companyx-hero-content p,
  .companyx-section-head p,
  .companyx-overview-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .companyx-focus-grid,
  .companyx-details-grid,
  .companyx-recognition-grid {
    grid-template-columns: 1fr;
  }

  .companyx-hero-actions,
  .companyx-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .companyx-hero-actions .btn-main,
  .companyx-outline-btn,
  .companyx-cta-actions .btn-main,
  .companyx-cta-actions .btn-white {
    width: 100%;
    justify-content: center;
  }

  .companyx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .companyx-section-head h2,
  .companyx-overview-content h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .companyx-card-title {
    flex-direction: column;
  }

  .companyx-official-card,
  .companyx-address-card,
  .companyx-contact-panel,
  .companyx-summary-card,
  .companyx-cta {
    padding: 22px;
    border-radius: 26px;
  }

  .companyx-summary-table div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

@media (max-width: 420px) {
  .companyx-hero-content h1 {
    font-size: 28px;
  }

  .companyx-official-card,
  .companyx-focus-card,
  .companyx-detail-card,
  .companyx-recognition-card,
  .companyx-address-card,
  .companyx-contact-panel,
  .companyx-summary-card,
  .companyx-cta {
    padding: 18px;
    border-radius: 22px;
  }
}

/* =========================================================
   COMPANY HERO MOBILE CUT FIX
   Bottom cut + floating badge + spacing fixed
========================================================= */

/* Desktop me floating badges visible safe */
.companyx-hero-card {
  overflow: visible !important;
}

.companyx-hero-panel {
  overflow: visible !important;
}

/* Official card safe inner layout */
.companyx-official-card {
  overflow: hidden;
}

/* Right badge cut fix */
.companyx-floating-badge-2 {
  right: 18px !important;
  bottom: 110px;
}

/* Tablet / Mobile fix */
@media (max-width: 991px) {

  .companyx-hero-card {
    overflow: hidden !important;
    border-radius: 30px;
  }

  .companyx-hero-panel {
    min-height: auto !important;
    height: auto !important;
    padding: 0 18px 26px !important;
  }

  .companyx-official-card {
    height: auto !important;
    min-height: auto !important;
    padding: 24px !important;
    border-radius: 26px !important;
    margin-bottom: 0 !important;
  }

  .companyx-official-list {
    gap: 12px;
  }

  .companyx-official-list div {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .companyx-floating-badge {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    max-width: 100%;
    margin-top: 12px;
    border-radius: 18px;
  }

  .companyx-floating-badge strong,
  .companyx-floating-badge span {
    white-space: normal;
  }
}

/* Mobile phone exact fix */
@media (max-width: 767px) {

  .companyx-hero {
    padding: 16px 0 46px !important;
  }

  .companyx-hero-card {
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  .companyx-hero-content {
    padding: 24px 17px 22px !important;
  }

  .companyx-hero-panel {
    padding: 0 12px 22px !important;
  }

  .companyx-official-card {
    padding: 20px !important;
    border-radius: 22px !important;
    margin-bottom: 0 !important;
  }

  .companyx-official-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .companyx-official-icon i {
    font-size: 25px;
  }

  .companyx-official-card h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .companyx-official-list div {
    padding: 13px 14px;
    border-radius: 15px;
  }

  .companyx-floating-badge {
    margin-top: 12px;
    padding: 13px 14px;
  }
}

/* Small phone extra safety */
@media (max-width: 420px) {

  .companyx-hero-panel {
    padding: 0 10px 20px !important;
  }

  .companyx-official-card {
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .companyx-official-card h3 {
    font-size: 20px;
  }

  .companyx-official-list strong,
  .companyx-official-list a {
    font-size: 12.5px;
    line-height: 1.45;
  }
}

/* =========================================================
   COMPANY HERO PANEL FINAL CLEAN FIX
   Absolute floating badges removed, no cut, no overlap
========================================================= */

.companyx-hero-card {
  overflow: hidden !important;
}

.companyx-hero-panel {
  position: relative !important;
  z-index: 3;
  height: 100%;
  min-height: auto !important;
  padding: 24px !important;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: visible !important;
}

.companyx-official-card {
  height: auto !important;
  min-height: auto !important;
  overflow: hidden !important;
  padding: 28px !important;
  border-radius: 34px !important;
}

/* old floating badges completely disable */
.companyx-floating-badge,
.companyx-floating-badge-1,
.companyx-floating-badge-2 {
  display: none !important;
}

/* new safe cards */
.companyx-hero-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

.companyx-hero-trust-card {
  min-height: 76px;
  padding: 14px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 34px rgba(0, 11, 38, .14);
}

.companyx-hero-trust-card i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.companyx-hero-trust-card strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 4px;
}

.companyx-hero-trust-card span {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 750;
}

/* email/address long text safe */
.companyx-official-list strong,
.companyx-official-list a {
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
}

/* tablet */
@media (max-width: 991px) {
  .companyx-hero-panel {
    padding: 0 18px 24px !important;
  }

  .companyx-official-card {
    padding: 24px !important;
    border-radius: 26px !important;
  }

  .companyx-hero-trust-row {
    grid-template-columns: 1fr;
  }
}

/* mobile */
@media (max-width: 767px) {
  .companyx-hero-panel {
    padding: 0 12px 22px !important;
  }

  .companyx-official-card {
    padding: 20px !important;
    border-radius: 22px !important;
  }

  .companyx-official-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    margin-bottom: 16px;
  }

  .companyx-official-card h3 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .companyx-hero-trust-card {
    min-height: 70px;
    border-radius: 18px;
  }
}

/* small phone */
@media (max-width: 420px) {
  .companyx-hero-panel {
    padding: 0 10px 20px !important;
  }

  .companyx-official-card {
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .companyx-official-card h3 {
    font-size: 20px;
  }
}




































/* =========================================================
   NEET PROGRAM / COURSES PAGE - ULTRA PRO PREMIUM FINAL
========================================================= */

.coursex-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.coursex-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.coursex-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.coursex-bg-grid,
.coursex-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.coursex-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.coursex-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.coursex-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.coursex-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.coursex-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.coursex-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.coursex-breadcrumb a,
.coursex-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.coursex-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.coursex-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero Card */
.coursex-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.coursex-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.coursex-hero-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .25);
  filter: blur(8px);
  pointer-events: none;
}

.coursex-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: coursexShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes coursexShineMove {
  from {
    transform: translateX(-8%) rotate(12deg);
  }

  to {
    transform: translateX(8%) rotate(12deg);
  }
}

.coursex-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coursex-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.coursex-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(28px, 5vw, 38px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.coursex-hero-content h1 span {
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coursex-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 22px;
}

.coursex-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.coursex-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 850;
}

.coursex-hero-tags i {
  color: #ffccd1;
}

/* Hero Stats */
.coursex-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  max-width: 720px;
  margin-bottom: 26px;
}

.coursex-hero-stats div {
  padding: 14px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}

.coursex-hero-stats strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
  margin-bottom: 4px;
}

.coursex-hero-stats span {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 750;
}

.coursex-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coursex-outline-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

/* Hero Panel */
.coursex-hero-panel {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 520px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coursex-hero-program-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  padding: 30px;
  border-radius: 38px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 7%, rgba(212, 13, 31, .28), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(255, 255, 255, .10), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 32px 86px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.coursex-hero-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .65;
  pointer-events: none;
}

.coursex-hero-program-card>* {
  position: relative;
  z-index: 2;
}

.coursex-main-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow:
    0 18px 40px rgba(212, 13, 31, .30),
    inset 0 1px 0 rgba(255, 255, 255, .20);
  margin-bottom: 22px;
}

.coursex-main-icon i {
  font-size: 31px;
}

.coursex-hero-program-card>span {
  display: block;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
}

.coursex-hero-program-card h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 950;
  margin-bottom: 12px;
}

.coursex-hero-program-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
}

.coursex-hero-mini-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.coursex-hero-mini-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .16);
  transition: .28s ease;
}

.coursex-hero-mini-grid div:hover {
  transform: translateX(6px);
  background: rgba(212, 13, 31, .18);
}

.coursex-hero-mini-grid i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.coursex-hero-mini-grid strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.coursex-hero-mini-grid small {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

/* Hero Trust Row */
.coursex-hero-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.coursex-hero-trust-row div {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px);
}

.coursex-hero-trust-row i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.coursex-hero-trust-row span {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* Common Headings */
.coursex-section-head {
  max-width: 830px;
  margin: 0 auto 34px;
  text-align: center;
}

.coursex-section-head h2,
.coursex-detail-intro h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.coursex-section-head p,
.coursex-detail-intro p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.coursex-section-head.light h2 {
  color: #ffffff;
}

.coursex-section-head.light p {
  color: rgba(255, 255, 255, .72);
}

/* Program Cards */
.coursex-programs,
.coursex-detail-section.alt,
.coursex-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.coursex-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.coursex-program-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  padding: 26px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .08), transparent 30%),
    linear-gradient(180deg, #ffffff, #fbfcff);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 24px 70px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .85);
  transition: .28s ease;
}

.coursex-program-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .08);
}

.coursex-program-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 13, 31, .22), rgba(7, 27, 77, .08), rgba(255, 255, 255, .5));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.coursex-program-card:hover {
  transform: translateY(-11px) scale(1.012);
  box-shadow:
    0 34px 90px rgba(7, 27, 77, .16),
    0 14px 34px rgba(212, 13, 31, .08);
}

.coursex-program-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .26), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow:
    0 34px 95px rgba(7, 27, 77, .22),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.coursex-program-top,
.coursex-program-card h3,
.coursex-program-card p,
.coursex-program-card ul,
.coursex-program-card a {
  position: relative;
  z-index: 2;
}

.coursex-program-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.coursex-program-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow:
    0 18px 40px rgba(212, 13, 31, .30),
    inset 0 1px 0 rgba(255, 255, 255, .20);
}

.coursex-program-top span {
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.coursex-program-card.featured .coursex-program-top span {
  color: #ffccd1;
}

.coursex-program-card h3 {
  color: #071b4d;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -.4px;
  margin-bottom: 10px;
}

.coursex-program-card p {
  color: rgba(7, 27, 77, .64);
  font-size: 13px;
  line-height: 1.66;
  font-weight: 650;
}

.coursex-program-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
}

.coursex-program-card li {
  display: flex;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(248, 249, 252, .82);
  border: 1px solid rgba(7, 27, 77, .055);
  color: rgba(7, 27, 77, .72);
  font-size: 12.5px;
  font-weight: 750;
}

.coursex-program-card li i {
  color: var(--accent-red, #d40d1f);
}

.coursex-program-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--accent-red, #d40d1f);
  background: rgba(212, 13, 31, .08);
  border: 1px solid rgba(212, 13, 31, .12);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  transition: .25s ease;
}

.coursex-program-card a:hover {
  transform: translateY(-2px);
  background: var(--accent-red, #d40d1f);
  color: #ffffff;
}

.coursex-program-card.featured h3,
.coursex-program-card.featured p,
.coursex-program-card.featured li,
.coursex-program-card.featured a {
  color: #ffffff;
}

.coursex-program-card.featured p,
.coursex-program-card.featured li {
  color: rgba(255, 255, 255, .72);
}

.coursex-program-card.featured li {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.coursex-program-card.featured li i,
.coursex-program-card.featured a {
  color: #ffccd1;
}

.coursex-program-card.featured a {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .16);
}

/* Detail Sections */
.coursex-detail-section {
  position: relative;
  background: #ffffff;
}

.coursex-detail-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 18%, rgba(212, 13, 31, .055), transparent 28%),
    radial-gradient(circle at 94% 78%, rgba(7, 27, 77, .055), transparent 30%);
  pointer-events: none;
}

.coursex-highlight-box {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: 20px;
  border-radius: 28px;
  display: flex;
  gap: 15px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .16), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 24px 70px rgba(7, 27, 77, .18);
}

.coursex-highlight-box::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .20);
  filter: blur(4px);
}

.coursex-highlight-box>i {
  position: relative;
  z-index: 2;
  color: #ffccd1;
  font-size: 34px;
  line-height: 1;
}

.coursex-highlight-box div {
  position: relative;
  z-index: 2;
}

.coursex-highlight-box strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 850;
  margin-bottom: 7px;
}

.coursex-highlight-box span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
}

.coursex-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.coursex-detail-card {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 20px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .28s ease;
}

.coursex-detail-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 52px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  opacity: .85;
}

.coursex-detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .18);
}

.coursex-detail-card>i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow:
    0 18px 40px rgba(212, 13, 31, .30),
    inset 0 1px 0 rgba(255, 255, 255, .20);
  margin-bottom: 15px;
}

.coursex-detail-card h3 {
  color: #071b4d;
  font-size: 16px;
  font-weight: 950;
  margin-bottom: 8px;
}

.coursex-detail-card p {
  color: rgba(7, 27, 77, .62);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
  margin: 0;
}

/* Test Section */
.coursex-test-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .28), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.coursex-test-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.coursex-test-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow:
    0 22px 62px rgba(0, 11, 38, .18),
    inset 0 1px 0 rgba(255, 255, 255, .14);
  backdrop-filter: blur(18px);
  transition: .28s ease;
}

.coursex-test-card::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .14);
}

.coursex-test-card:hover {
  transform: translateY(-10px);
  background: rgba(212, 13, 31, .18);
}

.coursex-test-card span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255, 255, 255, .10);
  font-size: 38px;
  font-weight: 950;
}

.coursex-test-card>i {
  position: relative;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow:
    0 18px 40px rgba(212, 13, 31, .30),
    inset 0 1px 0 rgba(255, 255, 255, .20);
  margin-bottom: 15px;
}

.coursex-test-card h3,
.coursex-test-card p {
  position: relative;
  z-index: 2;
}

.coursex-test-card h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  margin-bottom: 8px;
}

.coursex-test-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 650;
  margin: 0;
}

/* CTA */
.coursex-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 34px 98px rgba(7, 27, 77, .25),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.coursex-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.coursex-cta>* {
  position: relative;
  z-index: 2;
}

.coursex-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.coursex-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.coursex-cta p {
  color: rgba(255, 255, 255, .72);
  max-width: 700px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.coursex-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* Responsive */
@media (max-width: 1199px) {
  .coursex-hero-content {
    padding: 42px;
  }

  .coursex-program-grid,
  .coursex-test-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coursex-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .coursex-hero {
    padding-bottom: 52px;
  }

  .coursex-hero-card {
    border-radius: 32px;
  }

  .coursex-hero-panel {
    min-height: auto;
    padding: 0 18px 24px;
  }

  .coursex-hero-program-card {
    min-height: auto;
    border-radius: 28px;
  }

  .coursex-hero-trust-row {
    grid-template-columns: 1fr;
  }

  .coursex-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .coursex-hero {
    padding-top: 16px;
  }

  .coursex-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .coursex-breadcrumb a,
  .coursex-breadcrumb span {
    font-size: 12px;
  }

  .coursex-hero-card {
    border-radius: 24px;
  }

  .coursex-hero-content {
    padding: 24px 17px 22px;
  }

  .coursex-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .coursex-hero-content p,
  .coursex-section-head p,
  .coursex-detail-intro p {
    font-size: 14px;
    line-height: 1.65;
  }

  .coursex-hero-stats,
  .coursex-program-grid,
  .coursex-detail-grid,
  .coursex-test-grid {
    grid-template-columns: 1fr;
  }

  .coursex-hero-actions,
  .coursex-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .coursex-hero-actions .btn-main,
  .coursex-outline-btn,
  .coursex-cta-actions .btn-main,
  .coursex-cta-actions .btn-white {
    width: 100%;
    justify-content: center;
  }

  .coursex-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .coursex-section-head h2,
  .coursex-detail-intro h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .coursex-highlight-box {
    flex-direction: column;
  }

  .coursex-hero-program-card,
  .coursex-program-card,
  .coursex-detail-card,
  .coursex-test-card,
  .coursex-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .coursex-program-card:hover,
  .coursex-detail-card:hover,
  .coursex-test-card:hover {
    transform: none;
  }

  .coursex-program-card li {
    padding: 8px 9px;
  }
}

@media (max-width: 420px) {
  .coursex-hero-content h1 {
    font-size: 28px;
  }

  .coursex-hero-program-card,
  .coursex-program-card,
  .coursex-detail-card,
  .coursex-test-card,
  .coursex-cta {
    padding: 18px;
    border-radius: 22px;
  }
}






























/* =========================================================
   JEE PROGRAM PAGE - ULTRA PRO PREMIUM
========================================================= */

.jeex-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.jeex-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.jeex-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.jeex-bg-grid,
.jeex-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.jeex-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.jeex-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.jeex-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.jeex-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.jeex-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.jeex-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.jeex-breadcrumb a,
.jeex-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.jeex-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.jeex-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero Card */
.jeex-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.jeex-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.jeex-hero-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .25);
  filter: blur(8px);
  pointer-events: none;
}

.jeex-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: jeexShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes jeexShineMove {
  from {
    transform: translateX(-8%) rotate(12deg);
  }

  to {
    transform: translateX(8%) rotate(12deg);
  }
}

.jeex-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jeex-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.jeex-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(28px, 5vw, 40px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.jeex-hero-content h1 span {
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.jeex-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 22px;
}

.jeex-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.jeex-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 850;
}

.jeex-hero-tags i {
  color: #ffccd1;
}

.jeex-premium-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  max-width: 720px;
  margin-bottom: 26px;
}

.jeex-premium-stats div {
  padding: 14px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}

.jeex-premium-stats strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
  margin-bottom: 4px;
}

.jeex-premium-stats span {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 750;
}

.jeex-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.jeex-outline-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

/* Hero Panel */
.jeex-hero-panel {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 520px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jeex-hero-program-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  padding: 30px;
  border-radius: 38px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 7%, rgba(212, 13, 31, .28), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(255, 255, 255, .10), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 32px 86px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.jeex-hero-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .65;
  pointer-events: none;
}

.jeex-hero-program-card>* {
  position: relative;
  z-index: 2;
}

.jeex-main-icon,
.jeex-subject-icon,
.jeex-program-icon,
.jeex-detail-card>i,
.jeex-method-card>i,
.jeex-guidance-card>i {
  box-shadow:
    0 18px 40px rgba(212, 13, 31, .30),
    inset 0 1px 0 rgba(255, 255, 255, .20);
}

.jeex-main-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 22px;
}

.jeex-main-icon i {
  font-size: 31px;
}

.jeex-hero-program-card>span {
  display: block;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
}

.jeex-hero-program-card h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 950;
  margin-bottom: 12px;
}

.jeex-hero-program-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
}

.jeex-hero-mini-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.jeex-hero-mini-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .16);
  transition: .28s ease;
}

.jeex-hero-mini-grid div:hover {
  transform: translateX(6px);
  background: rgba(212, 13, 31, .18);
}

.jeex-hero-mini-grid i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.jeex-hero-mini-grid strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.jeex-hero-mini-grid small {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

.jeex-premium-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.jeex-premium-trust div {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.jeex-premium-trust i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.jeex-premium-trust span {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* Common */
.jeex-section-head {
  max-width: 830px;
  margin: 0 auto 34px;
  text-align: center;
}

.jeex-section-head h2,
.jeex-intro-card h2,
.jeex-test-main h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.jeex-section-head p,
.jeex-intro-card p,
.jeex-test-main p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.jeex-section-head.light h2 {
  color: #ffffff;
}

.jeex-section-head.light p {
  color: rgba(255, 255, 255, .72);
}

/* Overview */
.jeex-overview,
.jeex-test-section {
  background: #ffffff;
}

.jeex-intro-card,
.jeex-test-main,
.jeex-guidance-card {
  height: 100%;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .06), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 22px 68px rgba(7, 27, 77, .09);
}

.jeex-highlight-box {
  position: relative;
  overflow: hidden;
  margin-top: 22px;
  padding: 20px;
  border-radius: 28px;
  display: flex;
  gap: 15px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .16), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 24px 70px rgba(7, 27, 77, .18);
}

.jeex-highlight-box>i {
  color: #ffccd1;
  font-size: 34px;
  line-height: 1;
}

.jeex-highlight-box strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 850;
  margin-bottom: 7px;
}

.jeex-highlight-box span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
}

.jeex-detail-grid,
.jeex-subject-grid,
.jeex-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.jeex-detail-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.jeex-detail-card,
.jeex-subject-card,
.jeex-program-card,
.jeex-method-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 20px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .28s ease;
}

.jeex-detail-card {
  min-height: 205px;
  padding: 22px;
}

.jeex-detail-card:hover,
.jeex-subject-card:hover,
.jeex-program-card:hover,
.jeex-method-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .18);
}

.jeex-detail-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 52px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  opacity: .85;
}

.jeex-detail-card>i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 15px;
}

.jeex-detail-card h3,
.jeex-subject-card h3,
.jeex-program-card h3,
.jeex-method-card h3,
.jeex-guidance-card h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.jeex-detail-card p,
.jeex-subject-card p,
.jeex-program-card p,
.jeex-method-card p,
.jeex-guidance-card p {
  color: rgba(7, 27, 77, .62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* Subjects */
.jeex-subjects,
.jeex-programs,
.jeex-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.jeex-subject-card,
.jeex-program-card {
  min-height: 350px;
  padding: 26px;
}

.jeex-subject-card.featured,
.jeex-program-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255, 255, 255, .11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.jeex-subject-icon,
.jeex-program-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 18px;
}

.jeex-subject-card ul,
.jeex-program-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
}

.jeex-subject-card li,
.jeex-program-card li {
  display: flex;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(248, 249, 252, .86);
  border: 1px solid rgba(7, 27, 77, .055);
  color: rgba(7, 27, 77, .72);
  font-size: 12.5px;
  font-weight: 750;
}

.jeex-subject-card li i,
.jeex-program-card li i {
  color: var(--accent-red, #d40d1f);
}

.jeex-subject-card.featured h3,
.jeex-subject-card.featured p,
.jeex-subject-card.featured li,
.jeex-program-card.featured h3,
.jeex-program-card.featured p,
.jeex-program-card.featured li,
.jeex-program-card.featured a {
  color: #ffffff;
}

.jeex-subject-card.featured p,
.jeex-subject-card.featured li,
.jeex-program-card.featured p,
.jeex-program-card.featured li {
  color: rgba(255, 255, 255, .72);
}

.jeex-subject-card.featured li,
.jeex-program-card.featured li {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.jeex-program-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.jeex-program-top span {
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.jeex-program-card.featured .jeex-program-top span {
  color: #ffccd1;
}

.jeex-program-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--accent-red, #d40d1f);
  background: rgba(212, 13, 31, .08);
  border: 1px solid rgba(212, 13, 31, .12);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  transition: .25s ease;
}

.jeex-program-card a:hover {
  transform: translateY(-2px);
  background: var(--accent-red, #d40d1f);
  color: #ffffff;
}

/* Method */
.jeex-method {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.jeex-method-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.jeex-method-card {
  min-height: 220px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  border-color: rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
}

.jeex-method-card span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255, 255, 255, .10);
  font-size: 38px;
  font-weight: 950;
}

.jeex-method-card>i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 15px;
}

.jeex-method-card h3 {
  color: #ffffff;
}

.jeex-method-card p {
  color: rgba(255, 255, 255, .72);
}

/* Test */
.jeex-test-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.jeex-test-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #071b4d;
  background: #f8f9fc;
  border: 1px solid rgba(7, 27, 77, .08);
  font-size: 12px;
  font-weight: 850;
}

.jeex-test-tags i {
  color: var(--accent-red, #d40d1f);
}

.jeex-guidance-card>i {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 26px;
  margin-bottom: 18px;
}

.jeex-guidance-card .btn-main {
  margin-top: 20px;
}

/* CTA */
.jeex-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 34px 98px rgba(7, 27, 77, .25),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.jeex-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.jeex-cta>* {
  position: relative;
  z-index: 2;
}

.jeex-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.jeex-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.jeex-cta p {
  color: rgba(255, 255, 255, .72);
  max-width: 700px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.jeex-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* Responsive */
@media (max-width: 1199px) {
  .jeex-hero-content {
    padding: 42px;
  }

  .jeex-subject-grid,
  .jeex-program-grid,
  .jeex-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jeex-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .jeex-hero {
    padding-bottom: 52px;
  }

  .jeex-hero-card {
    border-radius: 32px;
  }

  .jeex-hero-panel {
    min-height: auto;
    padding: 0 18px 24px;
  }

  .jeex-hero-program-card {
    min-height: auto;
    border-radius: 28px;
  }

  .jeex-premium-trust {
    grid-template-columns: 1fr;
  }

  .jeex-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .jeex-hero {
    padding-top: 16px;
  }

  .jeex-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .jeex-breadcrumb a,
  .jeex-breadcrumb span {
    font-size: 12px;
  }

  .jeex-hero-card {
    border-radius: 24px;
  }

  .jeex-hero-content {
    padding: 24px 17px 22px;
  }

  .jeex-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .jeex-hero-content p,
  .jeex-section-head p,
  .jeex-intro-card p,
  .jeex-test-main p {
    font-size: 14px;
    line-height: 1.65;
  }

  .jeex-premium-stats,
  .jeex-detail-grid,
  .jeex-subject-grid,
  .jeex-program-grid,
  .jeex-method-grid {
    grid-template-columns: 1fr;
  }

  .jeex-hero-actions,
  .jeex-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .jeex-hero-actions .btn-main,
  .jeex-outline-btn,
  .jeex-cta-actions .btn-main,
  .jeex-cta-actions .btn-white {
    width: 100%;
    justify-content: center;
  }

  .jeex-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .jeex-section-head h2,
  .jeex-intro-card h2,
  .jeex-test-main h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .jeex-highlight-box {
    flex-direction: column;
  }

  .jeex-hero-program-card,
  .jeex-intro-card,
  .jeex-detail-card,
  .jeex-subject-card,
  .jeex-program-card,
  .jeex-method-card,
  .jeex-test-main,
  .jeex-guidance-card,
  .jeex-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .jeex-detail-card:hover,
  .jeex-subject-card:hover,
  .jeex-program-card:hover,
  .jeex-method-card:hover {
    transform: none;
  }
}

@media (max-width: 420px) {
  .jeex-hero-content h1 {
    font-size: 28px;
  }

  .jeex-hero-program-card,
  .jeex-intro-card,
  .jeex-detail-card,
  .jeex-subject-card,
  .jeex-program-card,
  .jeex-method-card,
  .jeex-test-main,
  .jeex-guidance-card,
  .jeex-cta {
    padding: 18px;
    border-radius: 22px;
  }
}



































/* =========================================================
   FOUNDATION COURSE PAGE - ULTRA PRO PREMIUM
========================================================= */

.fndx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.fndx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.fndx-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.fndx-bg-grid,
.fndx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.fndx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.fndx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.fndx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.fndx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.fndx-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.fndx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.fndx-breadcrumb a,
.fndx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.fndx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.fndx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero Card */
.fndx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.fndx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.fndx-hero-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .25);
  filter: blur(8px);
  pointer-events: none;
}

.fndx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: fndxShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes fndxShineMove {
  from {
    transform: translateX(-8%) rotate(12deg);
  }

  to {
    transform: translateX(8%) rotate(12deg);
  }
}

.fndx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fndx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.fndx-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(30px, 5vw, 38px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.fndx-hero-content h1 span {
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.fndx-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 22px;
}

.fndx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.fndx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 850;
}

.fndx-hero-tags i {
  color: #ffccd1;
}

.fndx-premium-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  max-width: 720px;
  margin-bottom: 26px;
}

.fndx-premium-stats div {
  padding: 14px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
}

.fndx-premium-stats strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
  margin-bottom: 4px;
}

.fndx-premium-stats span {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 750;
}

.fndx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.fndx-outline-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

/* Hero Panel */
.fndx-hero-panel {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 520px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fndx-hero-program-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  padding: 30px;
  border-radius: 38px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 7%, rgba(212, 13, 31, .28), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(255, 255, 255, .10), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 32px 86px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.fndx-hero-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .65;
  pointer-events: none;
}

.fndx-hero-program-card>* {
  position: relative;
  z-index: 2;
}

.fndx-main-icon,
.fndx-subject-icon,
.fndx-program-icon,
.fndx-detail-card>i,
.fndx-method-card>i,
.fndx-guidance-card>i {
  box-shadow:
    0 18px 40px rgba(212, 13, 31, .30),
    inset 0 1px 0 rgba(255, 255, 255, .20);
}

.fndx-main-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 22px;
}

.fndx-main-icon i {
  font-size: 31px;
}

.fndx-hero-program-card>span {
  display: block;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
}

.fndx-hero-program-card h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 950;
  margin-bottom: 12px;
}

.fndx-hero-program-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
}

.fndx-hero-mini-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.fndx-hero-mini-grid div,
.fndx-premium-trust div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .16);
  transition: .28s ease;
}

.fndx-hero-mini-grid div:hover {
  transform: translateX(6px);
  background: rgba(212, 13, 31, .18);
}

.fndx-hero-mini-grid i,
.fndx-premium-trust i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.fndx-hero-mini-grid strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.fndx-hero-mini-grid small {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

.fndx-premium-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.fndx-premium-trust div {
  min-height: 70px;
}

.fndx-premium-trust span {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* Common */
.fndx-section-head {
  max-width: 830px;
  margin: 0 auto 34px;
  text-align: center;
}

.fndx-section-head h2,
.fndx-intro-card h2,
.fndx-test-main h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.fndx-section-head p,
.fndx-intro-card p,
.fndx-test-main p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.fndx-section-head.light h2 {
  color: #ffffff;
}

.fndx-section-head.light p {
  color: rgba(255, 255, 255, .72);
}

/* Cards */
.fndx-overview,
.fndx-test-section {
  background: #ffffff;
}

.fndx-intro-card,
.fndx-test-main,
.fndx-guidance-card {
  height: 100%;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .06), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 22px 68px rgba(7, 27, 77, .09);
}

.fndx-highlight-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 28px;
  display: flex;
  gap: 15px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .16), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 24px 70px rgba(7, 27, 77, .18);
}

.fndx-highlight-box>i {
  color: #ffccd1;
  font-size: 34px;
  line-height: 1;
}

.fndx-highlight-box strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 850;
  margin-bottom: 7px;
}

.fndx-highlight-box span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
}

.fndx-detail-grid,
.fndx-subject-grid,
.fndx-program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.fndx-detail-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fndx-detail-card,
.fndx-subject-card,
.fndx-program-card,
.fndx-method-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 20px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .28s ease;
}

.fndx-detail-card {
  min-height: 205px;
  padding: 22px;
}

.fndx-detail-card:hover,
.fndx-subject-card:hover,
.fndx-program-card:hover,
.fndx-method-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .18);
}

.fndx-detail-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 52px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  opacity: .85;
}

.fndx-detail-card>i,
.fndx-subject-icon,
.fndx-program-icon,
.fndx-method-card>i,
.fndx-guidance-card>i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 15px;
}

.fndx-detail-card h3,
.fndx-subject-card h3,
.fndx-program-card h3,
.fndx-method-card h3,
.fndx-guidance-card h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.fndx-detail-card p,
.fndx-subject-card p,
.fndx-program-card p,
.fndx-method-card p,
.fndx-guidance-card p {
  color: rgba(7, 27, 77, .62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* Subject + Program */
.fndx-subjects,
.fndx-programs,
.fndx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.fndx-subject-card,
.fndx-program-card {
  min-height: 350px;
  padding: 26px;
}

.fndx-subject-card.featured,
.fndx-program-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255, 255, 255, .11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.fndx-subject-card ul,
.fndx-program-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
}

.fndx-subject-card li,
.fndx-program-card li {
  display: flex;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(248, 249, 252, .86);
  border: 1px solid rgba(7, 27, 77, .055);
  color: rgba(7, 27, 77, .72);
  font-size: 12.5px;
  font-weight: 750;
}

.fndx-subject-card li i,
.fndx-program-card li i {
  color: var(--accent-red, #d40d1f);
}

.fndx-subject-card.featured h3,
.fndx-subject-card.featured p,
.fndx-subject-card.featured li,
.fndx-program-card.featured h3,
.fndx-program-card.featured p,
.fndx-program-card.featured li,
.fndx-program-card.featured a {
  color: #ffffff;
}

.fndx-subject-card.featured p,
.fndx-subject-card.featured li,
.fndx-program-card.featured p,
.fndx-program-card.featured li {
  color: rgba(255, 255, 255, .72);
}

.fndx-subject-card.featured li,
.fndx-program-card.featured li {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.fndx-program-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.fndx-program-top span {
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.fndx-program-card.featured .fndx-program-top span {
  color: #ffccd1;
}

.fndx-program-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--accent-red, #d40d1f);
  background: rgba(212, 13, 31, .08);
  border: 1px solid rgba(212, 13, 31, .12);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  transition: .25s ease;
}

.fndx-program-card a:hover {
  transform: translateY(-2px);
  background: var(--accent-red, #d40d1f);
  color: #ffffff;
}

/* Method Dark */
.fndx-method {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.fndx-method-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.fndx-method-card {
  min-height: 220px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  border-color: rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
}

.fndx-method-card span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255, 255, 255, .10);
  font-size: 38px;
  font-weight: 950;
}

.fndx-method-card h3 {
  color: #ffffff;
}

.fndx-method-card p {
  color: rgba(255, 255, 255, .72);
}

/* Test */
.fndx-test-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.fndx-test-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #071b4d;
  background: #f8f9fc;
  border: 1px solid rgba(7, 27, 77, .08);
  font-size: 12px;
  font-weight: 850;
}

.fndx-test-tags i {
  color: var(--accent-red, #d40d1f);
}

.fndx-guidance-card>i {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  font-size: 26px;
  margin-bottom: 18px;
}

.fndx-guidance-card .btn-main {
  margin-top: 20px;
}

/* CTA */
.fndx-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 34px 98px rgba(7, 27, 77, .25),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.fndx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.fndx-cta>* {
  position: relative;
  z-index: 2;
}

.fndx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.fndx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.fndx-cta p {
  color: rgba(255, 255, 255, .72);
  max-width: 700px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.fndx-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* Responsive */
@media (max-width: 1199px) {
  .fndx-hero-content {
    padding: 42px;
  }

  .fndx-subject-grid,
  .fndx-program-grid,
  .fndx-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fndx-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .fndx-hero {
    padding-bottom: 52px;
  }

  .fndx-hero-card {
    border-radius: 32px;
  }

  .fndx-hero-panel {
    min-height: auto;
    padding: 0 18px 24px;
  }

  .fndx-hero-program-card {
    min-height: auto;
    border-radius: 28px;
  }

  .fndx-premium-trust {
    grid-template-columns: 1fr;
  }

  .fndx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .fndx-hero {
    padding-top: 16px;
  }

  .fndx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .fndx-breadcrumb a,
  .fndx-breadcrumb span {
    font-size: 12px;
  }

  .fndx-hero-card {
    border-radius: 24px;
  }

  .fndx-hero-content {
    padding: 24px 17px 22px;
  }

  .fndx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .fndx-hero-content p,
  .fndx-section-head p,
  .fndx-intro-card p,
  .fndx-test-main p {
    font-size: 14px;
    line-height: 1.65;
  }

  .fndx-premium-stats,
  .fndx-detail-grid,
  .fndx-subject-grid,
  .fndx-program-grid,
  .fndx-method-grid {
    grid-template-columns: 1fr;
  }

  .fndx-hero-actions,
  .fndx-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .fndx-hero-actions .btn-main,
  .fndx-outline-btn,
  .fndx-cta-actions .btn-main,
  .fndx-cta-actions .btn-white {
    width: 100%;
    justify-content: center;
  }

  .fndx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .fndx-section-head h2,
  .fndx-intro-card h2,
  .fndx-test-main h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .fndx-highlight-box {
    flex-direction: column;
  }

  .fndx-hero-program-card,
  .fndx-intro-card,
  .fndx-detail-card,
  .fndx-subject-card,
  .fndx-program-card,
  .fndx-method-card,
  .fndx-test-main,
  .fndx-guidance-card,
  .fndx-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .fndx-detail-card:hover,
  .fndx-subject-card:hover,
  .fndx-program-card:hover,
  .fndx-method-card:hover {
    transform: none;
  }
}

@media (max-width: 420px) {
  .fndx-hero-content h1 {
    font-size: 28px;
  }

  .fndx-hero-program-card,
  .fndx-intro-card,
  .fndx-detail-card,
  .fndx-subject-card,
  .fndx-program-card,
  .fndx-method-card,
  .fndx-test-main,
  .fndx-guidance-card,
  .fndx-cta {
    padding: 18px;
    border-radius: 22px;
  }
}












































/* =========================================================
   TEST SERIES PAGE - ULTRA PRO PREMIUM
========================================================= */

.testx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.testx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.testx-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.testx-bg-grid,
.testx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.testx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.testx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.testx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.testx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.testx-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.testx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.testx-breadcrumb a,
.testx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.testx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.testx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero Card */
.testx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.testx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.testx-hero-card::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 310px;
  height: 310px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .25);
  filter: blur(8px);
  pointer-events: none;
}

.testx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: testxShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes testxShineMove {
  from {
    transform: translateX(-8%) rotate(12deg);
  }

  to {
    transform: translateX(8%) rotate(12deg);
  }
}

.testx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.testx-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(30px, 5vw, 38px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.testx-hero-content h1 span {
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.testx-hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 22px;
}

.testx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}

.testx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 850;
}

.testx-hero-tags i {
  color: #ffccd1;
}

.testx-premium-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  max-width: 720px;
  margin-bottom: 26px;
}

.testx-premium-stats div {
  padding: 14px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .13);
}

.testx-premium-stats strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.15;
  font-weight: 950;
  margin-bottom: 4px;
}

.testx-premium-stats span {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 750;
}

.testx-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.testx-outline-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

/* Hero Panel */
.testx-hero-panel {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 520px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testx-hero-program-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  padding: 30px;
  border-radius: 38px;
  color: #ffffff;
  background:
    radial-gradient(circle at 84% 7%, rgba(212, 13, 31, .28), transparent 30%),
    radial-gradient(circle at 8% 90%, rgba(255, 255, 255, .10), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 32px 86px rgba(0, 0, 0, .26),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.testx-hero-program-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .65;
  pointer-events: none;
}

.testx-hero-program-card>* {
  position: relative;
  z-index: 2;
}

.testx-main-icon,
.testx-type-icon,
.testx-detail-card>i,
.testx-process-card>i,
.testx-guidance-card>i {
  box-shadow:
    0 18px 40px rgba(212, 13, 31, .30),
    inset 0 1px 0 rgba(255, 255, 255, .20);
}

.testx-main-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 22px;
}

.testx-main-icon i {
  font-size: 31px;
}

.testx-hero-program-card>span {
  display: block;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 10px;
}

.testx-hero-program-card h3 {
  color: #ffffff;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 950;
  margin-bottom: 12px;
}

.testx-hero-program-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  line-height: 1.65;
}

.testx-hero-mini-grid {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.testx-hero-mini-grid div,
.testx-premium-trust div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .16);
  transition: .28s ease;
}

.testx-hero-mini-grid div:hover {
  transform: translateX(6px);
  background: rgba(212, 13, 31, .18);
}

.testx-hero-mini-grid i,
.testx-premium-trust i {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.testx-hero-mini-grid strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.testx-hero-mini-grid small {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-size: 11px;
}

.testx-premium-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.testx-premium-trust div {
  min-height: 70px;
}

.testx-premium-trust span {
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* Common */
.testx-section-head {
  max-width: 830px;
  margin: 0 auto 34px;
  text-align: center;
}

.testx-section-head h2,
.testx-intro-card h2,
.testx-performance-main h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.testx-section-head p,
.testx-intro-card p,
.testx-performance-main p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.testx-section-head.light h2 {
  color: #ffffff;
}

.testx-section-head.light p {
  color: rgba(255, 255, 255, .72);
}

/* Cards */
.testx-overview,
.testx-performance {
  background: #ffffff;
}

.testx-intro-card,
.testx-performance-main,
.testx-guidance-card {
  height: 100%;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .06), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 22px 68px rgba(7, 27, 77, .09);
}

.testx-highlight-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 28px;
  display: flex;
  gap: 15px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .16), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 24px 70px rgba(7, 27, 77, .18);
}

.testx-highlight-box>i {
  color: #ffccd1;
  font-size: 34px;
  line-height: 1;
}

.testx-highlight-box strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 850;
  margin-bottom: 7px;
}

.testx-highlight-box span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
}

.testx-detail-grid,
.testx-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testx-detail-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.testx-detail-card,
.testx-type-card,
.testx-process-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 20px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .28s ease;
}

.testx-detail-card {
  min-height: 205px;
  padding: 22px;
}

.testx-detail-card:hover,
.testx-type-card:hover,
.testx-process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .18);
}

.testx-detail-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  width: 4px;
  height: 52px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  opacity: .85;
}

.testx-detail-card>i,
.testx-type-icon,
.testx-process-card>i,
.testx-guidance-card>i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 15px;
}

.testx-detail-card h3,
.testx-type-card h3,
.testx-process-card h3,
.testx-guidance-card h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.testx-detail-card p,
.testx-type-card p,
.testx-process-card p,
.testx-guidance-card p {
  color: rgba(7, 27, 77, .62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* Type Cards */
.testx-types,
.testx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.testx-type-card {
  min-height: 410px;
  padding: 26px;
}

.testx-type-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255, 255, 255, .11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.testx-type-card>span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.testx-type-card.featured>span {
  color: #ffccd1;
}

.testx-type-card ul {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
}

.testx-type-card li {
  display: flex;
  gap: 9px;
  padding: 9px 10px;
  border-radius: 14px;
  background: rgba(248, 249, 252, .86);
  border: 1px solid rgba(7, 27, 77, .055);
  color: rgba(7, 27, 77, .72);
  font-size: 12.5px;
  font-weight: 750;
}

.testx-type-card li i {
  color: var(--accent-red, #d40d1f);
}

.testx-type-card.featured h3,
.testx-type-card.featured p,
.testx-type-card.featured li,
.testx-type-card.featured .testx-card-btn {
  color: #ffffff;
}

.testx-type-card.featured p,
.testx-type-card.featured li {
  color: rgba(255, 255, 255, .72);
}

.testx-type-card.featured li {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.testx-card-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--accent-red, #d40d1f);
  background: rgba(212, 13, 31, .08);
  border: 1px solid rgba(212, 13, 31, .12);
  font-size: 13px;
  font-weight: 950;
  transition: .25s ease;
}

.testx-card-btn:hover {
  transform: translateY(-2px);
  background: var(--accent-red, #d40d1f);
  color: #ffffff;
}

/* Process Dark */
.testx-process {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.testx-process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.testx-process-card {
  min-height: 220px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  border-color: rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
}

.testx-process-card span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255, 255, 255, .10);
  font-size: 38px;
  font-weight: 950;
}

.testx-process-card h3 {
  color: #ffffff;
}

.testx-process-card p {
  color: rgba(255, 255, 255, .72);
}

/* Performance */
.testx-performance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.testx-performance-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #071b4d;
  background: #f8f9fc;
  border: 1px solid rgba(7, 27, 77, .08);
  font-size: 12px;
  font-weight: 850;
}

.testx-performance-tags i {
  color: var(--accent-red, #d40d1f);
}

.testx-guidance-card>i {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  font-size: 26px;
  margin-bottom: 18px;
}

.testx-guidance-card .btn-main {
  margin-top: 20px;
}

/* CTA */
.testx-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 34px 98px rgba(7, 27, 77, .25),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.testx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.testx-cta>* {
  position: relative;
  z-index: 2;
}

.testx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.testx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.testx-cta p {
  color: rgba(255, 255, 255, .72);
  max-width: 700px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.testx-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

/* Responsive */
@media (max-width: 1199px) {
  .testx-hero-content {
    padding: 42px;
  }

  .testx-type-grid,
  .testx-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testx-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .testx-hero {
    padding-bottom: 52px;
  }

  .testx-hero-card {
    border-radius: 32px;
  }

  .testx-hero-panel {
    min-height: auto;
    padding: 0 18px 24px;
  }

  .testx-hero-program-card {
    min-height: auto;
    border-radius: 28px;
  }

  .testx-premium-trust {
    grid-template-columns: 1fr;
  }

  .testx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .testx-hero {
    padding-top: 16px;
  }

  .testx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .testx-breadcrumb a,
  .testx-breadcrumb span {
    font-size: 12px;
  }

  .testx-hero-card {
    border-radius: 24px;
  }

  .testx-hero-content {
    padding: 24px 17px 22px;
  }

  .testx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .testx-hero-content p,
  .testx-section-head p,
  .testx-intro-card p,
  .testx-performance-main p {
    font-size: 14px;
    line-height: 1.65;
  }

  .testx-premium-stats,
  .testx-detail-grid,
  .testx-type-grid,
  .testx-process-grid {
    grid-template-columns: 1fr;
  }

  .testx-hero-actions,
  .testx-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testx-hero-actions .btn-main,
  .testx-outline-btn,
  .testx-cta-actions .btn-main,
  .testx-cta-actions .btn-white {
    width: 100%;
    justify-content: center;
  }

  .testx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .testx-section-head h2,
  .testx-intro-card h2,
  .testx-performance-main h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .testx-highlight-box {
    flex-direction: column;
  }

  .testx-hero-program-card,
  .testx-intro-card,
  .testx-detail-card,
  .testx-type-card,
  .testx-process-card,
  .testx-performance-main,
  .testx-guidance-card,
  .testx-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .testx-detail-card:hover,
  .testx-type-card:hover,
  .testx-process-card:hover {
    transform: none;
  }
}

@media (max-width: 420px) {
  .testx-hero-content h1 {
    font-size: 28px;
  }

  .testx-hero-program-card,
  .testx-intro-card,
  .testx-detail-card,
  .testx-type-card,
  .testx-process-card,
  .testx-performance-main,
  .testx-guidance-card,
  .testx-cta {
    padding: 18px;
    border-radius: 22px;
  }
}



































/* =========================================================
   AI LEARNING PAGE - ULTRA PRO PREMIUM
========================================================= */



.aix-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.aix-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.aix-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.aix-bg-grid,
.aix-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.aix-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.aix-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.aix-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.aix-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.aix-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.aix-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.aix-breadcrumb a,
.aix-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.aix-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.aix-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero Card */
.aix-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.aix-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.aix-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: aixShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes aixShineMove {
  from {
    transform: translateX(-8%) rotate(12deg);
  }

  to {
    transform: translateX(8%) rotate(12deg);
  }
}

.aix-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aix-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.aix-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -2.5px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.aix-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.aix-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 18px;
}

.aix-alert-note {
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: rgba(255, 255, 255, .84);
  background: rgba(212, 13, 31, .18);
  border: 1px solid rgba(255, 255, 255, .14);
}

.aix-alert-note i {
  color: #ffccd1;
  margin-top: 3px;
}

.aix-alert-note span {
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.aix-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 26px;
}

.aix-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 850;
}

.aix-hero-tags i {
  color: #ffccd1;
}

.aix-hero-actions,
.aix-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.aix-outline-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
}

/* =========================================================
   AI HERO SECTION FINAL FIX
   Floating line remove + buttons left/right
========================================================= */

/* old floating cards ko hide karo */
.aix-floating-card,
.aix-floating-card-1,
.aix-floating-card-2,
.aix-floating-card::before,
.aix-floating-card::after {
  display: none !important;
  content: none !important;
}

/* unwanted white connector line remove */
.aix-hero::before,
.aix-hero::after,
.aix-hero-card::after,
.aix-hero-visual::before,
.aix-hero-visual::after,
.aix-ai-device::before,
.aix-ai-device::after,
.aix-device-screen::before,
.aix-device-screen::after {
  display: none !important;
  content: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.aix-hero-card {
  overflow: hidden !important;
  isolation: isolate !important;
}

/* right visual clean */
.aix-hero-visual {
  position: relative !important;
  z-index: 3 !important;
  min-height: 560px !important;
  padding: 28px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 14px !important;
  overflow: hidden !important;
}

.aix-ai-device {
  width: 100% !important;
  max-width: 390px !important;
  margin: 0 auto !important;
  padding: 12px !important;
  border-radius: 34px !important;
  background: rgba(255, 255, 255, .12) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  overflow: hidden !important;
}

.aix-device-screen {
  min-height: 390px !important;
  padding: 24px !important;
  border-radius: 26px !important;
  overflow: hidden !important;
}

/* bottom info cards */
.aix-hero-info-row {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.aix-hero-info-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.aix-hero-info-card i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 14px 30px rgba(212, 13, 31, .26);
}

.aix-hero-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 950;
}

.aix-hero-info-card span {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: 10.5px;
  line-height: 1.25;
  font-weight: 750;
}

/* buttons one left and one right */
.aix-hero-actions {
  width: 100% !important;
  max-width: 390px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
}

.aix-hero-actions .btn-main,
.aix-hero-actions .aix-outline-btn {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 46px !important;
  padding: 11px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  white-space: nowrap !important;
  font-size: 12.5px !important;
}

/* mobile responsive */
@media (max-width: 991px) {
  .aix-hero-visual {
    min-height: auto !important;
    padding: 0 18px 28px !important;
  }

  .aix-ai-device,
  .aix-hero-info-row {
    max-width: 100% !important;
  }
}

@media (max-width: 767px) {
  .aix-hero-visual {
    padding: 0 14px 24px !important;
  }

  .aix-device-screen {
    min-height: 330px !important;
    padding: 18px !important;
  }

  .aix-hero-info-row {
    grid-template-columns: 1fr !important;
  }

  .aix-hero-info-card {
    min-height: 68px !important;
    border-radius: 18px !important;
  }

  .aix-hero-actions {
    max-width: 100% !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 8px !important;
  }

  .aix-hero-actions .btn-main,
  .aix-hero-actions .aix-outline-btn {
    min-height: 42px !important;
    padding: 10px 7px !important;
    font-size: 11px !important;
    gap: 5px !important;
  }
}

@media (max-width: 420px) {
  .aix-device-screen {
    min-height: 310px !important;
    padding: 16px !important;
  }

  .aix-hero-actions .btn-main,
  .aix-hero-actions .aix-outline-btn {
    font-size: 10.5px !important;
    padding: 9px 6px !important;
  }
}

/* AI Hero Visual */
.aix-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 560px;
  padding: 30px;
  display: grid;
  place-items: center;
}

.aix-ai-device {
  position: relative;
  width: 100%;
  max-width: 390px;
  padding: 12px;
  border-radius: 34px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.aix-device-head {
  display: flex;
  gap: 7px;
  padding: 6px 8px 12px;
}

.aix-device-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
}

.aix-device-screen {
  min-height: 410px;
  padding: 26px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 28%, rgba(212, 13, 31, .26), transparent 36%),
    linear-gradient(145deg, rgba(0, 8, 23, .92), rgba(7, 27, 77, .82));
  border: 1px solid rgba(255, 255, 255, .12);
}

.aix-ai-core {
  position: relative;
  width: 168px;
  height: 168px;
  margin: 24px auto 30px;
  display: grid;
  place-items: center;
}

.aix-ai-core i {
  position: relative;
  z-index: 5;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: #ffffff;
  font-size: 32px;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 18px 44px rgba(212, 13, 31, .34);
}

.aix-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .18);
  animation: aixPulse 3s ease-in-out infinite;
}

.aix-ring-2 {
  inset: 22px;
  animation-delay: .4s;
}

.aix-ring-3 {
  inset: 44px;
  animation-delay: .8s;
}

@keyframes aixPulse {

  0%,
  100% {
    transform: scale(.94);
    opacity: .48;
  }

  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

.aix-screen-lines {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.aix-screen-lines div {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
}

.aix-ai-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.aix-ai-metrics div {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
}

.aix-ai-metrics strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}

.aix-ai-metrics span {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 800;
}

.aix-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
  padding: 13px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .20);
}

.aix-floating-card-1 {
  left: 8px;
  top: 120px;
}

.aix-floating-card-2 {
  right: 8px;
  bottom: 105px;
}

.aix-floating-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.aix-floating-card strong {
  display: block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
}

.aix-floating-card span {
  display: block;
  color: rgba(255, 255, 255, .66);
  font-size: 11px;
  font-weight: 750;
}

/* Common */
.aix-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.aix-section-head h2,
.aix-intro-card h2,
.aix-visual-content h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.aix-section-head p,
.aix-intro-card p,
.aix-visual-content p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.aix-section-head.light h2 {
  color: #ffffff;
}

.aix-section-head.light p {
  color: rgba(255, 255, 255, .72);
}

/* Vision */
.aix-vision,
.aix-visual-section {
  background: #ffffff;
}

.aix-intro-card,
.aix-visual-content {
  height: 100%;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .06), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 22px 68px rgba(7, 27, 77, .09);
}

.aix-highlight-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 28px;
  display: flex;
  gap: 15px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .16), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 24px 70px rgba(7, 27, 77, .18);
}

.aix-highlight-box>i {
  color: #ffccd1;
  font-size: 34px;
  line-height: 1;
}

.aix-highlight-box strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 850;
  margin-bottom: 7px;
}

.aix-highlight-box span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
}

.aix-vision-grid,
.aix-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.aix-vision-card,
.aix-feature-card,
.aix-matter-card,
.aix-plan-step {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 20px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .28s ease;
}

.aix-vision-card {
  min-height: 210px;
  padding: 24px;
}

.aix-vision-card:hover,
.aix-feature-card:hover,
.aix-matter-card:hover,
.aix-plan-step:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .18);
}

.aix-vision-card i,
.aix-feature-card i,
.aix-matter-card>i,
.aix-plan-step i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 18px 40px rgba(212, 13, 31, .26);
  margin-bottom: 16px;
}

.aix-vision-card h3,
.aix-feature-card h3,
.aix-matter-card h3,
.aix-plan-step h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.aix-vision-card p,
.aix-feature-card p,
.aix-matter-card p,
.aix-plan-step p {
  color: rgba(7, 27, 77, .62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* =========================================================
   AI PAGE - WHAT WE ARE PLANNING NEW CARD SECTION
========================================================= */

.aix-planning {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    radial-gradient(circle at 92% 20%, rgba(7, 27, 77, .07), transparent 32%),
    #f8f9fc;
}

/* remove old timeline lines / pseudo conflict */
.aix-planning::before,
.aix-planning::after,
.aix-plan-timeline,
.aix-plan-timeline::before,
.aix-plan-timeline::after,
.aix-plan-step,
.aix-plan-step::before,
.aix-plan-step::after {
  display: none !important;
  content: none !important;
}

/* card grid */
.aix-plan-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}

/* card */
.aix-plan-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 10%, rgba(212, 13, 31, .08), transparent 30%),
    linear-gradient(180deg, #ffffff, #fbfcff);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 22px 64px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .90);
  transition: .28s ease;
}

.aix-plan-card::before {
  content: "";
  position: absolute;
  right: -65px;
  top: -65px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .08);
  pointer-events: none;
}

.aix-plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .18);
  box-shadow:
    0 30px 82px rgba(7, 27, 77, .14),
    0 12px 28px rgba(212, 13, 31, .07);
}

/* active dark card */
.aix-plan-card.active {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .28), transparent 32%),
    radial-gradient(circle at 10% 92%, rgba(255, 255, 255, .10), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  border-color: rgba(255, 255, 255, .13);
  box-shadow:
    0 32px 90px rgba(7, 27, 77, .22),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

/* top row: 01 left, icon right */
.aix-plan-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

/* left button */
.aix-plan-count {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow:
    0 16px 34px rgba(212, 13, 31, .26),
    inset 0 1px 0 rgba(255, 255, 255, .18);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
}

/* right button */
.aix-plan-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow:
    0 16px 34px rgba(212, 13, 31, .26),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.aix-plan-icon i {
  font-size: 18px;
}

/* text */
.aix-plan-card h3 {
  position: relative;
  z-index: 2;
  color: #071b4d;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 950;
  margin: 0 0 12px;
  letter-spacing: -.35px;
}

.aix-plan-card p {
  position: relative;
  z-index: 2;
  color: rgba(7, 27, 77, .64);
  font-size: 13px;
  line-height: 1.68;
  font-weight: 700;
  margin: 0;
}

.aix-plan-card.active h3 {
  color: #ffffff;
}

.aix-plan-card.active p {
  color: rgba(255, 255, 255, .72);
}

/* responsive */
@media (max-width: 1199px) {
  .aix-plan-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .aix-plan-card {
    padding: 20px;
  }
}

@media (max-width: 991px) {
  .aix-plan-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aix-plan-card.active {
    grid-column: span 1;
  }
}

@media (max-width: 767px) {
  .aix-plan-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .aix-plan-card {
    min-height: auto;
    padding: 20px;
    border-radius: 24px;
  }

  .aix-plan-card:hover {
    transform: none;
  }

  .aix-plan-count,
  .aix-plan-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 15px;
  }

  .aix-plan-card h3 {
    font-size: 16px;
  }

  .aix-plan-card p {
    font-size: 12.5px;
  }
}

@media (max-width: 420px) {
  .aix-plan-card {
    padding: 18px;
    border-radius: 22px;
  }

  .aix-plan-count,
  .aix-plan-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 14px;
  }
}

/* Dark Matters */
.aix-matters {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.aix-matters-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.aix-matter-card {
  min-height: 230px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  border-color: rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
}

.aix-matter-card>span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255, 255, 255, .10);
  font-size: 38px;
  font-weight: 950;
}

.aix-matter-card h3 {
  color: #ffffff;
}

.aix-matter-card p {
  color: rgba(255, 255, 255, .72);
}

/* Features */
.aix-feature-grid {
  grid-template-columns: repeat(5, 1fr);
}

.aix-feature-card {
  min-height: 245px;
  padding: 22px;
}

.aix-feature-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255, 255, 255, .11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.aix-feature-card.featured h3,
.aix-feature-card.featured p {
  color: #ffffff;
}

.aix-feature-card.featured p {
  color: rgba(255, 255, 255, .72);
}

/* Dashboard Visual */
.aix-dashboard-wrap {
  position: relative;
  padding: 18px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 15% 15%, rgba(212, 13, 31, .11), transparent 30%),
    #f8f9fc;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 28px 80px rgba(7, 27, 77, .10);
}

.aix-dashboard {
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 80% 10%, rgba(212, 13, 31, .22), transparent 30%),
    linear-gradient(145deg, #000817, #071b4d);
  box-shadow: 0 30px 90px rgba(7, 27, 77, .24);
}

.aix-dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.aix-dashboard-top div {
  display: flex;
  gap: 7px;
}

.aix-dashboard-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
}

.aix-dashboard-top strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.aix-dashboard-body {
  padding: 30px;
}

.aix-score-ring {
  width: 170px;
  height: 170px;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle, #071b4d 58%, transparent 59%),
    conic-gradient(var(--accent-red, #d40d1f) 0 82%, rgba(255, 255, 255, .14) 82% 100%);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
}

.aix-score-ring strong {
  display: block;
  color: #ffffff;
  text-align: center;
  font-size: 32px;
  font-weight: 950;
}

.aix-score-ring span {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 850;
}

.aix-dashboard-list {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.aix-dashboard-list div {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 16px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .09);
  border: 1px solid rgba(255, 255, 255, .10);
  font-size: 12px;
  font-weight: 800;
}

.aix-dashboard-list i {
  color: #ffccd1;
}

.aix-dashboard-bars {
  display: grid;
  gap: 10px;
}

.aix-dashboard-bars div {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.aix-dashboard-bars span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-red, #d40d1f), #ff8994);
}

.aix-visual-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.aix-visual-points div {
  display: flex;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 18px;
  background: #f8f9fc;
  border: 1px solid rgba(7, 27, 77, .08);
  color: rgba(7, 27, 77, .72);
  font-size: 13px;
  font-weight: 850;
}

.aix-visual-points i {
  color: var(--accent-red, #d40d1f);
}

/* CTA */
.aix-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 34px 98px rgba(7, 27, 77, .25),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.aix-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.aix-cta>* {
  position: relative;
  z-index: 2;
}

.aix-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.aix-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.aix-cta p {
  color: rgba(255, 255, 255, .72);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .aix-hero-content {
    padding: 42px;
  }

  .aix-feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .aix-matters-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .aix-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .aix-hero {
    padding-bottom: 52px;
  }

  .aix-hero-card {
    border-radius: 32px;
  }

  .aix-hero-visual {
    min-height: auto;
    padding: 0 18px 30px;
  }

  .aix-floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: 100%;
    width: 100%;
    margin-top: 12px;
  }

  .aix-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .aix-hero {
    padding-top: 16px;
  }

  .aix-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .aix-hero-card {
    border-radius: 24px;
  }

  .aix-hero-content {
    padding: 24px 17px 22px;
  }

  .aix-hero-content h1 {
    font-size: 34px;
    letter-spacing: -1.2px;
  }

  .aix-hero-content p,
  .aix-section-head p,
  .aix-intro-card p,
  .aix-visual-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .aix-vision-grid,
  .aix-feature-grid,
  .aix-matters-grid {
    grid-template-columns: 1fr;
  }

  .aix-plan-step {
    grid-template-columns: 1fr;
  }

  .aix-hero-actions,
  .aix-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .aix-hero-actions .btn-main,
  .aix-outline-btn,
  .aix-cta-actions .btn-main,
  .aix-cta-actions .btn-white {
    width: 100%;
    justify-content: center;
  }

  .aix-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .aix-section-head h2,
  .aix-intro-card h2,
  .aix-visual-content h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .aix-ai-device {
    max-width: 100%;
  }

  .aix-device-screen {
    min-height: 360px;
    padding: 20px;
  }

  .aix-highlight-box {
    flex-direction: column;
  }

  .aix-intro-card,
  .aix-visual-content,
  .aix-vision-card,
  .aix-feature-card,
  .aix-matter-card,
  .aix-plan-step,
  .aix-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .aix-vision-card:hover,
  .aix-feature-card:hover,
  .aix-matter-card:hover,
  .aix-plan-step:hover {
    transform: none;
  }
}

@media (max-width: 420px) {
  .aix-hero-content h1 {
    font-size: 30px;
  }

  .aix-ai-core {
    width: 138px;
    height: 138px;
  }

  .aix-score-ring {
    width: 145px;
    height: 145px;
  }

  .aix-intro-card,
  .aix-visual-content,
  .aix-vision-card,
  .aix-feature-card,
  .aix-matter-card,
  .aix-plan-step,
  .aix-cta {
    padding: 18px;
    border-radius: 22px;
  }
}





























/* =========================================================
   RESULTS PAGE - ULTRA PRO PREMIUM
========================================================= */

.resultx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.resultx-page * {
  box-sizing: border-box;
}

.resultx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.resultx-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.resultx-bg-grid,
.resultx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.resultx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.resultx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.resultx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.resultx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.resultx-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.resultx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.resultx-breadcrumb a,
.resultx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.resultx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.resultx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero card */
.resultx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.resultx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.resultx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: resultxShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes resultxShineMove {
  from {
    transform: translateX(-8%) rotate(12deg);
  }

  to {
    transform: translateX(8%) rotate(12deg);
  }
}

/* Hero content */
.resultx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resultx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.resultx-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.resultx-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.resultx-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 18px;
}

.resultx-alert-note {
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: rgba(255, 255, 255, .84);
  background: rgba(212, 13, 31, .18);
  border: 1px solid rgba(255, 255, 255, .14);
}

.resultx-alert-note i {
  color: #ffccd1;
  margin-top: 3px;
}

.resultx-alert-note span {
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.resultx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.resultx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  font-size: 12px;
  font-weight: 850;
}

.resultx-hero-tags i {
  color: #ffccd1;
}

/* Buttons */
.resultx-hero-actions,
.resultx-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 390px;
}

.resultx-hero-actions .btn-main,
.resultx-hero-actions .resultx-outline-btn,
.resultx-cta-actions .btn-main,
.resultx-cta-actions .btn-white {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.resultx-outline-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

/* Hero visual */
.resultx-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 560px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  overflow: hidden;
}

.resultx-score-card {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 34px 90px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
}

.resultx-score-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.resultx-score-top div {
  display: flex;
  gap: 7px;
}

.resultx-score-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .34);
}

.resultx-score-top strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.resultx-score-body {
  min-height: 390px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(212, 13, 31, .26), transparent 36%),
    linear-gradient(145deg, rgba(0, 8, 23, .92), rgba(7, 27, 77, .82));
}

.resultx-rank-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
}

.resultx-rank-badge i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.resultx-rank-badge strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.resultx-rank-badge span {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 750;
}

.resultx-score-ring {
  width: 164px;
  height: 164px;
  display: grid;
  place-items: center;
  margin: 24px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle, #071b4d 58%, transparent 59%),
    conic-gradient(var(--accent-red, #d40d1f) 0 95%, rgba(255, 255, 255, .14) 95% 100%);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
}

.resultx-score-ring strong {
  display: block;
  color: #ffffff;
  text-align: center;
  font-size: 32px;
  font-weight: 950;
}

.resultx-score-ring span {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 850;
}

.resultx-mini-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.resultx-mini-stats div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .12);
}

.resultx-mini-stats strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
}

.resultx-mini-stats span {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 800;
}

.resultx-progress-list {
  display: grid;
  gap: 9px;
}

.resultx-progress-list div {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
}

.resultx-progress-list span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-red, #d40d1f), #ff8994);
}

.resultx-hero-info-row {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.resultx-info-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.resultx-info-card i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.resultx-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 950;
}

.resultx-info-card span {
  color: rgba(255, 255, 255, .66);
  font-size: 10.5px;
  font-weight: 750;
}

/* Section headings */
.resultx-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.resultx-section-head h2,
.resultx-intro-card h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.resultx-section-head p,
.resultx-intro-card p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.resultx-section-head.light h2 {
  color: #ffffff;
}

.resultx-section-head.light p {
  color: rgba(255, 255, 255, .72);
}

/* Highlight */
.resultx-highlights,
.resultx-rankers,
.resultx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.resultx-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.resultx-highlight-card,
.resultx-achievement-card,
.resultx-ranker-card,
.resultx-testimonial-card,
.resultx-intro-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 20px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .28s ease;
}

.resultx-highlight-card {
  min-height: 220px;
  padding: 22px;
}

.resultx-highlight-card:hover,
.resultx-achievement-card:hover,
.resultx-ranker-card:hover,
.resultx-testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .18);
}

.resultx-highlight-card>i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 16px;
  box-shadow: 0 18px 40px rgba(212, 13, 31, .26);
}

.resultx-highlight-card strong {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.resultx-highlight-card h3 {
  color: #071b4d;
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 8px;
}

.resultx-highlight-card p {
  color: rgba(7, 27, 77, .62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

.resultx-highlight-card.featured,
.resultx-achievement-card.active,
.resultx-ranker-card.featured,
.resultx-testimonial-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255, 255, 255, .11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.resultx-highlight-card.featured strong,
.resultx-highlight-card.featured h3,
.resultx-highlight-card.featured p,
.resultx-achievement-card.active h3,
.resultx-achievement-card.active p,
.resultx-achievement-card.active li,
.resultx-ranker-card.featured h3,
.resultx-ranker-card.featured p,
.resultx-ranker-card.featured span,
.resultx-testimonial-card.featured p,
.resultx-testimonial-card.featured strong {
  color: #ffffff;
}

.resultx-highlight-card.featured p,
.resultx-achievement-card.active p,
.resultx-achievement-card.active li,
.resultx-ranker-card.featured p,
.resultx-testimonial-card.featured p {
  color: rgba(255, 255, 255, .72);
}

/* Achievements */
.resultx-achievements,
.resultx-testimonials {
  background: #ffffff;
}

.resultx-intro-card {
  height: 100%;
  padding: 30px;
}

.resultx-highlight-box {
  margin-top: 22px;
  padding: 20px;
  border-radius: 28px;
  display: flex;
  gap: 15px;
  background:
    radial-gradient(circle at 92% 10%, rgba(212, 13, 31, .16), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 24px 70px rgba(7, 27, 77, .18);
}

.resultx-highlight-box>i {
  color: #ffccd1;
  font-size: 34px;
  line-height: 1;
}

.resultx-highlight-box strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 850;
  margin-bottom: 7px;
}

.resultx-highlight-box span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
}

.resultx-achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.resultx-achievement-card {
  min-height: 330px;
  padding: 24px;
}

.resultx-student-avatar {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 30px;
  margin-bottom: 18px;
}

.resultx-achievement-card span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.resultx-achievement-card h3 {
  color: #071b4d;
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 8px;
}

.resultx-achievement-card p {
  color: rgba(7, 27, 77, .64);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 650;
}

.resultx-achievement-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.resultx-achievement-card li {
  display: flex;
  gap: 9px;
  color: rgba(7, 27, 77, .72);
  font-size: 12.5px;
  font-weight: 750;
}

.resultx-achievement-card li i {
  color: var(--accent-red, #d40d1f);
}

/* Rankers */
.resultx-ranker-grid,
.resultx-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resultx-ranker-card {
  padding: 18px;
}

.resultx-ranker-image {
  min-height: 410px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 20%, rgba(212, 13, 31, .22), transparent 34%),
    linear-gradient(145deg, #000817, #071b4d);
  margin-bottom: 18px;
}

.resultx-ranker-image i {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: 42px;
}

.resultx-ranker-image img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
}

.resultx-ranker-image span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 11px;
  font-weight: 950;
}

.resultx-ranker-content {
  padding: 0 4px 6px;
}

.resultx-ranker-content>span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.resultx-ranker-content h3 {
  color: #071b4d;
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 8px;
}

.resultx-ranker-content p {
  color: rgba(7, 27, 77, .62);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 650;
}

.resultx-ranker-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.resultx-ranker-meta div {
  padding: 12px;
  border-radius: 16px;
  background: #f8f9fc;
  border: 1px solid rgba(7, 27, 77, .07);
}

.resultx-ranker-meta strong {
  display: block;
  color: #071b4d;
  font-size: 12px;
  font-weight: 950;
}

.resultx-ranker-meta small {
  color: rgba(7, 27, 77, .58);
  font-size: 11px;
  font-weight: 800;
}

.resultx-ranker-card.featured .resultx-ranker-meta div {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .12);
}

.resultx-ranker-card.featured .resultx-ranker-meta strong,
.resultx-ranker-card.featured .resultx-ranker-meta small {
  color: #ffffff;
}

/* Year wise */
.resultx-yearwise {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.resultx-year-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.resultx-year-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .055));
  border: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(18px);
}

.resultx-year-card>span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255, 255, 255, .12);
  font-size: 34px;
  font-weight: 950;
}

.resultx-year-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 18px;
}

.resultx-year-card h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.resultx-year-card p {
  color: rgba(255, 255, 255, .72);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* Testimonials */
.resultx-testimonial-card {
  min-height: 300px;
  padding: 24px;
}

.resultx-stars {
  display: flex;
  gap: 4px;
  color: var(--accent-red, #d40d1f);
  margin-bottom: 18px;
}

.resultx-testimonial-card p {
  color: rgba(7, 27, 77, .66);
  font-size: 13.5px;
  line-height: 1.75;
  font-weight: 650;
  margin-bottom: 22px;
}

.resultx-reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.resultx-reviewer>div:first-child {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.resultx-reviewer strong {
  display: block;
  color: #071b4d;
  font-size: 13px;
  font-weight: 950;
}

.resultx-reviewer span {
  color: rgba(7, 27, 77, .58);
  font-size: 11px;
  font-weight: 800;
}

.resultx-testimonial-card.featured .resultx-reviewer strong,
.resultx-testimonial-card.featured .resultx-reviewer span {
  color: #ffffff;
}

/* CTA */
.resultx-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow:
    0 34px 98px rgba(7, 27, 77, .25),
    inset 0 1px 0 rgba(255, 255, 255, .14);
}

.resultx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.resultx-cta>* {
  position: relative;
  z-index: 2;
}

.resultx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.resultx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.resultx-cta p {
  color: rgba(255, 255, 255, .72);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .resultx-hero-content {
    padding: 42px;
  }

  .resultx-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resultx-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .resultx-hero {
    padding-bottom: 52px;
  }

  .resultx-hero-card {
    border-radius: 32px;
  }

  .resultx-hero-visual {
    min-height: auto;
    padding: 0 18px 28px;
  }

  .resultx-score-card,
  .resultx-hero-info-row {
    max-width: 100%;
  }

  .resultx-ranker-grid,
  .resultx-testimonial-grid,
  .resultx-year-grid {
    grid-template-columns: 1fr;
  }

  .resultx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .resultx-hero {
    padding-top: 16px;
  }

  .resultx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .resultx-hero-card {
    border-radius: 24px;
  }

  .resultx-hero-content {
    padding: 24px 17px 22px;
  }

  .resultx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .resultx-hero-content p,
  .resultx-section-head p,
  .resultx-intro-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .resultx-hero-actions,
  .resultx-cta-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 8px;
  }

  .resultx-hero-actions .btn-main,
  .resultx-hero-actions .resultx-outline-btn,
  .resultx-cta-actions .btn-main,
  .resultx-cta-actions .btn-white {
    min-height: 42px;
    padding: 10px 7px;
    font-size: 11px;
    gap: 5px;
  }

  .resultx-score-body {
    min-height: 330px;
    padding: 18px;
  }

  .resultx-mini-stats,
  .resultx-hero-info-row,
  .resultx-highlight-grid,
  .resultx-achievement-grid {
    grid-template-columns: 1fr;
  }

  .resultx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .resultx-section-head h2,
  .resultx-intro-card h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .resultx-highlight-box {
    flex-direction: column;
  }

  .resultx-highlight-card,
  .resultx-achievement-card,
  .resultx-ranker-card,
  .resultx-testimonial-card,
  .resultx-intro-card,
  .resultx-year-card,
  .resultx-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .resultx-highlight-card:hover,
  .resultx-achievement-card:hover,
  .resultx-ranker-card:hover,
  .resultx-testimonial-card:hover {
    transform: none;
  }
}

@media (max-width: 420px) {
  .resultx-hero-content h1 {
    font-size: 28px;
  }

  .resultx-score-ring {
    width: 145px;
    height: 145px;
  }

  .resultx-score-ring strong {
    font-size: 27px;
  }

  .resultx-hero-actions .btn-main,
  .resultx-hero-actions .resultx-outline-btn,
  .resultx-cta-actions .btn-main,
  .resultx-cta-actions .btn-white {
    font-size: 10.5px;
    padding: 9px 6px;
  }

  .resultx-highlight-card,
  .resultx-achievement-card,
  .resultx-ranker-card,
  .resultx-testimonial-card,
  .resultx-intro-card,
  .resultx-year-card,
  .resultx-cta {
    padding: 18px;
    border-radius: 22px;
  }
}




























/* =========================================================
   GALLERY PAGE - ULTRA PRO PREMIUM
========================================================= */

.galleryx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.galleryx-page * {
  box-sizing: border-box;
}

.galleryx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.galleryx-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.galleryx-bg-grid,
.galleryx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.galleryx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.galleryx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.galleryx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.galleryx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.galleryx-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.galleryx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.galleryx-breadcrumb a,
.galleryx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.galleryx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.galleryx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero card */
.galleryx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.galleryx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.galleryx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: galleryxShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes galleryxShineMove {
  from { transform: translateX(-8%) rotate(12deg); }
  to { transform: translateX(8%) rotate(12deg); }
}

/* Hero content */
.galleryx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.galleryx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.galleryx-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.galleryx-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.galleryx-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 22px;
}

.galleryx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.galleryx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

.galleryx-hero-tags i {
  color: #ffccd1;
}

/* Buttons */
.galleryx-hero-actions,
.galleryx-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 390px;
}

.galleryx-hero-actions .btn-main,
.galleryx-hero-actions .galleryx-outline-btn,
.galleryx-cta-actions .btn-main,
.galleryx-cta-actions .btn-white {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.galleryx-outline-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

/* Hero visual */
.galleryx-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 560px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.galleryx-visual-grid {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-auto-rows: 170px;
  gap: 12px;
}

.galleryx-visual-card {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 26px;
  cursor: pointer;
  background: rgba(255,255,255,.10);
  box-shadow: 0 22px 58px rgba(0,0,0,.18);
}

.galleryx-visual-card.tall {
  grid-row: span 2;
}

.galleryx-visual-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: .4s ease;
}

.galleryx-visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,11,38,.74), transparent 58%);
}

.galleryx-visual-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(212,13,31,.92);
  font-size: 11px;
  font-weight: 950;
}

.galleryx-visual-card.video > i {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 28px;
  box-shadow: 0 18px 40px rgba(212,13,31,.28);
}

.galleryx-visual-card:hover img {
  transform: scale(1.1);
}

.galleryx-hero-info-row {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.galleryx-hero-info-row div {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  backdrop-filter: blur(18px);
}

.galleryx-hero-info-row i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.galleryx-hero-info-row span {
  color: rgba(255,255,255,.84);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 900;
}

/* Head */
.galleryx-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.galleryx-section-head h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.galleryx-section-head p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.galleryx-section-head.light h2 {
  color: #ffffff;
}

.galleryx-section-head.light p {
  color: rgba(255,255,255,.72);
}

/* Overview */
.galleryx-overview,
.galleryx-media-section,
.galleryx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.galleryx-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.galleryx-overview-card,
.galleryx-support-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 22px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7,27,77,.09);
  box-shadow:
    0 20px 58px rgba(7,27,77,.09),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: .28s ease;
}

.galleryx-overview-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,13,31,.18);
}

.galleryx-overview-card > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 16px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.galleryx-overview-card h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.galleryx-overview-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

.galleryx-overview-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.galleryx-overview-card.featured h3,
.galleryx-overview-card.featured p {
  color: #ffffff;
}

.galleryx-overview-card.featured p {
  color: rgba(255,255,255,.72);
}

/* Filters */
.galleryx-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.galleryx-filter {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  color: #071b4d;
  background: #ffffff;
  border: 1px solid rgba(7,27,77,.09);
  box-shadow: 0 12px 30px rgba(7,27,77,.07);
  font-size: 12px;
  font-weight: 950;
  transition: .25s ease;
}

.galleryx-filter i {
  color: var(--accent-red, #d40d1f);
}

.galleryx-filter.active,
.galleryx-filter:hover {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  border-color: rgba(212,13,31,.35);
}

.galleryx-filter.active i,
.galleryx-filter:hover i {
  color: #ffffff;
}

/* Gallery grid */
.galleryx-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 245px;
  gap: 16px;
}

.galleryx-item {
  display: block;
}

.galleryx-item.galleryx-tall {
  grid-row: span 2;
}

.galleryx-item.galleryx-wide {
  grid-column: span 2;
}

.galleryx-item.is-hidden {
  display: none;
}

.galleryx-card {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 30px;
  background: #071b4d;
  cursor: pointer;
  box-shadow: 0 24px 70px rgba(7,27,77,.12);
}

.galleryx-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: .45s ease;
}

.galleryx-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 85% 12%, rgba(212,13,31,.20), transparent 30%),
    linear-gradient(to top, rgba(0,11,38,.88), rgba(0,11,38,.10) 65%);
  opacity: .95;
  transition: .35s ease;
}

.galleryx-card:hover img {
  transform: scale(1.1);
}

.galleryx-card:hover::before {
  opacity: .78;
}

.galleryx-card-overlay {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  text-align: left;
}

.galleryx-card-overlay span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 11px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 10px;
}

.galleryx-card-overlay h3 {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  margin: 0 0 8px;
}

.galleryx-card-overlay small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 850;
}

.galleryx-play-icon {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 30px;
  box-shadow: 0 18px 42px rgba(212,13,31,.32);
}

/* Support */
.galleryx-support {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.galleryx-support-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.galleryx-support-card {
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border-color: rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.galleryx-support-card > span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255,255,255,.12);
  font-size: 34px;
  font-weight: 950;
}

.galleryx-support-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 18px;
}

.galleryx-support-card h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.galleryx-support-card p {
  color: rgba(255,255,255,.72);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* CTA */
.galleryx-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 34px 98px rgba(7,27,77,.25),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.galleryx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.galleryx-cta > * {
  position: relative;
  z-index: 2;
}

.galleryx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.galleryx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.galleryx-cta p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Lightbox */
.galleryx-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.galleryx-lightbox.is-open {
  display: flex;
}

.galleryx-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 8, 23, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.galleryx-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  max-height: 92vh;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 8%, rgba(212,13,31,.20), transparent 32%),
    #ffffff;
  box-shadow: 0 40px 110px rgba(0,0,0,.45);
}

.galleryx-lightbox-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(7,27,77,.08);
}

.galleryx-lightbox-header h3 {
  color: #071b4d;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 950;
  margin: 0;
}

.galleryx-lightbox-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.galleryx-lightbox-body {
  padding: 18px;
}

.galleryx-lightbox-body img,
.galleryx-lightbox-body video,
.galleryx-lightbox-body iframe {
  width: 100%;
  max-height: 74vh;
  display: block;
  border: 0;
  border-radius: 20px;
  object-fit: contain;
  background: #000b26;
}

.galleryx-lightbox-body iframe {
  aspect-ratio: 16 / 9;
  max-height: none;
}

/* Responsive */
@media (max-width: 1199px) {
  .galleryx-hero-content {
    padding: 42px;
  }

  .galleryx-overview-grid,
  .galleryx-support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .galleryx-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .galleryx-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .galleryx-hero {
    padding-bottom: 52px;
  }

  .galleryx-hero-card {
    border-radius: 32px;
  }

  .galleryx-hero-visual {
    min-height: auto;
    padding: 0 18px 28px;
  }

  .galleryx-visual-grid,
  .galleryx-hero-info-row {
    max-width: 100%;
  }

  .galleryx-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 235px;
  }

  .galleryx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .galleryx-hero {
    padding-top: 16px;
  }

  .galleryx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .galleryx-hero-card {
    border-radius: 24px;
  }

  .galleryx-hero-content {
    padding: 24px 17px 22px;
  }

  .galleryx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .galleryx-hero-content p,
  .galleryx-section-head p {
    font-size: 14px;
    line-height: 1.65;
  }

  .galleryx-hero-actions,
  .galleryx-cta-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 8px;
  }

  .galleryx-hero-actions .btn-main,
  .galleryx-hero-actions .galleryx-outline-btn,
  .galleryx-cta-actions .btn-main,
  .galleryx-cta-actions .btn-white {
    min-height: 42px;
    padding: 10px 7px;
    font-size: 11px;
    gap: 5px;
  }

  .galleryx-visual-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }

  .galleryx-visual-card.tall {
    grid-row: span 1;
  }

  .galleryx-hero-info-row,
  .galleryx-overview-grid,
  .galleryx-support-grid {
    grid-template-columns: 1fr;
  }

  .galleryx-filter-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .galleryx-filter {
    flex: 0 0 auto;
  }

  .galleryx-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .galleryx-item.galleryx-tall,
  .galleryx-item.galleryx-wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .galleryx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .galleryx-section-head h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .galleryx-overview-card,
  .galleryx-support-card,
  .galleryx-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .galleryx-overview-card:hover {
    transform: none;
  }

  .galleryx-lightbox {
    padding: 10px;
  }

  .galleryx-lightbox-dialog {
    border-radius: 22px;
  }

  .galleryx-lightbox-body {
    padding: 12px;
  }
}

@media (max-width: 420px) {
  .galleryx-hero-content h1 {
    font-size: 28px;
  }

  .galleryx-hero-actions .btn-main,
  .galleryx-hero-actions .galleryx-outline-btn,
  .galleryx-cta-actions .btn-main,
  .galleryx-cta-actions .btn-white {
    font-size: 10.5px;
    padding: 9px 6px;
  }

  .galleryx-grid {
    grid-auto-rows: 235px;
  }

  .galleryx-overview-card,
  .galleryx-support-card,
  .galleryx-cta {
    padding: 18px;
    border-radius: 22px;
  }
}
/* =========================================================
   GALLERY VIDEO + ZOOM BUTTON FINAL FIX
========================================================= */

.galleryx-card {
  position: relative;
  overflow: hidden;
}

/* image and video preview */
.galleryx-card img,
.galleryx-card video,
.galleryx-video-thumb {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: .45s ease;
}

/* hover zoom */
.galleryx-card:hover img,
.galleryx-card:hover video {
  transform: scale(1.1);
}

/* center zoom/play button */
.galleryx-action-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.28), transparent 34%),
    linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow:
    0 20px 48px rgba(212, 13, 31, .35),
    0 0 0 8px rgba(255, 255, 255, .12);
  transform: translate(-50%, -50%) scale(.92);
  opacity: .95;
  transition: .28s ease;
  pointer-events: none;
}

.galleryx-action-btn i {
  font-size: 30px;
  line-height: 1;
}

.galleryx-action-btn.zoom i {
  font-size: 24px;
}

.galleryx-card:hover .galleryx-action-btn {
  transform: translate(-50%, -50%) scale(1.06);
  box-shadow:
    0 24px 60px rgba(212, 13, 31, .42),
    0 0 0 10px rgba(255, 255, 255, .16);
}

/* old play icon conflict hide */
.galleryx-play-icon {
  display: none !important;
}

/* video cards should show pointer correctly */
.galleryx-card.video {
  cursor: pointer;
}

/* lightbox video/image sizing */
.galleryx-lightbox-body img,
.galleryx-lightbox-body video,
.galleryx-lightbox-body iframe {
  width: 100%;
  max-height: 74vh;
  display: block;
  border: 0;
  border-radius: 20px;
  object-fit: contain;
  background: #000b26;
}

/* mobile button size */
@media (max-width: 767px) {
  .galleryx-action-btn {
    width: 52px;
    height: 52px;
    box-shadow:
      0 16px 38px rgba(212, 13, 31, .32),
      0 0 0 7px rgba(255, 255, 255, .12);
  }

  .galleryx-action-btn i {
    font-size: 25px;
  }

  .galleryx-action-btn.zoom i {
    font-size: 21px;
  }
}

































/* =========================================================
   FACULTY PAGE - ULTRA PRO PREMIUM
========================================================= */

.facultyx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.facultyx-page * {
  box-sizing: border-box;
}

.facultyx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.facultyx-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.facultyx-bg-grid,
.facultyx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.facultyx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.facultyx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.facultyx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.facultyx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.facultyx-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.facultyx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.facultyx-breadcrumb a,
.facultyx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.facultyx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.facultyx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero card */
.facultyx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.facultyx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.facultyx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: facultyxShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes facultyxShineMove {
  from { transform: translateX(-8%) rotate(12deg); }
  to { transform: translateX(8%) rotate(12deg); }
}

/* Hero content */
.facultyx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.facultyx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.facultyx-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(30px, 5vw, 41px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.facultyx-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.facultyx-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 18px;
}

.facultyx-alert-note {
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: rgba(255,255,255,.84);
  background: rgba(212, 13, 31, .18);
  border: 1px solid rgba(255,255,255,.14);
}

.facultyx-alert-note i {
  color: #ffccd1;
  margin-top: 3px;
}

.facultyx-alert-note span {
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.facultyx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.facultyx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

.facultyx-hero-tags i {
  color: #ffccd1;
}

/* Buttons */
.facultyx-hero-actions,
.facultyx-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 390px;
}

.facultyx-hero-actions .btn-main,
.facultyx-hero-actions .facultyx-outline-btn,
.facultyx-cta-actions .btn-main,
.facultyx-cta-actions .btn-white {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.facultyx-outline-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

/* Hero visual */
.facultyx-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 560px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.facultyx-teacher-board {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.facultyx-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.facultyx-board-head div {
  display: flex;
  gap: 7px;
}

.facultyx-board-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}

.facultyx-board-head strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.facultyx-board-body {
  min-height: 390px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(212,13,31,.26), transparent 36%),
    linear-gradient(145deg, rgba(0,8,23,.92), rgba(7,27,77,.82));
}

.facultyx-teacher-main {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 18px;
}

.facultyx-teacher-avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 30px;
}

.facultyx-teacher-main span {
  color: #ffccd1;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.facultyx-teacher-main h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  margin: 4px 0 4px;
}

.facultyx-teacher-main p {
  color: rgba(255,255,255,.68);
  font-size: 11.5px;
  font-weight: 800;
  margin: 0;
}

.facultyx-subject-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.facultyx-subject-list div {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.facultyx-subject-list i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 12px;
}

.facultyx-subject-list strong {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.facultyx-subject-list span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

.facultyx-hero-info-row {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.facultyx-info-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.facultyx-info-card i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.facultyx-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 950;
}

.facultyx-info-card span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

/* Head */
.facultyx-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.facultyx-section-head h2,
.facultyx-mentor-card h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.facultyx-section-head p,
.facultyx-mentor-card p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.facultyx-section-head.light h2 {
  color: #ffffff;
}

.facultyx-section-head.light p {
  color: rgba(255,255,255,.72);
}

/* Highlights */
.facultyx-highlights,
.facultyx-team,
.facultyx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.facultyx-highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.facultyx-highlight-card,
.facultyx-teacher-card,
.facultyx-mentor-card,
.facultyx-mentor-dashboard {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7,27,77,.09);
  box-shadow:
    0 20px 58px rgba(7,27,77,.09),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: .28s ease;
}

.facultyx-highlight-card {
  min-height: 220px;
  padding: 22px;
}

.facultyx-highlight-card:hover,
.facultyx-teacher-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,13,31,.18);
}

.facultyx-highlight-card > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 16px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.facultyx-highlight-card h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.facultyx-highlight-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

.facultyx-highlight-card.featured,
.facultyx-teacher-card.active {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.facultyx-highlight-card.featured h3,
.facultyx-highlight-card.featured p,
.facultyx-teacher-card.active h3,
.facultyx-teacher-card.active p,
.facultyx-teacher-card.active li {
  color: #ffffff;
}

.facultyx-highlight-card.featured p,
.facultyx-teacher-card.active p,
.facultyx-teacher-card.active li {
  color: rgba(255,255,255,.72);
}

/* Team */
.facultyx-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.facultyx-teacher-card {
  padding: 18px;
}

.facultyx-teacher-img {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(212,13,31,.22), transparent 34%),
    linear-gradient(145deg, #000817, #071b4d);
  margin-bottom: 18px;
}

.facultyx-teacher-img img {
  width: 100%;
  height: 255px;
  display: block;
  object-fit: cover;
  opacity: .86;
  transform: scale(1.02);
  transition: .4s ease;
}

.facultyx-teacher-card:hover .facultyx-teacher-img img {
  transform: scale(1.08);
}

.facultyx-teacher-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,11,38,.70), transparent 56%);
}

.facultyx-teacher-img span {
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 11px;
  font-weight: 950;
}

.facultyx-teacher-content {
  padding: 0 5px 8px;
}

.facultyx-subject {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.facultyx-teacher-content h3 {
  color: #071b4d;
  font-size: 20px;
  font-weight: 950;
  margin-bottom: 8px;
}

.facultyx-teacher-content p {
  color: rgba(7,27,77,.64);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 650;
}

.facultyx-teacher-content ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.facultyx-teacher-content li {
  display: flex;
  gap: 9px;
  color: rgba(7,27,77,.72);
  font-size: 12.5px;
  font-weight: 750;
}

.facultyx-teacher-content li i {
  color: var(--accent-red, #d40d1f);
}

/* Approach */
.facultyx-approach {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.facultyx-approach-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.facultyx-approach-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.facultyx-approach-card > span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255,255,255,.12);
  font-size: 34px;
  font-weight: 950;
}

.facultyx-approach-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 18px;
}

.facultyx-approach-card h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.facultyx-approach-card p {
  color: rgba(255,255,255,.72);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* Mentorship */
.facultyx-mentorship {
  background: #ffffff;
}

.facultyx-mentor-card {
  padding: 32px;
}

.facultyx-mentor-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.facultyx-mentor-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
}

.facultyx-mentor-points i {
  color: var(--accent-red, #d40d1f);
  font-size: 18px;
}

.facultyx-mentor-points span {
  color: rgba(7,27,77,.76);
  font-size: 13px;
  font-weight: 800;
}

.facultyx-mentor-dashboard {
  padding: 28px;
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.facultyx-dashboard-head {
  margin-bottom: 22px;
}

.facultyx-dashboard-head strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}

.facultyx-dashboard-head span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 850;
}

.facultyx-dashboard-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.facultyx-dashboard-row div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
}

.facultyx-dashboard-row i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 12px;
}

.facultyx-dashboard-row strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
}

.facultyx-dashboard-row span {
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 800;
}

.facultyx-progress-wrap {
  display: grid;
  gap: 12px;
}

.facultyx-progress-wrap > div:not(.facultyx-progress) {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.80);
  font-size: 12px;
  font-weight: 850;
}

.facultyx-progress-wrap strong {
  color: #ffffff;
}

.facultyx-progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.facultyx-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-red, #d40d1f), #ff8994);
}

/* CTA */
.facultyx-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 34px 98px rgba(7,27,77,.25),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.facultyx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.facultyx-cta > * {
  position: relative;
  z-index: 2;
}

.facultyx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.facultyx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.facultyx-cta p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .facultyx-hero-content {
    padding: 42px;
  }

  .facultyx-highlight-grid,
  .facultyx-approach-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facultyx-team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .facultyx-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .facultyx-hero {
    padding-bottom: 52px;
  }

  .facultyx-hero-card {
    border-radius: 32px;
  }

  .facultyx-hero-visual {
    min-height: auto;
    padding: 0 18px 28px;
  }

  .facultyx-teacher-board,
  .facultyx-hero-info-row {
    max-width: 100%;
  }

  .facultyx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .facultyx-hero {
    padding-top: 16px;
  }

  .facultyx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .facultyx-hero-card {
    border-radius: 24px;
  }

  .facultyx-hero-content {
    padding: 24px 17px 22px;
  }

  .facultyx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .facultyx-hero-content p,
  .facultyx-section-head p,
  .facultyx-mentor-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .facultyx-hero-actions,
  .facultyx-cta-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 8px;
  }

  .facultyx-hero-actions .btn-main,
  .facultyx-hero-actions .facultyx-outline-btn,
  .facultyx-cta-actions .btn-main,
  .facultyx-cta-actions .btn-white {
    min-height: 42px;
    padding: 10px 7px;
    font-size: 11px;
    gap: 5px;
  }

  .facultyx-board-body {
    min-height: auto;
    padding: 18px;
  }

  .facultyx-subject-list,
  .facultyx-hero-info-row,
  .facultyx-highlight-grid,
  .facultyx-team-grid,
  .facultyx-approach-grid,
  .facultyx-dashboard-row {
    grid-template-columns: 1fr;
  }

  .facultyx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .facultyx-section-head h2,
  .facultyx-mentor-card h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .facultyx-highlight-card,
  .facultyx-teacher-card,
  .facultyx-approach-card,
  .facultyx-mentor-card,
  .facultyx-mentor-dashboard,
  .facultyx-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .facultyx-highlight-card:hover,
  .facultyx-teacher-card:hover {
    transform: none;
  }

  .facultyx-teacher-img,
  .facultyx-teacher-img img {
    min-height: 235px;
    height: 235px;
  }
}

@media (max-width: 420px) {
  .facultyx-hero-content h1 {
    font-size: 28px;
  }

  .facultyx-hero-actions .btn-main,
  .facultyx-hero-actions .facultyx-outline-btn,
  .facultyx-cta-actions .btn-main,
  .facultyx-cta-actions .btn-white {
    font-size: 10.5px;
    padding: 9px 6px;
  }

  .facultyx-highlight-card,
  .facultyx-teacher-card,
  .facultyx-approach-card,
  .facultyx-mentor-card,
  .facultyx-mentor-dashboard,
  .facultyx-cta {
    padding: 18px;
    border-radius: 22px;
  }
}
































/* =========================================================
   ADMISSION PAGE - ULTRA PRO PREMIUM
========================================================= */

.admissionx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.admissionx-page * {
  box-sizing: border-box;
}

.admissionx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.admissionx-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.admissionx-bg-grid,
.admissionx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.admissionx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.admissionx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.admissionx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.admissionx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.admissionx-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.admissionx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.admissionx-breadcrumb a,
.admissionx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.admissionx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.admissionx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero card */
.admissionx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.admissionx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.admissionx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: admissionxShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes admissionxShineMove {
  from { transform: translateX(-8%) rotate(12deg); }
  to { transform: translateX(8%) rotate(12deg); }
}

/* Hero content */
.admissionx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.admissionx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.admissionx-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(28px, 5vw, 39px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.admissionx-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.admissionx-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 18px;
}

.admissionx-alert-note {
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: rgba(255,255,255,.84);
  background: rgba(212, 13, 31, .18);
  border: 1px solid rgba(255,255,255,.14);
}

.admissionx-alert-note i {
  color: #ffccd1;
  margin-top: 3px;
}

.admissionx-alert-note span {
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.admissionx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.admissionx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

.admissionx-hero-tags i {
  color: #ffccd1;
}

/* Buttons */
.admissionx-hero-actions,
.admissionx-cta-actions,
.admissionx-concession-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 410px;
}

.admissionx-hero-actions .btn-main,
.admissionx-hero-actions .admissionx-outline-btn,
.admissionx-cta-actions .btn-main,
.admissionx-cta-actions .btn-white,
.admissionx-concession-actions .btn-main,
.admissionx-concession-actions .btn-white {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.admissionx-outline-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

/* Hero visual */
.admissionx-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 560px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.admissionx-visual-card {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.admissionx-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.admissionx-visual-head div {
  display: flex;
  gap: 7px;
}

.admissionx-visual-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}

.admissionx-visual-head strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.admissionx-visual-body {
  min-height: 390px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(212,13,31,.26), transparent 36%),
    linear-gradient(145deg, rgba(0,8,23,.92), rgba(7,27,77,.82));
}

.admissionx-student-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 18px;
}

.admissionx-avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 30px;
}

.admissionx-student-card span {
  color: #ffccd1;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.admissionx-student-card h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  margin: 4px 0 4px;
}

.admissionx-student-card p {
  color: rgba(255,255,255,.68);
  font-size: 11.5px;
  font-weight: 800;
  margin: 0;
}

.admissionx-process-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.admissionx-process-mini div {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.admissionx-process-mini i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 12px;
}

.admissionx-process-mini strong {
  display: block;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 950;
}

.admissionx-process-mini span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

.admissionx-hero-info-row {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admissionx-info-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.admissionx-info-card i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.admissionx-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 950;
}

.admissionx-info-card span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

/* Head */
.admissionx-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.admissionx-section-head h2,
.admissionx-form-intro h2,
.admissionx-concession-content h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.admissionx-section-head p,
.admissionx-form-intro p,
.admissionx-concession-content p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

/* Form Section */
.admissionx-form-section,
.admissionx-courses,
.admissionx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.admissionx-form-intro,
.admissionx-form-card,
.admissionx-course-card,
.admissionx-contact-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7,27,77,.09);
  box-shadow:
    0 20px 58px rgba(7,27,77,.09),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.admissionx-form-intro {
  padding: 30px;
  height: 100%;
}

.admissionx-contact-card {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.admissionx-contact-card > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 15px;
  border-radius: 20px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
}

.admissionx-contact-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.admissionx-contact-card span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.admissionx-contact-card strong {
  color: #071b4d;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 900;
}

.admissionx-form-card {
  padding: 28px;
}

.admissionx-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7,27,77,.08);
}

.admissionx-form-head span {
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.admissionx-form-head h3 {
  color: #071b4d;
  font-size: 24px;
  font-weight: 950;
  margin: 4px 0 0;
}

.admissionx-form-head > i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 24px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.admissionx-form label {
  display: block;
  color: #071b4d;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 8px;
}

.admissionx-form label span {
  color: var(--accent-red, #d40d1f);
}

.admissionx-form input,
.admissionx-form select,
.admissionx-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(7,27,77,.11);
  border-radius: 16px;
  background: #f8f9fc;
  color: #071b4d;
  font-size: 13px;
  font-weight: 750;
  outline: 0;
  padding: 12px 14px;
  transition: .25s ease;
}

.admissionx-form textarea {
  resize: vertical;
  min-height: 120px;
}

.admissionx-form input:focus,
.admissionx-form select:focus,
.admissionx-form textarea:focus {
  background: #ffffff;
  border-color: rgba(212,13,31,.38);
  box-shadow: 0 0 0 4px rgba(212,13,31,.08);
}

.admissionx-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
}

.admissionx-form-check input {
  width: 17px;
  height: 17px;
  min-height: unset;
  margin-top: 2px;
  accent-color: var(--accent-red, #d40d1f);
}

.admissionx-form-check label {
  margin: 0;
  color: rgba(7,27,77,.72);
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 800;
}

.admissionx-form-message {
  display: none;
  padding: 13px 15px;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 850;
}

.admissionx-form-message.show {
  display: block;
}

.admissionx-form-message.success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid rgba(22,101,52,.18);
}

.admissionx-form-message.error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid rgba(153,27,27,.16);
}

.admissionx-submit-btn {
  width: 100%;
  border: 0;
  min-height: 50px;
}

/* Courses */
.admissionx-course-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.admissionx-course-card {
  min-height: 250px;
  padding: 24px;
  transition: .28s ease;
}

.admissionx-course-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,13,31,.18);
}

.admissionx-course-card > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 16px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.admissionx-course-card span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.admissionx-course-card h3 {
  color: #071b4d;
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 8px;
}

.admissionx-course-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin-bottom: 18px;
}

.admissionx-course-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

.admissionx-course-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.admissionx-course-card.featured h3,
.admissionx-course-card.featured p {
  color: #ffffff;
}

.admissionx-course-card.featured p {
  color: rgba(255,255,255,.72);
}

/* Concession */
.admissionx-concession {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.admissionx-concession-content {
  position: relative;
  z-index: 2;
}

.admissionx-concession-content h2 {
  color: #ffffff;
}

.admissionx-concession-content p {
  color: rgba(255,255,255,.72);
}

.admissionx-concession-note {
  display: flex;
  gap: 12px;
  padding: 17px;
  border-radius: 22px;
  margin: 22px 0;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
}

.admissionx-concession-note i {
  color: #ffccd1;
  font-size: 26px;
}

.admissionx-concession-note span {
  color: rgba(255,255,255,.80);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.admissionx-eligibility-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.admissionx-eligibility-card {
  min-height: 150px;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.admissionx-eligibility-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 14px;
}

.admissionx-eligibility-card span {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 6px;
}

.admissionx-eligibility-card p {
  color: rgba(255,255,255,.72);
  font-size: 12.6px;
  line-height: 1.55;
  font-weight: 650;
  margin: 0;
}

/* Process */
.admissionx-process {
  background: #ffffff;
}

.admissionx-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.admissionx-process-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7,27,77,.09);
  box-shadow:
    0 20px 58px rgba(7,27,77,.09),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.admissionx-process-card > span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(7,27,77,.07);
  font-size: 34px;
  font-weight: 950;
}

.admissionx-process-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 18px;
}

.admissionx-process-card h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.admissionx-process-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* Contact strip */
.admissionx-contact-strip {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.admissionx-contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.5fr;
  gap: 14px;
  padding: 18px;
}

.admissionx-contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
}

.admissionx-contact-item > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.admissionx-contact-item span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.admissionx-contact-item a,
.admissionx-contact-item p {
  color: #071b4d;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  margin: 0;
}

/* CTA */
.admissionx-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 34px 98px rgba(7,27,77,.25),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.admissionx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.admissionx-cta > * {
  position: relative;
  z-index: 2;
}

.admissionx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.admissionx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.admissionx-cta p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .admissionx-hero-content {
    padding: 42px;
  }

  .admissionx-course-grid,
  .admissionx-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admissionx-contact-wrap {
    grid-template-columns: 1fr;
  }

  .admissionx-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .admissionx-hero {
    padding-bottom: 52px;
  }

  .admissionx-hero-card {
    border-radius: 32px;
  }

  .admissionx-hero-visual {
    min-height: auto;
    padding: 0 18px 28px;
  }

  .admissionx-visual-card,
  .admissionx-hero-info-row {
    max-width: 100%;
  }

  .admissionx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .admissionx-hero {
    padding-top: 16px;
  }

  .admissionx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .admissionx-hero-card {
    border-radius: 24px;
  }

  .admissionx-hero-content {
    padding: 24px 17px 22px;
  }

  .admissionx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .admissionx-hero-content p,
  .admissionx-section-head p,
  .admissionx-form-intro p,
  .admissionx-concession-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .admissionx-hero-actions,
  .admissionx-cta-actions,
  .admissionx-concession-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 8px;
  }

  .admissionx-hero-actions .btn-main,
  .admissionx-hero-actions .admissionx-outline-btn,
  .admissionx-cta-actions .btn-main,
  .admissionx-cta-actions .btn-white,
  .admissionx-concession-actions .btn-main,
  .admissionx-concession-actions .btn-white {
    min-height: 42px;
    padding: 10px 7px;
    font-size: 11px;
    gap: 5px;
  }

  .admissionx-visual-body {
    min-height: auto;
    padding: 18px;
  }

  .admissionx-process-mini,
  .admissionx-hero-info-row,
  .admissionx-course-grid,
  .admissionx-eligibility-grid,
  .admissionx-process-grid {
    grid-template-columns: 1fr;
  }

  .admissionx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .admissionx-section-head h2,
  .admissionx-form-intro h2,
  .admissionx-concession-content h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .admissionx-form-intro,
  .admissionx-form-card,
  .admissionx-course-card,
  .admissionx-process-card,
  .admissionx-eligibility-card,
  .admissionx-contact-wrap,
  .admissionx-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .admissionx-course-card:hover {
    transform: none;
  }

  .admissionx-form-head {
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .admissionx-hero-content h1 {
    font-size: 28px;
  }

  .admissionx-hero-actions .btn-main,
  .admissionx-hero-actions .admissionx-outline-btn,
  .admissionx-cta-actions .btn-main,
  .admissionx-cta-actions .btn-white,
  .admissionx-concession-actions .btn-main,
  .admissionx-concession-actions .btn-white {
    font-size: 10.5px;
    padding: 9px 6px;
  }

  .admissionx-form-intro,
  .admissionx-form-card,
  .admissionx-course-card,
  .admissionx-process-card,
  .admissionx-eligibility-card,
  .admissionx-contact-wrap,
  .admissionx-cta {
    padding: 18px;
    border-radius: 22px;
  }
}

/* =========================================================
   ADMISSION CONTACT CARD TEXT FIX
========================================================= */

.admissionx-contact-card {
  display: grid !important;
  gap: 14px !important;
}

.admissionx-contact-card > div {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 18px 20px !important;
  border-radius: 20px !important;
  min-height: 92px !important;
  overflow: hidden !important;
}

.admissionx-contact-card > div > i {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  flex: 0 0 48px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 16px !important;
}

.admissionx-contact-card > div > div {
  min-width: 0 !important;
  width: 100% !important;
}

.admissionx-contact-card span {
  display: block !important;
  margin-bottom: 6px !important;
  font-size: 11px !important;
  line-height: 1.1 !important;
  letter-spacing: .3px !important;
  white-space: nowrap !important;
}

.admissionx-contact-card strong {
  display: block !important;
  color: #071b4d !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
  font-weight: 900 !important;
  word-break: normal !important;
  overflow-wrap: anywhere !important;
}

/* phone ko clean single/two line me rakhega */
.admissionx-contact-card strong a,
.admissionx-contact-card a {
  color: #071b4d !important;
  text-decoration: none !important;
  word-break: normal !important;
}

/* mobile fix */
@media (max-width: 767px) {
  .admissionx-contact-card > div {
    align-items: flex-start !important;
    padding: 16px !important;
    min-height: auto !important;
  }

  .admissionx-contact-card > div > i {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex-basis: 44px !important;
  }

  .admissionx-contact-card strong {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }
}



















































/* =========================================================
   SCHOLARSHIP EXAM PAGE - ULTRA PRO PREMIUM
========================================================= */

.scholarx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.scholarx-page * {
  box-sizing: border-box;
}

.scholarx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.scholarx-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.scholarx-bg-grid,
.scholarx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.scholarx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.scholarx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.scholarx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.scholarx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.scholarx-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.scholarx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.scholarx-breadcrumb a,
.scholarx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.scholarx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.scholarx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero card */
.scholarx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.scholarx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.scholarx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: scholarxShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes scholarxShineMove {
  from { transform: translateX(-8%) rotate(12deg); }
  to { transform: translateX(8%) rotate(12deg); }
}

/* Hero content */
.scholarx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.scholarx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.scholarx-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(31px, 5vw, 42px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.scholarx-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.scholarx-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 18px;
}

.scholarx-alert-note {
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: rgba(255,255,255,.84);
  background: rgba(212, 13, 31, .18);
  border: 1px solid rgba(255,255,255,.14);
}

.scholarx-alert-note i {
  color: #ffccd1;
  margin-top: 3px;
}

.scholarx-alert-note span {
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.scholarx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.scholarx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

.scholarx-hero-tags i {
  color: #ffccd1;
}

/* Buttons */
.scholarx-hero-actions,
.scholarx-cta-actions,
.scholarx-eligibility-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 430px;
}

.scholarx-hero-actions .btn-main,
.scholarx-hero-actions .scholarx-outline-btn,
.scholarx-cta-actions .btn-main,
.scholarx-cta-actions .btn-white,
.scholarx-eligibility-actions .btn-main,
.scholarx-eligibility-actions .btn-white {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.scholarx-outline-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

/* Hero Visual */
.scholarx-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 560px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.scholarx-visual-card {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.scholarx-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.scholarx-visual-head div {
  display: flex;
  gap: 7px;
}

.scholarx-visual-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}

.scholarx-visual-head strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.scholarx-visual-body {
  min-height: 390px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(212,13,31,.26), transparent 36%),
    linear-gradient(145deg, rgba(0,8,23,.92), rgba(7,27,77,.82));
}

.scholarx-percent-circle {
  width: 178px;
  height: 178px;
  margin: 0 auto 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #071b4d 57%, transparent 58%),
    conic-gradient(var(--accent-red, #d40d1f) 0 80%, rgba(255,255,255,.13) 80% 100%);
  box-shadow: 0 22px 58px rgba(0,0,0,.26);
}

.scholarx-percent-circle strong {
  display: block;
  color: #ffffff;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
  text-align: center;
}

.scholarx-percent-circle span {
  display: block;
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 850;
  text-align: center;
  margin-top: 6px;
}

.scholarx-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.scholarx-mini-grid div {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.scholarx-mini-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 12px;
}

.scholarx-mini-grid strong {
  display: block;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 950;
}

.scholarx-mini-grid span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

.scholarx-hero-info-row {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scholarx-info-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.scholarx-info-card i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.scholarx-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 950;
}

.scholarx-info-card span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

/* Common head */
.scholarx-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.scholarx-section-head h2,
.scholarx-form-intro h2,
.scholarx-eligibility-content h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.scholarx-section-head p,
.scholarx-form-intro p,
.scholarx-eligibility-content p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

/* Overview */
.scholarx-overview,
.scholarx-form-section,
.scholarx-docs,
.scholarx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.scholarx-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.scholarx-overview-card,
.scholarx-form-intro,
.scholarx-form-card,
.scholarx-doc-card,
.scholarx-process-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7,27,77,.09);
  box-shadow:
    0 20px 58px rgba(7,27,77,.09),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: .28s ease;
}

.scholarx-overview-card {
  min-height: 220px;
  padding: 22px;
}

.scholarx-overview-card:hover,
.scholarx-process-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,13,31,.18);
}

.scholarx-overview-card > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 16px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.scholarx-overview-card h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.scholarx-overview-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

.scholarx-overview-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.scholarx-overview-card.featured h3,
.scholarx-overview-card.featured p {
  color: #ffffff;
}

.scholarx-overview-card.featured p {
  color: rgba(255,255,255,.72);
}

/* Eligibility */
.scholarx-eligibility {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.scholarx-eligibility-content {
  position: relative;
  z-index: 2;
}

.scholarx-eligibility-content h2 {
  color: #ffffff;
}

.scholarx-eligibility-content p {
  color: rgba(255,255,255,.72);
}

.scholarx-note-box {
  display: flex;
  gap: 12px;
  padding: 17px;
  border-radius: 22px;
  margin: 22px 0;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
}

.scholarx-note-box i {
  color: #ffccd1;
  font-size: 28px;
}

.scholarx-note-box strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 4px;
}

.scholarx-note-box span {
  color: rgba(255,255,255,.76);
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 750;
}

.scholarx-eligibility-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.scholarx-eligibility-card {
  min-height: 150px;
  padding: 20px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.scholarx-eligibility-card i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 14px;
}

.scholarx-eligibility-card span {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 6px;
}

.scholarx-eligibility-card p {
  color: rgba(255,255,255,.72);
  font-size: 12.6px;
  line-height: 1.55;
  font-weight: 650;
  margin: 0;
}

/* Form */
.scholarx-form-intro {
  padding: 30px;
  height: 100%;
}

.scholarx-contact-card {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.scholarx-contact-card > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 20px;
  min-height: 92px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
  overflow: hidden;
}

.scholarx-contact-card i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.scholarx-contact-card > div > div {
  min-width: 0;
  width: 100%;
}

.scholarx-contact-card span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  line-height: 1.1;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.scholarx-contact-card strong,
.scholarx-contact-card a {
  color: #071b4d;
  font-size: 13.5px;
  line-height: 1.45;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.scholarx-form-card {
  padding: 28px;
}

.scholarx-form-head,
.scholarx-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7,27,77,.08);
}

.scholarx-form-head {
  justify-content: space-between;
}

.scholarx-form-head span,
.scholarx-card-head span {
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.scholarx-form-head h3,
.scholarx-card-head h3 {
  color: #071b4d;
  font-size: 24px;
  font-weight: 950;
  margin: 4px 0 0;
}

.scholarx-form-head > i,
.scholarx-card-head > i {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 24px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.scholarx-form label {
  display: block;
  color: #071b4d;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 8px;
}

.scholarx-form label span {
  color: var(--accent-red, #d40d1f);
}

.scholarx-form input,
.scholarx-form select,
.scholarx-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(7,27,77,.11);
  border-radius: 16px;
  background: #f8f9fc;
  color: #071b4d;
  font-size: 13px;
  font-weight: 750;
  outline: 0;
  padding: 12px 14px;
  transition: .25s ease;
}

.scholarx-form textarea {
  resize: vertical;
  min-height: 120px;
}

.scholarx-form input:focus,
.scholarx-form select:focus,
.scholarx-form textarea:focus {
  background: #ffffff;
  border-color: rgba(212,13,31,.38);
  box-shadow: 0 0 0 4px rgba(212,13,31,.08);
}

.scholarx-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
}

.scholarx-form-check input {
  width: 17px;
  height: 17px;
  min-height: unset;
  margin-top: 2px;
  accent-color: var(--accent-red, #d40d1f);
}

.scholarx-form-check label {
  margin: 0;
  color: rgba(7,27,77,.72);
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 800;
}

.scholarx-form-message {
  display: none;
  padding: 13px 15px;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 850;
}

.scholarx-form-message.show {
  display: block;
}

.scholarx-form-message.success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid rgba(22,101,52,.18);
}

.scholarx-form-message.error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid rgba(153,27,27,.16);
}

.scholarx-submit-btn {
  width: 100%;
  border: 0;
  min-height: 50px;
}

/* Docs */
.scholarx-doc-card {
  height: 100%;
  padding: 28px;
}

.scholarx-doc-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 13px;
}

.scholarx-doc-card li {
  display: flex;
  gap: 10px;
  color: rgba(7,27,77,.74);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.scholarx-doc-card li i {
  color: var(--accent-red, #d40d1f);
  margin-top: 3px;
}

.scholarx-doc-card.active {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.scholarx-doc-card.active .scholarx-card-head h3,
.scholarx-doc-card.active li {
  color: #ffffff;
}

.scholarx-doc-card.active li {
  color: rgba(255,255,255,.76);
}

/* Process */
.scholarx-process {
  background: #ffffff;
}

.scholarx-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.scholarx-process-card {
  min-height: 230px;
  padding: 24px;
}

.scholarx-process-card > span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(7,27,77,.07);
  font-size: 34px;
  font-weight: 950;
}

.scholarx-process-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 18px;
}

.scholarx-process-card h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.scholarx-process-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* CTA */
.scholarx-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 34px 98px rgba(7,27,77,.25),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.scholarx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.scholarx-cta > * {
  position: relative;
  z-index: 2;
}

.scholarx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.scholarx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.scholarx-cta p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .scholarx-hero-content {
    padding: 42px;
  }

  .scholarx-overview-grid,
  .scholarx-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scholarx-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .scholarx-hero {
    padding-bottom: 52px;
  }

  .scholarx-hero-card {
    border-radius: 32px;
  }

  .scholarx-hero-visual {
    min-height: auto;
    padding: 0 18px 28px;
  }

  .scholarx-visual-card,
  .scholarx-hero-info-row {
    max-width: 100%;
  }

  .scholarx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .scholarx-hero {
    padding-top: 16px;
  }

  .scholarx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .scholarx-hero-card {
    border-radius: 24px;
  }

  .scholarx-hero-content {
    padding: 24px 17px 22px;
  }

  .scholarx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .scholarx-hero-content p,
  .scholarx-section-head p,
  .scholarx-form-intro p,
  .scholarx-eligibility-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .scholarx-hero-actions,
  .scholarx-cta-actions,
  .scholarx-eligibility-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 8px;
  }

  .scholarx-hero-actions .btn-main,
  .scholarx-hero-actions .scholarx-outline-btn,
  .scholarx-cta-actions .btn-main,
  .scholarx-cta-actions .btn-white,
  .scholarx-eligibility-actions .btn-main,
  .scholarx-eligibility-actions .btn-white {
    min-height: 42px;
    padding: 10px 7px;
    font-size: 11px;
    gap: 5px;
  }

  .scholarx-visual-body {
    min-height: auto;
    padding: 18px;
  }

  .scholarx-mini-grid,
  .scholarx-hero-info-row,
  .scholarx-overview-grid,
  .scholarx-eligibility-grid,
  .scholarx-process-grid {
    grid-template-columns: 1fr;
  }

  .scholarx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .scholarx-section-head h2,
  .scholarx-form-intro h2,
  .scholarx-eligibility-content h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .scholarx-overview-card,
  .scholarx-form-intro,
  .scholarx-form-card,
  .scholarx-doc-card,
  .scholarx-process-card,
  .scholarx-eligibility-card,
  .scholarx-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .scholarx-overview-card:hover,
  .scholarx-process-card:hover {
    transform: none;
  }

  .scholarx-form-head {
    align-items: flex-start;
  }

  .scholarx-contact-card > div {
    align-items: flex-start;
    padding: 16px;
    min-height: auto;
  }

  .scholarx-contact-card i {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-basis: 44px;
  }
}

@media (max-width: 420px) {
  .scholarx-hero-content h1 {
    font-size: 28px;
  }

  .scholarx-hero-actions .btn-main,
  .scholarx-hero-actions .scholarx-outline-btn,
  .scholarx-cta-actions .btn-main,
  .scholarx-cta-actions .btn-white,
  .scholarx-eligibility-actions .btn-main,
  .scholarx-eligibility-actions .btn-white {
    font-size: 10.5px;
    padding: 9px 6px;
  }

  .scholarx-overview-card,
  .scholarx-form-intro,
  .scholarx-form-card,
  .scholarx-doc-card,
  .scholarx-process-card,
  .scholarx-eligibility-card,
  .scholarx-cta {
    padding: 18px;
    border-radius: 22px;
  }

  .scholarx-percent-circle {
    width: 148px;
    height: 148px;
  }

  .scholarx-percent-circle strong {
    font-size: 34px;
  }
}










































/* =========================================================
   STARTUP VISION PAGE - ULTRA PRO PREMIUM
========================================================= */

.startupx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.startupx-page * {
  box-sizing: border-box;
}

.startupx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.startupx-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.startupx-bg-grid,
.startupx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.startupx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.startupx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.startupx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.startupx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.startupx-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.startupx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.startupx-breadcrumb a,
.startupx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.startupx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.startupx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero card */
.startupx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.startupx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.startupx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: startupxShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes startupxShineMove {
  from { transform: translateX(-8%) rotate(12deg); }
  to { transform: translateX(8%) rotate(12deg); }
}

/* Hero content */
.startupx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.startupx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.startupx-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(31px, 5vw, 42px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.startupx-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.startupx-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 18px;
}

.startupx-alert-note {
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: rgba(255,255,255,.84);
  background: rgba(212, 13, 31, .18);
  border: 1px solid rgba(255,255,255,.14);
}

.startupx-alert-note i {
  color: #ffccd1;
  margin-top: 3px;
}

.startupx-alert-note span {
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.startupx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.startupx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

.startupx-hero-tags i {
  color: #ffccd1;
}

/* Buttons */
.startupx-hero-actions,
.startupx-cta-actions,
.startupx-recognition-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 410px;
}

.startupx-hero-actions .btn-main,
.startupx-hero-actions .startupx-outline-btn,
.startupx-cta-actions .btn-main,
.startupx-cta-actions .btn-white,
.startupx-recognition-actions .btn-main,
.startupx-recognition-actions .btn-white {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.startupx-outline-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

/* Hero visual */
.startupx-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 560px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.startupx-visual-card {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.startupx-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.startupx-visual-head div {
  display: flex;
  gap: 7px;
}

.startupx-visual-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}

.startupx-visual-head strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.startupx-visual-body {
  min-height: 390px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(212,13,31,.26), transparent 36%),
    linear-gradient(145deg, rgba(0,8,23,.92), rgba(7,27,77,.82));
}

.startupx-rocket-core {
  position: relative;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
}

.startupx-rocket-core > i {
  position: relative;
  z-index: 4;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 22px 56px rgba(212,13,31,.35);
  font-size: 34px;
}

.startupx-ring {
  position: absolute;
  inset: 18px;
  border-radius: 36px;
  border: 1px solid rgba(255,255,255,.14);
  animation: startupxPulse 3s ease-in-out infinite;
}

.startupx-ring-2 {
  inset: 2px;
  opacity: .6;
  animation-delay: .55s;
}

.startupx-ring-3 {
  inset: -14px;
  opacity: .35;
  animation-delay: 1.1s;
}

@keyframes startupxPulse {
  0%, 100% { transform: scale(.92); opacity: .45; }
  50% { transform: scale(1.08); opacity: .85; }
}

.startupx-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.startupx-mini-grid div,
.startupx-visual-note {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.startupx-mini-grid i,
.startupx-visual-note i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 12px;
}

.startupx-mini-grid strong,
.startupx-visual-note strong {
  display: block;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 950;
}

.startupx-mini-grid span,
.startupx-visual-note span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

.startupx-visual-note {
  display: flex;
  align-items: center;
  gap: 12px;
}

.startupx-visual-note i {
  margin-bottom: 0;
  flex: 0 0 42px;
}

.startupx-hero-info-row {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.startupx-info-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.startupx-info-card i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.startupx-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 950;
}

.startupx-info-card span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

/* Section Head */
.startupx-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.startupx-section-head h2,
.startupx-recognition-content h2,
.startupx-ai-card h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.startupx-section-head p,
.startupx-recognition-content p,
.startupx-ai-card p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

/* Overview */
.startupx-overview,
.startupx-roadmap,
.startupx-company,
.startupx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.startupx-overview-grid,
.startupx-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.startupx-overview-card,
.startupx-roadmap-card,
.startupx-ai-card,
.startupx-company-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7,27,77,.09);
  box-shadow:
    0 20px 58px rgba(7,27,77,.09),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: .28s ease;
}

.startupx-overview-card,
.startupx-roadmap-card {
  min-height: 230px;
  padding: 24px;
}

.startupx-overview-card:hover,
.startupx-roadmap-card:hover,
.startupx-company-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,13,31,.18);
}

.startupx-overview-card > i,
.startupx-roadmap-card > i,
.startupx-company-card > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 16px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.startupx-overview-card h3,
.startupx-roadmap-card h3,
.startupx-company-card h3 {
  color: #071b4d;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 950;
  margin-bottom: 8px;
}

.startupx-overview-card p,
.startupx-roadmap-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

.startupx-overview-card.featured,
.startupx-roadmap-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.startupx-overview-card.featured h3,
.startupx-overview-card.featured p,
.startupx-roadmap-card.featured h3,
.startupx-roadmap-card.featured p {
  color: #ffffff;
}

.startupx-overview-card.featured p,
.startupx-roadmap-card.featured p {
  color: rgba(255,255,255,.72);
}

/* Recognition */
.startupx-recognition {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.startupx-recognition-content {
  position: relative;
  z-index: 2;
}

.startupx-recognition-content h2 {
  color: #ffffff;
}

.startupx-recognition-content p {
  color: rgba(255,255,255,.72);
}

.startupx-trust-note {
  display: flex;
  gap: 12px;
  padding: 17px;
  border-radius: 22px;
  margin: 22px 0;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
}

.startupx-trust-note i {
  color: #ffccd1;
  font-size: 28px;
}

.startupx-trust-note strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  margin-bottom: 4px;
}

.startupx-trust-note span {
  color: rgba(255,255,255,.76);
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 750;
}

.startupx-recognition-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.startupx-recognition-card {
  min-height: 170px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.startupx-recognition-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 14px;
}

.startupx-recognition-card span {
  display: block;
  color: #ffccd1;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.startupx-recognition-card h3 {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 950;
  margin: 0;
}

/* Roadmap */
.startupx-roadmap-card > span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(7,27,77,.07);
  font-size: 34px;
  font-weight: 950;
}

.startupx-roadmap-card.featured > span {
  color: rgba(255,255,255,.13);
}

/* AI */
.startupx-ai {
  background: #ffffff;
}

.startupx-ai-card {
  height: 100%;
  padding: 32px;
}

.startupx-ai-note {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
  margin: 22px 0;
}

.startupx-ai-note i {
  color: var(--accent-red, #d40d1f);
  font-size: 24px;
}

.startupx-ai-note span {
  color: rgba(7,27,77,.72);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.startupx-ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.startupx-ai-grid div {
  min-height: 150px;
  padding: 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
  box-shadow: 0 22px 60px rgba(7,27,77,.13);
}

.startupx-ai-grid i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 14px;
}

.startupx-ai-grid h3 {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
  margin: 0;
}

/* Company */
.startupx-company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.startupx-company-card {
  min-height: 180px;
  padding: 24px;
}

.startupx-company-card span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.startupx-company-card h3 {
  font-size: 15px;
  overflow-wrap: anywhere;
}

/* CTA */
.startupx-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 34px 98px rgba(7,27,77,.25),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.startupx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.startupx-cta > * {
  position: relative;
  z-index: 2;
}

.startupx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.startupx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.startupx-cta p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .startupx-hero-content {
    padding: 42px;
  }

  .startupx-overview-grid,
  .startupx-roadmap-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .startupx-company-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .startupx-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .startupx-hero {
    padding-bottom: 52px;
  }

  .startupx-hero-card {
    border-radius: 32px;
  }

  .startupx-hero-visual {
    min-height: auto;
    padding: 0 18px 28px;
  }

  .startupx-visual-card,
  .startupx-hero-info-row {
    max-width: 100%;
  }

  .startupx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .startupx-hero {
    padding-top: 16px;
  }

  .startupx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .startupx-hero-card {
    border-radius: 24px;
  }

  .startupx-hero-content {
    padding: 24px 17px 22px;
  }

  .startupx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .startupx-hero-content p,
  .startupx-section-head p,
  .startupx-recognition-content p,
  .startupx-ai-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .startupx-hero-actions,
  .startupx-cta-actions,
  .startupx-recognition-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 8px;
  }

  .startupx-hero-actions .btn-main,
  .startupx-hero-actions .startupx-outline-btn,
  .startupx-cta-actions .btn-main,
  .startupx-cta-actions .btn-white,
  .startupx-recognition-actions .btn-main,
  .startupx-recognition-actions .btn-white {
    min-height: 42px;
    padding: 10px 7px;
    font-size: 11px;
    gap: 5px;
  }

  .startupx-visual-body {
    min-height: auto;
    padding: 18px;
  }

  .startupx-mini-grid,
  .startupx-hero-info-row,
  .startupx-overview-grid,
  .startupx-recognition-grid,
  .startupx-roadmap-grid,
  .startupx-ai-grid,
  .startupx-company-grid {
    grid-template-columns: 1fr;
  }

  .startupx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .startupx-section-head h2,
  .startupx-recognition-content h2,
  .startupx-ai-card h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .startupx-overview-card,
  .startupx-recognition-card,
  .startupx-roadmap-card,
  .startupx-ai-card,
  .startupx-company-card,
  .startupx-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .startupx-overview-card:hover,
  .startupx-roadmap-card:hover,
  .startupx-company-card:hover {
    transform: none;
  }
}

@media (max-width: 420px) {
  .startupx-hero-content h1 {
    font-size: 28px;
  }

  .startupx-hero-actions .btn-main,
  .startupx-hero-actions .startupx-outline-btn,
  .startupx-cta-actions .btn-main,
  .startupx-cta-actions .btn-white,
  .startupx-recognition-actions .btn-main,
  .startupx-recognition-actions .btn-white {
    font-size: 10.5px;
    padding: 9px 6px;
  }

  .startupx-overview-card,
  .startupx-recognition-card,
  .startupx-roadmap-card,
  .startupx-ai-card,
  .startupx-company-card,
  .startupx-cta {
    padding: 18px;
    border-radius: 22px;
  }

  .startupx-rocket-core {
    width: 130px;
    height: 130px;
  }
}




































/* =========================================================
   CONTACT PAGE - ULTRA PRO PREMIUM
========================================================= */

.contactx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.contactx-page * {
  box-sizing: border-box;
}

.contactx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.contactx-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.contactx-bg-grid,
.contactx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.contactx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.contactx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.contactx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.contactx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.contactx-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.contactx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contactx-breadcrumb a,
.contactx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.contactx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.contactx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero card */
.contactx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.contactx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.contactx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: contactxShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes contactxShineMove {
  from { transform: translateX(-8%) rotate(12deg); }
  to { transform: translateX(8%) rotate(12deg); }
}

/* Hero content */
.contactx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contactx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.contactx-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(31px, 5vw, 42px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.contactx-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contactx-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 18px;
}

.contactx-alert-note {
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: rgba(255,255,255,.84);
  background: rgba(212, 13, 31, .18);
  border: 1px solid rgba(255,255,255,.14);
}

.contactx-alert-note i {
  color: #ffccd1;
  margin-top: 3px;
}

.contactx-alert-note span {
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.contactx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.contactx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

.contactx-hero-tags i {
  color: #ffccd1;
}

/* Buttons */
.contactx-hero-actions,
.contactx-cta-actions,
.contactx-sidebar-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 410px;
}

.contactx-hero-actions .btn-main,
.contactx-hero-actions .contactx-outline-btn,
.contactx-cta-actions .btn-main,
.contactx-cta-actions .btn-white,
.contactx-sidebar-actions .btn-main,
.contactx-sidebar-actions .contactx-light-btn {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.contactx-outline-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

.contactx-light-btn {
  color: #071b4d;
  background: #ffffff;
  border: 1px solid rgba(7,27,77,.10);
  text-decoration: none;
}

/* Hero visual */
.contactx-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 560px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.contactx-visual-card {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.contactx-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.contactx-visual-head div {
  display: flex;
  gap: 7px;
}

.contactx-visual-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}

.contactx-visual-head strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.contactx-visual-body {
  min-height: 390px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(212,13,31,.26), transparent 36%),
    linear-gradient(145deg, rgba(0,8,23,.92), rgba(7,27,77,.82));
}

.contactx-contact-main {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 18px;
}

.contactx-contact-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 30px;
}

.contactx-contact-main span {
  color: #ffccd1;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.contactx-contact-main h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  margin: 4px 0 4px;
}

.contactx-contact-main p {
  color: rgba(255,255,255,.68);
  font-size: 11.5px;
  font-weight: 800;
  margin: 0;
}

.contactx-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contactx-mini-grid div {
  min-width: 0;
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.contactx-mini-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 12px;
}

.contactx-mini-grid strong {
  display: block;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 950;
}

.contactx-mini-grid span {
  display: block;
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contactx-hero-info-row {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.contactx-info-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.contactx-info-card i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.contactx-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 950;
}

.contactx-info-card span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

/* Section head */
.contactx-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.contactx-section-head h2,
.contactx-sidebar h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.contactx-section-head p,
.contactx-sidebar p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.contactx-section-head.light h2 {
  color: #ffffff;
}

.contactx-section-head.light p {
  color: rgba(255,255,255,.72);
}

/* Details */
.contactx-details,
.contactx-form-section,
.contactx-map-section,
.contactx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.contactx-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contactx-detail-card,
.contactx-form-card,
.contactx-sidebar,
.contactx-map-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7,27,77,.09);
  box-shadow:
    0 20px 58px rgba(7,27,77,.09),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.contactx-detail-card {
  min-height: 230px;
  padding: 24px;
  text-decoration: none;
  transition: .28s ease;
}

.contactx-detail-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,13,31,.18);
}

.contactx-detail-card > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 16px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.contactx-detail-card span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.contactx-detail-card h3 {
  color: #071b4d;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 950;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.contactx-detail-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

.contactx-detail-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.contactx-detail-card.featured h3,
.contactx-detail-card.featured p {
  color: #ffffff;
}

.contactx-detail-card.featured p {
  color: rgba(255,255,255,.72);
}

/* Form */
.contactx-form-card,
.contactx-sidebar {
  padding: 28px;
}

.contactx-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7,27,77,.08);
}

.contactx-form-head span {
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.contactx-form-head h3 {
  color: #071b4d;
  font-size: 24px;
  font-weight: 950;
  margin: 4px 0 0;
}

.contactx-form-head > i {
  width: 58px;
  height: 58px;
  min-width: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 24px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.contactx-form label {
  display: block;
  color: #071b4d;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 8px;
}

.contactx-form label span {
  color: var(--accent-red, #d40d1f);
}

.contactx-form input,
.contactx-form select,
.contactx-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(7,27,77,.11);
  border-radius: 16px;
  background: #f8f9fc;
  color: #071b4d;
  font-size: 13px;
  font-weight: 750;
  outline: 0;
  padding: 12px 14px;
  transition: .25s ease;
}

.contactx-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contactx-form input:focus,
.contactx-form select:focus,
.contactx-form textarea:focus {
  background: #ffffff;
  border-color: rgba(212,13,31,.38);
  box-shadow: 0 0 0 4px rgba(212,13,31,.08);
}

.contactx-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
}

.contactx-form-check input {
  width: 17px;
  height: 17px;
  min-height: unset;
  margin-top: 2px;
  accent-color: var(--accent-red, #d40d1f);
}

.contactx-form-check label {
  margin: 0;
  color: rgba(7,27,77,.72);
  font-size: 12.5px;
  line-height: 1.5;
  font-weight: 800;
}

.contactx-form-message {
  display: none;
  padding: 13px 15px;
  border-radius: 16px;
  font-size: 12.5px;
  font-weight: 850;
}

.contactx-form-message.show {
  display: block;
}

.contactx-form-message.success {
  color: #166534;
  background: #dcfce7;
  border: 1px solid rgba(22,101,52,.18);
}

.contactx-form-message.error {
  color: #991b1b;
  background: #fee2e2;
  border: 1px solid rgba(153,27,27,.16);
}

.contactx-submit-btn {
  width: 100%;
  border: 0;
  min-height: 50px;
}

/* Sidebar */
.contactx-sidebar {
  height: 100%;
}

.contactx-sidebar-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}

.contactx-sidebar-list > div {
  display: flex;
  gap: 12px;
  padding: 15px;
  border-radius: 20px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
}

.contactx-sidebar-list i {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.contactx-sidebar-list strong {
  display: block;
  color: #071b4d;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 4px;
}

.contactx-sidebar-list span {
  display: block;
  color: rgba(7,27,77,.62);
  font-size: 12px;
  line-height: 1.5;
  font-weight: 750;
}

/* Map */
.contactx-map-wrap {
  padding: 18px;
}

.contactx-map-info {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 24px;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .20), transparent 30%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.contactx-map-info > i {
  width: 56px;
  height: 56px;
  min-width: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 24px;
}

.contactx-map-info span {
  display: block;
  color: #ffccd1;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contactx-map-info h3 {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 950;
  margin: 0;
}

.contactx-map-wrap iframe {
  width: 100%;
  min-height: 420px;
  display: block;
  border: 0;
  border-radius: 24px;
  filter: saturate(1.05) contrast(1.02);
}

/* Quick Contact */
.contactx-quick-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.contactx-quick-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contactx-quick-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
  transition: .28s ease;
}

.contactx-quick-card:hover {
  transform: translateY(-8px);
}

.contactx-quick-card > span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255,255,255,.12);
  font-size: 34px;
  font-weight: 950;
}

.contactx-quick-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 18px;
}

.contactx-quick-card h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.contactx-quick-card p {
  color: rgba(255,255,255,.72);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* CTA */
.contactx-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 34px 98px rgba(7,27,77,.25),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.contactx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.contactx-cta > * {
  position: relative;
  z-index: 2;
}

.contactx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.contactx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.contactx-cta p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .contactx-hero-content {
    padding: 42px;
  }

  .contactx-detail-grid,
  .contactx-quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contactx-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .contactx-hero {
    padding-bottom: 52px;
  }

  .contactx-hero-card {
    border-radius: 32px;
  }

  .contactx-hero-visual {
    min-height: auto;
    padding: 0 18px 28px;
  }

  .contactx-visual-card,
  .contactx-hero-info-row {
    max-width: 100%;
  }

  .contactx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contactx-hero {
    padding-top: 16px;
  }

  .contactx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .contactx-hero-card {
    border-radius: 24px;
  }

  .contactx-hero-content {
    padding: 24px 17px 22px;
  }

  .contactx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .contactx-hero-content p,
  .contactx-section-head p,
  .contactx-sidebar p {
    font-size: 14px;
    line-height: 1.65;
  }

  .contactx-hero-actions,
  .contactx-cta-actions,
  .contactx-sidebar-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 8px;
  }

  .contactx-hero-actions .btn-main,
  .contactx-hero-actions .contactx-outline-btn,
  .contactx-cta-actions .btn-main,
  .contactx-cta-actions .btn-white,
  .contactx-sidebar-actions .btn-main,
  .contactx-sidebar-actions .contactx-light-btn {
    min-height: 42px;
    padding: 10px 7px;
    font-size: 11px;
    gap: 5px;
  }

  .contactx-visual-body {
    min-height: auto;
    padding: 18px;
  }

  .contactx-mini-grid,
  .contactx-hero-info-row,
  .contactx-detail-grid,
  .contactx-quick-grid {
    grid-template-columns: 1fr;
  }

  .contactx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .contactx-section-head h2,
  .contactx-sidebar h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .contactx-detail-card,
  .contactx-form-card,
  .contactx-sidebar,
  .contactx-map-wrap,
  .contactx-quick-card,
  .contactx-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .contactx-detail-card:hover,
  .contactx-quick-card:hover {
    transform: none;
  }

  .contactx-form-head {
    align-items: flex-start;
  }

  .contactx-map-info {
    align-items: flex-start;
  }

  .contactx-map-wrap iframe {
    min-height: 330px;
    border-radius: 20px;
  }
}

@media (max-width: 420px) {
  .contactx-hero-content h1 {
    font-size: 28px;
  }

  .contactx-hero-actions .btn-main,
  .contactx-hero-actions .contactx-outline-btn,
  .contactx-cta-actions .btn-main,
  .contactx-cta-actions .btn-white,
  .contactx-sidebar-actions .btn-main,
  .contactx-sidebar-actions .contactx-light-btn {
    font-size: 10.5px;
    padding: 9px 6px;
  }

  .contactx-detail-card,
  .contactx-form-card,
  .contactx-sidebar,
  .contactx-map-wrap,
  .contactx-quick-card,
  .contactx-cta {
    padding: 18px;
    border-radius: 22px;
  }
}



































/* =========================================================
   COURSES PAGE - ULTRA PRO PREMIUM
========================================================= */

.coursepg-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.coursepg-page * {
  box-sizing: border-box;
}

.coursepg-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.coursepg-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.coursepg-bg-grid,
.coursepg-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.coursepg-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.coursepg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.coursepg-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.coursepg-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.coursepg-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.coursepg-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.coursepg-breadcrumb a,
.coursepg-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.coursepg-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.coursepg-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero card */
.coursepg-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.coursepg-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.coursepg-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: coursepgShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes coursepgShineMove {
  from { transform: translateX(-8%) rotate(12deg); }
  to { transform: translateX(8%) rotate(12deg); }
}

/* Hero content */
.coursepg-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.coursepg-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.coursepg-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(30px, 5vw, 40px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.coursepg-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coursepg-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 18px;
}

.coursepg-alert-note {
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: rgba(255,255,255,.84);
  background: rgba(212, 13, 31, .18);
  border: 1px solid rgba(255,255,255,.14);
}

.coursepg-alert-note i {
  color: #ffccd1;
  margin-top: 3px;
}

.coursepg-alert-note span {
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.coursepg-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.coursepg-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

.coursepg-hero-tags i {
  color: #ffccd1;
}

/* Buttons */
.coursepg-hero-actions,
.coursepg-cta-actions,
.coursepg-test-actions,
.coursepg-concession-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 430px;
}

.coursepg-hero-actions .btn-main,
.coursepg-hero-actions .coursepg-outline-btn,
.coursepg-cta-actions .btn-main,
.coursepg-cta-actions .btn-white,
.coursepg-test-actions .btn-main,
.coursepg-test-actions .btn-white,
.coursepg-concession-actions .btn-main,
.coursepg-concession-actions .btn-white {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.coursepg-outline-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

/* Hero Visual */
.coursepg-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 560px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.coursepg-visual-card {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.coursepg-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.coursepg-visual-head div {
  display: flex;
  gap: 7px;
}

.coursepg-visual-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}

.coursepg-visual-head strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.coursepg-visual-body {
  min-height: 390px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(212,13,31,.26), transparent 36%),
    linear-gradient(145deg, rgba(0,8,23,.92), rgba(7,27,77,.82));
}

.coursepg-course-main {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 18px;
}

.coursepg-course-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 30px;
}

.coursepg-course-main span {
  color: #ffccd1;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.coursepg-course-main h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  margin: 4px 0 4px;
}

.coursepg-course-main p {
  color: rgba(255,255,255,.68);
  font-size: 11.5px;
  font-weight: 800;
  margin: 0;
}

.coursepg-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.coursepg-mini-grid div {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.coursepg-mini-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 12px;
}

.coursepg-mini-grid strong {
  display: block;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 950;
}

.coursepg-mini-grid span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

.coursepg-hero-info-row {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.coursepg-info-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.coursepg-info-card i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.coursepg-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 950;
}

.coursepg-info-card span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

/* Section Head */
.coursepg-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.coursepg-section-head h2,
.coursepg-subject-intro h2,
.coursepg-test-content h2,
.coursepg-guidance-content h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.coursepg-section-head p,
.coursepg-subject-intro p,
.coursepg-test-content p,
.coursepg-guidance-content p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.coursepg-section-head.light h2 {
  color: #ffffff;
}

.coursepg-section-head.light p {
  color: rgba(255,255,255,.72);
}

/* Course Overview */
.coursepg-overview,
.coursepg-method,
.coursepg-concession,
.coursepg-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.coursepg-course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.coursepg-course-card,
.coursepg-subject-intro,
.coursepg-subject-card,
.coursepg-method-card,
.coursepg-guidance-content,
.coursepg-guidance-dashboard {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7,27,77,.09);
  box-shadow:
    0 20px 58px rgba(7,27,77,.09),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: .28s ease;
}

.coursepg-course-card {
  padding: 18px;
}

.coursepg-course-card:hover,
.coursepg-method-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,13,31,.18);
}

.coursepg-card-image {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 18%, rgba(212,13,31,.22), transparent 34%),
    linear-gradient(145deg, #000817, #071b4d);
  margin-bottom: 18px;
}

.coursepg-card-image img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
  opacity: .88;
  transform: scale(1.02);
  transition: .4s ease;
}

.coursepg-course-card:hover .coursepg-card-image img {
  transform: scale(1.08);
}

.coursepg-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,11,38,.72), transparent 58%);
}

.coursepg-card-image span {
  position: absolute;
  left: 15px;
  bottom: 15px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 11px;
  font-weight: 950;
}

.coursepg-card-content {
  padding: 0 5px 8px;
}

.coursepg-card-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 14px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.coursepg-course-tag {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.coursepg-card-content h3 {
  color: #071b4d;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 950;
  margin-bottom: 9px;
}

.coursepg-card-content p {
  color: rgba(7,27,77,.64);
  font-size: 13px;
  line-height: 1.62;
  font-weight: 650;
  margin-bottom: 16px;
}

.coursepg-card-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.coursepg-card-content li {
  display: flex;
  gap: 9px;
  color: rgba(7,27,77,.72);
  font-size: 12.5px;
  font-weight: 750;
}

.coursepg-card-content li i {
  color: var(--accent-red, #d40d1f);
}

.coursepg-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.coursepg-card-actions .btn-main {
  min-height: 44px;
  justify-content: center;
  font-size: 12px;
  padding: 10px 14px;
}

.coursepg-card-link {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

/* Dark Sections */
.coursepg-join,
.coursepg-test-support {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.coursepg-join-grid,
.coursepg-method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.coursepg-join-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.coursepg-join-card > span,
.coursepg-method-card > span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(255,255,255,.12);
  font-size: 34px;
  font-weight: 950;
}

.coursepg-method-card > span {
  color: rgba(7,27,77,.07);
}

.coursepg-join-card i,
.coursepg-method-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 18px;
}

.coursepg-join-card h3 {
  color: #ffffff;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.coursepg-join-card p {
  color: rgba(255,255,255,.72);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* Subjects */
.coursepg-subjects,
.coursepg-guidance {
  background: #ffffff;
}

.coursepg-subject-intro,
.coursepg-guidance-content {
  padding: 32px;
  height: 100%;
}

.coursepg-subject-note {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
  margin: 22px 0;
}

.coursepg-subject-note i {
  color: var(--accent-red, #d40d1f);
  font-size: 24px;
}

.coursepg-subject-note span {
  color: rgba(7,27,77,.72);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.coursepg-subject-grid,
.coursepg-test-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.coursepg-subject-card {
  min-height: 190px;
  padding: 22px;
}

.coursepg-subject-card i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 14px;
}

.coursepg-subject-card span {
  display: block;
  color: var(--accent-red, #d40d1f);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.coursepg-subject-card h3 {
  color: #071b4d;
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 8px;
}

.coursepg-subject-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

/* Method */
.coursepg-method-card {
  min-height: 230px;
  padding: 24px;
}

.coursepg-method-card h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.coursepg-method-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

.coursepg-method-card.active {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.coursepg-method-card.active h3,
.coursepg-method-card.active p {
  color: #ffffff;
}

.coursepg-method-card.active p {
  color: rgba(255,255,255,.72);
}

.coursepg-method-card.active > span {
  color: rgba(255,255,255,.13);
}

/* Test Support */
.coursepg-test-content {
  position: relative;
  z-index: 2;
}

.coursepg-test-content h2 {
  color: #ffffff;
}

.coursepg-test-content p {
  color: rgba(255,255,255,.72);
}

.coursepg-test-grid {
  position: relative;
  z-index: 2;
}

.coursepg-test-grid div {
  min-height: 175px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.coursepg-test-grid i {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 14px;
}

.coursepg-test-grid h3 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  margin-bottom: 8px;
}

.coursepg-test-grid p {
  color: rgba(255,255,255,.72);
  font-size: 12.7px;
  line-height: 1.6;
  margin: 0;
}

/* Guidance */
.coursepg-guidance-dashboard {
  padding: 28px;
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.coursepg-dashboard-head {
  margin-bottom: 22px;
}

.coursepg-dashboard-head strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
}

.coursepg-dashboard-head span {
  color: #ffccd1;
  font-size: 12px;
  font-weight: 850;
}

.coursepg-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.coursepg-dashboard-grid div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
}

.coursepg-dashboard-grid i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 12px;
}

.coursepg-dashboard-grid strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  font-weight: 950;
}

.coursepg-dashboard-grid span {
  color: rgba(255,255,255,.68);
  font-size: 11px;
  font-weight: 800;
}

.coursepg-progress-wrap {
  display: grid;
  gap: 12px;
}

.coursepg-progress-wrap > div:not(.coursepg-progress) {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.80);
  font-size: 12px;
  font-weight: 850;
}

.coursepg-progress-wrap strong {
  color: #ffffff;
}

.coursepg-progress {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.coursepg-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-red, #d40d1f), #ff8994);
}

.coursepg-guidance-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.coursepg-guidance-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.08);
}

.coursepg-guidance-list i {
  color: var(--accent-red, #d40d1f);
  font-size: 18px;
}

.coursepg-guidance-list span {
  color: rgba(7,27,77,.76);
  font-size: 13px;
  font-weight: 800;
}

/* Concession */
.coursepg-concession-card {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 34px 98px rgba(7,27,77,.25),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.coursepg-concession-card > div:first-child {
  flex: 1;
}

.coursepg-concession-card span,
.coursepg-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.coursepg-concession-card h2,
.coursepg-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.coursepg-concession-card p,
.coursepg-cta p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 18px;
}

.coursepg-concession-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.coursepg-concession-card li {
  display: flex;
  gap: 8px;
  color: rgba(255,255,255,.78);
  font-size: 12.8px;
  font-weight: 750;
}

.coursepg-concession-card li i {
  color: #ffccd1;
}

/* CTA */
.coursepg-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 34px 98px rgba(7,27,77,.25),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.coursepg-cta::before,
.coursepg-concession-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.coursepg-cta > *,
.coursepg-concession-card > * {
  position: relative;
  z-index: 2;
}

/* Responsive */
@media (max-width: 1199px) {
  .coursepg-hero-content {
    padding: 42px;
  }

  .coursepg-course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coursepg-join-grid,
  .coursepg-method-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coursepg-cta,
  .coursepg-concession-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .coursepg-cta-actions,
  .coursepg-concession-actions {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .coursepg-hero {
    padding-bottom: 52px;
  }

  .coursepg-hero-card {
    border-radius: 32px;
  }

  .coursepg-hero-visual {
    min-height: auto;
    padding: 0 18px 28px;
  }

  .coursepg-visual-card,
  .coursepg-hero-info-row {
    max-width: 100%;
  }

  .coursepg-course-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .coursepg-hero {
    padding-top: 16px;
  }

  .coursepg-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .coursepg-hero-card {
    border-radius: 24px;
  }

  .coursepg-hero-content {
    padding: 24px 17px 22px;
  }

  .coursepg-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .coursepg-hero-content p,
  .coursepg-section-head p,
  .coursepg-subject-intro p,
  .coursepg-test-content p,
  .coursepg-guidance-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .coursepg-hero-actions,
  .coursepg-cta-actions,
  .coursepg-test-actions,
  .coursepg-concession-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 8px;
  }

  .coursepg-hero-actions .btn-main,
  .coursepg-hero-actions .coursepg-outline-btn,
  .coursepg-cta-actions .btn-main,
  .coursepg-cta-actions .btn-white,
  .coursepg-test-actions .btn-main,
  .coursepg-test-actions .btn-white,
  .coursepg-concession-actions .btn-main,
  .coursepg-concession-actions .btn-white {
    min-height: 42px;
    padding: 10px 7px;
    font-size: 11px;
    gap: 5px;
  }

  .coursepg-visual-body {
    min-height: auto;
    padding: 18px;
  }

  .coursepg-mini-grid,
  .coursepg-hero-info-row,
  .coursepg-join-grid,
  .coursepg-subject-grid,
  .coursepg-method-grid,
  .coursepg-test-grid,
  .coursepg-dashboard-grid,
  .coursepg-concession-card ul {
    grid-template-columns: 1fr;
  }

  .coursepg-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .coursepg-section-head h2,
  .coursepg-subject-intro h2,
  .coursepg-test-content h2,
  .coursepg-guidance-content h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .coursepg-course-card,
  .coursepg-join-card,
  .coursepg-subject-intro,
  .coursepg-subject-card,
  .coursepg-method-card,
  .coursepg-guidance-content,
  .coursepg-guidance-dashboard,
  .coursepg-test-grid div,
  .coursepg-concession-card,
  .coursepg-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .coursepg-course-card:hover,
  .coursepg-method-card:hover {
    transform: none;
  }

  .coursepg-card-actions {
    grid-template-columns: 1fr;
  }

  .coursepg-card-link {
    text-align: center;
  }

  .coursepg-card-image,
  .coursepg-card-image img {
    min-height: 220px;
    height: 220px;
  }
}

@media (max-width: 420px) {
  .coursepg-hero-content h1 {
    font-size: 28px;
  }

  .coursepg-hero-actions .btn-main,
  .coursepg-hero-actions .coursepg-outline-btn,
  .coursepg-cta-actions .btn-main,
  .coursepg-cta-actions .btn-white,
  .coursepg-test-actions .btn-main,
  .coursepg-test-actions .btn-white,
  .coursepg-concession-actions .btn-main,
  .coursepg-concession-actions .btn-white {
    font-size: 10.5px;
    padding: 9px 6px;
  }

  .coursepg-course-card,
  .coursepg-join-card,
  .coursepg-subject-intro,
  .coursepg-subject-card,
  .coursepg-method-card,
  .coursepg-guidance-content,
  .coursepg-guidance-dashboard,
  .coursepg-test-grid div,
  .coursepg-concession-card,
  .coursepg-cta {
    padding: 18px;
    border-radius: 22px;
  }
}

































/* =========================================================
   RESOURCES PAGE - ULTRA PRO PREMIUM
========================================================= */

.resx-page {
  position: relative;
  overflow: hidden;
  color: #07122d;
  background:
    radial-gradient(circle at 6% 4%, rgba(212, 13, 31, .10), transparent 28%),
    radial-gradient(circle at 94% 7%, rgba(7, 27, 77, .12), transparent 32%),
    radial-gradient(circle at 50% 98%, rgba(212, 13, 31, .06), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f7f9ff 46%, #eef3fb 100%);
}

.resx-page * {
  box-sizing: border-box;
}

.resx-page .container {
  position: relative;
  z-index: 2;
}

/* HERO */
.resx-hero {
  position: relative;
  overflow: hidden;
  padding: 28px 0 76px;
}

.resx-bg-grid,
.resx-dark-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7, 27, 77, .032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .032) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.resx-dark-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  opacity: .65;
}

.resx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(34px);
  pointer-events: none;
}

.resx-orb-1 {
  width: 350px;
  height: 350px;
  left: -160px;
  top: 40px;
  background: rgba(212, 13, 31, .14);
}

.resx-orb-2 {
  width: 420px;
  height: 420px;
  right: -190px;
  bottom: 30px;
  background: rgba(7, 27, 77, .12);
}

.resx-orb-3 {
  width: 260px;
  height: 260px;
  right: 22%;
  top: 70px;
  background: rgba(212, 13, 31, .09);
}

/* Breadcrumb */
.resx-breadcrumb {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 8% 10%, rgba(212, 13, 31, .08), transparent 32%),
    rgba(255, 255, 255, .86);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 16px 44px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.resx-breadcrumb a,
.resx-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 850;
  text-decoration: none;
}

.resx-breadcrumb span {
  color: #071b4d;
  font-weight: 950;
}

.resx-breadcrumb i {
  color: var(--accent-red, #d40d1f);
  font-size: 12px;
}

/* Hero card */
.resx-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background:
    radial-gradient(circle at 7% 9%, rgba(212, 13, 31, .34), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(255, 255, 255, .16), transparent 26%),
    radial-gradient(circle at 55% 100%, rgba(88, 28, 135, .20), transparent 34%),
    linear-gradient(135deg, #000817 0%, #061844 48%, #091f61 100%);
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow:
    0 44px 130px rgba(0, 11, 38, .32),
    0 0 0 1px rgba(255, 255, 255, .04),
    inset 0 1px 0 rgba(255, 255, 255, .16);
}

.resx-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .72;
  background-image:
    linear-gradient(rgba(255, 255, 255, .048) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .048) 1px, transparent 1px),
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .12) 0 1px, transparent 2px);
  background-size: 38px 38px, 38px 38px, 26px 26px;
  pointer-events: none;
}

.resx-hero-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 255, 255, .10), transparent 58%);
  transform: rotate(12deg);
  animation: resxShineMove 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes resxShineMove {
  from { transform: translateX(-8%) rotate(12deg); }
  to { transform: translateX(8%) rotate(12deg); }
}

/* Hero content */
.resx-hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  padding: 54px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.resx-kicker {
  width: fit-content;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 255, 255, .18), transparent 30%),
    rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18);
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 18px;
}

.resx-hero-content h1 {
  color: #ffffff;
  max-width: 830px;
  font-size: clamp(31px, 5vw, 42px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2px;
  margin: 0 0 16px;
  text-shadow: 0 18px 48px rgba(0, 0, 0, .22);
}

.resx-hero-content h1 span {
  display: block;
  background: linear-gradient(90deg, #ffd4d8, #ffffff 48%, #ffb8c0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.resx-hero-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 18px;
}

.resx-alert-note {
  max-width: 760px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 15px;
  margin-bottom: 18px;
  border-radius: 20px;
  color: rgba(255,255,255,.84);
  background: rgba(212, 13, 31, .18);
  border: 1px solid rgba(255,255,255,.14);
}

.resx-alert-note i {
  color: #ffccd1;
  margin-top: 3px;
}

.resx-alert-note span {
  font-size: 12.5px;
  line-height: 1.55;
  font-weight: 800;
}

.resx-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.resx-hero-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .86);
  background:
    linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
  font-size: 12px;
  font-weight: 850;
}

.resx-hero-tags i {
  color: #ffccd1;
}

/* Buttons */
.resx-hero-actions,
.resx-cta-actions,
.resx-update-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  max-width: 410px;
}

.resx-hero-actions .btn-main,
.resx-hero-actions .resx-outline-btn,
.resx-cta-actions .btn-main,
.resx-cta-actions .btn-white,
.resx-update-actions .btn-main,
.resx-update-actions .btn-white {
  width: 100%;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 950;
  white-space: nowrap;
}

.resx-outline-btn {
  color: #ffffff;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .16);
  text-decoration: none;
}

/* Hero visual */
.resx-hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  min-height: 560px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.resx-visual-card {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}

.resx-visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.resx-visual-head div {
  display: flex;
  gap: 7px;
}

.resx-visual-head span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.34);
}

.resx-visual-head strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.resx-visual-body {
  min-height: 390px;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 28%, rgba(212,13,31,.26), transparent 36%),
    linear-gradient(145deg, rgba(0,8,23,.92), rgba(7,27,77,.82));
}

.resx-resource-main {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 18px;
}

.resx-resource-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 30px;
}

.resx-resource-main span {
  color: #ffccd1;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.resx-resource-main h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  margin: 4px 0 4px;
}

.resx-resource-main p {
  color: rgba(255,255,255,.68);
  font-size: 11.5px;
  font-weight: 800;
  margin: 0;
}

.resx-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.resx-mini-grid div {
  padding: 15px;
  border-radius: 20px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
}

.resx-mini-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 12px;
}

.resx-mini-grid strong {
  display: block;
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 950;
}

.resx-mini-grid span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

.resx-hero-info-row {
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.resx-info-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
}

.resx-info-card i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
}

.resx-info-card strong {
  display: block;
  color: #ffffff;
  font-size: 11.5px;
  line-height: 1.25;
  font-weight: 950;
}

.resx-info-card span {
  color: rgba(255,255,255,.66);
  font-size: 10.5px;
  font-weight: 750;
}

/* Section Head */
.resx-section-head {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.resx-section-head h2,
.resx-update-content h2 {
  color: #071b4d;
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.4px;
  margin: 16px 0 12px;
}

.resx-section-head p,
.resx-update-content p {
  color: rgba(7, 27, 77, .66);
  font-size: 14.5px;
  line-height: 1.72;
  font-weight: 650;
}

.resx-section-head.light h2 {
  color: #ffffff;
}

.resx-section-head.light p {
  color: rgba(255,255,255,.72);
}

/* Categories */
.resx-categories,
.resx-list-section,
.resx-tips,
.resx-cta-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(212, 13, 31, .08), transparent 30%),
    #f8f9fc;
}

.resx-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.resx-category-card,
.resx-resource-card,
.resx-tip-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 13, 31, .07), transparent 30%),
    #ffffff;
  border: 1px solid rgba(7,27,77,.09);
  box-shadow:
    0 20px 58px rgba(7,27,77,.09),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: .28s ease;
}

.resx-category-card {
  min-height: 220px;
  padding: 24px;
  text-decoration: none;
}

.resx-category-card:hover,
.resx-resource-card:hover,
.resx-tip-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212,13,31,.18);
}

.resx-category-card > i,
.resx-tip-card > i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  margin-bottom: 16px;
  box-shadow: 0 18px 40px rgba(212,13,31,.26);
}

.resx-category-card h3,
.resx-tip-card h3 {
  color: #071b4d;
  font-size: 17px;
  font-weight: 950;
  margin-bottom: 8px;
}

.resx-category-card p,
.resx-tip-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin: 0;
}

.resx-category-card.featured,
.resx-resource-card.featured,
.resx-tip-card.active {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .27), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.11), transparent 28%),
    linear-gradient(145deg, #071b4d, #000b26);
}

.resx-category-card.featured h3,
.resx-category-card.featured p,
.resx-resource-card.featured h3,
.resx-resource-card.featured p,
.resx-resource-card.featured .resx-resource-meta span,
.resx-tip-card.active h3,
.resx-tip-card.active p {
  color: #ffffff;
}

.resx-category-card.featured p,
.resx-resource-card.featured p,
.resx-tip-card.active p {
  color: rgba(255,255,255,.72);
}

/* Filters */
.resx-filter-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 8px;
  margin: 0 auto 28px;
}

.resx-filter {
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(7,27,77,.10);
  background: #ffffff;
  color: rgba(7,27,77,.72);
  font-size: 12px;
  font-weight: 950;
  cursor: pointer;
  transition: .25s ease;
  box-shadow: 0 10px 26px rgba(7,27,77,.06);
}

.resx-filter:hover,
.resx-filter.active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  border-color: rgba(212,13,31,.22);
  box-shadow: 0 16px 36px rgba(212,13,31,.22);
}

/* Resource cards */
.resx-resource-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.resx-resource-card {
  min-height: 285px;
  padding: 24px;
}

.resx-resource-card.is-hidden {
  display: none;
}

.resx-resource-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.resx-resource-icon-sm {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 19px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 18px 40px rgba(212,13,31,.24);
}

.resx-resource-top > span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--accent-red, #d40d1f);
  background: rgba(212,13,31,.08);
  font-size: 10.5px;
  font-weight: 950;
  text-transform: uppercase;
}

.resx-resource-card.featured .resx-resource-top > span {
  color: #ffccd1;
  background: rgba(255,255,255,.10);
}

.resx-resource-card h3 {
  color: #071b4d;
  font-size: 18px;
  line-height: 1.32;
  font-weight: 950;
  margin-bottom: 10px;
}

.resx-resource-card p {
  color: rgba(7,27,77,.62);
  font-size: 12.8px;
  line-height: 1.62;
  font-weight: 650;
  margin-bottom: 16px;
}

.resx-resource-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.resx-resource-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(7,27,77,.68);
  background: #f8f9fc;
  border: 1px solid rgba(7,27,77,.07);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 11px;
  font-weight: 850;
}

.resx-resource-meta i {
  color: var(--accent-red, #d40d1f);
}

.resx-download-btn {
  width: 100%;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  box-shadow: 0 16px 36px rgba(212,13,31,.22);
}

/* Updates Dark Section */
.resx-updates {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 13, 31, .30), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(135deg, #000817 0%, #071b4d 54%, #081d5c 100%);
}

.resx-update-content {
  position: relative;
  z-index: 2;
}

.resx-update-content h2 {
  color: #ffffff;
}

.resx-update-content p {
  color: rgba(255,255,255,.72);
}

.resx-update-note {
  display: flex;
  gap: 12px;
  padding: 17px;
  border-radius: 22px;
  margin: 22px 0;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.13);
}

.resx-update-note i {
  color: #ffccd1;
  font-size: 26px;
}

.resx-update-note span {
  color: rgba(255,255,255,.80);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.resx-timeline {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.resx-timeline-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(18px);
}

.resx-timeline-item > span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-red, #d40d1f), var(--accent-red-dark, #a60717));
  font-size: 15px;
  font-weight: 950;
}

.resx-timeline-item strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  margin-bottom: 6px;
}

.resx-timeline-item p {
  color: rgba(255,255,255,.72);
  font-size: 12.8px;
  line-height: 1.62;
  margin: 0;
}

/* Tips */
.resx-tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.resx-tip-card {
  min-height: 230px;
  padding: 24px;
}

.resx-tip-card > span {
  position: absolute;
  right: 20px;
  top: 16px;
  color: rgba(7,27,77,.07);
  font-size: 34px;
  font-weight: 950;
}

.resx-tip-card.active > span {
  color: rgba(255,255,255,.13);
}

/* CTA */
.resx-cta {
  position: relative;
  overflow: hidden;
  padding: 38px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .32), transparent 30%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(145deg, #071b4d, #000817);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow:
    0 34px 98px rgba(7,27,77,.25),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.resx-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .7;
}

.resx-cta > * {
  position: relative;
  z-index: 2;
}

.resx-cta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffccd1;
  font-size: 12px;
  font-weight: 950;
  margin-bottom: 13px;
}

.resx-cta h2 {
  color: #ffffff;
  font-size: clamp(28px, 4vw, 37px);
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 12px;
}

.resx-cta p {
  color: rgba(255,255,255,.72);
  max-width: 760px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Responsive */
@media (max-width: 1199px) {
  .resx-hero-content {
    padding: 42px;
  }

  .resx-category-grid,
  .resx-tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resx-resource-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resx-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .resx-cta-actions {
    width: 100%;
  }
}

@media (max-width: 991px) {
  .resx-hero {
    padding-bottom: 52px;
  }

  .resx-hero-card {
    border-radius: 32px;
  }

  .resx-hero-visual {
    min-height: auto;
    padding: 0 18px 28px;
  }

  .resx-visual-card,
  .resx-hero-info-row {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .resx-hero {
    padding-top: 16px;
  }

  .resx-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 18px;
    padding: 11px 14px;
  }

  .resx-hero-card {
    border-radius: 24px;
  }

  .resx-hero-content {
    padding: 24px 17px 22px;
  }

  .resx-hero-content h1 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .resx-hero-content p,
  .resx-section-head p,
  .resx-update-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .resx-hero-actions,
  .resx-cta-actions,
  .resx-update-actions {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    gap: 8px;
  }

  .resx-hero-actions .btn-main,
  .resx-hero-actions .resx-outline-btn,
  .resx-cta-actions .btn-main,
  .resx-cta-actions .btn-white,
  .resx-update-actions .btn-main,
  .resx-update-actions .btn-white {
    min-height: 42px;
    padding: 10px 7px;
    font-size: 11px;
    gap: 5px;
  }

  .resx-visual-body {
    min-height: auto;
    padding: 18px;
  }

  .resx-mini-grid,
  .resx-hero-info-row,
  .resx-category-grid,
  .resx-resource-grid,
  .resx-tips-grid {
    grid-template-columns: 1fr;
  }

  .resx-section-head {
    text-align: left;
    margin-bottom: 24px;
  }

  .resx-section-head h2,
  .resx-update-content h2 {
    font-size: 31px;
    letter-spacing: -1px;
  }

  .resx-category-card,
  .resx-resource-card,
  .resx-tip-card,
  .resx-cta {
    padding: 22px;
    border-radius: 24px;
  }

  .resx-category-card:hover,
  .resx-resource-card:hover,
  .resx-tip-card:hover {
    transform: none;
  }

  .resx-filter-wrap {
    justify-content: flex-start;
  }

  .resx-filter {
    font-size: 11px;
    min-height: 39px;
    padding: 9px 12px;
  }

  .resx-timeline-item {
    grid-template-columns: 46px 1fr;
    padding: 16px;
    border-radius: 22px;
  }

  .resx-timeline-item > span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }
}

@media (max-width: 420px) {
  .resx-hero-content h1 {
    font-size: 28px;
  }

  .resx-hero-actions .btn-main,
  .resx-hero-actions .resx-outline-btn,
  .resx-cta-actions .btn-main,
  .resx-cta-actions .btn-white,
  .resx-update-actions .btn-main,
  .resx-update-actions .btn-white {
    font-size: 10.5px;
    padding: 9px 6px;
  }

  .resx-category-card,
  .resx-resource-card,
  .resx-tip-card,
  .resx-cta {
    padding: 18px;
    border-radius: 22px;
  }
}

/* =========================================================
   RESOURCES CARD LINE/SHAPE + BUTTON FINAL FIX
========================================================= */

.resx-resource-card {
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}

/* card ke andar kisi bhi unwanted line/shape ko hide karega */
.resx-resource-card::before,
.resx-resource-card::after {
  display: none !important;
  content: none !important;
}

/* agar global line/shape class card ke andar aa rahi hai */
.resx-resource-card .line,
.resx-resource-card .shape,
.resx-resource-card .hero-line,
.resx-resource-card .connector-line,
.resx-resource-card .floating-line,
.resx-resource-card .curve-line,
.resx-resource-card .green-line {
  display: none !important;
}

/* featured card ka clean premium dark bg */
.resx-resource-card.featured {
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .25), transparent 30%),
    radial-gradient(circle at 12% 90%, rgba(255,255,255,.10), transparent 28%),
    linear-gradient(145deg, #071b4d 0%, #000b26 100%) !important;
}

/* content ko upar rakho */
.resx-resource-card > * {
  position: relative !important;
  z-index: 2 !important;
}

/* featured card text readable */
.resx-resource-card.featured h3,
.resx-resource-card.featured p {
  color: #ffffff !important;
}

.resx-resource-card.featured p {
  color: rgba(255,255,255,.76) !important;
}

/* meta pill buttons fix */
.resx-resource-card.featured .resx-resource-meta span {
  color: rgba(255,255,255,.88) !important;
  background: rgba(255,255,255,.12) !important;
  border-color: rgba(255,255,255,.16) !important;
}

.resx-resource-card.featured .resx-resource-meta i {
  color: #ffccd1 !important;
}

/* PDF / Update Ready pill better */
.resx-resource-meta span {
  color: rgba(7, 27, 77, .76) !important;
  background: #ffffff !important;
  border: 1px solid rgba(7,27,77,.08) !important;
}

/* Download button always red */
.resx-download-btn {
  color: #ffffff !important;
  background: linear-gradient(135deg, #D40D1F, #A60816) !important;
  border: 0 !important;
  box-shadow: 0 16px 36px rgba(212,13,31,.28) !important;
}

.resx-download-btn:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}



/* changes css home page */
/* =========================================================
   SCHOLARSHIP CTA HIGHLIGHT CARD FINAL FIX
========================================================= */
/* =========================================================
   SCHOLARSHIP CTA FINAL FIX
========================================================= */

.scholarship-badge {
  max-width: 100%;
  text-align: center;
  line-height: 1.35;
}

.scholarship-cta-content h2 {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.scholarship-cta-content p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* left side 3 cards */
.scholarship-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
  margin-top: 28px;
  margin-bottom: 30px;
}

.scholarship-highlight-card {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .08), transparent 35%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .10);
  box-shadow: 0 16px 42px rgba(7, 27, 77, .08);
  overflow: hidden;
}

.scholarship-highlight-card > span {
  width: 46px;
  height: 46px;
  min-width: 46px;
  flex: 0 0 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, #D40D1F, #A60816);
  box-shadow: 0 14px 30px rgba(212, 13, 31, .28);
}

.scholarship-highlight-card > span i {
  font-size: 18px;
  line-height: 1;
}

.scholarship-highlight-card div {
  min-width: 0;
}

.scholarship-highlight-card strong {
  display: block;
  color: #071b4d;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: .1px;
}

.scholarship-highlight-card small {
  display: none !important;
}

/* right card text fix */
.scholarship-card-main .scholarship-percent span {
  text-transform: none;
}

.scholarship-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.scholarship-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
}

.scholarship-list li i {
  color: #ffccd1;
  font-size: 16px;
  flex: 0 0 auto;
}

/* buttons spacing */
.scholarship-actions {
  margin-top: 8px;
}

/* laptop/tablet */
@media (max-width: 991px) {
  .scholarship-highlights {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .scholarship-highlight-card {
    min-height: 78px;
  }
}

/* mobile */
@media (max-width: 575px) {
  .scholarship-highlights {
    gap: 12px;
    margin-top: 22px;
    margin-bottom: 24px;
  }

  .scholarship-highlight-card {
    padding: 15px;
    border-radius: 18px;
  }

  .scholarship-highlight-card > span {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  .scholarship-highlight-card strong {
    font-size: 15px;
    line-height: 1.22;
  }

  .scholarship-list li {
    font-size: 13px;
  }
}
/* =========================================================
   SCHOLARSHIP FLOATING BADGE POSITION FINAL FIX
========================================================= */

.scholarship-cta-visual {
  position: relative;
  padding-top: 34px;
  padding-bottom: 42px;
}

/* main dark card ko center rakho */
.scholarship-card-main {
  position: relative;
  z-index: 2;
}

/* dono floating badge common */
.scholarship-floating-badge {
  position: absolute;
  z-index: 5;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .96);
  color: #071b4d;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 18px 44px rgba(7, 27, 77, .16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.scholarship-floating-badge i {
  color: #D40D1F;
  font-size: 14px;
}

/* upper badge ko aur upar karo */
.scholarship-floating-badge-1 {
  top: 2px;
  left: -46px;
}

/* niche wala badge aur niche karo */
.scholarship-floating-badge-2 {
  right: -44px;
  bottom: 4px;
}

/* card ke andar text clean */
.scholarship-card-top h3 {
  margin: 0 0 5px;
}

.scholarship-card-top p {
  margin: 0;
}

/* tablet fix */
@media (max-width: 991px) {
  .scholarship-cta-visual {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .scholarship-floating-badge-1 {
    top: 8px;
    left: 18px;
  }

  .scholarship-floating-badge-2 {
    right: 18px;
    bottom: 8px;
  }
}

/* mobile fix */
@media (max-width: 575px) {
  .scholarship-cta-visual {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .scholarship-floating-badge {
    min-height: 38px;
    padding: 9px 13px;
    font-size: 11.5px;
  }

  .scholarship-floating-badge-1 {
    top: 8px;
    left: 12px;
  }

  .scholarship-floating-badge-2 {
    right: 12px;
    bottom: 10px;
  }
}



/* =========================================================
   MEDIA BOTTOM BOX TEXT FINAL FIX
========================================================= */

.media-bottom-box h3 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1.2px;
  margin: 14px 0 12px;
}

.media-bottom-box p {
  max-width: 820px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0;
}

.media-bottom-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffccd1;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 12px;
  font-weight: 950;
}

.media-bottom-box .btn-main {
  white-space: nowrap;
}

@media (max-width: 767px) {
  .media-bottom-box h3 {
    font-size: 28px;
    line-height: 1.16;
  }

  .media-bottom-box p {
    font-size: 14px;
    line-height: 1.65;
  }
}

/* =========================================================
   RESULTS PREVIEW FINAL IMPROVEMENT
========================================================= */

.results-preview-title h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  color: #071b4d;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1.3px;
}

.results-preview-title p {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(7, 27, 77, .66);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
}

.results-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.result-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .08), transparent 32%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 20px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .28s ease;
}

.result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .20);
  box-shadow:
    0 28px 70px rgba(7, 27, 77, .13),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.result-number {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(212, 13, 31, .10);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.result-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #D40D1F, #A60816);
  box-shadow: 0 18px 42px rgba(212, 13, 31, .28);
}

.result-icon i {
  font-size: 24px;
  line-height: 1;
}

.result-content h3 {
  max-width: 280px;
  color: #071b4d;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  margin: 0 0 10px;
}

.result-content p {
  color: rgba(7, 27, 77, .64);
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 650;
  margin: 0;
}

.results-preview-action {
  margin-top: 34px;
  text-align: center;
}

/* 4th and 5th card center align on desktop */
.results-preview-grid .result-card:nth-child(4) {
  grid-column: 1 / span 1;
}

.results-preview-grid .result-card:nth-child(5) {
  grid-column: 2 / span 1;
}

/* tablet */
@media (max-width: 1199px) {
  .results-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-preview-grid .result-card:nth-child(4),
  .results-preview-grid .result-card:nth-child(5) {
    grid-column: auto;
  }
}

/* mobile */
@media (max-width: 767px) {
  .results-preview-title h2 {
    font-size: 30px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .results-preview-title p {
    font-size: 14px;
    line-height: 1.65;
  }

  .results-preview-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .result-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .result-card:hover {
    transform: none;
  }

  .result-number {
    font-size: 34px;
    right: 18px;
    top: 16px;
  }

  .result-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .result-content h3 {
    font-size: 17px;
  }

  .result-content p {
    font-size: 13px;
  }
}

/* =========================================================
   AI DASHBOARD SECTION FINAL CONTENT FIX
========================================================= */

.ai-dashboard-left h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(30px, 4.5vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 14px;
}

.ai-dashboard-left p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
}

.ai-feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 28px;
}

.ai-feature-list > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .10);
}

.ai-feature-list i {
  color: #ffccd1;
  font-size: 17px;
  flex: 0 0 auto;
}

.ai-feature-list span {
  color: rgba(255, 255, 255, .90);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 850;
}

.subject-item {
  align-items: flex-start !important;
}

.subject-item > div {
  min-width: 0;
}

.subject-item span {
  display: block;
  color: #ffffff;
  font-size: 13.5px;
  line-height: 1.25;
  font-weight: 950;
  margin-bottom: 4px;
}

.subject-item small {
  display: block;
  color: rgba(255, 255, 255, .70);
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 750;
  margin-bottom: 4px;
}

.subject-item em {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  color: #ffccd1;
  font-style: normal;
  font-size: 10.5px;
  line-height: 1.2;
  font-weight: 850;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(212, 13, 31, .14);
  border: 1px solid rgba(255, 255, 255, .10);
}

.subject-item strong {
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.dashboard-grid .dash-mini-card p {
  min-height: 34px;
}

@media (max-width: 767px) {
  .ai-dashboard-left h2 {
    font-size: 30px;
    letter-spacing: -1px;
  }

  .ai-dashboard-left p {
    font-size: 14px;
    line-height: 1.65;
  }

  .ai-feature-list > div {
    padding: 12px 13px;
  }

  .ai-feature-list span {
    font-size: 13px;
  }

  .subject-item span {
    font-size: 13px;
  }

  .subject-item small {
    font-size: 11px;
  }
}



/* =========================================================
   AI LEARNING ECOSYSTEM — DARK PREMIUM REFERENCE DESIGN
========================================================= */

.kal-section {
  --kal-navy: #020b29;
  --kal-dark: #01061c;
  --kal-red: #ed1937;
  --kal-blue: #2377ef;
  --kal-purple: #b445e6;
  --kal-green: #31c85a;
  --kal-cyan: #27c8df;
  --kal-orange: #f7951d;
  --kal-pink: #e94cae;
  --kal-yellow: #eab329;

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 76px 0 46px;
  color: #ffffff;

  background:
    radial-gradient(circle at 5% 8%, rgba(237, 25, 55, .14), transparent 25%),
    radial-gradient(circle at 95% 10%, rgba(35, 119, 239, .13), transparent 27%),
    linear-gradient(180deg, #05133a 0%, #010820 100%);
}

.kal-bg-grid {
  position: absolute;
  inset: 0;
  z-index: -4;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(255, 255, 255, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .022) 1px, transparent 1px);

  background-size: 44px 44px;
}

.kal-bg-glow {
  position: absolute;
  z-index: -3;
  border-radius: 50%;
  filter: blur(55px);
  pointer-events: none;
}

.kal-bg-glow-one {
  width: 390px;
  height: 390px;
  top: 40px;
  left: -230px;
  background: rgba(237, 25, 55, .25);
}

.kal-bg-glow-two {
  width: 430px;
  height: 430px;
  right: -240px;
  bottom: 80px;
  background: rgba(35, 119, 239, .20);
}

.kal-section .container {
  position: relative;
  z-index: 2;
}

/* =========================================================
   MAIN PANEL
========================================================= */

.kal-main-panel {
  position: relative;
  overflow: hidden;
  padding: 38px 34px 28px;
  border-radius: 27px;

  background:
    radial-gradient(circle at 5% 10%, rgba(237, 25, 55, .10), transparent 27%),
    radial-gradient(circle at 95% 8%, rgba(35, 119, 239, .10), transparent 28%),
    linear-gradient(145deg, rgba(7, 24, 67, .97), rgba(1, 8, 32, .98));

  border: 1px solid rgba(72, 137, 255, .70);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, .30),
    inset 0 1px 0 rgba(255, 255, 255, .06);
}

.kal-main-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  background:
    linear-gradient(90deg, rgba(237, 25, 55, .75), transparent 20%) top left / 45% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(39, 200, 223, .75)) top right / 45% 1px no-repeat,
    linear-gradient(180deg, rgba(237, 25, 55, .70), transparent 25%) top left / 1px 55% no-repeat,
    linear-gradient(180deg, rgba(39, 200, 223, .70), transparent 25%) top right / 1px 55% no-repeat;
}

.kal-panel-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .45;

  background-image:
    linear-gradient(rgba(255, 255, 255, .018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .018) 1px, transparent 1px);

  background-size: 36px 36px;
}

.kal-dot-pattern {
  position: absolute;
  width: 125px;
  height: 95px;
  opacity: .25;
  pointer-events: none;

  background-image:
    radial-gradient(circle, rgba(64, 135, 255, .9) 2px, transparent 2.5px);

  background-size: 18px 18px;
}

.kal-dot-left {
  top: 10px;
  left: 10px;
}

.kal-dot-right {
  top: 10px;
  right: 10px;
}

.kal-main-panel > *:not(.kal-panel-grid, .kal-dot-pattern) {
  position: relative;
  z-index: 2;
}

/* =========================================================
   BADGE
========================================================= */

.kal-top-badge-wrap {
  text-align: center;
}

.kal-top-badge {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 9px 18px;
  border-radius: 999px;
  color: #ffffff;

  background:
    linear-gradient(135deg, rgba(237, 25, 55, .15), rgba(255, 255, 255, .04));

  border: 1px solid rgba(237, 25, 55, .55);

  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.kal-top-badge i {
  color: #ff3652;
  font-size: 15px;
}

/* =========================================================
   HEADING
========================================================= */

.kal-heading-area {
  max-width: 920px;
  display: grid;
  grid-template-columns: 145px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  margin: 20px auto 17px;
}

.kal-ai-symbol {
  position: relative;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  margin: 0 auto;

  border-radius: 23px;

  color: #ffffff;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .23), transparent 30%),
    linear-gradient(145deg, #9d28dd, #233fae);

  border: 2px solid #a541ef;

  box-shadow:
    0 0 0 10px rgba(170, 59, 230, .08),
    0 0 40px rgba(165, 65, 239, .42);

  font-size: 54px;
  font-weight: 950;
}

.kal-ai-symbol::before,
.kal-ai-symbol::after {
  content: "";
  position: absolute;
  inset: -18px;
  opacity: .55;

  background:
    repeating-linear-gradient(
      90deg,
      transparent 0 12px,
      #b048e7 12px 15px,
      transparent 15px 24px
    );

  clip-path: polygon(
    0 42%,
    14% 42%,
    14% 0,
    86% 0,
    86% 42%,
    100% 42%,
    100% 58%,
    86% 58%,
    86% 100%,
    14% 100%,
    14% 58%,
    0 58%
  );

  pointer-events: none;
}

.kal-heading-content h2 {
  margin: 0 0 14px;
  color: #ffffff;

  font-size: clamp(34px, 4vw, 40px);
  line-height: 1.04;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.kal-heading-content h2 span {
  color: var(--kal-red);
}

.kal-heading-content p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, .74);

  font-size: 14px;
  line-height: 1.65;
  font-weight: 600;
}

/* =========================================================
   TRUST LINE
========================================================= */

.kal-trust-line {
  max-width: 650px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin: 18px auto 20px;
  padding: 10px 17px;
  border-radius: 999px;

  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .17);
}

.kal-trust-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;

  color: #ffffff;
  background: linear-gradient(135deg, #ef1d3b, #a9071d);
}

.kal-trust-line p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 750;
}

.kal-trust-line strong {
  color: var(--kal-red);
}

/* =========================================================
   FEATURE GRID
========================================================= */

.kal-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.kal-feature-card {
  --kal-feature-color: #ed1937;
  --kal-feature-soft: rgba(237, 25, 55, .13);

  position: relative;
  min-width: 0;
  min-height: 145px;
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  padding: 18px 15px;
  border-radius: 15px;

  background:
    radial-gradient(circle at 8% 10%, var(--kal-feature-soft), transparent 30%),
    rgba(255, 255, 255, .032);

  border: 1px solid rgba(255, 255, 255, .13);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .04);

  transition: .25s ease;
}

.kal-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--kal-feature-color);

  box-shadow:
    0 20px 45px rgba(0, 0, 0, .22),
    0 0 22px var(--kal-feature-soft);
}

.kal-feature-red {
  --kal-feature-color: #ef263f;
  --kal-feature-soft: rgba(239, 38, 63, .15);
}

.kal-feature-orange {
  --kal-feature-color: #f49320;
  --kal-feature-soft: rgba(244, 147, 32, .14);
}

.kal-feature-purple {
  --kal-feature-color: #bd48e7;
  --kal-feature-soft: rgba(189, 72, 231, .14);
}

.kal-feature-blue {
  --kal-feature-color: #3385f5;
  --kal-feature-soft: rgba(51, 133, 245, .15);
}

.kal-feature-green {
  --kal-feature-color: #31ca5a;
  --kal-feature-soft: rgba(49, 202, 90, .14);
}

.kal-feature-cyan {
  --kal-feature-color: #29c9df;
  --kal-feature-soft: rgba(41, 201, 223, .14);
}

.kal-feature-pink {
  --kal-feature-color: #ec4bad;
  --kal-feature-soft: rgba(236, 75, 173, .14);
}

.kal-feature-yellow {
  --kal-feature-color: #e7b228;
  --kal-feature-soft: rgba(231, 178, 40, .14);
}

.kal-feature-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--kal-feature-color);
  background: rgba(4, 14, 48, .85);
  border: 1px solid var(--kal-feature-color);

  box-shadow:
    0 0 0 6px var(--kal-feature-soft);

  font-size: 19px;
}

.kal-feature-card h3 {
  margin: 3px 0 6px;
  color: #ffffff;

  font-size: 12.5px;
  line-height: 1.3;
  font-weight: 900;
}

.kal-feature-line {
  width: 23px;
  height: 2px;
  display: block;
  margin-bottom: 8px;
  border-radius: 999px;
  background: var(--kal-feature-color);
}

.kal-feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, .66);

  font-size: 9.5px;
  line-height: 1.5;
  font-weight: 600;
}

/* =========================================================
   BENEFIT GRID
========================================================= */

.kal-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 13px;
  margin-top: 13px;
}

.kal-benefit-card {
  --kal-benefit-color: #ef263f;
  --kal-benefit-soft: rgba(239, 38, 63, .13);

  position: relative;
  min-width: 0;
  min-height: 130px;
  overflow: hidden;

  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 14px;
  align-items: start;

  padding: 18px;
  border-radius: 16px;

  background:
    radial-gradient(circle at 5% 10%, var(--kal-benefit-soft), transparent 32%),
    rgba(255, 255, 255, .034);

  border: 1px solid rgba(255, 255, 255, .13);
}

.kal-benefit-red {
  --kal-benefit-color: #ef263f;
  --kal-benefit-soft: rgba(239, 38, 63, .15);
}

.kal-benefit-blue {
  --kal-benefit-color: #3282ef;
  --kal-benefit-soft: rgba(50, 130, 239, .14);
}

.kal-benefit-green {
  --kal-benefit-color: #37cc5d;
  --kal-benefit-soft: rgba(55, 204, 93, .14);
}

.kal-benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;

  color: var(--kal-benefit-color);
  background: rgba(3, 13, 44, .85);
  border: 1px solid var(--kal-benefit-color);

  box-shadow:
    0 0 0 7px var(--kal-benefit-soft);

  font-size: 22px;
}

.kal-benefit-card h3 {
  margin: 4px 0 7px;
  color: #ffffff;

  font-size: 14px;
  line-height: 1.25;
  font-weight: 900;
}

.kal-benefit-line {
  width: 25px;
  height: 2px;
  display: block;
  margin-bottom: 8px;
  background: var(--kal-benefit-color);
}

.kal-benefit-card p {
  max-width: 220px;
  margin: 0;
  color: rgba(255, 255, 255, .65);

  font-size: 9.5px;
  line-height: 1.5;
  font-weight: 600;
}

.kal-benefit-watermark {
  position: absolute;
  right: 12px;
  bottom: -5px;

  color: var(--kal-benefit-color);
  opacity: .11;

  font-size: 76px;
}

/* =========================================================
   MAIN BUTTON
========================================================= */

.kal-main-action {
  margin-top: 18px;
  text-align: center;
}

.kal-primary-btn {
  min-width: 310px;
  min-height: 51px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  padding: 13px 24px;
  border-radius: 999px;

  color: #ffffff;
  background: linear-gradient(135deg, #f02240, #c60721);

  box-shadow:
    0 17px 42px rgba(237, 25, 55, .32);

  text-decoration: none;
  font-size: 13px;
  font-weight: 950;

  transition: .25s ease;
}

.kal-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* =========================================================
   PLATFORM PANEL
========================================================= */

.kal-platform-panel {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: 370px;

  margin-top: 20px;
  border-radius: 26px;

  background:
    radial-gradient(circle at 86% 25%, rgba(36, 112, 255, .22), transparent 34%),
    linear-gradient(145deg, #061640, #010922);

  border: 1px solid rgba(55, 126, 255, .68);

  box-shadow:
    0 32px 80px rgba(0, 0, 0, .28);
}

.kal-platform-content {
  position: relative;
  z-index: 3;
  padding: 40px 25px 35px 43px;
}

.kal-platform-badge {
  display: inline-flex;
  align-items: center;

  margin-bottom: 15px;
  padding: 8px 15px;

  border-radius: 999px;

  color: #ff7789;
  background: rgba(237, 25, 55, .10);
  border: 1px solid rgba(237, 25, 55, .55);

  font-size: 11px;
  line-height: 1;
  font-weight: 900;
}

.kal-platform-content h2 {
  margin: 0 0 18px;
  color: #ffffff;

  font-size: clamp(31px, 4vw, 38px);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -1.5px;
}

.kal-platform-list {
  display: grid;
  gap: 9px;
  margin: 0 0 21px;
  padding: 0;
  list-style: none;
}

.kal-platform-list li {
  display: flex;
  align-items: center;
  gap: 10px;

  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 700;
}

.kal-platform-list i {
  color: #f12b46;
  font-size: 16px;
}

.kal-launching-pill {
  min-width: 210px;
  min-height: 45px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;

  padding: 11px 19px;
  border-radius: 999px;

  color: #ffffff;

  background:
    linear-gradient(135deg, rgba(133, 46, 206, .74), rgba(33, 83, 182, .66));

  border: 1px solid rgba(255, 255, 255, .13);

  font-size: 12px;
  font-weight: 900;
}

.kal-platform-visual {
  position: relative;
  min-height: 370px;
  overflow: hidden;
}

.kal-platform-visual img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  display: block;
  object-fit: cover;

  opacity: .72;
  filter: saturate(1.25) contrast(1.08) hue-rotate(8deg);
}

.kal-platform-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg, #061640 0%, rgba(6, 22, 64, .56) 28%, rgba(0, 8, 35, .10) 100%),
    linear-gradient(180deg, rgba(0, 8, 35, .06), rgba(0, 8, 35, .30));

  pointer-events: none;
}

.kal-ai-core {
  position: absolute;
  left: 54%;
  top: 54%;

  width: 128px;
  height: 128px;

  display: grid;
  place-items: center;

  border-radius: 24px;

  color: #ffffff;

  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .20), transparent 30%),
    linear-gradient(145deg, rgba(39, 125, 255, .92), rgba(68, 37, 195, .94));

  border: 2px solid #37b8ff;

  box-shadow:
    0 0 0 13px rgba(45, 115, 239, .09),
    0 0 65px rgba(39, 125, 255, .78);

  font-size: 56px;
  line-height: 1;
  font-weight: 950;

  transform: translate(-50%, -50%);
}

/* =========================================================
   BOTTOM STRIP
========================================================= */

.kal-bottom-strip {
  display: grid;
  grid-template-columns: 1.2fr 1px .8fr 1px 1fr;
  align-items: center;

  margin-top: 16px;
  padding: 17px 21px;
  border-radius: 17px;

  background: rgba(255, 255, 255, .034);
  border: 1px solid rgba(255, 255, 255, .13);
}

.kal-bottom-item {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  color: #ffffff;
  text-decoration: none;
}

.kal-bottom-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;
  color: #ffffff;
  font-size: 19px;
}

.kal-bottom-purple {
  background: linear-gradient(135deg, #8d42d5, #293eae);
}

.kal-bottom-red {
  background: linear-gradient(135deg, #f02543, #ad061c);
}

.kal-bottom-item strong {
  display: block;
  color: #ffffff;

  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
}

.kal-bottom-item small {
  display: block;
  margin-top: 4px;

  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  line-height: 1.35;
  font-weight: 600;
}

.kal-bottom-divider {
  width: 1px;
  height: 43px;
  background: rgba(255, 255, 255, .13);
}

/* =========================================================
   RESPONSIVE — LAPTOP
========================================================= */

@media (max-width: 1199px) {
  .kal-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kal-feature-card {
    min-height: 130px;
  }

  .kal-heading-content h2 {
    font-size: 42px;
  }
}

/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991px) {
  .kal-heading-area {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kal-heading-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .kal-benefit-grid {
    grid-template-columns: 1fr;
  }

  .kal-platform-panel {
    grid-template-columns: 1fr;
  }

  .kal-platform-content {
    text-align: center;
    padding: 35px 25px;
  }

  .kal-platform-list {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .kal-platform-visual {
    min-height: 330px;
  }

  .kal-platform-visual img {
    min-height: 330px;
  }

  .kal-bottom-strip {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .kal-bottom-divider {
    width: 100%;
    height: 1px;
  }

  .kal-bottom-item {
    justify-content: flex-start;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767px) {
  .kal-section {
    padding: 52px 0 38px;
  }

  .kal-main-panel {
    padding: 25px 16px 21px;
    border-radius: 22px;
  }

  .kal-top-badge {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 9px;
  }

  .kal-ai-symbol {
    width: 92px;
    height: 92px;
    border-radius: 19px;
    font-size: 40px;
  }

  .kal-heading-content h2 {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .kal-heading-content p {
    font-size: 12.5px;
    line-height: 1.6;
  }

  .kal-trust-line {
    align-items: flex-start;
    border-radius: 18px;
    padding: 11px 13px;
  }

  .kal-trust-line p {
    font-size: 10.5px;
  }

  .kal-feature-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .kal-feature-card {
    min-height: 115px;
    padding: 15px;
  }

  .kal-feature-card h3 {
    font-size: 12px;
  }

  .kal-feature-card p {
    font-size: 9px;
  }

  .kal-benefit-card {
    min-height: 118px;
  }

  .kal-primary-btn {
    width: 100%;
    min-width: 0;
  }

  .kal-platform-panel {
    border-radius: 22px;
  }

  .kal-platform-content h2 {
    font-size: 30px;
  }

  .kal-platform-visual,
  .kal-platform-visual img {
    min-height: 290px;
  }

  .kal-ai-core {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    font-size: 44px;
  }

  .kal-bottom-strip {
    padding: 14px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {
  .kal-heading-content h2 {
    font-size: 27px;
  }

  .kal-trust-line {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .kal-feature-card,
  .kal-benefit-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kal-feature-icon,
  .kal-benefit-icon {
    margin: 0 auto;
  }

  .kal-feature-line,
  .kal-benefit-line {
    margin-left: auto;
    margin-right: auto;
  }

  .kal-platform-content h2 {
    font-size: 27px;
  }
}






/* =========================================================
   IMPACT STATS FINAL CLIENT CHANGES
========================================================= */

.impact-title h2 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  color: #071b4d;
  font-size: clamp(30px, 4vw, 39x);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1.3px;
}

.impact-title p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(7, 27, 77, .66);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
}

.impact-trust-line {
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 16px;
  border-radius: 999px;
  color: #d40d1f;
  background: rgba(212, 13, 31, .08);
  border: 1px solid rgba(212, 13, 31, .12);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

.impact-trust-line i {
  color: #d40d1f;
  font-size: 14px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.impact-card {
  position: relative;
  overflow: hidden;
  min-height: 165px;
  padding: 24px 20px;
  text-align: center;
  border-radius: 26px;
  background:
    radial-gradient(circle at 85% 8%, rgba(212, 13, 31, .08), transparent 34%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 20px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .28s ease;
}

.impact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .20);
  box-shadow:
    0 28px 72px rgba(7, 27, 77, .13),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.impact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, #D40D1F, #A60816);
  box-shadow: 0 16px 36px rgba(212, 13, 31, .26);
}

.impact-icon i {
  font-size: 21px;
  line-height: 1;
}

.impact-card strong {
  display: block;
  color: #071b4d;
  font-size: 31px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: -1px;
  margin-bottom: 8px;
}

.impact-card span {
  display: block;
  max-width: 190px;
  margin: 0 auto;
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

/* tablet */
@media (max-width: 991px) {
  .impact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* mobile */
@media (max-width: 767px) {
  .impact-title h2 {
    font-size: 30px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .impact-title p {
    font-size: 14px;
    line-height: 1.65;
  }

  .impact-trust-line {
    border-radius: 18px;
    font-size: 12.5px;
    text-align: left;
  }

  .impact-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 26px;
  }

  .impact-card {
    min-height: auto;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .impact-card:hover {
    transform: none;
  }

  .impact-card strong {
    font-size: 28px;
  }
}
/* =========================================================
   FEE CONCESSION CLIENT CHANGES FINAL FIX
========================================================= */

.concession-content h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(30px, 4.5vw, 40px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -1.3px;
  margin-bottom: 15px;
}

.concession-content p {
  max-width: 760px;
  color: rgba(255, 255, 255, .76);
  font-size: 15.5px;
  line-height: 1.72;
  font-weight: 650;
}

.concession-positive-text {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  padding: 13px 16px;
  margin: 8px 0 22px !important;
  border-radius: 18px;
  color: #ffccd1 !important;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  font-weight: 850 !important;
}

.concession-positive-text::before {
  content: "\F633";
  font-family: "bootstrap-icons";
  color: #ffccd1;
  font-size: 14px;
  margin-top: 2px;
  flex: 0 0 auto;
}

.concession-highlight strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
}

.concession-highlight span {
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 750;
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.eligibility-card {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .13);
}

.eligibility-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #D40D1F, #A60816);
}

.eligibility-icon i {
  font-size: 13px;
  line-height: 1;
}

.eligibility-card > span:last-child {
  color: rgba(255, 255, 255, .88);
  font-size: 12.5px;
  line-height: 1.4;
  font-weight: 820;
}

.condition-head h3 {
  color: #071b4d;
  font-weight: 950;
}

.condition-head p {
  color: rgba(7, 27, 77, .68);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 750;
}

.condition-list li {
  line-height: 1.55;
}

/* mobile */
@media (max-width: 767px) {
  .concession-content h2 {
    font-size: 30px;
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .concession-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .concession-positive-text {
    font-size: 12.5px !important;
    border-radius: 16px;
  }

  .eligibility-grid {
    grid-template-columns: 1fr;
  }

  .eligibility-card {
    min-height: auto;
  }
}

/* =========================================================
   WHY CHOOSE US CLIENT CHANGES FINAL FIX
========================================================= */

.why-title h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #071b4d;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1.3px;
}

.why-title p {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(7, 27, 77, .66);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.why-card {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .08), transparent 32%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 20px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .28s ease;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .20);
  box-shadow:
    0 28px 72px rgba(7, 27, 77, .13),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.why-number {
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(212, 13, 31, .10);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.why-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #D40D1F, #A60816);
  box-shadow: 0 18px 42px rgba(212, 13, 31, .28);
}

.why-icon i {
  font-size: 24px;
  line-height: 1;
}

.why-content h3 {
  max-width: 300px;
  color: #071b4d;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  margin: 0 0 10px;
}

.why-content p {
  color: rgba(7, 27, 77, .64);
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 650;
  margin: 0;
}

/* tablet */
@media (max-width: 1199px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* mobile */
@media (max-width: 767px) {
  .why-title h2 {
    font-size: 30px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .why-title p {
    font-size: 14px;
    line-height: 1.65;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .why-card:hover {
    transform: none;
  }

  .why-number {
    font-size: 34px;
    right: 18px;
    top: 16px;
  }

  .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .why-content h3 {
    font-size: 17px;
  }

  .why-content p {
    font-size: 13px;
  }
}

/* =========================================================
   VISION ROADMAP CLIENT CHANGES FINAL FIX
========================================================= */

.vision-roadmap-title h2 {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  color: #071b4d;
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1.3px;
}

.vision-roadmap-title p {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(7, 27, 77, .66);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
}

.vision-roadmap-box {
  position: relative;
  max-width: 980px;
  margin: 38px auto 0;
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .08), transparent 34%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 24px 70px rgba(7, 27, 77, .10),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  overflow: hidden;
}

.vision-roadmap-line {
  position: absolute;
  left: 96px;
  top: 60px;
  bottom: 60px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, #D40D1F, rgba(212, 13, 31, .14));
}

.vision-roadmap-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: flex-start;
  padding: 18px 0;
}

.roadmap-year-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.roadmap-year {
  min-width: 72px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #D40D1F, #A60816);
  box-shadow: 0 14px 32px rgba(212, 13, 31, .24);
  font-size: 13px;
  line-height: 1;
  font-weight: 950;
}

.roadmap-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(145deg, #071b4d, #000b26);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 14px 34px rgba(7, 27, 77, .18);
}

.roadmap-icon i {
  font-size: 18px;
  line-height: 1;
}

.vision-roadmap-item h3 {
  color: #071b4d;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 950;
  margin: 0 0 7px;
}

.vision-roadmap-item p {
  color: rgba(7, 27, 77, .64);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
  margin: 0;
}

/* hover */
.vision-roadmap-item:hover .roadmap-icon {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #D40D1F, #A60816);
}

.roadmap-icon {
  transition: .25s ease;
}

/* tablet */
@media (max-width: 991px) {
  .vision-roadmap-box {
    padding: 26px;
  }

  .vision-roadmap-line {
    left: 80px;
  }

  .vision-roadmap-item {
    grid-template-columns: 105px 1fr;
    gap: 18px;
  }

  .roadmap-year {
    min-width: 62px;
  }
}

/* mobile */
@media (max-width: 767px) {
  .vision-roadmap-title h2 {
    font-size: 30px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .vision-roadmap-title p {
    font-size: 14px;
    line-height: 1.65;
  }

  .vision-roadmap-box {
    padding: 20px;
    border-radius: 24px;
  }

  .vision-roadmap-line {
    left: 39px;
    top: 52px;
    bottom: 52px;
  }

  .vision-roadmap-item {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px 0 18px 58px;
  }

  .roadmap-year-wrap {
    margin-left: -58px;
  }

  .roadmap-year {
    min-width: 64px;
    height: 36px;
    font-size: 12px;
  }

  .roadmap-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 14px;
  }

  .vision-roadmap-item h3 {
    font-size: 17px;
  }

  .vision-roadmap-item p {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* =========================================================
   FOUNDER MESSAGE CLIENT CHANGES FINAL FIX
========================================================= */

.founder-heading h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #071b4d;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1.3px;
}

.founder-heading p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(7, 27, 77, .66);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
}

.founder-main-text {
  position: relative;
  padding: 18px 20px;
  margin: 22px 0;
  border-radius: 22px;
  color: rgba(255, 255, 255, .86) !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .18), transparent 34%),
    rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .14);
  font-size: 16px !important;
  line-height: 1.75 !important;
  font-weight: 750 !important;
}

.founder-top-pill {
  text-transform: none;
}

.founder-designation span {
  text-transform: uppercase;
  letter-spacing: .4px;
}

@media (max-width: 767px) {
  .founder-heading h2 {
    font-size: 30px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .founder-heading p {
    font-size: 14px;
    line-height: 1.65;
  }

  .founder-main-text {
    padding: 16px;
    border-radius: 18px;
    font-size: 14px !important;
    line-height: 1.65 !important;
  }
}

/* =========================================================
   ABOUT KHADKESHWAR ACADEMY PREMIUM SECTION
========================================================= */

.kaa-about-section {
  --kaa-navy: #071b4d;
  --kaa-navy-dark: #020d2b;
  --kaa-red: #d40d1f;
  --kaa-red-dark: #a60717;
  --kaa-text: rgba(7, 27, 77, .68);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 86px 0 72px;

  background:
    radial-gradient(circle at 5% 10%, rgba(212, 13, 31, .09), transparent 27%),
    radial-gradient(circle at 95% 16%, rgba(50, 101, 220, .07), transparent 30%),
    linear-gradient(135deg, #fffafa 0%, #ffffff 50%, #f6f8fc 100%);
}

.kaa-about-grid-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;

  background-image:
    linear-gradient(rgba(7, 27, 77, .022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 27, 77, .022) 1px, transparent 1px);

  background-size: 42px 42px;
}

.kaa-about-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(45px);
  pointer-events: none;
}

.kaa-about-glow-one {
  width: 350px;
  height: 350px;
  left: -180px;
  top: 60px;
  background: rgba(212, 13, 31, .12);
}

.kaa-about-glow-two {
  width: 390px;
  height: 390px;
  right: -190px;
  bottom: 60px;
  background: rgba(7, 27, 77, .10);
}

/* =========================================================
   MAIN CARD
========================================================= */

.kaa-about-main-card {
  position: relative;
  overflow: hidden;
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px;

  border-radius: 38px;

  background:
    radial-gradient(circle at 96% 2%, rgba(212, 13, 31, .10), transparent 22%),
    rgba(255, 255, 255, .97);

  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 34px 95px rgba(7, 27, 77, .11),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}

.kaa-about-main-card::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(212, 13, 31, .055);
  pointer-events: none;
}

/* =========================================================
   HEADING
========================================================= */

.kaa-about-heading {
  position: relative;
  z-index: 2;
  max-width: 950px;
  margin: 0 auto 38px;
  text-align: center;
}

.kaa-about-badge {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 20px;
  padding: 10px 18px;

  border-radius: 999px;

  color: #cf1028;
  background: linear-gradient(135deg, #fff0f3, #fff8f9);
  border: 1px solid rgba(212, 13, 31, .11);

  box-shadow: 0 12px 30px rgba(212, 13, 31, .07);

  font-size: 12px;
  line-height: 1;
  font-weight: 900;
}

.kaa-about-heading h2 {
  max-width: 920px;
  margin: 0 auto 17px;

  color: var(--kaa-navy);

  font-size: clamp(40px, 4.8vw, 42px);
  line-height: 1.04;
  font-weight: 950;
  letter-spacing: -2.5px;
}

.kaa-about-heading h2 span {
  display: block;
  color: var(--kaa-red);
}

.kaa-about-heading p {
  max-width: 820px;
  margin: 0 auto;

  color: rgba(7, 27, 77, .67);

  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
}

/* =========================================================
   FEATURE GRID
========================================================= */

.kaa-about-features {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;

  margin-bottom: 24px;
}

.kaa-about-feature {
  --kaa-feature-color: #d40d1f;
  --kaa-feature-soft: #fff0f3;

  min-width: 0;
  min-height: 190px;

  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 22px;
  align-items: center;

  padding: 25px;

  border-radius: 26px;

  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 18px 48px rgba(7, 27, 77, .075),
    inset 0 1px 0 rgba(255, 255, 255, .98);

  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

.kaa-about-feature:hover {
  transform: translateY(-6px);

  box-shadow:
    0 28px 66px rgba(7, 27, 77, .12),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}

.kaa-feature-red {
  --kaa-feature-color: #d91934;
  --kaa-feature-soft: #fff0f3;
}

.kaa-feature-blue {
  --kaa-feature-color: #286bdc;
  --kaa-feature-soft: #edf3ff;
}

.kaa-feature-green {
  --kaa-feature-color: #28a647;
  --kaa-feature-soft: #edf9f0;
}

.kaa-feature-purple {
  --kaa-feature-color: #9141d0;
  --kaa-feature-soft: #f6effd;
}

.kaa-about-feature-icon {
  width: 102px;
  height: 102px;

  display: grid;
  place-items: center;

  border-radius: 27px;

  color: var(--kaa-feature-color);
  background: var(--kaa-feature-soft);

  border: 1px solid rgba(7, 27, 77, .04);

  box-shadow:
    0 17px 38px rgba(7, 27, 77, .07),
    inset 0 1px 0 rgba(255, 255, 255, .90);

  font-size: 43px;
}

.kaa-about-feature-content {
  min-width: 0;
}

.kaa-about-feature-content h3 {
  margin: 0 0 11px;

  color: var(--kaa-navy);

  font-size: 23px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -.5px;
}

.kaa-about-feature-line {
  width: 33px;
  height: 3px;

  display: block;

  margin-bottom: 13px;

  border-radius: 999px;

  background: var(--kaa-feature-color);
}

.kaa-about-feature-content p {
  margin: 0;

  color: rgba(7, 27, 77, .66);

  font-size: 14px;
  line-height: 1.58;
  font-weight: 600;
}

/* =========================================================
   TOP STATS
========================================================= */

.kaa-about-top-stats {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;

  margin-top: 22px;
}

.kaa-about-top-stat {
  min-height: 92px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  padding: 16px 19px;

  border-radius: 21px;

  background:
    radial-gradient(circle at 95% 10%, rgba(212, 13, 31, .07), transparent 32%),
    linear-gradient(135deg, #fff5f7, #ffffff);

  border: 1px solid rgba(212, 13, 31, .07);

  box-shadow: 0 15px 40px rgba(7, 27, 77, .06);
}

.kaa-about-stat-icon {
  width: 49px;
  height: 49px;
  min-width: 49px;

  display: grid;
  place-items: center;

  border-radius: 16px;

  color: #ffffff;
  background: linear-gradient(135deg, var(--kaa-red), var(--kaa-red-dark));

  box-shadow: 0 14px 30px rgba(212, 13, 31, .22);

  font-size: 18px;
}

.kaa-about-top-stat strong {
  display: block;

  color: var(--kaa-navy);

  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}

.kaa-about-top-stat div > span {
  display: block;

  margin-top: 6px;

  color: rgba(7, 27, 77, .61);

  font-size: 11px;
  line-height: 1.25;
  font-weight: 750;
}

/* =========================================================
   CTA
========================================================= */

.kaa-about-action {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;

  margin-top: 25px;
}

.kaa-about-btn {
  min-height: 55px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  padding: 13px 28px;

  border-radius: 999px;

  color: #ffffff;
  background: linear-gradient(135deg, #e20c29, #b8051c);

  box-shadow:
    0 18px 42px rgba(212, 13, 31, .28);

  text-decoration: none;

  font-size: 13px;
  line-height: 1;
  font-weight: 950;

  transition: .25s ease;
}

.kaa-about-btn:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* =========================================================
   IMAGE PANEL
========================================================= */

.kaa-about-visual-panel {
  position: relative;

  max-width: 1160px;
  min-height: 450px;

  display: grid;
  grid-template-columns: 58% 42%;

  overflow: hidden;

  margin: 28px auto 0;

  border-radius: 34px;

  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(7, 27, 77, .08);

  box-shadow:
    0 30px 82px rgba(7, 27, 77, .12);
}

.kaa-about-image-wrap {
  position: relative;
  min-height: 450px;
  overflow: hidden;
}

.kaa-about-image-wrap img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center;
}

.kaa-about-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg, transparent 58%, rgba(1, 12, 43, .42)),
    linear-gradient(90deg, transparent 72%, rgba(255, 255, 255, .42));
}

.kaa-about-image-badge {
  position: absolute;
  z-index: 3;
  left: 22px;
  top: 22px;

  min-height: 42px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 10px 16px;

  border-radius: 999px;

  color: #ffffff;
  background: linear-gradient(135deg, #e20d2a, #b7051c);

  box-shadow: 0 16px 36px rgba(212, 13, 31, .27);

  font-size: 11px;
  font-weight: 900;
}

/* =========================================================
   RIGHT SIDE CARDS
========================================================= */

.kaa-about-side-features {
  display: grid;
  align-content: center;
  gap: 13px;

  padding: 27px;

  background:
    radial-gradient(circle at 95% 5%, rgba(212, 13, 31, .075), transparent 30%),
    linear-gradient(135deg, #fffafa, #ffffff);
}

.kaa-about-side-card {
  --kaa-side-color: #d40d1f;
  --kaa-side-soft: #fff0f3;

  min-height: 86px;

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 14px 16px;

  border-radius: 19px;

  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(7, 27, 77, .07);

  box-shadow:
    0 14px 34px rgba(7, 27, 77, .07);

  transition: .25s ease;
}

.kaa-about-side-card:hover {
  transform: translateX(5px);
}

.kaa-side-red {
  --kaa-side-color: #d91934;
  --kaa-side-soft: #fff0f3;
}

.kaa-side-blue {
  --kaa-side-color: #2b6ddd;
  --kaa-side-soft: #edf3ff;
}

.kaa-side-green {
  --kaa-side-color: #28a647;
  --kaa-side-soft: #edf9f0;
}

.kaa-side-purple {
  --kaa-side-color: #9141d0;
  --kaa-side-soft: #f6effd;
}

.kaa-about-side-card > span {
  width: 54px;
  height: 54px;
  min-width: 54px;

  display: grid;
  place-items: center;

  border-radius: 16px;

  color: var(--kaa-side-color);
  background: var(--kaa-side-soft);

  font-size: 22px;
}

.kaa-about-side-card h3 {
  margin: 0 0 5px;

  color: var(--kaa-navy);

  font-size: 16px;
  line-height: 1.2;
  font-weight: 950;
}

.kaa-about-side-card p {
  margin: 0;

  color: rgba(7, 27, 77, .60);

  font-size: 11px;
  line-height: 1.4;
  font-weight: 650;
}

/* =========================================================
   BOTTOM STATS
========================================================= */

.kaa-about-bottom-stats {
  max-width: 1160px;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));

  margin: 16px auto 0;
  padding: 20px 24px;

  border-radius: 25px;

  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(7, 27, 77, .07);

  box-shadow:
    0 22px 58px rgba(7, 27, 77, .08);
}

.kaa-about-bottom-stat {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;

  padding: 5px 18px;

  border-right: 1px solid rgba(7, 27, 77, .10);
}

.kaa-about-bottom-stat:last-child {
  border-right: 0;
}

.kaa-about-bottom-stat > i {
  width: 42px;
  height: 42px;
  min-width: 42px;

  display: grid;
  place-items: center;

  color: var(--kaa-red);

  font-size: 23px;
}

.kaa-about-bottom-stat strong {
  display: block;

  color: var(--kaa-navy);

  font-size: 23px;
  line-height: 1;
  font-weight: 950;
}

.kaa-about-bottom-stat span {
  display: block;

  margin-top: 5px;

  color: rgba(7, 27, 77, .58);

  font-size: 10px;
  line-height: 1.25;
  font-weight: 750;
}

/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .kaa-about-main-card {
    padding: 40px 32px;
  }

  .kaa-about-feature {
    grid-template-columns: 95px minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }

  .kaa-about-feature-icon {
    width: 88px;
    height: 88px;
    border-radius: 23px;
    font-size: 37px;
  }

  .kaa-about-feature-content h3 {
    font-size: 20px;
  }

  .kaa-about-visual-panel {
    grid-template-columns: 56% 44%;
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .kaa-about-heading h2 {
    font-size: 46px;
  }

  .kaa-about-features {
    grid-template-columns: 1fr;
  }

  .kaa-about-feature {
    grid-template-columns: 120px minmax(0, 1fr);
  }

  .kaa-about-feature-icon {
    width: 108px;
    height: 108px;
    font-size: 45px;
  }

  .kaa-about-visual-panel {
    grid-template-columns: 1fr;
  }

  .kaa-about-image-wrap {
    min-height: 410px;
  }

  .kaa-about-side-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .kaa-about-bottom-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .kaa-about-bottom-stat {
    justify-content: flex-start;
    border-right: 0;
    border-radius: 15px;
    background: rgba(248, 249, 252, .82);
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .kaa-about-section {
    padding: 54px 0 44px;
  }

  .kaa-about-main-card {
    padding: 25px 15px;
    border-radius: 26px;
  }

  .kaa-about-heading {
    margin-bottom: 28px;
  }

  .kaa-about-badge {
    min-height: 38px;
    padding: 9px 14px;
    font-size: 10px;
  }

  .kaa-about-heading h2 {
    font-size: 33px;
    line-height: 1.08;
    letter-spacing: -1.3px;
  }

  .kaa-about-heading p {
    font-size: 13px;
    line-height: 1.6;
  }

  .kaa-about-features {
    gap: 14px;
  }

  .kaa-about-feature {
    min-height: auto;

    grid-template-columns: 82px minmax(0, 1fr);
    gap: 15px;

    padding: 18px 15px;

    border-radius: 22px;
  }

  .kaa-about-feature-icon {
    width: 76px;
    height: 76px;

    border-radius: 20px;

    font-size: 32px;
  }

  .kaa-about-feature-content h3 {
    margin-bottom: 8px;
    font-size: 18px;
  }

  .kaa-about-feature-line {
    width: 28px;
    margin-bottom: 10px;
  }

  .kaa-about-feature-content p {
    font-size: 11.5px;
    line-height: 1.5;
  }

  .kaa-about-top-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .kaa-about-top-stat {
    min-height: 78px;
    justify-content: flex-start;
    padding: 13px 16px;
  }

  .kaa-about-action {
    margin-top: 20px;
  }

  .kaa-about-btn {
    width: 100%;
  }

  .kaa-about-visual-panel {
    margin-top: 20px;
    border-radius: 24px;
  }

  .kaa-about-image-wrap {
    min-height: 300px;
  }

  .kaa-about-image-badge {
    left: 14px;
    top: 14px;
    font-size: 9.5px;
  }

  .kaa-about-side-features {
    grid-template-columns: 1fr;
    padding: 15px;
  }

  .kaa-about-side-card {
    min-height: 78px;
    padding: 12px;
  }

  .kaa-about-side-card > span {
    width: 48px;
    height: 48px;
    min-width: 48px;
    font-size: 19px;
  }

  .kaa-about-side-card h3 {
    font-size: 14px;
  }

  .kaa-about-side-card p {
    font-size: 10px;
  }

  .kaa-about-bottom-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 14px;
    border-radius: 21px;
  }

  .kaa-about-bottom-stat {
    min-height: 74px;
    padding: 11px;
  }

  .kaa-about-bottom-stat strong {
    font-size: 19px;
  }

  .kaa-about-bottom-stat span {
    font-size: 9px;
  }
}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

  .kaa-about-heading h2 {
    font-size: 29px;
  }

  .kaa-about-feature {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .kaa-about-feature-icon {
    margin: 0 auto;
  }

  .kaa-about-feature-line {
    margin-left: auto;
    margin-right: auto;
  }

  .kaa-about-bottom-stats {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   STARTUP RECOGNITION CLIENT CHANGES FINAL FIX
========================================================= */

.startup-recognition-head h2 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #071b4d;
  font-size: clamp(30px, 4vw, 38px);
  line-height: 1.12;
  font-weight: 950;
  letter-spacing: -1.3px;
}

.startup-recognition-head p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(7, 27, 77, .66);
  font-size: 15.5px;
  line-height: 1.75;
  font-weight: 650;
}

.startup-recognition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.startup-recognition-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(212, 13, 31, .08), transparent 32%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 20px 58px rgba(7, 27, 77, .09),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .28s ease;
}

.startup-recognition-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 13, 31, .20);
  box-shadow:
    0 28px 72px rgba(7, 27, 77, .13),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.startup-recognition-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 20px;
  color: #ffffff;
  background: linear-gradient(135deg, #D40D1F, #A60816);
  box-shadow: 0 18px 42px rgba(212, 13, 31, .28);
}

.startup-recognition-icon i {
  font-size: 54px !important;
  line-height: 1;
}

.startup-recognition-card h3 {
  color: #071b4d;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 950;
  margin: 0 0 10px;
}

.startup-recognition-card p {
  color: rgba(7, 27, 77, .64);
  font-size: 13.5px;
  line-height: 1.65;
  font-weight: 650;
  margin: 0;
}

/* tablet */
@media (max-width: 1199px) {
  .startup-recognition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* mobile */
@media (max-width: 767px) {
  .startup-recognition-head h2 {
    font-size: 30px;
    line-height: 1.16;
    letter-spacing: -1px;
  }

  .startup-recognition-head p {
    font-size: 14px;
    line-height: 1.65;
  }

  .startup-recognition-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .startup-recognition-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .startup-recognition-card:hover {
    transform: none;
  }

  .startup-recognition-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
  }

  .startup-recognition-card h3 {
    font-size: 17px;
  }

  .startup-recognition-card p {
    font-size: 13px;
  }
}

/* =========================================================
   HERO SECTION FINAL CLIENT UPDATE
========================================================= */

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-content h2 {
  max-width: 850px;
  color: #071b4d;
  font-size: clamp(29px, 5vw, 42px);
  line-height: 1.03;
  font-weight: 950;
  letter-spacing: -1.8px;
  margin: 18px 0 18px;
}

.hero-content h2 span {
  color: #d40d1f;
}

.hero-content > p {
  max-width: 850px;
  color: rgba(7, 27, 77, .70);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 650;
  margin: 0 0 20px;
}

.hero-badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #071b4d, #000b26);
  border: 1px solid rgba(7, 27, 77, .10);
  box-shadow: 0 14px 34px rgba(7, 27, 77, .12);
  font-size: 12px;
  font-weight: 900;
}

.hero-badge i {
  color: #ffccd1;
}

.hero-badge-light {
  color: #071b4d;
  background: #ffffff;
}

.hero-badge-light i {
  color: #d40d1f;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 20px 0 24px;
}

.hero-trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  color: rgba(7, 27, 77, .74);
  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 12px 32px rgba(7, 27, 77, .06);
  font-size: 12px;
  font-weight: 850;
}

.hero-trust-row i {
  color: #d40d1f;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions .btn-main,
.hero-call {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  text-decoration: none;
  white-space: nowrap;
}

.hero-call {
  color: #071b4d;
  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .10);
  box-shadow: 0 14px 34px rgba(7, 27, 77, .07);
}

.hero-call small {
  display: block;
  color: rgba(7, 27, 77, .58);
  font-size: 10px;
  line-height: 1.1;
  font-weight: 850;
}

.hero-call strong {
  display: block;
  color: #071b4d;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 950;
}

/* Premium Statistics */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.hero-stat {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .10), transparent 36%),
    rgba(255, 255, 255, .94);
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow:
    0 18px 44px rgba(7, 27, 77, .08),
    inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: .25s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 13, 31, .18);
}

.hero-stat-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #D40D1F, #A60816);
  box-shadow: 0 14px 30px rgba(212, 13, 31, .25);
}

.hero-stat-icon i {
  font-size: 17px;
  line-height: 1;
}

.hero-stat strong {
  display: block;
  color: #071b4d;
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
  margin-bottom: 6px;
}

.hero-stat span:not(.hero-stat-icon) {
  display: block;
  color: rgba(7, 27, 77, .66);
  font-size: 11.5px;
  line-height: 1.35;
  font-weight: 850;
}

/* right side small improvements */
.rank-card,
.hero-ai-tag,
.hero-recognition-card,
.admission-card {
  box-shadow: 0 20px 58px rgba(7, 27, 77, .12);
}

.hero-image-card img {
  width: 100%;
  display: block;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 1199px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .hero-content {
    text-align: left;
  }

  .hero-content h2 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .hero-content h2 {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: -1px;
  }

  .hero-content > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .hero-actions .btn-main,
  .hero-call {
    width: 100%;
    min-height: 43px;
    padding: 10px 8px;
    font-size: 11px;
  }

  .hero-call {
    grid-column: 1 / -1;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-stat {
    min-height: 76px;
    padding: 13px;
    border-radius: 17px;
  }

  .hero-stat:hover {
    transform: none;
  }

  .hero-stat strong {
    font-size: 20px;
  }

  .hero-stat span:not(.hero-stat-icon) {
    font-size: 11px;
  }
}

/* =========================================================
   HERO STATS ALIGNMENT FINAL FIX
========================================================= */

.hero-stats {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin-top: 30px !important;
}

.hero-stat {
  min-height: 110px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  padding: 18px 16px !important;
  border-radius: 22px !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .09), transparent 36%),
    #ffffff !important;
  border: 1px solid rgba(7, 27, 77, .10) !important;
  box-shadow: 0 18px 45px rgba(7, 27, 77, .08) !important;
  overflow: hidden !important;
}

.hero-stat-icon {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  flex: 0 0 48px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 16px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #D40D1F, #A60816) !important;
  box-shadow: 0 14px 30px rgba(212, 13, 31, .25) !important;
}

.hero-stat-icon i {
  color: #ffffff !important;
  font-size: 18px !important;
  line-height: 1 !important;
}

.hero-stat > div {
  min-width: 0 !important;
}

.hero-stat strong {
  display: block !important;
  color: #071b4d !important;
  font-size: 26px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  margin-bottom: 8px !important;
  letter-spacing: -.4px !important;
}

.hero-stat span:not(.hero-stat-icon) {
  display: block !important;
  color: rgba(7, 27, 77, .68) !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  font-weight: 850 !important;
}

/* Scholarship text ko zyada clean banane ke liye */
.hero-stat:nth-child(4) span:not(.hero-stat-icon) {
  max-width: 130px !important;
}

/* Right side admission card spacing fix */
.admission-card {
  border-radius: 26px !important;
  padding: 24px !important;
}

.admission-card-top {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
}

.admission-card-icon {
  width: 58px !important;
  height: 58px !important;
  min-width: 58px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 18px !important;
}

.admission-card h3 {
  color: #071b4d !important;
  font-size: 22px !important;
  line-height: 1.2 !important;
  font-weight: 950 !important;
  margin-bottom: 6px !important;
}

.admission-card p {
  color: rgba(7, 27, 77, .66) !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

/* Tablet */
@media (max-width: 1199px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero-stats {
    grid-template-columns: 1fr !important;
    gap: 11px !important;
  }

  .hero-stat {
    min-height: 82px !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .hero-stat-icon {
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    flex-basis: 44px !important;
    border-radius: 14px !important;
  }

  .hero-stat strong {
    font-size: 22px !important;
  }

  .hero-stat span:not(.hero-stat-icon) {
    font-size: 11.5px !important;
  }

  .admission-card {
    padding: 20px !important;
    border-radius: 22px !important;
  }
}

/* =========================================================
   HERO STATS FONT SMALL + MOVE DOWN FINAL FIX
========================================================= */

.hero-stats {
  margin-top: 44px !important; /* cards ko aur niche laane ke liye */
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.hero-stat {
  min-height: 96px !important;
  padding: 16px 14px !important;
  gap: 12px !important;
  border-radius: 20px !important;
}

.hero-stat-icon {
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  flex: 0 0 44px !important;
  border-radius: 15px !important;
}

.hero-stat-icon i {
  font-size: 16px !important;
}

.hero-stat strong {
  font-size: 22px !important;
  line-height: 1 !important;
  margin-bottom: 6px !important;
  letter-spacing: -.3px !important;
}

.hero-stat span:not(.hero-stat-icon) {
  font-size: 11px !important;
  line-height: 1.35 !important;
  font-weight: 850 !important;
}

/* 4th card me 50% aur text zyada clean */
.hero-stat:nth-child(4) strong {
  font-size: 22px !important;
}

.hero-stat:nth-child(4) span:not(.hero-stat-icon) {
  max-width: 115px !important;
}

/* buttons aur stats ke beech thoda gap */
.hero-actions {
  margin-bottom: 0 !important;
}

/* tablet */
@media (max-width: 1199px) {
  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 34px !important;
  }
}

/* mobile */
@media (max-width: 575px) {
  .hero-stats {
    grid-template-columns: 1fr !important;
    margin-top: 28px !important;
    gap: 10px !important;
  }

  .hero-stat {
    min-height: 76px !important;
    padding: 13px !important;
    border-radius: 17px !important;
  }

  .hero-stat-icon {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    flex-basis: 40px !important;
    border-radius: 13px !important;
  }

  .hero-stat strong {
    font-size: 20px !important;
  }

  .hero-stat span:not(.hero-stat-icon) {
    font-size: 10.8px !important;
  }
}
/* =========================================================
   HERO RIGHT ADMISSION CARD FINAL FIX
========================================================= */

.hero-visual {
  position: relative !important;
  padding-bottom: 46px !important;
}

.admission-card {
  position: relative !important;
  z-index: 8 !important;
  max-width: 420px !important;
  margin: -34px auto 0 !important;
  padding: 22px 24px !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .12), transparent 34%),
    #ffffff !important;
  border: 1px solid rgba(7, 27, 77, .09) !important;
  box-shadow: 0 24px 70px rgba(7, 27, 77, .16) !important;
}

.admission-card-top {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-bottom: 18px !important;
}

.admission-card-icon {
  width: 54px !important;
  height: 54px !important;
  min-width: 54px !important;
  flex: 0 0 54px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 18px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #D40D1F, #A60816) !important;
  box-shadow: 0 16px 36px rgba(212, 13, 31, .28) !important;
}

.admission-card-icon i {
  font-size: 20px !important;
  line-height: 1 !important;
}

.admission-card h3 {
  color: #071b4d !important;
  font-size: 21px !important;
  line-height: 1.18 !important;
  font-weight: 950 !important;
  margin: 0 0 6px !important;
  letter-spacing: -.4px !important;
}

.admission-card p {
  color: rgba(7, 27, 77, .66) !important;
  font-size: 13.5px !important;
  line-height: 1.55 !important;
  font-weight: 750 !important;
  margin: 0 !important;
}

.admission-card .btn-main {
  width: 100% !important;
  min-height: 48px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 950 !important;
}

/* image ke upar jo card chipak raha hai usko clean karo */
.hero-image-card {
  position: relative !important;
  z-index: 2 !important;
  overflow: hidden !important;
  border-radius: 28px !important;
}

/* floating tags ko admission card ke peeche mat aane do */
.rank-card,
.hero-ai-tag,
.hero-recognition-card {
  z-index: 6 !important;
}

/* Tablet */
@media (max-width: 1199px) {
  .admission-card {
    max-width: 390px !important;
    margin-top: -24px !important;
  }

  .admission-card h3 {
    font-size: 19px !important;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero-visual {
    padding-bottom: 26px !important;
  }

  .admission-card {
    max-width: 100% !important;
    margin: 16px 0 0 !important;
    padding: 18px !important;
    border-radius: 20px !important;
  }

  .admission-card-top {
    gap: 12px !important;
    margin-bottom: 15px !important;
  }

  .admission-card-icon {
    width: 46px !important;
    height: 46px !important;
    min-width: 46px !important;
    flex-basis: 46px !important;
    border-radius: 15px !important;
  }

  .admission-card h3 {
    font-size: 17px !important;
  }

  .admission-card p {
    font-size: 12.5px !important;
  }

  .admission-card .btn-main {
    min-height: 43px !important;
    font-size: 12px !important;
  }
}

/* =========================================================
   FOOTER COMPANY INFO FINAL FIX
========================================================= */

.footer-contact strong,
.company-info-item strong {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.company-info-box {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.company-info-item {
  min-width: 0;
}

@media (max-width: 991px) {
  .company-info-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .company-info-box {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   VISION ROADMAP MOBILE / CARD ALIGNMENT FINAL FIX
========================================================= */

.vision-roadmap-box {
  max-width: 980px;
  margin: 38px auto 0;
  padding: 34px;
  border-radius: 34px;
  background: #ffffff;
  border: 1px solid rgba(7, 27, 77, .09);
  box-shadow: 0 24px 70px rgba(7, 27, 77, .10);
}

.vision-roadmap-item {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 22px;
  margin-bottom: 14px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 13, 31, .07), transparent 36%),
    #ffffff;
  border: 1px solid rgba(7, 27, 77, .08);
  box-shadow: 0 16px 42px rgba(7, 27, 77, .07);
}

.vision-roadmap-item:last-child {
  margin-bottom: 0;
}

.roadmap-year-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.roadmap-year {
  min-width: 76px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #D40D1F, #A60816);
  font-size: 13px;
  font-weight: 950;
}

.roadmap-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(145deg, #071b4d, #000b26);
}

.roadmap-icon i {
  font-size: 18px;
}

.vision-roadmap-line {
  display: none !important;
}

.vision-roadmap-item h3 {
  color: #071b4d;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 950;
  margin: 0 0 7px;
}

.vision-roadmap-item p {
  color: rgba(7, 27, 77, .64);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 650;
  margin: 0;
}

/* Mobile Final Fix */
@media (max-width: 767px) {
  .vision-roadmap-box {
    padding: 16px;
    border-radius: 24px;
    margin-top: 26px;
  }

  .vision-roadmap-item {
    display: block;
    padding: 18px;
    margin-bottom: 14px;
    border-radius: 20px;
    text-align: left;
  }

  .roadmap-year-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 14px;
  }

  .roadmap-year {
    min-width: 76px;
    height: 36px;
    font-size: 12px;
  }

  .roadmap-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
  }

  .roadmap-icon i {
    font-size: 17px;
  }

  .vision-roadmap-item h3 {
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 7px;
  }

  .vision-roadmap-item p {
    font-size: 13px;
    line-height: 1.6;
  }
}
/* =========================================================
   SCHOLARSHIP FLOATING BADGE BIG CIRCLE FINAL FIX
========================================================= */

.scholarship-cta-visual {
  position: relative !important;
  padding-top: 40px !important;
  padding-bottom: 50px !important;
  overflow: visible !important;
}

.scholarship-card-main {
  position: relative !important;
  z-index: 2 !important;
}

/* bade white circle ko pill badge bana dega */
.scholarship-floating-badge {
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  min-height: 38px !important;
  max-width: fit-content !important;
  aspect-ratio: auto !important;

  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;

  padding: 9px 16px !important;
  border-radius: 999px !important;

  background: #ffffff !important;
  color: #071b4d !important;
  border: 1px solid rgba(7, 27, 77, .08) !important;
  box-shadow: 0 16px 40px rgba(7, 27, 77, .14) !important;

  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  white-space: nowrap !important;

  transform: none !important;
  opacity: 1 !important;
}

.scholarship-floating-badge::before,
.scholarship-floating-badge::after {
  display: none !important;
  content: none !important;
}

.scholarship-floating-badge i {
  width: auto !important;
  height: auto !important;
  min-width: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #d40d1f !important;
  font-size: 12px !important;
  line-height: 1 !important;
}

.scholarship-floating-badge span {
  color: #071b4d !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
}

/* upar wala badge */
.scholarship-floating-badge-1 {
  position: absolute !important;
  left: 24px !important;
  top: 8px !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 5 !important;
}

/* niche wala badge */
.scholarship-floating-badge-2 {
  position: absolute !important;
  right: 24px !important;
  bottom: 10px !important;
  left: auto !important;
  top: auto !important;
  z-index: 5 !important;
}

/* Mobile */
@media (max-width: 575px) {
  .scholarship-cta-visual {
    padding-top: 48px !important;
    padding-bottom: 54px !important;
  }

  .scholarship-floating-badge {
    min-height: 34px !important;
    padding: 8px 12px !important;
    font-size: 10.5px !important;
  }

  .scholarship-floating-badge span {
    font-size: 10.5px !important;
  }

  .scholarship-floating-badge i {
    font-size: 10.5px !important;
  }

  .scholarship-floating-badge-1 {
    left: 10px !important;
    top: 8px !important;
  }

  .scholarship-floating-badge-2 {
    right: 10px !important;
    bottom: 10px !important;
  }
}
