@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

  :root {
    --navy: #1B2E5E;
    --blue: #3B7DD8;
    --blue-light: #5B9AE8;
    --blue-pale: #EBF2FD;
    --green: #3BAF7C;
    --bg: #F5F7FA;
    --white: #ffffff;
    --text: #1a1a2e;
    --muted: #6B7280;
    --border: #E5E9F2;
  }

  html { scroll-behavior: smooth; }
@font-face {
    font-family: "FiraGO-Regular";
    src: url("../fonts/FiraGO-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FiraGO-Bold";
    src: url("../fonts/FiraGO-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "FiraGO-Medium";
    src: url("../fonts/FiraGO-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
body{
    font-family: "FiraGO-Regular" !important;

    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
  }
.uppercase {
  font-family: "FiraGO-Regular" !important;
    text-transform: uppercase;
    font-feature-settings: "case" 1, "c2sc" 1, "smcp" 1;
    letter-spacing: 0.02em;
}
.strong{
  font-weight: bold !important;
}
.incorrect{
  color:red !important;
  border:1px solid red !important;
}
.video-title{
      background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 60%, #1e3a7a 100%);

    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    padding: 15px;
    color: #fff;
    font-size:14px;
    height:100px;
}
table.table-bordered.table-striped.table-hover {
    border-collapse: collapse;
    width: 100%;
}

table.table-bordered.table-striped.table-hover th,
table.table-bordered.table-striped.table-hover td {
    border: 1px solid var(--border);
    padding: 8px;
}

table.table-bordered.table-striped.table-hover tr:nth-child(even) {
    background-color: var(--blue-pale);
}

  .selected_letter{
    color:#ffb901 !important;
  }
  /* ── HEADER ── */
  header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 8px rgba(27,46,94,0.06);
  }

  .header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
  }

  .logo img {
    max-width: 300px;
    object-fit: contain;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
  }

  .logo-text .main {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
  }

  .logo-text .sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--blue);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  nav {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .nav-item-wrapper {
    position: relative;
    display: flex;
    align-items: center;
  }

  nav > a,
  nav .nav-item {
    text-decoration: none;
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.18s;
  }

  nav > a:hover,
  nav .nav-item:hover,
  .nav-item-wrapper.open .nav-item {
    color: var(--blue);
    background: var(--blue-pale);
  }

  .nav-item--has-children .nav-item {
    padding-right: 28px;
  }

  .submenu-toggle {
    position: absolute;
    right: 8px;
    width: 16px;
    height: 16px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
  }

  .submenu-toggle::before {
    content: "";
    display: block;
    width: 7px;
    height: 7px;
    margin: 0 auto;
    border-right: 2px solid var(--muted);
    border-bottom: 2px solid var(--muted);
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
  }

  .nav-item-wrapper.open .submenu-toggle::before,
  .nav-item-wrapper:hover .submenu-toggle::before {
    transform: rotate(-135deg) translateY(-2px);
    border-color: var(--blue);
  }

  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 14px 24px rgba(27, 46, 94, 0.14);
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 30;
  }
  .hidden_div {
    display: none !important;
  }
  .submenu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
  }

  .nav-item-wrapper:hover .submenu,
  .nav-item-wrapper.open .submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .submenu-link {
    display: block;
    text-decoration: none;
    color: var(--navy);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    padding: 8px 10px;
    transition: background-color 0.18s ease, color 0.18s ease;
  }

  .submenu-link:hover {
    background: var(--blue-pale);
    color: var(--blue);
  }

  .lang-switch {
    display: flex;
    gap: 4px;
    margin-left: 16px;
    padding-left: 16px;
    border-left: 1px solid var(--border);
  }

  .lang-switch a {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    padding: 4px 8px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.18s;
  }

  .lang-switch a.active, .lang-switch a:hover {
    color: var(--navy);
    background: #ffb901;
  }

  .burger {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #ffffff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(6, 18, 46, 0.5);
    display: none;
    align-items: flex-start;
    justify-content: flex-end;
    z-index: 120;
  }

  .mobile-menu-overlay.active {
    display: flex;
  }

  .mobile-menu-panel {
    width: min(70%, 88vw);
    min-height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 28px rgba(27, 46, 94, 0.2);
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
  }

  .mobile-menu-close {
    margin-left: auto;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 8px;
    background: var(--blue-pale);
    color: var(--navy);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mobile-nav-item {
    border-radius: 8px;
    background: #f7faff;
  }

  .mobile-nav-row {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .mobile-menu-link {
    flex: 1;
    display: block;
    text-decoration: none;
   
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    padding: 11px 12px;
    border-radius: 8px;
    background: transparent;
  }

  .mobile-parent-toggle {
    width: 34px;
    height: 34px;
    margin-right: 6px;
    border: 0;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
  }

  .mobile-parent-toggle::before,
  .mobile-parent-toggle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 2px;
    background: var(--navy);
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
  }

  .mobile-parent-toggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }

  .mobile-nav-item.open .mobile-parent-toggle::after {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    padding: 0 10px;
  }

  .mobile-nav-item.open .mobile-submenu {
    max-height: 400px;
    padding-bottom: 10px;
  }

  .mobile-submenu-link {
    display: block;
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 8px;
  }

  .mobile-submenu-link:hover {
    color: var(--blue);
    background: var(--blue-pale);
  }

  .mobile-menu-lang {
    border-top: 1px solid var(--border);
    padding-top: 16px;
  }
  /* ── HERO ── */
  .hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 60%, #1e3a7a 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 24px 90px;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,125,216,0.25) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,175,124,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  .hero-inner p {
    color:#fff;
    font-size: 14px;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
    font-weight: 500;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
  }

  .hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
  }

  .hero h1 span {
    color: var(--blue-light);
  }

  .hero-sub {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 14px;
    font-weight: 400;
    line-height: 1.6;
  }

  /* Search bar */
  .search-wrap {
    background: var(--white);
    border-radius: 16px;
    padding: 8px 8px 8px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    max-width: 620px;
    margin: 0 auto 28px;
    position: relative;
    z-index: 20;
    transition: box-shadow 0.2s;
  }

  .search-wrap:focus-within {
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 3px rgba(59,125,216,0.3);
  }

  .search-icon {
    color: var(--blue);
    flex-shrink: 0;
    font-size: 18px;
  }

  .search-wrap input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    color: var(--text);
    font-family: inherit;
    background: transparent;
  }

  .search-wrap input::placeholder { color: #9CA3AF; }

  .search-btn {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.18s;
    white-space: nowrap;
  }

  .search-btn:hover { opacity: 0.9; transform: translateY(-1px); }

  .search-results {
    position: fixed;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    border: 1px solid rgba(34, 69, 150, 0.08);
    overflow: hidden;
    z-index: 200;
    max-width: calc(100vw - 24px);
  }

  .search-result-item {
    display: block;
    width: 100%;
    padding: 14px 20px;
    border: 0;
    background: transparent;
    color: var(--text);
    text-align: left;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease;
  }

  .search-result-item + .search-result-item {
    border-top: 1px solid rgba(34, 69, 150, 0.08);
  }

  .search-result-item:hover,
  .search-result-item:focus {
    background: rgba(34, 69, 150, 0.06);
    color: var(--blue);
    outline: none;
  }

  .search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  .search-chips span {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    margin-right: 4px;
  }

  .chip {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    border-radius: 100px;
    padding: 5px 14px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.18s;
    font-family: inherit;
  }

  .chip:hover {
    background: rgba(255,255,255,0.22);
    color: white;
    transform: translateY(-1px);
  }

  /* ── ALPHABET ── */
  .alphabet-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
  }

  .alphabet-inner {
    max-width: 1200px;
    margin: 50px auto;
  }

  .alphabet-label {
    font-size: 24px;
    font-weight: normal;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: right;
        
  }
  .alphabet-label a{
    text-decoration: none;
    color:#1B2E5E;
  }
  .alphabet-label a:nth(2){
    font-size:15px;
  }
  .alphabet {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
  }

  .alphabet a {
    text-decoration: none;
    font-size: 30px;
    font-weight: bold;
    color: var(--navy);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.15s;
    border: 1px solid transparent;
  }

  .alphabet a:hover {
    background: var(--blue-pale);
    color: var(--blue);
    border-color: rgba(59,125,216,0.2);
  }

  .alphabet-all {
    font-size: 20px !important;
    font-weight: 600;
    color: var(--blue);
    padding: 6px 14px !important;
    width: auto !important;
    background: var(--blue-pale) !important;
    border-color: rgba(59,125,216,0.2) !important;
  }

  /* ── MAIN CONTENT ── */
  .main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
  }

  /* ── WORD OF THE DAY ── */
  .wotd-card {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 100%);
    border-radius: 20px;
    padding: 32px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
  }

  .wotd-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
  }

  .wotd-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 16px;
  }

  .wotd-label::before {
    content: '💬';
    font-size: 14px;
  }

  .wotd-word {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
  }

  .wotd-def {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 24px;
    text-align: justify;
  }

  .wotd-actions {
    display: flex;
    gap: 10px;
  }

  .wotd-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    border-radius: 10px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.18s;
  }

  .wotd-btn:hover { background: rgba(255,255,255,0.22); }

  .wotd-btn.primary {
    background: var(--blue);
    border-color: var(--blue);
  }

  .wotd-btn.primary:hover { background: var(--blue-light); }

  /* ── PORTAL CARDS ── */
  .portal-section { margin-bottom: 32px; }

  .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue);
  }

  .section-main-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-top: 4px;
  }

  .see-all {
    color: var(--blue);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.15s;
  }

  .see-all:hover { gap: 8px; }

  .portal-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
  }

  .portal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
  }

  .portal-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--green));
    transform: scaleX(0);
    transition: transform 0.2s;
    transform-origin: left;
  }

  .portal-card:hover {
    border-color: rgba(59,125,216,0.3);
    box-shadow: 0 8px 24px rgba(27,46,94,0.1);
    transform: translateY(-2px);
  }

  .portal-card:hover::before { transform: scaleX(1); }

  .portal-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
  }

  .portal-icon.user { background: #EBF5FF; }
  .portal-icon.biz { background: #EDF9F0; }
  .portal-icon.res { background: #FFF4EB; }

  .portal-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .portal-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
  }

  /* ── NEWS ── */
  .news-list {  flex-direction: column; gap: 12px; }

  .news-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    text-decoration: none;
    transition: all 0.18s;
    margin-top:15px;
  }

  .news-item:hover {
    border-color: rgba(59,125,216,0.3);
    box-shadow: 0 4px 16px rgba(27,46,94,0.08);
    transform: translateX(4px);
  }

  .news-date {
    font-size: 11px;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-pale);
    border-radius: 8px;
    padding: 4px 10px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .news-text {
    font-size: 14px;
    color: var(--text);
    line-height: 1.55;
    font-weight: 500;
  }

  .news-text .arrow {
    display: inline-block;
    margin-left: 6px;
    color: var(--blue);
    font-size: 12px;
  }

  /* ── SIDEBAR ── */
  .sidebar { display: flex; flex-direction: column; gap: 20px; }

  .sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
  }

  .sidebar-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
  }

  /* Quiz */
  .quiz-q {
    font-size: 14px;
    color: var(--text);
    line-height: 1.5;
    margin-bottom: 16px;
    font-weight: 500;
  }

  .quiz-opts { display: flex; flex-direction: column; gap: 8px; }

  .quiz-opt {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.18s;
    text-align: left;
    font-family: inherit;
    font-weight: 500;
  }

  .quiz-opt:hover { background: var(--blue-pale); border-color: var(--blue); color: var(--blue); }
  .quiz-opt.correct { background: #EDF9F0; border-color: var(--green); color: var(--green); }
  .quiz-opt.wrong { background: #FEF2F2; border-color: #EF4444; color: #EF4444; }

  /* Events */
  .event-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
  }

  .event-item:last-child { border-bottom: none; padding-bottom: 0; }

  .event-date-box {
    background: var(--blue-pale);
    border-radius: 10px;
    padding: 8px 10px;
    text-align: center;
    flex-shrink: 0;
    min-width: 44px;
    height:52px;
  }

  .event-day {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
  }

  .event-month {
    display: block;
    font-size: 10px;
    font-weight: 600;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 2px;
  }

  .event-info { flex: 1; }

  .event-tag {
    font-size: 10px;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
  }

  .event-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.4;
  }

  /* Subscribe */
  .subscribe-card {
    background: linear-gradient(135deg, #EBF2FD, #E8F5EE);
    border: 1px solid rgba(59,125,216,0.15);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
  }

  .subscribe-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
  }

  .subscribe-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
    line-height: 1.5;
  }

  .subscribe-input-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .subscribe-input-wrap input {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    background: white;
    color: var(--text);
    transition: border-color 0.18s;
  }

  .subscribe-input-wrap input:focus { border-color: var(--blue); }

  .subscribe-btn {
    background: linear-gradient(135deg, var(--blue), var(--navy));
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.18s;
  }

  .subscribe-btn:hover { opacity: 0.9; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 48px 24px 28px;
    margin-top: 32px;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .footer-brand .logo-text .main { color: white; }
  .footer-brand .logo-text .sub { color: var(--blue-light); }

  .footer-brand p {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-top: 12px;
    line-height: 1.65;
  }

  .footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue-light);
    margin-bottom: 16px;
    border-bottom: 2px solid #ffb901;
  }

  .footer-col a {
    display: block;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.15s;
  }

  .footer-col a:hover { color: white; }

  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 10px;
  }

  .footer-contact-item a { color: rgba(255,255,255,0.65); text-decoration: none; }
  .footer-contact-item a:hover { color: white; }

  .footer-bottom {
    max-width: 1200px;
    margin: 24px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

  .social-links { display: flex; gap: 10px; }

  .social-links a {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.18s;
  }

  .social-links a:hover { background: var(--blue); color: white; }

  @media (max-width: 900px) {
    .main-content { grid-template-columns: 1fr; }
    .portal-cards { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    nav { display: none; }
    .burger { display: inline-flex; }
    .header-inner { height: 64px; }
	.hero h1{
		font-size:26px;
	}
  }

  /* =========================
     ABOUT PAGE
  ========================= */

  .about-section {
    padding: 32px 0 69px;
  }

  .about-container {
    width: min(1098px, calc(100% - 32px));
    margin: 0 auto;
  }

  .about-title {
    margin-bottom: 40px;
   
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
    color: #1B2E5E;
  }

  .about-card {
    width: 100%;
    padding: 35px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 3px solid var(--navy);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
      0 4px 14px rgba(34, 69, 150, 0.1),
      0 0 10px rgba(48, 203, 255, 0.12);
    margin-bottom: 40px;
    transition:
      transform 0.28s ease,
      box-shadow 0.28s ease,
      border-color 0.28s ease,
      background-color 0.28s ease;
  }

  .about-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 125, 216, 0.08), rgba(48, 203, 255, 0.04));
    opacity: 0;
    transition: opacity 0.28s ease;
    pointer-events: none;
  }

  .about-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--blue);
    box-shadow:
      0 14px 28px rgba(34, 69, 150, 0.16),
      0 0 18px rgba(48, 203, 255, 0.2);
  }

  .about-card:hover::before {
    opacity: 1;
  }

  .about-card-small {
    min-height: 166px;
  }

  .about-card-big {
    min-height: 335px;
  }

  .about-card-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
  }

  .about-card-top-right {
    justify-content: flex-end;
  }

  .about-card-line {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .about-card-line::before,
  .about-card-line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 8px;
    height: 31px;
    background: #ffb901;
    transition: transform 0.28s ease, background-color 0.28s ease;
  }

  .about-card-line::before {
    left: 2px;
    transform: rotate(18deg);
  }

  .about-card-line::after {
    left: 15px;
    transform: rotate(18deg);
  }

  .about-card-title {
   
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #223c6e;
    white-space: nowrap;
    transition: color 0.28s ease;
  }

  .about-card-top::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e3ebf5;
    transition: background-color 0.28s ease;
  }

  .about-card:hover .about-card-title {
    color: var(--blue);
  }

  .about-card:hover .about-card-top::after {
    background: rgba(59, 125, 216, 0.45);
  }

  .about-card:hover .about-card-line::before {
    transform: rotate(18deg) translateY(-2px);
    background: #ffc232;
  }

  .about-card:hover .about-card-line::after {
    transform: rotate(18deg) translateY(2px);
    background: #ffc232;
  }

  .about-card-text,
  .about-card p,
  .about-card li {
   
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    color: #02103a;
    text-align: justify;
  }

  .about-card ul {
    margin-left:15px;
  }

  .about-card-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .about-list {
    padding-left: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .about-list li {
   
    font-size: 16px;
    font-weight: 400;
    line-height: 170%;
    color: #02103a;
  }

  .about-card-top-right::after {
    order: -1;
  }

  @media (max-width: 1200px) {
    .about-card:nth-child(3) {
      margin-left: 0;
    }
  }

  @media (max-width: 768px) {
    .about-section {
      padding: 24px 0 44px;
    }

    .about-title {
      margin-bottom: 24px;
      font-size: 18px;
    }

    .about-card {
      padding: 18px;
      margin-bottom: 20px;
      border-width: 5px;
    }

    .about-card-title {
      font-size: 16px;
      white-space: normal;
    }

    .about-card-top {
      gap: 12px;
      align-items: flex-start;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .about-card,
    .about-card::before,
    .about-card-title,
    .about-card-top::after,
    .about-card-line::before,
    .about-card-line::after {
      transition: none;
    }

    .about-card:hover {
      transform: none;
    }
  }

  /* =========================
     CONTACT PAGE
  ========================= */

  .contact-section {
    padding: 32px 0 126px;
  }

  .contact-container {
    width: min(1098px, calc(100% - 32px));
    margin: 0 auto;
  }

  .contact-title {
    margin-bottom: 43px;
   
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: var(--navy);
  }

  .contact-content {
    display: flex;
    align-items: stretch;
    gap: 130px;
  }

  .contact-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 488px;
  }

  .contact-left,
  .contact-form-card {
    min-height: 520px;
  }

  .contact-info-card {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    border-radius: 14px;
    border: 1px solid #ffffff;
    background: #ffffff;
    padding: 15px;
    margin-bottom: 15px;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 14px rgba(34, 69, 150, 0.1), 0 0 10px rgba(48, 203, 255, 0.12);
  }

  .contact-info-card-small {
    height: 64px;
  }

  .contact-info-card-big {
    margin-bottom: 17px;
    border-radius: 14px;
  }

  .contact-info-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .contact-info-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
  }

  .contact-hotline-number {
    width: 142px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background-image: url("../images/contact-1520.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: "DM Giorgi", sans-serif;
    font-size: 26px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 2px;
    color: #173b67;
    text-decoration: none;
  }

  .contact-info-label {
   
    font-size: 16px;
    font-weight: 500;
    color: #1f2a37;
  }

  .contact-info-link,
  .contact-info-text {
   
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #1f2a37;
    text-decoration: none;
  }

  .contact-location-wrapper {
    width: 488px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    overflow: hidden;
  }

  .contact-map-card {
    width: 428px;
    height: 184px;
    margin: 17px auto 25px;
    overflow: hidden;
    border-radius: 14px;
  }

  .contact-map-card iframe,
  .contact-map-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border: 0;
  }

  .contact-socials {
    width: 485px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 21px;
    margin-top: 22px;
    border-radius: 16px;
    border-bottom: 1px solid #ffffff;
  }

  .contact-socials-title {
   
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
  }

  .contact-social-icons {
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .contact-form-card {
    position: relative;
    width: 582px;
    min-height: 520px;
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    background: #ffffff;
    border-bottom:3px solid var(--navy);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow: 0 4px 14px rgba(34, 69, 150, 0.1), 0 0 10px rgba(48, 203, 255, 0.12);
  }



  .contact-form-card .contact-form-title {
    color: #224596;
  }

  .contact-form-card input, .contact-form-card textarea {
    border: 1px solid #cbd2e2 !important;
  }
  .contact-form-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 21px;
  }

  .contact-form-line {
    position: relative;
    width: 32px;
    height: 32px;
    flex-shrink: 0;
  }

  .contact-form-line::before,
  .contact-form-line::after {
    content: "";
    position: absolute;
    top: 0;
    width: 8px;
    height: 31px;
    background: #ffb901;
    transform: rotate(18deg);
  }

  .contact-form-line::before {
    left: 2px;
  }

  .contact-form-line::after {
    left: 12px;
  }

  .contact-form-title {
   
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
  }

  .contact-form-divider {
    flex: 1;
    height: 1px;
    background: #e3ebf5;
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 21px;
  }

  .contact-form input,
  .contact-form textarea {
    width: 100%;
    border: none;
    outline: none;
    border-radius: 7px;
    background: #ffffff;
    padding: 20px 11px;
   
    font-size: 16px;
    font-weight: 400;
    color: #454545;
  }

  .contact-form input {
    height: 48px;
  }

  .contact-form textarea {
    height: 250px;
    resize: none;
    padding-top: 11px;
  }

  .contact-form button {
    width: 382px;
    height: 40px;
    margin: 0 auto;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
   
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .contact-form button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
  }

  @media (max-width: 576px) {
    .contact-section {
      padding: 24px 0 80px;
    }

    .contact-container {
      width: 100%;
      padding: 0 19px;
    }

    .contact-title {
      color: var(--navy);
      margin-bottom: 24px;
      font-size: 20px;
    }

    .contact-content {
      flex-direction: column;
      gap: 24px;
    }

    .contact-left,
    .contact-form-card {
      width: 100%;
      min-height: auto;
    }

    .contact-info-card {
      width: 100%;
    }

    .contact-info-card-small {
      height: 48px;
      padding: 6px 12px;
    }

    .contact-info-label {
      font-size: 12px;
    }

    .contact-info-link {
      font-size: 12px;
    }

    .contact-hotline-number {
      width: 84px;
      height: 32px;
      margin-left: auto;
      font-size: 18px;
      letter-spacing: 1px;
    }

    .contact-location-wrapper {
      width: 100%;
    }

    .contact-info-card-big {
      align-items: flex-start;
      padding: 10px 12px;
      margin-bottom: 12px;
    }

    .contact-info-text {
      font-size: 12px;
      line-height: 18px;
    }

    .contact-map-card {
      width: calc(100% - 20px);
      height: 140px;
      margin: 12px auto;
    }

    .contact-socials {
      width: 100%;
      height: auto;
      flex-direction: column;
      justify-content: center;
      gap: 14px;
      padding: 12px 0;
      margin-top: 10px;
    }

    .contact-socials-title {
      font-size: 12px;
    }

    .contact-social-icons {
      gap: 24px;
    }

    .contact-social-icons img {
      width: 18px;
      height: 18px;
    }

    .contact-form-card {
      width: 100%;
      padding: 18px;
      min-height: 520px;
    }

    .contact-form-top {
      gap: 12px;
      margin-bottom: 20px;
    }

    .contact-form-title {
      font-size: 16px;
    }

    .contact-form {
      gap: 10px;
    }

    .contact-form input {
      height: 38px;
      padding: 0 12px;
      font-size: 12px;
    }

    .contact-form textarea {
      height: 92px;
      padding: 12px;
      font-size: 12px;
    }

    .contact-form button {
      width: 126px;
      height: 24px;
      font-size: 10px;
      border-radius: 6px;
    }
  }

  /* =========================
     EVENTS + NEWS PAGES
  ========================= */

  /* EVENT DETAIL PAGE */
  .event-inner-blue-section {
    padding: 40px 0 100px;
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 60%, #1e3a7a 100%);
  }

  .event-inner-page-title {
    margin-bottom: 27px;
    margin-top: 25px;
    text-align: center;
   
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 100%;
    color: #fff;
  }

  .event-inner-title {
    width: 930px;
    margin: 0 auto 29px;
    text-align: center;
   
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    color: #ffffff;
    word-break: break-word;
  }

  .event-inner-line {
    width: 411px;
    height: 1px;
    margin: 0 auto 32px;
    background: #cce9f9;
  }

  .event-inner-meta {
    width: 1200px;
    margin: 0 auto 53px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .event-inner-location,
  .event-inner-date {
    display: flex;
    align-items: center;
    gap: 10px;
   
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
  }

  .event-inner-location img,
  .event-inner-date img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .event-inner-badge {
    position: relative;
    height: 28px;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1px solid #ffb901;
   
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
  }
  .event-inner-badge .event-tag{
    margin-bottom:0px;
  }

  .event-inner-white-section {
    background: #ffffff;
    padding: 0 0 80px;
    position: relative;
  }

  .event-inner-card {
    width: 1200px;
    top: -80px;
    padding: 23px 28px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 27px rgba(202, 221, 240, 0.3);
    position: relative;
    z-index: 2;
    text-align: justify;
    margin: 0 auto;
  }

  .event-inner-card p {
   
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #000000;
    text-align: justify;
  }

  .event-inner-divider {
    width: 1200px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 37px;
  }

  .event-inner-divider-line {
    width: 100%;
    height: 1px;
    background: #cce9f9;
  }

  .event-inner-btn {
    width: 303px;
    height: 48px;
    border: 1px solid rgba(79, 151, 255, 0.6);
    border-radius: 16px;
    background: #143496;
    box-shadow: 0 2px 9px rgba(34, 60, 110, 0.1);
   
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: 0.25s ease;
  }

  .event-inner-btn:hover {
    background: #0d2d83;
    border-color: #4f97ff;
  }

  @media (max-width: 576px) {
    .event-inner-blue-section {
      padding: 24px 0 70px;
    }

    .event-inner-page-title {
      margin: 24px 0 20px;
      font-size: 20px;
      line-height: 100%;
    }

    .event-inner-title {
      width: 100%;
      padding: 0 19px;
      margin: 0 auto 20px;
      font-size: 16px;
      line-height: 150%;
    }

    .event-inner-line {
      width: calc(100% - 38px);
      margin: 0 auto 24px;
    }

    .event-inner-meta {
      width: 100%;
      padding: 0 19px;
      margin: 0 auto 32px;
      flex-direction: column;
      align-items: center;
      gap: 16px;
    }

    .event-inner-location,
    .event-inner-date {
      font-size: 14px;
      text-align: center;
    }

    .event-inner-location img,
    .event-inner-date img {
      width: 16px;
      height: 16px;
    }

    .event-inner-badge {
      height: 32px;
      padding: 0 14px;
      font-size: 13px;
    }

    .event-inner-white-section {
      padding: 0 0 40px;
    }

    .event-inner-card {
      width: calc(100% - 38px);
      top: -50px;
      padding: 20px 16px;
      border-radius: 16px;
    }

    .event-inner-card p {
      font-size: 14px;
      line-height: 160%;
      text-align: left;
    }

    .event-inner-divider {
      width: calc(100% - 38px);
      margin: 32px auto 0;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .event-inner-divider-line {
      width: 100%;
    }

    .event-inner-btn {
      width: 100%;
      height: 44px;
      font-size: 14px;
    }
  }

  .events-page-title {
    margin-bottom: 31px;
    margin-top: 25px;
    text-align: center;
    font-family: "FiraGO-Bold", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    color: var(--navy);
  }

  .events-page-tabs {
    position: relative;
    z-index: 3;
    width: 1201px;
    height: 70px;
    margin: 0 auto -16px;
    display: flex;
    justify-content: center;
    gap: 47px;
  }

  .events-page-tab {
    position: relative;
    top: 10px;
    width: 577px;
    height: 60px;
    border: 1px solid #69aeff;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 60%, #1e3a7a 100%);
    font-family: "FiraGO-Regular";
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    text-transform: uppercase;
  }

  .events-page-tab--active {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 60%, #1e3a7a 100%);
    height: 70px;
    margin: 0 auto -20px;
    margin-top: -10px;
    font-family: "FiraGO-Regular";
  }
  .events-page-content {
    width: 100%;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    padding-top: 14px;
    padding-bottom: 70px;
    margin-top:16px;
  }

  .events-page-filters {
    width: 1201px;
    margin: 0 auto 73px;
    display: flex;
    align-items: center;
    gap: 47px;
  }

  .events-page-field1 {
    position: relative;
    width: 579px;
    height: 42px;
    top: 35px;
  }

  .events-page-select {
    width: 100%;
    height: 100%;
    padding: 0 20px;
    border: 1px solid #cbd2e2;
    border-radius: 8px;
    background: #ffffff;
    appearance: none;
    outline: none;
   
    font-size: 16px;
    font-weight: 500;
    color: #47536e;
    cursor: pointer;
  }

  .events-page-field1::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #1d1d1d;
    border-bottom: 2px solid #1d1d1d;
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
  }

  .events-page-field2 {
    position: relative;
    width: 578px;
    height: 42px;
  }

  .events-page-search-field {
    display: flex;
    align-items: center;
    gap: 23px;
    top: 35px;
  }

  .events-page-search-icon {
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    object-fit: contain;
    z-index: 2;
  }

  .events-page-search-input {
    flex: 1;
    height: 100%;
    padding: 0 20px 0 180px;
    border: 1px solid #cbd2e2;
    border-radius: 8px;
    background: #ffffff;
    outline: none;
   
    font-size: 16px;
    font-weight: 400;
    color: #a1afcf;
  }

  .events-page-search-input::placeholder {
    color: #a1afcf;
  }

  .events-search-btn {
    width: 83px;
    height: 41px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "FiraGO-Regular";
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease,
      box-shadow 0.25s ease;
  }

  .events-search-btn:hover {
    transform: translateY(-2px);
  }

  .events-grid-section {
    padding: 30px 0;
  }

  .events-grid {
    width: 1195px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 17px;
  }

  .events-grid-item {
    position: relative;
  }

  .events-grid-link {
    text-decoration: none;
    display: block;
  }

  .events-grid-card {
    position: relative;
    width: 387px;
    height: 233px;
    overflow: hidden;
    border-radius: 16px;
  }

  .events-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .events-grid-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(31, 42, 55, 0.6) 0%,
      rgba(31, 42, 55, 0.2) 100%
    );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
  }

  .events-grid-badge {
    position: absolute;
    top: -12px;
    z-index: 5;
    width: 77px;
    height: 32px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #ebeef4b2;
   
    font-size: 16px;
    font-weight: 500;
  }

  .events-grid-badge.offline {
    background: #ebeef4b2;
    color: #000000;
  }

  .events-grid-badge.online {
    background: #bbe2f9b2;
    color: #000000;
  }

  .events-grid-date {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
   
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
  }

  .events-grid-title {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 70px;
    z-index: 3;
    text-align: center;
   
    font-size: 16px;
    font-weight: 400;
    line-height: 120%;
    color: #ffffff;
  }

  .events-pagination {
    width: 1200px;
    height: 48px;
    margin: 49px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .events-pagination-line {
    flex: 1;
    width: 411px;
    height: 1px;
    background: #cce9f9;
  }

  .events-pagination-btn {
    width: 303px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: #4078be26;
   
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    transition: 0.25s ease;
  }

  .events-pagination-btn:hover {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  @media (max-width: 576px) {
    .events-grid-section {
      padding: 0;
    }

    .events-grid {
      display: flex;
      gap: 10px;
      width: 100%;
      padding-left: 19px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .events-grid::-webkit-scrollbar {
      display: none;
    }

    .events-grid-item {
      flex: 0 0 334px;
      min-width: 334px;
      scroll-snap-align: start;
    }

    .events-grid-card {
      width: 334px;
      height: 224px;
      border-radius: 16px;
    }

    .events-grid-badge {
      width: auto;
      min-width: 58px;
      height: 22px;
      top: 10px;
      left: 10px;
      padding: 0 8px;
      border-radius: 6px;
      font-size: 11px;
    }

    .events-grid-date {
      top: 12px;
      right: 12px;
      font-size: 14px;
    }

    .events-grid-title {
      left: 20px;
      right: 20px;
      bottom: 42px;
      font-size: 14px;
      line-height: 140%;
    }

    .events-pagination {
      width: 100%;
      margin-top: 24px;
      padding: 0 19px;
      gap: 10px;
    }

    .events-pagination-line {
      display: none;
    }

    .events-pagination-btn {
      width: 100%;
      height: 44px;
      font-size: 14px;
    }
  }

  /* =========================
     RESOURCES PAGE
  ========================= */

  .resources-grid {
    display: grid;
    grid-template-columns: repeat(1, 1152px);
    gap: 34px 48px;
    margin: 0 auto 32px;
    width: 1195px;
  }

  .resources-card {
    min-height: 308px;
    padding: 16px 32px;
    border-radius: 16px;
    background: #e3ebf5;
  }

  .resources-card-title {
    width: 100%;
    margin: 0 auto 22px;
    text-align: center;
   
    font-size: 18px;
    font-weight: 600;
    font-style: uppercase;
    line-height: 1.4;
    color: #224596;
  }

  .resources-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .resources-card-meta img {
    width: 24px;
    height: 24px;
  }

  .resources-card-meta p {
   
    font-size: 16px;
    font-weight: 400;
    color: #1f2a37;
  }

  .resources-card-meta span {
    color: #1f2a37;
   
    font-weight: 500;
    font-size: 16px;
  }

  .resources-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
  }

  .resources-card-source,
  .resources-card-date {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .resources-card-source img {
    width: 28px;
    height: 28px;
  }

  .resources-card-date img {
    width: 24px;
    height: 24px;
  }

  .resources-card-source p,
  .resources-card-date span {
   
    font-size: 16px;
    font-weight: 400;
    color: #1f2a37;
  }

  .resources-card-btn {
    display: block;
    margin: 0 auto 18px;
    width: 137px;
    height: 40px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--blue), var(--navy));
    box-shadow: 0 4px 9px rgba(7, 174, 230, 0.35);
   
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: 0.25s ease;
  }

  .resources-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(7, 174, 230, 0.45);
  }

  .resources-card-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }

  .resources-card-actions button {
    border: none;
    background: transparent;
    cursor: pointer;
    transition: 0.25s ease;
  }

  .resources-card-actions img {
    width: 24px;
    height: 24px;
  }

  .analyze-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 591px);
    justify-content: center;
    gap: 9px 21px;
    margin: 0 auto 40px;
  }

  .analyze-link-card {
    min-height: 80px;
    padding: 14px 20px;
    border-radius: 14px;
    background: #e3ebf5;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
   
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: #224596;
    transition:
      transform 0.25s ease,
      background 0.25s ease,
      color 0.25s ease;
  }

  .analyze-link-card:hover {
    background: #dcecff;
    color: #0c3ba5;
    transform: translateY(-2px);
  }

  .resources-more-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
    margin-bottom: 44px;
  }

  .resources-more-wrap span {
    width: 413px;
    height: 1px;
    background: #cce9f9;
  }

  .resources-more-btn {
    width: 303px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: #4078be26;
   
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    transition: 0.25s ease;
  }

  .resources-more-btn:hover {
    background: #dcecff;
  }

  @media (max-width: 576px) {
    .resources-grid {
      width: 100%;
      grid-template-columns: 1fr;
      gap: 20px;
      padding: 0 19px;
    }

    .resources-card {
      min-height: auto;
      padding: 16px;
    }

    .resources-card-title {
      font-size: 16px;
      margin-bottom: 16px;
    }

    .resources-card-meta {
      margin-bottom: 12px;
      gap: 8px;
    }

    .resources-card-meta img {
      width: 20px;
      height: 20px;
    }

    .resources-card-meta p {
      font-size: 14px;
    }

    .resources-card-bottom {
      flex-direction: column;
      gap: 12px;
      margin-bottom: 16px;
    }

    .resources-card-source,
    .resources-card-date {
      width: 100%;
      justify-content: flex-start;
    }

    .resources-card-btn {
      width: 100%;
      height: 40px;
      margin-bottom: 12px;
      font-size: 14px;
    }

    .resources-card-actions {
      gap: 16px;
    }

    .resources-card-actions img {
      width: 20px;
      height: 20px;
    }

    .analyze-links-grid {
      grid-template-columns: 1fr;
      gap: 12px;
      padding: 0 19px;
    }

    .analyze-link-card {
      min-height: 60px;
      padding: 12px 16px;
      font-size: 14px;
      line-height: 20px;
    }

    .resources-more-wrap {
      gap: 12px;
      flex-direction: column;
      padding: 0 19px;
    }

    .resources-more-wrap span {
      width: 100%;
    }

    .resources-more-btn {
      width: 100%;
      height: 44px;
      font-size: 14px;
    }
  }

  .news-page-section {
    position: relative;
    height: 170px;
  }

  .news-page-wrapper {
    position: absolute;
    top: 93px;
    width: 100%;
  }

  .news-page-grid-section {
    width: 100%;
    padding-top: 70px;
    background: #ffffff;
  }

  .news-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 281px);
    justify-content: center;
    gap: 25px;
    margin-top: 32px;
    margin-bottom: 40px;
  }

  .news-page-grid a {
    text-decoration: none;
    color: inherit;
  }

  .news-page-card {
    display: flex;
    flex-direction: column;
    width: 281px;
    height: 255px;
    background: linear-gradient(
      167.98deg,
      rgba(31, 42, 55, 0.2) 3.73%,
      rgba(31, 42, 55, 0.1) 37.68%,
      rgba(31, 42, 55, 0.02) 91.22%
    );
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(202, 221, 240, 0.35);
    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }

  .news-page-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(202, 221, 240, 0.45);
  }

  .news-page-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 146px;
  }

  .news-page-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .news-page-card-date {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
   
    font-size: 12px;
    font-weight: 500;
    color: #000;
    background:#fff;
    border-radius: 8px;
    padding: 2px 6px;
  }

  .news-page-card-content {
    padding: 14px 14px 18px;
    flex: 1;
  }

  .news-page-card-text {
   
    font-size: 13px;
    line-height: 19px;
    font-weight: 400;
    color: #1f2937;
  }

  .news-page-more-wrapper {
    width: 1200px;
    padding-bottom: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .news-page-more-line {
    flex: 1;
    height: 1px;
    background: #cce9f9;
  }

  .news-page-more-btn {
    width: 303px;
    height: 48px;
    border: none;
    border-radius: 16px;
    background: rgba(64, 120, 190, 0.15);
    box-shadow: 0 2px 9px rgba(34, 60, 110, 0.1);
   
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    cursor: pointer;
    flex-shrink: 0;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .news-page-more-btn:hover {
    transform: translateY(-2px);
  }

  .news-inner-main-title {
    margin-top: 32px;
    margin-bottom: 32px;
    text-align: center;
    font-family: "FiraGO-Bold", sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    color: var(--navy);
  }

  .news-inner-section {
    padding: 34px 0 30px;
    background: #ffffff;
  }

  .news-inner-top {
    width: 1200px;
    margin: 0 auto 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 37px;
  }

  .news-inner-line {
    height: 1px;
    width: 108px;
    background: #cce9f9;
  }

  .news-inner-title {
    max-width: 910px;
    text-align: center;
    font-family: "FiraGO-Medium", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    color: #02103a;
  }

  .news-inner-gallery-wrapper {
    position: relative;
    width: 1304px;
    margin: 0 auto 32px;
    padding: 18px 28px 28px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
  }

  .news-inner-meta {
    position: absolute;
    top: 52px;
    left: 68px;
    right: 68px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .news-inner-date {
    display: flex;
    align-items: center;
    gap: 2px;
   
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #072375;
  }

  .news-inner-date img {
    width: 16px;
    height: 16px;
    object-fit: contain;
  }

  .news-inner-badge {
    height: 32px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffb901;
    border-radius: 8px;
    background: #ffffff;
   
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #072375;
  }

  .news-inner-gallery {
    width: 100%;
    margin-top: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .image-list {
    width: 100%;
    max-width: 1200px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .news_list_image {
    border-radius: 12px;
    overflow: hidden;
  }

  .news_list_image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .news-inner-gallery-grid {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .news-inner-gallery-item img {
    display: block;
    object-fit: cover;
    border-radius: 8px;
    transition:
      width 0.35s ease,
      height 0.35s ease,
      transform 0.35s ease,
      opacity 0.35s ease;
  }

  .news-inner-gallery-item:not(.active) img {
    width: 183px;
    height: 268px;
    opacity: 0.95;
  }

  .news-inner-gallery-item.active img {
    width: 386px;
    height: 430px;
  }

  .news-inner-arrow {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .news-inner-arrow img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
  }

  .left-arrow img {
    transform: rotate(180deg);
  }

  .news-inner-arrow:hover {
    transform: scale(1.08);
    opacity: 0.85;
  }

  .news-inner-content-card {
    width: 1140px;
    margin: 0 auto 48px;
    padding: 22px 18px 26px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    line-height: 26px;
    text-align: justify;
   
    font-size: 16px;
    color: #000000;
    box-shadow: 0 4px 27px rgba(202, 221, 240, 0.3);
  }

  .news-inner-content-card p {
   
    font-size: 16px;
    font-weight: 400;
    line-height: 26px;
    color: #000000;
    text-align: justify;
  }

  .news-inner-content-card p + p {
    margin-top: 18px;
  }

  .news-inner-social-wrapper {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .news-inner-socials {
    display: flex;
    align-items: center;
    gap: 26px;
  }

  .news-inner-socials a img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .copy-feedback {
    position: fixed;
    right: 24px;
    bottom: 34px;
    background: #ffffff;
    color: #1B2E5E;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #1B2E5E;
    opacity: 0;
    transform: translateY(16px) scale(0.96);
    pointer-events: none;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(15, 118, 110, 0.35);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .copy-feedback.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .news-inner-line2 {
    height: 1px;
    width: 518px;
    background: #cce9f9;
  }

  @media (max-width: 576px) {
    .events-page-title {
      margin: 24px 0 20px;
      font-size: 20px;
      line-height: 1;
    }

    .events-page-tabs {
      width: 100%;
      height: auto;
      margin: 0 0 16px;
      padding: 0 19px;
      flex-direction: column;
      gap: 10px;
    }

    .events-page-tab:first-child {
      align-self: flex-start;
    }

    .events-page-tab:last-child {
      align-self: flex-end;
    }

    .events-page-tab {
      width: 364px;
      height: 54px;
      top: 0;
      border-radius: 16px;
      font-size: 14px;
      border: none;
    }

    .events-page-tab--active {
      height: 54px;
      margin: 0;
      background: #deeafa;
      color: #0a4697;
      border: solid 1px #69aeff;
    }

    .events-page-content {
      padding-top: 19px;
      padding-bottom: 40px;
      border-radius: 16px 16px 0 0;
    }

    .events-page-filters {
      width: 100%;
      margin: 0 0 24px;
      padding: 0 19px;
      flex-direction: column;
      gap: 8px;
    }

    .events-page-field1,
    .events-page-field2 {
      width: 100%;
      height: 42px;
      top: 0;
    }

    .events-page-search-field {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .events-page-select {
      font-size: 14px;
    }

    .events-search-btn {
      width: 56px;
      height: 42px;
      flex-shrink: 0;
      border-radius: 8px;
      font-size: 13px;
    }

    .events-page-date-icon,
    .events-page-calendar-icon {
      display: none;
    }

    .news-page-section {
      height: auto;
    }

    .news-page-wrapper {
      position: static;
    }

    .news-page-grid-section {
      padding-top: 24px;
      border-radius: 16px 16px 0 0;
    }

    .news-page-grid {
      grid-template-columns: repeat(2, 168px);
      justify-content: center;
      gap: 8px;
      padding: 0 10px;
      margin-top: 16px;
      margin-bottom: 20px;
    }

    .news-page-card {
      width: 168px;
      height: 185px;
      border-radius: 10px;
    }

    .news-page-card-image-wrapper {
      height: 92px;
    }

    .news-page-card-content {
      padding: 6px;
    }

    .news-page-card-date {
      top: 6px;
      right: 6px;
      font-size: 8px;
    }

    .news-page-card-text {
      font-size: 10px;
      line-height: 13px;
    }

    .news-page-more-wrapper {
      width: 100%;
      padding: 0 10px 32px;
    }

    .news-page-more-line {
      display: none;
    }

    .news-page-more-btn {
      width: 100%;
      height: 28px;
      border-radius: 10px;
      font-size: 11px;
    }

    .news-inner-section {
      padding: 20px 0 24px;
    }

    .news-inner-main-title {
      margin-top: 18px;
      margin-bottom: 18px;
      padding: 0 20px;
      font-size: 20px;
      line-height: 1.1;
    }

    .news-inner-top {
      width: 100%;
      margin-bottom: 20px;
      padding: 0 20px;
      gap: 10px;
    }

    .news-inner-line {
      display: none;
    }

    .news-inner-title {
      width: 100%;
      font-size: 12px;
      line-height: 1.4;
    }

    .news-inner-gallery {
      display: none;
    }

    .news-inner-gallery-wrapper {
      width: calc(100% - 40px);
      margin: 0 auto 16px;
      padding: 0;
      background: transparent;
      box-shadow: none;
    }

    .news-inner-meta {
      position: static;
      width: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 0;
    }

    .news-inner-date,
    .news-inner-badge {
      flex-shrink: 0;
    }

    .news-inner-badge {
      width: 98px;
      height: 32px;
      font-size: 12px;
      border-radius: 8px;
    }

    .news-inner-date {
      position: relative;
      display: flex;
      align-items: center;
      gap: 2px;
      font-size: 12px;
    }

    .news-inner-date::before {
      content: "";
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 150px;
      height: 1px;
      background: #cce9f9;
    }

    .news-inner-date::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 200px;
      height: 1px;
      background: #cce9f9;
    }

    .news-inner-date img {
      width: 14px;
      height: 14px;
    }

    .news-inner-gallery {
      margin-top: 0;
    }

    .news-inner-gallery-grid {
      width: 100%;
    }

    .news-inner-gallery-item.active img {
      width: 100%;
      height: 247px;
      border-radius: 12px;
    }

    .news-inner-gallery,
    .news-inner-arrow {
      display: none;
    }

    .news-inner-content-card {
      width: calc(100% - 40px);
      margin: 0 auto 24px;
      padding: 16px 15px;
      border-radius: 16px;
      font-size: 12px;
      line-height: 18px;
    }

    .news-inner-content-card p {
      font-size: 12px;
      line-height: 18px;
    }

    .news-inner-content-card p + p {
      margin-top: 12px;
    }

    .news-inner-social-wrapper {
      width: 100%;
      padding: 0 20px;
      gap: 12px;
    }

    .news-inner-line2 {
      display: none;
    }

    .news-inner-socials {
      gap: 20px;
    }

    .news-inner-socials a img {
      width: 24px;
      height: 24px;
    }
  }

  /* =========================
     DICTIONARY PAGE
  ========================= */

  .dictionary-page-section {
    padding: 39px 0 137px;
    position: relative;
    overflow: hidden;
  }

  .dictionary-page-container {
    width: 1280px;
    margin: 0 auto;
  }

  .dictionary-page-title {
    margin-bottom: 22px;
    text-align: center;
   
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: var(--navy);
  }

  .dictionary-page-description {
    margin-bottom: 39px;
    text-align: justify;
   
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--navy);
  }
  .dictionary-page-description a{
    text-decoration: none !important;
    color: var(--navy);
  }

  .dictionary-page-card {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .dictionary-page-tabs {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .dictionary-page-tab {
    flex: 1;
    height: 56px;
    border: none;
    border-radius: 16px 16px 0 0;
        background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 60%, #1e3a7a 100%);
      
    font-family: "FiraGO-Regular";
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .dictionary-page-tab.active {
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 60%, #1e3a7a 100%);
    border: 1px solid #69aeff;
    box-shadow:
      inset 0 2px 14px rgba(255, 255, 255, 0.28),
      0 0 18px rgba(73, 181, 255, 0.35),
      0 6px 18px rgba(0, 0, 0, 0.2);
    color: #ffffff;
  }

  .dictionary-page-inner {
    position: relative;
    width: 100%;
    min-height: 311px;
    margin: -2px auto 0;
    padding: 22px 28px 26px;
    border-radius: 0px 0px 16px 16px;
    background: #fff;
    box-shadow:
      0 4px 27px rgba(202, 221, 240, 0.3),
      inset 0 0 24px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    border-bottom:3px solid var(--navy);
  }

  .dictionary-page-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .dictionary-page-topbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
  }

  .dictionary-page-all-btn {
    min-width: 131px;
    height: 39px;
    padding: 0 10px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #0c3ba5 0%, rgba(7, 174, 230, 0.6) 100%);
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.15);
   
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .dictionary-page-font-controls {
    display: flex;
    align-items: center;
    width: 200px;
    gap: 14px;
   
    font-size: 16px;
    font-weight: 400;
    color: #224596;
  }
  .dictionary-page-font-controls button i{
    color: #224596;
  }

  .dictionary-page-font-controls button {
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 4px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
  }

  .dictionary-page-letters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 1136px;
    gap: 65px;
    margin-top: 32px;
    margin-bottom: 32px;
  }

  .dictionary-page-letters button {
    
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.12);
   
    font-size: 25px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition:
      transform 0.25s ease,
      background 0.25s ease;
  }

  .dictionary-page-letters button:hover {
    text-shadow: 0 0 5px rgba(87, 117, 214, 0.7);
    color: #36539e;
  }

  .dictionary-page-search {
    width: 842px;
    height: 67px;
    margin: 0 auto 32px;
    position: relative;
  }

  .dictionary-page-search input {
    width: 100%;
    height: 100%;
    padding: 0 68px 0 18px;
    border: 1px dashed var(--navy);
    border-radius: 15px;
    background: #ffffff;
    outline: none;
    font-family:"FiraGO-Regular";
    font-size: 16px;
    font-weight: 400;
    color: #00000099;
  }
  .dictionary-page-search input:hover{
    border: 1px solid #ffb901;
  }
  .dictionary-page-search input::placeholder {
    color: #8a97b8;
  }

  .dictionary-page-search-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 58px;
    height: 41px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--navy) 0%, #2a4a8a 60%, #1e3a7a 100%);
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }

  .dictionary-page-search-btn img {
    width: 31px;
    height: 31px;
    object-fit: contain;
  }

  .dictionary-page-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
  }

  .dictionary-page-actions button {
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .dictionary-page-actions img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  /* =========================
     DICTIONARY INNER PAGE
  ========================= */

  .dictionary-inner-page {
    padding: 41px 0;
  }

  .dictionary-inner-container {
    width: 1200px;
    margin: 0 auto;
  }

  .dictionary-inner-search-wrapper {
    width: 860px;
    margin: 0 auto;
  }

  .dictionary-inner-top-row {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-bottom: 38px;
  }

  .dictionary-inner-categories {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .dictionary-inner-category-btn {
    height: 39px;
    padding: 0 22px;
    border: #ffffff03;
    border-radius: 8px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
   
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
  }

  .dictionary-inner-category-btn.active {
    border: 1px solid #1163d399;
  }

  .dictionary-inner-letters {
    width: 645px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dictionary-inner-letters button {
    border: none;
    background: transparent;
   
    font-size: 18px;
    font-weight: 600;
    color: #07aee6;
    cursor: pointer;
  }

  .dictionary-inner-search {
    position: relative;
    width: 842px;
    height: 67px;
    margin-bottom: 48px;
  }

  .dictionary-inner-search input {
    width: 100%;
    height: 100%;
    padding: 0 50px 0 22px;
    border: none;
    border-radius: 15px;
    background: #ffffff;
    outline: none;
   
    font-size: 16px;
    font-weight: 400;
    color: #00000099;
  }

  .dictionary-inner-search input::placeholder {
    color: #00000099;
  }

  .dictionary-inner-search-btn {
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    width: 58px;
    height: 41px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .dictionary-inner-search-btn img {
    width: 31px;
    height: 31px;
  }

  .dictionary-inner-card {
    width: 1200px;
    padding: 40px 38px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
  }

  .dictionary-inner-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
  }

  .dictionary-inner-back-btn,
  .dictionary-inner-close-btn {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .dictionary-inner-back-btn img,
  .dictionary-inner-close-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    display: block;
  }

  .dictionary-inner-back-btn:hover,
  .dictionary-inner-close-btn:hover {
    transform: scale(1.08);
    opacity: 0.8;
  }

  .dictionary-inner-title {
    width: 100%;
    height: 45px;
    /* background-image: url("../images/dictionary-inner-bg2.png"); */
    background: var(--navy);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    font-family: "DM Giorgi", sans-serif;
    font-size: 18px;
    font-weight: 400;
    border-radius:7px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dictionary-inner-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .dictionary-inner-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    min-width: 0;
  }

  .dictionary-inner-section-text {
   
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    text-align: justify;
    color: #1f2a37;
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .dictionary-inner-section-head {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .dictionary-inner-section-title {
   
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #155fad;
    white-space: nowrap;
  }

  .dictionary-inner-divider {
    flex: 1;
    height: 1px;
    background: #cce9f9;
  }

  .dictionary-inner-footer {
    margin-top: 40px;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .dictionary-inner-source-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }

  .dictionary-inner-source {
    position: relative;
    margin-bottom: 16px;
    gap: 37px;
   
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    color: #1f2a37;
  }

  .dictionary-inner-source::before,
  .dictionary-inner-source::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 537px;
    height: 1px;
    background: #cce9f9;
  }

  .dictionary-inner-source::before {
    right: calc(100% + 38px);
  }

  .dictionary-inner-source::after {
    left: calc(100% + 38px);
  }

  .dictionary-inner-source-block a {
    width: 1200px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #cce9f9;
    padding:35px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #1f2a37;
    text-decoration: underline;
  }

  .dictionary-inner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
  }

  .dictionary-inner-actions button {
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  .dictionary-inner-actions button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .dictionary-inner-actions button:hover {
    transform: scale(1.08);
    opacity: 0.8;
  }

  .dictionary-inner-tags-title {
    position: relative;
    margin-bottom: 40px;
   
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #02103a;
  }

  .dictionary-inner-tags-title::before,
  .dictionary-inner-tags-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 468px;
    height: 1px;
    background: #cce9f9;
  }

  .dictionary-inner-tags-title::before {
    right: calc(100% + 37px);
  }

  .dictionary-inner-tags-title::after {
    left: calc(100% + 37px);
  }

  .dictionary-inner-tags {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 94px;
  }

  .dictionary-inner-tags button {
    height: 46px;
    padding: 0 26px;
    border: none;
    border-radius: 16px;
    background: #c8e6fd80;
    box-shadow: #223c6e33;
   
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: #1f2a37;
    cursor: pointer;
    transition:
      background 0.25s ease,
      transform 0.25s ease;
  }

  .dictionary-inner-tags button a {
    text-decoration: none;
    color: var(--navy);
  }

  .dictionary-inner-tags button:hover {
    background: #dfeefe;
    transform: translateY(-1px);
  }

  /* =========================
     DICTIONARY ALL PAGE
  ========================= */

  .dictionary-all {
    padding: 42px 0 120px;
  }

  .dictionary-all-container {
    width: 1199px;
    margin: 0 auto;
  }

  .dictionary-all-search-text {
    margin-bottom: 34px;
    text-align: center;
   
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
  }

  .dictionary-all-search-wrapper {
    width: 1200px;
    padding: 28px 24px 30px;
    border-radius: 16px;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 14px rgba(34, 69, 150, 0.1), 0 0 10px rgba(48, 203, 255, 0.12);
    backdrop-filter: blur(32px);
    margin-bottom: 22px;
  }

  .dictionary-all-search-results {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    border: 1px solid rgba(34, 69, 150, 0.08);
    overflow: hidden;
    z-index: 20;
  }

  .dictionary-all-search-box {
    width: 842px;
    height: 67px;
    margin: 0 auto 24px;
    padding: 0 12px 0 24px;
    border-radius: 14px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .dictionary-all-search-input {
    width: 100%;
    border: 1px dashed var(--navy);
    padding:15px 35px 15px 35px;
    border-radius: 15px;
    outline: none;
    background: transparent;
   
    font-size: 16px;
    font-weight: 400;
    color: #00000099;
  }

  .dictionary-all-search-input::placeholder {
    color: #00000099;
  }

  .dictionary-all-search-btn {
    width: 58px;
    height: 41px;
    border: none;
    border-radius: 11px;
    background: linear-gradient(180deg, #07aee6 0%, #0c3ba5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    margin-left:20px;
  }

  .dictionary-all-search-btn:hover {
    transform: scale(1.05);
  }

  .dictionary-all-search-btn img {
    width: 31px;
    height: 31px;
  }

  .dictionary-all-letters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
    margin-bottom: 24px;
  }

  .dictionary-all-letters button {
    width: 30px;
    height: 39px;
    border: none;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.15);
   
    font-size: 30px;
    font-weight: bold;
    color: var(--navy);
    cursor: pointer;
    transition: 0.25s ease;
  }

  .dictionary-all-letters button:hover {
    background: #0a6dff;
    transform: translateY(-2px);
  }

  .dictionary-all-show-btn {
    display: block;
    margin: 0 auto;
    width: 131px;
    height: 39px;
    border: none;
    border-radius: 8px;
    background: linear-gradient(90deg, #0c3ba5 0%, #07aee6 100%);
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.15);
   
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s ease;
  }

  .dictionary-all-show-btn:hover {
    transform: scale(1.03);
  }

  .dictionary-all-card {
    width: 100%;
    padding: 26px 34px 34px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(48, 203, 255, 0.18);
    box-shadow: 0 4px 14px rgba(34, 69, 150, 0.1), 0 0 10px rgba(48, 203, 255, 0.12);
    backdrop-filter: blur(10px);
    margin-bottom: 59px;
  }

  .dictionary-all-card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 27px;
    margin-bottom: 67px;
  }

  .dictionary-all-card-title span {
    width: 203px;
    height: 2px;
    background: var(--navy);
  }

  .dictionary-all-card-title h2 {
   
    font-size: 36px;
    font-weight: 500;
    color: var(--navy);
  }

  .dictionary-all-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
    row-gap: 24px;
  }

  .dictionary-all-item {
   
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    color: #224596;
    transition: 0.25s ease;
    cursor: pointer;
  }

  .dictionary-all-item:hover {
    color: #ffb901;
    transform: translateX(4px);
  }

  @media (max-width: 576px) {
    .dictionary-page-section {
      padding: 24px 0 0;
    }

    .dictionary-page-container {
      width: 100%;
      padding: 0 20px;
      box-sizing: border-box;
    }

    .dictionary-page-card {
      width: 100%;
    }

    .dictionary-page-title {
      width: 100%;
      max-width: 362px;
      margin: 0 auto 16px;
      text-align: center;
      font-size: 20px;
      line-height: 1.2;
    }

    .dictionary-page-description {
      width: 100%;
      max-width: 364px;
      margin: 0 auto 16px;
      text-align: center;
      font-size: 13px;
      line-height: 1.4;
    }

    .dictionary-page-tabs {
      width: 364px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .dictionary-page-tab {
      flex: none;
      width: 100%;
      height: 64px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-radius: 16px;
    }

    .dictionary-page-tab:first-child {
      background: #deeafa;
      border: 1px solid #69aeff;
      color: #1d2f6f;
      align-self: flex-end;
    }

    .dictionary-page-tab:last-child {
      background: #0a4697;
      border: 1px solid transparent;
      color: #ffffff;
      align-self: flex-start;
    }

    .dictionary-page-inner {
      width: 100%;
      margin-top: 10px;
      padding: 24px 20px 28px;
      border-radius: 16px;
    }

    .dictionary-page-content {
      width: 100%;
      gap: 24px;
    }

    .dictionary-inner-page {
      padding: 24px 0 40px;
    }

    .dictionary-inner-container {
      width: 100%;
      padding: 0 19px;
    }

    .dictionary-inner-search-wrapper {
      width: 100%;
    }

    .dictionary-inner-top-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 20px;
    }

    .dictionary-inner-categories {
      width: 100%;
      flex-direction: column;
      gap: 12px;
    }

    .dictionary-inner-category-btn {
      width: 100%;
      height: 64px;
      border-radius: 16px;
      font-size: 14px;
      text-align: center;
    }

    .dictionary-inner-category-btn:first-child {
      background: #deeafa;
      color: #1d2f6f;
    }

    .dictionary-inner-category-btn:last-child {
      background: #0a4697;
      color: #ffffff;
    }

    .dictionary-inner-letters {
      width: 100%;
      overflow-x: auto;
      justify-content: flex-start;
      gap: 14px;
      padding-bottom: 6px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .dictionary-inner-letters::-webkit-scrollbar {
      display: none;
    }

    .dictionary-inner-letters button {
      flex-shrink: 0;
      font-size: 16px;
    }

    .dictionary-inner-search {
      width: 100%;
      height: 36px;
      margin-bottom: 24px;
    }

    .dictionary-inner-search input {
      padding: 0 44px 0 12px;
      border-radius: 12px;
      font-size: 13px;
    }

    .dictionary-inner-search-btn {
      width: 28px;
      height: 28px;
      right: 5px;
      border-radius: 8px;
    }

    .dictionary-inner-search-btn img {
      width: 16px;
      height: 16px;
    }

    .dictionary-inner-card {
      width: 100%;
      padding: 20px 16px;
      border-radius: 16px;
    }

    .dictionary-inner-card-top {
      margin-bottom: 24px;
      gap: 10px;
    }

    .dictionary-inner-back-btn,
    .dictionary-inner-close-btn {
      width: 24px;
      height: 24px;
    }

    .dictionary-inner-back-btn img,
    .dictionary-inner-close-btn img {
      width: 18px;
      height: 18px;
    }

    .dictionary-inner-title {
      width: 100%;
      height: 64px;
      padding: 0 12px;
      text-align: center;
      background-size: 100% 100%;
      font-size: 15px;
      line-height: 1.3;
    }

    .dictionary-inner-content {
      gap: 24px;
    }

    .dictionary-inner-section {
      gap: 12px;
    }

    .dictionary-inner-section-head {
      gap: 12px;
    }

    .dictionary-inner-section-title {
      font-size: 14px;
      white-space: normal;
    }

    .dictionary-inner-section-text {
      font-size: 14px;
      line-height: 1.5;
    }

    .dictionary-inner-footer {
      margin-top: 24px;
      padding-top: 24px;
    }

    .dictionary-inner-source-block {
      margin-bottom: 24px;
    }

    .dictionary-inner-source {
      font-size: 14px;
    }

    .dictionary-inner-source::before,
    .dictionary-inner-source::after {
      width: 70px;
    }

    .dictionary-inner-source::before {
      right: calc(100% + 12px);
    }

    .dictionary-inner-source::after {
      left: calc(100% + 12px);
    }

    .dictionary-inner-source-block a {
      width: 100%;
      min-height: 48px;
      padding: 12px;
      text-align: center;
      word-break: break-word;
      font-size: 13px;
      line-height: 1.5;
    }

    .dictionary-inner-actions {
      gap: 24px;
      margin-bottom: 24px;
    }

    .dictionary-inner-actions img {
      width: 22px;
      height: 22px;
    }

    .dictionary-inner-tags-title {
      margin-bottom: 24px;
      text-align: center;
      font-size: 14px;
    }

    .dictionary-inner-tags-title::before,
    .dictionary-inner-tags-title::after {
      width: 60px;
    }

    .dictionary-inner-tags-title::before {
      right: calc(100% + 12px);
    }

    .dictionary-inner-tags-title::after {
      left: calc(100% + 12px);
    }

    .dictionary-inner-tags {
      gap: 12px;
      margin-bottom: 40px;
    }

    .dictionary-inner-tags button {
      height: 38px;
      padding: 0 16px;
      border-radius: 12px;
      font-size: 13px;
    }

    .dictionary-all {
      padding: 24px 0 80px;
    }

    .dictionary-all-container {
      width: 100%;
      padding: 0 19px;
    }

    .dictionary-all-search-text {
      font-size: 18px;
      margin-bottom: 24px;
    }

    .dictionary-all-search-wrapper {
      width: 100%;
      height: auto;
      padding: 20px 16px;
      margin-bottom: 20px;
    }

    .dictionary-all-search-box {
      width: 100%;
      height: 56px;
      margin-bottom: 20px;
      padding: 0 10px 0 16px;
    }

    .dictionary-all-search-input {
      font-size: 14px;
    }

    .dictionary-all-search-btn {
      width: 48px;
      height: 36px;
      flex-shrink: 0;
    }

    .dictionary-all-search-btn img {
      width: 24px;
      height: 24px;
    }

    .dictionary-all-letters {
      gap: 6px;
      margin-bottom: 20px;
    }

    .dictionary-all-letters button {
      width: 32px;
      height: 36px;
      font-size: 14px;
    }

    .dictionary-all-show-btn {
      width: 120px;
      height: 36px;
      font-size: 14px;
    }

    .dictionary-all-card {
      padding: 20px 16px;
      margin-bottom: 32px;
    }

    .dictionary-all-card-title {
      gap: 12px;
      margin-bottom: 28px;
    }

    .dictionary-all-card-title span {
      flex: 1;
      width: auto;
    }

    .dictionary-all-card-title h2 {
      font-size: 26px;
      white-space: nowrap;
    }

    .dictionary-all-grid {
      grid-template-columns: 1fr;
      row-gap: 16px;
    }

    .dictionary-all-item {
      font-size: 16px;
      line-height: 1.5;
    }
  }
