.elementor-31 .elementor-element.elementor-element-b3ebc88{--display:flex;}/* Start custom CSS for html, class: .elementor-element-2a84dc7 *//* Header Main Wrapper - Wider & More Extended */
.rehbar-header {
  width: 100%;
  position: fixed;
  top: 15px;
  left: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 14px;
  box-sizing: border-box;
}

.header-container {
  width: 100%;
  max-width: 1420px; /* Width ko aur zyada bada aur expansive kar diya hai */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 243, 226, 0.94) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(124, 155, 108, 0.45);
  box-shadow: 0 15px 45px rgba(29, 53, 87, 0.12), 0 0 25px rgba(124, 155, 108, 0.2);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 38px; /* Internal padding ko bhi thoda aur expand kiya hai */
  box-sizing: border-box;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-container:hover {
  box-shadow: 0 20px 55px rgba(29, 53, 87, 0.16), 0 0 35px rgba(124, 155, 108, 0.3);
  border-color: rgba(124, 155, 108, 0.7);
}

/* Logo Styles with Smooth Hover Animation */
.logo-box {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img-wrap {
  width: 74px; /* Logo size ko bhi thoda aur balance kiya hai */
  height: 74px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #7c9b6c;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(124, 155, 108, 0.25);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-box:hover .logo-img-wrap {
  transform: scale(1.06) rotate(5deg);
  box-shadow: 0 8px 22px rgba(124, 155, 108, 0.4);
  border-color: #1d3557;
}

.logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.logo-box:hover .logo-img-wrap img {
  transform: scale(1.05);
}

/* Navigation Menu & Hover Slide Animation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 48px; /* Links ke beech ka gap aur expand kiya hai */
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1d3557;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #7c9b6c;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
}

.nav-links a:hover,
.nav-links a.active {
  color: #7c9b6c;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Emergency Button with Vibrant Glow Hover */
.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.emergency-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, #1d3557 0%, #0f2136 100%);
  color: #ffffff;
  padding: 12px 28px; /* Button ko aur prominent banaya hai */
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 5px 18px rgba(29, 53, 87, 0.25);
  position: relative;
  overflow: hidden;
}

.emergency-btn svg {
  transition: transform 0.3s ease;
}

.emergency-btn:hover {
  background: linear-gradient(135deg, #7c9b6c 0%, #607c51 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(124, 155, 108, 0.45);
  color: #ffffff;
}

.emergency-btn:hover svg {
  transform: scale(1.15) rotate(10deg);
}

/* Mobile Toggle Hamburger Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: #1d3557;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Dropdown Menu Styles */
.mobile-nav-dropdown {
  display: none;
  width: 100%;
  max-width: 1420px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(232, 243, 226, 0.96) 100%);
  backdrop-filter: blur(20px);
  border: 1.5px solid rgba(124, 155, 108, 0.45);
  box-shadow: 0 15px 40px rgba(29, 53, 87, 0.15);
  border-radius: 24px;
  margin-top: 10px;
  flex-direction: column;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(-12px);
  transition: all 0.35s ease;
}

.mobile-nav-dropdown.open {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-dropdown a {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1d3557;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.mobile-nav-dropdown a:hover {
  background-color: rgba(124, 155, 108, 0.2);
  color: #7c9b6c;
  transform: translateX(5px);
}

/* Responsive Breakpoint for Mobile & Tablet */
@media (max-width: 960px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .header-container {
    padding: 8px 20px;
    border-radius: 50px;
  }
  .logo-img-wrap {
    width: 50px;
    height: 50px;
  }
  .rehbar-header {
    padding: 0 14px;
  }
}

/* Hamburger Animation when active */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* 1. Elementor ke pehle container/section ka upar wala gap aur padding zero karne ke liye */
.elementor-element.elementor-element-b3ebc88,
#content .elementor-section:first-of-type,
.elementor-page .elementor-section:first-of-type,
.site-content > .elementor:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* 2. Agar container ke andar inner element mein padding ho */
.elementor-element-b3ebc88 > .e-con-inner {
  padding-top: 0 !important;
}

/* 3. Fixed Header ko top par lock rakhne ke liye */
.rehbar-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  z-index: 99999 !important;
}/* End custom CSS */