

/* Basic site styles */
:root{
    --bg: #ffffff;
    --text: #111827;
    --accent: #2563eb;
    --muted: #6b7280;
    --max-width: 1100px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family: Inter, Roboto, "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
    -webkit-font-smoothing:antialiased;
}

.container{
    max-width:var(--max-width);
    margin:0 auto;
    padding:2rem;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
    padding:1rem 0;
}

nav a{
    color:var(--muted);
    text-decoration:none;
    margin-right:1rem;
}
nav a:hover{color:var(--accent)}

h1{font-size:1.75rem;margin:0 0 .5rem 0}
h2{font-size:1.25rem;margin:.5rem 0}

section{padding:3rem 0;border-top:1px solid #f3f4f6}

footer{
    padding:2rem 0;
    text-align:center;
    color:var(--muted);
    font-size:.9rem;
}

/* Language selector */
#language{
    padding:.25rem .5rem;
    border:1px solid #e5e7eb;
    background:#fff;
    border-radius:4px;
}

/* Responsive */
@media (max-width:640px){
    header{flex-direction:column;align-items:flex-start}
    .container{padding:1rem}
}

.lang-switcher {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 5000;
  background: #212b36cc;
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px #212 66;
  padding: 0.6em 1.1em;
  display: flex;
  gap: 1em;
  align-items: center;
  opacity: 0.95;
}

.lang-switcher select {
  background: #fd6c0d;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  padding: 6px 18px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.15s;
}
.lang-switcher select:hover {
  background: #3b0a51;
}





/* From Uiverse.io by vinodjangid07 */ 
.button {
  width: 110px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  background-color: rgb(105, 112, 207);
  border-radius: 30px;
  color: rgb(226, 226, 226);
  font-weight: 600;
  border: none;
  position: relative;
  cursor: pointer;
  transition-duration: .2s;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.116);
  padding-left: 8px;
  transition-duration: .5s;
}

.svgIcon {
  height: 25px;
  transition-duration: 1.5s;
}

.bell path {
  fill: rgb(19, 19, 19);
}

.button:hover {
  background-color: rgb(80, 71, 206);
  transition-duration: .5s;
}

.button:active {
  transform: scale(0.97);
  transition-duration: .2s;
}

.button:hover .svgIcon {
  transform: rotate(250deg);
  transition-duration: 1.5s;
}

