 /* Custom Modal Styling */
 .custom-modal .modal-content {
    border-radius: 10px;
    padding: 20px;
    border: none;
}

/* Close button styling */
.custom-modal .close {
    font-size: 24px;
    position: absolute;
    right: 20px;
    top: 15px;
    opacity: 1;
}

/* Header Styling */
.custom-modal .modal-title {
    font-size: 18px;
    font-weight: bold;
}

.custom-modal .modal-subtitle {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Input Styling */
.custom-modal .form-control {
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    box-shadow: none;
    height: 45px;
    border-radius: 8px;
}

/* Hide all sections initially except first */
.custom-modal .form-section {
    display: none;
}

/* Button Styling */
.custom-modal .btn-primary, .custom-modal .btn-next, .custom-modal .btn-prev {
    background-color: #6CB7E6;
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    border-radius: 5px;
}

/* Navigation Buttons */
.custom-modal .btn-nav {
    display: flex;
    justify-content: space-between;
}

/* Active section */
.custom-modal .form-section.active {
    display: block;
}
/* body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
} */
.custom-modal .popup {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.custom-modal .options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}
.custom-modal .option {
    padding: 20px;
    border: 2px solid #ccc;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.custom-modal .option.selected {
    border-color: #6cb7e6;
    background-color: #e6feff;
    box-shadow: 0px 3px 8px #6cb7e666;
}
.custom-modal input[type="hidden"] {
    display: none;
}
.custom-modal h4 {
font-size: large !important;
}
.custom-modal .form-row {
    display: flex;
    gap: 10px;
}
.custom-modal .form-row .form-group {
    flex: 1;
}

/* Style for the "Is your travel date fixed?" section */
.custom-modal .form-group label {
    font-weight: 400;
    margin-bottom: 3px;
    display: block;
    color: #333;
    font-size: 13px;
}

.custom-modal .radio-group {
display: flex;
flex-direction: column;
gap: 10px;
}

.custom-modal .radio-group span {
font-weight: normal;
color: #555;
display: flex;
align-items: center;
cursor: pointer;
gap:8px;
}

/* .radio-group input[type="radio"] {
margin-right: 10px;
cursor: pointer;
} */

/* Optional: Add hover effect for better interactivity */
.custom-modal .radio-group span:hover {
color: #6CB7E6;
}
.custom-modal .radio_class{
border-radius:10px;
border:1px solid #000;
padding: 10px;
}
.custom-modal .radio_class1{
border-radius:10px;
border:1px solid #000;
padding: 10px;
}
.custom-modal .radio_class2{
border-radius:10px;
border:1px solid #000;
padding: 10px;
}
.custom-modal .radio-group .active{
border: 2px solid #6CB7E6;
box-shadow: 0px 3px 8px #6cb7e666;
}
/* Optional: Style for checked radio buttons */
.radio-group input[type="radio"]:checked + span {
color: #007BFF;
font-weight: bold;
}
.thank-you-modal .modal-content {
border-radius: 15px;
border: none;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.thank-you-modal .modal-header {
border: none;
background: #6cb7e6;
color: white;
border-radius: 15px 15px 0 0;
text-align: center;
display: block;
}
.thank-you-modal .modal-header h5 {
font-size: 2rem;
font-weight: bold;
}
.thank-you-modal .modal-body {
text-align: center;
padding: 30px;
}
.thank-you-modal .modal-body i {
font-size: 4rem;
color: #28a745;
margin-bottom: 20px;
animation: bounce 1s infinite;
}
.thank-you-modal .modal-body p {
font-size: 1.2rem;
color: #333;
margin-bottom: 0;
}
.thank-you-modal .modal-footer {
border: none;
justify-content: center;
padding: 20px;
}
.thank-you-modal .modal-footer .btn {
background: #6cb7e6;
color: white;
border: none;
border-radius: 25px;
padding: 10px 30px;
font-size: 1rem;
transition: all 0.3s ease;
}
.thank-you-modal .modal-footer .btn:hover {
transform: scale(1.05);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Bounce Animation */
@keyframes bounce {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-10px);
}
}

.spinner {
    display:none;
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}