body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #fff;
  background: #e6e6e6 url('background.jpg') no-repeat center center fixed;
  background-size: cover;
}

/* === TEPADAGI OQ CHIZIQ / PANELNI YO‘QOTISH === */
nav,
.navbar,
.topbar,
.auth-bar,
.user-bar,
.header,
.top-header {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* Agar oq panel body yoki html marginidan bo‘lsa */
html,
body {
  margin: 0;
  padding: 0;
}

/* Login qismi turgan yuqori panel oq bo‘lsa, uni fon bilan moslashtiradi */
body > div:first-child {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

/* === ASOSIY SAHIFA HEADER === */
.main-header {
  background-color: rgba(0, 85, 170, 0.8);
  text-align: center;
  padding: 40px 20px;
}

.main-header h1 {
  margin: 0;
  font-size: 36px;
}

.main-header p {
  font-size: 18px;
  margin-top: 10px;
}

/* === ASOSIY MODUL KARTOCHKALARI === */
.menu-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px;
}

.menu-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.menu-card:hover {
  transform: scale(1.03);
  box-shadow: 0 16px 30px rgba(0, 255, 204, 0.3);
}

.menu-icon {
  font-size: 40px;
  color: #00ffcc;
}

.menu-content h2 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #00FF00;
}

.menu-content p {
  margin: 0 0 10px;
  color: #fff;
}

.menu-content a {
  text-decoration: none;
  color: #00f0ff;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: bold;
}

.menu-content a:hover {
  background-color: #00c9b7;
  color: white;
}

/* === MUSTAQIL ISH KARTOCHKALARI === */
.topic-list label {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  color: #fff;
  flex-wrap: wrap;
  align-items: flex-start;
  line-height: 1.4;
}

.topic-list label:hover,
.topic-list label:focus-within {
  transform: scale(1.03);
  box-shadow: 0 16px 30px rgba(0, 255, 204, 0.3);
  border-color: rgba(0, 255, 204, 0.5);
}

.topic-list label strong {
  display: block;
  font-size: 16px;
  color: #00FF00;
}

.topic-list label .sub-brief {
  display: block;
  font-size: 14px;
  color: #ffffff;
  opacity: .9;
}

/* === TEZKOR PLATFORMALAR === */
.quicklinks .quicklink-grid {
  margin-top: 12px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.ql-pill {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  color: #001a2a;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 10px 14px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.ql-pill:hover {
  transform: scale(1.06);
  background: #00c9b7;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 255, 204, 0.35);
}

/* === PROFIL VA CHIQISH QISMI === */
.user-panel,
.auth-panel,
.profile-panel {
  position: absolute;
  top: 18px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
}

.user-info,
.profile-box {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(0, 255, 204, 0.14);
  border: 1px solid rgba(0, 255, 204, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0, 255, 204, 0.18);
}

.user-info::before,
.profile-box::before {
  content: "👤";
  font-size: 16px;
}

.logout-btn,
.btn-logout,
.exit-btn {
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00f0ff, #00c9b7);
  color: #002033 !important;
  font-weight: 800;
  font-size: 14px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 255, 204, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.logout-btn:hover,
.btn-logout:hover,
.exit-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 30px rgba(0, 255, 204, 0.45);
  background: linear-gradient(135deg, #00c9b7, #00ffcc);
  color: #001a2a !important;
}

/* ========================================================= */
/* === NAZARIY MODUL SAHIFASI === */
/* ========================================================= */

.nazariy-page {
  min-height: 100vh;
  padding: 28px 28px 45px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #163247;
  position: relative;
}

.nazariy-page::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: -1;
}

.nazariy-header {
  width: 100%;
  max-width: 1020px;
  text-align: center;
  padding: 24px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(70, 150, 220, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(35, 94, 150, 0.13);
}

.nazariy-header h1 {
  margin: 0;
  font-size: 33px;
  font-weight: 900;
  color: #145f9c;
}

.nazariy-header p {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: #48606f;
  line-height: 1.5;
}

.mini-info {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(20, 132, 216, 0.09);
  border: 1px solid rgba(20, 132, 216, 0.16);
  color: #14639e;
  font-size: 13px;
  font-weight: 800;
}

.nazariy-container {
  width: 100%;
  max-width: 1020px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.nazariy-card {
  position: relative;
  min-height: 165px;
  padding: 20px 16px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #17354a;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(40, 130, 200, 0.18);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  box-shadow: 0 12px 26px rgba(45, 105, 165, 0.12);
  transition: 0.28s ease;
}

.nazariy-card::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  top: -40px;
  right: -40px;
  background: rgba(36, 169, 255, 0.12);
  transition: 0.28s ease;
}

.nazariy-card::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  bottom: -24px;
  left: -24px;
  background: rgba(63, 219, 174, 0.14);
  transition: 0.28s ease;
}

.nazariy-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(20, 132, 216, 0.34);
  box-shadow: 0 18px 38px rgba(45, 105, 165, 0.18);
}

.card-icon {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 132, 216, 0.16);
  box-shadow: 0 8px 17px rgba(45, 105, 165, 0.11);
}

.nazariy-card strong {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 7px;
  color: #145f9c;
}

.nazariy-card span {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: #48606f;
  line-height: 1.42;
}

.card-note {
  position: relative;
  z-index: 2;
  margin-top: 10px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: #14755a;
  background: rgba(63, 219, 174, 0.13);
  border: 1px solid rgba(63, 219, 174, 0.21);
}

/* === UMUMIY BO‘LIM QUTISI === */
.section-box {
  width: 100%;
  max-width: 1020px;
  margin-top: 24px;
  padding: 19px 21px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(70, 150, 220, 0.17);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
  box-shadow: 0 12px 28px rgba(45, 105, 165, 0.11);
}

.section-title {
  margin: 0 0 15px;
  font-size: 20px;
  color: #145f9c;
  text-align: center;
  font-weight: 900;
}

/* === O‘ZLASHTIRISH KO‘RSATKICHI === */
.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.progress-card {
  padding: 15px;
  border-radius: 18px;
  background: rgba(238, 248, 255, 0.62);
  border: 1px solid rgba(20, 132, 216, 0.13);
}

.progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 900;
  color: #23506d;
}

.progress-percent {
  color: #14755a;
  font-weight: 900;
}

.progress-line {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(20, 132, 216, 0.12);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #58c6ff, #62dfae);
  transition: width 0.5s ease;
}

.progress-status {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #607180;
}

/* === AYLANADIGAN NAZARIY ESLATMALAR === */
.theory-slider {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  border-radius: 20px;
  background: rgba(238, 248, 255, 0.58);
  border: 1px solid rgba(20, 132, 216, 0.13);
}

.theory-slide {
  display: none;
  min-height: 150px;
  padding: 26px 24px;
  text-align: center;
  animation: softFade 0.8s ease;
}

.theory-slide.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@keyframes softFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.theory-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 12px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 132, 216, 0.15);
  box-shadow: 0 8px 17px rgba(45, 105, 165, 0.10);
}

.theory-slide h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: #145f9c;
  font-weight: 900;
}

.theory-slide p {
  max-width: 720px;
  margin: 0;
  font-size: 14px;
  color: #48606f;
  font-weight: 650;
  line-height: 1.6;
}

.theory-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-top: 14px;
}

.theory-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(20, 132, 216, 0.22);
  transition: 0.25s ease;
}

.theory-dot.active {
  width: 24px;
  border-radius: 999px;
  background: #58c6ff;
}

/* === KUNLIK MASLAHAT === */
.daily-tip {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 17px;
  border-radius: 20px;
  background: rgba(239, 255, 249, 0.60);
  border: 1px solid rgba(63, 219, 174, 0.19);
}

.tip-icon {
  min-width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(20, 132, 216, 0.13);
}

.tip-content h3 {
  margin: 0 0 7px;
  color: #145f9c;
  font-size: 17px;
}

.tip-content p {
  margin: 0;
  color: #48606f;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

/* === RESPONSIVE === */
@media (max-width: 950px) {
  .nazariy-container,
  .progress-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .section-box {
    max-width: 460px;
  }
}

@media (max-width: 768px) {
  .quicklinks .quicklink-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .nazariy-page {
    padding: 22px 14px 34px;
  }

  .nazariy-header h1 {
    font-size: 27px;
  }

  .nazariy-header p {
    font-size: 14px;
  }

  .mini-info {
    font-size: 12px;
    line-height: 1.4;
    border-radius: 16px;
  }

  .daily-tip {
    align-items: flex-start;
  }

  .theory-slide {
    padding: 22px 16px;
  }
}

@media (max-width: 480px) {
  .quicklinks .quicklink-grid {
    grid-template-columns: 1fr;
  }
}
/* === NAZARIY MODULNI YANADA CHIROYLI JOYLASHTIRISH === */

.nazariy-page {
  padding: 22px 24px 35px !important;
}

.nazariy-page::before {
  background: rgba(255, 255, 255, 0.34) !important;
  backdrop-filter: blur(1.2px) !important;
  -webkit-backdrop-filter: blur(1.2px) !important;
}

.nazariy-header,
.section-box {
  max-width: 1180px !important;
  background: rgba(255, 255, 255, 0.45) !important;
  border: 1px solid rgba(120, 210, 255, 0.28) !important;
  backdrop-filter: blur(16px) saturate(160%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(160%) !important;
  box-shadow:
    0 16px 38px rgba(20, 80, 130, 0.16),
    inset 0 0 24px rgba(255, 255, 255, 0.22) !important;
}

.nazariy-header {
  padding: 22px 20px !important;
  border-radius: 24px !important;
}

.nazariy-header h1 {
  font-size: 31px !important;
}

.nazariy-header p {
  font-size: 14px !important;
}

.nazariy-container {
  max-width: 1180px !important;
  margin-top: 22px !important;
  gap: 16px !important;
}

.nazariy-card {
  min-height: 148px !important;
  padding: 17px 14px !important;
  background: rgba(255, 255, 255, 0.36) !important;
  border: 1px solid rgba(130, 220, 255, 0.34) !important;
  backdrop-filter: blur(18px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
  box-shadow:
    0 14px 32px rgba(20, 85, 145, 0.16),
    inset 0 0 25px rgba(255, 255, 255, 0.18) !important;
}

.nazariy-card:hover {
  transform: translateY(-7px) scale(1.02) !important;
  background: rgba(255, 255, 255, 0.50) !important;
  border-color: rgba(0, 200, 255, 0.72) !important;
  box-shadow:
    0 0 0 2px rgba(0, 200, 255, 0.22),
    0 0 28px rgba(0, 195, 255, 0.52),
    0 18px 42px rgba(20, 85, 145, 0.24) !important;
}

.nazariy-card:hover .card-icon {
  box-shadow:
    0 0 18px rgba(0, 190, 255, 0.65),
    inset 0 0 16px rgba(255, 255, 255, 0.35) !important;
}

.card-icon {
  width: 49px !important;
  height: 49px !important;
  font-size: 25px !important;
  background: rgba(255, 255, 255, 0.54) !important;
}

.nazariy-card strong {
  font-size: 18px !important;
}

.nazariy-card span {
  font-size: 13px !important;
}

.card-note {
  margin-top: 8px !important;
  padding: 5px 10px !important;
}

.section-box {
  margin-top: 18px !important;
  padding: 17px 20px !important;
  border-radius: 23px !important;
}

.section-title {
  font-size: 19px !important;
  margin-bottom: 13px !important;
}

.progress-card {
  background: rgba(238, 248, 255, 0.48) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* === NAZARIY ESLATMALAR IXCHAMROQ === */

.theory-slider {
  min-height: 130px !important;
  background: rgba(238, 248, 255, 0.42) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.theory-slide {
  min-height: 130px !important;
  padding: 20px 22px !important;
}

.theory-icon {
  width: 46px !important;
  height: 46px !important;
  font-size: 25px !important;
  margin-bottom: 8px !important;
}

.theory-slide h3 {
  font-size: 17px !important;
}

.theory-slide p {
  font-size: 13.5px !important;
}

/* === INFOGRAFIKA YARATISH ILOVALARI SLIDER === */

.tools-slider {
  position: relative;
  overflow: hidden;
  min-height: 165px;
  border-radius: 22px;
  background: rgba(238, 248, 255, 0.42);
  border: 1px solid rgba(20, 132, 216, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.tool-slide {
  display: none;
  min-height: 165px;
  padding: 24px 26px;
  animation: toolFade 0.85s ease;
}

.tool-slide.active {
  display: grid;
  grid-template-columns: 90px 1fr;
  align-items: center;
  gap: 20px;
}

@keyframes toolFade {
  from {
    opacity: 0;
    transform: translateX(22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.tool-logo {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(130, 220, 255, 0.34);
  box-shadow:
    0 0 24px rgba(0, 190, 255, 0.22),
    inset 0 0 18px rgba(255, 255, 255, 0.30);
}

.tool-content h3 {
  margin: 0 0 8px;
  font-size: 20px;
  color: #145f9c;
  font-weight: 900;
}

.tool-content p {
  margin: 0;
  color: #405b6d;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tool-tags span {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0, 195, 255, 0.13);
  border: 1px solid rgba(0, 195, 255, 0.20);
  color: #126b91;
  font-size: 12px;
  font-weight: 850;
}

.tools-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding-top: 13px;
}

.tool-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(20, 132, 216, 0.22);
  transition: 0.25s ease;
}

.tool-dot.active {
  width: 25px;
  border-radius: 999px;
  background: #00bfff;
  box-shadow: 0 0 14px rgba(0, 190, 255, 0.55);
}

/* === PASTDAGI BO‘LIMLARNI TEPAROQ VA IXCHAM QILISH === */

.daily-tip {
  padding: 15px !important;
  background: rgba(239, 255, 249, 0.46) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tip-icon {
  width: 50px !important;
  min-width: 50px !important;
  height: 50px !important;
  font-size: 27px !important;
}

.tip-content h3 {
  font-size: 16px !important;
}

.tip-content p {
  font-size: 13.5px !important;
}

/* === RESPONSIVE === */

@media (max-width: 950px) {
  .tool-slide.active {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tool-logo {
    margin: 0 auto;
  }

  .tool-tags {
    justify-content: center;
  }
}
/* ========================================================= */
/* === NAZARIY MODUL: KENG, SHISHASIMON, YORUG‘ EFFEKTLI === */
/* ========================================================= */

.nazariy-page {
  padding: 18px 18px 32px !important;
  color: #153246 !important;
}

/* Orqa fon oq pardasini kamaytirish */
.nazariy-page::before {
  background: rgba(255, 255, 255, 0.22) !important;
  backdrop-filter: blur(0.8px) !important;
  -webkit-backdrop-filter: blur(0.8px) !important;
}

/* Barcha asosiy bloklarni kengaytirish */
.nazariy-header,
.nazariy-container,
.section-box {
  width: min(94vw, 1320px) !important;
  max-width: 1320px !important;
}

/* Header ixchamroq va kengroq */
.nazariy-header {
  padding: 18px 22px !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.34) !important;
  border: 1px solid rgba(120, 220, 255, 0.34) !important;
  backdrop-filter: blur(18px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(180%) !important;
  box-shadow:
    0 14px 34px rgba(20, 80, 130, 0.16),
    inset 0 0 26px rgba(255, 255, 255, 0.28) !important;
}

.nazariy-header h1 {
  font-size: 30px !important;
  color: #075f9d !important;
}

.nazariy-header p {
  font-size: 14px !important;
  margin-top: 9px !important;
}

.mini-info {
  margin-top: 11px !important;
  padding: 7px 14px !important;
  background: rgba(210, 240, 255, 0.45) !important;
  border: 1px solid rgba(0, 170, 255, 0.24) !important;
}

/* 3 ta kartochkani tepaga yaqinlashtirish */
.nazariy-container {
  margin-top: 18px !important;
  gap: 14px !important;
}

/* Kartochkalar: haqiqiy glass effekt */
.nazariy-card {
  min-height: 138px !important;
  padding: 15px 14px !important;
  border-radius: 22px !important;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.42), rgba(220,245,255,0.24)) !important;
  border: 1px solid rgba(120, 220, 255, 0.38) !important;

  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;

  box-shadow:
    0 12px 30px rgba(15, 80, 135, 0.16),
    inset 0 0 28px rgba(255, 255, 255, 0.25) !important;
}

/* Hoverda ko‘k nur */
.nazariy-card:hover {
  transform: translateY(-7px) scale(1.018) !important;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.56), rgba(210,245,255,0.34)) !important;
  border-color: rgba(0, 200, 255, 0.88) !important;

  box-shadow:
    0 0 0 2px rgba(0, 200, 255, 0.22),
    0 0 28px rgba(0, 195, 255, 0.58),
    0 0 65px rgba(0, 195, 255, 0.28),
    0 18px 42px rgba(15, 80, 135, 0.24) !important;
}

.nazariy-card::before {
  background: rgba(0, 190, 255, 0.13) !important;
}

.nazariy-card::after {
  background: rgba(0, 255, 210, 0.12) !important;
}

.card-icon {
  width: 48px !important;
  height: 48px !important;
  font-size: 25px !important;
  background: rgba(255, 255, 255, 0.58) !important;
  border: 1px solid rgba(0, 180, 255, 0.22) !important;
}

.nazariy-card:hover .card-icon {
  box-shadow:
    0 0 18px rgba(0, 195, 255, 0.75),
    inset 0 0 14px rgba(255, 255, 255, 0.42) !important;
}

.nazariy-card strong {
  font-size: 18px !important;
}

.nazariy-card span {
  font-size: 12.8px !important;
}

.card-note {
  margin-top: 7px !important;
  padding: 5px 10px !important;
  background: rgba(0, 220, 180, 0.14) !important;
}

/* Pastki bloklarni yuqoriroq va ixchamroq qilish */
.section-box {
  margin-top: 14px !important;
  padding: 15px 18px !important;
  border-radius: 24px !important;

  background: rgba(255, 255, 255, 0.34) !important;
  border: 1px solid rgba(120, 220, 255, 0.30) !important;

  backdrop-filter: blur(18px) saturate(175%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(175%) !important;

  box-shadow:
    0 14px 34px rgba(20, 80, 130, 0.14),
    inset 0 0 26px rgba(255, 255, 255, 0.22) !important;
}

.section-title {
  font-size: 18px !important;
  margin-bottom: 11px !important;
}

/* Progress bloklari ixcham */
.progress-card {
  padding: 13px !important;
  background: rgba(235, 248, 255, 0.44) !important;
  border: 1px solid rgba(0, 170, 255, 0.16) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.progress-top {
  font-size: 13.2px !important;
}

.progress-status {
  font-size: 11.8px !important;
}

/* Nazariy eslatmalar kichikroq */
.theory-slider {
  min-height: 116px !important;
  background: rgba(235, 248, 255, 0.38) !important;
  border: 1px solid rgba(0, 170, 255, 0.16) !important;
}

.theory-slide {
  min-height: 116px !important;
  padding: 17px 20px !important;
}

.theory-icon {
  width: 42px !important;
  height: 42px !important;
  font-size: 23px !important;
  margin-bottom: 7px !important;
}

.theory-slide h3 {
  font-size: 16px !important;
  margin-bottom: 6px !important;
}

.theory-slide p {
  font-size: 13px !important;
  max-width: 900px !important;
}

.theory-dots,
.tools-dots {
  padding-top: 10px !important;
}

/* ========================================================= */
/* === INFOGRAFIKA YARATISH ILOVALARI: REAL IKONKA SLIDER === */
/* ========================================================= */

.tools-slider {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  border-radius: 22px;

  background:
    linear-gradient(135deg, rgba(255,255,255,0.38), rgba(220,245,255,0.22));
  border: 1px solid rgba(120, 220, 255, 0.30);

  backdrop-filter: blur(18px) saturate(175%);
  -webkit-backdrop-filter: blur(18px) saturate(175%);

  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.18),
    0 10px 26px rgba(20, 80, 130, 0.10);
}

.tool-slide {
  display: none;
  min-height: 178px;
  padding: 23px 28px;
  animation: toolFade 0.85s ease;
}

.tool-slide.active {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 22px;
}

@keyframes toolFade {
  from {
    opacity: 0;
    transform: translateX(26px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Haqiqiy ikonka qutisi */
.tool-logo {
  width: 76px;
  height: 76px;
  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(0, 185, 255, 0.26);

  box-shadow:
    0 0 18px rgba(0, 190, 255, 0.24),
    inset 0 0 18px rgba(255, 255, 255, 0.35);
}

.tool-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.tool-content h3 {
  margin: 0 0 8px;
  font-size: 21px;
  color: #075f9d;
  font-weight: 900;
}

.tool-content p {
  margin: 0;
  color: #344f62;
  font-size: 14.2px;
  font-weight: 650;
  line-height: 1.58;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tool-tags span {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0, 195, 255, 0.13);
  border: 1px solid rgba(0, 195, 255, 0.22);
  color: #0d6890;
  font-size: 12px;
  font-weight: 850;
}

/* Nuqtalar */
.tool-dot,
.theory-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  background: rgba(20, 132, 216, 0.25) !important;
  transition: 0.25s ease;
}

.tool-dot.active,
.theory-dot.active {
  width: 24px !important;
  border-radius: 999px !important;
  background: #00bfff !important;
  box-shadow: 0 0 13px rgba(0, 190, 255, 0.55);
}

/* Kunlik maslahat ixcham */
.daily-tip {
  padding: 14px !important;
  background: rgba(239, 255, 249, 0.42) !important;
  border: 1px solid rgba(63, 219, 174, 0.20) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

.tip-icon {
  width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
  font-size: 25px !important;
}

.tip-content h3 {
  font-size: 16px !important;
}

.tip-content p {
  font-size: 13.3px !important;
}

/* Kichik ekran */
@media (max-width: 950px) {
  .nazariy-header,
  .nazariy-container,
  .section-box {
    width: min(94vw, 520px) !important;
  }

  .tool-slide.active {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tool-logo {
    margin: 0 auto;
  }

  .tool-tags {
    justify-content: center;
  }
}
/* ========================================================= */
/* === NAZARIY MODUL: OQ PARDANI OLIB TASHLASH + KO‘K EFFEKT === */
/* ========================================================= */

/* Orqa fondagi oqishlikni butunlay olib tashlash */
.nazariy-page::before {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

/* Sahifa umumiy joylashuvi */
.nazariy-page {
  padding: 18px 18px 32px !important;
  color: #153246 !important;
}

/* Barcha asosiy bloklarni kengroq qilish */
.nazariy-header,
.nazariy-container,
.section-box {
  width: min(94vw, 1320px) !important;
  max-width: 1320px !important;
}

/* Header shishasimon, lekin fonni yopib tashlamaydi */
.nazariy-header {
  padding: 18px 22px !important;
  border-radius: 24px !important;

  background: rgba(255, 255, 255, 0.20) !important;
  border: 1px solid rgba(120, 220, 255, 0.35) !important;

  backdrop-filter: blur(12px) saturate(170%) !important;
  -webkit-backdrop-filter: blur(12px) saturate(170%) !important;

  box-shadow:
    0 12px 32px rgba(0, 80, 150, 0.20),
    inset 0 0 28px rgba(255, 255, 255, 0.18) !important;

  transition: 0.3s ease;
}

.nazariy-header:hover {
  border-color: rgba(0, 200, 255, 0.85) !important;
  box-shadow:
    0 0 0 2px rgba(0, 200, 255, 0.18),
    0 0 30px rgba(0, 195, 255, 0.45),
    0 16px 38px rgba(0, 80, 150, 0.24),
    inset 0 0 32px rgba(255, 255, 255, 0.22) !important;
}

.nazariy-header h1 {
  font-size: 30px !important;
  color: #035f9e !important;
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.55);
}

.nazariy-header p {
  font-size: 14px !important;
  margin-top: 9px !important;
}

.mini-info {
  margin-top: 11px !important;
  padding: 7px 14px !important;
  background: rgba(210, 240, 255, 0.35) !important;
  border: 1px solid rgba(0, 170, 255, 0.26) !important;
}

/* 3 ta kartochkani ixchamroq va chiroyli qilish */
.nazariy-container {
  margin-top: 18px !important;
  gap: 14px !important;
}

.nazariy-card {
  min-height: 138px !important;
  padding: 15px 14px !important;
  border-radius: 22px !important;

  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.30), rgba(210, 245, 255, 0.18)) !important;
  border: 1px solid rgba(120, 220, 255, 0.38) !important;

  backdrop-filter: blur(15px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(180%) !important;

  box-shadow:
    0 12px 30px rgba(0, 80, 150, 0.18),
    inset 0 0 26px rgba(255, 255, 255, 0.20) !important;

  transition: 0.3s ease !important;
}

.nazariy-card:hover {
  transform: translateY(-7px) scale(1.02) !important;

  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.44), rgba(205, 245, 255, 0.28)) !important;

  border-color: rgba(0, 200, 255, 0.95) !important;

  box-shadow:
    0 0 0 2px rgba(0, 200, 255, 0.24),
    0 0 28px rgba(0, 195, 255, 0.65),
    0 0 70px rgba(0, 195, 255, 0.32),
    0 18px 42px rgba(0, 80, 150, 0.28),
    inset 0 0 30px rgba(255, 255, 255, 0.25) !important;
}

.nazariy-card::before {
  background: rgba(0, 190, 255, 0.13) !important;
}

.nazariy-card::after {
  background: rgba(0, 255, 210, 0.12) !important;
}

.card-icon {
  width: 48px !important;
  height: 48px !important;
  font-size: 25px !important;

  background: rgba(255, 255, 255, 0.42) !important;
  border: 1px solid rgba(0, 180, 255, 0.24) !important;

  transition: 0.3s ease !important;
}

.nazariy-card:hover .card-icon {
  box-shadow:
    0 0 20px rgba(0, 195, 255, 0.80),
    inset 0 0 16px rgba(255, 255, 255, 0.45) !important;
}

.nazariy-card strong {
  font-size: 18px !important;
}

.nazariy-card span {
  font-size: 12.8px !important;
}

.card-note {
  margin-top: 7px !important;
  padding: 5px 10px !important;
  background: rgba(0, 220, 180, 0.14) !important;
}

/* Har bir katta bo‘limga ko‘k effekt */
.section-box {
  margin-top: 14px !important;
  padding: 15px 18px !important;
  border-radius: 24px !important;

  background: rgba(255, 255, 255, 0.20) !important;
  border: 1px solid rgba(120, 220, 255, 0.32) !important;

  backdrop-filter: blur(13px) saturate(170%) !important;
  -webkit-backdrop-filter: blur(13px) saturate(170%) !important;

  box-shadow:
    0 12px 32px rgba(0, 80, 150, 0.18),
    inset 0 0 26px rgba(255, 255, 255, 0.16) !important;

  transition: 0.3s ease !important;
}

.section-box:hover {
  border-color: rgba(0, 200, 255, 0.90) !important;

  box-shadow:
    0 0 0 2px rgba(0, 200, 255, 0.18),
    0 0 30px rgba(0, 195, 255, 0.50),
    0 0 68px rgba(0, 195, 255, 0.25),
    0 16px 40px rgba(0, 80, 150, 0.26),
    inset 0 0 30px rgba(255, 255, 255, 0.20) !important;
}

.section-title {
  font-size: 18px !important;
  margin-bottom: 11px !important;
  color: #035f9e !important;
}

/* Progress kartochkalari ham hoverda yonsin */
.progress-card {
  padding: 13px !important;
  background: rgba(235, 248, 255, 0.32) !important;
  border: 1px solid rgba(0, 170, 255, 0.18) !important;

  backdrop-filter: blur(11px) !important;
  -webkit-backdrop-filter: blur(11px) !important;

  transition: 0.3s ease !important;
}

.progress-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 200, 255, 0.82) !important;

  box-shadow:
    0 0 20px rgba(0, 195, 255, 0.38),
    0 12px 28px rgba(0, 80, 150, 0.20) !important;
}

.progress-top {
  font-size: 13.2px !important;
}

.progress-status {
  font-size: 11.8px !important;
}

/* Nazariy eslatmalar */
.theory-slider {
  min-height: 116px !important;

  background: rgba(235, 248, 255, 0.26) !important;
  border: 1px solid rgba(0, 170, 255, 0.18) !important;

  backdrop-filter: blur(11px) !important;
  -webkit-backdrop-filter: blur(11px) !important;

  transition: 0.3s ease !important;
}

.theory-slider:hover {
  border-color: rgba(0, 200, 255, 0.85) !important;

  box-shadow:
    0 0 22px rgba(0, 195, 255, 0.42),
    inset 0 0 22px rgba(255, 255, 255, 0.16) !important;
}

.theory-slide {
  min-height: 116px !important;
  padding: 17px 20px !important;
}

.theory-icon {
  width: 42px !important;
  height: 42px !important;
  font-size: 23px !important;
  margin-bottom: 7px !important;
}

.theory-slide h3 {
  font-size: 16px !important;
  margin-bottom: 6px !important;
}

.theory-slide p {
  font-size: 13px !important;
  max-width: 900px !important;
}

/* Infografika ilovalari bo‘limi */
.tools-slider {
  position: relative;
  overflow: hidden;
  min-height: 178px;
  border-radius: 22px;

  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(210, 245, 255, 0.14)) !important;

  border: 1px solid rgba(120, 220, 255, 0.34) !important;

  backdrop-filter: blur(14px) saturate(175%) !important;
  -webkit-backdrop-filter: blur(14px) saturate(175%) !important;

  box-shadow:
    inset 0 0 24px rgba(255, 255, 255, 0.14),
    0 10px 26px rgba(0, 80, 150, 0.14) !important;

  transition: 0.3s ease !important;
}

.tools-slider:hover {
  border-color: rgba(0, 200, 255, 0.90) !important;

  box-shadow:
    0 0 0 2px rgba(0, 200, 255, 0.18),
    0 0 32px rgba(0, 195, 255, 0.52),
    0 0 70px rgba(0, 195, 255, 0.25),
    inset 0 0 28px rgba(255, 255, 255, 0.20) !important;
}

.tool-slide {
  display: none;
  min-height: 178px;
  padding: 23px 28px;
  animation: toolFade 0.85s ease;
}

.tool-slide.active {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 22px;
}

@keyframes toolFade {
  from {
    opacity: 0;
    transform: translateX(26px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.tool-logo {
  width: 76px;
  height: 76px;
  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.42) !important;
  border: 1px solid rgba(0, 185, 255, 0.28) !important;

  box-shadow:
    0 0 20px rgba(0, 190, 255, 0.24),
    inset 0 0 18px rgba(255, 255, 255, 0.32) !important;

  transition: 0.3s ease !important;
}

.tools-slider:hover .tool-logo {
  box-shadow:
    0 0 24px rgba(0, 195, 255, 0.72),
    inset 0 0 20px rgba(255, 255, 255, 0.38) !important;
}

.tool-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
}

.tool-content h3 {
  margin: 0 0 8px;
  font-size: 21px;
  color: #035f9e;
  font-weight: 900;
}

.tool-content p {
  margin: 0;
  color: #29485e;
  font-size: 14.2px;
  font-weight: 650;
  line-height: 1.58;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tool-tags span {
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0, 195, 255, 0.13);
  border: 1px solid rgba(0, 195, 255, 0.22);
  color: #0d6890;
  font-size: 12px;
  font-weight: 850;
}

/* Nuqtalar */
.theory-dots,
.tools-dots {
  padding-top: 10px !important;
}

.tool-dot,
.theory-dot {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50%;
  background: rgba(20, 132, 216, 0.28) !important;
  transition: 0.25s ease;
}

.tool-dot.active,
.theory-dot.active {
  width: 24px !important;
  border-radius: 999px !important;
  background: #00bfff !important;
  box-shadow: 0 0 14px rgba(0, 190, 255, 0.65);
}

/* Kunlik maslahat */
.daily-tip {
  padding: 14px !important;

  background: rgba(239, 255, 249, 0.25) !important;
  border: 1px solid rgba(63, 219, 174, 0.22) !important;

  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;

  transition: 0.3s ease !important;
}

.daily-tip:hover {
  border-color: rgba(0, 200, 255, 0.80) !important;

  box-shadow:
    0 0 24px rgba(0, 195, 255, 0.38),
    inset 0 0 20px rgba(255, 255, 255, 0.14) !important;
}

.tip-icon {
  width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
  font-size: 25px !important;
}

.tip-content h3 {
  font-size: 16px !important;
}

.tip-content p {
  font-size: 13.3px !important;
}

/* Mobil moslashuv */
@media (max-width: 950px) {
  .nazariy-header,
  .nazariy-container,
  .section-box {
    width: min(94vw, 520px) !important;
  }

  .tool-slide.active {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tool-logo {
    margin: 0 auto;
  }

  .tool-tags {
    justify-content: center;
  }
}
/* ========================================================= */
/* === NAZARIY MODUL: OQISH FONNI QAYTARISH + OQROQ KARTOCHKA === */
/* ========================================================= */

/* Orqa fondagi oqish pardani qaytarish */
.nazariy-page::before {
  background: rgba(255, 255, 255, 0.46) !important;
  backdrop-filter: blur(1.5px) !important;
  -webkit-backdrop-filter: blur(1.5px) !important;
}

/* Umumiy matn ko‘rinishi */
.nazariy-page {
  color: #163247 !important;
}

/* Header va katta bo‘limlar oqroq */
.nazariy-header,
.section-box {
  background: rgba(255, 255, 255, 0.62) !important;
  border: 1px solid rgba(90, 180, 240, 0.28) !important;

  backdrop-filter: blur(16px) saturate(170%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(170%) !important;

  box-shadow:
    0 14px 34px rgba(35, 94, 150, 0.15),
    inset 0 0 26px rgba(255, 255, 255, 0.32) !important;
}

/* Hoverda ko‘k effekt saqlanadi */
.nazariy-header:hover,
.section-box:hover {
  border-color: rgba(0, 190, 255, 0.85) !important;
  box-shadow:
    0 0 0 2px rgba(0, 190, 255, 0.16),
    0 0 28px rgba(0, 195, 255, 0.42),
    0 16px 38px rgba(35, 94, 150, 0.22),
    inset 0 0 30px rgba(255, 255, 255, 0.38) !important;
}

/* 3 ta asosiy kartochkani oqroq qilish */
.nazariy-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(238, 250, 255, 0.58)) !important;

  border: 1px solid rgba(90, 190, 245, 0.32) !important;

  backdrop-filter: blur(18px) saturate(175%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(175%) !important;

  box-shadow:
    0 12px 28px rgba(35, 94, 150, 0.14),
    inset 0 0 24px rgba(255, 255, 255, 0.36) !important;
}

/* Kartochka ustiga bosganda / hoverda ko‘k nur */
.nazariy-card:hover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(230, 248, 255, 0.70)) !important;

  border-color: rgba(0, 190, 255, 0.90) !important;

  box-shadow:
    0 0 0 2px rgba(0, 190, 255, 0.20),
    0 0 26px rgba(0, 195, 255, 0.55),
    0 0 58px rgba(0, 195, 255, 0.26),
    0 18px 42px rgba(35, 94, 150, 0.22),
    inset 0 0 28px rgba(255, 255, 255, 0.42) !important;
}

/* Kartochka ichidagi ikonka oqroq */
.card-icon {
  background: rgba(255, 255, 255, 0.72) !important;
  border: 1px solid rgba(0, 170, 255, 0.22) !important;
}

.nazariy-card:hover .card-icon {
  box-shadow:
    0 0 18px rgba(0, 195, 255, 0.70),
    inset 0 0 16px rgba(255, 255, 255, 0.52) !important;
}

/* Progress kartochkalarini oqroq qilish */
.progress-card {
  background: rgba(255, 255, 255, 0.58) !important;
  border: 1px solid rgba(90, 190, 245, 0.22) !important;

  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.progress-card:hover {
  border-color: rgba(0, 190, 255, 0.80) !important;
  box-shadow:
    0 0 20px rgba(0, 195, 255, 0.34),
    0 12px 28px rgba(35, 94, 150, 0.17) !important;
}

/* Nazariy eslatmalar oqroq */
.theory-slider {
  background: rgba(255, 255, 255, 0.52) !important;
  border: 1px solid rgba(90, 190, 245, 0.22) !important;

  backdrop-filter: blur(13px) !important;
  -webkit-backdrop-filter: blur(13px) !important;
}

.theory-slider:hover {
  border-color: rgba(0, 190, 255, 0.82) !important;
  box-shadow:
    0 0 22px rgba(0, 195, 255, 0.36),
    inset 0 0 22px rgba(255, 255, 255, 0.30) !important;
}

/* Ilovalar sliderini oqroq qilish */
.tools-slider {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(235, 250, 255, 0.45)) !important;

  border: 1px solid rgba(90, 190, 245, 0.28) !important;

  backdrop-filter: blur(15px) saturate(170%) !important;
  -webkit-backdrop-filter: blur(15px) saturate(170%) !important;

  box-shadow:
    0 12px 28px rgba(35, 94, 150, 0.13),
    inset 0 0 24px rgba(255, 255, 255, 0.34) !important;
}

.tools-slider:hover {
  border-color: rgba(0, 190, 255, 0.88) !important;

  box-shadow:
    0 0 0 2px rgba(0, 190, 255, 0.17),
    0 0 30px rgba(0, 195, 255, 0.44),
    0 0 62px rgba(0, 195, 255, 0.20),
    inset 0 0 28px rgba(255, 255, 255, 0.40) !important;
}

/* Ilova ikonkalari oq fonda tursin */
.tool-logo {
  background: rgba(255, 255, 255, 0.74) !important;
  border: 1px solid rgba(0, 170, 255, 0.24) !important;

  box-shadow:
    0 0 18px rgba(0, 190, 255, 0.22),
    inset 0 0 18px rgba(255, 255, 255, 0.46) !important;
}

.tools-slider:hover .tool-logo {
  box-shadow:
    0 0 24px rgba(0, 195, 255, 0.62),
    inset 0 0 20px rgba(255, 255, 255, 0.58) !important;
}

/* Kunlik maslahat oqroq */
.daily-tip {
  background: rgba(255, 255, 255, 0.54) !important;
  border: 1px solid rgba(90, 190, 245, 0.22) !important;

  backdrop-filter: blur(13px) !important;
  -webkit-backdrop-filter: blur(13px) !important;
}

.daily-tip:hover {
  border-color: rgba(0, 190, 255, 0.78) !important;

  box-shadow:
    0 0 22px rgba(0, 195, 255, 0.34),
    inset 0 0 20px rgba(255, 255, 255, 0.34) !important;
}

/* Matnlar aniqroq ko‘rinsin */
.nazariy-card strong,
.section-title,
.theory-slide h3,
.tool-content h3,
.tip-content h3 {
  color: #075f9d !important;
}

.nazariy-card span,
.theory-slide p,
.tool-content p,
.tip-content p,
.progress-status {
  color: #38586d !important;
}
/* ========================================================= */
/* === ILOVALAR SLIDER: KATTA IKONKA + PREMIUM ALMASHISH === */
/* ========================================================= */

.tools-slider {
  position: relative !important;
  overflow: hidden !important;
  min-height: 205px !important;
  border-radius: 26px !important;

  background:
    radial-gradient(circle at top left, rgba(0, 190, 255, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 255, 200, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.70), rgba(235, 250, 255, 0.52)) !important;

  border: 1px solid rgba(90, 190, 245, 0.34) !important;
  backdrop-filter: blur(18px) saturate(175%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(175%) !important;

  box-shadow:
    0 14px 34px rgba(35, 94, 150, 0.16),
    inset 0 0 32px rgba(255, 255, 255, 0.40) !important;
}

/* O‘tish paytida ichkaridan nur yurgandek bo‘ladi */
.tools-slider::before {
  content: "";
  position: absolute;
  top: -80%;
  left: -40%;
  width: 70%;
  height: 260%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 190, 255, 0.20),
    rgba(255, 255, 255, 0.38),
    transparent
  );
  transform: rotate(18deg);
  animation: sliderLight 5s linear infinite;
  pointer-events: none;
}

@keyframes sliderLight {
  0% {
    left: -70%;
    opacity: 0;
  }

  18% {
    opacity: 1;
  }

  48% {
    opacity: 0.9;
  }

  100% {
    left: 120%;
    opacity: 0;
  }
}

.tool-slide {
  display: none;
  min-height: 205px !important;
  padding: 28px 34px !important;
  position: relative;
  z-index: 2;
}

/* Oddiy o‘tish emas: chiqishda zoom + rotate + blur */
.tool-slide.active {
  display: grid !important;
  grid-template-columns: 125px 1fr !important;
  align-items: center !important;
  gap: 26px !important;
  animation: premiumToolIn 0.9s cubic-bezier(.2, .9, .25, 1.15);
}

.tool-slide.leaving {
  display: grid !important;
  grid-template-columns: 125px 1fr !important;
  align-items: center !important;
  gap: 26px !important;
  animation: premiumToolOut 0.45s ease forwards;
}

@keyframes premiumToolIn {
  0% {
    opacity: 0;
    transform: translateX(70px) scale(0.92) rotateY(-18deg);
    filter: blur(8px);
  }

  55% {
    opacity: 1;
    transform: translateX(-8px) scale(1.025) rotateY(4deg);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1) rotateY(0);
    filter: blur(0);
  }
}

@keyframes premiumToolOut {
  0% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-45px) scale(0.94);
    filter: blur(6px);
  }
}

/* Ikonka to‘liq va kattaroq ko‘rinadi */
.tool-logo {
  width: 104px !important;
  height: 104px !important;
  border-radius: 30px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(230, 248, 255, 0.70)) !important;

  border: 1px solid rgba(0, 170, 255, 0.28) !important;

  box-shadow:
    0 0 0 6px rgba(0, 190, 255, 0.06),
    0 12px 28px rgba(35, 94, 150, 0.18),
    inset 0 0 26px rgba(255, 255, 255, 0.68) !important;

  animation: iconFloat 3.8s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

/* Muhim: ikonka kesilmasin */
.tool-logo img {
  width: 76px !important;
  height: 76px !important;
  max-width: 76px !important;
  max-height: 76px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Ba’zi ikonlar uzunroq bo‘lsa ham ichiga sig‘adi */
.tool-logo svg {
  width: 76px !important;
  height: 76px !important;
  max-width: 76px !important;
  max-height: 76px !important;
}

/* Hoverda ikonka atrofida ko‘k nur */
.tools-slider:hover .tool-logo {
  box-shadow:
    0 0 0 7px rgba(0, 190, 255, 0.08),
    0 0 28px rgba(0, 195, 255, 0.58),
    0 16px 34px rgba(35, 94, 150, 0.22),
    inset 0 0 30px rgba(255, 255, 255, 0.80) !important;
}

/* Matn ko‘proq, lekin chiroyli joylashsin */
.tool-content h3 {
  margin: 0 0 9px !important;
  font-size: 23px !important;
  color: #075f9d !important;
  font-weight: 900 !important;
}

.tool-content p {
  margin: 0 !important;
  color: #304e62 !important;
  font-size: 14.6px !important;
  font-weight: 650 !important;
  line-height: 1.62 !important;
}

.tool-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 14px !important;
}

.tool-tags span {
  padding: 7px 12px !important;
  border-radius: 999px !important;
  background: rgba(0, 195, 255, 0.13) !important;
  border: 1px solid rgba(0, 195, 255, 0.22) !important;
  color: #0d6890 !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

/* Nuqtalar ham chiroyliroq */
.tools-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  padding-top: 12px !important;
}

.tool-dot {
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  background: rgba(20, 132, 216, 0.28) !important;
  transition: 0.3s ease !important;
}

.tool-dot.active {
  width: 30px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, #00bfff, #62dfae) !important;
  box-shadow: 0 0 16px rgba(0, 190, 255, 0.70) !important;
}

/* Mobil ekran */
@media (max-width: 950px) {
  .tool-slide.active,
  .tool-slide.leaving {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .tool-logo {
    margin: 0 auto !important;
  }

  .tool-tags {
    justify-content: center !important;
  }
}

@media (max-width: 520px) {
  .tools-slider {
    min-height: 270px !important;
  }

  .tool-slide {
    padding: 24px 18px !important;
  }

  .tool-logo {
    width: 92px !important;
    height: 92px !important;
  }

  .tool-logo img {
    width: 66px !important;
    height: 66px !important;
  }

  .tool-content h3 {
    font-size: 20px !important;
  }

  .tool-content p {
    font-size: 13.5px !important;
  }
}
/* === ORQA FONDAGI OQISHLIKNI OZGINA KAMAYTIRISH === */

.nazariy-page::before {
  background: rgba(255, 255, 255, 0.30) !important;
  backdrop-filter: blur(0.8px) !important;
  -webkit-backdrop-filter: blur(0.8px) !important;
}

/* Header va asosiy bo‘limlar biroz shaffofroq */
.nazariy-header,
.section-box {
  background: rgba(255, 255, 255, 0.50) !important;
}

/* 3 ta asosiy kartochka ham biroz shaffofroq */
.nazariy-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.62), rgba(238, 250, 255, 0.46)) !important;
}

/* Progress kartochkalari */
.progress-card {
  background: rgba(255, 255, 255, 0.46) !important;
}

/* Nazariy eslatmalar */
.theory-slider {
  background: rgba(255, 255, 255, 0.42) !important;
}

/* Ilovalar bo‘limi */
.tools-slider {
  background:
    radial-gradient(circle at top left, rgba(0, 190, 255, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 255, 200, 0.10), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.48), rgba(235, 250, 255, 0.34)) !important;
}

/* Kunlik maslahat */
.daily-tip {
  background: rgba(255, 255, 255, 0.42) !important;
}
.module-progress {
  width: min(1120px, 92%);
  margin: 28px auto;
  padding: 24px;
  border-radius: 26px;
  background: rgba(235, 248, 255, 0.78);
  border: 1px solid rgba(56, 189, 248, 0.25);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(16px);
}

.module-progress h2 {
  text-align: center;
  margin: 0 0 20px;
  color: #0369a1;
  font-size: 1.45rem;
  font-weight: 800;
}

.progress-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.progress-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: #0f172a;
  font-weight: 800;
}

.progress-top b {
  color: #059669;
  font-size: 1.05rem;
}

.progress-line {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(203, 213, 225, 0.75);
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-line div {
  width: 0%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  transition: width 0.35s ease;
}

.progress-card p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .progress-grid {
    grid-template-columns: 1fr;
  }
}
/* === INFOGRAFIKA YARATISH ILOVALARI IKONKALARI TO‘G‘RILANDI === */

.tool-logo {
  width: 95px !important;
  height: 95px !important;
  min-width: 95px !important;
  border-radius: 26px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(0, 190, 255, 0.35) !important;

  box-shadow:
    0 0 25px rgba(0, 190, 255, 0.32),
    inset 0 0 18px rgba(255, 255, 255, 0.55) !important;

  overflow: hidden !important;
}

.tool-logo img,
.tool-logo svg {
  width: 68px !important;
  height: 68px !important;
  max-width: 68px !important;
  max-height: 68px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Slayder ichida ikonka va matn joylashuvi */
.tool-slide.active {
  display: grid !important;
  grid-template-columns: 115px 1fr !important;
  align-items: center !important;
  gap: 26px !important;
}

/* Kartochka ichidagi umumiy joylashuv */
.tool-slide {
  min-height: 190px !important;
  padding: 28px 32px !important;
}

/* Matn qismi */
.tool-content h3 {
  font-size: 22px !important;
  color: #075f9d !important;
  font-weight: 900 !important;
  margin: 0 0 8px !important;
}

.tool-content p {
  font-size: 14.5px !important;
  line-height: 1.6 !important;
  color: #344f62 !important;
  font-weight: 650 !important;
}

/* Taglar */
.tool-tags {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 13px !important;
}

.tool-tags span {
  padding: 6px 12px !important;
  border-radius: 999px !important;
  background: rgba(0, 195, 255, 0.15) !important;
  border: 1px solid rgba(0, 195, 255, 0.25) !important;
  color: #0d6890 !important;
  font-size: 12px !important;
  font-weight: 850 !important;
}

/* Telefon ekranida chiroyli tushishi uchun */
@media (max-width: 950px) {
  .tool-slide.active {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }

  .tool-logo {
    margin: 0 auto !important;
  }

  .tool-tags {
    justify-content: center !important;
  }
}

/* === FAQAT 6-BO‘LIMNI IXCHAM QILISH === */

.quicklinks {
  width: min(92vw, 1180px) !important;
  margin: 24px auto 0 !important;
  padding: 18px 22px !important;
  border-radius: 16px !important;
}

.quicklinks h2 {
  margin: 0 0 6px !important;
  font-size: 20px !important;
}

.quicklinks p {
  margin: 0 0 12px !important;
  font-size: 14px !important;
}

.quicklinks .quicklink-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px 12px !important;
  margin-top: 8px !important;
}

.quicklinks .ql-pill {
  height: 34px !important;
  min-height: 34px !important;
  padding: 6px 12px !important;
  font-size: 14px !important;
  border-radius: 8px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* === 6-BO‘LIM: IKONKALI PLATFORMALAR === */

.quicklinks .quicklink-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px 12px !important;
  margin-top: 12px !important;
}

.quicklinks .ql-pill {
  height: 46px !important;
  min-height: 46px !important;
  padding: 6px 14px !important;
  border-radius: 10px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;

  text-decoration: none !important;
  font-weight: 800 !important;
  font-size: 14px !important;

  color: #00f0ff !important;
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(180, 235, 255, 0.55) !important;
}

.quicklinks .ql-pill img {
  width: 26px !important;
  height: 26px !important;
  object-fit: contain !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}

.quicklinks .ql-pill span {
  display: inline-block !important;
  line-height: 1 !important;
}