/*==========================================
    GOOGLE FONT
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*==========================================
    ROOT VARIABLES
==========================================*/

:root {

    --primary: #005CFF;
    --primary-light: #1D6DFF;
    --secondary: #56C9FF;
    --light: #EAF8FF;

    --white: #ffffff;
    --black: #222222;

    --text: #4B5563;

    --border: #E3F1FF;

    --shadow: 0 10px 35px rgba(0, 92, 255, .08);

    --radius: 12px;

    --gradient: linear-gradient(90deg,
            #56C9FF 0%,
            #1D6DFF 45%,
            #005CFF 100%);

}

/*==========================================
    RESET
==========================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {

    scroll-behavior: smooth;

}

body {

    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: #fff;

}

img {

    max-width: 100%;
    display: block;

}

ul {

    list-style: none;

}

a {

    text-decoration: none;

}

/*==========================================
    CONTAINER
==========================================*/

.container {

    max-width: 1200px !important;
    margin: auto;
    padding: 0 20px;

}

/*==========================================
    HEADER
==========================================*/

.header {

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    background: rgba(255, 255, 255, .96);

    backdrop-filter: blur(12px);

    box-shadow: var(--shadow);

    z-index: 999;

}

.header .container {

    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 85px;

}

/*==========================================
    LOGO
==========================================*/

.logo img {

    height: 60px;

}

/*==========================================
    NAVBAR
==========================================*/

.navbar {

    display: flex;
    align-items: center;

}

.nav-menu {

    display: flex;
    align-items: center;
    gap: 35px;

}

.nav-menu>li {

    position: relative;

}

.nav-menu>li>a {

    color: var(--black);

    font-size: 15px;

    font-weight: 600;

    transition: .35s;

    display: flex;

    align-items: center;

    gap: 6px;

    padding: 10px 0;

}

.nav-menu>li>a:hover {

    color: var(--primary);

}

/*==========================================
    ACTIVE MENU
==========================================*/

.nav-menu>li>a.active {

    color: var(--primary);

}

.nav-menu>li>a.active::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 100%;

    height: 3px;

    background: var(--gradient);

    border-radius: 20px;

}

/*==========================================
    DROPDOWN
==========================================*/

.dropdown-menu {

    position: absolute;

    top: 120%;

    left: 0;

    width: 260px;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

    border: 1px solid var(--border);

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    overflow: hidden;

}

.dropdown:hover .dropdown-menu {

    top: 100%;

    opacity: 1;

    visibility: visible;

}

.dropdown-menu li {

    border-bottom: 1px solid #eee;

}

.dropdown-menu li:last-child {

    border: none;

}

.dropdown-menu li a {

    display: block;

    padding: 14px 18px;

    color: #333;

    transition: .3s;

}

.dropdown-menu li a:hover {

    background: var(--light);

    color: var(--primary);

    padding-left: 25px;

}

/*==========================================
    BUTTON
==========================================*/

.book-btn {

    background: var(--gradient);

    color: #fff;

    padding: 13px 28px;

    border-radius: 40px;

    font-weight: 600;

    transition: .35s;

}

.book-btn:hover {

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(0, 92, 255, .25);

}

/*==========================================
    HAMBURGER
==========================================*/

.menu-toggle {

    display: none;

    width: 32px;

    cursor: pointer;

    flex-direction: column;

    gap: 6px;

}

.menu-toggle span {

    width: 100%;

    height: 3px;

    background: var(--primary);

    border-radius: 30px;

    transition: .35s;

}

.menu-toggle.active span:nth-child(1) {

    transform: rotate(45deg) translate(6px, 6px);

}

.menu-toggle.active span:nth-child(2) {

    opacity: 0;

}

.menu-toggle.active span:nth-child(3) {

    transform: rotate(-45deg) translate(7px, -7px);

}

/*==========================================
    MOBILE
==========================================*/

@media(max-width:991px) {

    .logo img {

        height: 50px;

    }

    .book-btn {

        display: none;

    }

    .menu-toggle {

        display: flex;

    }

    .navbar {

        position: fixed;

        top: 85px;

        left: -100%;

        width: 300px;

        height: calc(100vh - 85px);

        background: #fff;

        box-shadow: 0 15px 30px rgba(0, 0, 0, .08);

        transition: .35s;

        overflow-y: auto;

    }

    .navbar.active {

        left: 0;

    }

    .nav-menu {

        flex-direction: column;

        align-items: flex-start;

        gap: 0;

        padding: 15px 0;
        width: 100%;

    }

    .nav-menu li {

        width: 100%;

    }

    .nav-menu li a {

        width: 100%;

        padding: 16px 25px;

        justify-content: space-between;

    }

    .dropdown-menu {

        position: static;

        opacity: 1;

        visibility: visible;

        display: none;

        box-shadow: none;

        border: none;

        width: 100%;

        padding-left: 15px;

    }

    .dropdown.active .dropdown-menu {

        display: block;

    }

    .dropdown-menu li a {

        padding: 14px 25px;

        background: #F7FBFF;

    }

}

/*==========================================
    SMALL MOBILE
==========================================*/

@media(max-width:576px) {

    .header .container {

        height: 75px;

    }

    .logo img {

        height: 45px;

    }

    .navbar {

        top: 75px;

        height: calc(100vh - 75px);

        width: 100%;
        align-items: flex-start;

    }

}