/* Basic Header Layout */
.site-header {
  background: #fff;
/*   border-bottom: 1px solid #eee; */
  /* position: fixed; */
  /* top: 0; */
  /* z-index: 999; */
  /* margin-bottom: 40px !important; */
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 60px;
}

.site-logo img {
  max-height: 60px;
  width: auto;
}

/* Menu */
.main-navigation {
  display: flex;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  margin-left: 25px;
}

.main-navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.main-navigation a:hover {
  color: #e31e2d;
}

/* Toggle Button (Hamburger) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .main-navigation {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    position: absolute;
    top: 70px;
    left: 0;
    border-top: 1px solid #eee;
  }

  .main-navigation.active {
    display: flex;
  }

  .main-navigation ul {
    flex-direction: column;
    width: 100%;
  }

  .main-navigation li {
    margin: 15px 0;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }
}





/* Updated mentorship button - consistent on all devices */
.mentorship {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;                       /* agar icon bhi ho to thoda gap */
  box-sizing: border-box;
  min-height: 44px;               /* accessible touch target */
  padding: 10px 28px;
  background-color: rgb(249, 116, 116);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;                 /* ensure height works with padding */
  /* border-radius: 50px; */
  text-decoration: none;
  text-align: center;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  box-shadow: 0 6px 14px rgba(249, 116, 116, 0.18);
  white-space: normal;            /* allow wrapping */
  word-break: break-word;
  overflow: visible;
}

/* Hover / focus / active states */
.mentorship:hover,
.mentorship:focus {
  background-color: #fff;
  color: rgb(249, 116, 116);
  border-color: rgb(249, 116, 116);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(249,116,116,0.2);
  outline: none;
}

/* For touch devices: avoid keeping hover style stuck */
.mentorship:active {
  transform: translateY(0);
  opacity: 0.98;
}

/* Mobile: full width but keep padding and min-height */
@media (max-width: 600px) {
  .mentorship {
    display: block;                /* full width button */
    width: 100%;
    min-height: 52px;              /* slightly taller on mobile */
    padding: 12px 18px;
    font-size: 15px;
    /* border-radius: 12px;         */
  }
}

/* If some other CSS is aggressively overriding color/visibility,
   temporarily force important (use only if needed) */
/*
.mentorship {
  color: #fff !important;
  background-color: rgb(249,116,116) !important;
}
*/






/* Ensure header stays above and front page content is pushed down */
.site-header {
  /* position: relative; agar header fixed nahi karna to relative hi rakho */
  z-index: 1200;
}

/* Specific fix for front (home) page fullpage layout */
.home .site-main--fullpage,
.home .fullpage,
.home .fullpage__section {
  /* use CSS variable set by JS; fallback 80px */
  padding-top: calc(var(--header-height, 80px)) !important;
  box-sizing: border-box;
}

/* Slight extra spacing so header doesn't touch content even on big headers */
.home .site-main--fullpage {
/*   padding-top: calc(var(--header-height, 80px) + 10px) !important; */
}

/* If sections are absolutely positioned, ensure they are placed below header */
.home .fullpage__section {
/*   top: calc(var(--header-height, 80px)) !important; */
}

/* small screens tweak */
@media (max-width: 680px) {
  .home .site-main--fullpage,
  .home .fullpage,
  .home .fullpage__section {
    padding-top: calc(var(--header-height, 70px) + 8px) !important;
  }
}
