.header {
    position: relative;
    transition: box-shadow 0.3s ease;
  }
  
  .header_logo_sec .logo_top_text {
    font-size: 14px;
    text-align: right;
    text-decoration: none;
  }
  
  .header .logo {
    width: 130px;
  }
  
  .desktop-menu {
    margin-left: 60px;
  }
  
  .desktop-menu .nav-link {
    color: #333;
    font-weight: 500;
    margin-right: 20px;
  }
  
  /* Mobile menu styles */
  .mobile-menu {
    position: absolute;
    top: 120%;
    left: 0;
    width: 100%;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    box-shadow: 0 4px 10px -2px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }
  
  .mobile-menu.show {
    max-height: 200px; /* Adjust based on your menu size */
  }
  
  .mobile-menu .nav-link {
    padding: 12px 20px;
    border-bottom: 1px solid #eee;
    color: #333;
    font-weight: 500;
    display: block;
  }
  
  /* header hamburger button */
  .header_hamburger {
    cursor: pointer;
    border: 1px solid #a1a1a1;
    padding: 0px 2px;
    border-radius: 5px;
  }
  
  .header_hamburger input {
    display: none;
  }
  
  .header_hamburger svg {
    /* The size of the SVG defines the overall size */
    height: 2.3em;
    /* Define the transition for transforming the SVG */
    transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .header_hamburger .line {
    fill: none;
    stroke: var(--black);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    /* Define the transition for transforming the Stroke */
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
      stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .header_hamburger .line-top-bottom {
    stroke-dasharray: 12 63;
  }
  
  .header_hamburger input:checked + svg {
    transform: rotate(-45deg);
  }
  
  .header_hamburger input:checked + svg .line-top-bottom {
    stroke-dasharray: 20 300;
    stroke-dashoffset: -32.42;
  }



/* Mobile (Portrait & Small Screens) */
@media (max-width: 767px) {

  .header .logo {
    width: 100px;
  }

  .header_logo_sec .logo_top_text {
    font-size: 11px;
  }

}