@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap');

body {
  font-family: 'Vazirmatn', Tahoma, sans-serif;
  background: #f4f8fb;
  color: #26384a;
  margin: 0;
  direction: rtl;
  min-height: 100vh;
}

.topbar {
  background: linear-gradient(90deg, #2dc7d8 0%, #26384a 100%);
  color: #fff;
  text-align: center;
  padding: 0.5rem 0;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(38,56,74,0.08);
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: linear-gradient(120deg, #2dc7d8 0%, #26384a 100%);
  color: #fff;
  padding: 3rem 1rem 2rem 1rem;
  min-height: 350px;
  position: relative;
  box-shadow: 0 8px 32px rgba(38,56,74,0.12);
  border-radius: 0 0 32px 32px;
  overflow: hidden;
}
.hero-content {
  flex: 1 1 400px;
  z-index: 2;
  text-align: right;
  padding: 1rem 2rem;
  direction: rtl;
}
.hero-image {
  flex: 1 1 350px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  padding: 1rem;
  direction: rtl;
}
.logo {
  width: 120px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 8px rgba(45,199,216,0.15));
}
.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0.5rem 0 0.2rem 0;
  letter-spacing: -1px;
  text-align: right;
}
.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0f7fa;
  text-align: right;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
  justify-content: flex-start;
  direction: rtl;
}
.cta-buttons button {
  font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
  background: linear-gradient(90deg, #2dc7d8 0%, #1bb1c7 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(45,199,216,0.15);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  direction: rtl;
}
.cta-buttons button .icon {
  font-size: 1.3rem;
  margin-left: 0.5rem;
}
.cta-buttons button:hover {
  background: linear-gradient(90deg, #1bb1c7 0%, #2dc7d8 100%);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(45,199,216,0.22);
}

.cta-link {
  text-decoration: none;
  margin-left: 0.5rem;
  display: inline-block;
}
.cta-link button {
  font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
  background: linear-gradient(90deg, #2dc7d8 0%, #1bb1c7 100%);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 1rem 2.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(45,199,216,0.15);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  direction: rtl;
}
.cta-link .icon {
  font-size: 1.3rem;
  margin-left: 0.5rem;
}
.cta-link button:hover {
  background: linear-gradient(90deg, #1bb1c7 0%, #2dc7d8 100%);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 24px rgba(45,199,216,0.22);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #26384a;
  margin-bottom: 2rem;
  text-align: right;
  letter-spacing: -0.5px;
}

.features-section {
  margin: 3rem auto 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(38,56,74,0.08);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 210px;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(45,199,216,0.18);
  transform: translateY(-4px) scale(1.03);
}
.feature-icon {
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #26384a;
}
.feature-card p {
  color: #4a5a6a;
  font-size: 0.98rem;
  margin: 0;
}

.services-section {
  margin: 3rem auto 0 auto;
  max-width: 1200px;
  padding: 0 1rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(38,56,74,0.08);
  padding: 2rem 1.2rem 1.2rem 1.2rem;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  min-height: 210px;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(45,199,216,0.18);
  transform: translateY(-4px) scale(1.03);
}
.service-icon {
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  color: #26384a;
}
.service-card p {
  color: #4a5a6a;
  font-size: 0.98rem;
  margin: 0;
}

.about-section {
  margin: 3rem auto 0 auto;
  max-width: 900px;
  padding: 0 1rem;
}
.about-card {
  background: linear-gradient(90deg, #f4f8fb 0%, #e0f7fa 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(38,56,74,0.06);
  padding: 2.5rem 2rem 2rem 2rem;
  text-align: right;
}
.about-card h2 {
  margin-bottom: 1.2rem;
}
.about-card p {
  color: #4a5a6a;
  font-size: 1.08rem;
  margin-top: 1rem;
}

.footer {
  background: linear-gradient(90deg, #26384a 0%, #2dc7d8 100%);
  color: #fff;
  padding: 1.5rem 0 1rem 0;
  margin-top: 3rem;
  border-radius: 24px 24px 0 0;
  font-size: 1rem;
  box-shadow: 0 -2px 12px rgba(38,56,74,0.06);
}
.footer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.footer a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .features-grid, .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}
@media (max-width: 900px) {
  .hero-section {
    flex-direction: column;
    padding: 2rem 1rem 1.5rem 1rem;
    min-height: 320px;
  }
  .hero-content, .hero-image {
    padding: 1rem 0.5rem;
    text-align: center;
    align-items: center;
  }
  .hero-content {
    text-align: center;
  }
  .cta-buttons {
    justify-content: center;
  }
}
@media (max-width: 600px) {
  .features-section, .services-section, .about-section {
    padding: 0 0.2rem;
  }
  .logo {
    width: 80px;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .cta-buttons button {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
  .feature-card, .service-card, .about-card {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
} 