
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  
}

body {
  font-family: 'Poppins', sans-serif;
  background: radial-gradient(circle at center, #1c0033 0%, #0e001a 70%);
  color: #f5f5f5;
  overflow-x: hidden;
  overflow-y: auto;
}

footer {
width: 100%;
}

.navbar { position: fixed; top: 20px; left: 50%; transform: translateX(-50%); background: rgba(10,10,10,0.85); backdrop-filter: blur(12px); padding: 12px 40px; border-radius: 50px; display: flex; align-items: center; gap: 40px; z-index: 1000; border: 1px solid #6c018c; max-width: 90%; width: fit-content;  }
.navbar:hover {
  box-shadow: 0 12px 40px rgba(108, 1, 140, 0.3);
  transform: translateX(-50%) scale(1.02);
}
.logo { font-size: 1.8rem; color: #6c018c; letter-spacing: 2px; font-family: "Lexend", sans-serif; font-optical-sizing: auto; font-weight: 800; font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 20px; font-family: "Lexend", sans-serif; font-optical-sizing: auto; font-weight: 300; font-style: normal; padding-top: 4px; }
.nav-item { text-decoration: none; color: #f5f5f5; font-weight: 500; position: relative; padding: 8px 10px; transition: 0.3s; }
.nav-item::after { content: ""; position: absolute; width: 0; height: 2px; background: #6c018c; left: 0; bottom: -5px; transition: 0.3s; }
.nav-item:hover::after { width: 100%; }
.action-button {
  background: linear-gradient(135deg, #3a034b, #6c018c);
  color: white;
  padding: 12px 30px;
  border-radius: 40px;
  font-family: "Lexend", sans-serif;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  white-space: nowrap;
}

.action-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: 0.5s;
}

.action-button:hover::before {
  left: 100%;
}

.action-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(108, 1, 140, 0.5);
}
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 10px; z-index: 1001; }
.hamburger-line { display: block; width: 24px; height: 3px; background: #f5f5f5; margin: 5px 0; transition: 0.3s; }
.hamburger.active .hamburger-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger-line:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }



/* Hero Section */
.hero {
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 20px 20px;
  position: relative;
  overflow: hidden;
}

.glow-orbs::before,
.glow-orbs::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #3a034b 0%, transparent 70%);
  border-radius: 50%;
  top: 20%;
  left: 60%;
  transform: translate(-50%, -50%);
  animation: orbFloat 12s ease-in-out infinite alternate;
  z-index: -1;
}

.glow-orbs::after {
  width: 200px;
  height: 200px;
  top: 70%;
  left: 30%;
  background: radial-gradient(circle, #6c018c 0%, transparent 70%);
  animation-delay: 6s;
}

@keyframes orbFloat {
  from { transform: translate(-50%, -50%) scale(1); }
  to { transform: translate(-45%, -55%) scale(1.2); }
}

.star {
  position: absolute;
  background: purple;
  border-radius: 50%;
  opacity: 0.8;
  animation: twinkle 1.5s infinite alternate, moveUp 5s linear infinite;
  z-index: -1;
}

@keyframes twinkle {
  0% { opacity: 0.8; }
  100% { opacity: 0.4; }
}

@keyframes moveUp {
  0% { transform: translateY(100vh); }
  100% { transform: translateY(-10vh); }
}

/* Ensure foreground elements are above the orbs */
.limited-offer-label,
.hero-title,
.hero-subtext,
.hero-buttons,
.hero-access {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.7rem;
  font-weight: 700;
  text-shadow: 0 0 15px #222222;
  margin-bottom: 20px;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  max-width: 90%;
}

.hero-title-inside {
  font-size: 3.7rem;
  text-shadow: 0 0 15px #222222;
  margin-bottom: 20px;
  color: #bf05f8;
}

.hero-title-word {
  color: white;
}

.hero-subtext {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 1200px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-learn-button {
  display: block;
  cursor: pointer;
  color: white;
  margin: 0 auto;
  position: relative;
  text-decoration: none;
  font-weight: 600;
  border-radius: 100px;
  overflow: hidden;
  padding: 2px;
  isolation: isolate;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-learn-button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-learn-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 400%;
  height: 100%;
  background: linear-gradient(115deg, #5e0d77, #6c018c, #bf05f8);
  background-size: 25% 100%;
  animation: an-at-keyframe-css-at-rule-that-translates-via-the-transform-property-the-background-by-negative-25-percent-of-its-width-so-that-it-gives-a-nice-border-animation_-We-use-the-translate-property-to-have-a-nice-transition-so-it_s-not-a-jerk-of-a-start-or-stop
    0.75s linear infinite;
  animation-play-state: running;
  translate: -5% 0%;
  transition: translate 0.25s ease-out;
}

.hero-learn-button:hover::before {
  animation-play-state: running;
  transition-duration: 0.75s;
  translate: 0% 0%;
}

@keyframes an-at-keyframe-css-at-rule-that-translates-via-the-transform-property-the-background-by-negative-25-percent-of-its-width-so-that-it-gives-a-nice-border-animation_-We-use-the-translate-property-to-have-a-nice-transition-so-it_s-not-a-jerk-of-a-start-or-stop {
  to { transform: translateX(-25%); }
}

.hero-learn-button span {
  position: relative;
  display: block;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  background: #6c018c;
  border-radius: 100px;
  height: 100%;
  transition: background 0.3s ease;
}

.hero-learn-button:hover span {
  background: #7b01a1;
}

.hero-access {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  max-width: 100%;
}

.hero-requirements {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 100%;
}

.requirement-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ccc;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 1rem;
}

.requirement-icon {
  font-size: 1.2rem;
}

.requirement-text {
  color: #ccc;
}

/* Limited Offer Label */
.limited-offer-label {
  display: inline-flex; /* Changed to inline-flex for better centering */
  justify-content: center; /* Center text horizontally */
  align-items: center; /* Center text vertically */
  background: #18002c;
  color: white;
  padding: 10px 20px; /* Increased horizontal padding for balance */
  border: 2px solid #3a034b;
  border-radius: 50px;
  font-size: 0.8rem;
  font-family: "TrapRegular", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  height: 40px;
  line-height: 40px; /* Updated line-height to match height */
  text-align: center;
}

/* Media Queries */

/* Ultra-Wide Screens (1920px and above) */
@media (min-width: 1920px) {
  .limited-offer-label {
    font-size: 0.9rem; /* Adjusted font size */
    padding: 10px 30px; /* Increased padding for larger screens */
  }
  .hero-title,
  .hero-title-inside {
    font-size: 4.5rem;
  }
  .hero-subtext {
    font-size: 1.6rem;
  }
}

/* Large Desktops (1440px - 1920px) */
@media (max-width: 1440px) {
  .limited-offer-label {
    font-size: 0.85rem; /* Slightly adjusted font size */
    padding: 8px 25px; /* Adjusted padding */
  }
  .hero-title,
  .hero-title-inside {
    font-size: 3.2rem;
  }
  .hero-subtext {
    font-size: 1.3rem;
  }
  .glow-orbs::before {
    width: 250px;
    height: 250px;
  }
  .glow-orbs::after {
    width: 180px;
    height: 180px;
  }
}

/* Desktops and Laptops (1024px - 1440px) */
@media (max-width: 1024px) {
  .limited-offer-label {
    font-size: 1rem; /* Adjusted font size */
    padding: 6px 20px; /* Adjusted padding */
  }
  .hero-title,
  .hero-title-inside {
    font-size: 2.8rem;
  }
  .hero-subtext {
    font-size: 1.2rem;
    max-width: 80%;
  }
  .glow-orbs::before {
    width: 200px;
    height: 200px;
  }
  .glow-orbs::after {
    width: 150px;
    height: 150px;
  }
}

/* Tablets (768px - 1024px) */
@media (max-width: 768px) {
  .limited-offer-label {
    font-size: 0.9rem; /* Adjusted font size */
    padding: 6px 15px; /* Adjusted padding */
  }
  .hero {
    padding: 80px 15px 20px;
  }
  .hero-title,
  .hero-title-inside {
    font-size: 1.2rem;
  }
  .hero-subtext {
    font-size: 1rem;
    max-width: 90%;
  }
  .glow-orbs::before {
    width: 180px;
    height: 180px;
  }
  .glow-orbs::after {
    width: 120px;
    height: 120px;
  }
  .hero-access {
    margin-top: 20px;
    gap: 15px;
  }
  .hero-requirements {
    flex-direction: column;
    gap: 15px;
  }
}

/* Mobile Devices (576px - 768px) */
@media (max-width: 576px) {
  .limited-offer-label {
    font-size: 0.7rem; /* Adjusted font size */
    padding: 5px 12px; /* Adjusted padding */
  }
  .hero-title,
  .hero-title-inside {
    font-size: 1.4rem !important;
  }
  .hero-subtext {
    font-size: 0.9rem;
  }
  .glow-orbs::before {
    width: 150px;
    height:  150px;
  }
  .glow-orbs::after {
    width: 100px;
    height: 100px;
  }
  .hero-access {
    gap: 10px;
    margin-top: 15px;
  }
  .requirement-item {
    font-size: 0.9rem;
  }
  .requirement-icon {
    font-size: 1.1rem;
  }
}

/* Small Mobile Devices (360px - 576px) */
@media (max-width: 360px) {
  .limited-offer-label {
    font-size: 0.6rem; /* Adjusted font size */
    padding: 4px 10px; /* Adjusted padding */
  }
  .hero-title,
  .hero-title-inside {
    font-size: 1.6rem;
  }
  .hero-subtext {
    font-size: 0.85rem;
  }
  .glow-orbs::before {
    width: 120px;
    height: 120px;
  }
  .glow-orbs::after {
    width: 80px;
    height: 80px;
  }
  .hero-access {
    gap: 10px;
  }
  .requirement-item {
    font-size: 0.85rem;
  }
  .requirement-icon {
    font-size: 1rem;
  }
}

/* Very Small Devices (below 360px) */
@media (max-width: 320px) {
  .limited-offer-label {
    font-size: 0.5rem;
    padding: 4px 8px;
  }
  .hero-title,
  .hero-title-inside {
    font-size: 1.2rem;
  }
  .hero-subtext {
    font-size: 0.8rem;
  }
  .glow-orbs::before {
    width: 100px;
    height: 100px;
  }
  .glow-orbs::after {
    width: 60px;
    height: 60px;
  }
  .hero-access {
    gap: 10px;
  }
  .requirement-item {
    font-size: 0.8rem;
  }
  .requirement-icon {
    font-size: 0.9rem;
  }
}
/* Stats Section */
.stats-section-h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto -50px auto;
  background: #8D13CF;
  background: linear-gradient(to bottom, #8D13CF 0%, #18002C 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  text-align: center;
  font-size: 80px;
}

.stats-section-h1 h1 {
  font-size: 120px !important;
}


.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4em;
  padding: 2em 20px;
  margin-top: 150px; /* Lowered on desktop */
  max-width: 100%;
  box-sizing: border-box;
}

.stats-card {
  position: relative;
  width: 19em;
  height: 25em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2a0140 0%, #3f005e 100%);
  color: white;
  padding: 1em 2em 1em 1em;
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  row-gap: 1em;
}

.stats-card img {
  width: 12em;
  margin-right: 1em;
  animation: move 10s ease-in-out infinite;
  z-index: 5;
}

.stats-image:hover {
  cursor: grab;
}

.stats-card::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  inset: -3px;
  border-radius: 10px;
  background: radial-gradient(#974cc9, transparent, transparent);
  transform: translate(-5px, 250px);
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.stats-card:hover::before {
  width: 150%;
  height: 100%;
  margin-left: -4.25em;
}

.stats-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 20px;
  background: rgba(23, 23, 23, 0.7);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}

.stats-moon {
  z-index: 2;
  transition: 0.4s ease-in-out;
}

.stats-moon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  opacity: 1;
  box-shadow: 0px 0px 200px rgba(148, 70, 255, 1),
              0px 0px 200px rgba(103, 36, 185, 1),
              inset #8034e9 0px 0px 40px -12px;
  z-index: -1;
  transition: 1s ease;
  animation: glowing-stars 1s linear alternate infinite;
}

.stats-card:hover .stats-moon::before {
  filter: blur(3px);
}

.stats-moon::after {
  content: "";
  top: -8.5%;
  left: -8.5%;
  position: absolute;
  width: 7.5em;
  height: 7.5em;
  border: none;
  outline: none;
  border-radius: 50%;
  background: #f9f9fb;
  box-shadow: 0px 0px 100px rgba(148, 70, 255, 0.8),
              0px 0px 100px rgba(103, 36, 185, 0.8),
              inset #8034e9 0px 0px 40px -12px;
  transition: 0.4s ease-in-out;
  z-index: -1;
}

.stats-title, .stats-p {
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.stats-title {
  font-size: 59px;
}

.stats-p {
  font-size: 19px;
  margin-top: -20px;
}

@keyframes move {
  0% { transform: translateX(0em) translateY(0em); }
  25% { transform: translateY(-1em) translateX(-1em); rotate: -10deg; }
  50% { transform: translateY(1em) translateX(-1em); }
  75% { transform: translateY(-1.25em) translateX(1em); rotate: 10deg; }
  100% { transform: translateX(0em) translateY(0em); }
}

@keyframes glowing-stars {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

/* Responsive Design */

/* Screens up to 1104px (to fix "Not just words." visibility) */
@media screen and (max-width: 1104px) {
  .stats-section-h1 {
    margin-bottom: -40px; /* Reduce negative margin to prevent text from being pushed out */
    padding: 0 10px; /* Add padding to ensure text stays within bounds */
    font-size: 80px;
  }

  .stats-section-h1 h1 {
    font-size: 80px; /* Slightly smaller font to fit better */
    line-height: 1.2; /* Improve readability and prevent clipping */
  }
}

/* Tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
  .stats-section-h1{
    font-size: 50px;
  }

  .stats-section {
    gap: 2em;
    padding: 1.5em 15px;
    margin-top: 100px; /* Adjusted for tablets */
  }

  .stats-card {
    width: 16em;
    height: 20em;
    padding: 0.8em 1.5em;
    row-gap: 0.8em;
  }

  .stats-card img {
    width: 10em;
    margin-right: 0.8em;
  }

  .stats-title {
    font-size: 40px;
  }

  .stats-p {
    font-size: 16px;
    margin-top: -15px;
  }

  .stats-moon::after {
    width: 6em;
    height: 6em;
    top: -10%;
    left: -10%;
  }
}

/* Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
  .stats-section-h1 {
    margin-bottom: 200px !important;
  }

  .stats-section-h1{
    font-size: 30px !important;
  }

  .stats-section {
    flex-direction: column;
    gap: 1.5em;
    padding: 1em 10px;
    margin-top: 80px; /* Adjusted for mobile */
  }

  .stats-card {
    width: 90%;
    max-width: 14em;
    height: 18em;
    padding: 0.6em 1em;
    row-gap: 0.6em;
  }

  .stats-card img {
    width: 8em;
    margin-right: 0.5em;
    animation: none; /* Disable animation for performance */
  }

  .stats-title {
    font-size: 30px;
  }

  .stats-p {
    font-size: 14px;
    margin-top: -10px;
  }

  .stats-card::before {
    transform: translate(-5px, 200px);
  }

  .stats-card:hover::before {
    width: 120%;
    margin-left: -2em;
  }

  .stats-moon::after {
    width: 5em;
    height: 5em;
    top: -12%;
    left: -12%;
  }

  .stats-moon::before {
    box-shadow: 0px 0px 100px rgba(148, 70, 255, 0.8),
                0px 0px 100px rgba(103, 36, 185, 0.8);
  }
}

/* Large Screens (min-width: 1200px) */
@media screen and (min-width: 1200px) {
  .stats-section {
    margin-top: 200px; /* Further lowered for larger desktops */
  }

  .stats-card {
    width: 20em;
    height: 26em;
  }

  .stats-card img {
    width: 13em;
  }

  .stats-title {
    font-size: 62px;
  }

  .stats-p {
    font-size: 20px;
  }
}
/* Features Section */
.features-container {
  padding: 0 20px;
  margin-top: 190px;
  margin-right: auto;
  margin-left: auto;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  max-width: 1200px;
  width: 100%;
}

.features-gradient-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  padding: 30px;
}

.features-section-h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto -50px auto;
  background: #8D13CF;
  background: linear-gradient(to bottom, #8D13CF 0%, #18002C 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  text-align: center;
  font-size: 80px;
}

.features-section-h1 h1 {
  font-size: 120px !important;
}


.features-card {
  max-width: 550px;
  width: 100%;
  margin-inline: auto;
}

.features-container-card {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(71deg, rgba(28, 0, 51, 0.8), rgba(14, 0, 26, 0.8));
  background-clip: padding-box;
  border-radius: 47px;
  padding: 40px;
}

.features-bg-blue-box::after {
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: -1px;
  right: -1px;
  content: "";
  z-index: -1;
  border-radius: 45px;
  background: linear-gradient(71deg, rgba(28, 0, 51, 0.8), rgba(143, 94, 189, 0.8));
}

.features-card-title {
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  line-height: 40px;
  font-size: 28px;
  padding-bottom: 8px;
}

.features-card-description {
  font-weight: 600;
  line-height: 32px;
  color: hsla(0, 0%, 100%, 0.5);
  font-size: 16px;
  max-width: 470px;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.features-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, rgba(23, 1, 41, 0.5), rgba(136, 0, 255, 0.9));
  border-radius: 50%;
  position: relative;
  margin-bottom: 16px;
}

.features-icon-wrapper::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -2px;
  right: -2px;
  background: linear-gradient(135deg, rgba(63, 27, 99, 0.5), rgba(140, 0, 255, 0.5));
  border-radius: 50%;
  z-index: -1;
}

/* Footer Section */
.footer-overlay {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  background: radial-gradient(circle, #6c018c55 0%, transparent 60%);
  animation: rotateBG 60s linear infinite;
  z-index: 0;
  opacity: 0.2;
}

@keyframes rotateBG {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-glass {
  position: relative;
  z-index: 1;
  backdrop-filter: blur(15px);
  background: rgba(58, 3, 75, 0.1);
  border: 1px solid rgba(108, 1, 140, 0.3);
  border-radius: 45px;
  padding: 3rem;
  box-shadow: 0 0 80px rgba(108, 1, 140, 0.4);
  display: grid;
  grid-template-columns: 1fr 2fr !important;
  gap: 3rem;
  width: 90%;
  margin: 0 auto;
  align-items: center;
}

.footer-logo h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
  letter-spacing: 1px;
}

.footer-logo h2 span {
  color: #6c018c;
  font-weight: bold;
  margin-right: 0.5rem;
  text-shadow: 0 0 8px #6c018c;
}

.footer-logo p {
  color: #ccc;
  font-size: 1rem;
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
}

.footer-links h3 {
  color: #ffffff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
}

.footer-links h3::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #6c018c;
  margin-top: 0.3rem;
  box-shadow: 0 0 10px #6c018c;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  text-shadow: 0 0 8px #6c018c;
}

.footer-bottom {
  grid-column: span 2;
  text-align: center;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #777;
  border-top: 1px solid #2a012f;
  padding-top: 20px;
}

.footer-image {
  max-width: 100%;
  width: 50%;
  margin-left: 3rem;
  margin-top: 3rem;
}

.footer-background-text {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 23vw;
  font-weight: 900;
  background: #8D13CF;
  background: linear-gradient(to bottom, #8D13CF 0%, #160023 76%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.07;
  z-index: -1;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 50px;
  outline: none;
}

.newsletter-form button {
  padding: 10px 20px;
  background: #6c018c;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #bf05f8;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  font-size: 1.6rem;
  color: #ccc;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #bf05f8;
}
/* Policies */
.policy-button {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
}

.policy-button li {
  list-style: none;
}

/* Media Queries for Responsiveness */

/* Ultra-Wide Screens (1920px and above) */
@media (min-width: 1920px) {
  .navbar {
    padding: 14px 50px;
  }
  .logo {
    font-size: 2rem;
  }
  .nav-links {
    gap: 25px;
  }
  .action-button {
    padding: 12px 30px;
  }
  .hero-title, .hero-title-inside {
    font-size: 4.5rem;
  }
  .hero-subtext {
    font-size: 1.6rem;
  }
  .stats-section-h1 h1 {
    font-size: 100px;
  }
  .stats-card {
    width: 22em;
    height: 28em;
  }
  .stats-title {
    font-size: 70px;
  }
  .stats-p {
    font-size: 22px;
  }
  .features-container {
    max-width: 1400px;
  }
  .features-card {
    max-width: 650px;
  }
  .footer-glass {
    width: 90%;
  }
  .footer-logo h2 {
    font-size: 2.2rem;
  }
}

/* Large Desktops (1440px - 1920px) */
@media (max-width: 1440px) {
  .navbar {
    padding: 12px 35px;
    max-width: 95%;
  }
  .logo {
    font-size: 1.7rem;
  }
  .nav-links {
    gap: 18px;
  }
  .hero-title, .hero-title-inside {
    font-size: 3.2rem;
  }
  .hero-subtext {
    font-size: 1.3rem;
  }
  .glow-orbs::before {
    width: 250px;
    height: 250px;
  }
  .glow-orbs::after {
    width: 180px;
    height: 180px;
  }
  .stats-section-h1 h1 {
    font-size: 100px;
  }
  .stats-card {
    width: 18em;
    height: 24em;
  }
  .stats-image {
    width: 10em;
  }
  .stats-title {
    font-size: 50px;
  }
  .stats-p {
    font-size: 17px;
  }
  .features-container {
    max-width: 1000px;
  }
  .features-section-h1{
    font-size: 70px;
  }
  .features-card {
    max-width: 500px;
  }
  .footer-glass {
    width: 90%;
  }
}

/* Desktops and Laptops (1024px - 1440px) */
@media (max-width: 1024px) {
  .navbar {
    padding: 10px 30px;
    max-width: 95%;
  }
  .logo {
    font-size: 1.6rem;
  }
  .nav-links {
    gap: 15px;
  }
  .nav-item {
    padding: 6px 8px;
  }
  .action-button {
    padding: 8px 20px;
  }
  .hero-title, .hero-title-inside {
    font-size: 2.8rem;
  }
  .hero-subtext {
    font-size: 1.2rem;
    max-width: 80%;
  }
  .glow-orbs::before {
    width: 200px;
    height: 200px;
  }
  .glow-orbs::after {
    width: 150px;
    height: 150px;
  }
  .stats-section-h1 h1 {
    font-size: 80px !important;
    margin-bottom: 5px;
  }
  .stats-card {
    width: 16em;
    height: 22em;
  }
  .stats-image {
    width: 9em;
  }
  .stats-title {
    font-size: 45px;
  }
  .stats-p {
    font-size: 16px;
  }
  .features-container {
    max-width: 800px;
  }
  .features-section-h1 h1 {
    font-size: 60px;
    margin-bottom: -50px;
  }
  .features-section-bottom h1 {
    font-size: 60px;
    margin-top: -60px;
  }
  .features-card {
    max-width: 450px;
  }
  .footer-glass {
    width: 90%;
    padding: 2rem;
  }
}

@media (max-width: 975px) {
  .features-section-h1{
    font-size: 60px !important;
  }
}
/* Tablets (768px - 1024px) */
@media (max-width: 768px) {

  .hamburger {
    display: block;
  }
  .nav-links {
    display: none; /* Hidden by default */
    position: fixed;
    top: calc(20px + 64px); /* Adjusted to account for border thickness */
    left: 0;
    right: 0;
    width: 100%; /* Full-width */
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.9));
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 1px solid #6c018c; /* Border on all sides */
    border-radius: 20px; /* Rounded top and bottom */
    box-shadow: 0 10px 20px rgba(108, 1, 140, 0.3);
    z-index: 998; /* Below hamburger (z-index: 1001) */
    transform: translateY(-10px); /* Start above for slide-in */
    opacity: 0; /* Start invisible */
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-links.active {
    display: flex; /* Show when active */
    transform: translateY(0); /* Slide in */
    opacity: 1; /* Fade in */
  }
  .nav-item {
    width: 100%;
    text-align: center;
    padding: 12px 15px;
    font-size: 1.1rem;
    color: #f5f5f5;
    border-radius: 8px;
    transition: background 0.2s ease;
  }
  .nav-item:hover {
    background: rgba(108, 1, 140, 0.2);
  }
  .action-button {
    width: 100%;
    text-align: center;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3a034b, #6c018c);
    box-shadow: 0 4px 10px rgba(108, 1, 140, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .action-button:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 15px rgba(108, 1, 140, 0.3);
  }
  .hero {
    padding: 80px 15px 20px;
  }
  .hero-title, .hero-title-inside {
    font-size: 2.2rem;
  }
  .hero-subtext {
    font-size: 1rem;
    max-width: 90%;
  }
  .hero-learn-button span {
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
  }
  .glow-orbs::before {
    width: 180px;
    height: 180px;
  }
  .glow-orbs::after {
    width: 120px;
    height: 120px;
  }
  .stats-section {
    padding: 1.5em 15px;
    gap: 2em;
  }
  .stats-section-h1 h1 {
    font-size: 70px !important;
    margin-bottom: 10px;
  }
  .stats-card {
    width: 100%;
    max-width: 300px;
    height: auto;
    padding: 1.5em;
  }
  .stats-image {
    width: 8em;
  }
  .stats-title {
    font-size: 40px;
  }
  .stats-p {
    font-size: 15px;
  }
  .features-container {
    padding: 0 15px;
    max-width: 95%;
  }
  .features-gradient-cards {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .features-section-h1{
    font-size: 20px;
    margin-bottom: -40px;
  }
  .features-section-bottom h1 {
    font-size: 40px;
    margin-top: -50px;
  }
  .features-card {
    max-width: 400px;
  }
  .footer-glass {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.5rem;
    width: 95%;
  }
  .footer-logo, .footer-links {
    justify-content: center;
    align-items: center;
  }
  .footer-image {
    margin: 2rem auto;
    width: 70%;
  }
  .footer-logo h2 {
    font-size: 1.8rem;
  }
  .footer-links h3 {
    font-size: 1.1rem;
  }
}

/* Mobile Devices (576px - 768px) */
@media (max-width: 576px) {
  .logo {
    font-size: 1.4rem;
  }
   .nav-links {
    top: calc(10px + 54px);
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(108, 1, 140, 0.25);
  }
  .nav-item {
    font-size: 1rem;
    padding: 10px 12px;
  }
  .action-button {
    padding: 8px 15px;
    margin-top: 8px;
    border-radius: 15px;
  }
  .hero-title, .hero-title-inside {
    font-size: 1.8rem;
  }
  .hero-subtext {
    font-size: 0.9rem;
  }
  .glow-orbs::before {
    width: 150px;
    height: 150px;
  }
  .glow-orbs::after {
    width: 100px;
    height: 100px;
  }
  .stats-section {
    padding: 0.5em 15px; /* Further reduced top padding from 1em to 0.5em to pull section up */
    gap: 1em; /* Further reduced gap from 1.5em to 1em for tighter spacing */
    display: flex; /* Ensure flex layout for consistent card alignment */
    flex-direction: column; /* Stack h1 and cards vertically */
    align-items: center; /* Center cards for clean appearance */
  }
  .stats-section-h1 {
    margin-bottom: -20px !important; /* Negative margin-bottom to pull cards closer to h1 */
  }
  .stats-section-h1 h1 {
    font-size: 46px !important;
    margin-bottom: 10px;
    margin-top: 5px; /* Restored position */
    white-space: nowrap; /* Keeps text on one line */
    display: inline-block; /* Maintains alignment */
  }
  .stats-card {
    max-width: 280px;
    /* Removed margin-top to avoid overlap issues */
  }
  .stats-image {
    width: 7em;
  }
  .stats-title {
    font-size: 35px;
  }
  .stats-p {
    font-size: 14px;
  }
  .features-section-h1{
    font-size: 40px !important;
    margin-bottom: 30px;
  }
  .features-section-bottom h1 {
    font-size: 25px;
    margin-top: -40px;
  }
  .features-card {
    max-width: 350px;
  }
  .footer-logo h2 {
    font-size: 1.6rem;
  }
  .footer-links h3 {
    font-size: 1rem;
  }
  .footer-image {
    width: 60%;
  }
  .footer-glass {
    width: 95%;
  }
}

@media (max-width: 428px) {
  .features-section-h1 {
    font-size: 35px !important;
  }
}

/* Small Mobile Devices (360px - 576px) */
@media (max-width: 360px) {
  .logo {
    font-size: 1.2rem;
  }
  .hamburger-line {
    width: 20px;
    height: 2px;
    margin: 4px 0;
  }
  .nav-links {
    top: calc(10px + 49px);
    padding: 12px;
    border-radius: 12px;
  }
  .nav-item {
    font-size: 4rem;
    padding: 8px 10px;
  }
  .action-button {
    padding: 8px 12px;
    margin-top: 6px;
    border-radius: 12px;
  }
  .hero-title, .hero-title-inside {
    font-size: 1.6rem;
  }
  .hero-subtext {
    font-size: 0.85rem;
  }
  .hero-learn-button span {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  .glow-orbs::before {
    width: 120px;
    height: 120px;
  }
  .glow-orbs::after {
    width: 80px;
    height: 80px;
  }
  .stats-section-h1 h1 {
    font-size: 12px !important; /* Reduced from 30px to 28px for better visibility */
    margin-bottom: -200px;
  }
  .stats-card {
    max-width: 260px;
  }
  .stats-image {
    width: 6em;
  }
  .stats-title {
    font-size: 30px;
  }
  .stats-p {
    font-size: 13px;
  }
  .features-section-h1 {
    font-size: 30px !important;
    margin-bottom: -20px;
  }
  .features-section-bottom h1 {
    font-size: 20px;
    margin-top: -35px;
  }
  .features-card {
    max-width: 300px;
  }
  .footer-glass {
    padding: 1rem;
    width: 98%;
  }
  .footer-logo h2 {
    font-size: 1.4rem;
  }
  .footer-links h3 {
    font-size: 0.9rem;
  }
  .footer-image {
    width: 50%;
  }
}

/* Very Small Devices (below 360px) */
@media (max-width: 320px) {
  .logo {
    font-size: 1rem;
  }
  .nav-links {
    top: calc(10px + 44px); /* Adjusted */
    padding: 10px;
    border-radius: 10px;
  }
  .nav-item {
    font-size: 0.85rem;
    padding: 7px 8px;
  }
  .action-button {
    padding: 7px 10px;
    margin-top: 5px;
    border-radius: 10px;
  }
  .hero-title, .hero-title-inside {
    font-size: 1.4rem;
  }
  .hero-subtext {
    font-size: 0.8rem;
  }
  .glow-orbs::before {
    width: 100px;
    height: 100px;
  }
  .glow-orbs::after {
    width: 60px;
    height: 60px;
  }
  .stats-section-h1 h1 {
    font-size: 24px; /* Reduced from 25px to 24px for better visibility */
    margin-bottom: -15px;
  }
  .stats-card {
    max-width: 240px;
  }
  .stats-image {
    width: 5em;
  }
  .stats-title {
    font-size: 25px;
  }
  .stats-p {
    font-size: 12px;
  }
  .features-section-h1 h1 {
    font-size: 15px; /* Reduced from 20px to 15px */
    margin-bottom: -20px;
  }
  .features-section-bottom h1 {
    font-size: 15px; /* Reduced from 20px to 15px */
    margin-top: -30px;
  }
  .features-card {
    max-width: 280px;
  }
  .footer-logo h2 {
    font-size: 1.2rem;
  }
  .footer-links h3 {
    font-size: 0.8rem;
  }
  .footer-image {
    width: 40%;
  }
  .footer-glass {
    width: 98%;
  }
}
  /* Portfolio */
  .blog-section {
    padding: 6rem 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 1;
  }
  .section-title {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ff00f2, #a600ff, #4e00c2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .section-subtext {
    text-align: center;
    font-size: 1.3rem;
    color: #cfc2e8;
    margin: 2rem auto 4rem;
    max-width: 800px;
    font-weight: 300;
    position: relative;
    z-index: 2;
  }.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 3;
  }
 .blog-post {
  background: rgba(41, 1, 53, 0.5); /* 50% transparent purple */
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(115, 2, 172, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}
    
  .blog-post:hover {
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.25);
  }
  .blog-image {
    width: 100%;
    border-radius: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(170, 0, 255, 0.2);
    position: relative;
    z-index: 1;
  }
  .blog-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f3e9ff;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    text-align: center;
  }
  .blog-excerpt {
    color: #ccc2e5;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
  }
  .blog-read-more {
    display: inline-block;
    font-weight: 700;
    background: #a600ff;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }.blog-read-more:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(255, 0, 255, 0.4);
  }@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
/* Website form */
.article-section {
  background: var(--bg);
  color: var(--text);
  padding: 80px 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: auto;
}.inner-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(auto, 120px) 1fr minmax(auto, 320px);
  gap: 40px;
  max-width: 1300px;
  width: 100%;
}/* Meta column */
.meta-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.date-box {
  background: #2b0036;
  padding: 1.2rem;
  border-radius: .75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  width: 130%;
}
.date-month {
  display: block;
  font-size: 1rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.meta-icons {
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.meta-icons .icon-heart {
  width: 22px;
  fill: var(--neon);
  transition: transform 0.2s ease-in-out;
}
.meta-icons .icon-heart:hover {
  transform: scale(1.1);
}
.meta-icons small {
  color: #888;
}/* Content column */
.content-col .card {
  background: var(--card-bg);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease-in-out;
}
.content-col .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}
.card-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out;
  margin-bottom: 25px;
}
.card-img:hover {
  opacity: 0.95;
}
.card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-title {
  color: var(--neon);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px var(--shadow-neon);
  line-height: 1.2;
}
.post-meta {
  display: flex;
  gap: 1.5rem;
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 25px;
  align-items: center;
}
.post-meta small {
  display: block;
}
.article-content {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
}
.article-content h2, .article-content h3, .article-content h4 {
  color: var(--neon);
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 8px var(--shadow-neon);
}
.article-content blockquote {
  border-left: 5px solid var(--neon);
  padding-left: 1.5rem;
  color: #ddd;
  font-style: italic;
  margin: 25px 0;
  position: relative;
}
.article-content blockquote::before {
  content: '\201C';
  position: absolute;
  left: -0.75rem;
  top: -0.5rem;
  font-size: 2.5rem;
  color: var(--neon);
  opacity: 0.6;
}/* Sidebar column */
.sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.sidebar-box {
  background: var(--card-bg);
  padding: 25px;
  border-radius: .85rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.sidebar-title {
  color: var(--neon);
  margin-bottom: 1.5rem;
  position: relative;
  font-size: 1.6rem;
}
.sidebar-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 2px;
  background: var(--neon);
  margin-top: 10px;
}
.sidebar-text {
  color: #bbb;
  font-size: 1rem;
  line-height: 1.5;
}
.category-list {
  list-style: none;
  padding: 0;
}
.category-list li + li {
  margin-top: .75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: .75rem;
}
.category-list li:first-child {
  border-top: none;
  padding-top: 0;
}
.category-list a {
  color: var(--text);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.2s ease-in-out, text-shadow 0.2s ease-in-out;
}
.category-list a:hover {
  color: var(--neon);
  text-shadow: 0 0 8px var(--shadow-neon);
}/* Responsive */
@media (max-width: 1200px) {
  .inner-grid {
    grid-template-columns: minmax(auto, 90px) 1fr minmax(auto, 280px);
    gap: 30px;
  }
  .card-img {
    max-height: 350px;
    margin-bottom: 20px;
  }
  .card-body {
    padding: 25px;
    gap: 15px;
  }
  .card-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
  }
  .post-meta {
    font-size: 0.95rem;
    gap: 1rem;
    margin-bottom: 20px;
  }
  .article-content {
    font-size: 1rem;
    margin-bottom: 25px;
  }
}@media (max-width: 992px) {
  .inner-grid {
    grid-template-columns: 1fr;
    margin-top: 20px;
    gap: 40px;
  }
  .meta-col, .sidebar-col {
    display: none;
  }
  .content-col .card-img {
    height: 220px;
  }
  .article-section {
    padding: 60px 20px;
  }
  .card-title {
    font-size: 2rem;
  }
  .post-meta {
    font-size: .9rem;
    gap: 0.8rem;
  }
}@media (max-width: 576px) {
  .content-col .card-title {
    font-size: 1.75rem;
  }
  .post-meta {
    font-size: .85rem;
    gap: 0.6rem;
  }
  .card-body {
    padding: 15px;
    gap: 10px;
  }
  .article-section {
    padding: 40px 15px;
  }
}.btn-center {
  display: flex;
  justify-content: center; 
}/* Make option text white */
select option {
  color: white;
  background-color: #2a0140; /* Dark purple background */
}/* Style selected item inside the select dropdown (some browsers only) */
select {
  color: white; /* Text color when selected */
  background-color: #2a0140; /* Background of the select itself */
}/* Custom focus outline and border color */
select:focus {
  border-color: #bf05f8;
  outline: none;
  box-shadow: 0 0 8px #bf05f8;
}


/* Process Section */
.process-section {
  max-width: 1200px; /* Original size */
  margin: 9rem auto;
  padding: 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  box-sizing: border-box;
  width: 100%; /* Ensure section fits viewport */
}

/* Process Section Title */
.process-section-h1 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1500px; /* Original max-width */
  margin: 0 auto -40px auto;
  background: #8D13CF;
  background: linear-gradient(to bottom, #8D13CF 0%, #18002C 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Lexend", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  text-align: center;
  box-sizing: border-box;
  font-size: 80px;
}


/* Process Card */
.process-card {
  flex: 1;
  min-width: 300px; /* Original min-width */
  max-width: 373px; /* Original max-width */
  text-align: center;
  background: linear-gradient(100deg, #200234, #150122);
  padding: 30px 35px;
  border-radius: 20px;
  box-shadow: 
    0 12px 25px #200234,
    inset 0 0 12px #460472,
    0 0 8px #200234;
  border: 1px solid #200234;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.process-card img {
  width: 100%;
  max-width: 373px; /* Original max-width */
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.process-card h2 {
  font-size: 1.7rem; /* Original size */
  color: #816cdf;
  margin-bottom: 15px;
  font-weight: 600;
}

.process-card p {
  font-size: 1rem; /* Original size */
  line-height: 1.6;
  color: #e0e0e0;
  max-width: 373px; /* Original max-width */
  margin: 0 auto;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  .process-section {
    max-width: 80%;
    padding: 1.5rem;
    gap: 2rem;
  }

  .process-card {
    max-width: 80%;
    min-width: 280px;
    padding: 1.5rem;
  }

  .process-card img {
    max-width: 100%;
  }

  .process-card p {
    max-width: 100%;
  }
}

@media (max-width: 967px) {
  .process-section-h1 {
    font-size: 50px;
  }
}

@media (max-width: 768px) {
  .process-section {
    margin: 6rem auto;
    padding: 1rem;
    gap: 1.5rem;
  }

  .process-section-h1 {
    font-size: 40px !important;
  }

  .process-card {
    min-width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 493px) {
    .process-section-h1 {
    font-size: 35px !important;
  }
}
/* Specific Fix for iPhone 14 (viewport ~390px) and Similar Small Screens */
@media (max-width: 430px) {
  .process-section {
    max-width: 100%;
    margin: 4rem auto;
    padding: 0.5rem; 
    gap: 1rem;
    overflow-x: hidden; 
  }

  .process-section-h1 {
    max-width: 100%; 
    margin: 0 auto 1rem auto; 
  }

  .process-section-h1 h1 {
    font-size: 3rem;
    padding: 0 0.25rem;
  }

  .process-card {
    min-width: 80%;
    max-width: 80%;
    padding: 1rem 0.75rem;
  }

  .process-card img {
    max-width: 100%;
  }

  .process-card h2 {
    font-size: clamp(1.4rem, 5vw, 1.5rem);
  }

  .process-card p {
    font-size: clamp(0.85rem, 4vw, 0.9rem);
    max-width: 100%;
  }
}

.cta-section {
  position: relative;
  padding: 4rem 0;
}

.cta-background-blur {
  position: absolute;
  inset: 0;
  width: 100%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  opacity: 0.4;
  z-index: -1;
}

.cta-blur-1,
.cta-blur-2 {
  filter: blur(106px);
}

.cta-blur-1 {
  height: 14rem;
  background: linear-gradient(to bottom right, #8702af, #8205a8);
}

.cta-blur-2 {
  height: 8rem;
  background: linear-gradient(to right, #8702af, #8205a8);
}

.cta-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-profile-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -0.5rem;
}

.cta-profile-group img {
  border-radius: 9999px;
  object-fit: cover;
  margin-left: -8px;
}

.cta-profile-group img:nth-child(1) { height: 2rem; width: 2rem; }
.cta-profile-group img:nth-child(2) { height: 3rem; width: 3rem; }
.cta-profile-group img:nth-child(3) { height: 4rem; width: 4rem; z-index: 10; }
.cta-profile-group img:nth-child(4) { height: 3rem; width: 3rem; position: relative; }
.cta-profile-group img:nth-child(5) { height: 2rem; width: 2rem; }

     

    .cta-text-block {
      margin-top: 1.5rem;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      max-width: 58%;
    }

    .cta-text-block h1 {
      font-size: 2.5rem;
      font-weight: bold;
      color: white;
      }

    .cta-text-block p {
      font-size: 1.25rem;
      color: #4b5563;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 1.5rem;
    }

    .cta-btn-primary,
    .cta-btn-secondary {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 2rem;
      height: 3rem;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 9999px;
      overflow: hidden;
      text-decoration: none;
      transition: transform 0.2s ease;
    }

    .cta-btn-primary::before {
      content: "";
      position: absolute;
      inset: 0;
      background: #7b01a1;
      border-radius: 9999px;
      transition: transform 0.3s ease;
      z-index: 0;
    }

    .cta-btn-primary:hover::before {
      transform: scale(1.05);
    }

    .cta-btn-primary:active::before {
      transform: scale(0.95);
    }

    .cta-btn-primary span {
      position: relative;
      color: #fff;
    }

    .cta-btn-secondary::before {
      content: "";
      position: absolute;
      inset: 0;
      background: grey;
      border: 1px solid transparent;
      border-radius: 9999px;
      transition: transform 0.3s ease;
      z-index: 0;
      color: white;
    }

    .cta-btn-secondary:hover::before {
      transform: scale(1.05);
    }

    .cta-btn-secondary:active::before {
      transform: scale(0.95);
    }

    .cta-btn-secondary span {
      position: relative;
      color: white;
    }

    @media (prefers-color-scheme: dark) {

      .cta-text-block h1 {
        color: #fff;
      }

      .cta-text-block p {
        color: #d1d5db;
      }

      .cta-background-blur {
        opacity: 0.2;
      }

      .cta-btn-primary span {
        color: white;
      }

      .cta-btn-secondary::before {
        background: #1f2937;
        border-color: #374151;
      }

      .cta-btn-secondary span {
        color: #fff;
      }
    }

    @media (max-width: 768px) {
      .cta-text-block {
        max-width: 100%;
      }

      .cta-text-block h1 {
        font-size: 2rem;
      }

      .cta-text-block p {
        font-size: 1rem;
      }
    }