@font-face {
  font-family: 'SolaimanLipi';
  font-display: swap;
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/solaimanlipi-bold-v1.0.woff2') format('woff2'),
    url('../fonts/solaimanlipi-bold-v1.0.ttf') format('truetype');
}

@font-face {
  font-family: 'SolaimanLipi';
  font-display: swap;
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/solaimanlipi-normal-v1.0.woff2') format('woff2'),
    url('../fonts/solaimanlipi-normal-v1.0.ttf') format('truetype');
}

@font-face {
  font-family: 'SolaimanLipi';
  font-display: swap;
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/solaimanlipi-thin-v1.0.woff2') format('woff2'),
    url('../fonts/solaimanlipi-thin-v1.0.ttf') format('truetype');
}

@font-face {
  font-family: 'OpenSans-Regular';
  font-display: swap;
  src: url('../fonts/Exo2-Regular.ttf') format('truetype');
}

@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald.ttf') format('truetype');
}

:root {
    --hello-primary: #03346e;
    --hello-primary-dark: #021526;
    --hello-primary-light: #6EACDA;
    --hello-secondary: #E2E2B6;
    --hello-accent: #f4a261;
    --hello-success: #2d6a4f;
    --hello-danger: #e63946;
    --hello-warning: #f4a261;
    --hello-info: #1e6091;
    --hello-text: #1a1a2e;
    --hello-text-light: #6c757d;
    --hello-bg: #f8f9fa;
    --hello-white: #ffffff;
    --hello-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --hello-shadow-hover: 0 15px 60px rgba(0, 0, 0, 0.12);
    --hello-border: #e9ecef;
    --hello-radius: 10px;
    --hello-radius-sm: 5px;
    --hello-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --app-primary: #198754;
    --app-primary-dark: #146c43;
    --app-bg: #f8f9fa;
    --bottom-nav-height: 60px;
    --top-nav-height: 56px;
}

h1,h2,h3,h4,h5,h6{
  font-family: Oswald,SolaimanLipi;
}
a{
    text-decoration: none;
}
body {
    background-color: var(--app-bg);
    padding-bottom: calc(var(--bottom-nav-height) + 24px);
    -webkit-tap-highlight-color: transparent; 
    color: #191c1e;
    min-height: 100vh;
    font-family: OpenSans-Regular, SolaimanLipi;
}


/* Top Fixed App Bar */
.app-top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--top-nav-height);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border-bottom: 1px solid #eef0f3;
    z-index: 1040;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.app-action-btn {
    background: #f1f3f5;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}
.app-action-btn:active {
    background: #e9ecef;
    transform: scale(0.92);
}

/* language Switcher */
.lang-segmented-switch {
    display: inline-flex;
    align-items: center;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2px;
    gap: 2px;
}

.lang-pill-item {
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    border-radius: 16px;
    text-decoration: none;
    line-height: 1.2;
    transition: all 0.15s ease;
}

.lang-pill-item:hover {
    color: #198754;
}

.lang-pill-item.active {
    background: #198754;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(25, 135, 84, 0.25);
}

/* Bottom Tab Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--bottom-nav-height);
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #dee2e6;
    z-index: 1030;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.03);
    padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: #6c757d;
    text-decoration: none;
    width: 20%;
    height: 100%;
}
.bottom-nav-item svg {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
    fill: currentColor;
}
.bottom-nav-item.active {
    color: var(--app-primary);
    font-weight: 600;
}