* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a{
  color: black;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Poppins', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;

}

/* HEADER */

.header {
  background: linear-gradient(90deg, #4E14EB, #4514CA);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .btn {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 12px 24px;
  color: white;
  background: #ec2f69;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  border-radius: 40px;
  padding: 16px 32px;
}

.nav-menu .btn {
  display: none;
}

.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 48px;
  font-size: 20px;
}

.nav-menu a {

  text-decoration: none;
  font-weight: 500;
}

#menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  font-size: 28px;

  cursor: pointer;
}

/* BUTTONS */

.btn {
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}


.btn-outline {
  border: 1px solid white;
  color: white;
}

/* HERO */

.hero {
  background: linear-gradient(90deg, #4E14EB, #4514CA);
  color: white;
  padding: 120px 0;
}

.hero h1 {
  font-size: 44px;
  line-height: 64px;
  margin-bottom: 25px;
}

.hero p {
  font-size: 20px;
  line-height: 32px;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 62px;
  justify-content: start;
  flex-wrap: wrap;
}
.btn-primary{
  background: #01aeec;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
}

/* SERVICES */

.services {
  padding: 100px 0;
  background: #f4f5f7;
  text-align: center;
}

.services h2 {
  font-size: 36px;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.card h3{
  font-size: 28px;
  line-height: 56px;
  margin-bottom: 6px;
}
.card p{
  font-size: 20px;
  line-height: 40px;
}

.icon {
  font-size: 28px;
  margin-bottom: 20px;
}

/* STATS */

.stats {
  background: #01aeec;
  color: white;
  padding: 80px 0;
}


.stats h2 {
  font-size: 44px;
  line-height: 64px;
  text-align: center;
  margin: 32px 0px 34px;
}

/* PROCESS */

.process {
  padding: 100px 0;
  text-align: center;
}

.process h2 {
  margin-bottom: 12px;
}

.process .desc{
  font-size: 20px;
  line-height: 40px;
  text-align: center;
  margin: 0px 0px 51px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      column-gap: 12px;
    row-gap: 40px;
}

.process-grid h4{
    font-size: 28px;
  line-height: 56px;
}

.circle {
  width: 60px;
  height: 60px;
  background: #ff3e6c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 600;
  position: relative;
}

.circle::before {
  content: "";
  display: block;
  position: absolute;
border: 2px solid #ff3e6c;
    width: 68px;
    height: 68px;
    border-radius: 50%;
}

/* CTA */

.cta {
  background: linear-gradient(135deg, #5f2eea, #3a0ca3);
  color: white;
  text-align: center;
  padding: 121px 0;
}

.cta .hero-buttons{
  justify-content: center;
}
.cta h2 {
  font-size: 44px;
  line-height: 64px;
  margin: 0px 0px 12px;
}
.cta p {
  font-size: 20px;
  line-height: 40px;
  margin-bottom: 43px;
} 

/* FOOTER */

.footer {
  background: #2b0a75;
  color: white;
  padding: 130px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/*-------*/
.slide {
  display: flex;
  justify-content: center;
      align-items: center;
  height: 60px;
}
.slide img{
    max-height: 50px;
    max-width: 100%;
    width: auto!important;
        object-fit: contain;
}
.max-w1{
  max-width: 352px;
}

/* RESPONSIVE */

@media (max-width: 900px) {

  .nav-menu {
    display: none;
    position: absolute;
    top: 100px;
    right: 0;
    
    background: #3a0ca3;
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 20px 25%;
  }

  .nav-menu .btn {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }
  .nav-menu a{
    color: white;
  }

  .header>div>.btn {
    display: none;
  }

  #menu-toggle:checked+.hamburger+.nav-menu {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .desktop-btn {
    display: none;
  }

  .hero h1 {
    font-size: 34px;
  }
}