/* default styling – overridden by layout classes and custom CSS */
/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  /* Show the popup */
  .modal-overlay.show {
    display: flex;
  }
  
  /* Modal container */
  .modal {
    background: #194065;
    padding: 2rem;
    border-radius: 8px;
    max-width: 1000px;
    width: 90%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    position: relative;
    font-family: Arial, sans-serif;
    color: #fff;
  }
  
  /* Close button */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    color:#fff;
  }
  
  /* Layout: right-image */
  .modal.right-image {
    display: flex;
    gap: 1rem;
  }
  
  .modal.right-image .modal-left {
    flex: 1;
  }
  
  .modal.right-image .modal-right img {
    max-width: 100%;
    border-radius: 8px;
  }
  
  /* Layout: top-image */
  .modal.top-image {
    display: block;
    text-align: center;
  }
  
  .modal.top-image img {
    max-width: 100%;
    margin-bottom: 1rem;
    border-radius: 8px;
  }
  
  /* Layout: minimal */
  .modal.minimal {
    padding: 1rem;
    text-align: center;
  }
  
  .modal-buttons {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
  }
  
  .modal-buttons button {
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 20px;
    font-weight: bold;
  }
  
  .learn-more {
    background-color: #51A8F0;
    color: white;
  }
  
  .schedule-now {
    background-color: transparent;
    color: white;
    border:1px solid #fff;
  }
  