    /* Reset & Base */
    
    /** {*/
    /*    margin: 0;*/
    /*    padding: 0;*/
    /*    box-sizing: border-box;*/
    /*}*/
    
    /*body {*/
    /*    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    /*    background-color: #f8f9fa;*/
    /*}*/
    
    .main-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #ffffff;
        padding: 15px 30px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1000;
    }
    
    .logo img {
        height: 40px;
    }
    
    .user :active {
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .user-img {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        object-fit: cover;
    }
    
    .dropdown {
        position: absolute;
        top: 50px;
        right: 0;
        background: #fff;
        border: 1px solid #ddd;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        display: none;
        flex-direction: column;
        min-width: 150px;
        border-radius: 5px;
        z-index: 1001;
    }
    
    .dropdown a {
        padding: 12px 15px;
        text-decoration: none;
        color: #333;
        transition: background 0.3s;
    }
    
    .dropdown a:hover {
        background-color: #f0f0f0;
    }
    
    .services-section {
        padding: 40px 20px;
        max-width: 1200px;
        margin: auto;
    }
    
    .services-section h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 2rem;
        color: #007bff;
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
        gap: 25px;
    }
    
    .service-card {
        background-color: #fff;
        border: 1px solid #ddd;
        padding: 20px;
        border-radius: 8px;
        transition: box-shadow 0.3s;
        display: flex;
        flex-direction: column;
    }
    
    .service-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .service-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
        border-radius: 6px;
        margin-bottom: 15px;
    }
    
    .service-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #007bff;
    }
    
    .service-description {
        flex-grow: 1;
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .book-now-btn {
        display: inline-block;
        padding: 10px 15px;
        background-color: #007bff;
        color: white;
        text-align: center;
        border: none;
        border-radius: 4px;
        text-decoration: none;
        font-weight: bold;
        transition: background 0.3s;
    }
    
    .book-now-btn:hover {
        background-color: #0056b3;
    }
    /* Popup Form Styles */
    
    .popup-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        display: none;
        /* Hidden by default */
        justify-content: center;
        align-items: center;
        z-index: 2000;
    }
    
    .popup-form-container {
        background-color: #fff;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        width: 90%;
        max-width: 500px;
        position: relative;
        animation: fadeIn 0.3s ease-out;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.9);
        }
        to {
            opacity: 1;
            transform: scale(1);
        }
    }
    
    .close-popup-btn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 28px;
        font-weight: bold;
        color: #888;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .close-popup-btn:hover {
        color: #333;
    }
    
    .popup-form-container h2 {
        text-align: center;
        margin-bottom: 10px;
        color: #007bff;
    }
    
    .popup-form-container p {
        text-align: center;
        margin-bottom: 20px;
    }
    
    #booking-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    #booking-form input,
    #booking-form textarea {
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
    }
    
    .submit-btn {
        padding: 12px;
        background-color: #007bff;
        color: white;
        border: none;
        border-radius: 5px;
        font-size: 1rem;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.3s;
    }
    
    .submit-btn:hover {
        background-color: #0056b3;
    }
    
    #close-success-popup-btn {
        width: 100%;
    }