* {
  box-sizing: border-box;
}
.lang-btn{
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 9999;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.lang-btn:hover{
  border-color: rgba(0,194,168,0.9);
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f1115;
  color: #e9e9e9;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px;
}

.hero {
  background: #151a22;
  border: 1px solid #222a36;
  padding: 28px;
  border-radius: 14px;
  margin-bottom: 18px;
}

h1 {
  margin: 0 0 8px 0;
  font-size: 42px;
}

.subtitle {
  margin: 0 0 16px 0;
  color: #b8c0cc;
  font-size: 18px;
}

section {
  background: #151a22;
  border: 1px solid #222a36;
  padding: 22px;
  border-radius: 14px;
  margin: 14px 0;
}

h2 {
  margin-top: 0;
  font-size: 22px;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin: 8px 0;
  color: #d7dbe2;
}

.btn {
  display: inline-block;
  background: #2d6cdf;
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  opacity: 0.9;
}

.btn.secondary {
  background: #2a2f3a;
  border: 1px solid #3a4252;
}

.footer {
  text-align: center;
  color: #9aa3b2;
  font-size: 14px;
  padding: 18px 0;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.gallery img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #222a36;
}
.hero {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)),
              url('https://images.unsplash.com/photo-1599351431202-1e0f0137899a') center/cover no-repeat;
}

.hero-content h1 {
  font-size: 60px;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 25px;
}

.btn-primary {
  background: #00c2a8;
  padding: 14px 30px;
  border-radius: 30px;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: #00e0c0;
  transform: translateY(-3px);
}
 .hero-title{
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #7cffea, #00b7ff, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(0,183,255,0.35);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.45));
}

.hero-sub{
  margin-top: 10px;
  font-size: 1.05rem;
  letter-spacing: 2px;
  opacity: 0.92;
  color: rgba(255,255,255,0.9);
}

.hero-buttons{
  margin-top: 18px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-decoration: none;
  color: #071012;
  background: linear-gradient(90deg, #7cffea, #00b7ff);
  box-shadow: 0 12px 26px rgba(0,183,255,0.28), 0 0 0 1px rgba(255,255,255,0.08) inset;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0,183,255,0.36), 0 0 0 1px rgba(255,255,255,0.10) inset;
  filter: saturate(1.1);
}

.btn-primary:active{
  transform: translateY(0px) scale(0.98);
}

.btn-ghost{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-decoration: none;
  color: rgba(255,255,255,0.95);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.btn-ghost:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,0.10);
  border-color: rgba(124,255,234,0.45);
}

.btn-ghost:active{
  transform: translateY(0px) scale(0.98);
}

