  .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: transparent;
      backdrop-filter: none;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: all 0.3s ease;
      padding-block-end: 0 !important;
      padding-block-start: 0 !important;
  }

  [type=button]:focus,
  [type=button]:hover,
  [type=submit]:focus,
  [type=submit]:hover,
  button:focus,
  button:hover {
      background-color: transparent !important;
  }

  .logo {
      font-size: 28px;
      font-weight: bold;
      color: #333;
      text-decoration: none;
      letter-spacing: 2px;
  }

  /* Menu Toggle Button */
  .menu-toggle {
      position: relative;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      z-index: 1001;
      transition: all 0.3s ease;
  }

  .menu-toggle span {
      display: block;
      width: 30px;
      height: 3px;
      background: #fff;
      margin: 3px 0;
      transition: all 0.3s ease;
      transform-origin: center;
  }

  .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg) translate(6px, 6px);
      background: #fff;
  }

  .menu-toggle.active span:nth-child(2) {
      opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
      background: #fff;
  }

  /* Overlay Menu */
  .overlay-menu {
      position: fixed;
      top: -100%;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
      z-index: 999;
      display: flex;
      transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      opacity: 0;
  }

  .overlay-menu.active {
      top: 0;
      opacity: 1;
  }

  /* Left Side - Image Section */
  .menu-left {
      flex: 1;
      background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600" fill="%23334155"><rect width="800" height="600"/><circle cx="200" cy="150" r="50" fill="%234F46E5" opacity="0.3"/><circle cx="600" cy="300" r="80" fill="%23927244" opacity="0.2"/><polygon points="100,400 200,350 150,500" fill="%2310B981" opacity="0.3"/></svg>');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
  }

  .menu-left-content {
      text-align: center;
      color: #fff;
      padding: 40px;
  }

  .menu-left h2 {
      font-size: 3rem;
      font-weight: 300;
      margin-bottom: 20px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      letter-spacing: 3px;
  }

  .menu-left p {
      font-size: 1.2rem;
      opacity: 0.9;
      line-height: 1.6;
      max-width: 400px;
  }

  /* Right Side - Navigation */
  .menu-right {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      background: #000;
      backdrop-filter: blur(10px);
  }

  .menu-right-inner-div {
      width: 100%;

      padding: 7% 10% 7% 10%;
  }

  .menu-logo {
      margin-bottom: 60px;
  }

  .menu-logo h1 {
      font-size: 2.5rem;
      color: #fff;
      font-weight: bold;
      letter-spacing: 3px;
  }

  .menu-logo .custom-logo {
      max-width: 100%;
      width: 250px;
      height: 113px;
      object-fit: contain;
  }

  /* Navigation Links */
  .nav-menu {
      list-style: none;
      text-align: left;
      margin-bottom: 40px;
      padding-left: 0;
  }

  .nav-menu li {
      margin: 20px 0;
      transform: translateY(30px);
      opacity: 0;
      transition: all 0.6s ease;
  }

  .overlay-menu.active .nav-menu li {
      transform: translateY(0);
      opacity: 1;
  }

  .nav-menu li:nth-child(1) {
      transition-delay: 0.1s;
  }

  .nav-menu li:nth-child(2) {
      transition-delay: 0.2s;
  }

  .nav-menu li:nth-child(3) {
      transition-delay: 0.3s;
  }

  .nav-menu li:nth-child(4) {
      transition-delay: 0.4s;
  }

  .nav-menu li:nth-child(5) {
      transition-delay: 0.5s;
  }

  .nav-menu a {
      color: #fff;
      text-decoration: none;
      position: relative;
      transition: all 0.3s ease;
      font-size: 20px;
      font-weight: 500;
      text-transform: uppercase;
      line-height: 34px;
      letter-spacing: 7px;
  }

  .nav-menu a:hover {
      color: #927244;
      transform: translateX(10px);
  }

  .nav-menu a::before {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #927244;
      transition: width 0.3s ease;
  }

  .nav-menu a:hover::before {
      width: 100%;
  }

  /* CTA Button */
  .menu-cta {
      margin-top: 40px;
  }

  .cta-button {
      background: transparent;
      border: 1px solid #666666;
      color: #fff;
      padding: 15px 40px;
      font-size: 1rem;
      letter-spacing: 2px;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
      position: relative;
      overflow: hidden;
  }

  .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: #fff;
      transition: left 0.3s ease;
      z-index: -1;
  }

  .cta-button:hover {
      color: #333;

  }

  .cta-button:hover::before {
      left: 0;
  }

  /* Demo Content */
  .demo-content {
      margin-top: 100px;
      padding: 60px 40px;
      text-align: center;
      background: #f8f9fa;
  }

  .demo-content h1 {
      font-size: 3rem;
      color: #333;
      margin-bottom: 20px;
  }

  .demo-content p {
      font-size: 1.2rem;
      color: #666;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
  }

/******Home page css start********/
.home-contact-form p {
    display: flex;
	gap: 10px;
}
.home-contact-form .wpcf7-form, .contact-home-sec {
    display: flex;
	    gap: 20px;
}
input[type=text]:focus{
	 border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
}
:focus-visible {
  outline: none;
}
.home-contact-form input {
    background: transparent;
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-color: #A0A0A0;
    font-family: "Nunito", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.6em;
    word-spacing: 2px;
    border-radius: 0;
	    color: #fff;
    padding: 20px 20px 20px 0px;
}
.home-contact-form .wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: #FFFFFF !important;
    color: #000000;
    font-family: "Nunito", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.6em;
    letter-spacing: 4px;
    border-radius: 0px 0px 0px 0px;
    padding: 0px 30px 0px 30px;
    flex-basis: 100%;
}

/* .home-contact-form .wpcf7-response-output {
    color: #46b450;
    border: 0 !important;
} */
.site-anchor-tag a{
    color: #fff !important;
}

.menu-slider-stickey {
  position: sticky;
  top: 0;
  z-index: 999;  
  background: #fff;  
}




  /* Responsive Design */
    @media (max-width: 1024px) {
        .menu-left{
            display: none;
        }
        .menu-left, .menu-right { 
        height: 100vh !important;
    }
    }
  @media (max-width: 768px) {
    .home-contact-form form.wpcf7-form.init, .home-contact-form p,  .contact-home-sec {
        display: block; 
    }
      .site-header {
          padding: 15px 20px;
      }

      .overlay-menu {
          flex-direction: column;
      }

      .menu-left,
      .menu-right {
          flex: none;
          height: 50vh;
      }

      .menu-left h2 {
          font-size: 2rem;
      }

      .menu-left p {
          font-size: 1rem;
      }

      .menu-logo h1 {
          font-size: 2rem;
      }

      .nav-menu a {
          font-size: 1.5rem;
      }

      .nav-menu li {
          margin: 15px 0;
      }

      .cta-button {
          padding: 12px 30px;
          font-size: 0.9rem;
      }

      .demo-content h1 {
          font-size: 2rem;
      }

      .demo-content {
          padding: 40px 20px;
      }
  }

  @media (max-width: 480px) {
      .menu-left h2 {
          font-size: 1.5rem;
      }

      .menu-logo h1 {
          font-size: 1.5rem;
          margin-bottom: 30px;
      }

      .nav-menu a {
          font-size: 1.2rem;
      }

      .menu-left,
      .menu-right {
          padding: 20px;
      }
  }