body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color:#000000;
}
nav {
    background-color: #ff4081;
    padding: 15px;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 18px;
}

nav ul li a:hover {
    text-decoration: underline;
}

header {
    text-align: center;
    margin-top: 20px;
  
}
header h1 {
    background: linear-gradient(to right, #ff4081, #ff79b0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 36px;
}

header p {
    color: #555;
    text-shadow: 2px 2px 4px rgba(255, 64, 129, 0.5);
}
header h1, header p, .booking-form h2, label, input {
    color: #ff4081;
}

.about-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    color: #ff4081;
    margin-top: 10px;
}

.about-section p {
    font-size: 18px;
    color: #555;
}

.about-section ul {
    list-style: none;
    padding: 0;
}

.about-section ul li {
    font-size: 18px;
    padding: 20px;
    background: #ffe0e6;
    border-radius: 5px;
    margin-bottom: 10px;
}
.contact-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    color: #ff4081;
    margin-top: 20px;
}

.contact-section p {
    font-size: 18px;
    color: #555;
}

.contact-section form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-section label {
    font-weight: bold;
}

.contact-section input, .contact-section textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
}

.contact-section button {
    background: #ff4081;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.contact-section button:hover {
    background: #ff2f70;
}


.chatbot-container {
    position: fixed;
    bottom: 50px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    padding: 10px;
}

.chat-header {
    background: #ff4081;
    color: white;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.chat-box {
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
}

.bot-message, .user-message {
    display: inline-block;
    max-width: 80%;
    padding: 8px 12px;
    border-radius: 20px;
    margin: 5px;
    font-size: 14px;
}

.bot-message {
    background: #ffe0e6;
    align-self: flex-start;
}

.user-message {
    background: #ff4081;
    color: white;
    align-self: flex-end;
}

/* Typing animation */
.typing {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ff4081;
    border-radius: 50%;
    animation: blink 1.2s infinite alternate;
}

.typing:nth-child(2) {
    animation-delay: 0.2s;
}

.typing:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes blink {
    0% { opacity: 0.2; }
    100% { opacity: 1; }
}

footer {
    background: #ff4081;
    color: white;
    text-align: center;
    padding: 0px;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}
