      /* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header Styling */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #000;
  color: white;
  position: relative;
}
.side-menu{
display:none;
}
/* Hamburger Menu */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: white;
}

/* Logo Styling */
.logo img {
  height: 40px;
  margin: 0 auto;
  display: block;
}

/* Navigation (Desktop) */
.nav {
  display: flex;
  gap: 20px;
}

.nav ul {
  display: flex;
  list-style-type: none;
}

.nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  padding: 10px;
  transition: background-color 0.3s;
}

.nav ul li a:hover {
  background-color: #444;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav {
    display: none; /* Hide the navigation menu on mobile */
  }
.hamburger{
    width: 10%;
}
.logo{
    width:80%;
}
  /* Side Menu Styles (Hidden by default) */
  .side-menu {
    position: fixed;
    left: -250px;
    top: 0;
    height: 100%;
    width: 250px;
     background: linear-gradient(to bottom, #2c2f37, #161a22);
    transition: left 0.3s ease;
    padding-top: 20px;
    z-index: 999;
    overflow: hidden;
  }

  .side-menu ul {
    list-style-type: none;
    padding: 0;
  }

  .side-menu ul li {
    text-align: center;
    margin: 20px 0;
  }

  .side-menu ul li a {
    color: white;
    font-size: 18px;
    text-decoration: none;
    display: block;
    padding: 15px;
  }

  .side-menu ul li a:hover {
    background-color: #444;
  }

  /* Close Button Styles */
  .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
  }
}

/* When Hamburger Menu is Active */
.side-menu.active {
  left: 0;
}

.nav.active {
  display: flex;
}

/* Hamburger Animation */
#hamburger.active .bar:nth-child(1) {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}

#hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

#hamburger.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}