@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap");

/* ========== 1. CSS Reset (Modern) ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ========== 2. Root Variables (Colors, Fonts) ========== */
:root {
  /* Primary Colors */
  --primary: #7f51f2;
  --primary-dark: #000;

  /* Backgrounds */
  --bg-white: #fff;
  --bg-dark: #0a0a0a;

  /* Text */
  --white: #ffffff;
  --dark: #000;

  /* Fonts */
  --body-font1: "Inter", sans-serif;
  --body-font2: "Manrope", sans-serif;
}

/* ========== 3. Global Base Styles ========== */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--body-font1);
  -webkit-font-smoothing: antialiased;
}

/* ========== 4. Typography ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
  font-family: var(--body-font1);
}

p {
  margin-bottom: 0;
  line-height: 1.6;
  color: var(--white);
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

.full-wrap {
  overflow: hidden;
}

section {
  padding: 80px 0;
}

a.primary-btn img {
  margin-left: 5px;
  height: 15px;
}

/* Header */

button.navbar-toggler {
  background: var(--text);
}

a.primary-btn1.become {
  position: relative;
}

a.primary-btn1.become span.green {
  position: absolute;
  content: "";
  width: 75%;
  height: 25px;
  bottom: -25px;
  left: 32px;
  background: #178638;
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.header-link {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: #fff;
}

li.nav-item:hover a {
  color: #ffff;
}

ul.navbar-nav {
  border: 1px solid #fafafa1a;
  background: #ffffff01;
  box-shadow: 0px 10px 10px -3.75px #0000000f;
  box-shadow: 0px 2.29px 2.29px -2.5px #00000029;
  box-shadow: 0px 0.6px 0.6px -1.25px #0000002e;
  box-shadow: 0px 0px 10px 0px #ffffff40 inset;
  backdrop-filter: blur(5px);
  border-radius: 40px;
  padding: 5px 25px;
  line-height: 26px;
  margin: 10px 0;
}

.header-bar {
  /* padding: 0; */
  background: #1a1a1a;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
}

a.primary-btn1:hover {
  background: none !important;
  border: 1px solid #fff;
  box-shadow: none;
}

a.primary-btn1 {
  color: #fff;
  padding: 0px 20px;
  border-radius: 15px;
  line-height: 48px;
  border: 1px solid #943dff;
  font-weight: 400;
  display: inline-block;
  align-items: center;
  gap: 8px;
  background: linear-gradient(94.97deg,
      #943dff 0%,
      #f26179 50.31%,
      #fcd093 100%);
  box-shadow: 0px -6.33px 0.63px 0px #ffffff7d inset;
}

a.primary-btn1.banner2 {
  background: linear-gradient(94.97deg,
      #fcd093 0%,
      #f26179 49.69%,
      #943dff 100%);
}

.section-title p {
  font-size: 18px;
  font-weight: 500;
}

.navbar-nav .nav-link.active {
  background: linear-gradient(225.4deg,
      #fedc2a 0%,
      #dd5789 48.12%,
      #7a2c9e 93.59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  font-size: 16px !important;
}

/* Banner */
section.banner {
  background: url(../../assets/img/banner/bg.png);
  padding: 100px 0;
  margin-top: 80px;
}

.banner-title h1 {
  font-size: 80px;
  font-weight: 600;
  background: linear-gradient(270deg,
      #fac175 0%,
      #e68d92 45.68%,
      #dc73a0 68%,
      #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.banner-des p {
  color: #f5f5f5;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
}

.banner-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.banner-content {
  padding: 60px 0;
}

/* Feature */
section.feature {
  background: #010117;
  position: relative;
}

img.feature-layer1 {
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
}

img.feature-layer2 {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 35%;
}

.full-feature {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  justify-content: center;
}

.card-wrapper {
  position: relative;
  transition: all 0.4s ease;
}

.card {
  border-radius: 20px;
  padding: 20px 20px;
  color: white;
  background: none;
  cursor: pointer;
  box-shadow: 0px 0px 20.9px 0px #fafafa80 inset;
  position: relative;
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.card:hover {
  border: 1px solid;
  border-image-source: linear-gradient(94.97deg,
      #fcd093 0%,
      #f26179 49.69%,
      #943dff 100%);
  box-shadow: 0px 0px 20.9px 0px #fafafa30 inset;
}

/* Card sizes */
.card-1 {
  width: 140px;
  height: 330px;
}

.card-2 {
  width: 160px;
  height: 400px;
}

.card-3 {
  width: 160px;
  height: 500px;
}

.card-4 {
  width: 160px;
  height: 400px;
}

.card-5 {
  width: 160px;
  height: 330px;
}

/* Expanded sizes on hover */
.card-wrapper:hover .card-1,
.card-wrapper:hover .card-5 {
  width: 330px;
  transform: rotate(-90deg);
}

.card-wrapper:hover .card-2,
.card-wrapper:hover .card-4 {
  width: 400px;
  transform: rotate(-90deg);
}

.card-wrapper:hover .card-3 {
  width: 500px;
  transform: rotate(-90deg);
}

.card-title {
  font-size: 24px;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 auto;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.card-wrapper:hover .card-title {
  opacity: 0;
}

/* Expanded content */
.card-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mob-js {
  display: none;
}

.card-wrapper:hover .card-content {
  opacity: 1;
  visibility: visible;
  rotate: 90deg;
}

.content-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
}

.feature-list {
  list-style: none;
  position: relative;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
}

.feature-item::before {
  content: "";
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
  border-radius: 50%;
  margin-right: 12px;
  margin-top: 6px;
  flex-shrink: 0;
}

.card-content::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: linear-gradient(94.97deg,
      #fcd093 0%,
      #f26179 49.69%,
      #943dff 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.card-wrapper:hover .card-content::before {
  opacity: 1;
}

/* Why */
.why-us {
  background: #010117;
}

.why-icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  box-shadow: 0px 0px 12.93px 0px #ffffff12 inset;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.why-item {
  text-align: center;
  background: linear-gradient(129.24deg, rgba(0, 0, 0, 0) 60%, #ec9e88 180%);
  box-shadow: 0px 0px 12.93px 0px #fafafa40 inset;
  border-radius: 20px;
  padding: 30px;
  min-height: 323px;
}

.why-title {
  margin: 15px 0;
}

section.discover {
  background: #0f0f0f;
}

.section-title h2 {
  font-size: 54px;
  font-weight: 500;
}

.section-title h2 span {
  background: linear-gradient(270deg,
      #fac175 0%,
      #e68d92 45.68%,
      #dc73a0 68%,
      #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.discover-img {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.discover-img:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 145%;
  top: -13%;
  background: url(../../assets/img/discover/bg-loop.png);
  background-size: cover;
  z-index: 0;
  left: -22%;
}

.discover-img img {
  position: relative;
  width: 60%;
}

.discover-title h2 {
  font-size: 64px;
  font-weight: 500;
}

.discover-text p {
  font-size: 28px;
}

.disc-mg {
  margin-bottom: 90px;
}

.section-title p {
  font-size: 20px;
}

.discover h2 span {
  background: linear-gradient(225.4deg,
      #fedc2a 0%,
      #dd5789 48.12%,
      #7a2c9e 93.59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* Program */

section.program {
  background: #010117;
}

.why-us h2 span {
  background: linear-gradient(225.4deg,
      #fedc2a 0%,
      #dd5789 48.12%,
      #7a2c9e 93.59%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.why-des p {
  font-size: 20px;
  color: #e5e5e5;
}

.why-title h4 {
  font-size: 28px;
}

.why-item.program {
  min-height: 260px;
}

.section-title h6 {
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 20px;
  background: #000;
  color: #fff;
}

.section-title h6::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.16px;
  border-radius: 20px;

  background: linear-gradient(225.4deg,
      #fedc2a 0%,
      #dd5789 48.12%,
      #7a2c9e 93.59%);

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Testimonial */

section.testimonial {
  background: #010117;
}

.client-text {
  position: relative;
  padding: 15px;
  border-radius: 15px;
  background: linear-gradient(180deg, #000000 27.88%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  z-index: 99;
}

.client-text::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px 2px 2px 1px;
  border-radius: 15px;
  background: linear-gradient(94.97deg,
      #fcd093 0%,
      #f26179 49.69%,
      #943dff 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.client-img {
  text-align: center;
  overflow: hidden;
  height: 260px;
}

.testimonial h2 span {
  background: linear-gradient(94.97deg,
      #fcd093 0%,
      #f26179 49.69%,
      #943dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.client-name h6 {
  font-size: 20px;
  background: linear-gradient(94.97deg,
      #fcd093 0%,
      #f26179 49.69%,
      #943dff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.client-name p {
  font-size: 14px;
}

.client-text p {
  text-align: justify;
  color: #ffffffbd;
}

.client-name {
  margin-top: 15px;
}

.client-text p.say {
  min-height: 130px;
}

/* Footer */
footer {
  background: #010117;
  padding: 40px 0;
  position: relative;
}

footer:before {
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background: url(../../assets/img/program/line.png);
  top: 0;
  background-size: contain;
}

.footer-nav ul {
  display: flex;
  gap: 40px;
  justify-content: center;
}

.footer-nav ul li a {
  color: #fff;
  font-size: 22px;
}

.footer-social ul {
  display: flex;
  gap: 14px;
  justify-content: end;
}

.footer-social ul li a {
  color: #000;
  background: #fff;
  height: 45px;
  width: 45px;
  display: inline-block;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.bottom-nav ul {
  display: flex;
  gap: 30px;
}

.bottom-nav ul li a {
  font-size: 20px;
  color: #ffffffab;
}

.footer-bottom {
  margin-top: 50px;
}

.copyright p {
  font-size: 20px;
  color: #ffffffab;
  text-align: right;
}

.modal-body {
  background: #010117;
  padding: 0;
}

.modal-dialog {
  max-width: 1200px;
}

.modal-title-box img {
  width: 100%;
}

.modal-title-box h2 {
  font-size: 42px;
}

.modal-title-box h2 span {
  font-size: 70px;
}

.request-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

.form-title h4 {
  font-size: 28px;
  color: #000;
  font-weight: 500;
}

.modal-z-index {
  z-index: 9999 !important;
}

.form-title p {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}

.input-box input {
  background: #f8f8f8;
  color: #000;
  border: none;
  padding: 15px;
  border-radius: 10px;
  width: 100%;
}

.input-box label {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  display: block;
}

.input-box {
  margin-bottom: 30px;
}

.radio-btn input {
  color: #d9d9d9;
  height: 25px;
  width: 25px;
}

.radio-btn label {
  font-size: 18px;
  color: #000;
  font-weight: 500;
}

.radio-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.form-title {
  margin-bottom: 30px;
}

button.btn-closes {
  position: absolute !important;
  top: 22px;
  height: 35px;
  width: 35px;
  right: 27px;
  z-index: 999;
  background: #000;
  opacity: 1;
  color: #fff;
  border-radius: 10px;
  border: none;
}

.modal-title-box .section-title {
  padding: 20px 0 0 20px;
}

a.primary-btn1.enquiry {
  background: linear-gradient(225.4deg,
      #fedc2a 0%,
      #dd5789 48.12%,
      #7a2c9e 93.59%);
  box-shadow: none;
  padding: 0px 30px;
}

.navbar-toggler {
  border-color: #fff;
  /* optional */
}

.navbar-toggler-icon {
  filter: invert(1);
}

div#staticBackdrop {
  z-index: 999999999999;
}

ul.feature-list:before {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  background: url(../../assets/img/program/line.png);
  top: -20px;
  background-size: contain;
}

a.primary-btn1.enquiry:hover {
  background: #000 !important;
}

.primary-btn1.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-loader {
  font-weight: 600;
}