@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background: #f5f5f5;
  color: #333;
}

/* Header styling */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.log span {
    color: #d6800f;
}

.logo {
    font-size: 2em;
    color: #555;
    cursor: default;
}

.logo span {
    color: #7d2ae8;
}
.navigation a {
    color: #fff;
    text-decoration: none;
    padding: 10px 40px;
    background: #7d2ae8;
    border-radius: 10px;
    border: 2px solid #7d2ae8;
    font-weight: 500;
    transition: .3s;
}

.navigation a:hover {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Home section */
.home {
  padding: 60px 20px;
  text-align: center;
}

.home .content h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.home .content h4 {
  font-size: 1.2em;
  margin-bottom: 20px;
}
.home .content h1 {
  font-size: 1em;
  margin-bottom: 20px;
}
.home .content p {
  margin: 8px 0;
}
.btn-group a {
    color: #fff;
    text-decoration: none;
    padding: 10px 40px;
    background: #7d2ae8;
    border-radius: 10px;
    border: 2px solid #7d2ae8;
    font-weight: 500;
    transition: .3s;
}


.content h2 span {
    color: #7d2ae8;
}

.content p {
    padding: 2px 0 20px 0;
}
.btn-group a:hover:nth-child(1) {
    color: #7d2ae8;
    background: transparent;
}

.btn-group a:nth-child(2) {
    color: #7d2ae8;
    background: transparent;
    margin-left: 30px;
    padding: 10px 30px;
}

.btn-group a:hover:nth-child(2) {
    color: #fff;
    background: #7d2ae8;
}

.btn-group a {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  margin: 10px;
  padding: 10px 20px;
  background: #25d366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* ✅ Responsive layout */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .navigation {
    margin-top: 10px;
  }

  .navigation a {
    display: block;
    margin: 8px 0;
  }

  .btn-group a {
    display: block;
    width: 80%;
    margin: 10px auto;
  }

  .social-icons a {
    font-size: 20px;
  }
}
