* {
    font-family: 'Open Sans', sans-serif;
}

html,
body {
    margin: 0;
    padding: 0;
    background: url(bg_login.jpg);
    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: -3;
    scroll-behavior: smooth;

}

/* For Webkit Browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 5px;
    /* Thin scrollbar */
    height: 5px;
    /* For horizontal scrollbar */
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Light grey background */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    /* Dark grey thumb */
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
    /* Slightly darker on hover */
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

/* General Styles for the Header */
header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

/* Title Styling */
header h1 {
    font-size: 1.5rem;
    margin: 0;
    color: #636364;
    /* Dark text color */
}

/* Updated Spacing for Action Buttons */
.action-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    /* Increased gap for better spacing */
    margin-left: auto;
    /* Ensure buttons align to the right */
    position: relative;
}

/* Ensure proper alignment of FAQ and dropdown */
.action-buttons a {
    text-decoration: none;
    color: #636364;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    gap: 5px;
    z-index: 2;
    /* Ensure FAQ button stays above dropdown */
    position: relative;
    cursor: pointer;
}


.language-dropdown {
    font-size: 1.1rem;
    padding: 5px 10px;
    border: 1px white;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1;
    background: transparent;
    position: relative;
    color: #636364;
    font-weight: 600;
}

.action-buttons a svg {
    width: 20px;
    height: 20px;
}

/* Desktop-specific Styles */
@media (min-width: 768px) {

    .Header_desktopOnly__QJM8i {
        display: flex;
        /* Ensure FAQ link is visible */
    }
}

/* Mobile-specific Styles */
@media (max-width: 767px) {
    .Header_desktopOnly__QJM8i {
        display: flex;
        justify-content: center;
    }

    header h1 {
        font-size: 1.2rem;
    }

    .language-dropdown {
        width: auto;
    }
}

/* Title styling */
h1 {
    font-size: 1.8em;
    color: #fff;
    margin: 0;
}

/* Optional hover effect for the back button */
.back-nav ul li a:hover {
    background-color: #e0e0e3;
    color: #636364;
}

h2 {
    color: #636364;
    font-size: xx-large;
}

h1 {
    margin: 0;
}

main {
    text-align: center;
    display: block;
    flex-direction: column;
    top: 0;
    /* Optional, ensures it starts from the left */
    margin: 0;
    flex: 1;
    width: 100%;
    /* Optional, makes it span the full width */
    box-sizing: border-box;
    padding: 10px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-flow: column;
    align-items: center;
}


.plans {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;

}

.plan {
    border-radius: 50px;
    background: #e0e0e0;
    box-shadow: 20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
    padding: 20px;
    width: 300px;
    transition: all 0.3s ease;
}

.plan:hover {
    transform: translateY(-10px);
}

h3 {
    color: #636364;
}

.price {
    font-size: 2em;
    font-weight: bolder;
    margin: 100px 0 10px 5px;
    color: orange;
}

.vat {
    color: white;
}

.price-dis {
    font-size: 1.7em;
    font-weight: bold;
    margin: 5px;
}

#signup-button {
    position: relative;
    /* Position it absolutely within the card_box */

    color: #636364;
    background: #f0f0f3;
    padding: 12px 20px;
    border-radius: 30px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.top-image img {
    margin-bottom: 20px;
    /* Space between the top image and the row below */
    filter: brightness(141%) contrast(71%) saturate(4%) blur(0px) hue-rotate(0deg);
    transition-duration: .5s;
}

.image-container {
    display: flex;
    gap: 8px;
    /* Space between images */
}

.image-container a img {
    transition-duration: .5s;
    max-width: 100px;
    /* Adjust as needed */
    height: auto;
    opacity: 1;
    filter: brightness(196%) contrast(0%) saturate(100%) blur(0px) hue-rotate(0deg);
}

.image-container img:hover {
    transform: scale(1.2);
    transition-timing-function: cubic-bezier(0.47, 2.02, .31, -.36);
}

/* From Uiverse.io by mrhyddenn */
.container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.card_box {
    width: 300px;
    border-radius: 20px;
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    /* Hidden initially */
    transform: translateY(50px);
    /* Start below */
    animation: slideIn 0.5s ease-out forwards;
    /* Animation */
}

/* Keyframes for the slide and fade-in effect */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    50% {
        opacity: 0.5;
        transform: translateY(25);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay for staggered animation */
.card_box:nth-child(1) {
    animation-delay: 0.2s;
}

.card_box:nth-child(2) {
    animation-delay: 0.3s;
}

.card_box:nth-child(3) {
    animation-delay: 0.4s;
}

.card_box:nth-child(4) {
    animation-delay: 0.5s;
}

.card_box:nth-child(5) {
    animation-delay: 0.6s;
}

.card_box:hover {
    --glow-color: rgb(217, 176, 255);
    --glow-spread-color: rgba(191, 123, 255, 0.781);
    --enhanced-glow-color: rgb(231, 206, 255);
    --btn-color: rgb(100, 61, 136);
    transform: scale(1.01) !important;
    /* Slightly larger scale */
    transition: transform 0.5s ease;
    /* Smooth transition over 0.5 seconds */
    /* Scale up slightly on hover */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
    background: radial-gradient(circle, rgba(58, 56, 56, 0.623) 0%, #4de352
            /* Enhance shadow for emphasis */
        );
}

.card_box.no-hover {
    pointer-events: none;
    /* Disable all hover interactions */
}


.card_box.active {
    transform: scale(1.05);
    /* Scale up slightly on hover */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65);
    background: radial-gradient(circle, rgba(58, 56, 56, 0.623) 0%, #4de352
            /* Enhance shadow for emphasis */
        )
        /* Enhance shadow for emphasis */
}

.card_box span {
    position: absolute;
    overflow: hidden;
    width: 150px;
    height: 150px;
    top: -10px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card_box span::before {
    content: attr(content);
    position: absolute;
    width: 150%;
    height: 40px;
    background-image: linear-gradient(45deg, #ff6547 0%, #ffb144 51%, #ff7053 100%);
    transform: rotate(-45deg) translateY(-20px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.23);
}

.card_box span::after {
    content: '';
    position: absolute;
    width: 10px;
    bottom: 0;
    left: 0;
    height: 10px;
    z-index: -1;
    box-shadow: 140px -140px #cc3f47;
    background-image: linear-gradient(45deg, #FF512F 0%, #F09819 51%, #FF512F 100%);
}

.container ul,
li {
    color: white;
    background: linear-gradient(45deg, #C0C0C0, #A9A9A9);
    -webkit-background-clip: text;
    background-clip: text;
}

.iti__country-name {
    color:  #636364;
}
.card_box h4 {
    font-size: 1.2em;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.card_box ul {
    list-style-type: none;
    padding: 10px;
}

.card_box ul li {
    display: flex;
    align-items: center;
    font-size: 0.95em;
    margin-bottom: 8px;
    padding-left: 10px;
    text-align: left;
    font-weight: 600;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline-block;
}

.back-nav {
    flex: 1;
    max-width: fit-content;
}

nav ul {
    list-style: none;
    /* Remove default list styling */
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    /* Arrange items vertically */
    gap: 10px;
    /* Space between items */
}

nav ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #636364;
    font-size: 1.1em;
    padding: 10px 15px;
    background-color: #f0f0f3;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-left: 10px;
}

/* Optional hover effect */
nav ul li a:hover {
    background-color: #e0e0e3;
    color: #636364;
}

nav ul li a i {
    margin-right: 8px;
    font-size: 1.2em;
}

.iti {
    width: calc(100% - 3px) !important;
    border-radius: 5px;
    /* Rounded corners */
    margin-bottom: 3px;
    box-sizing: border-box;
    /* Added to include padding in the width */
    font-size: 14px;
    /* Consistent font size */
}

.iti__flag-container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding: 1px;
}


/* Close button styles */
#closeButton {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 10px;
    /* Top padding for alignment */
    right: 10px;
    /* Right padding for alignment */
    background: transparent;
    border: none;
    color: #636364;
    font-size: 20px;
    cursor: pointer;
    z-index: 1010;
    /* Ensuring itâ€™s above the dialog */
    transition: color 0.3s;
}


#closeButton:hover {
    color: #ff4d4d;
    /* Change color on hover */
}

/* Input dialog styles */
#inputDialog {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(255 255 255 / 89%);
    border-radius: 15px;
    backdrop-filter: blur(12px);
    /* Increased the blur value */
    -webkit-backdrop-filter: blur(12px);
    /* For Safari */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    z-index: 1000;
    width: 90%;
    max-width: 350px;
    flex-direction: column;
    margin: 0 auto;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shrinker {
    width: 65%;
}

.adjuster {
    width: 300px;
}

@media (min-width: 600px) {

    /* From Uiverse.io by mrhyddenn */
    .container {
        margin-bottom: 40px;
    }

    .card_box:hover {
        transform: scale(1.01);
    }
}

@media (max-width: 768px) {
    .container {
        margin-bottom: 40px;
        margin-top: 20px;
    }

    .srinker {
        width: fit-content;
    }
    .adjuster {
        width: fit-content;
    }

    #inputDialog {
        width: 80%;
        /* Fixed width on larger screens */
    }

    .card_box:hover {
        transform: scale(1.01);
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        /* Add space between elements in mobile view */
    }

    .back-nav {
        position: static;
        transform: none;
        margin-bottom: 5px;
    }

    h1 {
        font-size: 1.5em;
    }

    .back-nav ul li a {
        font-size: 1em;
        padding: 8px 12px;
    }
}

#inputDialog label {
    display: block;
    text-align: start;
    margin: 5px 0 5px;
    font-size: 13px;
    font-weight: 600;
    color: #606165;
}

#inputDialog input[type="text"],
#inputDialog input[type="password"],
#inputDialog input[type="number"],
#inputDialog input[type="email"] {
    width: 93%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 3px;
    font-size: 13px;
}

#inputDialog select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    /* Space between inputs */
}

#inputDialog input[type="tel"] {
    width: calc(100% - 0px);
    padding: 10px;
    border-radius: 4px;
    border: 1px solid #ccc;
    font-size: 13px;
    box-sizing: border-box;
    min-width: 150px;
    padding-left: 50px;
}


#inputDialog #nextButton,
#payButton {
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
    /* Green */
    color: white;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    width: 100%;
    /* Full-width button */
    transition: background-color 0.3s;
}


.title {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
    color: #636364;
    margin: 0 auto;
    text-align: center;
}

.title::before {
    width: 18px;
    height: 18px;
}

.title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
}

.title::before,
.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: #31d131;
}


@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}

#backButton {
    background: transparent;
    border: none;
    border-radius: 5px;
    padding: 1px 15px;
    cursor: pointer;
    width: fit-content;
    transition: background-color 0.3s;
}

#backButton i {
    margin-right: 5px;
    /* Space between icon and text */
    font-size: 18px;
    /* Slightly larger icon */
}

#inputDialog h4 {
    color: #636364;
    margin: 0;
}

#snackbar {
    display: none;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 99999;
    /* Ensure this is high enough to appear on top */
    left: 50%;
    /* Center the snackbar */
    bottom: 50px;
    /* 30px from the bottom */

    border-radius: 20px;
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    display: block;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
        However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 50px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 50px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 50px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 50px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

.input_container {
    width: 96%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 5px;
}

.split {
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 15px;
}

.split input {
    width: 100%;
}

.swal2-title {
    font-size: 20px;
}

.swal2-content {
    font-size: 18px;
}

.swal2-icon img {
    width: 32px;
    height: 32px;
}

.swal2-popup {
    font-size: 0.7rem;
}

.swal2-timer-progress-bar {
    background-color: #636364 !important;
    /* Change to your desired color */
}

/* Center the switch container */
.switch-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    padding-bottom: 10px;
    box-sizing: border-box;
    text-align: center;
}

/* Style for the tab container */
.tab-container {
    display: flex;
    gap: 2px;
    margin-bottom: 10px;
    padding: 1px;
    position: relative;
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(50px);
    /* Start below */
    animation: slideIn 0.5s ease-out forwards;
    justify-content: center;
}

/* Style for the tabs */
.tab {
    flex: 1;
    background-color: transparent;
    padding: 12px;
    border: 1px solid #d1d1d1;
    /* Border color */
    cursor: pointer;
    min-width: 160px;
    font-weight: 900;
    font-size: 1rem;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 5px;
    /* Rounded corners */
    text-align: center;
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
}

.tab {
    flex: 1;
    background-color: transparent;
    border: 1px solid #d1d1d1;
    /* Border color */
    cursor: pointer;
    min-width: 160px;
    font-weight: 900;
    font-size: 1rem;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 5px;
    /* Rounded corners */
    text-align: center;
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
}

.tabMenu {
    flex: 1;
    padding: 12px;
    z-index: 99;
    background-color: transparent;
    border: 0;
    outline: none;
    flex-grow: 1;
    cursor: pointer;
    min-width: 160px;
    font-weight: 900;
    font-size: 1rem;
    transition: color 0.2s ease, background-color 0.2s ease;
    display: flex;
    color: #636364;
    max-width: 200px;
}

.tabMenu {
    transition: all 0.3s ease-in-out;
}

.tabMenu:hover {
    background: radial-gradient(ellipse, rgb(154 159 153 / 62%) 0%, #5ced61 100%);
    /* Change text color to green */
    transform: scale(1.05);
    /* Slightly enlarge */
    color: #fff;
}

.tab {
    transition: all 0.3s ease-in-out;
}

.tab:hover {
    background: radial-gradient(ellipse, rgb(154 159 153 / 62%) 0%, #5ced61 100%);
    /* Change text color to green */
    transform: scale(1.05);
    /* Slightly enlarge */
    color: #fff;
}

/* Highlight active tab */
.tab.active {
    color: white;
    /* or any color you prefer for active text */
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
    font-weight: 900;
    font-size: 1rem;
}

.tabMenu.active {
    color: white;
    /* or any color you prefer for active text */
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
    font-weight: 900;
    font-size: 1rem;
}

.tabMenu {
    flex: 1;
    background-color: transparent;
    border: 1px solid #d1d1d1;
    /* Border color */
    cursor: pointer;
    min-width: 160px;
    font-weight: 900;
    font-size: 1rem;
    transition: color 0.2s ease, background-color 0.2s ease;
    border-radius: 5px;
    /* Rounded corners */
    text-align: center;
    display: flex;
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
}

/* Active tab styling */
.tabMenu.active {
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
    color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}


/* Indicator for active tab */
.indicator {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 2px;
    left: 2px;
    z-index: 9;
    border-radius: 7px;
    transition: all 0.2s ease-out;
}

/* Apply a maximum height and make the form scrollable */
#detailsForm {
    max-height: calc(100vh - 200px);
    /* Set the max height to screen height - 200px */
    overflow-y: auto;
    /* Enable vertical scrolling */
    
    /* Add some padding to make it more visually appealing */
}

/* Customizing the scrollbar */
#detailsForm::-webkit-scrollbar {
    width: 12px;
    /* Set the width of the scrollbar */
    height: 12px;
    /* Set the height of the scrollbar (for horizontal scrolling, if needed) */
}

#detailsForm::-webkit-scrollbar-thumb {
    background-color: #888;
    /* Color of the scrollbar thumb (the draggable part) */
    border-radius: 6px;
    /* Optional: Rounded corners for the thumb */
    border: 3px solid #f1f1f1;
    /* Optional: Add a border to the thumb for contrast */
}

#detailsForm::-webkit-scrollbar-thumb:hover {
    background-color: #555;
    /* Darker thumb when hovered */
}

#detailsForm::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Track color (the area the thumb slides in) */
    border-radius: 6px;
    /* Optional: Rounded corners for the track */
}

#detailsForm::-webkit-scrollbar-track:hover {
    background: #ddd;
    /* Slightly darker track when hovered */
}

.card {
    display: none;
    margin-bottom: 20px;
    border-radius: 8px;
}

.card h3 {
    margin: 0;
}

.submit-section {
    text-align: right;
}

.loader-overlay {
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgb(255 255 255 / 0%);
    /* Semi-transparent dark gray background */
    backdrop-filter: blur(3px);
    /* Glass effect with less blur */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* Ensure it appears above other elements */
}

/* Loader styling */
.three-body {
    --uib-size: 35px;
    --uib-speed: 0.8s;
    --uib-color: #636364;
    position: relative;
    display: inline-block;
    height: var(--uib-size);
    width: var(--uib-size);
    animation: spin78236 calc(var(--uib-speed) * 2.5) infinite linear;
}


.three-body__dot {
    position: absolute;
    height: 100%;
    width: 30%;
}

.three-body__dot:after {
    content: '';
    position: absolute;
    height: 0%;
    width: 100%;
    padding-bottom: 100%;
    background-color: var(--uib-color);
    border-radius: 50%;
}

.three-body__dot:nth-child(1) {
    bottom: 5%;
    left: 0;
    transform: rotate(60deg);
    transform-origin: 50% 85%;
}

.three-body__dot:nth-child(1)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite ease-in-out;
    animation-delay: calc(var(--uib-speed) * -0.3);
}

.three-body__dot:nth-child(2) {
    bottom: 5%;
    right: 0;
    transform: rotate(-60deg);
    transform-origin: 50% 85%;
}

.three-body__dot:nth-child(2)::after {
    bottom: 0;
    left: 0;
    animation: wobble1 var(--uib-speed) infinite calc(var(--uib-speed) * -0.15) ease-in-out;
}

.three-body__dot:nth-child(3) {
    bottom: -5%;
    left: 0;
    transform: translateX(116.666%);
}

.three-body__dot:nth-child(3)::after {
    top: 0;
    left: 0;
    animation: wobble2 var(--uib-speed) infinite ease-in-out;
}

@keyframes spin78236 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes wobble1 {

    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(-66%) scale(0.65);
        opacity: 0.8;
    }
}

@keyframes wobble2 {

    0%,
    100% {
        transform: translateY(0%) scale(1);
        opacity: 1;
    }

    50% {
        transform: translateY(66%) scale(0.65);
        opacity: 0.8;
    }
}

.language-toggle {
    position: absolute;
    right: 10px;
    top: 15px;
    background-color: #fff;
    color: #636364;
    border: 1px solid #ccc;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.contactDialog {
    display: none;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    margin: auto;
    text-align: left;
}

/* General styles for the dialog */
/* Dialog box */
#contactDialog {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    max-width: 350px;
    max-height: 100%;
    overflow-y: auto;
    z-index: 1000;
    text-align: left;
    padding: 10px;
}

#contactDialog_Program {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    max-width: 350px;
    max-height: 100%;
    overflow-y: auto;
    z-index: 1000;
    text-align: left;
    padding: 10px;
}

/* Dialog header */
.contactDialog h2 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #636364;
    text-align: center;
    margin-top: 0px !important;
}

/* Form groups */
.contactDialog .form-group {
    margin-bottom: 5px;
    max-width: 400px;
}

.contactDialog label {
    display: block;
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
}

.contactDialog input,
.contactDialog textarea {
    width: 95%;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    background-color: #f9f9f9;
}

.contactDialog textarea {
    resize: none;
}

/* Checkbox styling */
.contactDialog input[type="checkbox"] {
    margin-right: 5px;
    width: fit-content;
}

/* Form actions (buttons) */
.contactDialog .form-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.contactDialog .submitForm {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Submit button */
.contactDialog .submit-btn {
    background-color: #6c757d;
    color: #fff;
}

/* Close button */
.contactDialog .close-btn {
    background-color: #6c757d;
    color: #fff;
}

.contactDialog .close-btn:hover {
    background-color: #495057;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .contactDialog {
        padding: 15px;
    }

    .contactDialog .form-actions {
        flex-direction: column;
        gap: 10px;
    }
}

/* Styles for the agreement checkbox and label in a row */
.form-group.row-agreement {
    display: flex;
    align-items: center;
    gap: 8px;
    /* Space between the checkbox and the label */
}

.form-group.row-agreement input[type="checkbox"] {
    margin: 0;
    /* Remove default margin for better alignment */
    width: fit-content;
}

.form-group.row-agreement label {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 0;
}

.row-agreement label {
    margin-bottom: 0 !important;
}

.form-group.row-agreement label a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-group.row-agreement label a:hover {
    color: #6c757d;
    text-decoration: underline;
}

#ssl:hover {
    transform: scale(1.2);
    transition-timing-function: cubic-bezier(0.47, 2.02, .31, -.36);
}

#payment_ic:hover {
    transform: scale(1.2);
    transition-timing-function: cubic-bezier(0.47, 2.02, .31, -.36);
}

#recmd {
    position: absolute;
    text-align: right;
    background: #bed6fb;
    border-radius: 0px 10px 0 20px;
    align-items: center;
    padding: 0.625em 0.75em;
    font-size: 1.1rem;
    font-weight: 600;
    color: #425475;
    width: fit-content;
    display: flex;
    top: 0;
    right: 0;
    margin: 0 0px 5px 5px;
}

.glow {
    color: #fff;
    text-align: center;
    text-shadow: 0 0 10px #00ff73, 0 0 20px #00ff73, 0 0 30px #00ff73;
}

.faq-container {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #c6c9cd;
    width: calc(100% - 50px);
    max-width: calc(100% - 50px);
    padding: 100px;
    margin: 0 auto;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 0;
    /* Hidden initially */
    animation: fadeIn 1s ease forwards;
    /* Add animation */
    animation-delay: 0.2s;
    /* Delays the animation */
}

/* Define the animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    50% {
        opacity: 0.5;
        transform: translateY(25);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-qcontainer {
    width: 60%;
    margin: 50px auto;
    padding: 20px;
    margin-top: 5px;
}

.accordion-header {
    padding: 15px;
    background-color: #f1f1f1;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 15px;
    margin-bottom: 10px;
}

.accordion-header:hover {
    background-color: #e2e2e2;
}

.accordion-header svg {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.accordion-header.open svg {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 15px;
    display: none;
    background-color: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    border: 1px solid #ddd;
    /* Border around the header */
    border-radius: 30px;
    /* This makes the corners rounded */
    margin-bottom: 10px;
}

.accordion-content.open {
    display: block;
    max-height: fit-content;
    /* Adjust this value if needed */
}

.accordion-content a {
    color: #2148ff;
    text-decoration: none;
}

.accordion-content a:hover {
    text-decoration: underline;
}

.accordion-content p {
    color: #636364 !important;
    text-align: left;
    white-space: normal
}

@media (max-width: 479px) {
    .ewUBpk {
        column-gap: 22px;
    }
}

.ewUBpk {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    column-gap: 18px;
    width: fit-content;
    margin-left: calc(17% - 10px);
}

.hgReuz {
    width: 15px;
    height: 15px;
    fill: none;
    flex-shrink: 0;
}

img,
svg {
    vertical-align: middle;
}

.fYyGhM {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: 0.2s ease-in-out;
    flex-wrap: nowrap;
}

button {
    color: rgb(119, 126, 145);
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

button {
    background: none;
    border: 0;
    cursor: pointer;
    padding: 0;
}


@media screen and (max-width: 768px) {
    .faq-container {
        width: calc(100% - 50px);
        max-width: calc(100% - 50px);
        margin: 0 auto;
        box-sizing: border-box;
        padding: 0;
        padding-top: 10px;
    }

    .ewUBpk {
        margin-left: 0;
    }

    #faqTitle {
        text-align: left;
        font-size: x-large;
    }

    .card_box {
        width: 95%;
    }

    .faq-qcontainer {
        width: fit-content;
        margin: 50px auto;
        padding: 20px;
        margin-top: 5px;
    }

    .action-buttons {
        position: fixed;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
        box-sizing: border-box;
        background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
        box-shadow: 0 25px 50px rgb(197 187 187 / 55%);
        padding: 10px;
    }

    .action-buttons a,
    .action-buttons select {
        flex: 1;
        text-align: center;
        margin: 0 5px;
    }

    #globe {
        filter: sepia(1) saturate(0) brightness(2);
    }

    .action-buttons a {
        text-decoration: none;
        font-size: 16px;
        color: #636364;
        border-radius: 5px;
        cursor: pointer;
    }

    .action-buttons img {
        filter: brightness(0) invert(1);
        /* Converts image to white */
    }

    .action-buttons a svg {
        margin-right: 5px;
        vertical-align: middle;
    }

    .action-buttons select {
        font-size: 14px;
        background: transparent;
        color: white;
    }

    .language-dropdown {
        color: #636364;
        background: #f5f5f5;
        border: 1px solid #ddd;
        border-radius: 5px;
    }
}

.language-container {
    display: flex;
    align-items: center;
    /* Vertically centers the items */
    justify-content: center;
    /* Horizontally centers the items */
    gap: 1px;
    /* Adds space between the image and the dropdown */
}

.booking-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: (10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #c6c9cd;
    margin: 0 auto;
    margin-bottom: 20px;
    width: 85%;
}

.booking-container p {
    appearance: none;
    color: #636364;
    font-weight: 600;
    font-size: x-large;
    margin: 10px;
}

.newsletter-container {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: (10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #c6c9cd;
    margin: 0 auto;
    margin-bottom: 20px;
    padding: 20px;
    width: 80%;
}

.newsletter-container p {
    appearance: none;
    color: #636364;
    font-weight: 600;
    font-size: 1.4rem;
    margin: 0;
}

.input-wrapper {
    position: relative;
    display: inline-block;
    max-width: 400px;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    color: #4e5053;
    pointer-events: none;
}

.input-icon i {
    font-size: 18px;
}

.newsletter-input {
    width: 200px;
    padding: 10px 40px 10px 10px;
    /* Adjust padding to make space for the icon */
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    outline: none;
}

.book-now-btn {
    background: linear-gradient(0deg, #6a6969f5, #000000);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.subscribe-btn {
    background: linear-gradient(0deg, #6a6969f5, #000000);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.privacy-policy-text {
    font-size: 0.9rem !important;
    margin: 3px !important;
    font-weight: 600 !important;
}

.privacy-policy-text a {
    color: #6c757d;
    text-decoration: none;
}

.privacy-policy-text a:hover {
    text-decoration: underline;
}

.form-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Spacing between input and button */
    margin-top: 10px;
}

.slider {
    position: relative;
    width: 300px;
    margin: auto;
    overflow: hidden;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: white;
}

.card {
    display: none;
    text-align: center;
}

.card.active {
    display: block;
}

.stars {
    color: gold;
}

.slider button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Modal styles */
.modal {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: transparent;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* General styling for the input field */
#datepicker {
    width: fit-content;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid #ccc;
    font-size: 14px;

    color: #928d8d;
    background-color: #fff;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}


.flatpickr-calendar.inline {
    display: block;
    position: relative;
    top: 2px;
    margin: 0 auto !important;
}

.marquee {
    width: 60%;
    line-height: 50px;
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    margin: 0 auto;
    color: #636364;
    font-size: xx-large;
    font-weight: 800;
}

.marquee div {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 100s linear infinite;
}

.marquee div span {
    padding-left: 15px
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}


.headline_p {
    margin: 0;
    width: 100%;
    flex: 1;
    text-align: center;
    color: #636364;
    font-size: 1.2rem;
    padding-top: 25px;
    padding-bottom: 35px;
    font-weight: 600;
    margin-right: 50px;
}

.headline_h {
    margin: 0;
    margin-top: 5px;
    padding-top: 10px;
    color: #636364;
    font-size: xx-large;
}


#iframe {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: (10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #c6c9cd;
    width: 85%;
    margin-bottom: 10px;
}


@media (max-width: 480px) {
    .marquee {
        width: 95%;
        line-height: 50px;
        white-space: nowrap;
        overflow: hidden;
        box-sizing: border-box;
        margin: 0 auto;
        color: #636364;
        font-size: x-large;
        font-weight: 800;
    }

    .booking-container {
        width: 100%;

    }

    .newsletter-container {
        width: 90%;
    }

    .subscribe-btn {
        padding: 10px 10px;
    }
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
    color: #444;
    cursor: pointer;
    padding: 18px;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 2rem;
    font-weight: 600;
    width: 82%;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: (10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #c6c9cd;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
    background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    width: 82%;
    padding: 0 18px;
    background-color: transparent;
    display: block;
    overflow: hidden;
}


#signup-button:hover::before {
    width: 100%;
}


/* From Uiverse.io by alexroumi */
#signup-button {
    padding: 12px 20px;
    border: unset;
    border-radius: 30px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
}

#signup-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 30px;
    background-color: #666363;
    z-index: -1;
    -webkit-box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

#signup-button:hover {
    color: #e8e8e8;
}

#signup-button:hover::before {
    width: 100%;
}

.headline {
    margin: 0 auto;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: (10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    width: 80%;
}

/* Mobile-specific Styles */
@media (max-width: 767px) {

    .accordion {
        font-size: 1.3rem;
        font-weight: 600;
        width: 100%;
    }

    .marquee {
        width: 95%;
        line-height: 50px;
        white-space: nowrap;
        overflow: hidden;
        box-sizing: border-box;
        margin: 0 auto;
        color: #636364;
        font-size: x-large;
        font-weight: 800;
    }

    .booking-container p {
        appearance: none;
        color: #636364;
        font-weight: 600;
        font-size: larger;
        margin: 0;
    }

    h2 {
        color: #636364;
        font-size: x-large;
    }

    #datepicker {
        padding: 5px;
        font-size: 1.1rem;
        min-width: 200px;
    }

    .book-now-btn {
        padding: 5px 20px;
    }

    .headline_h {
        margin: 0;
        margin-top: 0;
        padding-top: 5px;
        color: #636364;
        font-size: 1.3rem;
    }

    .headline {
        margin: 0 auto;
        margin-top: 5px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: (10px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        width: 100%;
        padding: 5px;
    }

    #iframe {
        width: 100%;
    }

    .iframe-video {
        width: 90%;
    }
}


.plane {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    font-size: 24px;
    animation: fly 10s linear infinite;
    z-index: -2;
    color: gray;
}


@keyframes fly {
    0% {
        transform: translate(-10vw, -10vh) rotate(45deg);
    }

    10% {
        transform: translate(10vw, 5vh) rotate(45deg);
    }

    20% {
        transform: translate(30vw, 10vh) rotate(45deg);
    }

    30% {
        transform: translate(40vw, 20vh) rotate(45deg);
    }

    40% {
        transform: translate(50vw, 30vh) rotate(45deg);
    }

    50% {
        transform: translate(60vw, 40vh) rotate(45deg);
    }

    60% {
        transform: translate(70vw, 50vh) rotate(45deg);
    }

    70% {
        transform: translate(80vw, 60vh) rotate(45deg);
    }

    80% {
        transform: translate(90vw, 70vh) rotate(45deg);
    }

    90% {
        transform: translate(100vw, 80vh) rotate(45deg);
    }

    100% {
        transform: translate(110vw, 90vh) rotate(45deg);
    }
}

#iframe-video {
    display: flex;
    border: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    margin: 0 auto;
    width: 100%;
}

/* Main container styling */
.headline-container {
    display: flex;
    flex-direction: column;
    /* Stack items vertically first */
    align-items: center;
    text-align: center;
}

/* Headline styling */
.headline_h {
    margin-bottom: 20px;
    /* Space below headline */
}

/* Row for video and paragraph */
.content-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Video styling */
#video-frame {
    flex: 1;
    /* Make the video responsive */
    max-width: 700px;
    margin-left: 50px;
    max-width: 800px;
}

iframe {
    width: 100%;
    height: 315px;
    /* Standard YouTube aspect ratio */
}


.container-offer {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 10px;
    text-align: center;
    width: 80%;
    max-width: 600px;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-offer h1 {
    font-size: 2rem;
    color: #636364;
    margin-bottom: 20px;
    font-weight: 600;
}

.container-offer h2 {
    font-size: 1.7rem;
    margin: 10px 0;
    color: #636364;
    font-weight: bold;
}

.discount {
    background: linear-gradient(45deg, #ff7043, #ffcc80);
    color: white;
    font-size: 1.8rem;
    padding: 10px;
    font-weight: bold;
    border-radius: 10px;
    display: inline-block;
    margin-top: 20px;
}


.timer {
    font-size: 1.8rem;
    color: #e53935;
    font-weight: bold;
    background-color: #fff3e0;
    padding: 15px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    width: fit-content;
    align-items: center;
}

.timer p {
    font-size: 1.5rem;
    margin: 0;
    color: #e53935;
}

.sale-text {
    color: #636364;
    font-size: 1.2rem;
    margin-top: 20px;
}

.cta-button {
    background-color: #2196f3;
    color: white;
    padding: 12px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1976d2;
}


/* Close button style */
.close-btn {
    position: absolute;
    /* Positioning the button at the top-right corner */
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #636364;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

/* Change color on hover */
.close-btn:hover {
    color: red;
}

.class-sdk {
    height: fit-content;
    width: 85%;
}

.class-sdk .price {
    font-size: 1.7em;
    font-weight: bold;
    margin: 10px 0 10px 5px;
}

.footer {
    background: linear-gradient(170deg, rgba(58, 56, 56, 0.623) 0%, rgb(31, 31, 31) 100%);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
    color: white;
    padding: 20px 2%;
    padding-bottom: 10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.footer-column ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin: 5px 0;
}

.footer-column ul li a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #8dd1c2;
    /* Light green hover effect */
}

.footer-divider {
    margin: 10px 0;
    border-top: 1px solid #8dd1c2;
    /* Light green line */
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.faq-content {
    display: flex;
    flex-flow: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: (10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #c6c9cd;
    width: 85%;
    margin: 0 auto;
    padding-top: 10px;
}


.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}


div:where(.swal2-container) button:where(.swal2-styled):where(.swal2-confirm) {
    background-color: #636364 !important;
}

.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-weight: bold;
}

.tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 8px;
    border-radius: 6px;
    position: absolute;
    z-index: 10;
    bottom: 125%;
    /* Position above the question mark */
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    font-size: 14px;
}

/* Tooltip arrow */
.tooltip-text::after {
    content: "";
    position: absolute;
    top: 100%;
    /* Arrow pointing down */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

/* Show tooltip on hover */
.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Mobile-specific Styles */
@media (max-width: 767px) {

    .footer-content {
        display: flex;
        flex-flow: column;
    }

    .accordion {
        font-size: 1.3rem;
        font-weight: 600;
        width: 100%;
    }

    .marquee {
        width: 95%;
        line-height: 50px;
        white-space: nowrap;
        overflow: hidden;
        box-sizing: border-box;
        margin: 0 auto;
        color: #636364;
        font-size: x-large;
        font-weight: 800;
    }

    .booking-container p {
        appearance: none;
        color: #636364;
        font-weight: 600;
        font-size: larger;
        margin: 0;
    }

    h2 {
        color: #636364;
        font-size: x-large;
    }

    #datepicker {
        padding: 5px;
        font-size: 1.1rem;
        min-width: 200px;
    }

    .book-now-btn {
        padding: 5px 20px;
    }

    .headline_p {
        margin: 0;
        color: #636364;
        font-size: 1rem;
        width: 100%;
        margin-right: 0;
    }

    .headline_h {
        margin: 0;
        margin-top: 0;
        padding-top: 5px;
        color: #636364;
        font-size: 1.3rem;
    }

    .headline {
        margin: 0 auto;
        margin-top: 5px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: (10px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        width: 100%;
        padding: 5px;
    }

    #iframe {
        width: 100%;
    }

    #iframe-video {
        width: 100%;
    }

    #video-frame {
        position: relative;
        overflow: hidden;
        margin-top: 10px;
        margin-left: 0px;
    }

    .content-row {
        flex-direction: column;
    }

    .newsletter-input {
        width: 150px;
    }

    .footer {
        margin-bottom: 55px;
    }
}

/* Close button style */
.close-btn-diag {
    
    /* Positioning the button at the top-right corner */
    top: 1px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 30px;
    color: #636364;
    cursor: pointer;
    font-weight: bold;
    position: absolute;
    transition: 0.3s;
    margin-top: 0;
    padding-top: 0;
    margin: 0;
    padding: 0;
}

/* Change color on hover */
.close-btn-diag:hover {
    color: red;
}

.warning_policy {
    color: red;
    display: none;
}

.glass-container {
    display: flex;
    justify-content: center;
    margin: 0;
}

.card_steps {
    --dark-grey: #353535;
    --middle-grey: #767676;
    --lightest-grey: linear-gradient(#e7e7e7, #e7e7e7);
    --shadow: 0 5px 15px 0 #00000026;
    --shadow-active: 0 5px 5px 0 #00000026;
    --border-radius-main: 10px;
    --border-radius-icon: 50px;
    padding: 10px 20px;
    text-align: center;
    transform: scale(0.95);
    transition: all 0.5s ease-in-out;
    max-width: 300px;
    min-width: 300px;
    max-height: 350px;
    min-height: 250px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px;
    background: var(--lightest-grey);
    border-radius: var(--border-radius-main);
}

.card_steps h4 {
    font-size: 20px;
    color: #636364;
    margin: 0;
}

.card_steps p {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.card_steps .icon {
    width: 150px;
    font-size: 50px;
    margin: 0 auto;
}

.glass-container {
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    flex-wrap: wrap;
}

div:where(.swal2-container) button:where(.swal2-close) {
    color: #636364 !important;
}

div:where(.swal2-container) button:where(.swal2-close):hover {
    color: red !important;
}


.inputDialog_bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent dark background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(6px);
    /* Apply blur effect to the background */
    -webkit-backdrop-filter: blur(6px);
    /* For Safari */
}

.map-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
}


.info-box {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: (10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #c6c9cd;
    max-width: 318px;
}

.info-box h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.info-box p {
    margin: 0 0 10px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.learn-more {
    font-size: 12px;
    color: #636364;
    font-weight: 700;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.contact-button {
    background: #636364;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
    text-transform: uppercase;
}

.gm-style .place-card-large {
    padding: 9px 4px 9px 11px;
    display: none !important;
}

.loading-wave {
    width: 300px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.loading-bar {
    width: 20px;
    height: 10px;
    margin: 0 5px;
    background-color: #636364;
    border-radius: 5px;
    animation: loading-wave-animation 1s ease-in-out infinite;
}

.loading-bar:nth-child(2) {
    animation-delay: 0.1s;
}

.loading-bar:nth-child(3) {
    animation-delay: 0.2s;
}

.loading-bar:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes loading-wave-animation {
    0% {
        height: 10px;
    }

    50% {
        height: 50px;
    }

    100% {
        height: 10px;
    }
}

.quantity-container {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.quantity-btn {
    background: #f8f9fa;
    border: 1px solid #ddd;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
}

#quantity {
    width: 40px;
    text-align: center;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: #636364;
}

.menu-container {
    width: 85%;
    display: flex;
    flex-flow: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: (10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #c6c9cd;
    margin-bottom: 20px;
}

.payment-details {
    padding: 5px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px); /* Fixed syntax */
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 2px dashed #c6c9cd;
}
.payment-details p {
    color: #636364;
    text-align: left;
    margin: 3px;
}

.card-input {
    border-radius: 5px;
    border: 2px dashed #c6c9cd;
}
/* Add responsive styles for mobile view */
@media (max-width: 768px) {
    .menu-container {
        width: 100%;
    }
    .switch-container {
        padding: 0;
    }
    .tab-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        width: 95%;
        max-width: 400px;
        margin: 0 auto;
        margin-top: 10px;
        padding: 0;
        box-sizing: border-box;
        text-align: center;
    }
    .map-container {
        flex-direction: column;
        /* Change layout to column for mobile */
        align-items: flex-start;
        /* Align items to the start for better spacing */
    }
    .info-box {
        width: 100%;
        left: 0px;
        margin: 0 auto;
        position: relative;
        max-width: 85%;
        margin-bottom: 20px;
    }
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .contactDialog .form-group {
        margin-bottom: 15px;
        width: 100%;
    }

    .swal2-popup {
        width: 100% !important;
    }

    .faq-content {
        width: 100% !important;
    }

    .container-offer {
        width: 90%;
        /* Increase the width for small screens */
        bottom: 10px;
        /* Adjust bottom spacing for mobile */
        right: 10px;
        /* Adjust right spacing for mobile */
    }

    .container-offer h1 {
        font-size: 1.2rem;
        /* Adjust title font size */
        margin-bottom: 10px;
        font-weight: 600;
    }

    .container-offer h2 {
        font-size: 0.9rem;
        /* Adjust discount value font size */
        margin: 8px 0;
    }

    .discount {
        font-size: 20px;
        /* Reduce the font size for discount */
        padding: 8px;
    }

    .timer {
        font-size: 1.5rem;
        /* Reduce font size for timer */
        padding: 10px;
        margin-top: 20px;
    }

    .timer p {
        font-size: 1.5rem;
        /* Adjust timer text font size */
    }

    .sale-text {
        font-size: 1rem;
        /* Reduce sale text font size */
    }

    .cta-button {
        padding: 10px 25px;
        /* Reduce button padding */
        font-size: 1rem;
        /* Reduce button font size */
    }

    .close-btn {
        font-size: 25px;
        /* Reduce close button size */
    }

    .panel {
        width: 90%;
        background-color: transparent;
        display: block;
        overflow: hidden;
        padding: 0;
        margin: 0 auto;
        margin-top: 10px;
    }

    .class-sdk {
        height: fit-content;
        width: 95%;
    }
    #payment_ic {
        height: 50px;
    }
    #ssl {
        height: 90px;
    }
}

.footer-sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    /* Fixed position */
    bottom: 0;
    /* Stick to the bottom */
    left: 0;
    /* Full width from left */
}

.footer-left,
.footer-middle,
.footer-right {
    flex: 1;
    text-align: center;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
    margin-right: 30px;
}

#contactForm {
    margin: 10px;
    position: relative;
    max-width: 350px;
}

#contactFormProgram {
    margin: 10px;
    position: relative;
    max-width: 350px;
}

@media (max-width: 1280px) {
    #iframe {
        width: 95%;
    }

    .booking-container {
        width: 95%;
    }

    .faq-content {
        width: 95%;
    }
}