:root {
  --slate-900: #0f172a;
  --purple-900: #581c87;
  --purple-600: #9333ea;
  --purple-500: #a855f7;
  --purple-400: #c084fc;
  --pink-600: #db2777;
  --pink-400: #f472b6;
  --red-400: #f87171;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --white: #ffffff;
  --black: #000000;
}

#main-all {
  background: linear-gradient(
    135deg,
    var(--slate-900),
    var(--purple-900),
    var(--slate-900)
  );
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--white);
  line-height: 1.6;
  width: 100%;
  margin-top: 5.2vw;
}



:root {
  --slate-900: #0f172a;
  --purple-900: #581c87;
  --purple-600: #9333ea;
  --purple-500: #a855f7;
  --purple-400: #c084fc;
  --pink-600: #db2777;
  --pink-400: #f472b6;
  --red-400: #f87171;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --white: #ffffff;
  --black: #000000;
}

#main-all {
  background: linear-gradient(
    135deg,
    var(--slate-900),
    var(--purple-900),
    var(--slate-900)
  );
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: var(--white);
  line-height: 1.6;
  width: 100%;
  margin-top: 5.2vw;
}

/* ✅ Mobile Fixes */
@media (max-width: 540px) {
  #main-all {
    margin-top: 25%;
  }

  .btn-primary {
    width: 100%;
    font-size: 1.1rem;
    padding: 4vw 3.5vw !important;
  }

  /* CTA section responsive */
  .cta-content {
    height: auto !important;
    padding: 20px;
    margin-bottom: 5vw;
    text-align: center;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-actions {
    flex-direction: column !important;
    gap: 1rem;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

@media (min-width: 640px) {
  h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 2rem;
}

@media (min-width: 640px) {
  h2 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.5rem;
}

@media (min-width: 640px) {
  h3 {
    font-size: 1.75rem;
  }
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(to right, var(--purple-600), var(--pink-600));
  color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px -5px rgba(168, 85, 247, 0.25);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.05);
}

/* ✅ CTA Section Default */
.cta {
  background: linear-gradient(
    to right,
    rgba(147, 51, 234, 0.2),
    rgba(219, 39, 119, 0.2)
  );
  padding-bottom: 20px;
}

.cta-content {
  max-width: 900px;
  height: 40rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--white), var(--purple-200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 3.5rem;
  }
}

.cta-actions {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}


.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-16 {
  margin-bottom: 4rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.hero {
  padding-top: 30px;
  padding-bottom: 80px;
  position: relative;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(168, 85, 247, 0.2);
  color: var(--white);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid rgba(168, 85, 247, 0.3);
  margin-bottom: 2rem;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }

  100% {
    opacity: 1;
  }
}

.hero-title {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 4rem;
  }
}

.gradient-text {
  background: linear-gradient(
    to right,
    var(--white),
    var(--purple-400),
    var(--pink-400)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.gradient-text-reverse {
  background: linear-gradient(
    to right,
    var(--purple-400),
    var(--pink-400),
    var(--red-400)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--gray-300);
  max-width: 900px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .hero-description {
    font-size: 1.5rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

/* Stats Section */
.stats {
  background: rgba(0, 0, 0, 0.2);
  padding: 50px 0;
  margin-top: 2vw;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon {
  display: inline-flex;
  padding: 12px;
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.2),
    rgba(219, 39, 119, 0.2)
  );
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.1);
}

.stat-icon i {
  font-size: 1.5rem;
  color: var(--purple-400);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--purple-400), var(--pink-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
  .stat-number {
    font-size: 3rem;
  }
}

.stat-label {
  color: var(--gray-400);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .stat-label {
    font-size: 1rem;
  }
}
.services h2 {
  padding-top: 3vw;
}
/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-item {
  padding: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  color: var(--purple-300);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--gray-400);
  line-height: 1.6;
}

/* CTA Section */
.cta {
  background: linear-gradient(
    to right,
    rgba(147, 51, 234, 0.2),
    rgba(219, 39, 119, 0.2)
  );
  padding-bottom: 20px;
}

.cta-content {
  max-width: 900px;
  height: 40rem;
  margin: 0 auto;
  text-align: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--white), var(--purple-200));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (min-width: 640px) {
  .cta-title {
    font-size: 3.5rem;
  }
}

.cta-description {
  font-size: 1.1rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .cta-description {
    font-size: 1.5rem;
  }
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-actions {
    flex-direction: row;
  }
}

/* Animations */
.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}
