@font-face {
  font-family: "Vazirmatn";
  src: url("../font/Vazirmatn[wght].ttf");
  font-weight: 125 950;
  font-stretch: 75% 125%;
  font-style: oblique 0deg 12deg;
}

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

:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --border-color: #e5e7eb;
  --success: #10b981;
  --error: #ef4444;
}

.text-white-75 {
  color: rgba(255, 255, 255, 0.75);
}

.text-justify {
  text-align: justify;
}

body {
  font-family: "Vazirmatn";
  line-height: 1.6;
  direction: rtl;
}

.header {
  background: #ffffff;
  box-shadow: 0 20px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #777777;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #000000;
}

.btn-questionnaire-cta {
  border: 2px solid #ff7755 !important;
  outline: none;
  background-color: #ff7755 !important;
  color: #ffffff !important;
  font-weight: 800;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.btn-questionnaire-cta:hover {
  border: 2px solid #ff7755 !important;
  outline: none;
  background-color: #ffffff !important;
  color: #ff7755 !important;
}

.btn-contact-cta {
  border: 2px solid #0088ff !important;
  outline: none;
  background-color: #0088ff !important;
  color: #ffffff !important;
  font-weight: 800;
  transition:
    background-color 0.3s,
    color 0.3s;
}

.btn-contact-cta:hover {
  border: 2px solid #0088ff !important;
  outline: none;
  background-color: #ffffff !important;
  color: #0088ff !important;
}

.hero-container {
  padding: 20px;
}

.hero-title {
  font-weight: 700;
  text-align: center;
  font-size: 2.5rem;
}

.hero-subtitle {
  font-weight: 300;
  font-size: 18px;
  text-align: center;
}

.about-first-title {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}

.about-first-subtitle {
  font-size: 20px;
  text-align: center;
}

.about-first-body {
  font-size: 20px;
  text-align: justify;
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-card h3 {
  font-size: 2.5rem;
  color: #ff7755;
  text-shadow: 1px 1px 10px #bdbdbd;
}

.services-title {
  font-weight: 700;
  font-size: 42px;
  text-align: center;
}

.services-subtitle {
  text-align: center;
  font-size: 22px;
}

.funnel-title {
  font-weight: 600;
  font-size: 28px;
  text-shadow: 2px 2px 10px #000000;
}

.funnel-stages-container {
  background: linear-gradient(135deg, #ff7755 0%, #0088ff 100%);
  border-radius: 30px;
  padding: 1.5rem 2rem 3rem 2rem;
}

.funnel-stage {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1rem;
  border-radius: 25px;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
  height: 100%;
  box-shadow:
    inset 0 0 15px rgba(255, 255, 255, 0.4),
    inset 0 0 25px rgba(0, 0, 0, 0.2);
}

.funnel-stage:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: white;
  box-shadow:
    0 0 15px rgba(255, 255, 255, 0.4),
    0 0 25px rgba(0, 0, 0, 0.2);
}

.stage-number {
  width: 60px;
  height: 60px;
  background: #00000035;
  color: #ffffff;
  text-shadow: 0px 0px 3px #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

.stage-number span {
  position: relative;
  z-index: 1;
}

.stage-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.funnel-stage h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.8rem;
}

.funnel-stage p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.stage-result {
  background: linear-gradient(135deg, #ff775520 0%, #0088ff20 100%);
  padding: 0.5rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: #333;
  margin-top: 1rem;
}

.stage-result strong {
  color: #ff7755;
}

.services-intro {
  padding: 2rem 1rem 0.5rem 1rem;
}

.services-intro-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.services-intro-text {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.service-card {
  background: #ffffff;
  height: 100%;
  padding: 2rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-icon-wrapper {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #ff775510 0%, #0088ff10 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, #ff775520 0%, #0088ff20 100%);
}

.service-icon {
  font-size: 3rem;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.service-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #666;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 0;
}

.service-features {
  list-style: none;
  padding: 0;
  text-align: center;
  width: 100%;
}

.service-features li {
  padding: 0.4rem 0;
  color: #555;
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
  border-bottom: none;
}

.services-contact-btn {
  background: linear-gradient(135deg, #ff7755 0%, #0088ff 100%);
  color: #ffffff;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 119, 85, 0.3);
  margin-top: auto;
}

.services-contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 136, 255, 0.4);
  color: #ffffff;
}

.end-cta {
  background: linear-gradient(135deg, #ff7755 0%, #0088ff 100%);
  border-radius: 30px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 136, 255, 0.2);
}

.cta-content h3 {
  color: white;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background: rgba(255, 255, 255, 0.879);
  color: #ff7755;
  font-weight: 700;
  padding: 1rem 3rem;
  border-radius: 50px;
  border: none;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow:
    inset 0 0 15px rgba(255, 255, 255, 0.4),
    inset 0 0 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.879);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  color: #ff7755;
}

@media (max-width: 768px) {
  .services-title {
    font-size: 32px;
  }

  .funnel-title {
    font-size: 22px;
  }

  .funnel-badge {
    font-size: 16px;
  }

  .services-intro-title {
    font-size: 24px;
  }

  .services-intro-text {
    font-size: 16px;
  }

  .cta-content h3 {
    font-size: 24px;
  }

  .cta-content p {
    font-size: 16px;
  }
}

.all-in-one-title {
  font-weight: 700;
}

.all-in-one-desc {
  font-size: 20px;
}

.all-in-one-list {
  font-size: 20px;
  /* text-align: center; */
  list-style: disc;
}

.about-us-title {
  font-weight: 700;
  font-size: 36px;
  text-align: center;
}

.about-us-desc {
  font-size: 20px;
  line-height: 1.8;
  padding: 0 2rem;
  text-align: justify;
}

.modal-quiz-option {
  border: 2px solid #ff7755;
  color: #ff7755;
  font-weight: 500;
  transition:
    background-color 0.1s,
    color 0.1s;
}

.modal-quiz-option:hover {
  background-color: #ff7755;
  color: #ffffff;
  font-weight: 500;
}

.modal-quiz-option-selected {
  background-color: #ff7755;
  color: #ffffff;
}

.btn-modal-next {
  background-color: #ff7755;
  color: #ffffff;
}

.bg-orange-progress {
  background-color: #ff7755;
}

.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.hover-link {
  transition: all 0.3s ease;
}

.hover-link:hover {
  color: #ff7755 !important;
  transform: translateX(-5px);
}

.social-links a {
  transition: all 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  color: #ff7755 !important;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .footer .col-md-6 {
    text-align: center !important;
  }
}

/* Special Offer */
.special-offer {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: var(--white);
  text-align: center;
}

.special-offer h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 2rem 0;
}

