  .trigger-btn {
    background-color: #1a2332;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.trigger-btn:hover {
    background-color: #2a3442;
}
.modal-content{
  display: flex;
}
/* Modal overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal container */
.modal-container {
    background: white;
    border-radius: 12px;
    padding: 32px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

/* Close button */
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #1a2332;
    color: white;
    border: none;
   width: 28px;
    height: 39px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background-color: #2a3442;
}

/* Success message */
.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    border-left: 4px solid #28a745;
}

.success-message p {
    color: #155724;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Form section */
.form-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-section label {
    color: #333;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Select container */
.select-container {
    position: relative;
    width: 100%;
}

.select-container select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: white;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s ease;
}

.select-container select:focus {
    outline: none;
    border-color: #1a2332;
    box-shadow: 0 0 0 3px rgba(26, 35, 50, 0.1);
}

/* Custom dropdown arrow */
.select-container::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
    pointer-events: none;
}

/* Submit button */
.submit-btn {
    background-color: #1a2332;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 8px;
}

.submit-btn:hover {
    background-color: #2a3442;
}

.submit-btn:active {
    transform: translateY(1px);
}

/* Responsive design */
@media (max-width: 768px) {
    .modal-container {
        margin: 20px;
        padding: 24px;
    }
    
    .success-message {
        padding: 12px 16px;
    }
}

/* Overlay styling */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Container styling */
.modal-container {
  height: 56%;
  background: #fff;
  width: 700px;
  max-width: 1000px;
  display: flex;
  flex-direction: row;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
/*   background: none; */
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Image section (left) */
.modal-image {
  flex: 1;
  background: #f0f0f0;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Form section (right) */
.form-section {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Success message */
.success-message {
  background: #e6f4ea;
  color: #2e7d32;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* Label */
.form-section label {
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
}

/* Select dropdown */
.select-container select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* Button */
.submit-btn {
  background: #0a0f1c;
  color: #fff;
  border: none;
  padding: 12px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: #1c2230;
}