*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#f8f8fb;
  color:#1c1c1c;
}

.container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* HEADER */

header{
  width:100%;
  padding:20px 0;
  background:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.03);
}

nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LOGO */

.logo{
  display:flex;
  align-items:center;
  gap:15px;
}

.logo-img{
  width:120px;
  height:auto;
  object-fit:contain;
}

.logo-text h2{
  font-size:30px;
  color:#243b9f;
  line-height:1;
  font-weight:700;
}

.logo-text span{
  font-size:14px;
  color:#777;
  letter-spacing:4px;
}

/* MENU */

.menu{
  display:flex;
  gap:40px;
  list-style:none;
}

.menu a{
  text-decoration:none;
  color:#111;
  font-weight:500;
  transition:0.3s;
}

.menu a:hover{
  color:#5b43f3;
}

/* HERO */

.hero{
  margin-top:40px;
  background:#f1f1f5;
  border-radius:30px;
  padding:60px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:50px;
}

.hero-left{
  flex:1;
}

.hero-left h1{
  font-size:72px;
  line-height:1.1;
  color:#1b237e;
  font-weight:800;
}

.hero-left h1 span{
  color:#6b4cff;
}

.hero-left p{
  margin-top:25px;
  color:#666;
  line-height:1.9;
  max-width:600px;
  font-size:16px;
}

.hero-btn{
  margin-top:35px;
}

.hero-btn a{
  text-decoration:none;
  background:#5b43f3;
  color:white;
  padding:15px 35px;
  border-radius:12px;
  display:inline-block;
  font-weight:500;
  transition:0.3s;
}

.hero-btn a:hover{
  background:#4328f0;
  transform:translateY(-3px);
}

.hero-right{
  flex:1;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

.circle{
  width:400px;
  height:400px;
  border-radius:50%;
  overflow:hidden;
  background:transparent;
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
}

.circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.card{
  position:absolute;
  background:white;
  padding:15px 20px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.card1{
  top:40px;
  left:-10px;
}

.card2{
  bottom:40px;
  right:-10px;
}

.card h4{
  color:#1b237e;
  font-size:18px;
}

.card p{
  color:#777;
  font-size:14px;
}

/* FEATURES */

.features{
  margin-top:100px;
  margin-bottom:100px;
}

.section-title{
  margin-bottom:50px;
}

.section-title h2{
  font-size:48px;
  color:#1b237e;
  line-height:1.2;
}

.section-title span{
  color:#6b4cff;
}

.feature-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.feature-card{
  background:white;
  padding:40px 30px;
  border-radius:25px;
  min-height:250px;
  transition:0.3s;
  border:1px solid #ececec;
}

.feature-card:hover{
  transform:translateY(-5px);
  box-shadow:0 15px 30px rgba(0,0,0,0.08);
}

.feature-card img{
  width:90px;
  margin-bottom:25px;
}

.feature-card h3{
  color:#1b237e;
  font-size:22px;
  margin-bottom:10px;
}

.feature-card p{
  color:#777;
  line-height:1.7;
  font-size:15px;
}

.purple{
  background:#f3f1ff;
}

.yellow{
  background:#fff9dc;
}

/* FOOTER */

footer{
  border-top:1px solid #ddd;
  padding:30px 0;
  margin-top:50px;
}

.footer-content{
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:#666;
  font-size:14px;
}

.footer-content a{
  text-decoration:none;
  color:#5b43f3;
}

/* TABLET */

@media(max-width:992px){

  .hero{
    flex-direction:column;
    text-align:center;
  }

  .hero-left h1{
    font-size:52px;
  }

  .hero-left p{
    margin:auto;
    margin-top:20px;
  }

  .circle{
    width:320px;
    height:320px;
  }

  .card1{
    left:0;
  }

  .card2{
    right:0;
  }

}

/* MOBILE */

@media(max-width:768px){

  nav{
    flex-direction:column;
    gap:20px;
  }

  .menu{
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero{
    padding:40px 25px;
  }

  .hero-left h1{
    font-size:40px;
  }

  .section-title h2{
    font-size:36px;
  }

  .logo-img{
    width:90px;
  }

  .logo-text h2{
    font-size:24px;
  }

}

@media screen and (max-width: 480px){

  .hero h1{
    font-size:28px;
  }

  .hero p{
    font-size:13px;
  }

  .menu a{
    font-size:13px;
  }

}