body {
    font-family: "Inter", sans-serif;
}

nav {
    font-family:'Montserrat', sans-serif;
}

.text-gradient {
    /* 👇 show a solid color in older browsers (e.g., IE11) */
    color: rgb(255, 255, 255);
}

/* 👇 show the text gradient in modern browsers */
@supports (--css: variables) {
    .text-gradient {
        background: linear-gradient(to right, #575aff, #282cff);
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
    }
    
    #logo {
        background: linear-gradient(to right, #575aff, #282cff);
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
        font-family: "Montserrat", sans-serif;
        font-size: 30px;
        text-decoration: none;
    }
}

.bg-contain {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #f8f9fa;
}

.brand-n {
    font-family: "Montserrat Alternates", sans-serif;
}

.btn-banner {
    transition: all .5s ease;
    color: #fff;
    border: 3px solid white;
    font-family:'Montserrat', sans-serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
    background-color : transparent;
    outline: none;
}

.btn-banner:hover {
    color: #001F3F;
    background-color: #fff;
}

.custom-navbar {
    background: transparent;
    transition: background 0.3s, backdrop-filter 0.3s;
}

.custom-navbar.scrolled {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(8px);
}

.navbar-toggler {
    margin-top: -12px; /* adjust as needed */
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler-icon:focus {
    outline: none;
    box-shadow: none;
    border: 0;
    position: relative;
}

.navbar-toggler span {
    margin: 0;
    padding: 0;
}

.toggler-icon {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #575aff;
    border-radius: 1px;
    opacity: 1;
    left: 0;
    top: 10px; 
    transform: rotate(0deg);
    transition: .2s ease-in-out;
}

.middle-bar {
    margin-top: 0px;
}

.navbar-toggler.collapsed .top-bar {
    position: absolute;
    top: 0px;
    transform: rotate(0deg);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
    position: absolute;
    top: 10px;
    filter: alpha(opacity=100);
}

.navbar-toggler.collapsed .bottom-bar {
    position: absolute;
    top: 20px;
    transform: rotate(0deg);
}

/* when navigation is clicked */

.navbar-toggler .top-bar {
    top: 10px;
    transform: rotate(135deg);
}

.navbar-toggler .middle-bar {
    opacity: 0;
    top: 10px;
    filter: alpha(opacity=0);
}

.navbar-toggler .bottom-bar {
    top: 10px;
    transform: rotate(-135deg);
}

/* Color of 3 lines */

.navbar-toggler.collapsed .toggler-icon {
    background: linear-gradient( 263deg, #282cff 0%, #575aff 100% );
}

#categories {
    background-color: #f7f7f7;
}

#categories .list-group-item { 
    padding: 1rem 1.25rem; 
}

#categories .icon-circle {
  width: 40px; height: 40px; border-radius: 50%;
  background: #eef2ff; color: #575aff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

#categories .chev { 
    transition: transform .15s ease; 
}

#categories .list-group-item:hover .chev { 
    transform: translateX(3px); 
}

#featured {
    padding: 3rem 0;
}

#home a{
    border-radius: 0;
}

#introduction{
    background: url("images/banner.png") no-repeat center center/cover;
    position: relative;
}

#introduction::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);                 /* fallback dim */
    backdrop-filter: brightness(0.75);           /* dim the backdrop */
    -webkit-backdrop-filter: brightness(0.75);
    pointer-events: none;
    z-index: 0;
}

/* keep hero content above the overlay */
#introduction > *{
    position: relative;
    z-index: 1;
}
