.main-heading {
    padding: 20px 0;
}

.badge-custom {
    background-color: #057c59;
    color: white;
}

.rating {
    font-size: 1.2em;
    color: #057c59;
}

.img-gallery img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}
.main img{
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 500px;
}
.characteristic{
    background-color: #f1f1f1;
    border-radius: 10px;
    color: rgba(110, 110, 110, 0.863);
    padding: 4px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: bold;
}
.package-options {
    padding: 20px 0;
}

.check-availability-btn {
    background-color: #057c59;
    border: none;
    color: white;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    display: block;
    cursor: pointer;
}

.package-type {
    display: inline-block;
    border: 1px solid black;
    border-radius: 10px;
    padding: 5px;
    margin: 10px 0;
    width: auto;
    background-color: white;
}
.package-type.selected {
    border-color: #ff6600;
    color: #ff6600 !important;

}
.clear-all {
    float: right;
    font-size: 0.9em;
    color: #888;
}
.package{
    background-color: #f1f1f1;
    border-radius: 20px;
    padding: 21px;
    margin-top: 10px;
}
.package p{
    color: black;
    font-weight: bold;
}
.grey{
    color: #888 !important;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;

}
.datepicker-container {
    position: relative;
    display: block;
}
.datepicker table {
    width: 100%;
    border-collapse: collapse;
}
.datepicker th, .datepicker td {
    padding: 5px;
    text-align: center;
    cursor: pointer;
}
.datepicker .today {
    background-color: #057c59;
    color: white;
}
.datepicker-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.datepicker-nav button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}
.details-section {
    display: none;
}
.details-section.active {
    display: block;
}
.quantity-section {
    width: 200px; 
    margin-top: 20px;
}
.quantity-btn {
    background-color: #057c59;
    border: none;
    color: white;
    padding: 2px 17px;
}
.quantity-btn:hover {
    background-color: #05447c;
    color: white;
}
.price-section {
    margin-top: 20px;
}
.pricings {
    display: none; 
    flex-direction: column;
    padding: 20px;
}
.price-info {
    display: flex;
    align-items: baseline;
}

.currency {
    font-size: 1.2rem;
    margin-left: 1.3rem;
    font-weight: bold;
}

.buttons {
    display: flex;
    gap: 10px; 
}
.quantity-section span{
    font-weight: bold;
    margin-right: 20px;
}
.quantity-section small{
    font-size: 0.7rem;
}
.required-fields{
    margin-top: 10px;
    color: gray !important;
    font-size: 0.8rem !important;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif !important;
    font-weight: bold !important;
}
.btn2{
    background-color: #057c59;
    padding: 15px 32px;
    color: white;
    font-family: sans-serif;
    border: none;
    border-radius: 12px;
    margin-right: 200px;
    font-size: 18px;
}
.btn2:hover{
    background-color: #05687c;
}
.package-options h2{
    color: black;
    font-size: 1.2rem;
    margin-top: 2px;
}
.quantity-section input[type="text"] {
    width: 50px; 
    text-align: center;
    color: #000;
    background-color: #fff; 
    border: 1px solid #ccc; 
    margin: 0 5px;
}
.disabled-package {
    opacity: 0.5; 
    position: relative; 
}

.disabled-package::after {
    content: 'Not available on your selected date';
    display: none; 
    color: #057c59;
    font-weight: bold;
    background-color: white;
    padding: 7px;
    border: 1px solid #057c59;
    border-radius: 5px;
    position: absolute;
    top: 110%; 
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap; 
    z-index: 10;
}

.disabled-package:hover::after {
    display: block; 
}

.disabled-package:hover {
    cursor: not-allowed; 
}

.selected-date {
    background-color: #057c59;
    color: #fff; 
}
.footer-bottom {
    text-align: center;
    padding: 10px;
    background-color: #e9ecef;
    font-size: 14px;
    border-top: 1px solid #e7e7e7;
}
.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.step {
    width: 30%;
    text-align: center;
    position: relative;
}
.step::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background: #ccc;
    top: 20%;
    left: -50%;
    z-index: -1;
}
.step.between::before{
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    background: green;
    top: 20%;
    left: -50%;
    z-index: -1;
}
.step:first-child::before {
    display: none;
}
.step.complete::before {
    background: green;
}
.step.complete .step-circle {
    background: green;
}
.step.between .step-circle{
    background: brown;
    color: white;
}
.step-circle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 auto;
}

.media img{
    width: 100px;
    height: 120px;
    border-radius: 20px;
}
.media{
    border: 1px solid rgba(210, 210, 210, 0.886);
    border-radius: 20px;
    padding: 20px;

}
.info{
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(210, 210, 210, 0.886);
}
.form-section {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    margin-bottom: 20px;
}

.form-section h5 {
    font-weight: bold;
}

.form-section .form-group label {
    font-weight: bold;
}

.form-section .form-control {
    border-radius: 5px;
}

.form-section .invalid-feedback {
    display: none;
}

.form-section .form-control.is-invalid {
    border-color: #dc3545;
}

.form-section .form-control.is-invalid ~ .invalid-feedback {
    display: block;
}
.form-group label{
    margin-top: 25px;
}
.payment{
    background-color: #057c59; color: white;
    font-weight: bold;
    margin-top: 28px;
}
.selected-date {
    background-color: #057c59;
    color: #fff;
}
.modal-content {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    padding: 1.5rem;
    
}

.modal-header {
    border-bottom: 1px solid #dee2e6;
    background-color: #f8f9fa;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.popup{
    height: auto;
}
.modal-title {
    font-size: 1.25rem;
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 1.5rem;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.25);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.btn-primary {
    background-color: #057c59;
    border-color: #057c59;
    border-radius: 4px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.btn-primary:hover {
    background-color: #057c59;
    border-color: #057c59;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem #057c59;
}

.mb-3 {
    margin-bottom: 1rem;
}
.flatpickr-day.flatpickr-disabled {
    color: #acb9c4; 
    cursor: not-allowed; 
}
.flatpickr-day{
    color: #111;
    font-weight: bold;
}
.modal-content {
    border-radius: 33px;
}

.input-group .form-control {
    border-radius: 0.25rem;
}

.nav-pills .nav-link.active {
    font-weight: bold;
    color: #057c59;
    background-color: #fff;
    font-size: 1.1rem;
    border-bottom: 2px solid #057c59;
    border-radius: 0px;
}

.btn-primary {
    background-color: #057c59;
}

.btn-light {
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.btn-light i {
    font-size: 2.3rem;
    color: #666;
}

.text-center p {
    margin-bottom: 10px;
}

.text-center small {
    color: #666;
}
.btn-close {
    background-color: transparent;
    border: none;
    position: absolute;
    top: 10px;
    right: -30px;
    font-size: 1rem;
    color: #000; 
    cursor: pointer;
}
.modal-backdrop.show {
    opacity: 0.9; 
    background-color: #181818; 
}
.btn-social {
    position: relative;
    padding: 0;
    border: none;
    width: 40px;
    height:40px;
    background-color: transparent; 
    display: flex;
    align-items: center;
    overflow: visible;
}
.social-icon {
    position: absolute;
    width: 40px;
    height: 40px;
}
#nextStepBtn:disabled , #otpbutton:disabled, #confirmButton:disabled {
    background-color: #ddd;
    color: #000;
    border: none;
}
#cntry{
    width: 70px;
}
.nav-link{
    color: black;
}
.nav-link:hover{
    color: #057c59;
    font-weight: 500;
}
.input-group-text {
    background-color: #e3e2e2;
    border: 1px solid #ced4da;
    border-left: 0;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    padding: 0.375rem 0.75rem;
}

.form-control {
    border-right: 0;
    border-radius: 4px 0 0 4px;
}

.input-group .form-control:focus {
    box-shadow: none;
    border-color: #86b7fe;
}

.popup {
    position: relative;
    width: 100%;
    max-width: 400px;
    /* display: none; */
    height: 410px;
}

.popup-content {
    position: relative;
}

.popup h2 {
    margin-top: 0;
}

.popup form {
    display: flex;
    flex-direction: column;
}

.popup input[type="password"] {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.popup small {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    margin-top: 10px;
}

.popup button {
    padding: 10px;
    background-color: #057c59;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
}

.popup button:hover {
    background-color: #057c59;
}

.popup .close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}
.gry{
    color: grey !important;
}

.package-section {
    padding: 10px;
    margin: 0 auto;
}

.images-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}
.animated-image{
    width: 40%;
    height: 40%;
    display: block; margin: 0 auto;
}

.info-text {
    font-size: 18px;
    margin-bottom: 20px;
}

.book-button {
    padding: 10px 20px;
    font-size: 18px;
    color: #ffffff;
    background-color: #057c59;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.book-button:hover {
    background-color: #ff4500;
}
#wrong-email-msg {
    display: none; 
    margin-bottom: 15px; 
    text-align: center; 
}

#wrong-email-msg p {
    margin: 0; 
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    padding: 10px; 
    border-radius: 4px; 
    border: 1px solid #f5c6cb; 
}
#choose-quantity {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 16px 16px;
    border-radius: 11px;
    font-size: 17px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    white-space: nowrap;
}

#choose-quantity:after {
    content: "";
    position: absolute;
    bottom: -10px; 
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.9) transparent transparent transparent; 
}


.verification-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.verification-svg {
    width: 100%;
    height: 100%;
}

.verification-circle {
    stroke: #28a745;
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 62;
    stroke-dashoffset: 62;
    animation: draw-circle 1s forwards;
}

.verification-tick {
    stroke: #28a745;
    stroke-width: 2;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: draw-tick 1s 0.5s forwards;
    transform: rotate(0deg);
    transform-origin: center;
}

@keyframes draw-circle {
    from {
        stroke-dashoffset: 62;
    }

    to {
        stroke-dashoffset: 0;
    }
}

@keyframes draw-tick {
    from {
        stroke-dashoffset: 48;
    }

    to {
        stroke-dashoffset: 0;
    }
}

.modal-content {
    padding: 2rem;
}