@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


* {
    font-family: inter, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    box-sizing: border-box;
    position: relative;
}

:root {
    --primary-color: rgb(228, 120, 19);
    --primary-color-light: rgba(228, 120, 19, 0.541);
    --primary-text-color: #212728;
    --white-text-color: white
}

/* cursor style */

.b_cursor_dot {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
}

.b_cursor_outline {
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary-color);
}

.b_cursor_dot,
.b_cursor_outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

/* Navbar style */

.b_navbar_con {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    background-color: #ffede1;
    transition: all 0.3s ease;
    z-index: 10;
}

.b_navbar_con.sticky {
    position: fixed;
    width: 100vw;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    z-index: 2;
    top: -100px;
    animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
    from {
        top: -100px;
        opacity: 0;
    }

    to {
        top: 0;
        opacity: 1;
    }
}

.b_navbar_logo {
    height: 6dvh;
}

.b_navbar_logo img {
    height: 100%;
}

.b_navbar_link_con {
    display: flex;
    align-items: center;
    gap: 20px;
}

.b_navbar_link {
    list-style: none;
    position: relative;
    padding-bottom: 10px;
}

.b_navbar_link a {
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--primary-text-color);

}

.b_navbar_link::before {
    content: "";
    width: 0;
    height: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: none;
}

.b_navbar_link:hover::before {
    width: 100%;
}

.b_navbar_appointment a {
    padding: 15px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: var(--white-text-color);
    font-weight: 600;
    font-size: 1.2rem;
    background-color: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    text-transform: uppercase;
}

.d_open_menu_btn {
    background-color: var(--primary-color);
    border-radius: 50%;
    display: none;
}

.d_open_menu_btn_icon {
    font-size: 30px !important;
    color: white;
    padding: 10px;
}

/* sidebar styles */

.b_sidebar_con {
    box-sizing: border-box;
    position: absolute;
    top: 0;
    display: none;
    width: 400px;
    background-color: white;
    height: 100dvh;
    z-index: 10;
    transform: translateX(-450px);
    visibility: hidden;
    transition: all .5s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
}

.b_sidebar_con.show {
    transform: translateX(0);
    visibility: visible;
    transition: all .5s ease-in-out;
}

.b_sidebar_logo {
    height: 60px;
    background-color: #ffede1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.b_sidebar_logo img {
    height: 70%;

}

.b_sidebar_close_icon {
    position: absolute;
    right: -25px;
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 10px;
    top: 35px;
    color: white;
    font-size: 30px;
}

.b_sidebar_link_list {
    padding: 30px;
    list-style: none;
}

.b_sidebar_link a {
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 30px;
    color: var(--primary-text-color);
}
.b_sidebar_points{
    font-size: 55px !important;
}
/* Home page styles */

.b_home_body_part_1 {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100dvh;
    padding: 0px 50px;
}

.b_home_body_part_1_sec_1 {
    display: flex;
    position: relative;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.b_home_body_part_1_sec_1 h4 {
    text-transform: uppercase;
    font-size: 20px;
    color: var(--primary-color);
}

.b_home_body_part_1_sec_1 p {
    text-transform: capitalize;
    font-size: 18px;
    color: #737887;
    line-height: 1.75;
    font-weight: 600;
}

.b_home_body_part_1_sec_1 h1 {
    text-transform: capitalize;
    font-size: 74px;
    color: var(--primary-text-color);
}

.b_home_body_part_1_sec_2 {
    display: flex;
    flex: 1;
    height: 100%;
}

.b_home_body_part_1_sec_2 img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.b_home_body_about_btn {
    padding: 15px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    color: var(--white-text-color);
    font-weight: 600;
    font-size: 1.2rem;
    background-color: var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 18px 50px -10px;
    text-transform: uppercase;
    width: max-content;
}

.b_home_body_ripple {
    position: relative;
    height: 0px;
    width: 0px;
    box-shadow: 0 0 50px var(--hoverColor);
    border-radius: 50%;
    border: 1px solid var(--hoverColor);
}

.b_home_body_ripple span {
    position: absolute;
    top: 10px;
    left: 0;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 1px solid var(--primary-color-light);
    -webkit-animation: profileAnimation 5s linear infinite;
    animation: profileAnimation 5s linear infinite;
    animation-delay: calc(var(--i) * -1s);
    border-radius: 50%;
}

@keyframes profileAnimation {
    0% {
        width: 0px;
        height: 0px;
        opacity: 1;
    }

    50% {
        opacity: 0.55;
    }

    100% {
        width: 410px;
        height: 410px;
        opacity: 0.05;
    }
}

/* footer style */
.d_footer_tabs_details {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 50px 40px;
    background-color: rgb(17, 10, 2);
}

.d_footer_part_1 {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.d_footer_part_2 {
    flex: 1;
}

.d_footer_part_2 {
    flex: 1;
}

.d_footer_part_1 h1 {
    color: var(--white-text-color);
    text-transform: uppercase;
    position: relative;
    width: max-content;
    padding-bottom: 15px;
}

.d_footer_part_1 h1::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    border-bottom: 4px solid var(--primary-color);
}

.d_footer_part_1 p {
    color: gray;
    font-size: 1.3rem;
}

.d_footer_part_2 h1 {
    color: var(--white-text-color);
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    padding-bottom: 15px;
    width: max-content;
}

.d_footer_part_2 h1::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    border-bottom: 4px solid var(--primary-color);
}

.d_footer_part_2_links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 25px;
}

.d_footer_part_2_links li {
    list-style: none;
}

.d_footer_part_2_links li a {
    text-decoration: none;
    color: var(--white-text-color);
    display: flex;
    align-items: center;
    font-size: 20px;

    &:hover {
        color: var(--primary-color);
    }
}

.d_footer_part_3 h1 {
    color: var(--white-text-color);
    text-transform: uppercase;
    white-space: nowrap;
    position: relative;
    padding-bottom: 15px;
}

.d_footer_part_3 h1::before {
    content: "";
    position: absolute;
    width: 100%;
    bottom: 0;
    border-bottom: 4px solid var(--primary-color);
}

.b_footer_icon_list {
    display: flex;
    gap: 10px;
}

.d_app_icons {
    border: 2px solid white;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    display: grid;
    place-items: center;

    &:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }
}

.d_app_icons i {
    font-size: 1.5rem;
    color: white;

}

.b_footer_copyright {
    background-color: var(--primary-color);
    padding: 30px 40px;
}

.b_footer_copyright p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white-text-color);
}

@media screen and (max-width:1000px) {
    .b_sidebar_con {
        display: block;
    }

    .b_navbar_logo {
        height: 5dvh;
    }

    .b_navbar_link_con,
    .b_navbar_appointment {
        display: none;
    }

    .d_open_menu_btn {
        display: block;
    }

    .b_cursor_dot,
    .b_cursor_outline {
        display: none;
    }

    .b_home_body_part_1 {
        flex-direction: column-reverse;
        padding: 10px 20px;
    }

    .b_home_body_part_1_sec_1 {
        text-align: center;

    }

    .b_home_body_part_1_sec_1 h1 {
        font-size: clamp(14px, 8vw, 64px);
    }

    .b_home_body_about_btn {
        align-self: center;
    }

    .d_footer_tabs_details {
        flex-wrap: wrap;
    }
}

@media screen and (max-width:400px) {
    .b_sidebar_logo {
        height: 6dvh;
    }

    .b_sidebar_con {
        width: 70vw;
    }

    .d_open_menu_btn_icon {
        font-size: 20px !important;
    }
    .b_sidebar_close_icon{
        top: 10px;
        right: -15px;
        font-size: 15px !important;
    }

    .b_sidebar_con.hide {
        transform: translateX(-77vw);
    }
        .b_sidebar_link a {
            font-size: 20px;
            font-weight: 500;
        }
        .b_sidebar_points{
            font-size: 30px !important;
        }
}