@import url('https://fonts.googleapis.com/css2?family=Anton&family=Big+Shoulders:opsz,wght@10..72,100..900&family=Dancing+Script:wght@400..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Quicksand:wght@300..700&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Big+Shoulders:opsz,wght@10..72,100..900&family=Dancing+Script:wght@400..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&family=Quicksand:wght@300..700&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

#Nav {
    background-color: #000000 !important;
}

#header h2 {
    color: #FF7500;
    font-family: "Dancing Script", cursive;
    position: relative;
    bottom: 100px;
    left: 20px;
}

#service h1 {
    font-family: "Quicksand", sans-serif;
}

#service img {
    width: 100%;
}

#travels h1 {
    font-family: "Quicksand", sans-serif;
}

/* Button Styles */
button {
    padding: 10px 15px;
    font-size: 14px;
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3;
}

/* Card Styles */
.card {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
}

.card img {
    width: 100%;
    border-radius: 5px;
}

.card-body {
    text-align: center;
}

/* Popup Styles */
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

/* Popup Content */
.popup-content {
    background: white;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
    text-align: left;
    position: relative;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}

/* Form Styles */
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
}

input {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Submit Button */
.submit-btn {
    margin-top: 15px;
    padding: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.submit-btn:hover {
    background-color: #218838;
}

#step h1 {
    font-family: "Quicksand", sans-serif;
    font-weight: 600;
    text-align: center;
    padding: 50px;
}

#step ul.timeline {
    position: relative;
    list-style-type: none;
    padding-left: 180px;
}

#step ul.timeline::before {
    position: absolute;
    display: block;
    left: 136px;
    width: 8px;
    height: 100%;
    border-radius: 4px;
    background-color: #07b;
    content: '';
}

#step ul.timeline .event {
    position: relative;
    padding: 16px;
    background: #C1C6FF;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2),
                0 1px 1px rgba(0, 0, 0, 0.14),
                0 2px 1px -1px rgba(0, 0, 0, 0.12);
    margin-bottom: 30px;
}

#step ul.timeline .event::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: red;
    border-radius: 50%;
    transform: translateY(-50%);
}

#step .time {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}