/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Top bar */
.top-bar {
  background: #f2eae2;
  color: rgb(19, 16, 16);
  display: flex;
  justify-content: space-between;
  padding: 8px 50px;
  font-size: 14px;
  flex-wrap: wrap;
  text-align: center;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 50px;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  flex-wrap: wrap;
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #009688;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #009688;
}

.btn {
  background: #009688;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background: #00796b;
}
/* ✅ Responsive Navbar */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column; /* সব নিচে নিচে যাবে */
    text-align: center;
    padding: 20px;
  }

  .nav-links {
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
  }

  .btn {
    margin-top: 15px;
  }
}

  body {
      background: #eaf4f9;
    }

    .appointment-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #bde9ef;
      padding: 60px 10%;
      color: #0b0b0b;
    }

    .appointment-text {
      flex: 1;
      padding-right: 50px;
    }

    .appointment-text h4 {
      font-size: 16px;
      text-transform: uppercase;
      border-bottom: 2px solid #fff;
      display: inline-block;
      margin-bottom: 10px;
    }

    .appointment-text h2 {
      font-size: 40px;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .appointment-text p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 30px;
    }

    .buttons {
      display: flex;
      gap: 20px;
    }

    .btn-dark {
      background: #1a1a3c;
      color: #fff;
      padding: 12px 30px;
      border-radius: 30px;
      border: none;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-dark:hover {
      background: #000;
    }

    .btn-outline {
      background: transparent;
      border: 2px solid #1a1a3c;
      color: #1a1a3c;
      padding: 12px 30px;
      border-radius: 30px;
      cursor: pointer;
      font-weight: bold;
      transition: 0.3s;
    }

    .btn-outline:hover {
      background: #1a1a3c;
      color: #fff;
    }

    /* Form Section */
    .appointment-form {
      flex: 1;
      background: #fff;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
      color: #000;
    }

    .appointment-form h3 {
      margin-bottom: 20px;
      font-size: 24px;
      font-weight: bold;
      text-align: center;
      color: #1a1a3c;
    }

    .appointment-form select,
    .appointment-form input {
      width: 100%;
      padding: 12px;
      margin-bottom: 20px;
      border-radius: 8px;
      border: 1px solid #ddd;
      font-size: 16px;
      background: #f9f9f9;
    }

    .appointment-form button {
      width: 100%;
      padding: 14px;
      background: #00bcd4;
      border: none;
      border-radius: 8px;
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      transition: 0.3s;
    }

    .appointment-form button:hover {
      background: #0097a7;
    }

    @media (max-width: 992px) {
      .appointment-section {
        flex-direction: column;
        text-align: center;
      }
      .appointment-text {
        padding-right: 0;
        margin-bottom: 40px;
      }
    }






















/* Footer */
.footer {
  background: #98d0eb;
  padding: 50px 20px 20px;
  color: #444;
  font-family: Arial, sans-serif;
  margin-top: 60px;  /* 🔥 উপরের gap */
}


.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h3, .footer h4 {
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}

.footer p {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
}

.footer ul li a {
  text-decoration: none;
  color: #555;
  transition: 0.3s;
}

.footer ul li a:hover {
  color: #00bcd4;
}

/* Newsletter */
.newsletter {
  display: flex;
  margin-top: 10px;
}

.newsletter input {
  padding: 10px;
  border: 1px solid #ccc;
  flex: 1;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.newsletter button {
  padding: 10px 20px;
  border: none;
  background: #00bcd4;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter button:hover {
  background: #008c9e;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 40px;
  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom a {
  color: #00bcd4;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Responsive Fix */
@media (max-width: 768px) {
  .newsletter {
    flex-direction: column;
  }

  .newsletter input {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .newsletter button {
    border-radius: 4px;
    width: 100%;
  }
}
