* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body{
  background-color: #1B3C53;

  /* Lastly added so footer stick in buttom */
  min-height: 100vh;
  display: flex;
  flex-direction: column;

}

.main-content{
  flex: 1;
}

nav {
  /* background-color: #103059; */
  background-color: #1B3C53;
	/* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); */
  box-shadow: 0 4px 12px rgba(10, 25, 30, 0.32);

	position: sticky;
	top: 0;
	z-index: 1000;
}
.navbar-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 60px;
}

/* LEFT SECTION */
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* LOGO STYLING */
.logo span:first-child {
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
}
.logo span:last-child {
  font-weight: 700;
  font-size: 1.2rem;
  color: #ffd700;
  margin-left: 3px;
  letter-spacing: 1px;
}


/* NAV ITEMS */
.nav-items {
  display: flex;
  list-style: none;
  gap: 25px;
}


.nav-items li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
  height: 100%;

}

.nav-items li a:hover {
  color: yellow;
}

/* RIGHT SECTION */
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* PROFILE IMAGE */
.profile-image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  cursor: pointer;
}

/* BUTTONS (signup + dark mode) */
.auth-btn button{
  background-color: white;
  /* background-color: transparent; */
  color: #1877f2;
  border: 1px solid white;
  padding: 8px 16px;
  /* border-radius: 20px; */
  border-radius: 20px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s ease;
}
.auth-btn button a{
  text-decoration: none;
  color: #1877f2;
}

.auth-btn button:hover{
  background-color: transparent;
}
.auth-btn button:hover a{
  color: white;
}


/* RESPONSIVENESS */
.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.menu-btn{
    display: none;
  }

/* ---------- MOBILE STYLING ---------- */


/* Sidebar */
.sidebar-container {
    position: fixed;
    top: 0;
    right: -100%; /* hidden initially off-screen */
    height: 100vh;
    width: 250px;
    z-index: 999;
    /* background-color: rgb(7, 7, 42); */
    background-color: #1B3C53;

    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    transition: right 0.3s ease; /* smooth sliding */
}

.sidebar-container.active {
    right: 0; /* slide in */
}
/* .sidebar-container{
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 250px;
  z-index: 999;
  background-color: rgb(7, 7, 42);
  box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px;
} */
  

.sidebar-container ul{
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;

}
.sidebar-container li{
  width: 100%;
  /* border: 2px solid black; */
  padding: 10px;
  background-color: #09152d;
  border-radius: 5px;
  transition: all 0.3s ease;

}
.sidebar-container li:hover{
  background-color: #0b1d3f;
}

.sidebar-container a{
  width: 100%;
  text-decoration: none;
  color: white;

}

.mobile-profile-image{
  width: 100%;
  margin:10px 0px ;
  color: white;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 5px;
  border-radius: 5px;
  background-color: #0b2346;

  
}
.mobile-profile-image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  object-fit: cover;
  cursor: pointer;
}
.mobile-auth-btn,
.mobile-dark-btn{
  width: 100%;
  margin: 10px 0px;
}
.mobile-auth-btn button,
.mobile-dark-btn button
{
  width: 100%;
  padding: 10px;
  background:none;
  border: 1px solid white;
  color: white;
  border-radius: 5px;
  transition: all 0.3s ease;

}
.mobile-auth-btn button:hover,
.mobile-dark-btn button:hover{
  background-color: #0a2a54;

}

.menuClose-btn{
  background: none;
  color: white;
  width: 100%;
  display: flex;
  align-items: center;
  /* border: 1px solid white; */
  padding: 8px 0;
}


/* Footer */
.ns-footer {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #e0e0e0;
    padding: 60px 40px 20px;
    font-family: "Segoe UI", sans-serif;
    margin-top: 20px;
}

.ns-footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.ns-footer-brand h2 {
    color: #ffffff;
    margin-bottom: 15px;
}

.ns-footer-brand p {
    line-height: 1.6;
    font-size: 14px;
    color: #cccccc;
}

.ns-footer-links h4 {
    margin-bottom: 15px;
    color: #ffffff;
}

.ns-footer-links ul {
    list-style: none;
    padding: 0;
}

.ns-footer-links ul li {
    margin-bottom: 10px;
}

.ns-footer-links ul li a {
    text-decoration: none;
    color: #bbbbbb;
    font-size: 14px;
    transition: color 0.3s ease;
}

.ns-footer-links ul li a:hover {
    color: #ffffff;
}

.ns-footer-status {
    font-size: 14px;
    color: #cccccc;
}

.beta-badge {
    display: inline-block;
    background: #ff9800;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.ns-footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    color: #aaaaaa;
}

/* Footer end */

@media(max-width:800px){

  .nav-items,
  .profile-image,
  .nav-right .auth-btn,
  .nav-right .dark-btn{
    display: none;
  }
  .menu-btn{
    display: block;
  }

}
@media(max-width:800px){
  .sidebar-container{
    width: 100%;
  }
  .nav-items,
  .profile-image,
  .nav-right .auth-btn,
  .nav-right .dark-btn{
    display: none;
  }
  
}