/* === GENERAL === */
@font-face {
  font-family: 'Playpen Sans Arabic';
  src: url('../fonts/playpen/PlaypenSansArabic-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Playpen Sans Arabic';
  src: url('../fonts/playpen/PlaypenSansArabic-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
	 font-family: 'IBM Plex Sans Arabic', sans-serif !important;
  margin: 0;
  font-family: 'Cairo', sans-serif;
  background-color: #000;
}

h1.title {
  font-family: 'Playpen Sans Arabic', sans-serif;
  font-weight: normal; /* or bold if needed */
}


/* Splash Video Styles */
.splash-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.splash-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === NAVBAR === */
.navbar-custom {
  background-color: #000;
  padding: 1rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 40px;
}
.brand span {
  color: white;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* === NAV LINKS === */
.navbar-nav .nav-link,
.nav-links a {
  color: white !important;
  font-weight: 500;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 6px 14px;
  border-radius: 4px;
  background-color: transparent;
  border: none;
}
.navbar-nav .nav-link:hover,
.nav-links a:hover,
.btn-contact:hover,
.btn-lang:hover {
  background-color: #f44336;
  color: white !important;
}

.btn-contact {
  background-color: #f44336;
  color: white !important;
  font-weight: bold;
}

.btn-lang {
  border: 2px solid #f44336;
  font-weight: bold;
  padding: 4px 10px;
  font-size: 0.95rem;
}

/* === RESPONSIVE NAV === */
@media (max-width: 991px) {
  .navbar-nav,
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .navbar-custom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* === HERO SECTION === */
.hero-section {
  position: relative;
  padding-bottom: 200px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero-bg {
  background-image: url('../images/main/bg.png');
  background-size: cover;
  background-position: center;
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: brightness(0.4);
}
.hero-content {
  z-index: 2;
  text-align: center;
  padding: 2rem;
}
.hero-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: white;
  line-height: 1.8;
  margin: 2rem 0;
}
.hero-shape {
  max-width: 180px;
  height: auto;
}
.hero-shape-top {
  margin-bottom: 1.5rem;
}
.hero-shape-bottom {
  margin-top: 1.5rem;
}
.hero-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-image: url('../images/main/hero-border.svg');
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 60px;
  z-index: 3;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-shape {
    max-width: 120px;
  }
}

/* === ABOUT SECTION === */
.about-section {
  background-color: #111;
  padding: 100px 20px;
}
.about-text {
  font-size: 1rem;
  line-height: 2;
  color: #fff;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.about-btn {
  font-weight: bold;
  font-size: 1.1rem;
  padding: 10px 30px;
  border-radius: 4px;
}

/* === SERVICES SECTION === */
.services-section {
  padding: 8rem 1rem 6rem;
  background-color: #111;
  color: white;
}
.services-heading {
  color: #a9d4ff;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.services-subtitle {
  color: #f44336;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 500;
}
.services-description {
  max-width: 700px;
  margin: 0 auto 3.5rem;
  font-size: 1.2rem;
  line-height: 2.2rem;
  font-weight: 300;
}
.services-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 0.5rem;
}
.services-image-wrapper img.img-fluid {
  max-width: 60%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.centered-mark {
  position: absolute;
  z-index: 2;
  width: 150px;
  top: -35px;
}
.service-block {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .services-image-wrapper {
    align-items: center;
  }
  .services-image-wrapper img.img-fluid {
    max-width: 90%;
  }
  .centered-mark {
    width: 100px;
    top: -25px;
  }
  .services-description {
    font-size: 1rem;
    line-height: 2rem;
    padding: 0 10px;
  }
  .services-subtitle {
    font-size: 1.5rem;
  }
  .services-heading {
    font-size: 2rem;
  }
}

/* === CLIENTS SECTION === */
.clients-section {
  background-color: #0b1650;
}
.clients-title {
  font-size: 2.5rem;
  font-weight: bold;
}
.client-logo {
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* === NUMBERS SECTION === */
.numbers-section {
  background-color: #0b0b0b;
}
.section-title {
  color: #a9d4ff;
  font-size: 2.5rem;
  font-weight: bold;
}
.stat {
  padding: 1rem;
}
.stat-number {
  color: #f44336;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
}
.stat-text {
  font-size: 1rem;
  line-height: 1.8;
}

/* === TESTIMONIALS SECTION === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 750px;
  margin: auto;
  overflow: hidden;
  border-radius: 8px;
  background-color: transparent;
}
.quote-box {
  background-color: #f44336;
  color: white;
  padding: 2rem;
  font-size: 1.1rem;
  line-height: 2;
  min-height: 120px;
  flex: 1;
}
.divider {
  display: none;
}
.client-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #eae5ff;
  padding: 1.5rem 2rem;
}
@media (min-width: 992px) {
  .testimonial-card {
    flex-direction: row-reverse;
  }
  .divider {
    display: flex;
    width: 40px;
    background-color: #1a1f4a;
    justify-content: center;
    align-items: center;
  }
  .client-info {
    min-width: 320px;
  }
}


/* === ANIMATIONS === */
/* === Animations === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

.animated {
  opacity: 0;
}

.animated.animate {
  opacity: 1;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.fade-in.animate { animation-name: fadeIn; }
.fade-in-up.animate { animation-name: fadeInUp; }
.zoom-in.animate { animation-name: zoomIn; }