<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Reset and Basic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  /* Top Header */
  .header123_top-header {
    background-color: #1f2937;
    color: #ffffff;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    position: relative;
    z-index: 1002;
  }
  
  .header123_top-header .header123_left {
    font-size: 14px;
  }
  
  .header123_top-header .header123_right {
    position: relative;
  }
  
  .header123_login-register {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 14px;
    cursor: pointer;
  }
  
  .header123_dropdown {
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    min-width: 150px;
    display: none;
    flex-direction: column;
    z-index: 1000;
  }
  
  .header123_dropdown a {
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    display: block;
  }
  
  .header123_dropdown a:hover {
    background-color: #f1f1f1;
  }
  
  .header123_dropdown.show {
    display: flex;
  }
  
  /* Main Header */
/* Main Header */
.header123_main-header {
background-color: #ffffff;
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 40px; /* Adjusted padding to reduce the height */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1001;
}

  
  .header123_logo {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
  }
  
  /* Navigation */
  .header123_nav {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  
  .header123_nav a {
    position: relative;
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
  }
  
  /* Navigation hover underline effect */
  .header123_nav a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #FF5800, #FF5800);
    left: 0;
    bottom: -5px;
    transition: width 0.3s ease;
    border-radius: 5px;
  }
  
  .header123_nav a:hover {
    color: #FF5800; /* Orange main color on hover */
  }
  
  .header123_nav a:hover::after {
    width: 100%;
  }
  
  /* Menu Toggle (Mobile) */
  .header123_menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: #1f2937;
    cursor: pointer;
  }
  
  /* Side Menu for Mobile */
  .header123_side-menu {
position: fixed;
top: 70px;
left: -250px; /* This moves the sidebar off-screen initially from the left */
width: 250px;
height: 100%;
background-color: #1f2937;
padding-top: 0;
transition: left 0.3s ease; /* Adjusting the transition property */
z-index: 500;
}

  
  /* Sidebar Links ko niche shift karne ke liye */
  .header123_side-menu ul {
    list-style: none;
    text-align: center;
    padding-top: 70px;
  }

  .header123_side-menu ul li {
    margin: 30px 0;
  }
  
  .header123_side-menu ul li a {
    color: #ffffff;
    font-size: 20px;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
  }
  
  .header123_side-menu ul li a:hover {
    color: #00d1b2;
  }
  
  /* Side Menu Open */
  .header123_side-menu.open {
left: 0; /* Sidebar will slide from the left */
}
  
  /* Responsive */
  @media (max-width: 768px) {
    .header123_nav {
      display: none;
    }
    .header123_menu-toggle {
      display: block;
    }
  }</pre></body></html>