@import url('https://fonts.googleapis.com/css2?family=Anton&family=Cabin:ital,wght@0,400..700;1,400..700&family=Faculty+Glyphic&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    animation: fadeIn 1s ease-in-out;
}

html {
    scroll-behavior: smooth;
    animation: fadeIn 1s ease-in-out;
}

.navbar {
    background-color: #333;
    padding: 4px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    animation: slideIn 1s ease-in-out;
}
  
.navbar img {
    width: 20%;
    height: auto;
    padding-left: 20px;
}

.navbar .navbar-right {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-end;
    padding: 20px;
    align-items: center;
    animation: slideIn 1s ease-in-out;
}

.navbar-item {
    padding-right: 30px;
}

.navbar-right .navbar-item a {
    padding-left: 30px;
    color: white;
    text-decoration: none;
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-size: large;
    font-style: bold;
    animation: fadeIn 1s ease-in-out;
}

.navbar-item-logo {
    padding-right: 40px;
    animation: fadeIn 1s ease-in-out;
}

.navbar-item-logo img {
    width: 100px;
    height: auto;
    animation: fadeIn 1s ease-in-out;
}

.navbar-item-btn {
    color: white;
    text-decoration: none;
    padding-right: 40px;
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: bold;
    animation: fadeIn 1s ease-in-out;
}

.book-btn {
    background-color: #0081FB;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 20px;
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: bold;
    animation: fadeIn 1s ease-in-out;
}

.navbar-item a:hover {
    color: #0081FB;
    text-decoration: underline;
    cursor: pointer;
    animation: fadeIn 1s ease-in-out;
}

.container-carousel {
    background-image: url(/images/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 100vh;
    align-content: stretch;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
    animation: fadeIn 1s ease-in-out;
}

.content {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-end;
    align-items: flex-start;
    width: 50%;
    height: auto;
    animation: fadeIn 1s ease-in-out;
}

.title {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    color: black;
    font-size: 25px;
    margin-bottom: -26px;
    animation: slideIn 1s ease-in-out;
}

.subtitle {
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 18px;
    color: #000000ea;
    margin-bottom: 5px;
    animation: slideIn 1s ease-in-out;
}

.info {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: bold;
    font-size: 17px;
    color: black;
    width : 80%;
    height: auto;
    margin-top: 0px;
    animation: fadeIn 1s ease-in-out;
}

.title-btn {
    background-color: #0081FB;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 20px;
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: bold;
    padding-top: 10px;
    animation: fadeIn 1s ease-in-out;
}

.title-btn:hover {
    background-color: #45a049;
    animation: fadeIn 1s ease-in-out;
}

h1 {
    margin-bottom: 10px;
    animation: slideIn 1s ease-in-out;
}

h2 {
    margin-bottom: 2px;
    animation: slideIn 1s ease-in-out;
}

.who-we-container {
    display: flex;
    flex-direction: row;
    margin: 50px 40px;
    border : none;
    border-radius: 10px;
    padding: 100px 60px 60px 100px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    animation: fadeIn 1s ease-in-out;
}

.img-card img {
    max-width: 100%;
    height: auto;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.256), 0 6px 20px rgba(0, 0, 0, 0.245);
    margin-right: -20px;
    animation: fadeIn 1s ease-in-out;
}

.who-we-are-content {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: center;
    align-items: flex-start;
    max-width: 90%;
    padding-left: 60px;
    animation: fadeIn 1s ease-in-out;
}

.one {
    color: #0081FB;
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    margin: 0 0 5px 0;
    animation: slideIn 1s ease-in-out;
    padding-bottom : -30px;
}

.two {
    color: hwb(0 4% 96% / 0.941);
    font-family: "Oswald", sans-serif;
    font-weight: 700;
    font-size: 30px;
    margin: 0 0 5px 0;
    animation: slideIn 1s ease-in-out;
}

.three {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: black;
    margin: 5px 0 0 0;
    width: 60%;
    animation: fadeIn 1s ease-in-out;
}

.four {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
    width : 400px;
    color: black;
    margin-bottom: 5px;
    animation: fadeIn 1s ease-in-out;
}

.five {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: black;
    margin: 3px 0 5px 10px;
    animation: fadeIn 1s ease-in-out;
}

.who-btn {
    background-color: #0081FB;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 20px;
    font-family: "Host Grotesk", sans-serif;
    font-weight: 500;
    animation: fadeIn 1s ease-in-out;
}

.who-btn:hover {
    background-color: #45a049;
    animation: fadeIn 1s ease-in-out;
}

.services-container {
    width: 90%;
    margin: auto;
    box-sizing: border-box;
    animation: fadeIn 1s ease-in-out;
}

.service-head {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: hsl(0, 0%, 1%);
    text-align: center;
    margin-top: 50px;
    animation: slideIn 1s ease-in-out;
}

.service-cards {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;
    animation: fadeIn 1s ease-in-out;
}

.service-card {
    width: 300px;
    border: 1px solid #ddd;
    background-color: hwb(0 59% 40% / 0.057);
    padding: 20px;
    text-align: center;
    cursor: pointer;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 0 hsla(0, 0%, 0%, 0.256), 0 6px 20px 0 hwb(0 0% 100% / 0.245);
    animation: fadeIn 1s ease-in-out;
}

.service-card:hover {
    box-shadow: 0 4px 8px 0 hsla(209, 100%, 49%, 0.922), 0 6px 20px 0 hsla(209, 100%, 49%, 0.922);
    animation: fadeIn 1s ease-in-out;
}
.service-btn {
    background-color: #0081FB;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 50%;
    border-radius: 20px;
    font-family: "Host Grotesk", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: bold;
    padding-top: 10px;
    animation: fadeIn 1s ease-in-out;
}

.service-btn a {
    color: white;
    text-decoration: none;
    animation: fadeIn 1s ease-in-out;
}

.service-card i {
    font-size: 35px;
    color: #0081FB;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

.service-card p {
    padding-bottom: 30px;
    animation: fadeIn 1s ease-in-out;
}

.appointment-container {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    animation: fadeIn 1s ease-in-out;
}

.why-us-container {
    display: flex;
    flex-direction: row;
    margin: 50px 40px;
    padding: 100px 60px 40px 150px;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    animation: fadeIn 1s ease-in-out;
}

.why-img img {
    max-width: 100%;
    height: auto;
    width : 550px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.256), 0 6px 20px rgba(0, 0, 0, 0.245);
    margin-right: -20px;
    animation: fadeIn 1s ease-in-out;
}

.why-us-content {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    justify-content: center;
    align-items: stretch;
    width : 800px;
    max-width: 100%;
    padding-left: 60px;
    animation: fadeIn 1s ease-in-out;
}

.why-head {
    color: hsl(209, 80%, 37%);
    font-family: "Roboto Condensed", sans-serif;
    font-size: 38px;
    margin: 0 0 5px 0;
    animation: slideIn 1s ease-in-out;
}

.why-p1 {
    font-family: "Montserrat", sans-serif;
    font-weight: 550;
    font-size: 17px;
    color: black;
    margin: 5px 0 0 0;
    width: 80%;
    animation: fadeIn 1s ease-in-out;
}

.why-p2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 550;
    font-size: 17px;
    color: black;
    width : 80%;
    padding-bottom: 5px;
    margin-bottom: 5px;
    animation: fadeIn 1s ease-in-out;
}

.why-p3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: black;
    margin: 3px 0 5px 10px;
    animation: fadeIn 1s ease-in-out;
}

.why-btn {
    background-color: #0081FB;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    width: 30%;
    border-radius: 20px;
    font-family: "Host Grotesk", sans-serif;
    font-weight: 500;
    animation: fadeIn 1s ease-in-out;
}

.why-btn:hover {
    background-color: #45a049;
    animation: fadeIn 1s ease-in-out;
}

.appointment-head {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
    animation: slideIn 1s ease-in-out;
}

form fieldset {
    border: none;
    margin-bottom: 20px;
    animation: fadeIn 1s ease-in-out;
}

form legend {
    font-size: 1.2em;
    margin-bottom: 10px;
    animation: slideIn 1s ease-in-out;
}

form label {
    display: block;
    margin-bottom: 10px;
    animation: fadeIn 1s ease-in-out;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form input[type="date"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    animation: fadeIn 1s ease-in-out;
}

form .two-cols {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    animation: fadeIn 1s ease-in-out;
}

form .two-cols label {
    flex: 1;
}

form .inline {
    display: flex;
    gap: 10px;
    align-items: center;
    animation: fadeIn 1s ease-in-out;
}

form .inline label {
    flex: 1;
}

form .btns {
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

form input[type="submit"] {
    background-color: #333;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: fadeIn 1s ease-in-out;
}

form input[type="submit"]:hover {
    background-color: #555;
    animation: fadeIn 1s ease-in-out;
}

/* Responsive styles */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        animation: slideIn 1s ease-in-out;
    }

    .navbar .navbar-left,
    .navbar-right {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px;
        animation: slideIn 1s ease-in-out;
    }

    .navbar-left .navbar-item {
        padding-left: 0;
        animation: fadeIn 1s ease-in-out;
    }

    .who-we-container {
        flex-direction: column;
        padding: 20px;
        animation: fadeIn 1s ease-in-out;
    }

    .who-we-container .img-card img {
        margin-right: 0;
        margin-bottom: 20px;
        animation: fadeIn 1s ease-in-out;
    }

    .who-we-are-content {
        padding-left: 0;
        align-items: center;
        animation: fadeIn 1s ease-in-out;
    }

    .three, .four {
        width: 100%;
        animation: fadeIn 1s ease-in-out;
    }

    .appointment-container {
        padding: 15px;
        animation: fadeIn 1s ease-in-out;
    }

    form .two-cols {
        flex-direction: column;
        animation: fadeIn 1s ease-in-out;
    }

    form .inline {
        flex-direction: column;
        animation: fadeIn 1s ease-in-out;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 2px;
        animation: slideIn 1s ease-in-out;
    }

    .navbar .navbar-left,
    .navbar-right {
        padding: 5px;
        animation: slideIn 1s ease-in-out;
    }

    .who-we-container {
        padding: 10px;
        animation: fadeIn 1s ease-in-out;
    }

    .who-we-container .img-card img {
        width: 100%;
        animation: fadeIn 1s ease-in-out;
    }

    .appointment-head {
        font-size: 1.5em;
        animation: slideIn 1s ease-in-out;
    }

    form input[type="submit"] {
        width: 100%;
        animation: fadeIn 1s ease-in-out;
    }
}

footer {
    background-color: hwb(0 4% 96% / 0.982);
    color: #fff;
    width: 100%;
    height: auto;
}

.footer-container {
    display: flex;
    color :hwb(0 84% 14%);
    flex-direction: row;
    justify-content: space-evenly;
    padding-top:20px;
    padding-bottom: 10px;
    animation: fadeIn 1s ease-in-out;
    width: 100%;
    height: auto;
}
.footer-card1 {
    width : 28%;
}

.footer-card1 p {
    font-family: "Host Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 300;
    padding-top : 1px;
}

.footer-card2 {
    display: flex;
    flex-direction: column;
    animation: fadeIn 1s ease-in-out;
}

.footer-card2 .mail-class,
.footer-card2 .phone-class,
.footer-card2 .youtube-class,
.footer-card2 .linkedin-class {
    display: flex;
    flex-direction: row;
}

.mail-class .phone-class
.youtube-class .linkedin-class {
    padding-top : 5px;
    padding-bottom: 5px;
}
.mail-class i {
    align-content: center;
    padding-right : 20px;
}

.phone-class i {
    align-content: center;
    padding-right : 20px;
}

.youtube-class i {
    align-content: center;
    padding-right: 20px;
}

.linkedin-class i {
    align-content: center;
    padding-right: 20px;
}

.mail-class p a {
    color: hwb(0 84% 14%);
    text-decoration: none;
}

.phone-class p a {
    color: hwb(0 84% 14%);
    text-decoration: none;
}

.youtube-class p a {
    color: hwb(0 84% 14%);
    text-decoration: none;
}

.linkedin-class p a {
    color: hwb(0 84% 14%);
    text-decoration: none;
}
.copy-right {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 1px;
    background-color: hwb(0 4% 96% / 0.982);
    color: hwb(0 84% 14%);
    animation: fadeIn 1s ease-in-out;
}

.copy-right h1 {
    font-family: "Host Grotesk", sans-serif;
    font-size: 18px;
    font-weight: 300;
    padding-top :1px;
}