.Guest-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  }
  body {
    background-color: white !important;
    font-family: 'Inter', sans-serif !important;
  }

  .Guest-section img {
    min-height: 350px !important;
    width: 100%;
    object-fit: cover;
  }
  
  @media (max-width: 991.98px) {
    .Guest-title  {
      font-size: 2.2rem;
    }
  }
  
  /* Mobile */
  @media (max-width: 767.98px) {
    .Guest-title  {
      font-size: 1.3rem;
    }
    .Guest-section img {
      min-height: auto !important;
      width: 100%;
      object-fit: cover;
    }
  }

  .breadcrumb {
    --bs-breadcrumb-divider: ">";
  }
  
  .breadcrumb li {
    color: #999999;
    font-weight: bold;
 }
  
  .breadcrumb-item a {
    color: #999999;
    font-weight: bold;
    text-decoration: none !important;
  }
  
  .breadcrumb a:hover {
    text-decoration: underline;
    color: #0056b3; 
  }

  h3 {
    font-size: 24px;
    font-weight: bold;
  }
  
  .custom-enquiry {
    background-color: #D63228 !important;
    border: none !important;
    padding: 10px 50px !important;
    color: white !important;
  }
  
  .category-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0;
    margin: 0;
  }
  
  .category-item {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #AAAAAA;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
  }
  
  .category-item.active {
    border: 1px solid #D63228;
    color: #D63228;
    font-weight: bold;
  }
  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    transition: all 0.3s ease;
  }
  
  .image-grid.fixed-3-col {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .image-box {
    border: 1px solid #000000;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    height: 200px;
    background-color: #ffffff; 
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .image-box img {
    padding:50px 50px;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    display: block;
  }
  @media (max-width: 576px) {
    .image-grid {
      grid-template-columns: 1fr !important; 
    }
  
    .image-box {
      height: 180px;
    }
  }

  .texttieude{
    font-size: 15.9px;
    color: #AAAAAA;
    font-weight: 300;
  }
  .text-end button{
    font-size: 15.4px;
    padding: 12px 20px; 
    background-color: transparent;
    color: #D63228;
    border: 1px solid #D63228;
    cursor: pointer;
  }