body {
  direction: rtl;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Assistant Regular";
}

/* Assistant Font Family */
@font-face {
  font-family: "Assistant ExtraLight";
  src: url("../fonts/Assistant/Assistant-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Assistant Light";
  src: url("../fonts/Assistant/Assistant-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Assistant Regular";
  src: url("../fonts/Assistant/Assistant-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Assistant Medium";
  src: url("../fonts/Assistant/Assistant-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Assistant SemiBold";
  src: url("../fonts/Assistant/Assistant-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Assistant Bold";
  src: url("../fonts/Assistant/Assistant-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Assistant ExtraBold";
  src: url("../fonts/Assistant/Assistant-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: white;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video {
  width: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  width: 100%;
}

.hero-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: "Assistant ExtraBold";
}

.hero-description {
  font-size: 1.25rem;
  max-width: 48rem;
  margin: 0 auto 2rem;
  color: #e5e7eb;
  line-height: 1.6;
}

.hero-button {
  display: inline-block;
  background-color: #fbbf24;
  color: #000000;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hero-button:hover {
  background-color: #fbbf24;
  transform: scale(1.05);
  color: #000000;
  text-decoration: none;
}

/* Stats Section */
.stats-section {
  background-color: #374151;
  padding: 2rem 0;
}

.stats-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  color: #fbbf24;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem;
}

.stat-label {
  font-size: 1.125rem;
  color: #9ca3af;
  margin: 0;
}

/* Expertise Section */
.expertise-section {
  background-color: #000000;
  color: white;
  padding: 4rem 0;
}

.expertise-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.expertise-header {
  text-align: center;
  margin-bottom: 3rem;
}

.expertise-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Assistant ExtraBold";
}

.expertise-subtitle {
  font-size: 1.125rem;
  color: #9ca3af;
  max-width: 42rem;
  margin: 0 auto;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}

.expertise-card {
  background-color: #111827;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.expertise-card:hover {
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.1);
  transform: translateY(-8px);
}

.expertise-icon {
  background-color: #fbbf24;
  padding: 6px 15px;
  border-radius: 50%;
  margin-bottom: 1rem;
  color: #111827;
}

.expertise-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fbbf24;
  font-family: "Assistant ExtraBold";
}

.expertise-card-text {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.expertise-link {
  font-weight: 600;
  color: #fbbf24;
  text-decoration: none;
  transition: color 0.3s ease;
}

.expertise-link:hover {
  color: #fbbf24;
}

/* CTA Section */
.cta-section {
  background-color: #fbbf24;
  padding: 4rem 0;
  text-align: center;
}

.cta-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 1rem;
  font-family: "Assistant ExtraBold";
}

.cta-description {
  color: #1f2937;
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

.cta-button {
  display: inline-block;
  background-color: #000000;
  color: white;
  font-weight: 700;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-size: 1.125rem;
  text-decoration: none;
  transition: all 0.3s ease;
  transform: scale(1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
  background-color: #1f2937;
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}

/* Animate on Scroll */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1.125rem;
  }

  .expertise-title {
    font-size: 2rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-button,
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
}
