
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9faff;
  color: #111;
}


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.logo {
  font-weight: bold;
  font-size: 24px;
  color: #111;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.navbar ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.navbar ul li a:hover {
  color: #2266ff;
}


.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 50px;
  min-height: calc(100vh - 80px);
}

.hero-left {
  flex: 1;
  max-width: 50%;
}

.intro-text {
  font-size: 14px;
  letter-spacing: 2px;
  color: #666;
  margin-bottom: 10px;
}

.hero-left h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.description {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.buttonstyle {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.buttonstyle:hover {
  background: linear-gradient(to right, #2575fc, #6a11cb);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-box {
  padding: 15px;
 
  border-radius: 10px;
  background-color: #f1f4ff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.image-box img {
  height: 400px;
  width: auto;
  border-radius: 10px;
}

 (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
  }

  .hero-left {
    margin-bottom: 40px;
  }

  .navbar {
    flex-direction: column;
    gap: 15px;
  }
}
