* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.doctor-listing-hero {
    background: #1f2937;
    padding: 70px 0;
    text-align: center;
}

.doctor-listing-hero h1 {
    color: #fff;
    font-size: 34px;
}

.doctor-listing {
    background: #f9f6f2;
    padding: 60px 0;
}

.doctor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.doctor-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 0 1px #eee;
    transition: 0.3s;
}

.doctor-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.doctor-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.doctor-content {
    padding: 20px;
}

.doctor-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.doctor-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.view-details {
    color: #5a7c2f;
    font-weight: 500;
    text-decoration: none;
}

body {
            background-color: #F9F7F2;
        }
        
        .hero-pattern {
            background-color: #3F6212;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234d7c0f' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .card-hover {
            transition: all 0.3s ease;
        }
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        /* Sticky Search Bar Effect */
        .sticky-search {
            position: sticky;
            top: 10px;
            z-index: 40;
        }




.doctor-card {
  display: flex;
  gap: 40px;
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

.doctor-image img {
  width: 320px;
  border: 2px solid #4CAF50;
  border-radius: 5px;
}

.doctor-content h1 {
  color: #2e7d32;
  margin-bottom: 5px;
}

.doctor-content h4 {
  margin-top: 0;
  color: #555;
}

.social-icons {
  margin: 15px 0;
}

.social-icons a {
  display: inline-block;
  width: 38px;
  height: 38px;
  background: #1877f2;
  color: #fff;
  text-align: center;
  line-height: 38px;
  border-radius: 50%;
  margin-right: 8px;
  font-size: 16px;
}

.social-icons a:nth-child(2) { background: #0a66c2; }
.social-icons a:nth-child(3) { background: #000; }

.doctor-content p {
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* MOBILE */
@media (max-width: 768px) {
  .doctor-card {
    flex-direction: column;
    text-align: center;
  }

  .doctor-image img {
    width: 100%;
    max-width: 300px;
  }
}
