*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Cairo,sans-serif;
}

body{

background:#0d131c;
color:#fff;

}

.header{

padding:25px 10%;

display:flex;

justify-content:flex-start;

}

.back-btn{

padding:12px 28px;

background:#00ff99;

color:#000;

font-weight:bold;

border-radius:40px;

text-decoration:none;

transition:.3s;

}

.back-btn:hover{

transform:translateY(-3px);

}

.gallery-page{

width:90%;

max-width:1500px;

margin:auto;

padding:80px 0;

text-align:center;

}

.badge{

display:inline-block;

padding:10px 22px;

background:#00ff9920;

color:#00ff99;

border-radius:40px;

font-weight:700;

margin-bottom:25px;

}

.gallery-page h1{

font-size:55px;

margin-bottom:20px;

color:#9fffd8;

}

.gallery-page p{

color:#bbb;

margin-bottom:60px;

font-size:20px;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:25px;

}

.gallery-grid img{

width:100%;

height:280px;

object-fit:cover;

border-radius:20px;

cursor:pointer;

transition:.4s;

}

.gallery-grid img:hover{

transform:scale(1.04);

box-shadow:0 0 35px #00ff9955;

}

#lightbox{

display:none;

position:fixed;

left:0;

top:0;

width:100%;

height:100%;

background:rgba(0,0,0,.95);

justify-content:center;

align-items:center;

z-index:9999;

}

#lightbox img{

max-width:90%;

max-height:90%;

border-radius:15px;

}

#close{

position:absolute;

top:30px;

right:40px;

font-size:50px;

color:#fff;

cursor:pointer;

}
/* ===========================
   Language Switcher
=========================== */

.lang-switcher{
    display:flex;
    align-items:center;
    gap:10px;
    margin-left:20px;
}

.lang-btn{

    width:46px;
    height:46px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#18222f;

    border:2px solid rgba(65,214,124,.25);

    color:#fff;
    font-size:15px;
    font-weight:800;

    transition:.35s;

    box-shadow:0 0 15px rgba(65,214,124,.12);

}

.lang-btn:hover{

    background:#19e66a;
    color:#000;

    transform:translateY(-4px);

    box-shadow:0 0 25px rgba(25,230,106,.45);

}

.lang-btn.active{

    background:#19e66a;
    color:#000;

    box-shadow:0 0 30px rgba(25,230,106,.45);

}

/* ===========================
      Mobile
=========================== */

@media(max-width:768px){

.navbar .container{

    display:flex !important;
    flex-direction:column !important;

}

.lang-switcher{

    order:-1;

    margin:8px 0 12px;

    justify-content:center;

}

.lang-btn{

    width:42px;
    height:42px;
    font-size:14px;

}

}
