/* HEADER */
.header-sec {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;

  transition: 0.3s ease;
}
.header-sec.scrolled {
   padding: 10px 0;
  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;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.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/hero-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 140px 0 20px;
  position: relative;
  color: #fff;
}
.hero-star,
.vector {
  position: absolute;
  pointer-events: none;
}

.hero-star-1 {
  top: 110px;
  right: 35%;
  width: 30px;
}

.hero-star-2 {
  bottom: 150px;
  right: 50px;
  width: 20px;
}

.hero-star-3 {
      top: 55%;
    left: 57%;
  width: 18px;
}

.vector-1 {
  bottom: 0;
  left: 0;
  width: 60px;
}

.vector-2 {
  top: 20%;
  right: 50px;
  width: 60px;
}

.vector-3 {
     bottom: 55px;
    right: 28%;
  width: 60px;
}
.hero-grid {
  display: flex;
  align-items: center;
  gap: 80px;
}
.hero-content {
  flex: 1;
}
.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 50px;
  width: fit-content;
  font-size: 14px;
  font-weight: 550;
  margin-bottom: 20px;
  z-index: 1;

  background: linear-gradient(
    90deg,
    #c0ce3a 0%,
    #f4a91b 29%,
    #f4664a 56%,
    #9851b1 79%,
    #64a4de 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-badge::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;
}
.hero-content h1 {
  font-size: 74px;
  font-weight: 700;
  line-height: 79.2px;
  background: linear-gradient(180deg, #ffffff 0%, #bedbff 74%, #bedbff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 16px;
  color: #dbdadb;
  line-height: 1.6;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.primary-btn {
  background: #7a38fc;
  padding: 14px 18px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
 font-weight: 600;
  transition: 0.3s;
}

.primary-btn:hover {
  transform: translateY(-2px);
}

.secondary-btn {
  border: 1px solid #7a38fc;
  padding: 14px 28px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.secondary-btn:hover {
  background: rgba(124, 58, 237, 0.1);
}

.watch a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  margin-bottom: 20px;
}

.play-icon i {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-media {
  flex: 1;
  max-width: 520px;
  position: relative;
  height: 520px;
}

.hero-img {
  position: absolute;
  bottom: -20px;
  right: 35px;
}

.hero-img img {
  max-width: 500px;
  height: 550px;
  display: block;
}

/* PARTNERS-SECTION */
.partners-sec {
  padding: 30px 0px;
  background-color: rgba(255, 252, 229, 0.45);
}
.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: #000;
  margin-bottom: 20px;
}

.partner-item {
  text-align: center;
}

.partner-item img {
  max-height: 75px;
  width: auto;
  object-fit: contain;
}
/* VIDEO-SECTION */
.video-section {
  padding: 80px 0;
  background: #ffff;
  text-align: center;
}

.section-heading h2 {
  font-size: 44px;
  font-weight: 700;
  color: #101828;
  line-height: 52px;
  margin-bottom: 15px;
}

.section-heading h2 span {
  background: linear-gradient(90deg, #185ef9, #5114df);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-heading p {
  font-size: 18px;
  color: #101828;
  font-weight: 600;
  margin: 0 auto 50px;
  line-height: 1.6;
}
.video-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 9;
    z-index: 0;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
  pointer-events: none; 
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #2563eb;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-caption {
  position: absolute;
  bottom: 20px;
  left: 25px;
  right: 25px;
  font-size: 18px;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  z-index: 2;
}

.video-caption strong {
  color: #ffffff;
}
.pathway-section {
  padding: 80px 0;
  background: #ffff;
}

.price-card {
  background: #ffffff;
  border-radius: 16px;
 box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #dbeafe;
  position: relative;
  transition: 0.3s;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-5px);
}
.card-top {
  background-color: rgba(239, 246, 255, 0.5);
  padding: 30px;
  border-bottom: 1px solid #dbeafe;
}
.card-bottom {
  padding: 30px;
}
.ai-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #155dfc;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
.card-top h4 {
  font-size: 22px;
  font-weight: 700;
}
.card-top p {
  color: #6a7282;
  font-size: 16px;
  font-weight: 500;
}
.price {
  font-size: 32px;
  font-weight: 700;
  color: #155dfc;
}

.price span {
  font-size: 14px;
  color: #6a7282;
  font-weight: 400;
}
.line{
 
  border: none;
  height: 1px;
  background-color: #F3F4F6;
  margin: 20px 0;
  margin-top: 20px;
}

.features {
  list-style: none;
  padding: 0;
}
.features img {
  width: 18px;
  height: 18px;
}
.features li {
  margin-bottom: 12px;
  color: #364153;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bottom-text {
  font-size: 14px;
  color: #99a1af;
  line-height: 20px;
  margin-bottom: 25px;
}

.btn-register  {
  display: block;
  width: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  text-align: center;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
   box-shadow: 
    0 10px 25px rgba(37, 99, 235, 0.35),
    0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.btn-register:hover {
  opacity: 0.9;
}

.popular-tag {
  position: absolute;
  top: 0;
  right: 0;
  background: #fdc700;
  color: #733e0a;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 0px 14px;
  font-weight: 600;
}
.skills-section {
  padding: 80px 0;
  background: #ffff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0f172b;
}

.section-header p {
  color: #45556c;
  font-size: 16px;
}

.skill-card {
  padding: 35px;
  border-radius: 16px;
  margin-bottom: 20px;
  transition: 0.3s ease;
}

.skill-card h3 {
  font-size: 18px;
  color: #0f172b;
  font-weight: 700;
  margin: 15px 0 10px;
}

.skill-card p {
  font-size: 16px;
  line-height: 26px;
  color: #45556c;
}

.skill-card:hover {
  transform: translateY(-5px);
}
.icon-box {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.icon-box img {
  width: 26px;
  height: 26px;
}
/* COLOR VARIANTS */
.clr-blue {
  background: #eff6ff;
}
.clr-pink {
  background: #fdf2f8;
}
.clr-orange {
  background: #fff7ed;
}
.clr-green {
  background: #f0fdf4;
}
.clr-purple {
  background: #faf5ff;
}
.clr-yellow {
  background: #fefce8;
}

.benefit-card {
  background: #f8fafc;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid #f1f5f9;
  text-align: center;
  height: 200px;
  transition: 0.3s;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.icon-circle {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  font-size: 20px;
}
.icon-circle img {
  width: 26px;
  height: 26px;
}
.benefit-card h4 {
  text-align: center;
  font-size: 16px;
  color: #0f172b;
  font-weight: 700;
  margin: 15px 0 10px;
}

.benefit-card p {
  font-size: 14px;
  line-height: 20px;
  color: #45556c;
  text-align: center;
}
/*  */
.bonus-section {
  padding: 80px 0px;
  background: #ffff;
  position: relative;
  z-index: 0;
  padding-bottom: 60px;
}
.bonus-wrapper {
  display: flex;
  align-items: center;
}
.top-badges {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.badge {
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge.light {
  position: relative;
  background: #ffffff;
  border-radius: 50px;
  z-index: 1;
}

.badge.light::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1%;
  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;
}

.badge.red {
  background: transparent;
  border: 2px solid #fb2c36;
  color: #fb2c36;
  font-weight: 600;
}
.badge img {
  width: 20px;
  height: 20px;
}
.bonus-content h2 {
  font-size: 46px;
  font-weight: 600;
  background: linear-gradient(135deg, #185ef9 0%, #5114df 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  margin-bottom: 20px;
}

.bonus-content p {
  font-size: 18px;
  color: #364153;
  line-height: 1.8;
  margin-bottom: 25px;
  font-weight: 400;
  max-width: 500px;
}
.claim-btn {
  display: inline-block;
  background: #1f3fff;
  color: #fff;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(31, 63, 255, 0.25);
  transition: 0.3s ease;
}

.claim-btn:hover {
  background: #162edc;
  transform: translateY(-2px);
}

.join-text {
  margin-top: 15px;
  font-size: 18px;
  color: #262729;
  font-weight: 500;
}

.bonus-image {
  position: relative;
}

.bonus-image img {
  width: 320px;
  border-radius: 15px;
  margin-left: 200px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.free-tag {
  position: absolute;
  top: -19px;
  right: 99px;
  background: #fdc700;
  color: #733e0a;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  transform: rotate(15deg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 18px;
}
.prize-section {
  padding: 80px 0px;
  background-color: #0f0b0c;
  position: relative;
}
.prize-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: #0f0b1c;
  color: #fff;
  margin-bottom: 10px;
  z-index: 1;
}

.prize-badge::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;
}
.prize-badge img {
  width: 24px;
  height: 24px;
}
.star {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  opacity: 0.9;
}
.star img {
  width: 28px;
  height: 28px;
}

.star-1 {
  top: 60px;
  left: 120px;
}

.star-2 {
  top: 140px;
  right: 180px;
}

.star-3 {
  top: 32%;
  right: 13%;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.star {
  animation: float 4s ease-in-out infinite;
}
.prize-head h2 {
  font-size: 42px;
  font-family: "Inter", sans-serif;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 10px;
}
.prize-head span {
  background: linear-gradient(135deg, #7a38fc 0%, #bb38fc 100%);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.prize-head p {
  color: #cad5e2;
  max-width: 600px;
  margin: auto;
  font-size: 18px;
}
.prize-head {
  text-align: center;
}

.prize-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.prize-card {
  background: rgba(29, 41, 61, 0.3);
  border-radius: 20px;
  padding: 40px 25px;
  border: 1px solid #314158;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  transition: 0.3s ease;
}

.prize-card:hover {
  transform: translateY(-10px);
}

.prize-card h4 {
  font-size: 28px;
  margin: 20px 0 10px;
  color: #ffff;
}

.prize-card p {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 5px;
}

.prize-card small {
  color: #90a1b9;
  font-size: 14px;
}

.prize-icon {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: auto;
}
.prize-icon img {
  width: 36px;
  height: 36px;
}
.gold {
  background: linear-gradient(135deg, #fdc700 0%, #ff6900 100%);
}
.blue {
  background: linear-gradient(135deg, #51a2ff 0%, #00b8db 100%);
}
.pink {
  background: linear-gradient(135deg, #c27aff 0%, #f6339a 100%);
}

.green {
  background: linear-gradient(135deg, #05df72 0%, #00bc7d 100%);
}
.gold-text {
  color: #fdc700;
}

.blue-text {
  color: #51a2ff;
}
.pink-text {
  color: #c27aff;
}
.green-text {
  color: #05df72;
}

.bottom-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.stat-box {
  background: rgba(29, 41, 61, 0.3);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #314158;
  text-align: center;
}

.stat-box h4 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #ffff;
}

.stat-box p {
  color: #cad5e2;
  font-size: 18px;
}
.about-sec {
  background: #f8fafc;
  padding: 100px 0px;
}

.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-footer-bg {
  background-image: url(../asset/images/cta-footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-section {
  padding: 60px 0px;
  text-align: center;
  background: transparent;
  color: #fff;
  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: 42px;
  line-height: 56px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 16px;
  color: #dbdadb;
  margin-bottom: 35px;
}
.cta-buttons{
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #7a38fc;
  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);
}
.cta-secondary-btn {
  border: 1px solid #7a38fc;
   padding: 14px 32px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.cta-secondary-btn:hover{
    background: #7a38fc;
}
.footer {
  background: transparent;

  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: transparent;
  border-radius: 50%;
  border: 1px solid #7a38fc;
  margin-left: 10px;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #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;
}
