/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Default Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: #000;
    position: relative;
    z-index: 1000;
    box-shadow: 0 5px 3px -6px black;
    transition: all 0.3s ease-in-out;
}

/* Sticky Header (Works on All Pages) */
.header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    animation: slideDown 0.4s ease-in-out;
}

/* Smooth Slide-Down Animation */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Navigation Container */
.nav_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
    background-color: #fff;
    color: #000;
    position: relative;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

/* Logo */
.logo img {
    width: 90px;
}

/* Navigation Menu */
.nav {
    display: flex;
/*     gap: 20px; */
	flex-wrap: nowrap !important;
    align-items: center;
}

.nav-items {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 50px;
}

.nav-items li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    line-height: 24px;
    font-weight: 500;
    font-family: "Work Sans", Sans-serif;
}

/* Header Button */
.header_button a {
    border-radius: 8px;
    color: white;
    transition: background-color 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
}

/* Gradient Background Animation */
.anim-bg-gradient {
    padding: 10px 20px;
    border-radius: 0.375em;
    cursor: pointer;
    color: white;
    background: linear-gradient(141deg, #58a2f9 0%, #7f79ef 51%, #5640da 75%);
    background-size: 200% 100%;
    background-position: 100% 0;
    transition: background-position .5s;
}

.anim-bg-gradient:hover {
    background-position: 0 0;
}

/* Cool Link Hover Effect */
.cool-link {
    display: inline-block;
    color: #000;
    text-decoration: none;
}

.cool-link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #000;
    transition: width .3s;
}

.cool-link:hover::after {
    width: 100%;
}


@media screen and (max-width: 991px){
	.header_button {
			display: none;
	}
}
