body {
    font-family: 'Amiri', serif;
    margin: 0;
    background-color: #fff;
  }
  .top-bar {
    background-color: #fff;
    border-top: 5px solid #d8974d;
    border-bottom: 5px solid #b07b37;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
    margin-bottom: 40px;
  }
  .top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 0;
  }
  .logo {
    height: 90px;
    transition: transform 0.3s ease;
  }
  .logo:hover {
    transform: scale(1.1);
  }
  .nav {
    display: flex;
    gap: 30px;
    margin: 10px 0;
  }
  .nav-link {
    font-weight: bold;
    font-size: 17px;
    color: #7b6849;
    transition: 0.3s;
  }
  .nav-link:hover {
    color: #998036;
  }
  .nav-link.active {
    color: #445f3a;
  }
  .search-box {
    background-color: #f1f1ed;
    border: 1px solid #c9c4a2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 4px 10px;
  }
  .search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-family: 'Amiri', serif;
    font-size: 14px;
    color: #7b6849;
    width: 100px;
  }
  .search-box button {
    background-color: #998036;
    color: #fff;
    border: none;
    padding: 5px 8px;
    border-radius: 4px;
  }
  .hero-section {
    height: 100vh;
    overflow: hidden;
    animation: fadeIn 1.5s ease-in-out;
  }
  @keyframes fadeIn {
    from {opacity: 0; transform: translateY(-20px);}
    to {opacity: 1; transform: translateY(0);}
  }
  .icon-box {
    text-align: center;
  }
  .icon-box img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 2px solid #a78b4f;
    padding: 10px;
    background-color: #efefef;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }
  .icon-label {
    margin-top: 10px;
    background-color: #f1efec;
    border-radius: 10px;
    padding: 6px 20px;
    border: 1px solid #cec7c1;
    color: #5b6a58;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    display: inline-block;
    min-width: 130px;
  }
  .carousel-indicators [data-bs-target] {
    background-color: #d8974d;
  }
  footer {
    background-color: #4d5946;
    padding: 60px 20px;
  }
  .social-icon img {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow:
      inset 0 0 10px rgba(255, 215, 0, 0.4),
      0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
  }
  
  .social-icon img:hover {
    transform: scale(1.1);
  }
  
  .palm-img {
top: -120px;
  }
  
      
  .madinah-guide-section {
  background-color: #fefaf4;

  padding: 60px 20px;
}

.guide-title {
  font-family: 'Amiri', serif;
  font-size: 36px;
  color: #7c6531;
  font-weight: bold;
  position: relative;
  display: inline-block;
}

.guide-title .decoration {
  font-size: 24px;
  color: #c5a56b;
  margin: 0 10px;
  vertical-align: middle;
}

.guide-description {
  color: #5b5b5b;
  font-size: 20px;
  line-height: 2;
  margin-top: 30px;
}
