body {
    font-family:'Times New Roman', Times, serif;
    margin: 0;
}
.navbar {
    display:flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: wheat;
    position: relative;
    z-index: 2000;
}
.logo {
    height: 75px;
  }
  .menu {
    list-style: none;
    display: flex;
    gap: 25px;
  }
  .menu li{
    position: relative;
  }
  .menu a{
    color:green;
    text-decoration: none;
    font-weight: bold;
  }
  .dropdown a {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1px;
  }
  .dropdown-menu{
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    width: 200px;
    z-index: 1000;
}

.dropdown-menu li {
    padding: 10px;
}

.dropdown-menu li a {
    color: blue;
}

/* Show dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}
.contact-info {
    text-align:right;
    font-size: 18px;
    color: blue;
}

.heading {
    text-align: center;
    margin: 20px;
    font-size: 30px;
    color:green;
}
/* 🔷 Slider */
.slider {
    width: 100%;
    height: 90vh;
    overflow: hidden;
    position: relative;
}

.slides {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    position: relative;
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.4);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    color: white;
    text-align: center;
}

.overlay h1 {
    font-size: 50px;
    margin: 10px;
}

.overlay p {
    font-size: 20px;
    margin-bottom: 20px;
}
.overlay button {
    padding: 12px 25px;
    font-size: 16px;
    border: none;
    background: green;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.overlay button:hover {
    background: darkgreen;
}
/* 🔷 Title */
.title {
    text-align: center;
    margin: 20px;
}

/* 🔷 Doctors Grid */
.doctor-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.doctor-card {
    width: 250px;
    text-align: center;
    background: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
}

.doctor-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

button {
    margin-top: 10px;
    padding: 8px 12px;
    background: #2e8b57;
    color: white;
    border: none;
    cursor: pointer;
}
.doctor-detail {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 30px;
}

.detail-img {
    width: 300px;
    height: auto;
    border-radius: 10px;
}

.detail-text {
    font-size: 20px;
    max-width: 600px;
    display:flex;
    flex-direction: column;
}
.left-box {
    width: 300px;
}

.left-box img {
    width: 100%;
    border-radius: 10px;
}

.left-box h3 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.left-box p {
    color: gray;
}
.button-group {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;   /* ⭐ Moves to RIGHT */
    gap: 10px;
    align-self: flex-end;
}

.button-group button {
    padding: 10px 15px;
    background: #2e8b57;
    color: white;
    border: none;
    cursor: pointer;
}