/* Global styles here */

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #fff;
  color: #202124;
}










/* Hiring Banner Begin */

/* Hiring Banner End */

/* Lead Icon Begin */

/* Lead Icon End */

/* Advertise Icon Begin */


/* Animated sound lines */

/* Advertise Icon End */

/* Business Free Listing Begin */

/* Business Free Listing End */


/* Bell Icon Ringing Begin */

/* Bell Icon Ringing End */





.login-register {
  background: #007bff;
  display: inline-block;
  color: white;
  padding: 6px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
  text-decoration: none;
  outline: 0;
  transition: background-color 0.3s ease;
  margin-left: -5px;
}

.login-register:hover {
  background-color: #007bff;
  color: #fff;
}


/* Sticky scrollable header */
.header-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* ==========================
   Just Dial Style Header & Search Box End
=========================== */


/* ============================
   Navigation Menu Begin
============================ */

/* Outer nav wrapper */
.main-nav {
  position: relative;
  margin-top: 0px;
}

/* Menu toggle button (☰) for mobile only */
.menu-button {
  position: fixed;
  top: 10px;
  left: 10px;
  font-size: 38px;
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  display: block;
}

.menu-button span::before {
  content: "☰";
}

.menu-button.open span::before {
  content: "✖";  /* Cross icon */
  font-size: 28px;
}

/* Menu Slide Out Close With Click Anywhere */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  z-index: 998;
}

.menu-overlay.active {
  display: block;
}

/* Slide-out menu container */
.main-nav-list-wrapper {
  background: #fff;
}

/* Style the menu list */
.main-nav-list {
  list-style: none;
  margin-top: 10px;
  margin-left: 30px;
  padding: 0;
}

/* Style for each menu item */
.main-nav-list li {
  margin: 0;
  padding: 0;
}

/* Style links */
.main-nav-list li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  color: #4285F4;
}

/* ============================
   Desktop Menu View
============================ */
@media (min-width: 768px) {
  .menu-button {
    display: none;
  }

  .main-nav-list-wrapper {
    display: flex !important;
    justify-content: center;
    padding: 0;
    margin: 0;
    background: #ffffff;
    position: static;
    transform: none !important;
    transition: none;
  }

  .main-nav-list {
    display: flex;
    gap: 25px;
    padding: 0;
    margin: 0;
  }

  .main-nav-list li {
    padding: 0;
    margin: 0;
  }

  .main-nav-list li a {
    display: inline-block;
  }

  /* Hide menu heading on desktop */
  .menu-heading {
    display: none !important;
  }
}

/* ============================
   Mobile Slide Out View
============================ */
@media (max-width: 767px) {
  .main-nav-list-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 180px;
    background-color: #ffffff;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    padding-top: 0;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  }

  .main-nav-list-wrapper.visible {
    transform: translateX(0);
  }

  .menu-heading {
    display: block;
    font-size: 18px;
    font-weight: bold;
    padding: 15px 20px;
    color: #000000;
    border-bottom: 1px solid #ddd;
    background-color: #ffffff;
  }

  .main-nav-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 0;
    padding: 10px 20px;
  }
}

/* ============================
   Navigation Menu End
============================ */


/* ============================
   Footer Menu & Style Begin
============================ */
footer {
  border-top: 1px solid #ddd;
  padding: 15px 10px;
  background: #f9f9f9;
  color: #777;
  font-size: 14px;
  margin-top: 30px;
}

footer nav {
  margin-bottom: 8px;
}

footer a {
  color: #5f6368;
  margin: 0 8px;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
/* ============================
   Footer Menu & Style End
============================ */