header {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.09);
    /* z-index: 999; */
}

/* Responsive navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    /* background: red; */
}

.nav-branding {
    color: black;
    font-size: 24px;
    font-weight: 600;
}

.nav-branding img {
    width: 75% !important;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
}

.nav-link {
    color: black;
    font-size: 20px;
    font-weight: 600;
    transition: 0.3s ease-out;
    padding: 8px 16px;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateX(50%); /* Move it back by half of its width to center it */
    width: 50%; /* Adjust the width here */
    height: 4px; /* Border thickness */
    background-color: #fc7c24;
}

.nav-link:hover {
    color: #fc7c24;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background-color: black;
}

@media (max-width: 1024px) {
    .navbar {
        padding: 16px !important;
    }

    .hamburger {
        display: block;
        z-index: 99999;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        padding: 100px 0 0;
        flex-direction: column;
        justify-content: flex-start;
        /* background-color: #fc7c24; */
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        min-height: 100vh;
    }

    .nav-menu.active {
        left: 0;
        z-index: 9;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-branding {
        font-size: 28px;
        z-index: 999999;
        width: 75%;
    }

    .nav-link {
        font-size: 28px;
    }

    .nav-link:hover {
        color: #fff;
    }

}

@media (max-width: 1024px) {
    .nav-branding {
        font-size: 20px;
        z-index: 999999;
        width: 75%;
    }

    .nav-branding img {
        width: 75% !important;
    }

}

.nav-branding {
    --b: 0.1em;
    /* the thickness of the line */
    --c: var(--violet);
    /* the color */

    color: var(--white);
    padding-block: var(--b);
    background:
        linear-gradient(var(--c) 50%, #000 0) 0% calc(100% - var(--_p, 0%))/100% 200%,
        linear-gradient(var(--c) 0 0) 0% var(--_p, 0%)/var(--_p, 0%) var(--b) no-repeat;
    -webkit-background-clip: text, padding-box;
    background-clip: text, padding-box;
    transition: .3s var(--_s, 0s) linear, background-size .3s calc(.3s - var(--_s, 0s));
}

/* .nav-branding:hover {
    --_p: 100%;
    --_s: .3s;
    color: var(--violet);
} */

/* Nav links */
.hover-underline-animation {
    display: inline-block;
    position: relative;
    color: #fc7c24;
}

.hover-underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 4px;
    bottom: 0;
    left: 0;
    background-color: #fc7c24;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


/* //testimonials swiper */

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10%;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Homepage Button */
/* CSS */
.button-1-wrap {
    width: 100%;
}
.button-1 {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    width: 100% !important;
}

.button-1-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1);
}

.button-1-edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
            hsl(27, 100%, 16%) 0%,
            hsl(19, 100%, 32%) 8%,
            hsl(24, 100%, 32%) 92%,
            hsl(19, 100%, 16%) 100%);
}

.button-1-front {
    display: block;
    position: relative;
    padding: 12px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    /* background: hsl(345deg 100% 47%); */
    background: #fc7c24;
    will-change: transform;
    transform: translateY(-4px);
    transition:
        transform 600ms cubic-bezier(.3, .7, .4, 1);
}

@media (min-width: 768px) {
    .button-1-front {
        font-size: 16px;
        padding: 12px 0;
    }
}

.button-1:hover {
    filter: brightness(110%);
    -webkit-filter: brightness(110%);
}

.button-1:hover .button-1-front {
    transform: translateY(-6px);
    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-1:active .button-1-front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.button-1:hover .button-1-shadow {
    transform: translateY(4px);
    transition:
        transform 250ms cubic-bezier(.3, .7, .4, 1.5);
}

.button-1:active .button-1-shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.button-1:focus:not(:focus-visible) {
    outline: none;
}