/* Simple white border for collapse button */
.navbar-toggler {
  border: 2px solid #ffffff;   /* white border */
  border-radius: 4px;          /* optional rounded corners */
}

.nav-menu {
  background: transparent;
}

@media (max-width: 991.98px) {
  /* Mobile menu panel */
  .mobile-nav {
    background-color: #000000 !important; /* solid black panel */
  }

  /* Mobile overlay behind the menu */
  .mobile-nav-overly {
    background: rgba(0,0,0,0.85) !important; /* semi-transparent black overlay */
  }

  /* Mobile nav links for contrast */
  .mobile-nav a {
    color: #ffffff !important; /* white text */
  }

  /* Hover/active states */
  .mobile-nav a:hover,
  .mobile-nav .active > a,
  .mobile-nav li:hover > a {
    color: #5fcf80 !important; /* accent color on hover */
  }
}

/* CSS to handle the dropdown appearance without changing your layout */
.nav-menu .drop-down {
  position: relative;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.nav-menu .drop-down li {
  min-width: 150px;
  position: relative;
}
.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #1b263b; /* Dark color for the white dropdown menu */
}
.nav-menu .drop-down ul a:hover {
  color: #F4A261;
  background: #f8f9fa;
}
/* --- 1. Base Button Styles --- */
.nav-btn {
    /* Set fixed padding to ensure consistent sizing */
    padding: 10px 20px;
    min-width: 100px; /* Ensures a minimum width for both buttons */
    text-align: center;
    
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    
    /* The "Water Flowing" Effect: Slow, smooth transition */
    transition: background-color 0.6s ease-in-out, 
                color 0.6s ease-in-out, 
                border-color 0.6s ease-in-out;
}

/* --- 2. Register Button (Primary CTA - Teal) --- */
.register-btn {
    /* Default State */
    background-color: #00A389; /* Solid Teal */
    color: white; 
    border: 2px solid #00A389; 
}

.register-btn:hover {
    /* Hover State: Slightly darker Teal for smooth flow */
    background-color: #008f7b; 
    color: white; 
    border-color: #008f7b; 
}

/* --- 3. Login Button (Secondary CTA - Orange) --- */
.login-btn {
    /* Default State */
    background-color: #F4A261; /* Solid Orange */
    color: #212529; /* Deep Charcoal Text for high contrast */
    border: 2px solid #F4A261; 
}

.login-btn:hover {
    /* Hover State: Slightly darker Orange for smooth flow */
    background-color: #e59352; 
    color: white; 
    border-color: #e59352; 
}

/* Optional: Navbar Context for spacing */
.navbar-btns {
    display: flex;
    align-items: center;
}

  
  
/* CSS to handle the dropdown appearance without changing your layout 
pak pages*/
.nav-menu .drop-down {
  position: relative;
}
.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.nav-menu .drop-down li {
  min-width: 150px;
  position: relative;
}
.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #1b263b; /* Dark color for the white dropdown menu */
}
.nav-menu .drop-down ul a:hover {
  color: #F4A261;
  background: #f8f9fa;
}
/* --- 1. Base Button Styles --- */
.nav-btn {
    /* Set fixed padding to ensure consistent sizing */
    padding: 10px 20px;
    min-width: 100px; /* Ensures a minimum width for both buttons */
    text-align: center;
    
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    margin-left: 10px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    
    /* The "Water Flowing" Effect: Slow, smooth transition */
    transition: background-color 0.6s ease-in-out, 
                color 0.6s ease-in-out, 
                border-color 0.6s ease-in-out;
}

/* --- 2. Register Button (Primary CTA - Teal) --- */
.register-btn {
    /* Default State */
    background-color: #00A389; /* Solid Teal */
    color: white; 
    border: 2px solid #00A389; 
}

.register-btn:hover {
    /* Hover State: Slightly darker Teal for smooth flow */
    background-color: #008f7b; 
    color: white; 
    border-color: #008f7b; 
}

/* --- 3. Login Button (Secondary CTA - Orange) --- */
.login-btn {
    /* Default State */
    background-color: #F4A261; /* Solid Orange */
    color: #212529; /* Deep Charcoal Text for high contrast */
    border: 2px solid #F4A261; 
}

.login-btn:hover {
    /* Hover State: Slightly darker Orange for smooth flow */
    background-color: #e59352; 
    color: white; 
    border-color: #e59352; 
}

/* Optional: Navbar Context for spacing */
.navbar-btns {
    display: flex;
    align-items: center;
}


