/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 25-Feb-2026, 10:58:51 am
    Author     : Raimech_Aero
*/

html {
  scroll-behavior: smooth;
}
@media (min-width: 992px)
{
    
    #mobileMenu{
        display: none;
    }
.navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 30px;

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:transparent;
    transition:0.3s ease;
    z-index:1000;
    
    
}

/* menu links */
.menu_bar a{
    color:white;
    margin-left:25px;
    text-decoration:none;
    font-size:1.5rem;
    transition:0.3s;
    
    
}

/* when scrolled */
.navbar.scrolled{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.navbar.scrolled .menu_bar a{
    color:black;
}

.navbar.scrolled .CompName{
    color:black;
}

body:has(.hero:not(:in-view)) .navbar{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* change text color */
body:has(.hero:not(:in-view)) .menu_bar a{
    color:black;
}

.Top_logo img
{
    width: 80%;
    margin-left: 10%;
}
.Top_logo {
	align-content: center;
	/* border-color: #eeeaea; */
	background: rgba(255,255,255,0.2);
	border-radius: 10px;
	backdrop-filter: blur(2px);
	border: 1px solid rgba(255,255,255,0.3);
}

.CompName
{
    text-align: center;
    font-family: inter,system,sans-serif;
    color:#ffffff;
}
.CompName p {
	text-align: left;
	margin-left: 5%;
}

}

@media (max-width: 991px)
{
    .desktop_menu
    {
        display: none;
    }
button{
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none; 
  cursor: pointer;
 
}  
.navbar{
    
    display:block;
    align-items:center;
    justify-content:space-between;
    padding:10px 30px;

    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:transparent;
    transition:0.3s ease;
    z-index:1000;

    
}

.menu_bar a{
    color:white;
    margin-left:25px;
    text-decoration:none;
    font-size:1.5rem;
    transition:0.3s;
    
    
}

.navbar.scrolled{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

.navbar.scrolled .menu_bar a{
    color:black;
}

.navbar.scrolled .CompName{
    color:black;
}
.navbar.scrolled .mobile_menu{
    color:black;
}

body:has(.hero:not(:in-view)) .navbar{
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
}

/* change text color */
body:has(.hero:not(:in-view)) .menu_bar a{
    color:black;
}
.CompName
{
    text-align: center;
    font-family: inter,system,sans-serif;
    color:#ffffff;
}
.CompName p {
	text-align: left;
	margin-left: 5%;
}
.mobile_menu{
    display: block;
    color: white;
    border:none;
}


#mobileMenu{
  position:absolute;
  top:0px;
  left:0;
  width:100%;
  background:white;

  transform: translateY(-125%);
  transition: transform 0.3s ease;

  display:flex;
  flex-direction:column;
}

#mobileMenu a{
  padding:15px;
  border-bottom:1px solid #eee;
}

#mobileMenu.active{
  transform: translateY(0);
}
.menu-top {
	margin-left: auto;
	margin-right: auto;
	display: block;
	height: 50px;
	align-content: center;
}
#closeBtn{
    border:none;
    margin-left: auto;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.m_menu_head{
    padding-left: 50px;
}
.m_menu{
    display: block;
    text-align: justify;
    font-family: inter,system,sans-serif;
    font-size: .875rem;
    line-height: 1.25rem;
    text-transform: uppercase;
    color: hsl(var(--foreground));
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
#mobileMenu a{
    text-decoration: none;
    color: inherit;
}
}