body {
  margin: 0;
  font-family: 'Noto Serif Georgian';
  background-color: #f9f9f9;
  color: #333;
}

h1, h3, h4, button, input{
  font-family: 'Noto Serif Georgian';
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header {
  background-color: #1f2c44;
  color: white;
  padding: 0;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 65px;
}
.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}
.main-nav {
  position: relative;
}
#menu-list {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
  align-items: center;
  transition: max-height 0.35s;
}

#menu-list li {
  position: relative;
}

#menu-list li a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
  display: block;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
}

#menu-list li a:hover {
  background: #264378;
  color: #ffe100;
}

/* Dropdown Icon */
.dropdown .dropbtn:after {
  content: " ▼";
  font-size: 0.87em;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  left: 0; top: 100%;
  background: #1f2c44;
  min-width: 200px;
  box-shadow: 0 4px 24px rgba(30,91,216,0.12);
  border-radius: 0 0 10px 10px;
  flex-direction: column;
  padding: 8px 0;
  z-index: 200;
}

.dropdown-content li a {
  color: #1e1e2f;
  padding: 12px 22px;
  border-radius: 0;
  font-weight: 600;
  font-size: 15px;
}

.dropdown-content li a:hover {
  background: #e8f0fe;
  color: #1e5bd8;
}

@media (min-width: 901px) {
  .dropdown:hover .dropdown-content {
    display: flex;
  }
}

/* Ô¼Õ¥Õ¦Õ¾Õ« Õ¤ÖÕ¸Õ·Õ¶Õ¥Ö */
.lang-switcher img {
  width: 26px;
  height: 26px;
  margin-left: 10px;
  cursor: pointer;
}

/* ÕÕ¡Õ´Õ¢Õ¸ÖÖÕ£Õ¥Ö */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: white;
  margin-left: 16px;
}

/* --- ÕÕÔ²Ô±ÕÔ¼ --- */
@media (max-width: 900px) {
  .header-flex {
    flex-wrap: wrap;
  }
#menu-list {
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    position: absolute;
    top: 60px;
    right: 0;
    width: 220px;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(30,91,216,0.16);
    border-radius: 0 0 12px 12px;
    z-index: 300;
    padding: 0;
    transition: max-height 0.35s;
  }

   #menu-list.show {
    max-height: 440px;
    padding: 12px 0;
  }
  #menu-list li {
    width: 100%;
    text-align: left;
    padding: 0;
    border-bottom: 1px solid #e1e7ff;
  }

  #menu-list li:last-child {
    border-bottom: none;
  }
  #menu-list li a {
    color: #1e1e2f;
    background: none;
    font-size: 1rem;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 0;
  }
  #menu-list li a:hover {
    color: #1e5bd8;
    background: #f0f5ff;
  }

  .dropdown-content {
    position: static;
    background: #f6faff;
    box-shadow: none;
    min-width: unset;
    border-radius: 0 0 8px 8px;
    padding: 0;
    display: none;
  }
 

  .dropdown.open .dropdown-content {
    display: flex;
  }
  /* .dropdown:hover .dropdown-content {
    display: none !important;
  } */
  .hamburger {
    display: block;
  }

}



.hero-banner {
  background: linear-gradient(90deg, #e9f1ff 60%, #f8fafc 100%);
  padding: 60px 0 40px 0;
}
.hero-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content {
  flex: 1 1 55%;
}
.hero-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1e1e2f;
}
.hero-subtitle {
  font-size: 1.2rem;
  color: #3551a2;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  gap: 20px;
}
.hero-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  background: #e2e8f0;
  color: #1f2c44;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.hero-btn.primary {
  background: #1f2c44;
  color: #fff;
}
.hero-btn:hover {
  background: #b7cffb;
  color: #123485;
}
.hero-btn.primary:hover {
  background: #1641aa;
  color: #fff;
}
.hero-slider {
  position: relative;
  width: 550px;
  max-width: 100%;
  height: 320px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(30,91,216,0.13);
  overflow: hidden;
  background: #eee;
  margin: 0 auto;
}
.slider-images {
  width: 100%;
  height: 100%;
  position: relative;
}
.slide {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  display: block;
  opacity: 1;
  z-index: 1;
}
.slider-controls {
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  /* padding: 0 24px; */
  z-index: 2;
}
.slider-controls .prev,
.slider-controls .next {
  /* background: rgba(30,91,216,0.80); */
  color: #fff;
  border-radius: 50%;
  padding: 7px 15px;
  font-size: 18px;
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.slider-controls .prev:hover,
.slider-controls .next:hover {
  background: #cdd2dc45;
}
@media (max-width: 900px) {
  .hero-flex {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
  }
  .hero-slider {
    width: 96vw;
    height: 300px;
  }
}


.hero-cta-buttons {
  background: #fff;
  padding: 32px 0 36px 0;
  text-align: center;
  box-shadow: 0 2px 18px rgba(30,91,216,0.05);
  margin-bottom: 24px;
}

.hero-cta-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  background: #e2e8f0;
  color: #1e5bd8;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(30,91,216,0.08);
  margin: 6px 0;
}

.cta-btn.primary {
  background: #1f2c44;
  color: #fff;
}

.cta-btn.outline {
  background: transparent;
  color: #1e5bd8;
  border: 2px solid #1e5bd8;
}

.cta-btn:hover,
.cta-btn:focus {
  background: #d3e1fc;
  color: #1e1e2f;
}

.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #1749b1;
  color: #fff;
}

.cta-btn.outline:hover,
.cta-btn.outline:focus {
  background: #1e5bd8;
  color: #fff;
}


@media (max-width: 700px) {
  .hero-cta-flex {
    flex-direction: column;
    gap: 16px;
  }
  .cta-btn {
    width: 100%;
    max-width: 340px;
  }
}

.marquee {
  width: 100%;
  overflow: hidden;
  /* background: #e2e8f0; */
  color: #01060e;
  /* font-style: italic; */
  padding: 10px 0;
  position: relative;
  font-size: 1.3rem;
  font-weight: 700;
}
.marquee span {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee 16s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.marquee span:hover {
  animation-play-state: paused;
}


/* ÕÕ¸Õ¢Õ¡ÕµÕ¬ */
@media (max-width: 700px) {
  .books-list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .book-card {
    width: 90vw;
    max-width: 370px;
  }
}

.popular-section {
  background: #fffbe9;
  padding: 54px 0 48px 0;
  text-align: center;
}
.popular-title {
  font-size: 2rem;
  color: #e59f00;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}
.popular-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.popular-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(229,159,0,0.08);
  overflow: hidden;
  width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.popular-card:hover {
  box-shadow: 0 8px 40px rgba(229,159,0,0.13);
  transform: translateY(-8px) scale(1.03);
}
.popular-img img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  background: #fff6d6;
}
.popular-info {
  padding: 18px 14px 16px 14px;
}
.popular-info h3 {
  font-size: 1.09rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #332e2e;
}
.popular-info p {
  font-size: 0.96rem;
  color: #7c651e;
  margin: 0 0 12px 0;
}
.popular-link {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 4px;
  background: #ffe07c;
  color: #ae8600;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.18s, color 0.18s;
}
.popular-link:hover {
  background: #e59f00;
  color: #fff;
}

/* ÕÕ¸Õ¢Õ¡ÕµÕ¬ */
@media (max-width: 700px) {
  .popular-list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .popular-card {
    width: 90vw;
    max-width: 370px;
  }
}


.arm-cards-section {
  background: #f8fafc;
  padding: 48px 0 42px 0;
}
.arm-cards-title {
  font-size: 2rem;
  color: #1546a0;
  font-weight: 700;
  margin-bottom: 36px;
  text-align: center;
}
.arm-cards-list {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
}
.arm-card {
  width: 185px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(30,91,216,0.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 22px 12px 16px 12px;
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
  min-height: 260px;
}
.arm-card:hover {
  transform: translateY(-8px) scale(1.06);
  box-shadow: 0 10px 34px rgba(30,91,216,0.13);
}
.arm-card img {
  width: 185px;
  height: 130px;
  object-fit: cover;
  /* border-radius: 50%; */
  margin-bottom: 16px;
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(100,120,160,0.08);
  background: #f8fafc;
}
.arm-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.06rem;
  color: #1546a0;
  font-weight: 600;
  text-align: center;
}
.arm-card p {
  font-size: 0.95rem;
  color: #444b5d;
  margin: 0;
  line-height: 1.45;
  text-align: center;
}

/* ÕÕ¸Õ¢Õ¡ÕµÕ¬ */
@media (max-width: 900px) {
  .arm-cards-list {
    flex-wrap: wrap;
    gap: 14px;
  }
  .arm-card {
    width: 46vw;
    min-width: 135px;
    max-width: 180px;
    padding: 18px 8px 14px 8px;
  }
}
@media (max-width: 600px) {
  .arm-cards-list {
    flex-direction: column;
    align-items: center;
  }
  .arm-card {
    width: 96vw;
    max-width: 320px;
  }
}


.view-all-btn {
  display: inline-block;
  margin: 24px auto 0 auto;
  padding: 8px 24px;
  background: #1f2c44;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 10px rgba(30,91,216,0.09);
  text-align: center;
}
.view-all-btn:hover,
.view-all-btn:focus {
  background: #1749b1;
  color: #fff;
  box-shadow: 0 6px 18px rgba(30,91,216,0.12);
}
.arm-cards-section .view-all-btn {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}


.dictionary-single-section {
  background: linear-gradient(90deg, #fdf6e5 70%, #eaf1fc 100%);
  padding: 70px 0 70px 0;
}

.dictionary-single-card.large {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  background: #fff;
  border-radius: 36px;
  box-shadow: 0 10px 46px rgba(30,91,216,0.16);
  padding: 54px 80px;
  max-width: 960px;
  min-height: 330px;
  margin: 0 auto;
}

.dictionary-single-img.large img {
  width: 272px;
  height: 352px;
  border-radius: 24px;
  background: #f4f8ff;
  box-shadow: 0 4px 18px rgba(30,91,216,0.10);
}

.dictionary-single-info.large {
  max-width: 480px;
}

.dictionary-single-info.large h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  font-weight: 900;
}

.dictionary-single-desc.large {
  font-size: 1.24rem;
  color: #444b5d;
  margin-bottom: 32px;
  line-height: 1.62;
}

.dictionary-single-btn.large {
  display: inline-block;
  padding: 18px 56px;
  background: #1f2c44;
  color: #fff;
  border-radius: 10px;
  font-size: 1.19rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.17s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(30,91,216,0.13);
}
.dictionary-single-btn.large:hover,
.dictionary-single-btn.large:focus {
  background: #1749b1;
  color: #fff;
  box-shadow: 0 12px 36px rgba(30,91,216,0.19);
}

.title-main {
  color: #1e5bd8;
  margin-right: 12px;
}
.title-orange {
  color: #e59f00;
  font-size: 1.23rem;
  font-weight: 700;
  margin-left: 12px;
}

/* ÕÕ¸Õ¢Õ¡ÕµÕ¬ */
@media (max-width: 1050px) {
  .dictionary-single-card.large {
    flex-direction: column;
    padding: 36px 12px;
    gap: 28px;
    min-height: 0;
  }
  .dictionary-single-img.large img {
    width: 200px;
    height: 290px;
  }
  .dictionary-single-info.large {
    max-width: 96vw;
    text-align: center;
  }
  .dictionary-single-info.large h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }
  .dictionary-single-desc.large {
    font-size: 1.08rem;
    margin-bottom: 20px;
  }
  .dictionary-single-btn.large {
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 8px;
  }
}


.encyclo-chat-section.decorated-bg {
  background: #fff;
  position: relative;
  padding: 60px 0 60px 0;
  overflow: hidden;
}
.decorated-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  min-height: 340px;
}

.encyclo-main-content {
  flex: 1 1 62%;
  z-index: 2;
}
.encyclo-side-img {
  flex: 0 0 330px;
  min-width: 220px;
  max-width: 390px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.encyclo-side-img img {
  width: 100%;
  max-width: 340px;
  height: auto;
  object-fit: contain;
  opacity: 0.97;
  filter: drop-shadow(0 4px 32px rgba(100,110,130,0.10));
  border-radius: 24px;
}
.encyclo-side-btn {
  display: block;
  margin-top: 26px;
  padding: 14px 38px;
  background: #e59f00;
  color: #fff;
  border-radius: 10px;
  font-size: 1.19rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(229,159,0,0.12);
  transition: background 0.17s, box-shadow 0.13s;
}
.encyclo-side-btn:hover {
  background: #b27800;
  color: #fff;
  box-shadow: 0 8px 22px rgba(229,159,0,0.17);
}

/* ÕÕ¡Õ¶ÖÕ¡Õ£Õ«Õ¿Õ¡ÖÕ¡Õ¶Õ¶Õ¥Ö/Ô¶ÖÕ¸ÖÖÕ¡ÖÕ¡Õ¶Õ¶Õ¥Ö */
.encyclo-row { margin-bottom: 36px; }
.encyclo-row h3 { margin-bottom: 14px; font-size: 1.35rem; font-weight: 800; color: #1e5bd8; letter-spacing: 0.2px; }
.encyclo-card-list { display: flex; gap: 28px; flex-wrap: wrap; }
.encyclo-mini-card.large {
  background: #f4f8ff;
  /* border-radius: 19px; */
  box-shadow: 0 4px 22px rgba(30,91,216,0.08);
  padding: 18px 18px 16px 18px;
  width: 168px;
  height: 195px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.14s;
}
.encyclo-mini-card.large:hover {
  box-shadow: 0 12px 32px rgba(30,91,216,0.14);
}
.encyclo-mini-card.large img {
  width: 158px;
  height: 105px;
  object-fit: cover;
  border-radius: 11px;
  margin-bottom: 13px;
  background: #e9eef9;
}
.encyclo-mini-card.large span {
  font-size: 1.07rem;
  color: #1749b1;
  font-weight: 700;
  margin-top: 6px;
}

/* ÕÕ¸Õ¢Õ¡ÕµÕ¬ Õ°Õ¡ÖÕ´Õ¡ÖÕ¥ÖÕ¸ÖÕ´ */
@media (max-width: 1100px) {
  .decorated-flex { flex-direction: column; gap: 24px; }
  .encyclo-side-img { align-items: center; justify-content: center; margin: 0 auto; }
  .encyclo-side-img img { max-width: 220px; margin: 20px auto 0 auto; }
  .encyclo-card-list { gap: 12px; }
  .encyclo-mini-card.large {
    width: 47vw;
    min-width: 140px;
    max-width: 200px;
    height: 100px;
    padding: 10px 5px 10px 5px;
  }
  .encyclo-mini-card.large img {
    width: 68px;
    height: 48px;
    margin-bottom: 5px;
  }
  .encyclo-mini-card.large span { font-size: 0.98rem; }
}
@media (max-width: 700px) {
  .decorated-flex { flex-direction: column; }
  .encyclo-side-img { display: none; }
  .encyclo-main-content { width: 100%; }
}


.site-footer {
  background: linear-gradient(180deg, #f6faff 0%, #eaf1fc 100%);
  padding-top: 36px;
  padding-bottom: 0;
  font-size: 1rem;
  color: #2a3143;
  border-top: 1px solid #e3eaf5;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 18px;
}

.footer-logo {
  font-size: 2.1rem;
  font-weight: 900;
  color: #1e5bd8;
  letter-spacing: 1px;
  flex: 0 0 140px;
  margin-bottom: 24px;
}

.footer-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex: 1 1 0;
}

.footer-col {
  min-width: 140px;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-size: 1.03rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: #1f2c44;
  letter-spacing: 0.4px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-weight: 600;
}
.footer-col ul li {
  margin-bottom: 8px;
  font-size: 0.97rem;
  color: #485267bf;
}
.footer-col ul li a {
  color: #485267bf;
  text-decoration: none;
  transition: color 0.14s;
}
.footer-col ul li a:hover {
  color: #e59f00;
}

.footer-bottom {
  border-top: 1px solid #dde3f1;
  padding: 12px 0;
  background: #f6faff;
  font-size: 0.98rem;
  color: #909bb1;
  text-align: center;
}

/* ÕÕ¸Õ¢Õ¡ÕµÕ¬ */
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
  .footer-columns {
    flex-direction: column;
    gap: 22px;
  }
  .footer-logo {
    margin-bottom: 8px;
  }
}




/* --- Hero Õ¢Õ¬Õ¸Õ¯ --- */
.about-hero-block {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  padding: 56px 0 30px 0;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.about-hero-block.reverse {
  flex-direction: row-reverse;
}
.about-hero-img img {
  width: 546px;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 36px rgba(30,91,216,0.08);
}
.about-hero-content {
  max-width: 460px;
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  align-content: space-around;
  flex-direction: column;
  justify-content: space-evenly;
}
.about-hero-label {
  font-size: 1.92rem;
  color: #1e5bd8;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
  font-weight: 900;
}
.about-hero-content h1 {
  font-size: 1.5rem;
  font-weight: 900;
  margin: 0 0 16px 0;
  color: #1a2542;
  line-height: 1.4;
}
.about-hero-sub {
  color: #596579;
  font-size: 1.09rem;
  margin-bottom: 28px;
}
.main-btn {
  background: #1f2c44;
  color: #fff;
  border: none;
  padding: 12px 34px;
  border-radius: 7px;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(36,96,246,0.13);
  transition: background 0.15s;
}
.main-btn:hover { background: #1949b1; }

@media (max-width: 900px) {
  .about-hero-block, .about-hero-block.reverse {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .about-hero-img img { width: 96vw; max-width: 340px; }
  .about-hero-content { align-items: center; }
}

/* --- Ô¹Õ«Õ´Õ« Õ¢Õ¡ÕªÕ«Õ¶ --- */
.about-team-section {
  background: #f3f6fc;
  padding: 64px 0 58px 0;
}
.about-team-bg {
  max-width: 950px;
  margin: 0 auto;
  background: #e9f0fb;
  border-radius: 18px;
  box-shadow: 0 2px 22px rgba(36,96,246,0.09);
  padding: 36px 32px 44px 32px;
  text-align: center;
}
.about-team-bg h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #1a2542;
}
.about-team-sub {
  color: #7e8ea5;
  font-size: 1.07rem;
  margin-bottom: 32px;
}
.about-team-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.about-team-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(30,91,216,0.11);
  width: 204px;
  padding: 24px 10px 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.16s, transform 0.14s;
}
.about-team-card img {
  width: 92px; height: 92px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(30,91,216,0.10);
}
.name {
  font-size: 1.08rem;
  font-weight: 700;
  color: #1a2542;
  margin-bottom: 2px;
}
.role {
  font-size: 0.97rem;
  color: #6280a0;
  font-weight: 500;
}

@media (max-width: 700px) {
  .about-team-cards { flex-direction: column; gap: 18px; align-items: center; }
}

/* --- ÕÕ¸ÖÕ¸ÖÕ©ÕµÕ¸ÖÕ¶Õ¶Õ¥Ö+Õ¢Õ¡ÕªÕ¡Õ¶Õ¸ÖÕ¤Õ¡Õ£ÖÕ¸ÖÕ©ÕµÕ¸ÖÕ¶ --- */
.about-news-subscribe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  background: #fcfbf3;
  border-radius: 16px;
  margin: 38px auto 55px auto;
  max-width: 1020px;
  box-shadow: 0 7px 24px rgba(246,195,36,0.09);
  padding: 44px 26px;
}
.about-news-imgbg {
  display: grid;
  grid-template-columns: repeat(2, 195px);
  grid-template-rows: repeat(3, 130px);
  gap: 15px;
}
.about-news-imgbg img {
  width: 195px; height: 130px;
  object-fit: cover;
  border-radius: 10px;
  background: #fbe2b1;
}
.about-subscribe-form {
  flex: 1 1 370px;
  background: #ffdd84;
  border-radius: 13px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form-title {
  color: #ba8c0d;
  font-size: 1.19rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.about-subscribe-form form {
  display: flex;
  gap: 10px;
  width: 100%;
}
.about-subscribe-form input[type="email"] {
  flex: 1 1 170px;
  padding: 10px 14px;
  border: none;
  border-radius: 7px;
  font-size: 1rem;
  background: #fffde8;
  box-shadow: 0 2px 8px rgba(246,195,36,0.08);
  outline: none;
}
.about-subscribe-form button { margin-left: 0; }

@media (max-width: 950px) {
  .about-news-subscribe { flex-direction: column; gap: 13px; padding: 19px 8px; }
  .about-news-imgbg { margin-bottom: 10px; }
  .about-subscribe-form { width: 98vw; max-width: 330px; padding: 10px 8px; align-items: center; }
  .about-subscribe-form form { flex-direction: column; gap: 8px; }
}

/* --- Footer --- */
.about-footer {
  margin-top: 48px;
  background: linear-gradient(180deg, #f6faff 0%, #eaf1fc 100%);
  color: #222;
  padding-top: 38px;
  padding-bottom: 0;
  font-size: 1rem;
}
.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  align-items: flex-start;
}
.footer-logo {
  font-size: 2.1rem;
  font-weight: 900;
  color: #2460f6;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.footer-cols {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  flex: 1 1 0;
  font-size: 0.99rem;
}
.footer-cols div {
  min-width: 140px;
  margin-bottom: 10px;
  color: #222;
}
.footer-cols b { color: #2460f6; }
.footer-bottom {
  border-top: 1px solid #dde3f1;
  padding: 12px 0;
  background: #f6faff;
  font-size: 0.98rem;
  color: #909bb1;
  text-align: center;
}
@media (max-width: 900px) {
  .footer-main { flex-direction: column; gap: 10px; align-items: flex-start; }
  .footer-cols { flex-direction: column; gap: 4px; }
}




.contact-page {
  padding: 38px 0 0 0;
}
.contact-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}
.contact-info, .contact-details {
  flex: 1;
  min-width: 220px;
}
.contact-info h2, .contact-details h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.contact-map-form {
  display: flex;
  gap: 34px;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
}
.contact-map {
  flex: 1;
  min-width: 320px;
}
.contact-form-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(30,91,216,0.10);
  padding: 30px 32px;
  min-width: 330px;
  max-width: 380px;
  margin-left: -80px;
  position: relative;
  z-index: 2;
}
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form-card input, .contact-form-card textarea {
  width: 100%;
  border: 1px solid #e3e9f6;
  border-radius: 7px;
  padding: 12px 6px;
  font-size: 1rem;
  font-family: 'Noto Serif Georgian';
  outline: none;
  transition: border 0.15s;
  background: #f7faff;
  resize: none;
}
.contact-form-card input:focus, .contact-form-card textarea:focus {
  border: 1.5px solid #1e5bd8;
}
.contact-form-card textarea {
  min-height: 86px;
}
.blue-btn {
  background: #1f2c44;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  padding: 13px 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.13s;
  box-shadow: 0 1px 5px rgba(30,91,216,0.09);
}
.blue-btn:hover { background: #1a4fae; }

/* ÕÕ¸Õ¢Õ¡ÕµÕ¬ Õ°Õ¡ÖÕ´Õ¡ÖÕ¥ÖÕ¸ÖÕ´ */
@media (max-width: 900px) {
  .contact-top, .contact-map-form {
    flex-direction: column;
    gap: 16px;
  }
  .contact-form-card {
    max-width: 100%;
    min-width: 0;
    margin-left: 0;
    padding: 18px 12px;
  }
}


/* --- Ô³ÖÖÕ¥ÖÕ« Õ§Õ»Õ« Õ±ÖÕ¡Õ¾Õ¸ÖÕ¸ÖÕ´ --- */
.books-section {
  padding: 54px 0 48px 0;
  background: #f4f8ff;
  text-align: center;
}

.books-title {
  font-size: 2rem;
  color: #07274d;
  font-weight: 700;
  margin-bottom: 36px;
  letter-spacing: 0.5px;
}

.books-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  justify-items: center;
}


/* --- Ô³Õ«ÖÖ --- */
.book-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 24px rgba(30,91,216,0.08);
  overflow: hidden;
  width: 100%;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s, transform 0.2s;
}

.book-card:hover {
  box-shadow: 0 8px 40px rgba(30,91,216,0.14);
  transform: translateY(-8px) scale(1.03);
}


.book-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px 16px 16px 16px;
}

.book-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #e6eaff;
}

.book-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1749b1;
  margin-bottom: 5px;
  flex-grow: 1;
}

.book-info p {
  font-size: 0.97rem;
  color: #444b5d;
  margin: 0 0 14px 0;
}

.book-info a {
  display: inline-block;
  margin-top: auto;
  background: #03366d;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s;
  align-self: center;
}

.book-info a:hover {
  background: #1f2c44;
}





/* --- Ô´Õ«Õ¿Õ¥Õ¬ Õ¶Õ´Õ¸ÖÕ·Õ¨ Õ¯Õ¸Õ³Õ¡Õ¯ --- */
/* .popular-link {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 6px;
  background: #07274d;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.18s, color 0.18s;
}

.popular-link:hover {
  background: #1749b1;
  color: #fff;
} */

/* --- ÕÕ¥Õ½ÕºÕ¸Õ¶Õ½Õ«Õ¾Õ¸ÖÕ©ÕµÕ¸ÖÕ¶ --- */
@media (max-width: 1100px) {
  .books-list {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 45px;
  }
}

@media (max-width: 800px) {
  .books-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .books-list {
    grid-template-columns: 1fr;
  }
}

.encyclopedia-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #dce5fa; /* ÖÕ¸Õ¶Õ« Õ£Õ¸ÖÕµÕ¶Õ¨, Õ¯Õ¡ÖÕ¸Õ² Õ¥Ö ÖÕ¸Õ­Õ¥Õ¬ */
  padding: 40px 60px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 1200px;
  gap: 40px;
}

.encyclopedia-hero-content {
  flex: 1;
}

.encyclopedia-hero-content h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  background: white;
  padding: 8px 14px;
  display: inline-block;
}

.encyclopedia-hero-content p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.encyclopedia-hero-image {
  flex: 1;
  text-align: right;
}

.encyclopedia-hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ÕÕ¸Õ¢Õ¡ÕµÕ¬ Õ¿Õ¡ÖÕ¢Õ¥ÖÕ¡Õ¯ */
@media (max-width: 900px) {
  .encyclopedia-hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .encyclopedia-hero-image {
    text-align: center;
    margin-top: 20px;
  }
}


/* logo */

.logo{
  display:flex;
  align-items:center;
  text-decoration:none;
}
.logo img{
  height: 66px;          /* Õ¯Õ¡Õ¼Õ¡Õ¾Õ¡ÖÕ¸ÖÕ´ Õ¥Õ¶Ö Õ¢Õ¡ÖÕ±ÖÕ¸ÖÕ©ÕµÕ¡Õ´Õ¢ */
  width: auto;           /* aspect ratio ÕºÕ¡Õ°ÕºÕ¡Õ¶Õ¾Õ« */
  display:block;         /* Õ¶Õ¡Õ­Õ¨Õ¶Õ¿ÖÕ¥Õ¬Õ« Õ¼Õ¥Õ¶Õ¤Õ¥ÖÕ«Õ¶Õ£ */
  border-radius: 4px;    /* Õ¥Õ©Õ¥ ÕºÕ¥Õ¿Ö Õ§ ÖÕ¡ÖÕ¸ÖÕ¯ Õ¡Õ¶Õ¯ÕµÕ¸ÖÕ¶ */
  box-shadow: 0 0 0 rgba(0,0,0,0); /* hover-Õ« Õ°Õ¡Õ´Õ¡Ö transition */
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.logo:hover img{
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

/* Õ´Õ¸ÖÕ© header-Õ« Õ¾ÖÕ¡, Õ¥Õ©Õ¥ Õ¬Õ¸Õ£Õ¸Õ¶ Õ´Õ¸ÖÕ£ Õ§ Õ¸Ö ÕºÕ¥Õ¿Ö Õ§ Õ©Õ¥Õ©ÖÕ¡ÖÕ¶Õ¥Õ¶Ö */
.header-dark .logo img{
  filter: brightness(1.15) contrast(1.05);
}

/* Õ´Õ¸Õ¢Õ¡ÕµÕ¬ */
@media (max-width:900px){
  .logo img{ height:34px; }
}


/* search */

.search-form {
  display: flex;
  justify-content: end;
  margin: 10px 13px;
}
.search-form input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
  width: 290px;
}
.search-form button {
  padding: 8px 15px;
  border: none;
  background: #04264e;
  color: white;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}
.search-form button:hover {
  background: #000910;
}

@media (max-width: 480px) {
  .search-form {
    flex-direction: column;
    align-items: center;
  }
  .search-form input {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 8px;
  }
  .search-form button {
    width: 100%;
    border-radius: 6px;
  }
}


/* Վերադառնալ վերև կոճակ */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #03366d;
  color: white;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 22px;
  cursor: pointer;
  display: none; /* սկզբում թաքնված է */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.3s ease-in-out;
  z-index: 999;
}

#backToTop:hover {
  background-color: #011121;
  transform: translateY(-3px);
}

