/* @import url('https://fonts.googleapis.com/css?family=Roboto');

body{
	font-family: 'Roboto', sans-serif;
}
* {
	margin: 0;
	padding: 0;
}
i {
	margin-right: 10px;
}

.navbar-logo{
	padding: 15px;
	color: #fff;
}
.navbar-mainbg{
	background-color: #5161ce;
	padding: 0px;
}
#navbarSupportedContent{
	overflow: hidden;
	position: relative;
}
#navbarSupportedContent ul{
	padding: 0px;
	margin: 0px;
}
#navbarSupportedContent ul li a i{
	margin-right: 10px;
}
#navbarSupportedContent li {
	list-style-type: none;
	float: left;
}
#navbarSupportedContent ul li a{
	color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 15px;
    display: block;
    padding: 20px 20px;
    transition-duration:0.6s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
}
#navbarSupportedContent>ul>li.active>a{
	color: #5161ce;
	background-color: transparent;
	transition: all 0.7s;
}
#navbarSupportedContent a:not(:only-child):after {
	content: "\f105";
	position: absolute;
	right: 20px;
	top: 10px;
	font-size: 14px;
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	padding-right: 3px;
	vertical-align: middle;
	font-weight: 900;
	transition: 0.5s;
}
#navbarSupportedContent .active>a:not(:only-child):after {
	transform: rotate(90deg);
}
.hori-selector{
	display:inline-block;
	position:absolute;
	height: 100%;
	top: 0px;
	left: 0px;
	transition-duration:0.6s;
	transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
	background-color: #fff;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;
	margin-top: 10px;
}
.hori-selector .right,
.hori-selector .left{
	position: absolute;
	width: 25px;
	height: 25px;
	background-color: #fff;
	bottom: 10px;
}
.hori-selector .right{
	right: -25px;
}
.hori-selector .left{
	left: -25px;
}
.hori-selector .right:before,
.hori-selector .left:before{
	content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #5161ce;
}
.hori-selector .right:before{
	bottom: 0;
    right: -25px;
}
.hori-selector .left:before{
	bottom: 0;
    left: -25px;
}


@media(min-width: 992px){
	.navbar-expand-custom {
	    -ms-flex-flow: row nowrap;
	    flex-flow: row nowrap;
	    -ms-flex-pack: start;
	    justify-content: flex-start;
	}
	.navbar-expand-custom .navbar-nav {
	    -ms-flex-direction: row;
	    flex-direction: row;
	}
	.navbar-expand-custom .navbar-toggler {
	    display: none;
	}
	.navbar-expand-custom .navbar-collapse {
	    display: -ms-flexbox!important;
	    display: flex!important;
	    -ms-flex-preferred-size: auto;
	    flex-basis: auto;
	}
}


@media (max-width: 991px){
	#navbarSupportedContent ul li a{
		padding: 12px 30px;
	}
	.hori-selector{
		margin-top: 0px;
		margin-left: 10px;
		border-radius: 0;
		border-top-left-radius: 25px;
		border-bottom-left-radius: 25px;
	}
	.hori-selector .left,
	.hori-selector .right{
		right: 10px;
	}
	.hori-selector .left{
		top: -25px;
		left: auto;
	}
	.hori-selector .right{
		bottom: -25px;
	}
	.hori-selector .left:before{
		left: -25px;
		top: -25px;
	}
	.hori-selector .right:before{
		bottom: -25px;
		left: -25px;
	}
} */


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;

  }
  
  /* Custom scrollbar styling */
  ::-webkit-scrollbar {
    width: 6px;
  }
  
  ::-webkit-scrollbar-track {
    background: #0C0C27;
  }
  
  ::-webkit-scrollbar-thumb {
    background: #ff4081;
    border-radius: 6px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #e00070;
  }
  
  .navbar {
    position: fixed;
    top: 40px; /* Added more margin-top */
    left: 20px;
    right: 20px;
    padding: 10px 20px;
    margin: 0 60px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    align-items: center;
    transition: background 0.3s, color 0.1s, top 0.3s, left 0.3s, right 0.3s, padding 0.3s, margin 0.3s, box-shadow 0.3s;
    z-index: 1000;
    color: white;

  }
  
  .navbar.sticky {
    background: #FFF;
    color: black;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* White shadow */
  }
  
  .navbar i{
    font-size: 16px;
    color: black;
    display: none;
  }
  .navbar a {
    color: inherit; /* Use inherit to ensure color change on scroll */
    text-decoration: none;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s;
  }
  .navbar a:hover{
    color:blue;
  }
  .navbar .logo a{
    display: flex;
    align-items: center;
  }
  .navbar .logo img{
    width: 50px;
    margin-right: 10px;
	display: none;
  }
  .active-logo{
	display: block !important;
  }

  .active-nav-links{
    display: flex !important;
    flex-direction: column;
    row-gap: 20px;
    background-color: white;
  }
  #close-hamburger{
    font-size: 16px;
    display: none;
	margin-left: 30px;
  }
  
  @media screen and (max-width: 900px){
	.navbar{
		margin: 0 0;
	}
    #hamburger {
        display: block !important;
        font-size: 16px;
		color: white;
        /* background-color: red; */
        /* height: 99px; */
    }
    #close-hamburger{
        display: block !important;
    }
    .nav-links{
        display: none;
        position: fixed;
        max-width: 300px;
		min-width: 200px;
        /* width: 100%; */
        right: 0;
        z-index: 99;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        top: 0;
        padding: 30px 10px;
    }
    
  }
  body.blur {
    /* filter: blur(5px); */
    /* filter: brightness(50%); */
  }

  @keyframes slideInFromRight {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(0);
    }
  }
  
  .nav-links.active-nav-links{
    animation: slideInFromRight 0.5s forwards;
    display: flex;
    filter: blur(0);
    z-index: 99;
	color: black;
  }

  .nav-links #close-hamburger{
    position: static;

  }
