/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

header{
    background-color: #14342c;
}

body {
    background: #f4f7f8;
}

/* General Styles */
.appointment-container {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.appointment-content {
    display: flex;
    align-items: center;
    max-width: 1000px;
    background: white;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.appointment-image {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.appointment-wrapper {
    width: 50%;
    padding: 40px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .appointment-content {
        flex-direction: column;
    }

    .appointment-image {
        width: 100%;
        height: auto;
    }

    .appointment-wrapper {
        width: 100%;
        padding: 30px;
    }
}

/* Section Titles */
.appointment-heading {
    font-size: 28px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.appointment-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Form Styling */
.appointment-form-box {
    display: flex;
    flex-direction: column;
}

.appointment-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.appointment-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.appointment-field label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.appointment-field input,
.appointment-field select {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
    width: 100%;
}

.appointment-field input:focus,
.appointment-field select:focus {
    border-color: #ADB036;
    outline: none;
}

/* Time Slot Selection */
.appointment-time-slot {
    margin-top: 20px;
}

.time-slot-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.time-slot-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.time-slot-options label {
    padding: 10px 14px;
    border: 1px solid #ADB036;
    border-radius: 6px;
    color: #ADB036;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

.time-slot-options input[type="radio"] {
    display: none;
}

.time-slot-options input[type="radio"]:checked + label {
    background: #007bff;
    color: white;
    box-shadow: 0px 4px 8px rgba(0, 123, 255, 0.3);
}

/* Submit Button */
.appointment-submit-btn {
    width: 100%;
    padding: 14px;
    background:  #E74C3C;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.appointment-submit-btn:hover {
    background:  #E74C3C;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .appointment-wrapper {
        padding: 30px;
        max-width: 90%;
    }

    .appointment-row {
        flex-direction: column;
        gap: 10px;
    }

    .time-slot-options {
        justify-content: center;
        gap: 8px;
    }
}







