/* ===== Mobile Menu ===== */
@media (max-width: 991px) {

  /* Hamburger Button */
  .navbar-toggler {
    display: block;
    border: none;
    background: transparent;
    font-size: 24px;
    color: #2C2C2C;
    z-index: 1100;
  }

  /* Hide desktop menu */
  #desktopMenu {
    display: none !important;
  }

  /* Mobile overlay */
  .mobile-overlay {
    display: none;
    position: fixed;
    top:0; left:0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
  }

  /* Mobile menu */
  .mobile-menu {
    position: fixed;
    top:0; left:-260px;
    width: 260px;
    height: 100%;
    background: #fff;
    z-index: 1100;
    transition: 0.3s;
    overflow-y: auto;
    box-shadow: 4px 0 12px rgba(0,0,0,0.1);
  }

  .mobile-menu.active {
    left:0;
  }

  /* Header inside mobile menu */
.m-header {
  position: relative;  /* ensures .m-close positions relative to header */
  padding: 15px;
  border-bottom: 1px solid #ddd;
}

  .m-logo {
    font-weight: bold;
    font-size: 1.2rem;
  }
  .m-close i {
  pointer-events: none; /* ensures click works on button */
}

 .m-close {
  position: absolute;  /* absolute inside mobile menu */
  top: 15px;
  right: 15px;
  font-size: 28px;
  color: #333;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2000;       /* HIGHER than mobile menu */
}

  .m-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .m-inner li {
    border-bottom: 1px solid #f0f0f0;
  }

  .m-inner a {
    display: block;
    padding: 12px 20px;
    color: #2C2C2C;
    text-decoration: none;
  }

  .m-item.m-parent .mobile-toggle {
    float: right;
    transition: transform 0.3s;
  }

  .m-item.m-parent .mobile-toggle.open {
    transform: rotate(90deg);
  }

  .submenu {
    display: none;
    padding-left: 15px;
    background: #f9f9f9;
  }

  .submenu a {
    padding: 10px 15px;
  }

}

@media(max-width: 768px) {
.hero h1
{
    font-size: 1.5rem;
}
.py-5 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
}
.hero {
   padding: 120px 20px 50px;
}

}