:root {
  --bg: #ffffff;
  --bg2: #f4f6fb;
  --bg3: #eef1f9;
  --blue: #00aadd;
  --blue-deep: #0077bb;
  --purple: #7b61ff;
  --purple-deep: #5a3fcc;
  --text: #0a0e1a;
  --text2: #4a5068;
  --text3: #8890aa;
  --card-bg: #ffffff;
  --card-border: rgba(0, 170, 221, 0.15);
  --shadow-blue: 0 8px 40px rgba(0, 170, 221, 0.18);
  --shadow-purple: 0 8px 40px rgba(123, 97, 255, 0.18);
  --shadow-card: 0 4px 30px rgba(10, 14, 26, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Sora", sans-serif;
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.g {
  background: linear-gradient(120deg, var(--blue-deep), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

/* NAV */
.custom-navbar {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  margin: 0;
}

.navbar-brand img {
  width: 170px;
}

.navbar-nav {
  align-items: center;
  gap: 10px;
}

.navbar-nav .nav-link {
  color: #333;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px !important;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #7bb33b;
}

.navbar-toggler {
  border: none;
  box-shadow: none !important;
}

.navbar-toggler-icon {
  width: 1.8rem;
  height: 1.8rem;
}

@media (max-width: 991px) {
  .navbar-brand img {
    width: 140px;
  }

  .navbar-collapse {
    background: #0e1940;
    padding: 20px;
    margin-top: 15px;
    position: absolute;
    width: 100%;
    top: 50px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    left: 0;
  }

  .navbar-nav {
    gap: 0;
    align-items: flex-start;
  }

  li.nav-item {
    width: 100%;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 5px 0 !important;
    color: #fff;
  }

  .nav-cta {
    margin-top: 10px;
    display: inline-block;
  }

  .navbar-nav .nav-cta {
    width: 200px;
    text-align: center;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 170, 221, 0.1);
  box-shadow: 0 2px 20px rgba(10, 14, 26, 0.06);
}

.nav-logo {
  font-family: "Orbitron", monospace;
  font-size: 1.2rem;
  font-weight: 900;
  background: linear-gradient(120deg, var(--blue-deep), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text2);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--blue-deep);
}

.navbar-nav .nav-cta {
  background: linear-gradient(120deg, var(--blue), var(--purple));
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  padding: 8px 22px !important;
  border-radius: 50px;
  font-weight: 500 !important;
  box-shadow: 0 4px 18px rgba(0, 170, 221, 0.3);
}

/* BG */
#bgc {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

section {
  position: relative;
  z-index: 1;
}

/* HERO */
section#hero.banner-slide {
  padding: 0;
}

#hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 100px 6% 60px;
  overflow: hidden;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #683d97 -3.26%,
    #683d97 15.68%,
    #3b2f85 50.42%,
    #3b2f85 99.89%,
    #3b2f85 102%
  );
}

#hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 680px;
  height: 680px;
  background: radial-gradient(
    circle,
    rgba(123, 97, 255, 0.09) 0%,
    transparent 68%
  );
  pointer-events: none;
}

#hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(
    circle,
    rgba(0, 170, 221, 0.09) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.hero-content {
  flex: 1;
  max-width: 680px;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(
    120deg,
    rgba(0, 170, 221, 0.1),
    rgba(123, 97, 255, 0.1)
  );
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.72rem;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeUp 0.7s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-family: "Orbitron", monospace;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-top: 15px;
  animation: fadeUp 0.8s 0.08s ease both;
  letter-spacing: -1.5px;
}

.hero-sub {
  font-size: 1rem;
  color: #eee;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 38px;
  animation: fadeUp 0.9s 0.16s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 1s 0.24s ease both;
}

.btn-p {
  padding: 13px 30px;
  background: linear-gradient(120deg, var(--blue), var(--purple));
  border: none;
  border-radius: 50px;
  color: #fff;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px rgba(0, 170, 221, 0.28);
  text-decoration: none;
}

.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(0, 170, 221, 0.4);
}

.btn-s {
  padding: 13px 30px;
  background: #d1e6f0;
  border-radius: 50px;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-s:hover {
  background: rgba(0, 170, 221, 0.2);
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

.hero-visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 480px;
  animation: fadeUp 0.9s 0.3s ease both;
}

#rc {
  width: 460px;
  height: 460px;
  max-width: 100%;
}

.fsnip {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 170, 221, 0.22);
  border-radius: 12px;
  padding: 10px 16px;
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--blue-deep);
  box-shadow: 0 4px 20px rgba(0, 170, 221, 0.12);
  backdrop-filter: blur(8px);
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}

.fsnip:nth-child(2) {
  top: 12%;
  right: 4%;
  animation-delay: 0.4s;
}

.fsnip:nth-child(3) {
  bottom: 22%;
  left: 2%;
  animation-delay: 1s;
}

.fsnip:nth-child(4) {
  top: 52%;
  right: 0%;
  animation-delay: 1.6s;
}

/*About */
.about-section {
  padding: 100px 0 30px;
}

.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-content {
  flex: 1;
  max-width: 500px;
}

.about-content h2 {
  font-size: 45px;
  letter-spacing: -1px;
  font-family: "Orbitron", monospace;
  font-weight: 700;
  margin-bottom: 0px;
}

.orange-line {
  width: 80px;
  height: 5px;
  background: #ff8c00;
  margin-bottom: 30px;
  border-radius: 10px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.empower-title {
  display: inline-block;
  background: #012255;
  color: #fff;
  padding: 5px 30px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 5px 0;
}

.feature-list li .icon-box {
  font-size: 25px;
  line-height: 1;
}

.about-wrapper .feature-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.about-image {
  flex: 0.45;
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 50px;
  object-fit: cover;
}

@media (max-width: 991px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-content h2 {
    font-size: 30px;
  }

  .orange-line {
    margin-bottom: 10px;
  }

  .about-content p,
  .feature-text {
    font-size: 15px;
  }

  .empower-title {
    display: inline-block;
    background: #012255;
    color: #fff;
    padding: 5px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }
}

/* STATS */
#stats {
  padding: 50px 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--bg2);
  border-top: 1px solid rgba(0, 170, 221, 0.08);
  border-bottom: 1px solid rgba(0, 170, 221, 0.08);
}

.sc {
  text-align: center;
  padding: 36px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.sc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.sc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(0, 170, 221, 0.3);
}

.sn {
  font-family: "Orbitron", monospace;
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(120deg, var(--blue-deep), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.sl {
  color: var(--text3);
  font-size: 0.78rem;
  margin-top: 6px;
  letter-spacing: 1px;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
}

/* SECTION HEADER */
.sh {
  text-align: center;
  margin-bottom: 25px;
}

.stag {
  display: inline-block;
  background: linear-gradient(
    120deg,
    rgba(0, 170, 221, 0.1),
    rgba(123, 97, 255, 0.1)
  );
  border: 1px solid rgba(123, 97, 255, 0.2);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.68rem;
  color: var(--purple-deep);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
}

.stitle {
  font-family: "Orbitron", monospace;
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
  letter-spacing: -1.1px;
}

.ssub {
  color: var(--text2);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.75;
}

.learning-section .container {
  max-width: 90%;
}

.learning-section {
  background: #fe7710;
  padding: 80px 0 100px;
}

.learning-section .kit-card img {
  height: auto;
}

.section-title {
  color: #fff;
  text-align: center;
  font-family: "Orbitron", monospace;
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 5px;
  line-height: 1.2;
}

.learning-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.learning-tabs a {
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 400;
  position: relative;
}

.learning-tabs a.active {
  font-weight: 600;
}

.learning-tabs a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 10px;
}

.sub-title {
  text-align: center;
  color: #fff;
  font-size: 17px;
  margin-bottom: 45px;
  display: block;
}

.kit-card {
  background: #fff;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: 0.3s ease;
  height: 100%;
}

.kit-card:hover {
  transform: translateY(-8px);
}

.kit-card img {
  width: 100%;
  object-fit: cover;
}

.kit-content {
  padding: 22px 24px 26px;
}

.kit-content h4 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.kit-card strong {
  display: inline-block;
  background: linear-gradient(
    120deg,
    rgba(0, 170, 221, 0.1),
    rgba(123, 97, 255, 0.1)
  );
  border: 1px solid rgba(123, 97, 255, 0.2);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.6rem;
  color: var(--purple-deep);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
}

.kit-content p {
  margin: 0;
  font-size: 16px;
  color: #666;
}

.innovation-section {
  padding: 100px 0 60px;
}

.innovation-wrapper {
  background: #fff;
  overflow: hidden;
}

.left-content {
  padding: 5px;
}

.left-content .section-title {
  color: var(--text);
  text-align: left;
}

.feature-box {
  padding: 35px;
}

.feature-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}

.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  min-width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.blue {
  background: #123f8b;
}

.orange {
  background: #ff7a00;
}

.green {
  background: #4caf50;
}

.purple {
  background: #7e57c2;
}

.right-image {
  height: 100%;
  min-height: 100%;
}

.right-image img {
  border: none;
  border-radius: 22px;
  width: 100%;
}
.bottom-section h2.section-title {
  margin-bottom: 25px;
}
.bottom-section {
  background: linear-gradient(
    180deg,
    #683d97 -3.26%,
    #683d97 15.68%,
    #3b2f85 50.42%,
    #3b2f85 99.89%,
    #3b2f85 102%
  );
  padding: 70px 30px;
}

section#solution h2.section-title {
  margin-bottom: 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 15px;
  height: 100%;
  text-align: center;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
}

.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
}

.service-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* PROGRAMS */
#programs {
  padding: 90px 6%;
  background: var(--bg);
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}

.pc {
  background: var(--card-bg);
  border: 1px solid rgba(0, 170, 221, 0.12);
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);

  position: relative;
  overflow: hidden;
}

.pc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 170, 221, 0.04),
    rgba(123, 97, 255, 0.04)
  );
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: 20px;
}

.pc:hover::after {
  opacity: 1;
}

.pc:hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(0, 170, 221, 0.35);
  box-shadow:
    var(--shadow-blue),
    0 20px 50px rgba(10, 14, 26, 0.1);
}

.pico {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(0, 170, 221, 0.1),
    rgba(123, 97, 255, 0.1)
  );
  border: 1px solid rgba(0, 170, 221, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 18px;
  transition: all 0.4s;
}

.pc:hover .pico {
  transform: rotate(6deg) scale(1.1);
  box-shadow: 0 0 18px rgba(0, 170, 221, 0.2);
}

.ptit {
  font-family: "Orbitron", monospace;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.pdsc {
  color: var(--text2);
  font-size: 0.78rem;
  line-height: 1.6;
  margin-bottom: 18px;
}

.plnk {
  color: var(--blue-deep);
  font-size: 0.74rem;
  font-family: "DM Sans", sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  transition: gap 0.3s;
}

.pc:hover .plnk {
  gap: 10px;
}

#stats .ptit {
  font-size: 0.9rem;
  margin-bottom: 0;
}

#stats .pico {
  margin-bottom: 0;
}

#stats .pc.rev.vis {
  display: flex;
  align-items: center;
  gap: 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* COMMON CARD */
.card {
  background: var(--bg2);
  border-radius: 20px !important;
  padding: 40px;
  position: relative;
  border: 1px solid rgba(167, 109, 255, 0.15);
  overflow: hidden;
}

#programs .bottom-grid span,
#programs .column span {
  color: #ec7302;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
  font-size: 14px;
  margin: 5px 0;
  display: block;
}

/* TOP CARD */
.top-card {
  margin-bottom: 20px;
}

.top-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.column {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.content h3,
.label {
  font-size: 25px;
  margin-bottom: 0px;
  color: #111;
  line-height: 1.2;
  font-weight: 600;
}

.know-btn,
.pink-btn {
  display: inline-block;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-family: "Orbitron", monospace;
  text-decoration: none;
  background: linear-gradient(120deg, var(--blue-deep), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.book-btn {
  display: inline-block;
  margin-top: 35px;
  background: linear-gradient(90deg, #ff5b73, #ff0099);
  color: #fff;
  padding: 8px 32px;
  border-radius: 120px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

/* BOTTOM GRID */
.bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.small-card .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 10px;
}

.column img,
.small-card img {
  width: 130px;
  max-width: 100%;
}

.content p,
.small-card p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .top-content {
    grid-template-columns: 1fr;
  }

  .bottom-grid {
    grid-template-columns: 1fr;
  }

  .column,
  .small-card .inner {
    flex-direction: column;
    text-align: center;
  }

  .content {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .card {
    padding: 25px;
  }

  .label {
    font-size: 16px;
    padding: 8px 20px;
  }

  .content h3 {
    font-size: 24px;
  }

  .book-btn,
  .pink-btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}

.ideas-section {
  background: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.small-points {
  color: #f97316;
  font-size: 14px;
  margin-bottom: 5px;
  letter-spacing: 3px;
}

.ideas-section .section-title {
  color: var(--text);
  text-align: left;
}

.btn-custom {
  background: #0b2a63;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
}

.image-wrapper {
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  border-radius: 30px;
}

.col-lg-6.hero-text {
  padding-left: 30px;
}

/* WHY */
#why {
  padding: 90px 6%;
  background: var(--bg2);
}

.wgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.wi {
  background: var(--card-bg);
  border: 1px solid rgba(123, 97, 255, 0.12);
  border-radius: 20px;
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.wi::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  transform: scaleX(0);
  transition: transform 0.4s;
}

.wi:hover::after {
  transform: scaleX(1);
}

.wi:hover {
  border-color: rgba(123, 97, 255, 0.28);
  transform: translateY(-5px);
  box-shadow: var(--shadow-purple);
}

.wnum {
  font-family: "Orbitron", monospace;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(123, 97, 255, 0.07);
  position: absolute;
  top: 8px;
  right: 18px;
}

.wico {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.wtit {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.wdsc {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* PROJECTS */
#projects-wrap {
  padding: 90px 6% 30px;
  background:
    radial-gradient(
      ellipse 60% 70% at 30% 50%,
      rgba(0, 170, 221, 0.07),
      transparent
    ),
    radial-gradient(
      ellipse 60% 70% at 70% 50%,
      rgba(123, 97, 255, 0.07),
      transparent
    );
}

.pjgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.pjc {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 22px;
  overflow: hidden;

  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.pjc:hover {
  transform: translateY(-8px);
  box-shadow:
    var(--shadow-blue),
    0 24px 50px rgba(10, 14, 26, 0.1);
  border-color: rgba(0, 170, 221, 0.35);
}

.pjth {
  height: 300px;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pjth img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pjv {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.8rem;
  transition: transform 0.4s;
}

.pjc:hover .pjv {
  transform: scale(1.1);
}

.pjov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 170, 221, 0.15), transparent);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.4s;
}

.pjc:hover .pjov {
  opacity: 1;
}

.pji {
  padding: 40px;
}

.pjtag {
  display: inline-block;
  background: linear-gradient(
    120deg,
    rgba(0, 170, 221, 0.1),
    rgba(123, 97, 255, 0.1)
  );
  border: 1px solid rgba(0, 170, 221, 0.2);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.64rem;
  color: var(--blue-deep);
  letter-spacing: 1px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.pjname {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.pjdsc {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.7;
}

.all-project .pjov a {
  color: #fff;
  font-size: 0.85rem;
  font-family: "DM Sans";
  font-weight: 600;
  background: linear-gradient(120deg, var(--blue), var(--purple));
  padding: 5px 15px;
  text-decoration: none;
  border-radius: 100px;
}

#hero.prject-details {
  min-height: auto;
  padding: 80px 20px;
}

#stats-list {
  background: var(--bg2);
  border-top: 1px solid rgba(0, 170, 221, 0.08);
  border-bottom: 1px solid rgba(0, 170, 221, 0.08);
}

#stats-list #stats {
  background: none;
  padding-left: 0;
  padding-right: 0;
  border: none;
}

section#programs.proejct-programs p.ssub {
  max-width: 840px;
}

.gallery-img {
  margin-top: 60px;
}
.gallery-img img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.projects-page {
  padding: 100px 0 0;
}

.projects-page .pjgrid .pjname {
  line-height: 1;
  font-weight: 700;
}

.projects-page .pjgrid {
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 80%;
  margin: 0 auto;
}
#details-page .ctabtns {
  justify-content: left;
}
#details-page .about-content p {
  font-size: 15px;
  line-height: 1.7;
}
section#details-page .container.about-wrapper {
  gap: 0;
}
section#details-page .about-content {
  flex: 1;
  max-width: 560px;
}

/* CTA */
#cta {
  padding: 110px 6% 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 70% at 30% 50%,
      rgba(0, 170, 221, 0.07),
      transparent
    ),
    radial-gradient(
      ellipse 60% 70% at 70% 50%,
      rgba(123, 97, 255, 0.07),
      transparent
    );
  pointer-events: none;
}

#nc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ctac {
  position: relative;
  z-index: 2;
}

.ctabox {
  max-width: 820px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(0, 170, 221, 0.15);
  border-radius: 32px;
  padding: 72px 60px;
  box-shadow:
    0 20px 80px rgba(10, 14, 26, 0.1),
    var(--shadow-blue);
}

.ctatit {
  font-family: "Orbitron", monospace;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.ctasub {
  color: var(--text2);
  font-size: 0.95rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.ctabtns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* FOOTER */
footer {
  background: var(--bg3);
  border-top: 1px solid rgba(0, 170, 221, 0.1);
  padding: 64px 6% 36px;
  position: relative;
  z-index: 1;
}

.ftop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  max-width: 90%;
  margin: 0 auto 40px;
}

.flogo {
  font-family: "Orbitron", monospace;
  font-size: 1.25rem;
  font-weight: 900;
  background: linear-gradient(120deg, var(--blue-deep), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.fdsc {
  color: var(--text2);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.nlform {
  display: flex;
  border: 1px solid rgba(0, 170, 221, 0.25);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0, 170, 221, 0.1);
}

.nlform input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 11px 18px;
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  outline: none;
}

.nlform input::placeholder {
  color: var(--text3);
}

.nlform button {
  background: linear-gradient(120deg, var(--blue), var(--purple));
  border: none;
  padding: 11px 22px;
  color: #fff;
  font-family: "Orbitron", monospace;
  font-size: 0.68rem;
  font-weight: 700;

  transition: opacity 0.3s;
  white-space: nowrap;
}

.nlform button:hover {
  opacity: 0.85;
}

.fcol h4 {
  font-family: "Orbitron", monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue-deep);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.flinks {
  list-style: none;
  padding-left: 0;
}

.flinks li {
  margin-bottom: 9px;
}

.flinks a {
  text-decoration: none;
  color: var(--text2);
  font-size: 0.88rem;
  transition: color 0.3s;
}

.flinks a:hover {
  color: var(--blue-deep);
}

.fbot {
  border-top: 1px solid rgba(0, 170, 221, 0.1);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fcopy {
  color: var(--text3);
  font-size: 0.85rem;
}

.sicons {
  display: flex;
  gap: 10px;
}

.sic {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid rgba(0, 170, 221, 0.2);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;

  transition: all 0.3s;
  text-decoration: none;
  color: var(--text2);
  box-shadow: 0 2px 8px rgba(10, 14, 26, 0.06);
}

.sic:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.rev {
  opacity: 0;
  transform: translateY(36px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.rev.vis {
  opacity: 1;
  transform: translateY(0);
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: var(--bg2);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--blue), var(--purple));
  border-radius: 2px;
}

/* Register Page */
.register-card {
  max-width: 800px;
  width: 100%;
  background: var(--bg3);
  border-top: 1px solid rgba(0, 170, 221, 0.1);
  border-radius: 20px;
}

label.form-label {
  margin: 0 0 2px;
  font-size: 14px;
}

.register-header {
  background: #ffffff;
  text-align: center;
  padding: 30px 20px 10px;
}

.register-header h2 {
  font-weight: bold;
  color: #333;
}

.form-control:focus {
  box-shadow: none;
  border-color: #eee;
}

.btn-custom {
  background: linear-gradient(120deg, var(--blue), var(--purple));
  border: none;
  padding: 11px 22px;
  font-weight: 400;
  color: #fff;
  font-family: "Orbitron", monospace;
}

.login-link {
  text-decoration: none;
  color: var(--purple);
  font-weight: 500;
}

.login-link:hover {
  text-decoration: underline;
}

.form-control {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 2.7;
  border-radius: 10px;
}

#hero.page-banner {
  min-height: auto;
  padding: 80px 20px;
  justify-content: center;
  text-align: center;
}

#hero.page-banner .hero-badge {
  margin: 0;
}

section.page-content {
  padding: 80px 0;
}

.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 997;
  width: 60px;
  height: 60px;
  padding: 15px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s;
}

.wa-float img {
  width: 100%;
}

.wa-float:hover {
  transform: scale(1.08);
}

@media (max-width: 768px) {
  nav .nav-links {
    display: none;
  }

  #hero {
    flex-direction: column;
    text-align: center;
    padding: 50px 10px;
    min-height: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-visual {
    display: none;
  }

  #stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  #stats .pc.rev.vis {
    gap: 15px;
    padding: 15px;
  }

  #stats .ptit {
    font-size: 0.75rem;
    margin-bottom: 0;
    line-height: 1.1;
  }

  .wgrid,
  .pjgrid {
    grid-template-columns: 1fr;
  }

  .platc {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .ftop {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pgrid {
    display: grid;
    grid-template-columns: auto;
    gap: 10px;
  }

  .ggrid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gi:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }

  .ctabox {
    padding: 40px 24px;
  }

  .programs .container {
    padding: 0;
  }

  .sub-title {
    font-size: 16px;
  }

  .bottom-section {
    padding: 40px 15px;
  }

  .about-section {
    padding: 50px 0 0;
  }

  #programs {
    padding: 50px 3%;
  }

  .learning-section {
    background: #fe7710;
    padding: 40px 0;
  }

  .learning-section .container {
    max-width: 95%;
  }

  .innovation-section {
    padding: 50px 0;
  }

  .col-lg-6.hero-text {
    padding: 20px;
  }

  .ideas-section {
    padding: 0 0 50px;
  }

  #projects-wrap {
    padding: 50px 5% 30px;
  }

  .pjth {
    height: 280px;
  }

  #cta {
    padding: 50px 5% 70px;
  }

  footer {
    padding: 64px 3% 36px;
  }

  .wa-float {
    bottom: 50px;
    right: 20px;
  }

  .projects-page .pjgrid {
    grid-template-columns: repeat(1, 1fr);
    max-width: 90%;
  }

  .projects-page {
    padding: 50px 0 0;
  }

  section#details-page .about-image {
    margin-top: 30px;
  }
}

.heading1 {
  margin-bottom: 60px;
}

.heading1 h2 {
  text-align: center;
}

.heading2 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.heading2 h2 {
  text-align: center;
}
.lab-solution {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.solution-content {
  flex: 1.1;
}

.solution-image {
  flex: 1;
}

.solution-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  background: #eef4ff;
  color: #3f51ff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}

.solution-content h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.intro {
  font-size: 18px;
  color: #666;
  margin-bottom: 25px;
}

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

.solution-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  font-size: 17px;
  color: #444;
}

.solution-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #4f46e5;
  font-weight: bold;
  font-size: 18px;
}

.solution-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  background: #4f46e5;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.solution-btn:hover {
  background: #372fd9;
}

/* Mobile */

@media (max-width: 992px) {
  .lab-solution {
    flex-direction: column-reverse;
    text-align: center;
  }

  .solution-list li {
    text-align: left;
  }

  .solution-content h2 {
    font-size: 32px;
  }
}

.right-image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.right-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
}

.solution-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.solution-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
