*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body{
  min-height: 100vh;
  background: linear-gradient(to bottom, #0f2027, #203a43, #2c5364);
  color: #ffffff;
}

.lang-switch{
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 1000;
}

.lang-switch button{
  background: #ffd369;
  border: none;
  padding: 6px 12px;
  margin-left: 6px;
  cursor: pointer;
  border-radius: 5px;
  font-weight: 600;
}

.about-container{
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  line-height: 1.8;
}

.about-container h1{
  text-align: center;
  margin-bottom: 25px;
  color: #ffd369;
}

.about-container h2{
  margin-top: 30px;
  margin-bottom: 10px;
  color: #ffcc70;
}

.about-container p{
  margin-bottom: 15px;
  font-size: 16px;
}

.about-container ul{
  margin-left: 20px;
}

.about-container ul li{
  margin-bottom: 8px;
}

.footer-text{
  text-align: center;
  margin-top: 35px;
  font-style: italic;
  opacity: 0.9;
}



.lang-switch{
  position: fixed !important;
  top: 15px;
  right: 15px;
  z-index: 99999 !important;
}

body{
  overflow-x: visible !important;
}




/* Hamburger Icon */
.hamburger{
  position: fixed;
  top: 15px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10001;
  color: #ffd369;
}

/* Sidebar Menu */
.side-menu{
  position: fixed;
  top: 0;
  right: -260px;
  width: 260px;
  height: 100%;
  background: #0f2027;
  padding-top: 60px;
  transition: right 0.3s ease;
  z-index: 10000;
}

.side-menu a{
  display: block;
  padding: 15px 20px;
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.side-menu a:hover{
  background: #203a43;
  color: #ffd369;
}

/* Overlay */
#overlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 9999;
}



/* Hamburger Icon */
.hamburger{
  position: fixed;
  top: 70px;          /* 👈 thoda niche */
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 10001;
}

.hamburger span{
  display: block;
  height: 3px;
  width: 100%;
  background: #ffd369;
  margin: 6px 0;      /* 👈 3 clear lines */
  border-radius: 2px;
}
