html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
}

.hero {
    background: linear-gradient(135deg, #0078D7, #00A8E8);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 2rem;
}

.btn {
    background: #fff;
    color: #0078D7;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

    .btn:hover {
        background: #e6f2ff;
    }

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: #fff;
    padding: 30px 0;
}

.feature {
    width: 300px;
    margin: 15px;
    text-align: center;
}

.about, .services, .contact, .cta {
    background: white;
    margin: 30px auto;
    padding: 30px;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.cta {
    text-align: center;
    background: #0078D7;
    color: white;
}

.service-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.service-item {
    flex: 1 1 45%;
    background: #f4f4f4;
    margin: 10px;
    padding: 15px;
    border-radius: 8px;
}
body {
    margin: 0;
    font-family: "Segoe UI", Roboto, sans-serif;
    background: #f4f7fb;
    color: #333;
}

/* Hero */
.hero-section {
    background: linear-gradient(to right, #0078d7, #00b4db);
    color: white;
    text-align: center;
    padding: 100px 20px;
    position: relative;
}

.overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Booking Card */
.booking-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -60px auto 40px;
    padding: 20px;
}

.booking-card {
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 40px;
    animation: fadeIn 1s ease-in-out;
}

    .booking-card h2 {
        text-align: center;
        color: #0078d7;
        margin-bottom: 10px;
        font-size: 1.8rem;
    }

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 25px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafafa;
}

    .form-control:focus {
        border-color: #0078d7;
        box-shadow: 0 0 6px rgba(0, 120, 215, 0.3);
        background: #fff;
        outline: none;
    }

textarea.form-control {
    resize: none;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(to right, #0078d7, #00b4db);
    color: white;
    border: none;
    padding: 14px;
    font-size: 1rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-submit:hover {
        background: linear-gradient(to right, #005fa3, #0096c7);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 120, 215, 0.3);
    }

/* Alerts */
.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.fail {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111;
    color: #aaa;
    font-size: 14px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 70px 20px;
    }

    .booking-card {
        padding: 25px;
    }
}