/* General settings */
body {
  margin: 0;
  font-family: 'Anek Bangla', sans-serif;
  background-color: #111;
  color: #fff;
}

/* Header */
header {
  background-color: #222;
  padding: 20px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo image */
.logo img {
  height: 50px;
  width: auto;
}

/* Navigation */
nav a {
  color: white;
  text-decoration: none;
  margin-left: 30px;
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: #f0c040;
}

/* Hero section */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 100px;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 50%;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-content button {
  background-color: #f0c040;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.hero-content button:hover {
  background-color: #e6b800;
}

/* Hero image */
.hero-image img {
  width: 500px;
  height: auto;
  border-radius: 10px;
}
.button {
  background-color: #f0c040;
  border: none;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  color: black;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}

.button:hover {
  background-color: #e6b800;
}
.contact-section {
  text-align: center;
  margin-top: 50px;
  color: white;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.social-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px 20px;
  color: white;
}

.contact-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-icons a {
  text-decoration: none;
  color: #ddd;
  font-size: 14px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-icons img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}
