:root {
    --black: #000000;
    --white: #ffffff;
    --second: #a9e6de;
    --second-colour: #50dbdc;
    --button: #0e4444;
    --white: #ffff;
    --light-yellow: #fdf1c3;
}

::selection {
    background-color: var(--black);
    color: var(--white);
}

body {
    font-family: "DM Sans", serif;
    font-weight: 500;
    background: linear-gradient(135deg, #c6f1e9 0%, #fff4d6 100%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "DM Sans", serif;
}

a {
    text-decoration: none;
}


/* ============ header section here =========== */

.header {
    background-color: var(--button);
    padding: 15px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.header .logo {
    height: 70px;
}

.header .rtrn {
    padding: 8px 15px;
    color: var(--black);
    background-color: #a9e6de;
    border-radius: 100px;
    font-weight: 600;
}


/* ============ appointment section here ============= */

.appointment .upper-section {
    background-color: white;
    border-left: 10px solid var(--button);
    color: var(--button);
    font-size: 18px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


/* .appointment .image{
    height: 370px;
    border-radius: 20px;
    overflow: hidden;
    border: 10px solid var(--lightBg);
    outline: 3px dotted var(--main);
}

.appointment .image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
} */

.appointment .details {
    padding: 10px;
    border-radius: 20px;
   background-color: var(--button);
    text-align: center;
    /* margin-top: 20px; */
    border: 2px solid var(--button);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: var(--white);
}

.appointment .details .name {
    font-size: 18px;
    font-weight: 700;
     font-family: "DM Sans", serif;
}

.appointment .hospital-details {
    padding: 10px;
    border-radius: 20px;
    background-color: var(--button);
    margin-top: 20px;
    border: 2px solid var(--button);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    color: var(--white);

}

.appointment .hospital-details i {
    font-size: 18px;
}

.appointment .hospital-details .name {
    font-size: 18px;
    font-weight: 700;
    font-family: "Marcellus", serif;
}

.appointment .hospital-details a {
    color: var(--white);
    transition: 300ms;
}

.appointment .hospital-details a:hover {
    color: var(--second);
    transition: 200ms;
}

.appointment .map {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 20px;
}

.appointment .map iframe {
    width: 100%;
    height: 100%;
}

.appointment .right h3 {
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Marcellus", serif;
}


.appointment .right form {
    margin: 0 auto;
    padding: 20px 30px;
    background: #a9e6de;
    border-radius: 20px;
    border: 2px solid var(--button);
}

.appointment .right label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.appointment .right input,
.appointment .right select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd !important;
    border-radius: 4px;
    font-size: 14px;
}

.appointment .right input:focus,
.appointment .right select:focus {
    outline-color: var(--button);
}

.appointment .right input,
.appointment .right select {
    padding: 10px 15px;
}

.appointment .right .button-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.appointment .right button {
    cursor: pointer;
    background-color: var(--button);
    color: #fff;
    padding: 12px 28px;
    border-radius: 5px;
    transition: background-color 300ms ease;
    border: none;
    font-weight: 700;
    font-size: 18px;
}

.appointment .right .btn-rst {
    background-color: var(--light-yellow);
    color: var(--white);
}



.appointment .right .btn-sbmt:hover {
    background-color: var(--light-yellow);
    color: var(--black);
}





/* =============== Media Query here ================== */

@media (max-width:768px) {

    .appointment .hospital-details,
    .appointment .map {
        margin-top: 28px;
    }
}

@media (max-width:576px) {

    .header {
        justify-content: center;
    }

    .appointment .upper-section {
        font-size: 16px;
    }

    .appointment .map {
        height: 320px;
    }

    .appointment .right form {
        padding: 20px;
    }

}

@media(max-width:420px) {

    .appointment .details .name,
    .appointment .hospital-details .name {
        font-size: 16px;
    }
}

@media (max-width:400px) {

    .header .logo {
        height: 35px;
    }

    .header .rtrn {
        padding: 8px 15px;
        font-size: 15px;
    }

}