/* Body font */
body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Header */
.header {
  background-color: #6ee7f9;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
#headerLogo {
  height: 60px;
}

/* Desktop Nav Links */
.nav-link {
  text-decoration: none;
  color: #0b4b75 !important;
  transition: color 0.3s ease;
  letter-spacing: 0.5px;
}


.nav-link.active{
  color: white !important;
}
.nav-link.active:hover{
  color: white;
}

/* Profile Icon */
.profile-icon {
  width: 36px;
  height: 36px;
  border: 3px solid #0b4b75;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.profile-icon i {
  color: #0b4b75;
  font-size: 18px;
}
.profile-icon.active {
  border: 3px solid white;
  font-size: 18px;
}

.profile-icon i.active {
  color: white;
}

.profile-icon1 {
  border: 3px solid #fff; /* white border */
  border-radius: 50%;      /* optional: make it circular */
  padding: 10px;           /* space inside the border */
  color: #fff;             /* icon/text color white */
}

.profile-icon1 i{
  color: #fff;             /* icon/text color white */
}

/* ---------- Mobile Overlay Menu ---------- */
.mobile-overlay {
  position: fixed;
  top: 0;
  right: -300px;
  width: fit-content;
  max-width: 280px;
  height: fit-content;
  background: rgba(110, 231, 249, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: -2px 0 10px rgba(0,0,0,0.2);
  padding: 2rem;
  z-index: 2000;
  border-radius: 0 0 0 15px;
  transition: right 0.4s ease-in-out;
}

.mobile-overlay.show {
  right: 0;
}

/* Vertical and centered content */
.mobile-overlay .overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;  
  gap: 1.2rem;          
}

.mobile-overlay .overlay-content a {
  font-weight: bold;
  color: #0b4b75;
  text-decoration: none;
  font-size: 1.2rem;
  display: block;
  text-align: center;
}

/* Center the profile icon perfectly below links */
.mobile-overlay .overlay-content .profile-icon {
  margin-top: 1.5rem;
  width: 50px;
  height: 50px;
  border: 3px solid #0b4b75;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-overlay .overlay-content .profile-icon i {
  font-size: 22px;
  color: #0b4b75;
}

.bg{
  border-bottom: #ffffff solid 3px;
}

