:root{
background-image: url('assets/images/back.jpg');
    --bg:#0f0f12;
    --card:#0b0b0d;
    --accent:#d4af37;
    --muted:#bdbdbd;
    --text:#f1f1f1;
    --green:#25D366;
  }
  
  *{box-sizing:border-box}
  body{
    margin:10px;
    font-family:Inter,system-ui,Arial,"Segoe UI",sans-serif;
    background:linear-gradient(180deg,#0b0b0e 0%, #131316 100%);
    color:var(--text);
    min-height:100vh;
    display:flex;
    flex-direction:column;
  }
  
  .site-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    padding:18px 28px;
    background:rgba(0,0,0,0.25);
  
    backdrop-filter: blur(4px);
  }
  
  .brand{
    font-weight:700;
    letter-spacing:2px;
    color:var(--accent);
    font-size:20px;
  }
  
  .site-header nav a{
    color:var(--muted);
    margin-left:14px;
    text-decoration:none;
    font-weight:600;
    font-size:14px;
  }
  
  .site-header nav a.active,
  .site-header nav a:hover{
    color:var(--text);
}

.center{
  margin:60px auto;
  text-align:center;
  max-width:760px;
  padding:40px;
  background:rgba(39, 98, 133, 0.02);
  border-radius:14px;
  box-shadow:0 8px 30px rgba(94, 83, 83, 0.6);
}

.lead{
  color:var(--muted);
  margin-top:0;
}

.btn{
  display:inline-block;
  margin-top:18px;
  background:var(--green);
  color:#fff;
  padding:12px 22px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 6px 18px rgba(37,211,102,0.12);
}

.container{
  max-width:980px;
  margin:36px auto;
  padding:26px;
  background:rgba(255,255,255,0.02);
  border-radius:12px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
  margin-top:18px;
}

.gallery-grid figure{
  margin:0;
  background:var(--card);
  padding:10px;
  border-radius:10px;
  text-align:center;
}

.gallery-grid img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius:8px;
  display:block;
}

.muted{color:var(--muted);font-size:13px}

.site-footer{
  margin-top:auto;
  padding:18px 28px;
  text-align:center;
  color:var(--muted);
  font-size:13px;
  background:linear-gradient(180deg,transparent, rgba(0,0,0,0.1));

}



.back-button{
  position: fixed;
  top: 2px;
  left: 20px;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  z-index: 1000;
}


.background-section{

  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0px;
  color: #fff;
}


.link-btn
{
    color:var(--accent);
    text-decoration:none;
    font-weight:700;
  }
  
  .qa h3{margin-bottom:6px;margin-top:12px}
