.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0);
}

.sticky-header.scrolled {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 0px 0px 16px 16px;
    
}

/* .dark-big-bg3 .sticky-header {
    background-color: color(srgb 0.2744 0.0623 0.6331);
} */

.dark-big-bg3 .sticky-header.scrolled .navbar-nav .nav-link {
    color: #5840BA;
}
/* .dark-big-bg3 .sticky-header.scrolled {
    background-color: #ffffff;;

} */
/* Adjust the navbar text color for better visibility when transparent */
.sticky-header .navbar-nav .nav-link {
    transition: color 0.3s ease;
}

.sticky-header.scrolled .navbar-nav .nav-link {
    /* padding: 0rem 0.8rem; */
    transition: padding 0.3s ease;
}

.sticky-header.scrolled .navbar {
    margin-top: 0px;
    transition: margin-top 0.3s ease;
}

/* Logo adjustments */
.sticky-header.scrolled .logo-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.sticky-header.scrolled .logo-text {
    font-size: 20px;
    transition: all 0.3s ease;
}


/* You may need to adjust these colors based on your design */
.sticky-header.scrolled .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Add padding to body to prevent content from hiding behind the fixed header */
/* body {
    padding-top: 70px; 
} */

/* Responsive adjustments */
@media (max-width: 991px) {
    /* body {
        padding-top: 60px; 
    } */
    
    /* For mobile, we might want the header to always have a background */
    /* .sticky-header {
        background-color: rgba(255, 255, 255, 1);
    } */
    
    .sticky-header .navbar-nav .nav-link {
        color: #212529;
    }
}
