/* =========================
   WHITE ESIM GLOBAL.CSS
   FIXED VERSION - Z-index stacking corrected
   ========================= */

:root{
  --bg:#080c14;
  --bg2:#0f1520;
  --text:#eef0f6;
  --muted:#8b95aa;
  --blue:#3b7eff;
  --green:#22c55e;
  --border:rgba(255,255,255,.08);
  --radius:14px;
  --shadow:0 20px 50px rgba(0,0,0,.35);

  --container:1180px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  padding:0;
  background:var(--bg);
  color:var(--text);
  font-family:'Inter',sans-serif;
  line-height:1.6;
  /* FIXED: Removed 'overflow-x: hidden;' because it creates a stacking context
     that prevents dropdowns from appearing above other elements.
     If you need to prevent horizontal scroll on specific sections,
     apply overflow-x: hidden to those sections instead. */
  -webkit-font-smoothing:antialiased;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:100%;
  max-width:var(--container);
  margin:auto;
  padding-left:24px;
  padding-right:24px;
}

.section{
  padding:72px 0;
}

.section-sm{
  padding:42px 0;
}

.section-lg{
  padding:100px 0;
}

.text-center{
  text-align:center;
}

.hidden{
  display:none !important;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border-radius:12px;
  font-weight:700;
  transition:.2s;
  cursor:pointer;
  border:none;
}

.btn-primary{
  background:var(--blue);
  color:#fff;
}

.btn-primary:hover{
  opacity:.9;
}

.btn-outline{
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
}

.card{
  background:var(--bg2);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.grid{
  display:grid;
  gap:24px;
}

.grid-2{
  grid-template-columns:repeat(2,1fr);
}

.grid-3{
  grid-template-columns:repeat(3,1fr);
}

.grid-4{
  grid-template-columns:repeat(4,1fr);
}

@media(max-width:900px){

  .grid-2,
  .grid-3,
  .grid-4{
    grid-template-columns:1fr;
  }

  .section{
    padding:56px 0;
  }

}
