  /* Indicators to the right side beside next arrow */
      .carousel-indicators {
        position: absolute;
        top: 50%;
        left: auto;
        transform: translateY(-50%);
        display: flex;
        flex-direction: column;
        z-index: 2;
      }

      .carousel-indicators button {
        width: 12px;
        height: 12px;
        margin: 4px 0;
        border-radius: 50%;
        background-color: #000;
        opacity: 0.4;
        border: none;
      }

      .carousel-indicators .active {
        opacity: 1;
        background-color: #0d6efd;
      }

      .carousel-control-next,
      .carousel-control-prev {
        width: 5%;
      }

      .carousel-control-next-icon,
      .carousel-control-prev-icon {
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
        padding: 10px;
      }

      .header-part {
        background-color: #f7f5ef;
      }
      .top-bar {
        background-color: #af9763;
        color: white;
      }
      .search-container {
        position: relative;
      }
      .search-icon {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        background-color: #af9763;
        border-radius: 50%;
        padding: 5px;
      }
      .side-buttons {
        position: fixed;
        top: 30vh;
        right: 0;
        z-index: 99999;
      }
      .side-buttons button {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        border: none;
        background-color: transparent;
      }
      .side-buttons img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
      }
      .shake-button {
        animation: shakeButton 1s ease-in-out infinite;
      }
      @keyframes shakeButton {
        0% {
          transform: translateX(0);
        }
        25% {
          transform: translateX(-10px);
        }
        50% {
          transform: translateX(10px);
        }
        75% {
          transform: translateX(-10px);
        }
        100% {
          transform: translateX(0);
        }
      }
      .search-popup {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        max-height: 424px;
        overflow-y: auto;
        z-index: 99999;
      }
      .search-popup.active {
        display: block;
      }
      .doctor-list img {
        object-fit: cover;
        height: 120px;
        width: 100%;
      }
      .banner-buttons .card {
        background-color: #af9763;
        color: white;
        cursor: pointer;
        border-radius: 5px;
      }
      .banner-buttons img {
        width: 50px;
      }

      .card.p-4.text-center:hover {
        background: #f58220;
      }

      carousel-item {
        height: 400px;
      }
      .carousel-item img {
        width: 100%;
        height: 400px;
        object-fit: cover;
      }
      /* body menu style */
      .department-menu {
        background-color: rgb(247, 245, 239);
        padding: 1rem 0;
        border-bottom: 2px solid #666;
        font-family: "Arial", sans-serif;
      }
      .menu-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
      }
      .menu-item {
        display: flex;
        align-items: center;
        background-color: rgba(175, 151, 99, 0.2);
        padding: 0.5rem 1rem;
        border-radius: 5px;
        text-decoration: none;
        color: #333;
        font-size: 0.95rem;
        transition: background-color 0.3s ease, color 0.3s ease;
        white-space: nowrap;
      }
      .menu-item i {
        margin-right: 0.5rem;
        color: rgb(175, 151, 99);
      }
      .menu-item:hover {
        background-color: rgb(245, 130, 32);
        color: white;
      }
      .menu-item:hover i {
        color: white;
      }
      .view-all-btn {
        background-color: rgb(175, 151, 99);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease;
      }
      .view-all-btn:hover {
        background-color: rgb(245, 130, 32);
      }
      .more-dropdown {
        position: relative;
        display: none;
      }
      .more-btn {
        background-color: rgba(175, 151, 99, 0.2);
        padding: 0.5rem 1rem;
        border-radius: 5px;
        text-decoration: none;
        color: #333;
        font-size: 0.95rem;
        transition: background-color 0.3s ease, color 0.3s ease;
      }
      .more-btn:hover {
        background-color: rgb(245, 130, 32);
        color: white;
      }
      .dropdown-content {
        display: none;
        position: absolute;
        background-color: rgb(247, 245, 239);
        border: 1px solid #ccc;
        border-radius: 5px;
        padding: 0.5rem;
        min-width: 200px;
        z-index: 1;
        left: 0;
        top: 100%;
        white-space: pre-wrap;
        font-family: monospace;
      }
      .more-dropdown:hover .dropdown-content {
        display: block;
      }
      @media (min-width: 1024px) {
        .menu-container {
          flex-wrap: nowrap;
        }
        .menu-item:nth-child(n + 6) {
          display: none;
        }
        .more-dropdown {
          display: flex;
        }
        .dropdown-content a {
          display: block;
          padding: 0.25rem 0;
          text-decoration: none;
          color: #333;
        }
        .dropdown-content a:hover {
          color: rgb(245, 130, 32);
        }
      }
      @media (max-width: 1023px) {
        .menu-container {
          flex-direction: column;
          gap: 0.5rem;
        }
        .menu-item,
        .view-all-btn,
        .more-btn {
          width: 100%;
          text-align: center;
        }
        .more-dropdown {
          display: none !important;
        }
      }
      /* body menu style */
      /* doctors section  */
      .section-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2rem 1rem;
        text-align: center;
      }
      .section-title {
        color: #af9763;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }
      .body-part-diagram {
        position: relative;
        max-width: 300px;
        margin: 0 auto 2rem;
      }
      .body-part-diagram img {
        width: 100%;
        height: auto;
      }
      .body-part-label {
        position: absolute;
        color: #af9763;
        font-size: 0.8rem;
        cursor: pointer;
        transition: color 0.3s ease;
      }
      .body-part-label:hover {
        color: #f58220;
      }
      .eye {
        top: 10%;
        left: 30%;
      }
      .nose {
        top: 20%;
        left: 45%;
      }
      .throat {
        top: 25%;
        left: 45%;
      }
      .arm {
        top: 30%;
        left: 10%;
      }
      .liver {
        top: 40%;
        left: 20%;
      }
      .lower-spine {
        top: 50%;
        left: 40%;
      }
      .heart {
        top: 35%;
        left: 50%;
      }
      .lungs {
        top: 35%;
        left: 55%;
      }
      .elbow {
        top: 40%;
        left: 15%;
      }
      .kidneys {
        top: 50%;
        left: 55%;
      }
      .stomach {
        top: 45%;
        left: 45%;
      }
      .hip {
        top: 60%;
        left: 40%;
      }
      .thigh {
        top: 70%;
        left: 35%;
      }
      .skin {
        top: 65%;
        left: 50%;
      }
      .knee {
        top: 80%;
        left: 40%;
      }
      .ankle {
        top: 90%;
        left: 40%;
      }
      .foot {
        top: 95%;
        left: 40%;
      }
      .brain {
        top: 5%;
        left: 45%;
      }
      .teeth {
        top: 15%;
        left: 50%;
      }
      .gender-toggle {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: 2rem;
      }
      .gender-toggle .btn {
        background-color: #af9763;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        transition: background-color 0.3s ease;
      }
      .gender-toggle .btn.active {
        background-color: #f58220;
      }
      .gender-toggle .btn:hover {
        background-color: #f58220;
      }
      .department-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
        margin-bottom: 2rem;
      }
      .department-card {
        background-color: rgba(175, 151, 99, 0.2);
        padding: 1rem;
        border-radius: 5px;
        text-align: center;
        color: #333;
        transition: background-color 0.3s ease;
      }
      .department-card:hover {
        background-color: #f58220;
        color: white;
      }
      .department-card i {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
      }
      .doctor-card {
        background-color: rgba(175, 151, 99, 0.2);
        padding: 1rem;
        border-radius: 5px;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
      }
      .doctor-card img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
      }
      .doctor-info h5 {
        margin: 0;
        font-size: 1rem;
      }
      .doctor-info p {
        margin: 0;
        font-size: 0.8rem;
        color: #666;
      }
      .book-btn {
        background-color: #af9763;
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 5px;
        text-decoration: none;
        transition: background-color 0.3s ease;
      }
      .book-btn:hover {
        background-color: #f58220;
      }
      @media (min-width: 768px) {
        .row-cols-2 {
          grid-template-columns: repeat(2, 1fr);
        }
        .doctor-section {
          display: flex;
          justify-content: space-between;
          align-items: flex-start;
        }
        .doctor-card {
          width: 100%;
        }
      }
      /* end doctors section  */
/* footer slider  */
.info-box {
  position: relative;
  width: 100%;
}

.event-date {
  position: absolute;
  top: -137px;
  left: 15px;
  background-color: rgba(158, 136, 89, 0.6);
  border-radius: 4px;
  color: white;
  padding: 5px;
  font-size: 20px;
  width: auto;
}

.event-department {
  position: absolute;
  top: -130px;
  right: 15px;
  background-color: rgba(158, 136, 89, 0.6);
  border-radius: 4px;
  color: white;
  padding: 5px;
  font-size: 12px;
}

/* footer slider  */
      /* Footer */
      footer {
        /* background-color: rgb(175, 151, 99); */
        color: white;
        /* padding: 2rem 0; */
        font-family: "Arial", sans-serif;
      }
      .footer-container {
        max-width: 100%;
        margin: 0 auto;
        /* padding: 0 15px; */
      }
      .footer-row {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0rem;
        margin-bottom: 2rem;
      }
      .footer-col {
        flex: 1;
        min-width: 372px;
        position: relative;
        overflow: hidden;
        height: 448px;
        /* border-radius: 8px; */
      }
      .footer-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }
      .slider {
        position: absolute;
        bottom: -100%;
        left: 0;
        right: 0;
        background-color: rgb(245, 130, 32);
        color: white;
        padding: 1rem;
        transition: bottom 0.3s ease;
        height: 100%;
        overflow-y: auto;
      }
      .footer-col:hover .slider {
        bottom: 0;
      }
      .slider h5 {
        color: rgb(245, 130, 32);
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
      }
      .slider p,
      .slider a {
        color: white;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
        text-decoration: none;
      }
      .slider a:hover {
        color: rgb(245, 130, 32);
      }
      .footer-logo {
        text-align: center;
        margin-top: 1rem;
      }
      .footer-logo img {
        max-width: 80px;
        margin-bottom: 1rem;
      }
      .social-icons a {
        color: white;
        font-size: 1.5rem;
        margin: 0 0.5rem;
        transition: color 0.3s ease;
      }
      .social-icons a:hover {
        color: rgb(245, 130, 32);
      }
      .footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1rem;
        text-align: center;
        font-size: 0.9rem;
        background: rgb(175, 151, 99);
      }
      .footer-bottom a {
        color: white;
        text-decoration: none;
      }
      .footer-bottom a:hover {
        color: rgb(245, 130, 32);
      }
      @media (max-width: 768px) {
        .footer-row {
          flex-direction: column;
          align-items: center;
        }
        .footer-col {
          width: 100%;
          max-width: 500px;
        }
        .footer-logo {
          margin-top: 2rem;
        }
      }
      /* map */
      #mapid {
            height: 500px;
            width: 100%;
        }
        .section-title {
            font-weight: bold;
            margin-top: 10px;
            font-size: 18px;
        }
        .country-item, .university-item {
            padding: 5px;
            margin-bottom: 5px;
            background-color: #f1f1f1;
            cursor: pointer;
        }
        .country-item:hover {
            background-color: #d1ecf1;
        }
   /* End map */