
.sub-heading {
      color: white;
    padding-top: 1rem;
    font-size: 1rem;
    letter-spacing: 0.125rem;

}
.highlight {
  background-color: #dec7ae;
  padding: 10px 15px;
  border-left: 4px solid #623b2d;
  border-radius: 5px;
  margin: 15px 0;
}

.events-part .events-list li {
  margin-bottom: 1rem;
  font-size: 14px;
  font-weight: 600;
}

.event-description ul {
  margin: 0;
}

.b-b-highlight {
  border-bottom: 3px solid #623b2d;
  padding: 0rem 0 2rem 0;
}

/* Floating Button */
.floating-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #623b2d;
  color: white;
  border: none;
  padding: 0.5rem;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index:1001;
}

/* Modal Background */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal Content */
.modal-content {
  background: white;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    max-width: 480px;
    text-align: left;
    position: relative;
}

/* Close Button */
.close-btn {
  position: absolute;
    top: 1.75rem;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    cursor: pointer;
    color: #603b2f;
}

.enquiry-form {
  color: black;

  .title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 2rem 0;
  }

  .sub-title {
           font-size: 14px;
        padding: 1rem 0 0.5rem 0;
        display: block;
  }
}

.help-icon {
  width: 48px;
  height: 48px;
}

/* View More Button */

/* Project Modal Styles */
.project-modal {
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.project-modal-content {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.project-gallery {
    flex: 1;
    position: relative;
}

.project-gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.gallery-controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
    width: 100%;
}

.gallery-btn {
   width: 25%;
    padding: 0.75rem;
    background-color: #613b2e;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s;
}

.gallery-btn:hover {
    background-color: #3e271f;
}

.project-details {
    flex: 1;
}

.project-details h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #333;
}

.project-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-details .form-btn {
    width: 100%;
}

@media (max-width: 768px) {
    .project-modal-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .project-modal {
        width: 95%;
    }
}