@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 {
    background-color: hsla(0, 0%, 11%, 0.776);
    margin: 0;
    border: 0;
    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;
}

.service-head {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding-bottom: 30px;
    background-color: rgba(10, 10, 10, 0.954);
    animation: fadeIn 1s ease-in-out;
}

.service-head h1 {
    color: white;
    padding-top: 40px;
    font-size: 50px;
    text-align: center;
    animation: slideIn 1s ease-in-out;
}

.service-head h1:hover {
    color: #0081FB;
    cursor: pointer;
    animation: colorChange 1s infinite alternate;
}

@keyframes colorChange {
    0% {
        color: white;
    }
    100% {
        color: #0081FB;
    }
}

.service-head p {
    color: white;
    font-size: 20px;
    text-align: center;
    padding-left: 60px;
    padding-right: 60px;
    margin-left: 50px;
    margin-right: 50px;
    animation: fadeIn 1s ease-in-out;
}

.container-1 {
    background-color: rgba(28, 28, 28, 0.959);
    color: #fff;
    padding-top: 60px;
    padding-right: 40px;
    padding-bottom: 70px;
    padding-left: 80px;
    text-align: start;
    width: 70%;
    height : auto;
    animation: fadeIn 1s ease-in-out;
}

.container-1 h1 {
    font-size: 30px;
    margin-bottom: 20px;
    animation: slideIn 1s ease-in-out;
}

.container-1 p {
    font-size: 15px;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in-out;
}

.know-more-btn {
    background-color: #0081FB;
    border: none;
    color: #fff;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    animation: fadeIn 1s ease-in-out;
}

.know-more-btn a {
    color: #fff;
    text-decoration: none;
    animation: fadeIn 1s ease-in-out;
}

.container-2 {
    background-color: rgba(28, 28, 28, 0.959);
    color: #fff;
    width: 100%;
    height: auto;
    padding-top: 60px;
    padding-bottom: 70px;
    padding-right: 60px;
    padding-left: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    animation: fadeIn 1s ease-in-out;
}

.service {
    display: inline-block;
    width: 90%;
    margin: 0 1.5%;
    text-align: left;
    vertical-align: top;
    animation: fadeIn 1s ease-in-out;
}

.service h2 {
    font-size: 20px;
    margin-bottom: 10px;
    animation: slideIn 1s ease-in-out;
}

.service li {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 5px;
    animation: fadeIn 1s ease-in-out;
}

li:hover {
    color: #0081FB;
    cursor: pointer;
    animation: colorChange 1s infinite alternate;
}

.service-card-container {
    display: flex;
    flex-direction: row;
    animation: fadeIn 1s ease-in-out;
}

.service-card-container:hover {
    border: 1px solid hsla(209, 100%, 49%, 0.642);
    border-radius: 20px;
    transition: border 0.3s 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;
    }

    .container-1, .container-2 {
        width: 100%;
        padding: 20px;
        animation: fadeIn 1s ease-in-out;
    }

    .service {
        width: 100%;
        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;
    }

    .container-1, .container-2 {
        padding: 10px;
        animation: fadeIn 1s ease-in-out;
    }

    .service h2 {
        font-size: 18px;
        animation: slideIn 1s ease-in-out;
    }

    .service li {
        font-size: 12px;
        animation: fadeIn 1s ease-in-out;
    }
}

.animate {
    animation: fadeIn 1s ease-in-out, slideIn 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;
}