
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f6f8;
}

.topbar {
  display: flex;
  justify-content: space-between;
  background-color: #1e293b;
  color: white;
  padding: 10px 30px;
  font-size: 0.9rem;
}

.topbar a {
  color: white;
  margin-right: 15px;
  text-decoration: none;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.logo {
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.logo img {
  height: 30px;
  margin-right: 10px;
}

.navbar a {
  margin-left: 15px;
  text-decoration: none;
  color: #333;
}
.navbar a {
  color: #333;
  text-decoration: none;
  padding: 10px 15px;
  transition: background 0.3s ease, color 0.3s ease;
}

.navbar a:hover {
  background-color: #007BFF;
  color: #fff;
  border-radius: 4px;
}

.hero {
  background: url('https://images.unsplash.com/photo-1507537297725-24a1c029d3ca') no-repeat center center/cover;
  color: white;
  padding: 200px 30px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: 3rem; /* আগের চেয়ে বড় */
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem; /* সাবটাইটেলের সাইজ বড় */
  margin-top: 0;
}
/* Default (Desktop) */
.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem;
  margin-top: 0;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }
}
.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #333;
}

@media (max-width: 768px) {
  .navbar {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background-color: white;
    width: 100%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .navbar.active {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  header {
    position: relative;
  }

  .navbar a {
    padding: 12px;
    border-bottom: 1px solid #ddd;
  }
}


.signup-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  text-align: center;
  background-color: #ffffff;
}

.option {
  padding: 20px;
  border-radius: 8px;
  background-color: #e6f0fa;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  width: 300px;
}

.option button {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #0066cc;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.signup-form {
  background: url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4') no-repeat center center/cover;
  padding: 40px 20px;
  margin: 30px auto;
  max-width: 600px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.inline-fields {
  display: flex;
  gap: 10px;
}

.signup-form input, .signup-form button {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.signup-form button {
  background-color: #007acc;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

.hidden {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .signup-options {
    flex-direction: column;
    align-items: center;
  }

  .inline-fields {
    flex-direction: column;
  }
}

/* Footer Styles */
.footer {
  background-color: #2c2c54;
  color: #ffffff;
  padding: 40px 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info, .footer-social, .footer-links {
  flex: 1 1 300px;
  margin: 10px;
}

.footer-info h3, .footer-social h4, .footer-links h4 {
  font-size: 26px;
  margin-bottom: 15px;
}

.footer-info p, .footer-info a, .footer-links a {
  font-size: 16px;
  color: #d1d1d1;
  text-decoration: none;
}

.footer-info a:hover, .footer-links a:hover {
  color: #00bfff;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #00bfff;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  color: #aaaaaa;
  border-top: 1px solid #444;
  margin-top: 30px;
}


/* 🔹 Footer */
.footer {
  background-color: #f9fbff;
  padding: 10px 05px;
  text-align: center;
  border-top: 1px solid #ddd;
}
.footer .social-icons a {
  margin: 0 10px;
  font-size: 18px;
  color: #003366;
  transition: color 0.3s ease;
}
.footer .social-icons a:hover {
  color: #0077cc;
}
.footer p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
.footer a {
  color: #0077cc;
}
.footer a:hover {
  text-decoration: underline;
}
