:root {
  --color-white: #fff;
  --color-smoke: #f4f5f8;
  --color-silver: #bbc4d2;
  --color-shadow: #637695;
  --color-grey: #858e97;
  --color-grey-20: #bdc4d0;
  --color-grey-40: #848d9e;
  --color-grey-45: #6d7687;
  --color-grey-55: #596072;
  --color-darkGrey: #56616a;
  --color-midnight: #2a2d38;
  --color-darkMidnight: #17191f;
  --color-black: #06070a;
  --color-social-share: #ededed;
  --color-article-about: #f6f6f6;
  --color-error: #d82b2b;
  --color-cardGrey: #212328;
  --color-cardGreyHover: #282a30;
  --color-textSelection: #dcecf4;
  --color-headerWhite: #ffffff80;
  --color-headerDark: #17191f80;
  --color-lightGrey: #f3f4f6;
  --ease: cubic-bezier(1, 0, 0, 1);
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-in: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --default: cubic-bezier(0.25, 0.1, 0.25, 1);
  --easeOutExpo: cubic-bezier(0.16, 1, 0.3, 1);
  --easeInExpo: cubic-bezier(0.7, 0, 0.84, 0);
  --z-card: 103;
  --z-header: 102;
  --z-popup: 101;
  --menu-follow-delay: 0ms;
  --swiper-theme-color: #007aff;
  --swiper-navigation-size: 44px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

.navbar-mine {
  background: rgba(255, 255, 255, 0.5); /* semi-transparent white */
  backdrop-filter: blur(10px); /* blur effect behind */
  -webkit-backdrop-filter: blur(10px);
  font-family: "Inter", sans-serif !important;
  position: sticky;
  top: 0;
  z-index: 100;
  height: 80px;
  width: 100%;
  max-width: 1700px;
  opacity: 100%;
}

.navbar-container-mine {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  padding: 0.5rem 2rem;
}
.navbar-logo-mine {
  color: #0a0909;
  font-size: 1.7rem;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.2s;
}
.navbar-logo-mine span {
  color: #00c6ff;
}
.navbar-menu-mine {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.navbar-menu-mine .nav-anchor {
  position: relative;
  display: inline-block;
  color: #060606;
  text-decoration: none;
  font-size: 1.25rem;
  padding: 0.5rem 1rem;
}

.navbar-menu-mine .nav-anchor::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  /* background: silver; */
  transition: width 0.3s ease;
}

.navbar-menu-mine li a:hover::after {
  width: 100%;
}

.navbar-toggle-mine {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 300;
  position: relative;
  width: 28px;
  height: 24px;
  background: transparent;
  border: none;
  padding: 0;
}

.navbar-toggle-mine span {
  display: block;
  width: 100%;
  height: 3px;
  background: #060606;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform-origin: center;
}


/* Mobile Social Links - Hidden by default */
.mobile-social-container {
  display: none;
}

/* Only show when mobile menu is active */
@media (max-width: 768px) {
  .navbar-menu-mine.active .mobile-social-container {
    display: block;
    width: 100%;
    padding: 2rem 1rem 0;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .mobile-social-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mobile-social-links p {
    color: var(--color-white);
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .mobile-email {
    color: var(--color-white);
    font-size: 1.1rem;
    text-decoration: none;
    text-align: center;
    display: block;
    margin-bottom: 1rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

  .social-icons a {
    color: var(--color-white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #00c6ff;
  }
}

/* Fix for logo span color */
.navbar-logo-mine span {
  color: #00c6ff !important; /* Ensures color stays consistent */
}

/* Add these media queries to your existing CSS */

/* Show toggle button and hide menu on mobile */
@media (max-width: 768px) {
  .navbar-toggle-mine {
    display: flex; /* Show the hamburger menu */
  }

  .navbar-menu-mine {
    position: fixed;
    top: 80px; /* Height of your navbar */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: #000;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 0;

    gap: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 99;
    overflow-y: auto;
  }

  .navbar-menu-mine.active {
    transform: translateX(0);
  }

  .nav-anchor{
    color: #fff !important; /* White text in mobile menu */
    font-size: 1.5rem;
    text-align: left;
  }

  .navbar-menu-mine li a::after {
    background: #00c6ff; /* Change underline color for mobile */
  }
}

/* Ensure regular menu is visible on desktop */
@media (min-width: 769px) {
  .navbar-toggle-mine {
    display: none; /* Hide hamburger menu */
  }

  .navbar-menu-mine {
    display: flex !important; /* Ensure menu is always visible */
  }

  /* Hide mobile social links on desktop */
  .mobile-social-container {
    display: none !important;
  }
}

/* Mobile Social Links - Hidden by default */
.mobile-social-container {
  display: none;
}

/* Show when mobile menu is active */
@media (max-width: 768px) {
  .navbar-menu-mine.active {
    justify-content: space-between; /* Pushes content to top and bottom */
    padding-bottom: 0; /* Remove bottom padding since we'll handle it in the container */
  }

  .navbar-menu-mine.active .mobile-social-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 2rem 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
  }

  .mobile-social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 150px !important;
  }

  .mobile-social-links p {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    opacity: 0.8;
  }

  .mobile-email {
    color: var(--color-white);
    font-size: 1rem;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
  }

  .mobile-email:hover {
    color: #00c6ff;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

  .social-icons a {
    color: var(--color-white);
    font-size: 1.4rem;
    transition: color 0.3s ease;
  }

  .social-icons a:hover {
    color: #00c6ff;
  }

  .btn-pill{
  color: black;
  background-color: white !important;
}

.btn-pill a {
  color: black !important;
  text-decoration: none;
}
}

.navbar-mine {
  transition: transform 0.3s ease, background 0.3s ease;
}

.navbar-mine.navbar-hidden {
  transform: translateY(-100%);
}

/* Navbar Logo Image Styling */
.navbar-logo-mine img {
  max-height: 60px; /* Keeps navbar height balanced */
  width: auto; /* Keeps aspect ratio */
  object-fit: contain; /* Prevents distortion */
  display: block; /* Removes inline gap issues */
  transition: transform 0.3s ease;
}

/* Slight hover effect (optional) */
.navbar-logo-mine img:hover {
  transform: scale(1.05);
}


/* Responsive adjustments */
@media (max-width: 767px) {
  .navbar-logo-mine img {
    max-height: 45px; /* Slightly smaller on mobile */
    margin-top: 5px !important;
  }
}
.btn-pill {
  display: inline-block;
  padding: 10px 25px;
  background-color: #fff;   /* black background */
  color: black !important;              /* white text */
  border-radius: 10px;    /* pill shape */
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-pill:hover {
  background-color: #fff;   /* white background on hover */
  color: #000 !important;              /* black text */
  border: 1px solid #000;   /* keeps the shape outline */
}


.navbar-menu-mine .nav-anchor:hover::after {
  width: 100%;
  /* background-color: silver; */
  /* color: #007aff !important; */
}



.nav-anchor:hover {
    color: #0072ff; /* Blue color on hover */
    transition: color 0.3s ease; /* Smooth transition */
}

.navbar-menu-mine .nav-anchor.active {
  color: #0072ff !important; /* Blue font */
}

/* Remove underline on hover */
.navbar-menu-mine .nav-anchor::after {
  display: none;
}

/* Hover = blue text only */
.nav-anchor:hover {
  color: #0072ff; /* Blue color on hover */
  transition: color 0.3s ease;
}

/* Active = blue text */
.navbar-menu-mine .nav-anchor.active {
  color: #0072ff !important;
}

.btn-pill{
  color: white;
  background-color: black;
}

.btn-pill a {
  color: white;
  text-decoration: none;
}
