@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --themeColor: #7877C6;
  --primaryColor: #010D3E;
  --secondaryColor: #2563EB;
  --blackColor: #000;
  --whiteColor: #FFFDF3;
  --whiteLightColor: #fffdf3d5;
  --textLightColor: #868686;
  --grayColor: #8A8F98;
}


/* CUSTOM CSS HERE */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}

body {
  /* overflow: hidden; */
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  background-color: #090619 !important;
}

.page-scroll-area {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom Scrollbar */
.page-scroll-area::-webkit-scrollbar {
  width: 4px;
}

.page-scroll-area::-webkit-scrollbar-track {
  background: #b1b1b1c0;
  border-radius: 10px;
}

.page-scroll-area::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

.container {
  max-width: 1260px !important;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

.clip-path {
  clip-path: border-box;
}


/* FONT SIZE */
.font-60 {
  font-size: clamp(30px, 5vw, 50px);
}

.font-48 {
  font-size: clamp(28px, 4vw, 48px);
}

.font-36 {
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2.25rem);
}

.font-30 {
  font-size: clamp(1.125rem, 1rem + 0.7813vw, 1.875rem);
}

.font-26 {
  font-size: clamp(1.125rem, 1.0199rem + 0.5096vw, 1.625rem);
}

.font-24 {
  font-size: clamp(1rem, 0.8949rem + 0.5096vw, 1.5rem);
}

.font-22 {
  font-size: clamp(18px, 2vw, 22px);
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

.font-16 {
  font-size: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
}


/* Gap */
.scalable-gap-30-20 {
  gap: clamp(1.25rem, 1.1rem + 0.6vw, 1.875rem);
}

.scalable-gap-24-16 {
  gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.scalable-gap-16-12 {
  gap: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.scalable-gap-12 {
  gap: 12px;
}

.scalable-gap-20 {
  gap: clamp(1rem, 0.9322rem + 0.339vw, 1.25rem);
}

.scalable-p-12 {
  padding: 12px;
}

/* FONT WEIGHT */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

/* COLOR */
.primaryColor {
  color: var(--primaryColor);
}

.secondaryColor {
  color: var(--secondaryColor);
}

.themeColor {
  color: var(--themeColor);
}

.textLight {
  color: var(--textLightColor);
}

.textDark {
  color: var(--textcolor);
}

.white {
  color: var(--whiteColor);
}

.white-light {
  color: var(--whiteLightColor);
}

.black {
  color: var(--blackColor) !important;
}

.grayColor {
  color: var(--grayColor);
}

:focus-visible {
  outline: var(--Primary-color) auto 0px;
}

.lh-0 {
  line-height: 0;
}

.line-height-26 {
  line-height: 26px !important;
}

.line-height-22 {
  line-height: 22px !important;
}

.cursor-pointer {
  cursor: pointer;
}


/* ---------------- NAVBAR GLOBAL ---------------- */
.navbar-container {
  width: 100%;
  background: var(--whiteColor);
  padding: 16px 22px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgb(90 90 90 / 20%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: visible;
}

.nav-logo img {
  width: clamp(9.375rem, 8.7421rem + 3.1646vw, 10rem);
  transition: 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-toggle {
  width: 22px;
  height: 16px;
  display: flex;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background: var(--whiteColor);
  border-radius: 4px;
  transition: 0.4s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 75px;
  right: 22px;
  background: #0b0b0b;
  width: 220px;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  gap: 18px;
}

.nav-menu a {
  color: var(--whiteColor);
  text-decoration: none;
  transition: 0.3s ease;
}

.nav-menu a.active {
  color: var(--themeColor);
}

.nav-menu a:not(.nav-btn)::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--themeColor);
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 16px 50px;
  border-radius: 100px;
  font-weight: 500;
  color: var(--whiteColor) !important;
  background: linear-gradient(180deg,
      #7877C6 0%,
      #3A3A60 100%);
  background-size: 200% 200%;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  animation: navGradientShift 3s ease infinite,
    navPulse 2s ease-in-out infinite;
  box-shadow:
    0 4px 15px #3A3A60,
    0 0 0 0 #3A3A60;
  transition: all 0.3s ease;
}

@keyframes navGradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes navPulse {

  0%,
  100% {
    box-shadow:
      0 4px 15px #7877C6,
      0 0 0 0 #3A3A60;
  }

  50% {
    box-shadow:
      0 8px 25px #7877C6,
      0 0 0 10px rgba(240, 41, 115, 0);
  }
}

.nav-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.35),
      transparent);
  animation: navShine 2.2s ease-in-out infinite;
}

@keyframes navShine {
  0% {
    left: -120%;
  }

  50%,
  100% {
    left: 120%;
  }
}

.nav-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow:
    0 10px 30px #7877C6,
    0 0 0 0 rgba(240, 41, 115, 0);
  animation: none;
  background-position: 100% 50%;
}

.nav-btn:active {
  transform: translateY(-1px) scale(0.97);
}

/* HERO SECTION */
.home-page {
  position: relative;
  z-index: 99;
  width: 100%;
}

.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 280px 0px 0px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
  opacity: 0.6;
}

.count-number {
  gap: 80px;
}

/* BACKGROUND IMAGE */
.hero-container {
  padding: clamp(1.5rem, 1.0443rem + 2.2785vw, 3.75rem);
}

.hero-title {
  font-size: 50px;
  letter-spacing: 4px;
}

.hero-bg-img {
  position: absolute;
  z-index: 99;
  bottom: 0;
}

.hero-section-content {
  gap: 120px;
}

.hero-text-bg {
  position: absolute;
  top: -100px;
  left: 40%;
}

/* Button */
.hero-btn {
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.4s ease;
}

.primary-btn {
  background: linear-gradient(45deg, #F02973, #8A1842, #F02973);
  box-shadow: 0px 8px 20px -8px rgba(255, 100, 0, 0.6);
  background-size: 250% 250%;
  color: var(--whiteColor);
}

.primary-btn:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
}

.secondary-btn {
  background: transparent;
  border: 1px solid var(--whiteColor);
  color: var(--whiteColor);
}

.secondary-btn:hover {
  background: var(--themeColor);
  color: var(--whiteColor);
  transform: translateY(-3px);
  border: 1px solid transparent;
}


/* Section */

section.visible {
  opacity: 1;
  transform: translateY(0px);
}

.section-gap {
  gap: 80px;
}

/* About Us Section */
.hero-serction {
  padding: 80px 0px 0px;
  position: relative;
}

.hero-serction::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
  opacity: 0.6;
}

.about-img {
  border-radius: 35px;
  border: 1px solid #FFFFFF17;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s ease;
}

.about-img:hover {
  transform: translateY(-10px);
  border: 1px solid var(--themeColor);
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.15);
}

/* Services section */
.services-card {
  position: relative;
  border-radius: 34px;
  background: linear-gradient(to left,
      #090719 0%,
      #131122 100%);
  border: 1px solid #FFFFFF17;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}

/* Shine effect on hover */
.services-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.services-card:hover::before {
  left: 100%;
}

/* Glow border effect */
.services-card::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, #7877C6, #2563EB, #7877C6, #2563EB);
  border-radius: 34px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease;
  background-size: 300% 300%;
  animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.services-card:hover::after {
  opacity: 1;
}

.services-card:hover {
  transform: scale(1.05) rotateX(2deg);
  border-color: transparent;
  box-shadow: 0 25px 50px -12px rgba(120, 119, 198, 0.5);
}

/* Icon animation */
.services-card img {
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  filter: brightness(1);
}

.services-card:hover img {
  transform: translateY(-10px) rotate(-5deg) scale(1.2);
  filter: brightness(1.3) drop-shadow(0 10px 20px rgba(120, 119, 198, 0.4));
}

/* Text animation */
.services-card h3,
.services-card h4 {
  transition: all 0.3s ease;
}

.services-card:hover h3 {
  transform: translateX(5px);
  color: #ffffff;
}

.services-card:hover h4 {
  transform: translateX(5px);
  color: #ffffff;
}

/* Why Choose Section */
.why-choose-container {
  padding: 100px 0px;
}

.why-choose-section {
  border-radius: 28px;
  background: linear-gradient(to left,
      #090719 0%,
      #131122 100%);
  border: 1px solid #FFFFFF17;
  padding: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem) clamp(1.5rem, 0.7911rem + 3.5443vw, 5rem);
}

.why-choose-card {
  position: relative;
  border-radius: clamp(1rem, 0.7722rem + 1.1392vw, 2.125rem);
  background: linear-gradient(to left,
      #090719 0%,
      #131122 100%);
  border: 1px solid #FFFFFF17;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(1.5rem, 1.2342rem + 1.3291vw, 2.8125rem);
  transition: all 0.4s ease;
  overflow: hidden;
}

/* Gradient background on hover */
.why-choose-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 119, 198, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 0;
}

.why-choose-card:hover::before {
  width: 500px;
  height: 500px;
}

/* Border glow */
.why-choose-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: clamp(1rem, 0.7722rem + 1.1392vw, 2.125rem);
  padding: 2px;
  background: linear-gradient(135deg, #7877C6, transparent, #2563EB);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-choose-card:hover::after {
  opacity: 1;
}

.why-choose-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(120, 119, 198, 0.3);
  border-color: rgba(120, 119, 198, 0.3);
}

/* Icon bounce effect */
.why-choose-card img {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 1;
}

.why-choose-card:hover img {
  transform: translateY(-15px) scale(1.15);
  filter: drop-shadow(0 15px 25px rgba(120, 119, 198, 0.5));
}

/* Text effects */
.why-choose-card h3,
.why-choose-card h4 {
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.why-choose-card:hover h3 {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(120, 119, 198, 0.5);
}

.why-choose-card:hover h4 {
  color: #ffffff;
}

/* What Our Users Say */
.testimonial-box {
  position: relative;
  background: #FFFFFF4D;
  backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.35s ease;
  overflow: hidden;
}

.testimonial-box:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--themeColor);
  box-shadow: 0 15px 30px rgba(120, 119, 198, 0.4);
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--themeColor);
}

.textLightColor {
  color: var(--textLightColor);
}

/* CTA Section */
.cta-section-container {
  padding: 40px 0px;
  position: relative;
  overflow: hidden;
}

.cta-section {
  position: relative;
  border: 1px solid #FFFFFF24;
  padding: 70px 60px;
  gap: 50px;
  border-radius: clamp(2.125rem, 1.5427rem + 2.9114vw, 5rem);
  background: linear-gradient(to left, #090719 0%, #131122 100%);
  overflow: hidden;
  animation: ctaBreath 3s ease-in-out infinite;
}

/* Subtle breathing animation */
@keyframes ctaBreath {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(120, 119, 198, 0);
  }

  50% {
    transform: scale(1.005);
    box-shadow: 0 0 30px rgba(120, 119, 198, 0.2);
  }
}

/* Rotating border animation */
.cta-section::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: clamp(2.125rem, 1.5427rem + 2.9114vw, 5rem);
  background: conic-gradient(from 0deg,
      transparent 0deg,
      #7877C6 90deg,
      transparent 180deg,
      transparent 180deg,
      #2563EB 270deg,
      transparent 360deg);
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
  filter: blur(1px);
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Inner background with floating particles */
.cta-section::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: linear-gradient(to left, #090719 0%, #131122 100%);
  border-radius: clamp(2.125rem, 1.5427rem + 2.9114vw, 5rem);
  z-index: -1;
}

/* Floating light orbs */
.cta-section-container::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(120, 119, 198, 0.15) 0%, transparent 70%);
  top: 20%;
  left: 10%;
  animation: floatOrb1 8s ease-in-out infinite;
  pointer-events: none;
}

.cta-section-container::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  bottom: 20%;
  right: 10%;
  animation: floatOrb2 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatOrb1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.5;
  }
}

@keyframes floatOrb2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }

  50% {
    transform: translate(-30px, 30px) scale(1.15);
    opacity: 0.5;
  }
}

/* Button continuous glow */
.cta-section .nav-btn {
  position: relative;
  animation: buttonPulse 2.5s ease-in-out infinite;
}

@keyframes buttonPulse {

  0%,
  100% {
    box-shadow: 0 0 10px rgba(120, 119, 198, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(120, 119, 198, 0.6), 0 0 40px rgba(37, 99, 235, 0.3);
  }
}

.section-pt-pb {
  padding: clamp(4.375rem, 3.9953rem + 1.8987vw, 6.25rem) 0px;
}

.contact-section {
  padding: clamp(7.5rem, 7.1203rem + 1.8987vw, 9.375rem) 0px 100px;
}



/* Footer */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: var(--whiteColor);
  padding: clamp(3.75rem, 3rem + 3vw, 5rem) 0 0;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--themeColor) 50%, transparent 100%);
  opacity: 0.6;
}

.footer-logo {
  width: clamp(9.375rem, 8.7421rem + 3.1646vw, 12.5rem);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-desc {
  color: rgba(244, 244, 244, 0.75);
  line-height: 1.7;
}

.footer-title {
  margin-bottom: clamp(1.25rem, 1rem + 1vw, 1.75rem);
  color: var(--themeColor);
  letter-spacing: 0.5px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: clamp(2.5rem, 2rem + 2vw, 3.125rem);
  height: 3px;
  background: linear-gradient(90deg, var(--themeColor) 0%, transparent 100%);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 5px;
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--themeColor);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--whiteColor);
  padding-left: 4px;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-contact p {
  color: rgba(244, 244, 244, 0.7);
  line-height: 1.6;
}

.footer-contact-link {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: rgba(244, 244, 244, 0.7);
  word-break: break-all;
  overflow-wrap: break-word;
}

.footer-contact-link:hover {
  color: var(--secondaryColor)
}

.footer-contact .semibold {
  color: var(--whiteColor);
}

.footer-icon {
  width: clamp(2.5rem, 2.25rem + 1vw, 2.875rem);
  height: clamp(2.5rem, 2.25rem + 1vw, 2.875rem);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: #1E293B;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  aspect-ratio: 1;
}

.footer-icon img {
  filter: brightness(0) saturate(100%) invert(75%) sepia(24%) saturate(265%) hue-rotate(176deg) brightness(83%) contrast(85%);
  width: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  height: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  object-fit: contain;
  transition: all 0.3s ease;
}

.footer-icon:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, #3A3A60 100%);
  border-color: var(--themeColor);
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 8px 20px #7877C6;
}

.footer-icon:hover img {
  transform: scale(1.1);
}

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 20%, rgba(255, 255, 255, 0.1) 80%, transparent 100%);
}

.footer-copyright svg {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  30% {
    transform: scale(1.1);
  }

  20%,
  40% {
    transform: scale(1);
  }
}

.footer-legal-link {
  color: rgba(244, 244, 244, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.footer-legal-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--themeColor);
  transition: width 0.3s ease;
}

.footer-legal-link:hover {
  color: var(--whiteColor);
}

.footer-legal-link:hover::after {
  width: 100%;
}

.footer-separator {
  color: rgba(244, 244, 244, 0.3);
}

.fill-theme {
  fill: var(--themeColor);
  outline: 0;
  color: var(--themeColor);
}

.product-section-row {
  justify-content: center;
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: none;
    box-shadow: none;
    padding: 0;
    width: auto;
    gap: 35px;
  }

  .nav-menu a {
    color: var(--whiteColor);
  }
}

@media (max-width: 992px) {
  .hero-banner img {
    max-width: 350px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    align-items: flex-start;
  }
}

/*  PRODUCTS PAGE */
.product-section {
  gap: 70px;
}

.product-section-row {
  padding-bottom: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem);
}

.ai-product-section {
  gap: clamp(3rem, 5vw, 6rem);
  padding: 0;
}

.ai-btn-primary {
  padding: 12px 26px;
  background: linear-gradient(120deg, #7877C6 0%, #3A3A60 100%);
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.ai-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #7877C6;
  color: #fff;
}

.ai-btn-link {
  padding: 12px 18px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.ai-btn-link:hover {
  color: #E91E63;
  transform: translateX(3px);
}

.ai-card-inner {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0px 7px 24px 0px #24262B;
  border: 1px solid #1B1B1B14;
}

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

.ai-card-image {
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.ai-card-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.ai-card-inner:hover .ai-card-image img {
  transform: scale(1.05);
}



/* Responsive */
@media (max-width: 992px) {
  .ai-product-section {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .ai-features-list {
    text-align: left;
    display: inline-block;
  }
}

@media (max-width: 576px) {
  .ai-card-image {
    min-height: 220px;
    padding: 1.5rem;
  }

  .ai-card-image img {
    max-width: 180px;
  }

  .team-member-card {
    flex-direction: column;
  }

  .team-member-image {
    width: 100%;
  }
}


/*    TECHNOLOGY STACK SECTION */

.tech-stack-wrapper {
  width: 100%;
}

/* Category Header */

.tech-icon-wrapper {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tech-icon-wrapper svg {
  color: white;
}

/* Tech Cards */
.tech-category-section {
  padding-bottom: 80px;
}

.tech-card {
  border-radius: 16px;
  background: linear-gradient(to left, #090719 0%, #131122 100%);
  border: 1px solid #222326;
  padding: 24px;
  transition: all 0.3s ease;
  height: 100%;
}

.tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 18px rgb(86 86 143);
  border-color: rgb(129 128 167);
}


/* Responsive */
@media (max-width: 767px) {

  .tech-icon-wrapper {
    margin: 0 auto;
  }
}


.product-section {
  gap: 50px;
}

.product-section-row {
  margin-top: 50px;
}


/* Tech Card Title and Subtitle */
.tech-title {
  color: var(--primaryColor);
}

.tech-subtitle {
  color: #6c757d;
}


/* Cloud & DevOps Header - Orange to Red Gradient */
.tech-category-header.tech-cloud {
  background: linear-gradient(135deg, #FF9800 0%, #FF5252 100%);
}

/* Our vision */
.our-vision {
  background-color: #3A404B1A;
  padding: clamp(4.375rem, 3.8054rem + 2.8481vw, 7.1875rem) 0px;
}

.vision-card {
  border-radius: 34px;
  background: linear-gradient(to left, #090719 0%, #131122 100%);
  border: 1px solid #FFFFFF17;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px 30px;
  z-index: 1;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vision-card::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 22px;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      var(--themeColor) 60deg,
      transparent 120deg,
      transparent 180deg,
      var(--themeColor) 240deg,
      transparent 300deg,
      transparent 360deg);
  animation: rotateBorder 4s linear infinite;
  z-index: -1;
}

.vision-card::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: linear-gradient(to left, #090719 0%, #131122 100%);
  border-radius: 15px;
  z-index: -1;
}

@keyframes rotateBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.vision-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.vision-card:hover::before {
  animation-duration: 1.5s;
  filter: blur(0.4px);
}

.creative-vector-icon1 {
  position: absolute;
  left: -30px;
  top: -10px;
}

.creative-vector-icon2 {
  position: absolute;
  top: -15px;
  right: -5%;
}

/* Image gallery */
.team-section {
  padding: clamp(4.375rem, 2.856rem + 7.5949vw, 11.875rem) 0px clamp(0rem, -1.2658rem + 6.3291vw, 6.25rem);
}

.team-section-row {
  align-items: center;
  justify-content: space-evenly;
}

.image-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.img-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 300px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.image-gallery {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.img-card:hover .image-gallery {
  transform: scale(1.08);
}

.img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 40%,
      rgba(0, 0, 0, 0.35));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.img-card:hover::after {
  opacity: 1;
}

.img-card:hover {
  transform: translateY(-6px);
}

.vector-4 {
  position: absolute;
}

.learn-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 10px;
  color: var(--whiteColor);
  background: transparent;
  text-decoration: none;
  z-index: 1;
}

.learn-link::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #7877C6, #3A3A60);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}


/* Careers Page - Job Listings */
.job-search-input {
  width: 100%;
  padding: clamp(0.875rem, 0.8038rem + 0.3544vw, 1.25rem) clamp(1rem, 0.8734rem + 0.6329vw, 1.625rem) clamp(0.875rem, 0.8038rem + 0.3544vw, 1.25rem) clamp(3rem, 2.8734rem + 0.6329vw, 3.625rem);
  border: 1px solid #7877C666;
  border-radius: 8px;
  background: linear-gradient(to left,
      #090619 0%,
      #323040 100%);
  transition: all 0.3s ease;
  color: var(--whiteColor);
}

.select-arrow {
  position: absolute;
  right: 15px;
  bottom: 22px;
}

select {
  background-color: #000;
  color: var(--whiteColor);
}

select:focus {
  background-color: #000;
  color: var(--whiteColor);
  box-shadow: none;
}

.job-search-input:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px #7877c64a;
}

.search-icon {
  position: absolute;
  left: clamp(1rem, 0.8734rem + 0.6329vw, 1.625rem);
  top: 50%;
  transform: translateY(-50%);
  color: #6B7280;
  pointer-events: none;
}

.job-filter-select {
  width: 100%;
  padding: clamp(0.875rem, 0.8038rem + 0.3544vw, 1.25rem) clamp(1rem, 0.8734rem + 0.6329vw, 1.625rem);
  border: 1px solid #7877C666;
  color: var(--whiteColor);
  border-radius: 8px;
  background: linear-gradient(to left,
      #090619 0%,
      #323040 100%);
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right clamp(1rem, 0.8734rem + 0.6329vw, 1.625rem) center; */
  padding-right: clamp(2.5rem, 2.3734rem + 0.6329vw, 3.125rem);
}

.job-filter-select:focus {
  outline: none;
  border-color: var(--themeColor);
  box-shadow: 0 0 0 3px #7877c64a;
}

.job-listings-container {
  gap: clamp(1.25rem, 1.0759rem + 0.8861vw, 2.125rem);
}

.job-container {
  gap: 35px;
}

.job-card {
  background: linear-gradient(to left,
      #090619 0%,
      #323040 100%);
  padding: clamp(1.5rem, 1.2468rem + 1.2658vw, 2.75rem);
  border-radius: 12px;
  border: 1px solid #7877C699;
}


.job-meta {
  display: flex;
  flex-direction: column;
  gap: clamp(0.75rem, 0.6234rem + 0.6329vw, 1.375rem);
}

.job-meta-item img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7497%) hue-rotate(146deg) brightness(98%) contrast(103%);
}

.job-btn-secondary {
  padding: 12px 26px;
  background: #FFFDF3;
  color: #19191A;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.job-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgb(125 124 124 / 30%);
}


/* How to Get Started with Ranax Section */
.get-started-icon {
  width: clamp(3.5rem, 3.2468rem + 1.2658vw, 4.75rem);
  height: clamp(3.5rem, 3.2468rem + 1.2658vw, 4.75rem);
}

.get-started-image-wrapper {
  width: 100%;
  border-radius: 0px 20px 0px 100px;
  overflow: hidden;
  position: relative;
}

.get-started-image {
  width: 100%;
  object-fit: cover;
  height: 500px;
  display: block;
}

.team-count-badge {
  position: absolute;
  top: clamp(2rem, 1.7468rem + 1.2658vw, 3.25rem);
  left: clamp(2rem, 1.7468rem + 1.2658vw, 3.25rem);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  padding: clamp(1.5rem, 1.2468rem + 1.2658vw, 2.75rem);
  border-radius: 16px;
}

.get-started-text {

  h4,
  p {
    color: #16205F;
  }
}

@media (max-width: 768px) {
  .team-count-badge {
    padding: 1.5rem;
  }
}



@media (max-width: 1200px) {
  .container {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
}

.member-container {
  gap: 35px;
  padding-bottom: 50px;
}

.member-card {
  transition: all 0.3s ease;
}

.member-card img {
  filter: grayscale(100%);
  transition: all 0.4s ease;
}

.member-card:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.member-card h2 {
  color: #1A1A1A;
  transition: color 0.3s ease;
}

.member-card:hover h2 {
  color: var(--themeColor);
}

.member-card h3 {
  color: #4A4A4A;
}



/* Mega Dropdown */
.mega-dropdown {
  position: relative;
}

.mega-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.mega-dropdown-toggle svg {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-dropdown.active .mega-dropdown-toggle svg {
  transform: rotate(180deg);
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  transform: translateX(-50%) translateY(-10px);
  width: 900px;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow: hidden;
}

.mega-dropdown.active .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega-dropdown-container {
  display: flex;
  border-radius: 12px;
  background: linear-gradient(to left, #090719 0%, #131122 100%);
  border: 1px solid #7877C699;
}

/* Industry Dropdown Specific Styles */
.mega-dropdown-industry .mega-dropdown-menu {
  width: 1100px;
  max-width: 95vw;
  left: -120%;
  transform: translateX(-50%) translateY(-10px);
  margin-left: 0;
  margin-right: 0;
}

.mega-dropdown-industry.active .mega-dropdown-menu {
  transform: translateX(-50%) translateY(0);
  animation: slideDownIndustry 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDownIndustry {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Ensure dropdown stays within viewport */
@media (max-width: 1200px) {
  .mega-dropdown-industry .mega-dropdown-menu {
    width: 95vw;
    left: 50%;
    right: auto;
  }
}

.mega-dropdown-image {
  width: 280px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
  position: relative;
  background: url('../images/png/Industry-drop-down-bg.png') no-repeat center center;
  background-size: cover;
}

.mega-dropdown-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mega-dropdown-industry-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  max-height: 500px;
}

.mega-industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mega-industry-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(to left, #090719 0%, #131122 100%);
  border: 1px solid #FFFFFF17;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.mega-industry-item:hover {
  background: rgb(71 71 117 / 22%);
  border-color: rgb(98 98 163 / 80%);
  transform: translateY(-2px);
}

/* Left Tabs */
.mega-dropdown-tabs {
  width: 270px;
  background: url('../images/png/drop-down-bg.png') no-repeat center center;
  background-size: cover;
  padding: 20px 12px;
  border: 1px solid #7877C699;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.mega-tab {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  border: 1px solid transparent;
}

.mega-tab img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  background-color: #ffffff;
  border-radius: 4px;
  padding: 2px;
}

.mega-tab:hover {
  border: 1px solid #58568a73;
}

.mega-tab:hover img {
  opacity: 1;
}

.mega-tab.active {
  color: #ffffff;
  background: linear-gradient(to left, #504e5769 0%, #93939354 100%);
}

.mega-tab.active img {
  opacity: 1;
}

/* Right Content */
.mega-dropdown-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  max-height: 500px;
}

.mega-content {
  display: none;
}

.mega-content.active {
  display: block;
  animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.mega-content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.mega-service-item {
  padding: 16px;
  border-radius: 16px;
  transition: all 0.3s ease;
  background: linear-gradient(to left, #090719 0%, #131122 100%);
  border: 1px solid #FFFFFF17;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-service-item:hover {
  background: rgb(71 71 117 / 22%);
  border-color: rgb(98 98 163 / 80%);
  transform: translateY(-2px);
}

/* Scrollbar Styling */
.mega-dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.mega-dropdown-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.mega-dropdown-content::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

@media (min-width: 992px) {
  .mega-dropdown-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  .mega-dropdown {
    width: 100%;
  }

  .mega-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .mega-dropdown-menu {
    position: absolute;
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
    max-width: none;
    transform: translateY(-10px);
    max-height: 0;
    overflow: hidden;
    margin-top: 10px;
    z-index: 1000;
  }

  .mega-dropdown.active .mega-dropdown-menu {
    max-height: 80vh;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    overflow-y: auto;
  }

  .mega-dropdown-container {
    flex-direction: column;
    min-height: auto;
  }

  .mega-dropdown-tabs {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
  }

  .mega-dropdown-content {
    padding: 20px;
    max-height: none;
    overflow-y: visible;
  }

  .mega-content-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* Industry Dropdown Responsive - Keep horizontal layout */
  .mega-dropdown-industry .mega-dropdown-menu {
    position: absolute;
    left: -20px;
    right: -20px;
    width: calc(100% + 40px);
    max-width: none;
    transform: translateY(-10px);
  }

  .mega-dropdown-industry.active .mega-dropdown-menu {
    transform: translateY(0);
    animation: none;
    max-height: 80vh;
    overflow-y: auto;
  }

  /* .mega-dropdown-industry .mega-dropdown-container {
    flex-direction: row;
  } */

  .mega-dropdown-image {
    /* width: 150px; */
    min-width: 150px;
    height: auto;
    border-radius: 12px 0 0 12px;
  }

  .mega-dropdown-industry-content {
    padding: 20px;
    max-height: none;
    overflow-y: visible;
    flex: 1;
  }

  .mega-industry-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .mega-industry-item {
    padding: 16px;
  }

  /* Scrollbar for mobile dropdown */
  .mega-dropdown-menu::-webkit-scrollbar {
    width: 6px;
  }

  .mega-dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
  }

  .mega-dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--themeColor);
    border-radius: 10px;
  }
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .mega-dropdown-content {
    padding: 15px;
  }

  .mega-dropdown-industry-content {
    padding: 15px;
  }

  .mega-tab {
    padding: 12px 15px;
    font-size: 14px;
  }

  .mega-service-item {
    padding: 14px;
  }

  .mega-industry-item {
    padding: 14px;
  }

  .mega-dropdown-menu {
    max-height: 0;
  }

  .mega-dropdown.active .mega-dropdown-menu {
    max-height: 70vh;
  }
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .mega-dropdown-menu {
    margin-top: 8px;
  }

  .mega-dropdown.active .mega-dropdown-menu {
    max-height: 65vh;
  }

  .mega-dropdown-content {
    padding: 12px;
  }

  .mega-dropdown-industry-content {
    padding: 12px;
  }

  .mega-dropdown-image {
    height: 150px;
  }

  .mega-tab {
    padding: 10px 12px;
    font-size: 13px;
    gap: 8px;
  }

  .mega-tab img {
    width: 20px;
    height: 20px;
  }

  .mega-service-item,
  .mega-industry-item {
    padding: 12px;
  }

  .mega-content-grid,
  .mega-industry-grid {
    gap: 12px;
  }

  /* Hero Section Mobile Responsive */
  .hero {
    padding: 120px 0px 50px;
  }

  .hero-container {
    padding: 1rem;
  }

  .hero-title {
    font-size: 24px !important;
    letter-spacing: 1px;
    line-height: 1.3 !important;
  }

  .hero-section-content {
    gap: 40px;
  }

  .hero-section-content p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .hero-text-bg {
    top: -40px;
    left: 15%;
    transform: translateX(-50%);
    max-width: 80%;
  }

  .hero-bg-img {
    max-width: 100%;
    height: auto;
  }

  /* Hero Buttons Mobile */
  .hero-section-content .d-flex.gap-4 {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
  }

  .hero-container {
    .nav-btn {
      padding: 12px 20px !important;
      font-size: 14px !important;
      text-align: center;
      width: 70%;
      margin: auto;
    }
  }


  .hero-section-content a:not(.nav-btn) {
    font-size: 14px !important;
    text-align: center;
    justify-content: center;
  }

  /* Count Numbers Mobile */
  .count-number {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .count-number>div {
    text-align: center;
    flex: 0 0 45%;
  }

  .count-number h2 {
    font-size: 20px !important;
  }

  .count-number h3 {
    font-size: 12px !important;
  }
}

/* Tablet Hero Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 150px 0px 60px;
  }

  .hero-title {
    font-size: 36px !important;
    letter-spacing: 3px;
  }

  .hero-section-content {
    gap: 100px;
  }

}



/* Decorative Animated Elements - Particles/Stars Effect */
.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.particle-dot {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(120, 119, 198, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(120, 119, 198, 0.6);
  animation: particle-twinkle 3s ease-in-out infinite;
}

.particle-dot.large {
  width: 5px;
  height: 5px;
  background: rgba(37, 99, 235, 0.9);
  box-shadow: 0 0 12px rgba(37, 99, 235, 0.8);
}

.particle-dot.medium {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 243, 0.7);
  box-shadow: 0 0 10px rgba(255, 255, 243, 0.5);
}

@keyframes particle-twinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

/* Floating circles with dots effect */
.circle-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.circle-outer {
  position: relative;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(120, 119, 198, 0.2);
  border-radius: 50%;
  animation: rotate-slow 25s linear infinite;
}

.circle-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px dashed rgba(120, 119, 198, 0.3);
  border-radius: 50%;
  animation: rotate-slow 15s linear infinite reverse;
}

.circle-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--themeColor);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(120, 119, 198, 0.8);
  animation: dot-glow 2s ease-in-out infinite;
}

.circle-dot:nth-child(1) {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.circle-dot:nth-child(2) {
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.circle-dot:nth-child(3) {
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.circle-dot:nth-child(4) {
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

@keyframes rotate-slow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes dot-glow {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(120, 119, 198, 0.8);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 25px rgba(120, 119, 198, 1);
    transform: scale(1.3);
  }
}

/* Glowing orbs in background */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.15;
  pointer-events: none;
  animation: float-glow 10s ease-in-out infinite;
}

.glow-orb.purple {
  background: radial-gradient(circle, rgba(120, 119, 198, 0.8) 0%, transparent 70%);
}

.glow-orb.blue {
  background: radial-gradient(circle, rgba(37, 99, 235, 0.8) 0%, transparent 70%);
}

@keyframes float-glow {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(40px, -40px) scale(1.2);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .circle-outer {
    width: 100px;
    height: 100px;
  }

  .circle-inner {
    width: 65px;
    height: 65px;
  }

  .circle-dot {
    width: 7px;
    height: 7px;
  }

  .particle-dot {
    width: 2px;
    height: 2px;
  }
}


/* Heading Background Glow Effect */
.heading-glow-bg {
  position: relative;
  z-index: 1;
}

.heading-glow-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(120, 119, 198, 0.4) 0%, rgba(37, 99, 235, 0.25) 40%, transparent 70%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

.heading-glow-bg.blue::before {
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.5) 0%, rgba(120, 119, 198, 0.3) 40%, transparent 70%);
}

.heading-glow-bg.purple::before {
  background: radial-gradient(ellipse at center, rgba(120, 119, 198, 0.5) 0%, rgba(88, 86, 138, 0.3) 40%, transparent 70%);
}

@keyframes glow-pulse {

  0%,
  100% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

/* Responsive */
@media (max-width: 768px) {


  .heading-glow-bg::before {
    width: 500px;
    height: 350px;
    filter: blur(50px);
  }
}


/* Additional Mobile Responsive Styles */
@media (max-width: 576px) {

  /* Hero Section for other pages (not index) */
  .hero-serction {
    height: 70vh !important;
  }

  /* About Us Section Mobile */
  .about-img {
    margin-top: 20px;
  }

  /* Services Section Mobile */
  .services-card {
    padding: 24px 20px;
  }

  /* Why Choose Section Mobile */
  .why-choose-section {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .why-choose-card {
    padding: 24px 20px;
    flex-direction: column;
    text-align: center;
  }

  .why-choose-card img {
    margin: 0 auto;
  }

  /* Testimonials Mobile */
  .testimonial-box {
    padding: 20px;
  }

  /* CTA Section Mobile */
  .cta-section {
    padding: 40px 20px;
    border-radius: 30px;
  }

  /* Footer Mobile */
  .footer {
    padding: 40px 0 0;
  }

  .footer-icon {
    width: 40px;
    height: 40px;
  }

  .section-pt-pb {
    padding: 50px 0;
  }

  .why-choose-container {
    padding: 50px 0;
  }

  .img-card {
    height: 100%;
  }

  .img-top {
    margin-top: 0px !important;
  }
}

/* Additional Tablet Responsive Styles */
@media (max-width: 768px) {

  /* Hero Section for other pages (not index) */
  .hero-serction {
    height: 70vh !important;
  }



  /* Services Tablet */
  .services-card {
    padding: 30px 24px;
  }

  /* Why Choose Tablet */
  .why-choose-section {
    padding: 40px 20px;
  }

  .why-choose-card {
    padding: 32px 24px;
  }


  /* Testimonials Tablet */
  .testimonial-box {
    padding: 24px;
  }
}


/* ============================================
   FAQ Section Styles - Premium Design
   ============================================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  position: relative;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(59, 130, 246, 0.08) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #8B5CF6 0%, #3B82F6 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.faq-item:hover::before,
.faq-item.active::before {
  opacity: 1;
}

.faq-item:hover {
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 2rem 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(139, 92, 246, 0.3) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item.active .faq-question::after {
  opacity: 1;
}

.faq-question:hover {
  background: rgba(139, 92, 246, 0.05);
}

.faq-question span {
  flex: 1;
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.faq-item:hover .faq-question span,
.faq-item.active .faq-question span {
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  padding: 6px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 50%;
  color: #8B5CF6;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover .faq-icon {
  background: rgba(139, 92, 246, 0.25);
  transform: scale(1.1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg) scale(1.1);
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s ease, opacity 0.3s ease;
  padding: 0 2.5rem;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding: 16px 2rem 2rem 2rem;
  opacity: 1;
}

.faq-answer p {
  position: relative;
  padding-left: 1.5rem;
}

.faq-answer p::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

.faq-item.active {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(59, 130, 246, 0.15) 100%);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.3);
}

/* Number Badge */
.faq-question::before {
  content: attr(data-number);
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #8B5CF6 0%, #3B82F6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: white;
  opacity: 0;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.faq-item:hover .faq-question::before,
.faq-item.active .faq-question::before {
  opacity: 1;
  left: 0px;
}

/* Mobile Responsive */
@media (max-width: 767px) {
  .faq-item {
    border-radius: 16px;
  }

  .faq-question {
    padding: 1.5rem 1.75rem;
    gap: 1.25rem;
  }

  .faq-question::after {
    left: 1.75rem;
    right: 1.75rem;
  }

  .faq-question span {
    font-size: 14px;
    margin-left: 10px;
  }

  .faq-answer {
    padding: 0 1.75rem;
  }

  .faq-item.active .faq-answer {
    padding: 12px 1rem 1rem 1rem;
  }

  .faq-icon {
    width: 28px;
    height: 28px;
    padding: 5px;
  }

  .faq-item:hover {
    transform: translateX(4px);
  }

  .faq-question::before {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

/* Animation for FAQ items appearing */
@keyframes faqSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.faq-item {
  animation: faqSlideIn 0.6s ease-out backwards;
}


/* ============================================
   Animated Background Elements
   ============================================ */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Floating Particles */
.floating-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, rgba(120, 119, 198, 0.8) 0%, transparent 70%);
  border-radius: 50%;
  animation: floatParticle 8s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(120, 119, 198, 0.6);
}

@keyframes floatParticle {

  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
    opacity: 0.3;
  }

  25% {
    transform: translateY(-30px) translateX(20px) scale(1.2);
    opacity: 0.8;
  }

  50% {
    transform: translateY(-60px) translateX(-20px) scale(0.8);
    opacity: 0.5;
  }

  75% {
    transform: translateY(-30px) translateX(30px) scale(1.1);
    opacity: 0.7;
  }
}

/* Animated Rings */
.animated-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(120, 119, 198, 0.3);
  border-radius: 50%;
  animation: pulseRing 4s ease-in-out infinite;
}

.animated-ring::before {
  content: '';
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(37, 99, 235, 0.2);
  border-radius: 50%;
  animation: pulseRing 4s ease-in-out infinite 0.5s;
}

@keyframes pulseRing {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.1;
  }
}

/* Gradient Blobs */
.gradient-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(120, 119, 198, 0.4) 0%, transparent 70%);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.blob-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: 7s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(120, 119, 198, 0.3) 0%, transparent 70%);
  bottom: 20%;
  left: 30%;
  animation-delay: 14s;
}

@keyframes blobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(50px, -50px) scale(1.1);
  }

  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Mobile Optimization */
@media (max-width: 767px) {
  .floating-particle {
    width: 6px;
    height: 6px;
  }

  .animated-ring {
    width: 100px;
    height: 100px;
  }

  .gradient-blob {
    filter: blur(40px);
  }

  .blob-1 {
    width: 200px;
    height: 200px;
  }

  .blob-2 {
    width: 180px;
    height: 180px;
  }

  .blob-3 {
    width: 150px;
    height: 150px;
  }

  .features-line-container {
    display: none;
  }
}

/* Team page */
.team-member-card {
  background: #EAEAEA;
  margin-top: clamp(1rem, 0.5696rem + 2.1519vw, 3.125rem);
}

.team-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F3F4F6;
  transition: all 0.3s ease;
}

.team-member-info {
  padding: 20px;
}

.team-social-icon img {
  filter: brightness(0) saturate(100%) invert(20%) sepia(10%) saturate(500%) hue-rotate(180deg);
  transition: filter 0.3s ease;
}

.team-social-icon:hover {
  background: linear-gradient(135deg, var(--themeColor) 0%, #2563EB 100%);
  transform: translateY(-3px);
}

.team-social-icon:hover img {
  filter: brightness(0) invert(1);
}

.member-card h2 {
  color: var(--whiteColor);
  transition: color 0.3s ease;
}

.member-card:hover h2 {
  color: var(--themeColor);
}

.member-card h3 {
  color: var(--whiteLightColor);
}

.section-padding {
  padding-top: 140px;
}

.breadcrumb-card {
  background: linear-gradient(150deg, #474553 0%, #0F0D1F 100%);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  padding: 12px 30px;
  width: fit-content;
  flex-wrap: wrap;
}

.blog-img {
  border: 1px solid #E6E6FA;
  border-radius: 6px;
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.recent-post-img {
  border: 1px solid #E6E6FA;
  border-radius: 6px;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-icon-bg {
  background: linear-gradient(170deg, #7877C6 0%, #3A3A60 100%);
  padding: 6px;
  border-radius: 6px;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 👈 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* 👈 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recent-post-card {
  border: 1px solid #FFFDF3;
  padding: 12px 16px;
  border-radius: 6px;
}

.borderBottom {
  border-bottom: 1px solid #FFFDF3;
}


/* Breadcrumb Link */
.breadcrumb-link {
  text-decoration: none;
}

/* Pagination Buttons */
.pagination-btn {
  padding: 10px 14px;
  border-radius: 6px;
  background: transparent;
  color: #FFFDF3;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid #7877C666;
}

.pagination-btn:hover {
  border-color: #7877C6;
  color: #7877C6;
}

.pagination-btn-active {
  padding: 10px 14px;
  border: 1px solid #7877C6;
  border-radius: 6px;
  background: #7877C6;
  color: #FFFDF3;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  min-width: 40px;
}

.pagination-btn-number {
  min-width: 40px;
}

.vector-light-bg {
  position: absolute;
  right: 0;
  bottom: -175px;
}


/* Our Products Section */
.product-card {
  border-radius: 10px;
  background: linear-gradient(122deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0.1) 60%,
      rgba(81, 81, 81, 0.2) 100%);
  padding: 1px;
  transition: all 0.4s ease;
  height: 100%;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 10px;
  background: linear-gradient(135deg, #393746 0%, #0C091B 100%);
  z-index: 1;
}

.product-card>* {
  position: relative;
  z-index: 2;
}

.product-card {
  padding: 32px 24px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(120, 119, 198, 0.3);
}


.product-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}


.product-features li svg {
  stroke: var(--themeColor);
  flex-shrink: 0;
}

.view-more {
  padding: 8px 22px;
  background: linear-gradient(180deg, #7877C6 0%, #3A3A60 100%);
  border-radius: 100px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.view-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #7877C6;
  color: #fff;
}

.img-top {
  margin-top: -60px;
}

.left-vector-light-bg {
  position: absolute;
  left: 0;
  bottom: -100px;
}

.features-card {
  border-radius: 12px;
  background: linear-gradient(to left,
      #090719 0%,
      #131122 100%);
  border: 1px solid #FFFFFF17;
  padding: 24px;
  transition: all 0.4s ease;
  overflow: hidden;
}


/* Features Icon */
.features-row {
  justify-content: center;
  padding-top: 80px;
}

.features-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.features-line {
  padding-top: 40px;
  height: 80%;
}

.features-line img {
  height: 90%;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.features-list li svg {
  flex-shrink: 0;
}

/* list color */
.features-list.blue li svg {
  stroke: #2563EB;
}

.features-list.violet li svg {
  stroke: #9333EA;
}

.features-list.green li svg {
  stroke: #16A34A;
}

.features-list.orange li svg {
  stroke: #EA580C;
}

.features-list.pink li svg {
  stroke: #DB2777;
}

.features-list.blue-munsell li svg {
  stroke: #0891B2;
}

.features-list.red li svg {
  stroke: #DC2626;
}

/* Filter */
.pink-icon {
  filter: brightness(0) saturate(100%) invert(41%) sepia(57%) saturate(6765%) hue-rotate(315deg) brightness(86%) contrast(100%);
}

.blue-munsell-icon {
  filter: brightness(0) saturate(100%) invert(42%) sepia(70%) saturate(5541%) hue-rotate(170deg) brightness(99%) contrast(94%);
}

.binary-plan-row {
  justify-content: space-between;
}


/* Binary Plan Demos Section */
.binary-demo-container {
  border-radius: 16px;
  background: linear-gradient(135deg, #393746 0%, #0C091B 100%);
  transition: all 0.4s ease;
  overflow: hidden;
}

.binary-demo-header {
  padding-bottom: 20px;
  background: linear-gradient(180deg, #7877C6 0%, #3A3A60 100%);
  padding: 24px;
}

.binary-content {
  padding: 34px 24px;
}

.binary-demo-card {
  background: var(--whiteColor);
  border-radius: 12px;
  padding: 14px 20px;
  transition: all 0.3s ease;
}

.binary-demo-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(120, 119, 198, 0.2);
}

.binary-demo-card-content {
  flex: 1;
}

.binary-demo-card-content p {
  color: var(--primaryColor);
  margin: 0;
}

.binary-demo-card .nav-btn {
  padding: 10px 24px !important;
  font-size: 14px !important;
  white-space: nowrap;
  margin-left: 15px;
}



/* MLM Plans Tabs */
.mlm-tabs-wrapper {
  border-bottom: 1px solid #fffdf366;
  padding-bottom: 12px;
}

.mlm-tabs {
  border: none !important;
  gap: 20px;
  flex-wrap: wrap;
}

.mlm-tab-btn {
  color: var(--whiteColor) !important;
  border: none !important;
  background: linear-gradient(170deg, #393746 0%, #0C091B 100%) !important;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 600 !important;
  padding: 6px 16px !important;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 5px;
  margin-bottom: -2px;
}

.mlm-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: all 0.3s ease;
}

.mlm-tab-btn:hover {
  color: var(--whiteColor) !important;
  background: rgba(120, 119, 198, 0.1) !important;
}

.mlm-tab-btn.active {
  color: var(--whiteColor) !important;
  background: linear-gradient(180deg, #7877C6 0%, #3A3A60 100%) !important;
}


.tab-content {
  padding-top: 40px;
}



/* ============ BLOG DETAILS PAGE ============ */
/* Blog Details Section */
.blog-details-section {
  padding: 24px 0 clamp(4.375rem, 3.9953rem + 1.8987vw, 6.25rem);
}

.author-card {
  background: url('../images/png/author-bg-img.png') center/cover no-repeat;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.author-image-wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.author-image {
  width: 100px;
  height: auto;
  border-radius: 12px;
  border: 1px solid #FFFFFF80;
}

.author-info {
  border-bottom: 1px solid #ffffff24;
  position: relative;
  z-index: 2;
}

.social-media-card {
  background: url('../images/png/social-media-bg.png') center/cover no-repeat;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

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

.author-container {
  gap: 30px;
}

.toc-list li {
  position: relative;
  padding: 6px 18px;
}

.toc-list li:first-child {
  border-left: 3px solid var(--themeColor);
}

.toc-list a {
  color: var(--whiteLightColor);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.toc-list a:hover {
  color: var(--themeColor);
}

/* Blog Details Section */
.blog-hero-section {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 462px;
}

.blog-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.blog-category-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #F1ECFF;
  border-radius: 20px;
  padding: 5px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: #6C40FF;
}

.blog-category-badge::before {
  content: '';
  width: 14px;
  height: 14px;
  background: #6C40FF;
  border-radius: 50%;
  flex-shrink: 0;
}

.blog-overlay-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  padding: 60px 20px 20px;
  z-index: 2;
}

.blog-header {
  padding: 20px 0;
}

.blog-meta {
  margin-top: 12px;
}

.blog-link {
  color: var(--themeColor);
}

/* Related Articles Section */
.article-card {
  border-radius: 10px;
  overflow: hidden;
  background: #F8F8F8;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.article-card:hover {
  transform: translateY(-8px);
  border-color: var(--themeColor);
  box-shadow: 0 15px 30px rgba(120, 119, 198, 0.3);
}
.article-card h4{
  color: #1B1B1F;
}
.article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 6px;
}

.article-card:hover .article-image {
  transform: scale(1.05);
}

.article-content {
  padding: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.article-category {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  color: var(--themeColor);
}

.article-category::before {
  content: '';
  width: 14px;
  height: 14px;
  background: #6C40FF;
  border-radius: 50%;
}

.article-meta {
  margin-top: auto;
  span{
    color: #1B1B1F;
  }
}

.social-media-bottom-card {
  background: url(../images/png/social-media-bottom-img.png) center / cover no-repeat;
  border-radius: 12px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.borderTop{
  border-top:2px solid #ffffff52;
  margin-top: 30px;
}