@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&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");

/*  fonts: */
.abril-fatface-regular {
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-thin {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: italic;
}

/* Colors */
.brand-color {
  color: #e03a4c;
}

.brand-bg {
  background-color: #e03a4c;
}

.dark-color {
  color: #1c1e23;
}

.dark-bg {
  background-color: #1c1e23;
}

.black-color {
  color: #05070b;
}

.black-bg {
  background-color: #05070b;
}

.gradient-1 {
  background: rgb(36, 0, 10);
  background: linear-gradient(
    8deg,
    rgba(36, 0, 10, 1) 0%,
    rgba(121, 9, 38, 1) 50%,
    rgba(255, 0, 74, 1) 95%
  );
}

.gradient-2 {
  background: rgb(36, 4, 0);
  background: linear-gradient(
    8deg,
    rgba(36, 4, 0, 1) 0%,
    rgba(121, 39, 9, 1) 50%,
    rgba(255, 64, 0, 1) 95%
  );
}

.gradient-3 {
  background: rgb(0, 36, 7);
  background: linear-gradient(
    8deg,
    rgba(0, 36, 7, 1) 0%,
    rgba(9, 121, 29, 1) 50%,
    rgba(0, 255, 38, 1) 95%
  );
}

.gradient-4 {
  background: rgb(0, 36, 34);
  background: linear-gradient(
    8deg,
    rgba(0, 36, 34, 1) 0%,
    rgba(9, 115, 121, 1) 50%,
    rgba(0, 255, 244, 1) 100%
  );
}

.gradient-5 {
  background: rgb(0, 3, 36);
  background: linear-gradient(
    8deg,
    rgba(0, 3, 36, 1) 0%,
    rgba(9, 11, 121, 1) 50%,
    rgba(0, 26, 255, 1) 100%
  );
}

.gradient-6 {
  background: rgb(22, 0, 36);
  background: linear-gradient(
    8deg,
    rgba(22, 0, 36, 1) 0%,
    rgba(97, 9, 121, 1) 50%,
    rgba(255, 0, 245, 1) 100%
  );
}

/* Base styles */
:root {
  --primary-color: #e03a4c;
  --dark-bg: #1c1e23;
  --black: #05070b;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--black);
  color: #ffffff;
}

/* Header Section */
.header {
  min-height: 100vh;
  padding-top: 5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(5, 7, 11, 0.95) 0%,
    rgba(28, 30, 35, 0.95) 100%
  );
}

.header .container {
  position: relative;
  z-index: 2;
}

.header-text h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.header-text p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.typed-text {
  color: var(--primary-color);
}

.typed-cursor {
  color: var(--primary-color);
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color);
  border: none;
}

.btn-primary:hover {
  background-color: #c0323f;
  transform: translateY(-2px);
}

/* Statistics Section */
.statistics .stat-box {
  background: var(--dark-bg);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.statistics .stat-box:hover {
  transform: translateY(-5px);
}

.statistics h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

/* How It Works Section */
.how-it-works {
  background-color: var(--dark-bg);
  padding: 80px 0;
}

.how-it-works h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.step-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 3rem 2rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 205px;
}

.step-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.step-number {
  position: absolute;
  top: -25px;
  left: 25px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  box-shadow: 0 4px 20px rgba(224, 58, 76, 0.3);
}

.step-box h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
}

.step-box p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* Features Section */
.feature-box {
  border-radius: 16px;
  padding: 2rem;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform 0.3s ease, border 0.3s ease;
  border: 2px solid transparent;
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.6);
}

.feature-icon {
  width: 60px;
  height: 60px;
}

/* CTA Section */
.cta {
  background-color: var(--dark-bg);
}

/* Partners Section */
.partners {
  background: var(--black);
}

.partner-logo {
  text-align: center;
  padding: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.partner-logo:hover {
  opacity: 1;
}

/* Footer Section */
.footer {
  background-color: var(--dark-bg);
}

.footer a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 991px) {
  .header .d-flex.gap-3 {
    justify-content: center;
  }

  .header-text h1 {
    font-size: 2.5rem;
  }

  .header-text {
    text-align: center;
    margin-bottom: 2rem;
  }

  .statistics .stat-box,
  .feature-box {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 4rem 0;
  }

  .btn {
    width: 100%;
    margin-bottom: 1rem;
  }

  .statistics h3 {
    font-size: 2rem;
  }
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
