:root {
  --primary-dark: #002b28;
  --primary-light: #66686a;
  --accent-teal: #e57e3a;
  --accent-orange: #ff8c42;
  --accent-orange-light: #ffad70;
  --accent-orange-dark: #e67530;
  --accent-gold: #e57e3a;
  --text-white: #ffffff;
  --text-dim: #aebdbb;
  --glass-bg: rgba(255, 255, 255, .05);
  --border-color: rgba(255, 255, 255, .1)
}

.chairman-img {
  background-image: url(/images/person.png)
}

.ceo-img {
  background-image: url(/images/person.png)
}

.signature {
  margin-top: 15px;
  font-size: 26px;
  color: #e07d3c;
  font-weight: 600;
  --primary-dark: #002b28;
  --primary-light: #66686a;
  --accent-teal: #e57e3a;
  --accent-orange: #ff8c42;
  --accent-orange-light: #ffad70;
  --accent-orange-dark: #e67530;
  --accent-gold: #e57e3a;
  --text-white: #ffffff;
  --text-dim: #aebdbb;
  --glass-bg: rgba(255, 255, 255, .05);
  --border-color: rgba(255, 255, 255, .1)
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: Cairo, sans-serif;
  color: var(--text-white);
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
  display: flex
}

.sidebar {
  width: 90px;
  background: #001f1d;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-inline-end: 1px solid var(--border-color);
  z-index: 100;
  padding: 20px 0
}

.logo-area {
  align-items: center;
  gap: 12px;
  cursor: pointer
}

.logo-area img {
  height: 30px
}

.nav-icons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  width: 100%;
  align-items: center;
  overflow-y: auto;
  scrollbar-width: none
}

.nav-icons::-webkit-scrollbar {
  display: none
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  transition: all .3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative
}

.nav-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor
}

.nav-btn:hover {
  background: #ffffff0d;
  color: var(--accent-teal)
}

.nav-btn.active {
  background: var(--accent-teal);
  color: var(--primary-dark);
  box-shadow: 0 0 15px #9cebc84d
}

.nav-btn:after {
  content: attr(title);
  position: absolute;
  inset-inline-start: 70px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  transform: translate(10px)
}

.nav-btn:hover:after {
  opacity: 1;
  transform: translate(0)
}

.back-home-btn {
  margin-top: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff1a;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s
}

.back-home-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark)
}

.back-home-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor
}

.content-area {
  flex: 1;
  position: relative;
  padding: 40px;
  background: radial-gradient(circle at top left, #0b3d39, var(--primary-dark))
}

.content-section {
  position: absolute;
  top: 40px;
  right: 40px;
  bottom: 40px;
  left: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .5s cubic-bezier(.25, .8, .25, 1);
  overflow-y: auto;
  padding-inline-start: 10px
}

.content-section.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0)
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-dim)
}

.breadcrumb a {
  color: var(--accent-teal);
  text-decoration: none;
  transition: .3s
}

.breadcrumb a:hover {
  color: var(--accent-orange-light)
}

.section-header {
  margin-bottom: 30px;
  position: relative
}

.section-header:after {
  content: "";
  position: absolute;
  bottom: -10px;
  inset-inline-start: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-teal), transparent);
  border-radius: 2px
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e57e3a33;
  color: var(--accent-teal);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(229, 126, 58, .3)
}

.content-section::-webkit-scrollbar {
  width: 6px
}

.content-section::-webkit-scrollbar-track {
  background: #0000001a
}

.content-section::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: 3px
}

.header-box {
  margin-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px
}

.header-box h1 {
  font-size: 36px;
  color: var(--accent-teal);
  margin-bottom: 5px
}

.header-box p {
  color: var(--text-dim);
  font-size: 18px
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 36px
}

.content-grid>* {
  flex: 0 0 calc(50% - 12.5px);
  max-width: calc(50% - 12.5px);
  min-width: calc(50% - 12.5px)
}

.text-block {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  transition: all .3s
}

.text-block:hover {
  transform: translateY(-5px);
  border-color: #e57e3a4d
}

.text-block h3 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 10px
}

.text-block p {
  line-height: 1.9;
  color: #ddd;
  font-size: 15px
}

.image-block {
  grid-row: span 2;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  min-height: 350px;
  width: 200%;
  box-shadow: 0 15px 40px #0006;
  position: relative;
  overflow: hidden
}

.image-block:before {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  height: 50%;
  background: linear-gradient(to top, rgb(229 126 58 / 40%), transparent)
}

.three-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 40px 40px 0 0
}

.three-cards>* {
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  min-width: calc(50% - 5px)
}

@media (max-width: 900px) {
  .three-cards>* {
    flex: 1 1 auto
  }
}

.info-card {
  background: #0006;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all .3s;
  position: relative;
  width: 90%;
  justify-content: center;
  overflow: hidden
}

.info-card:before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 50%;
  transform: translate(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-teal);
  border-radius: 0 0 3px 3px
}

.info-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-teal);
  box-shadow: 0 20px 40px #e57e3a33
}

.info-card .card-icon {
  width: 60px;
  height: 60px;
  background: #e57e3a26;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px solid rgba(229, 126, 58, .3)
}

.info-card .card-icon i {
  font-size: 24px;
  color: var(--accent-teal)
}

.info-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-white)
}

.info-card p {
  color: var(--text-dim);
  line-height: 1.8;
  font-size: 14px
}

.values-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px
}

.values-container>* {
  flex: 0 0 calc(33.3333% - (20px * 2 / 3));
  max-width: calc(33.3333% - (20px * 2 / 3));
  min-width: calc(33.3333% - (20px * 2 / 3))
}

.team>* {
  flex: 0 0 calc(20% - 20px);
  max-width: calc(20% - 20px);
  min-width: calc(20% - 20px)
}

.value-card {
  background: rgba(0, 0, 0, 0.4);
  padding: 8px;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  text-align: center;
  transition: all .4s;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden
}

.value-card:before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold));
  transform: scaleX(0);
  transition: transform .4s
}

.value-card:hover:before {
  transform: scaleX(1)
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-teal);
  box-shadow: 0 20px 40px #0000004d
}

.value-card .icon {
  font-size: 50px;
  display: block
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-white)
}

.value-card p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7
}

.timeline {
  border-inline-start: 2px solid var(--accent-teal);
  padding-inline-start: 30px
}

.timeline-item {
  position: relative;
  margin-bottom: 40px
}

.timeline-item:before {
  content: "";
  position: absolute;
  inset-inline-start: -36px;
  top: 5px;
  width: 10px;
  height: 10px;
  background: var(--accent-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #e57e3a33
}

.timeline-item .year {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-teal);
  margin-bottom: 5px
}

.timeline-item .desc {
  font-size: 16px;
  color: #ddd
}

.files-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px
}

.files-list>* {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  min-width: calc(50% - 10px)
}

.file-item {
  background: #0006;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  border: 1px solid var(--border-color);
  transition: all .3s
}

.file-item:hover {
  border-color: var(--accent-teal);
  transform: translateY(-5px)
}

.file-icon {
  font-size: 35px;
  width: 60px;
  height: 60px;
  background: #e57e3a26;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center
}

.file-info {
  flex: 1
}

.file-info h4 {
  margin-bottom: 8px;
  font-size: 16px
}

.file-info span {
  font-size: 13px;
  color: var(--text-dim)
}

.download-btn {
  background: transparent;
  border: 2px solid var(--accent-teal);
  color: var(--accent-teal);
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: all .3s;
  font-family: inherit;
  font-weight: 600
}

.download-btn:hover {
  background: var(--accent-teal);
  color: var(--primary-dark);
  transform: scale(1.05)
}

.message-container {
  display: flex;
  gap: 40px;
  background: transparent;
  padding: 20px;
  padding-top: 0;
  border-radius: 25px;
  align-items: center;
  margin-top: 15px;
  border: 0
}

.message-container.reverse {
  flex-direction: row-reverse
}

.person-img {
  width: 300px;
  height: 303px;
  background-color: #ccc;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  flex-shrink: 0;
  box-shadow: 0 15px 40px #0006;
  border: 3px solid var(--accent-teal)
}

.chairman-img {
  background-image: url(/images/person.png)
}

.ceo-img {
  background-image: url(/images/person.png)
}

.message-text {
  flex: 1
}

.message-text h2 {
  color: var(--accent-teal);
  margin-bottom: 8px;
  font-size: 28px
}

.message-text h3 {
  color: var(--text-white);
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 18px
}

.quote {
  font-size: 16px;
  line-height: 2;
  color: #ddd;
  font-style: italic;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 15px;
  border-inline-start: 5px solid #e57e3a;
  position: relative
}

.quote:before {
  content: '"';
  position: absolute;
  top: 10px;
  inset-inline-start: 20px;
  font-size: 60px;
  color: var(--accent-gold);
  opacity: .3;
  font-family: serif
}

.signature {
  margin-bottom: 12px;
  font-size: 26px;
  color: #e07d3c;
  font-weight: 600
}

a {
  text-decoration: none
}

.board-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px
}

.board-grid>* {
  flex: 1
}

.board-member:hover {
  background: #ffffff1a
}

.member-photo {
  width: 88%;
  height: 180px;
  border-radius: 8px;
  background-size: cover;
  background-position: center top;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--accent-teal);
  margin: 0 auto 15px
}

.member-photo:after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  height: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, .4), transparent)
}

.board-member h3 {
  font-size: 16px;
  margin-bottom: 5px
}

.board-member p {
  font-size: 12px;
  color: var(--accent-gold)
}

.reports-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px
}

.reports-grid>* {
  flex: 0 0 calc(33.3333% - 10px);
  max-width: calc(33.3333% - 10px);
  min-width: calc(33.3333% - 10px)
}

.report-card {
  background: #0006;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  border-top: 4px solid var(--accent-teal);
  transition: all .3s
}

.report-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px #0000004d
}

.report-card h3 {
  font-size: 18px;
  margin-bottom: 12px
}

.report-card p {
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 14px
}

.report-card a {
  color: var(--accent-teal);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .3s
}

.report-card a:hover {
  color: var(--accent-orange-light);
  gap: 12px
}

.gauge-container {
  display: flex;
  flex-direction: column;
  align-items: center
}

.achievement-card {
  background: #0006;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 10px 35px;
  text-align: center;
  border: 2px solid transparent;
  transition: all .5s ease;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
  max-width: 500px;
  min-height: 185px
}

@media (max-width: 768px) {
  .achievement-card {
    min-height: 255px
  }
}

.achievement-card:before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-teal), var(--accent-gold))
}

.achievement-card.active {
  border-color: var(--accent-teal);
  box-shadow: 0 10px 40px #e57e3a33
}

.achievement-year {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent-teal);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 2px 2px 10px rgba(229, 126, 58, .3)
}

.achievement-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px
}

.achievement-desc {
  font-size: 14px;
  color: #bbb;
  line-height: 1.7
}

.achievement-content {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeInAchievement .5s ease forwards
}

@keyframes fadeInAchievement {
  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.fuel-gauge {
  position: relative;
  width: 378px;
  height: 91px;
  margin: 58px 0 0
}

.gauge-marks {
  position: absolute;
  width: 100%;
  height: 200%;
  top: 0;
  inset-inline-end: 0
}

.gauge-mark {
  position: absolute;
  width: 3px;
  height: 18px;
  background: #ffffff80;
  transform-origin: bottom center;
  inset-inline-end: 50%;
  top: 50%;
  cursor: pointer;
  transition: all .3s;
  border-radius: 2px
}

.gauge-mark.major {
  height: 28px;
  width: 4px;
  background: #fff
}

.gauge-mark:hover,
.gauge-mark.active {
  background: var(--accent-teal);
  box-shadow: 0 0 10px var(--accent-teal)
}

.gauge-pump-icon {
  position: absolute;
  top: -46px;
  inset-inline-end: 51%;
  transform: translate(-50%);
  font-size: 26px;
  color: #fff;
  z-index: 5
}

.gauge-label {
  position: absolute;
  font-size: 20px;
  font-weight: 700;
  color: #fff
}

.gauge-label.empty {
  inset-inline-start: 30px;
  top: 80px
}

.gauge-label.full {
  inset-inline-end: 30px;
  top: 80px
}

.year-label {
  position: absolute;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: all .3s;
  cursor: pointer
}

.year-label:hover,
.year-label.active {
  color: var(--accent-teal);
  transform: scale(1.15)
}

.gauge-center {
  position: absolute;
  bottom: 0;
  inset-inline-end: 50%;
  transform: translate(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(145deg, #5a5a5a, #2a2a2a);
  border-radius: 50%;
  z-index: 10;
  box-shadow: 0 3px 10px #00000080
}

.gauge-center:after {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-end: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background: linear-gradient(145deg, #777, #333);
  border-radius: 50%
}

.gauge-needle {
  position: absolute;
  bottom: 14px;
  inset-inline-end: 50%;
  width: 6px;
  height: 130px;
  transform-origin: bottom center;
  transform: translate(-50%) rotate(60deg);
  z-index: 8;
  transition: transform .8s cubic-bezier(.68, -.55, .265, 1.55)
}

.needle-body {
  position: absolute;
  bottom: 0;
  inset-inline-end: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  border-inline-end: 4px solid transparent;
  border-inline-start: 4px solid transparent;
  border-bottom: 120px solid #e53935;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, .5))
}

.needle-body:before {
  content: "";
  position: absolute;
  bottom: -120px;
  inset-inline-end: 50%;
  transform: translate(-50%);
  width: 4px;
  height: 18px;
  background: #e53935;
  border-radius: 0 0 2px 2px
}

.gauge-nav-buttons {
  display: flex;
  justify-content: center;
  gap: 15px
}

.gauge-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff1a;
  border: 2px solid rgba(255, 255, 255, .2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  font-size: 18px
}

.gauge-nav-btn:hover {
  background: var(--accent-teal);
  border-color: var(--accent-teal);
  color: #000;
  transform: scale(1.1)
}

.gauge-nav-btn:disabled {
  opacity: .3;
  cursor: not-allowed
}

.gauge-nav-btn:disabled:hover {
  background: #ffffff1a;
  border-color: #fff3;
  color: #fff;
  transform: none
}

.gauge-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  z-index: 10
}

.gauge-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff4d;
  cursor: pointer;
  transition: all .3s
}

.gauge-dot:hover {
  background: #ffffff80
}

.gauge-dot.active {
  background: var(--accent-teal);
  box-shadow: 0 0 10px var(--accent-teal);
  transform: scale(1.2)
}

.fuel-pump-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 65px;
  margin-top: 50px;
  padding: 30px 20px;
  justify-items: start
}

.fuel-pump-grid>* {
  flex: 1
}

.fuel-pump {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform .4s ease
}

.fuel-pump:hover {
  transform: translateY(-10px)
}

.pump-hose {
  position: absolute;
  inset-inline-end: -77px;
  top: 44px;
  width: 110px;
  height: 220px;
  z-index: 0;
  pointer-events: none
}

.fuel-nozzle {
  position: absolute;
  top: 16px;
  inset-inline-start: -1px;
  width: 60px;
  height: 50px;
  transform: rotate(314deg) scaleY(-1)
}

.nozzle-body {
  position: absolute;
  top: 20px;
  inset-inline-start: 0;
  width: 45px;
  height: 32px;
  background: linear-gradient(180deg, #3a3a3a, #1a1a1a, #0a0a0a);
  border-radius: 5px 12px 4px 4px;
  box-shadow: 3px 4px 10px #0009
}

.nozzle-body:before {
  content: "";
  position: absolute;
  top: 6px;
  inset-inline-end: 8px;
  width: 18px;
  height: 14px;
  background: linear-gradient(180deg, #5a5a5a, #3a3a3a);
  border-radius: 3px;
  box-shadow: inset 0 2px 5px #0009
}

.nozzle-spout {
  position: absolute;
  top: 0;
  inset-inline-start: 8px;
  width: 14px;
  height: 28px;
  background: linear-gradient(90deg, #000, #2a2a2a, #4a4a4a);
  border-radius: 4px 4px 0 0
}

.nozzle-trigger {
  position: absolute;
  top: 27px;
  inset-inline-start: 40px;
  width: 10px;
  height: 22px;
  background: linear-gradient(90deg, #6a6a6a, #4a4a4a);
  border-radius: 2px;
  transform: rotate(355deg)
}

.nozzle-handle {
  position: absolute;
  top: 50px;
  inset-inline-start: 5px;
  width: 30px;
  height: 10px;
  background: linear-gradient(180deg, #5a5a5a, #3a3a3a);
  border-radius: 0 0 4px 4px
}

.hose-cable {
  position: absolute;
  top: 35px;
  inset-inline-start: 0;
  width: 100%;
  height: 180px
}

.hose-cable svg {
  width: 100%;
  height: 100%;
  overflow: visible
}

.hose-main {
  fill: none;
  stroke: #1a1a1a;
  stroke-width: 9;
  stroke-linecap: round
}

.hose-shadow {
  fill: none;
  stroke: #0a0a0a;
  stroke-width: 12;
  stroke-linecap: round
}

.hose-highlight {
  fill: none;
  stroke: #ffffff14;
  stroke-width: 4;
  stroke-linecap: round
}

.hose-connector {
  position: absolute;
  bottom: 15px;
  inset-inline-start: 8px;
  width: 22px;
  height: 22px;
  background: linear-gradient(145deg, #7a7a7a, #5a5a5a, #4a4a4a);
  border-radius: 50%;
  box-shadow: 0 3px 8px #00000080
}

.hose-connector:before {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-end: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: radial-gradient(circle, #2a2a2a, #0a0a0a);
  border-radius: 50%
}

.pump-body {
  position: relative;
  width: 180px;
  background: linear-gradient(180deg, #2d2d2d, #1a1a1a);
  border-radius: 15px 15px 8px 8px;
  box-shadow: 0 20px 40px #00000080;
  transition: box-shadow .3s ease
}

.fuel-pump:hover .pump-body {
  box-shadow: 0 25px 50px #0009, 0 0 30px #e57e3a26
}

.pump-head {
  position: relative;
  background: linear-gradient(180deg, #3d3d3d, #2a2a2a);
  border-radius: 12px 12px 0 0;
  padding: 15px;
  border-bottom: 3px solid #1a1a1a
}

.pump-screen {
  position: relative;
  background: linear-gradient(145deg, #0a0a0a, #1a1a1a);
  border-radius: 10px;
  padding: 8px;
  border: 3px solid #3a3a3a;
  box-shadow: inset 0 0 20px #000c
}

.pump-screen:before {
  content: "";
  position: absolute;
  top: 5px;
  inset-inline-end: 5px;
  inset-inline-start: 5px;
  height: 25%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .08), transparent);
  border-radius: 8px 8px 0 0;
  pointer-events: none;
  z-index: 2
}

.pump-info {
  padding: 20px 15px;
  text-align: center;
  background: linear-gradient(180deg, #252525, #1a1a1a)
}

.pump-info h3 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700
}

.pump-info p {
  font-size: 11px;
  color: var(--accent-teal);
  font-weight: 600
}

.pump-base {
  width: 200px;
  height: 20px;
  background: linear-gradient(180deg, #2a2a2a, #1a1a1a, #0a0a0a);
  border-radius: 4px;
  margin-top: -3px;
  box-shadow: 0 10px 20px #00000080;
  position: relative
}

.pump-base:before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 15%;
  inset-inline-start: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .1), transparent)
}

.position-badge {
  position: absolute;
  top: -10px;
  inset-inline-end: 50%;
  transform: translate(-50%);
  background: linear-gradient(135deg, var(--accent-teal), var(--accent-orange-dark));
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 4px 15px #e57e3a66;
  z-index: 20;
  opacity: 0;
  transition: all .3s ease
}

.fuel-pump:hover .position-badge {
  opacity: 1;
  top: -25px
}

.fuel-pump:before {
  content: "";
  position: absolute;
  top: -30px;
  inset-inline-end: 50%;
  transform: translate(-50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(229, 126, 58, .2) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 1
}

.fuel-pump:hover:before {
  opacity: 1
}

::-webkit-scrollbar {
  width: 8px
}

::-webkit-scrollbar-track {
  background: #0000001a
}

::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: 4px
}

.detail-image video {
  border-radius: 20px;
  height: 55vh
}

input::placeholder {
  color: #fff
}

textarea::placeholder {
  color: #fff
}

.character {
  background: url(/images/character.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 400px;
  width: 26%;
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1
}

.character2 {
  background: url(../images/character2.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 380px;
  width: 100%;
  align-self: flex-end;
  margin-top: -100px;
  margin-bottom: 0
}

@media (max-width: 1200px) {
  .content-grid>* {
    flex: 1 1 auto
  }

  .image-block {
    grid-row: auto;
    width: 100%
  }

  .values-container>*,
  .reports-grid>* {
    flex: 0 0 calc(100% - 12.5px);
    max-width: calc(100% - 12.5px)
  }

  .fuel-pump-grid {
    gap: 40px
  }

  .fuel-pump-grid>* {
    flex: 0 0 calc(33.3333% - (40px * 2 / 3));
    max-width: calc(33.3333% - (40px * 2 / 3));
    min-width: calc(33.3333% - (40px * 2 / 3))
  }

  .character2 {
    height: 280px
  }
}

@media (max-width: 768px) {
  .content-area {
    padding: 20px 20px 90px
  }

  .glass-card {
    padding: 25px;
    border-radius: 20px
  }

  .section-header h1 {
    font-size: 28px
  }

  .values-container>*,
  .files-list>*,
  .reports-grid>* {
    flex: 1 1 auto
  }

  .message-container {
    flex-direction: column !important;
    text-align: center;
    padding: 25px
  }

  .person-img {
    width: 150px;
    height: 150px;
    border-radius: 50%
  }

  .quote {
    border-inline-start: none;
    border-top: 4px solid var(--accent-gold)
  }

  .fuel-gauge {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 1;
    height: auto
  }

  .gauge-needle {
    height: 105px
  }

  .needle-body {
    border-bottom-width: 95px
  }

  .needle-body:before {
    bottom: -95px
  }

  .gauge-label {
    font-size: 22px
  }

  .gauge-label.empty {
    inset-inline-end: 20px;
    top: 65px
  }

  .gauge-label.full {
    inset-inline-start: 20px;
    top: 65px
  }

  .achievement-year {
    font-size: 42px
  }

  .achievement-title {
    font-size: 17px
  }

  .fuel-pump-grid {
    gap: 30px
  }

  .fuel-pump-grid>* {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    min-width: calc(50% - 15px)
  }

  .pump-body {
    width: 150px
  }

  .pump-base {
    width: 170px
  }

  .member-photo {
    height: 120px
  }

  .gauge-label.full,
  .gauge-label.empty {
    top: 90px
  }

  .character-container,
  .character2-container {
    min-height: auto
  }

  .character-container>*,
  .character2-container>* {
    flex: 1 1 auto
  }

  .character,
  .character2 {
    display: none
  }

  .bottom-nav-extended {
    padding: 6px 3px
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext {
    padding: 6px 2px
  }

  .nav-item-ext span {
    font-size: 8.5px;
    max-width: 55px;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .nav-item-ext svg {
    width: 18px;
    height: 18px
  }

  .extended-menu-grid>* {
    flex: 1 1 auto
  }

  .extended-menu-content {
    padding: 20px 15px;
    max-height: 80vh
  }

  .extended-quick-actions>* {
    flex: 1 1 auto
  }

  .chatbot-container {
    bottom: 10px;
    inset-inline-end: 10px;
    inset-inline-start: 10px
  }

  .chatbot-window {
    width: calc(100vw - 20px);
    height: calc(100vh - 100px);
    max-height: 650px
  }

  .chatbot-toggle {
    position: fixed;
    bottom: 10px;
    inset-inline-end: 50%;
    transform: translate(-50%)
  }

  .character2-container .reports-grid {
    margin-top: 0
  }
}

.character-container {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  position: relative;
  min-height: 300px
}

.character-container>* {
  flex: 1
}

.character {
  background: url(/images/character.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 400px;
  width: 26%;
  position: absolute;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1
}

.character-container .values-container {
  position: relative;
  z-index: 2
}

#values .glass-card {
  overflow: visible
}

.character2-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-start;
  min-height: auto;
  margin-top: 5px
}

.character2-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: flex-end;
  min-height: 320px;
  margin-top: 20px;
  padding-top: 30px;
  overflow: visible
}

.character2-container>* {
  flex: 1
}

.character2 {
  background: url(../images/character2.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 380px;
  width: 100%;
  align-self: flex-end;
  margin-top: -100px;
  margin-bottom: 0
}

.character2-container .reports-grid {
  margin-top: 40px;
  gap: 15px;
  align-self: flex-start
}

.bottom-nav-extended {
  position: fixed;
  bottom: 0;
  inset-inline-end: 0;
  inset-inline-start: 0;
  background: #002b28fa;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 8px 5px;
  border-top: 1px solid rgba(229, 126, 58, .2);
  z-index: 1000;
  box-shadow: 0 -5px 20px #0000004d
}

.bottom-nav-extended>* {
  flex: 0 0 calc(10% - 1.8px);
  max-width: calc(10% - 1.8px);
  min-width: calc(10% - 1.8px)
}

.nav-item-ext {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 8px 4px;
  cursor: pointer;
  border-radius: 10px;
  transition: all .3s ease;
  color: var(--text-dim);
  position: relative
}

.nav-item-ext:hover {
  background: #9cebc81a;
  color: var(--accent-teal);
  transform: translateY(-2px)
}

.nav-item-ext.active {
  background: #9cebc826;
  color: var(--accent-teal)
}

.nav-item-ext svg {
  flex-shrink: 0
}

.nav-item-ext span {
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  white-space: nowrap
}

.nav-item-ext.nav-more:after {
  content: "";
  position: absolute;
  top: 6px;
  inset-inline-start: 6px;
  width: 6px;
  height: 6px;
  background: var(--accent-gold);
  border-radius: 50%;
  animation: pulse 2s infinite
}

.extended-menu-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease
}

.extended-menu-popup.active {
  pointer-events: auto;
  opacity: 1
}

.extended-menu-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #000c;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px)
}

.extended-menu-content {
  position: absolute;
  bottom: 60px;
  inset-inline-end: 0;
  inset-inline-start: 0;
  max-height: 75vh;
  background: var(--primary-dark);
  border-radius: 25px 25px 0 0;
  padding: 25px 20px;
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.25, .8, .25, 1);
  overflow-y: auto;
  box-shadow: 0 -10px 40px #00000080
}

.extended-menu-popup.active .extended-menu-content {
  transform: translateY(0)
}

.extended-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(229, 126, 58, .2)
}

.extended-menu-header h3 {
  color: var(--accent-teal);
  font-size: 20px;
  font-weight: 700
}

.close-extended-menu {
  background: #ffffff1a;
  border: none;
  color: var(--text-white);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all .3s
}

.close-extended-menu:hover {
  background: var(--accent-teal);
  color: var(--primary-dark);
  transform: rotate(90deg)
}

.extended-menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px
}

.extended-menu-grid>* {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
  min-width: calc(50% - 10px)
}

.extended-menu-section h4 {
  color: var(--accent-teal);
  font-size: 13px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600
}

.extended-menu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #ffffff0d;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text-white);
  transition: all .3s;
  border: 1px solid transparent;
  margin-bottom: 8px
}

.extended-menu-link:hover {
  background: #9cebc81a;
  border-color: var(--accent-teal);
  transform: translate(-3px)
}

.extended-menu-link .link-icon {
  font-size: 22px;
  flex-shrink: 0
}

.extended-menu-link span:last-child {
  font-size: 14px;
  font-weight: 500
}

.extended-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .1)
}

.extended-quick-actions>* {
  flex: 0 0 calc(50% - 5px);
  max-width: calc(50% - 5px);
  min-width: calc(50% - 5px)
}

.quick-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--accent-teal);
  color: var(--primary-dark);
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: all .3s
}

.quick-action-btn:hover {
  background: var(--text-white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px #9cebc84d
}

.extended-menu-content::-webkit-scrollbar {
  width: 6px
}

.extended-menu-content::-webkit-scrollbar-track {
  background: #0000001a
}

.extended-menu-content::-webkit-scrollbar-thumb {
  background: var(--accent-teal);
  border-radius: 3px
}

.extended-menu-note {
  background: #9cebc81a;
  border: 1px solid rgba(156, 235, 200, .3);
  border-radius: 10px;
  padding: 15px;
  margin-top: 20px;
  text-align: center
}

.extended-menu-note p {
  color: var(--accent-teal);
  font-size: 12px;
  margin: 0;
  line-height: 1.5
}

.extended-menu-link.main-page {
  background: #9cebc814;
  border: 1px solid rgba(229, 126, 58, .2)
}

.bottom-nav {
  display: none
}

button:not(.header-btn):not(.action-btn):not(.send-btn) {
  background: var(--accent-orange);
  color: #fff;
  border: none
}

button:not(.header-btn):not(.action-btn):not(.send-btn):hover {
  background: var(--accent-orange-dark)
}

.chatbot-container {
  position: fixed;
  bottom: 20px;
  inset-inline-end: 20px;
  z-index: 9999;
  font-family: Cairo, sans-serif
}

.chatbot-toggle {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  box-shadow: 0 8px 30px #ff8c4266
}

.chatbot-toggle:hover {
  box-shadow: 0 12px 40px #ff8c4299
}

.chatbot-header {
  background: linear-gradient(135deg, #2f3133, #66686a);
  border-bottom: 2px solid var(--accent-orange);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center
}

.header-info {
  display: flex;
  align-items: center;
  gap: 12px
}

.avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #9cebc8;
  flex-shrink: 0
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.bot-info h3 {
  color: var(--accent-orange);
  font-size: 16px;
  margin-bottom: 3px
}

.status {
  color: #aebdbb;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-orange);
  border-radius: 50%;
  animation: statusPulse 2s infinite
}

@keyframes statusPulse {

  0%,
  to {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

.header-actions {
  display: flex;
  gap: 8px
}

.header-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ffffff1a;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s
}

.header-btn:hover {
  background: #e57e3a33
}

.quick-actions {
  display: flex;
  gap: 8px;
  padding: 15px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  overflow-x: auto;
  scrollbar-width: none
}

.quick-actions::-webkit-scrollbar {
  display: none
}

.quick-action {
  padding: 8px 15px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .3s;
  flex-shrink: 0
}

.quick-action:hover {
  background: var(--accent-orange);
  border-color: var(--accent-orange);
  color: #fff;
  transform: translateY(-2px)
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
  gap: 15px
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px
}

.chatbot-messages::-webkit-scrollbar-track {
  background: #e9ecef
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #9cebc8;
  border-radius: 3px
}

.message {
  display: flex;
  gap: 10px;
  animation: messageSlide .3s ease
}

@keyframes messageSlide {
  0% {
    opacity: 0;
    transform: translateY(10px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

.bot-message {
  align-self: flex-start
}

.user-message {
  align-self: flex-end;
  flex-direction: row-reverse
}

.message-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0
}

.message-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.user-message .message-avatar {
  background: linear-gradient(135deg, #9cebc8, #6dd5b0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #002b28;
  font-size: 18px;
  font-weight: 700
}

.message-content {
  max-width: 75%;
  display: flex;
  flex-direction: column;
  gap: 5px
}

.message-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  line-height: 1.5;
  font-size: 14px
}

.bot-message .message-bubble {
  background: #4a4a4acc;
  color: #fff;
  border: 1px solid rgba(255, 140, 66, .3);
  border-end-end-radius: 4px;
  box-shadow: 0 2px 8px #00000014
}

.user-message .message-bubble {
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  color: #fff;
  border-end-start-radius: 4px
}

.message-bubble p {
  margin: 0 0 8px
}

.message-bubble p:last-child {
  margin-bottom: 0
}

.message-bubble ul {
  margin: 8px 0;
  padding-inline-start: 20px
}

.message-bubble li {
  margin: 5px 0
}

.message-time {
  font-size: 11px;
  color: #6c757d;
  align-self: flex-end
}

.user-message .message-time {
  align-self: flex-start
}

.welcome-message .message-bubble {
  background: linear-gradient(135deg, #002b28, #004d47);
  color: #fff;
  border: 2px solid #9cebc8
}

.welcome-message .message-bubble ul li {
  margin: 8px 0
}

.typing-indicator {
  display: flex;
  gap: 10px;
  padding: 0 20px;
  margin-bottom: 10px
}

.typing-dots {
  background: #fff;
  padding: 12px 16px;
  border-radius: 18px;
  border-end-end-radius: 4px;
  display: flex;
  gap: 4px;
  box-shadow: 0 2px 8px #00000014
}

.typing-dots span {
  width: 8px;
  height: 8px;
  background: #9cebc8;
  border-radius: 50%;
  animation: typingDot 1.4s infinite
}

.typing-dots span:nth-child(2) {
  animation-delay: .2s
}

.typing-dots span:nth-child(3) {
  animation-delay: .4s
}

@keyframes typingDot {

  0%,
  60%,
  to {
    transform: translateY(0)
  }

  30% {
    transform: translateY(-10px)
  }
}

.chatbot-input-area {
  border-top: 1px solid #e9ecef;
  background: #fff;
  padding: 12px
}

.input-container {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  background: #f8f9fa;
  padding: 8px;
  border-radius: 25px
}

.input-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #6c757d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  flex-shrink: 0
}

.input-btn:hover {
  background: #e9ecef;
  color: #002b28
}

.chatbot-input {
  flex: 1;
  border: none;
  background: transparent;
  resize: none;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  padding: 8px 12px;
  max-height: 100px;
  overflow-y: auto
}

.chatbot-input:focus {
  outline: none
}

.chatbot-input::-webkit-scrollbar {
  width: 4px
}

.chatbot-input::-webkit-scrollbar-thumb {
  background: #9cebc8;
  border-radius: 2px
}

.send-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-orange-dark) 100%);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  flex-shrink: 0
}

.send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px #ff8c4266
}

.send-btn:active {
  transform: scale(.95)
}

.send-btn:disabled {
  opacity: .5;
  cursor: not-allowed
}

.emoji-picker {
  background: #fff;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 10px;
  margin-top: 8px;
  max-height: 200px;
  overflow-y: auto
}

.emoji-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 24px
}

.emoji-grid>* {
  flex: 0 0 calc(10% - 4.5px);
  max-width: calc(10% - 4.5px);
  min-width: calc(10% - 4.5px)
}

.emoji-grid span {
  cursor: pointer;
  transition: transform .2s
}

.emoji-grid span:hover {
  transform: scale(1.3)
}

.suggestions-container {
  padding: 10px 15px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none
}

.suggestions-container::-webkit-scrollbar {
  display: none
}

.suggestion-pill {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 15px;
  font-size: 12px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .3s;
  flex-shrink: 0
}

.suggestion-pill:hover {
  background: #9cebc8;
  border-color: #9cebc8;
  color: #002b28
}

.message-image {
  max-width: 200px;
  border-radius: 12px;
  margin-top: 5px;
  cursor: pointer
}

.message-link {
  display: inline-block;
  color: #007bff;
  text-decoration: none;
  padding: 8px 12px;
  background: #e7f3ff;
  border-radius: 8px;
  margin: 5px 0;
  transition: all .3s
}

.message-link:hover {
  background: #cce5ff
}

.message-button {
  padding: 10px 20px;
  background: var(--accent-orange);
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  margin: 5px 5px 5px 0;
  transition: all .3s
}

.message-button:hover {
  background: var(--accent-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px #ff8c424d
}

@keyframes badgePulse {

  0%,
  to {
    transform: scale(1)
  }

  50% {
    transform: scale(1.2)
  }
}

.chatbot-window {
  position: absolute;
  bottom: 80px;
  inset-inline-end: 0;
  width: 400px;
  height: 600px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 60px #0000004d;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp .4s cubic-bezier(.25, .8, .25, 1)
}

.chatbot-window.active {
  display: flex
}

.chatbot-window.minimized {
  height: 60px
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(.95)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

.voice-recording {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #fff3cd;
  border-radius: 20px
}

.recording-indicator {
  width: 8px;
  height: 8px;
  background: #dc3545;
  border-radius: 50%;
  animation: recordPulse 1s infinite
}

@keyframes recordPulse {

  0%,
  to {
    opacity: 1;
    transform: scale(1)
  }

  50% {
    opacity: .5;
    transform: scale(1.2)
  }
}

.recording-time {
  font-size: 14px;
  color: #856404;
  font-weight: 600
}

.recording-cancel {
  margin-inline-start: auto;
  padding: 5px 15px;
  background: #dc3545;
  color: #fff;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 12px
}

@media (max-width: 1200px) {
  .content-grid>* {
    flex: 1 1 auto
  }

  .image-block {
    grid-row: auto;
    width: 100%
  }

  .values-container>*,
  .reports-grid>* {
    flex: 0 0 calc(50% - 12.5px);
    max-width: calc(100% - 12.5px)
  }

  .fuel-pump-grid {
    gap: 40px
  }

  .fuel-pump-grid>* {
    flex: 0 0 calc(33.3333% - (40px * 2 / 3));
    max-width: calc(33.3333% - (40px * 2 / 3));
    min-width: calc(33.3333% - (40px * 2 / 3))
  }

  .character2 {
    height: 280px
  }
}

@media (max-width: 1024px) {
  .sidebar {
    display: none
  }

  .content-area {
    margin-inline-start: 0
  }

  .fuel-pump-grid {
    gap: 50px
  }

  .fuel-pump-grid>* {
    flex: 0 0 calc(50% - 25px);
    max-width: calc(50% - 25px);
    min-width: calc(50% - 25px)
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext:nth-child(n+6) {
    display: none
  }

  .nav-item-ext.nav-more {
    display: flex
  }

  .character2-container>* {
    flex: 1 1 auto
  }

  .character2 {
    display: none
  }
}

@media (min-width: 1024px) and (max-width: 1024px) {
  .nav-item-ext:nth-child(n+6):not(.nav-more) {
    display: none
  }

  .nav-item-ext.nav-more {
    display: flex
  }
}

@media (min-width: 991px) {
  .bottom-nav-extended {
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    inset-inline-end: 50%;
    transform: translate(-50%);
    border-radius: 20px 20px 0 0
  }

  .nav-item-ext {
    padding: 10px 8px
  }

  .nav-item-ext span {
    font-size: 11px
  }
}

@media (min-width: 1400px) {
  .bottom-nav-extended {
    padding: 10px 20px;
    max-width: 1400px;
    margin: 0 auto;
    inset-inline-end: 50%;
    transform: translate(-50%);
    border-radius: 20px 20px 0 0
  }

  .nav-item-ext {
    padding: 10px 8px
  }

  .nav-item-ext span {
    font-size: 11px
  }
}

@media (max-width: 768px) {
  .content-area {
    padding: 20px 20px 90px
  }

  .glass-card {
    padding: 25px;
    border-radius: 20px
  }

  .section-header h1 {
    font-size: 28px
  }

  .values-container>*,
  .files-list>*,
  .reports-grid>* {
    flex: 1 1 auto
  }

  .message-container {
    flex-direction: column !important;
    text-align: center;
    padding: 25px
  }

  .person-img {
    width: 150px;
    height: 150px;
    border-radius: 50%
  }

  .quote {
    border-inline-start: none;
    border-top: 4px solid var(--accent-gold)
  }

  .fuel-gauge {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 1;
    height: auto
  }

  .gauge-needle {
    height: 105px
  }

  .needle-body {
    border-bottom-width: 95px
  }

  .needle-body:before {
    bottom: -95px
  }

  .gauge-label {
    font-size: 17px
  }

  .gauge-label.empty {
    inset-inline-end: 20px;
    top: 65px
  }

  .gauge-label.full {
    inset-inline-start: 20px;
    top: 65px
  }

  .achievement-year {
    font-size: 42px
  }

  .achievement-title {
    font-size: 17px
  }

  .fuel-pump-grid {
    gap: 30px
  }

  .fuel-pump-grid>* {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
    min-width: calc(50% - 15px)
  }

  .pump-body {
    width: 150px
  }

  .pump-base {
    width: 170px
  }

  .member-photo {
    height: 120px
  }

  .gauge-label.full,
  .gauge-label.empty {
    top: 90px
  }

  .character-container,
  .character2-container {
    min-height: auto
  }

  .character-container>*,
  .character2-container>* {
    flex: 1 1 auto
  }

  .character,
  .character2 {
    display: none
  }

  .bottom-nav-extended {
    padding: 6px 3px
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext {
    padding: 6px 2px
  }

  .nav-item-ext span {
    font-size: 8.5px;
    max-width: 55px;
    overflow: hidden;
    text-overflow: ellipsis
  }

  .nav-item-ext svg {
    width: 18px;
    height: 18px
  }

  .extended-menu-grid>* {
    flex: 1 1 auto
  }

  .extended-menu-content {
    padding: 20px 15px;
    max-height: 80vh
  }

  .extended-quick-actions>* {
    flex: 1 1 auto
  }

  .chatbot-container {
    bottom: 10px;
    inset-inline-end: 10px;
    inset-inline-start: 10px
  }

  .chatbot-window {
    width: calc(100vw - 20px);
    height: calc(100vh - 100px);
    max-height: 650px
  }

  .chatbot-toggle {
    position: fixed;
    bottom: 10px;
    inset-inline-end: 50%;
    transform: translate(-50%)
  }

  .character2-container .reports-grid {
    margin-top: 0
  }
}

@media (max-width: 576px) {
  .fuel-gauge {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 4 / 1;
    height: auto
  }

  .gauge-needle {
    height: 90px
  }

  .needle-body {
    border-bottom-width: 80px
  }

  .needle-body:before {
    bottom: -80px
  }

  .fuel-pump-grid {
    gap: 50px
  }

  .fuel-pump-grid>* {
    flex: 1 1 auto
  }

  .pump-body {
    width: 180px
  }

  .pump-base {
    width: 200px
  }

  .member-photo {
    height: 218px
  }

  .gauge-label.full,
  .gauge-label.empty {
    top: 105%
  }

  .gauge-dots {
    margin-top: 70px
  }

  .header-box {
    margin-bottom: 0;
    padding-bottom: 10px
  }

  .header-box h1 {
    font-size: 25px;
    text-align: center;
    margin: 7px 0
  }
}

@media (max-width: 480px) {
  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext span {
    font-size: 8px
  }

  .extended-menu-header h3 {
    font-size: 18px
  }

  .extended-menu-link {
    padding: 10px
  }

  .quick-action-btn {
    font-size: 12px;
    padding: 10px
  }

  .message-content {
    max-width: 85%
  }

  .quick-action {
    font-size: 12px;
    padding: 6px 12px
  }
}

@media (max-width: 380px) {
  .bottom-nav-extended {
    padding: 5px 2px
  }

  .bottom-nav-extended>* {
    flex: 0 0 calc(20% - 20px);
    max-width: calc(20% - 20px);
    min-width: calc(20% - 20px)
  }

  .nav-item-ext {
    padding: 5px 1px
  }

  .nav-item-ext svg {
    width: 16px;
    height: 16px
  }

  .nav-item-ext span {
    font-size: 7.5px
  }

  .nav-item-ext:nth-child(n+6):not(.nav-more) {
    display: none
  }
}

.nav-item-ext:nth-child(-n+9) {
  position: relative
}

.nav-item-ext:nth-child(-n+9):hover:before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-end: 50%;
  transform: translate(-50%);
  width: 30px;
  height: 2px;
  background: var(--accent-teal);
  border-radius: 2px
}

@keyframes messageIn {
  0% {
    opacity: 0;
    transform: scale(.8)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.message.new {
  animation: messageIn .3s ease
}

@keyframes pulse {

  0%,
  to {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}