body{
  background-image: url("background.jpg");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 60px;
  color: white;
  height: 100px;
}

.logo {
  width: 142px;
  height: 120px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: white;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  width: 100%;
}

.search-box {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  padding: 9px 10px;
}

.search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: white;
  padding-left: 5px;
  font-size: 13px;
}

.search-box input::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.search-icon{
  width: 15px;
  height: 15px;
}
/*--------------------------------------------------------------------------*/
.doctors-section {
  margin: 0 auto;
  padding: 3rem 1rem;
}

.doctors-header {
  text-align: center;
  margin-bottom: 3rem;
}

.badge-doctors {
  background-color: rgba(46, 204, 113);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 31rem 0.8rem 31rem;
  border-radius: 2rem;
}

.doctors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 4rem 0 4rem;
}

@media (min-width: 768px) {
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .doctors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.doctor-card {
  background-color: white;
  text-align: center;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.doctor-card:hover {
  transform: translateY(-8px);
}

.doctor-image {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.doctor-photo {
  width: 12rem;
  height: 12rem;
  border: 4px solid #93c5fd;
  border-radius: 50%;
  padding: 0.5rem;
  background-color: #f1f5f9;
  overflow: hidden;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.doctor-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3498DB;
  margin-bottom: 0.25rem;
}

.role {
  color: #FF6F61;
  font-weight: 500;
  margin-bottom: 1rem;
}

.bio {
  color: #5B5B5B;
  font-size: 0.875rem;
}

.see-more-container {
  text-align: center;
  margin-top: 3rem;
}
/*--------------------------------------------------------*/
.plans-section {
  margin: 0 auto;
  padding: 4rem 1rem;
}
.badge-pricing{
  background-color: rgba(46, 204, 113);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.8rem 34.5rem 0.8rem 34.5rem;
  border-radius: 2rem;
  margin-left: 2.5rem;
  text-align: center;
}

.plans-title h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #3498DB;
  line-height: 1.2;
}

.plans-description {
  padding-top: 2rem;
}

.plans-description p {
  color: #313131;
  font-size: 15px;
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
  padding: 0 2.5rem 0 2.5rem;
}

@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan-card {
  background-color: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
}

.plan-card.recommended {
  border: 2px solid #5EE088;
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.15);
}

.small-highlight {
  color: #3b82f6;
  font-weight: 500;
}

.plan-card h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2677BC;
  margin-bottom: 0.5rem;
}

.plan-desc {
  color: #4b5563;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.price {
  margin-bottom: 1.5rem;
}

.amount {
  font-size: 2rem;
  font-weight: 700;
  color: #3498DB;
}

.unit {
  color: #6b7280;
  font-size: 0.875rem;
  margin-left: 0.25rem;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #2677BC;
  margin-bottom: 1rem;
}

.features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #374151;
  margin-bottom: 0.75rem;
}

.features .material-icons {
  color: #22c55e;
  font-size: 20px;
}

.outline-btn,
.solid-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
  cursor: pointer;
}

.outline-btn {
  color: #5EE088;
  border: 1px solid #5EE088;
  background: transparent;
  margin-bottom: 0.5rem;
}

.outline-btn:hover {
  background-color: #fee2e2;
}

.solid-btn {
  background-color: #5EE088;
  color: white;
  border: none;
}

.divider {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin: 0.75rem 0;
}

.plans-footer {
  text-align: center;
  margin-top: 3rem;
}

.see-more-btn {
  background-color: #5EE088;
  color: white;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.see-more-btn .material-icons {
  font-size: 20px;
}
/*--------------------------------------------------------------------------*/
.footer {
  position: relative;
  width: 100%;
  background-color: white;
  padding-top: 3rem;
  color: white;
}

.footer-container {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-left{
  list-style: none;
  padding: 0 0 0 2rem;
  margin-bottom: 1.5rem;
  margin-right: 9rem;
  color: #63BBE9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-left a:hover {
  color: #2563eb;
}

.footer-column{
  width: 100px;
  height: 230px;
}

.footer-column h3 {
  color: #2563eb;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #63BBE9;
  text-decoration: none;
  font-size: 0.8rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #2563eb;
}

.footer-logo {
  width: 12rem;
  height: 12rem;
  background-color: #9b9c9e;
  border-radius: 0.75rem;
}

.subscribe-form {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.subscribe-form input {
  flex-grow: 1;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #93c5fd;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.subscribe-form input:focus {
  border-color: #2563eb;
}

.subscribe-form button {
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #93c5fd;
  background: transparent;
  color: #2563eb;
  cursor: pointer;
  transition: all 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #2563eb;
  color: white;
}

.footer-description {
  font-size: 0.875rem;
  color: #2563eb;
  margin-top: 1rem;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  gap: 1rem;
}

.social-icons a {
  font-size: 1.25rem;
  color: #2563eb;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1e40af;
}

.footer-location{
  width: 200px;
  position: absolute;
  left: 33.5rem;
  top: 18rem;
}
.footer-location h3{
  color: #2563eb;
  padding-bottom: 1rem;
}
.footer-location h4{
  color: #2563eb;
  font-size: 0.8rem;
  padding-bottom: 1rem;
}
.footer-location p{
  font-size: 0.8rem;
  color: #969696;
}