:root {
  --color-navy: #1a2f4f;
  --color-navy-dark: #0d1a2e;
  --color-yellow: #f5c518;
  --color-gray-border: #e0e0e0;
  --color-blue-icon: #2c5282;
}

* {
  box-sizing: border-box;
}

body {
  font-family: IRANSans, Tahoma, sans-serif;
  background-color: #fff;
  color: #333;
  margin: 0;
  padding: 0;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: var(--color-navy-dark);
  background-image:
    linear-gradient(180deg, rgba(15, 30, 60, 0.75) 0%, rgba(15, 30, 60, 0.88) 100%),
    url('../assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-navbar {
  padding: 1rem 0;
}

.hero-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.brand-tagline {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-navbar .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
  padding: 0.35rem 0.6rem;
}

.hero-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0 3rem;
}

.hero-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
}

.hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  margin-bottom: 0.75rem;
}

.hero-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  text-decoration: none;
}

.hero-btn-yellow {
  background-color: var(--color-yellow);
  color: #1a1a1a;
  border: none;
}

.hero-btn-yellow:hover {
  color: #1a1a1a;
}

.hero-btn-outline {
  background-color: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.hero-btn-outline:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.08);
}

.hero-btn-white {
  background-color: #fff;
  color: var(--color-navy);
  border: none;
}

.hero-btn-white:hover {
  color: var(--color-navy);
}

/* ===== Statistics Section ===== */
.stats-section {
  background-color: var(--color-navy);
  padding: 1.75rem 0;
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.25rem;
  color: #fff;
}

.stat-col:not(:last-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.stat-col i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--color-yellow);
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

/* ===== Section Titles ===== */
.section-title-wrap {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.section-underline {
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-yellow);
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== Services Section ===== */
.services-section {
  padding: 2.5rem 0;
  background-color: #fff;
}

.service-card {
  text-decoration: none !important;
  border: 1px solid var(--color-gray-border);
  border-radius: 10px;
  text-align: center;
  padding: 1.5rem 1rem;
  margin-bottom: 1rem;
  background: #fff;
  transition: box-shadow 0.2s;
  height: calc(100% - 1rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-card i {
  font-size: 2rem;
  color: var(--color-blue-icon);
  margin-bottom: 0.75rem;
}

.service-card span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.6;
}

/* ===== Quick Access Section ===== */
.quick-access-section {
  padding: 0 0 2.5rem;
  background-color: #fff;
}

.quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 0.5rem;
  margin-bottom: 0.75rem;
  background-color: #fff;
  border: 1px solid var(--color-gray-border);
  border-radius: 8px;
  color: var(--color-navy);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.quick-btn:hover {
  background-color: #f8f9fa;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: var(--color-navy);
}

.quick-btn i {
  font-size: 1rem;
  color: var(--color-blue-icon);
}

/* ===== Footer ===== */
.site-footer {
  background-color: var(--color-navy-dark);
  border-radius: 20px 20px 0 0;
  padding: 1.75rem 0 2rem;
  margin-top: 0.5rem;
  padding-bottom: 70px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.25rem;
  color: #fff;
}

.footer-col:not(:last-child) {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-col i {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-col .fa-whatsapp {
  color: #25d366;
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.footer-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: none;
}

/* ===== Responsive ===== */
@media (min-width: 576px) {
  .hero-title {
    font-size: 2.25rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .footer-col:nth-child(2) {
    border-left: none;
  }

  .footer-col:nth-child(odd):not(:last-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .footer-col:nth-child(even) {
    border-left: none;
  }
}

/* ===== PWA Install Modal ===== */
.pwa-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.pwa-modal .modal-body {
  padding: 2rem 1.5rem 1.5rem;
}

.pwa-modal-icon {
  margin-bottom: 1rem;
}

.pwa-modal-icon img {
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pwa-modal-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.5rem;
}

.pwa-modal-text {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 1.25rem;
}

.pwa-install-btn {
  background-color: var(--color-yellow);
  color: #1a1a1a;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  border: none;
}

.pwa-install-btn:hover,
.pwa-install-btn:focus {
  background-color: #e0b010;
  color: #1a1a1a;
  box-shadow: none;
}

.pwa-dismiss-btn {
  color: #888;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.pwa-dismiss-btn:hover {
  color: #555;
  text-decoration: none;
}

.pwa-android-fallback {
  font-size: 0.85rem;
  color: var(--color-navy);
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.pwa-ios-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  text-align: right;
}

.pwa-ios-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.85rem;
  color: var(--color-navy);
  line-height: 1.6;
}

.pwa-step-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-navy);
  color: var(--color-yellow);
  border-radius: 8px;
  font-size: 0.9rem;
}

.pwa-fab-btn {
  position: fixed;
  bottom: 4.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1040;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--color-yellow);
  color: #1a1a1a;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}

.pwa-fab-btn:hover,
.pwa-fab-btn:focus {
  background-color: #e0b010;
  color: #1a1a1a;
  outline: none;
}

.side-buttons {
  display: none;
  display: inline-block;

  width: 55px;
  height: 230px;
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #FFF;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.21);
  z-index: 5;
  border-radius: 0 10px 10px 0;
  padding-top: 5px;
}

.side-buttons .button {
  width: 55px;
  height: 55px;
  text-align: center;
  display: inline-block;
  padding: 10px 0;
  color:#111
}
.side-buttons .button:hover {
  background: #eee;

}
.side-buttons .button .icon {
  width: 20px;
}
.side-buttons .button div {
  font-size: 11px;
  font-weight: 600;
}
@media (min-width:991px) {
  .side-buttons {
  }

}
@media (max-width:991px) {
  body {
    padding-bottom: 55px;
  }
  .side-buttons {
    bottom:0;
    top: auto;
    transform: none;
    width: 100%;
    height: 55px;
    padding-top: 0px;
    border-radius: 5px 5px 0 0;
  }

  .side-buttons .button {
    width: 25%;
    float: right;
    border-left: 1px solid #ccc;
    padding-top: 8px;
  }
  .side-buttons .button div {
    font-size: 14px;
    font-weight: 400;
  }
}
.slide-items  {
  text-align: center;
}
.slide-items span {
  font-size: 25px;
  font-weight: 800;
  color: #FFF;

}
.slide-items span:after {
  content: '';
  background: #FFF;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  display: inline-block;
  margin: 0 15px;
  position: relative;
  top: 2px;
}
.slide-items span:last-child:after {
  display: none;
}
