/* HEADER */
.header-sec {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;

  transition: 0.3s ease;
}
.header-sec.scrolled {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.hdrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 52px;
  width: auto;
}

.main-menu .menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu .menu li a {
  color: #b7b6b6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: 0.3s;
}

.main-menu .menu li a:hover {
  color: #ffffff;
}
.menu-close {
  display: none;
}

.header-button a {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  border: 1px solid #7a38fc;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.header-button a:hover {
  background: #7a38fc;
  box-shadow: 0 0 15px rgba(108, 99, 255, 0.5);
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: #fff;
  display: block;
}

/* HERO-SECTION */
.hero-sec {
  background-image: url(../asset/images/1million-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0 20px;
  color: #fff;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}
.hero-content {
  flex: 1;
}
.hero-content h1 {
  font-size: 46px;
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #bedbff 74%, #dab2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  color: #d0e3ff;
  font-size: 15px;
  line-height: 26px;
  max-width: 550px;
  font-weight: 400;
  margin-bottom: 30px;
}

.primary-button a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #155dfc;
  padding: 14px 20px;
  border-radius: 14px;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.primary-button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(21, 93, 252, 0.4);
}
.primary-button i {
  margin-left: 6px;
}
.hero-media {
  flex: 1;
  max-width: 520px;
  margin-left: auto;
}
.mobile-view {
  display: none;
}

.hero-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.hero-img video {
  width: 100%;
  height: 400px;
  display: block;
  border-radius: 16px;
}

.hero-img img {
  width: 100%;
  border-radius: 24px;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  cursor: pointer;
}
.play-btn i {
  color: #155dfc;
}
.img-text {
  margin-top: 15px;
}

.img-text h3 {
  color: #ff9d3f;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 600;
}

.img-text p {
  font-size: 12px;
  color: #d0e3ff;
  line-height: 22px;
}

.partners-sec {
  margin-top: 80px;
}
.partners-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.partners-title {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.partner-item {
  text-align: center;
}

.partner-item img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
}
/* INFO-SECTION */
.info-section {
  background-image: url(../asset/images/about-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  background-position: 60% center;
  padding: 80px 0;
  color: #fff;
}
.info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-image img {
  max-width: 550px;
  width: 100%;
}
.title-icon img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.info-content h3 {
  font-size: 20px;
  color: #f4a261;
  font-weight: 600;
  margin-bottom: 20px;
}

.info-content p {
  color: #d0e3ff;
  line-height: 1.9;
  margin-bottom: 20px;
  font-size: 14px;
}

/* SERVICE-SECTION */
.service-section {
  background-image: url(../asset/images/service-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
  color: #fff;
}
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 20px;
}

.section-head h2 {
  background: linear-gradient(180deg, #ffffff 0%, #bedbff 74%, #bedbff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  line-height: 1.3;
}
.glass-card {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  height: 100%;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(226, 232, 240, 0.08);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}
.card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.yl-bg {
  background: rgba(254, 191, 0, 0.125);
}
.brown-bg {
  background: rgba(244, 162, 97, 0.125);
}
.bl-bg {
  background: rgba(67, 153, 226, 0.125);
}
.card-icon img {
  width: 24px;
  height: 24px;
}
.card-content h3 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: bold;
  line-height: 26px;
}

.card-content p {
  color: #d0e3ff;
  font-size: 14px !important;
  line-height: 1.6 !important;
}
/* CURRICULUM-SECTION */
.curriculum-sec {
  background-image: url(../asset/images/feature-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.curriculum-sec h2 {
  background: linear-gradient(180deg, #ffffff 0%, #bedbff 74%, #bedbff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 45px;
  line-height: 1.2;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
}
.module-card {
  position: relative;
  display: flex;
  gap: 20px;
  padding: 30px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
  transition: 0.4s ease;
}

.module-icon {
  background: linear-gradient(135deg, #4399e233, #febf0033);
  height: 54px;
  width: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.module-icon img {
  width: 24px;
  height: 24px;
}
.module-content h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: 700;
}

.module-content p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 900px;
  margin-bottom: 18px;
}

.module-tags {
  display: flex;
  gap: 10px;
  align-items: center;
}
.module-tags img {
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.module-tags span {
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #d0e3ff;
  /* border: 1px solid rgba(56, 189, 248, 0.3); */
}
/*  */
.feature-section {
  background-image: url(../asset/images/featurebg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0px;
}
.feature-section h2 {
  font-size: 52px;
  font-weight: 400;
  background: linear-gradient(180deg, #ffffff 0%, #bedbff 74%, #dab2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 50px;
  font-family: "MLU Aasha";
  text-align: center;
}

.icon-clr {
  background: linear-gradient(90deg, #4399e2 0%, #febf00 100%);
}

.audience-section {
  background: url(../asset/images/audiences-sec-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
.audience-head h2 {
  font-size: 52px;
  font-weight: 400;
  background: linear-gradient(180deg, #ffffff 0%, #bedbff 74%, #dab2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "MLU Aasha";
  text-align: center;
}
.audience-head p {
  font-size: 18px;
  color: #d0e3ff;
}
.audience-head {
  text-align: center;
  margin-bottom: 40px;
}
.clr-bl {
  background: linear-gradient(135deg, #4399e2, #2c81fe);
}
.clr-yl {
  background: linear-gradient(90deg, #febf00 0%, #f4a261 100%);
}
.clr-lb {
  background: linear-gradient(135deg, #4399e2, #59b2ff);
}

.pricing-sec {
  max-width: 980px;
  margin: auto;
  background: #fff;
  border-radius: 24px;
  margin-bottom: -225px;
  position: relative;
  z-index: 2;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}
.price-head {
  background: linear-gradient(135deg, #2d6df6, #1d4ed8);
  border-radius: 24px 24px 0px 0px;
  border-radius: 24px 24px 0 0;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  margin-bottom: 0;
}

.price-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

.price-title .icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.price-title h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.price-title p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
  color: #dbeafe;
}

.price-rate {
  font-size: 34px;
  font-weight: 800;
  text-align: right;
}

.price-rate span {
  font-size: 14px;
  font-weight: 500;
  margin-left: 4px;
}

.price-rate small {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}
.price-container {
  padding: 35px 30px 30px;
}
.pr-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.pr-card {
  background: #eff6ff;
  padding: 22px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid #dbeafe;
}
.pr-card:nth-child(2) {
  background: #eef2ff;
  border: 2px solid #dbeafe;
}

.pr-card:nth-child(3) {
  background: #faf5ff;
  border: 2px solid #f3e8ff;
}

.pr-card h3 {
  margin: 0;
  font-size: 30px;
  color: #155dfc;
  font-weight: 700;
}
.pr-card:nth-child(2) h3 {
  color: #4f39f6;
}
.pr-card:nth-child(3) h3 {
  color: #9810fa;
}
.pr-card p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #45556c;
  font-weight: 500;
}
.pricing-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.pricing-head i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2b7fff 0%, #4f39f6 100%);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.pricing-head h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172b;
  line-height: 32px;
}
.pricing-ft {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 25px;
}
.pricing-ft .tick-icon {
  width: 28px;
  height: 28px;
  color: #00a63e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.pricing-ft h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172b;
}
.pricing-ft p {
  font-size: 14px;

  color: #45556c;
}
.prefer-box {
  background: linear-gradient(135deg, #eef4ff, #eef2ff);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid #dbeafe;
  margin: 30px 0;
}

.prefer-box h4 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  color: #0f172b;
}

.prefer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  padding-left: 18px;
  margin: 0;
}

.prefer-box p {
  font-size: 16px;
  color: #314158;
}
.prefer-grid span {
  width: 8px;
  height: 8px;
  background: #155dfc;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
}
.pricing-button {
  margin-top: 20px;
}

.pricing-button a {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #2d6df6, #1d4ed8);
  color: #fff;
  padding: 18px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(45, 109, 246, 0.35);
  letter-spacing: 0.3px;
}

.pricing-button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 109, 246, 0.3);
}

.pricing-botom {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.pricing-botom p {
  font-size: 13px;
  color: #45556c;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

.pricing-botom span {
  width: 8px;
  height: 8px;
  background: #00c950;
  border-radius: 50%;
  display: inline-block;
}

.about-sec {
  background: #f8fafc;
  padding-top: 200px;

  position: relative;
  z-index: 0;
  padding-bottom: 60px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-tag {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 550;
  margin-bottom: 15px;
  color: #62748e;
  z-index: 1;
}
.about-tag::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1.5px;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    #c0ce3a 0%,
    #f4a91b 29%,
    #f4664a 56%,
    #9851b1 79%,
    #64a4de 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;
}

.about-left h2 {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #185ef9 0%, #5114df 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}

.sub-text {
  font-weight: 500;
  color: #45556c;
  font-size: 18px;
  margin-bottom: 20px;
}

.about-left p {
  color: #374151;
  line-height: 1.7;
  font-size: 15px;
  max-width: 500px;
}

/* Right Cards */
.about-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.info-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid #ededed;
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
  transition: 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.info-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: #101828;
  font-weight: 600;
}

.info-card p {
  font-size: 14px;
  color: #6a7282;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 15px;
}
.info-icon img {
  width: 24px;
  height: 24px;
}
.li-blue {
  background: #dbeafe;
}
.li-green {
  background: #dcfce7;
}
.li-purple {
  background: #f3e8ff;
}
.li-indigo {
  background: #e0e7ff;
}

.mission-section {
  background-image: url(../asset/images/mission-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
  color: #fff;
}

.mission-content {
  flex: 1;
}

.mission-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}

.mission-content p {
  font-size: 16px;
  line-height: 28px;
  color: #dbdadb;
  margin-bottom: 20px;
}

.mission-author h4 {
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: 600;
  position: relative;
}
.mission-author h4::after {
  content: "";
  width: 160px;
  height: 2px;
  background: #6f6d6d;
  position: absolute;
  left: 0;
  bottom: -4px;
  border-radius: 5px;
}

.mission-author span {
  font-size: 15px;
  color: #ffff;
  font-weight: 500;
}
.image-wrapper {
  background: #f4ecd8;
  padding: 15px 0px 0px 15px;
  border-radius: 180px 180px 0px 0px;
  display: inline-block;
}
.mission-image {
  max-width: 320px;
  height: 420px;
  overflow: hidden;
  border-radius: 160px 160px 20px 20px;
}

.mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section {
  background-image: url(../asset/images/cta-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0px;
  text-align: center;

  position: relative;
}
.left-shape img,
.right-shape img {
  width: 66px;
  height: 66px;
}
.left-shape {
  position: absolute;
  top: 40%;
  left: 5%;
}

.right-shape {
  position: absolute;
  top: 20%;
  right: 8%;
}

.cta-section h2 {
  font-size: 60px;
  line-height: 56px;
  font-weight: 400;
  background: linear-gradient(180deg, #ffffff 0%, #bedbff 74%, #dab2ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "MLU Aasha";
  max-width: 640px;
  margin: auto;
  margin-bottom: 25px;
}

.cta-section p {
  font-size: 16px;
  line-height: 30px;
  color: #d0e3ff;
  margin-bottom: 35px;
  max-width: 600px;
  margin: auto;
  margin-bottom: 20px;
}
.cta-badge span {
  background: linear-gradient(
    135deg,
    rgba(67, 153, 226, 0.2),
    rgba(254, 191, 0, 0.2)
  );
  font-size: 13px;
  color: #4399e2;
  border: 1px solid #4399e280;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: auto;
  margin-bottom: 15px;
  gap: 8px;
}
.cta-badge img {
  width: 20px;
  height: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(180deg, #155dfc 0%, #4399e2 100%);
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.4);
}
.footer {
  background-image: url(../asset/images/cta-footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;

  padding: 60px 20px 30px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-logo img {
  height: 62px;
}

.footer-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
}

.footer-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: 0.3s;
}

.footer-menu a:hover {
  color: #fff;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #7a38fc;
  border-radius: 50%;
  border: 1px solid #7a38fc;
  margin-left: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: transparent;
  color: #7a38fc;
}

.footer hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 40px 0 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13px;
  color: #dbdadb;
}
.footer-bottom p {
  font-size: 13px;
  color: #dbdadb;
}

.footer-links a {
  color: #dbdadb;
  text-decoration: none;
  margin-left: 20px;
}

.footer-links a:hover {
  color: #fff;
}
.mobile-sticky-cta {
  display: none;
}

.whatsapp-float-btn i {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #00a63e);
  color: #ffffff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 166, 62, 0.35);
  cursor: pointer;
  transition: all 0.3s ease;
}

.whtsapp-sticky-btn i:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 166, 62, 0.5);
}

.whatsapp-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}
