    body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 0;
      color: #333;
      background-color: #fff;
    }

header {
  background-color: #f8f8f8;
  padding: 0px 0;
  border-bottom: 1px solid #ddd;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo h1 {
  font-size: 1.8rem;
  color: #222;
}

.headerlogo {
  width: 180px;
  height: 180px;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
  justify-content: flex-end; /* pushes menu items to the right */
  margin-right:20px;
}

nav ul li a {
  text-decoration: none;
  color: #222;
  font-size: 1rem;
}

nav ul li a:hover {
  text-decoration: underline;
}


    .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1100px;
      margin: 100px auto;
      padding: 0 40px;
    }

    .text-section {
      max-width: 500px;
    }

    .logo {
      width: 40px;
      height: 40px;
      background-color: #b21d5b;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      margin-bottom: 20px;
    }

    h1 {
      font-size: 96px;
      font-weight: 800;
      margin: 0;
      line-height: 1;
    }

    h2 {
      font-size: 24px;
      margin-top: 10px;
    }

    p {
      font-size: 15px;
      color: #666;
      line-height: 1.7;
      margin-bottom: 40px;
    }

    .btn {
      background-color: #ff6a4a;
      color: white;
      border: none;
      padding: 14px 32px;
      border-radius: 25px;
      font-size: 16px;
      font-weight: 600;
      cursor: pointer;
      box-shadow: 0px 4px 15px rgba(255, 106, 74, 0.4);
      transition: all 0.3s ease;
    }

    .btn:hover {
      background-color: #ff5233;
      transform: translateY(-2px);
    }

    .image-shape {
      width: 420px;
      height: 300px;
      border-radius: 50% 35% 60% 40% / 60% 40% 35% 50%;
      overflow: hidden;
    }

    .image-shape img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .icons {
      display: flex;
      justify-content: center;
      align-items: flex-start;
      gap: 60px;
      margin-top: 80px;
      text-align: center;
      color: #777;
      font-size: 14px;
    }

    .icons div {
      max-width: 180px;
    }

    .icons i {
      font-size: 24px;
      color: #ccc;
      margin-bottom: 10px;
      display: block;
    }

    section {
      max-width: 900px;
      margin: 80px auto;
      padding: 0 40px;
    }

    section h3 {
      font-size: 22px;
      color: #111;
      margin-top: 40px;
      margin-bottom: 10px;
    }

    footer {
      background: #fafafa;
      padding: 50px 20px;
      text-align: center;
      color: #777;
      font-size: 14px;
    }
