@charset "UTF-8";
body {
  background: linear-gradient(135deg, #3a5ba7 0%, #000000 50%, #b71833 100%);
  color: white;
  overflow-y: hidden;
  transition: all 0.5s ease;
}

body.light .gradient-layer {
  background: linear-gradient(to bottom, #202020, rgba(32, 32, 32, 0));
  mix-blend-mode: multiply;
}

body.dark .gradient-layer {
  background: linear-gradient(to bottom, #202020, rgba(32, 32, 32, 0));
  mix-blend-mode: multiply;
}

/* From Uiverse.io by nima-mollazadeh */
.button_podcast {
  position: relative;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(45deg, #3a5ba7, #000000, #b71833);
  padding: 14px 25px;
  border-radius: 10px;
  font-size: 1em;
  margin-top: 10px;
}

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

.button_podcast::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #272727;
  border-radius: 9px;
  transition: 0.5s;
}

.button_podcast:hover::before {
  opacity: 0.7;
}

.button_podcast::after {
  content: "";
  position: absolute;
  inset: 0px;
  background: linear-gradient(45deg, #3a5ba7, #ff6969, #b71833);
  border-radius: 9px;
  transition: 0.5s;
  opacity: 0;
  filter: blur(20px);
}

.button_podcast:hover:after {
  opacity: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Navigation Styles */
.nav-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(26, 26, 46, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero {
  padding: 12rem 0 6rem;
  text-align: center;
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: multiply;
  background-color: rgba(0, 0, 0, 0.6588235294);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 2rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e0e7ff;
  will-change: transform, opacity;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(45deg, #fff, #e0e7ff, #c7d2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mission_sec {
  position: relative;
  margin-top: -200px;
  padding-bottom: 3rem;
}

/* Service Overview */
.service-overview {
  padding: 8rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.overview-content {
  gap: 6rem;
  align-items: center;
}

.overview-content .vision {
  display: grid;
  grid-template-columns: 2fr 1fr;
}

.overview-content .mission {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.overview-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #e0e7ff;
}

.overview-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.overview-highlights {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.highlight-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #b71833, #3a5ba7);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.highlight-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 8rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 6rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #fff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b71833, #3a5ba7);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #b71833, #b71833);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.benefit-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #e0e7ff;
}

.benefit-description {
  opacity: 0.9;
  line-height: 1.7;
}

/* Process Section */
.process-section {
  padding: 8rem 0;
  background: rgba(255, 255, 255, 0.02);
}

.process-timeline {
  position: relative;
  margin-top: 4rem;
}

.timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, #3a5ba7, #3a5ba7);
  border-radius: 2px;
}

.process-step {
  display: flex;
  gap: 3rem;
  margin-bottom: 4rem;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #b71833, #b71833);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.step-content {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 1;
}

.step-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e0e7ff;
}

.step-description {
  opacity: 0.9;
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Features Gallery */
.features-gallery {
  padding: 3rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-item {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.feature-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}

.feature-item:hover .feature-image img {
  transform: scale(1.1);
}

.feature-content {
  padding: 2rem;
}

.feature-title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #e0e7ff;
}

.feature-text {
  opacity: 0.9;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 8rem 0;
  text-align: center;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  margin-bottom: 2rem;
  background: linear-gradient(45deg, #fff, #e0e7ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-text {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 1.25rem 3rem;
  background: linear-gradient(45deg, #3a5ba7, #3a5ba7);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1.1rem;
  border: none;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out;
}

.btn-secondary {
  padding: 1.25rem 3rem;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  text-decoration: none;
  border-radius: 15px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Related Services */
.related-services {
  padding: 8rem 0;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
  margin-top: 4rem;
}

.related-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.5s ease;
  text-align: center;
}

.related-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
}

.related-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #3a5ba7, #3a5ba7);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
}

.related-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #e0e7ff;
}

.related-description {
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #c7d2fe;
  text-decoration: none;
  transition: all 0.3s ease;
}

.related-link:hover {
  color: #e0e7ff;
  transform: translateX(5px);
}

/* Footer */
.footer {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  .hero {
    padding: 8rem 0 4rem;
    background-attachment: scroll;
  }
  .hero-image {
    width: 250px;
    height: 250px;
  }
  .overview-content {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .mission_sec,
  .vision_sec {
    display: blcok;
    margin-left: 0;
    margin-right: 0;
    margin: auto;
    max-width: 90vw;
    overflow: hidden;
    text-align: center;
  }
  .valuse_sec .valus_cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    display: block;
    margin-top: 1rem;
  }
  circle {
    display: none;
  }
  .benefits-grid,
  .features-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .timeline-line {
    display: none;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .section-title {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .vision_sec {
    display: block;
    margin: auto;
    max-width: 90vw;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    color: white;
    min-height: 60vh;
  }
  .vision_sec .relative,
  .vision_sec .sm\:max-w-lg {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .vision_sec h1 {
    color: white;
    margin-top: 50px;
    text-align: center;
  }
  .vision_sec p {
    color: white;
    max-width: 100%;
    text-align: center;
  }
  /* Hide the complex desktop image grid */
  .vision_sec .mt-100,
  .vision_sec .pointer-events-none {
    display: none !important;
  }
  /* Add a new mobile image grid */
  .vision_sec::after {
    content: "";
    display: block;
    margin-top: 30px;
  }
  /* Add the mobile image grid container */
  .vision_sec .mobile-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    margin: 30px auto;
    max-width: 95%;
  }
  .vision_sec .column {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .vision_sec .column-left {
    justify-content: start;
  }
  .vision_sec .column-right {
    justify-content: center;
    /* ← ده بيخلي الصور تتوسّط عموديًا */
  }
  .vision_sec .image-item {
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
  }
  .vision_sec .image-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* Initial states for animations */
.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.ownership-card {
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ownership-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Logo slider animation */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logos-slide {
  animation: slide 30s linear infinite;
}

.logos-slide:hover {
  animation-play-state: paused;
}

/* Gradient overlays for smooth fade effect */
.fade-left {
  background: linear-gradient(to right, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}

.fade-right {
  background: linear-gradient(to left, rgb(255, 255, 255), rgba(255, 255, 255, 0));
}

/* For transparent background */
.transparent-bg {
  background-color: transparent;
}

/* CEO Message Section */
.ceo-message {
  padding: 5rem 0;
  background: rgba(0, 0, 0, 0.3);
}

.ceo-message-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.ceo-image {
  flex: 0 0 280px;
  height: 350px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  position: relative;
}

.ceo-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.ceo-content {
  flex: 1;
}

.ceo-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.ceo-position {
  font-size: 1.2rem;
  color: #b71833;
  margin-bottom: 1.5rem;
}

.ceo-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.ceo-signature {
  font-family: "Ephesis", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  color: #ffffff;
}

.ceo-signature-ar {
  font-family: "Cairo", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  .hero {
    padding: 10rem 0 3rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .ceo-message-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .ceo-image {
    flex: 0 0 auto;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }
  .team-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  .hero {
    padding: 8rem 0 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .team-image {
    height: 250px;
  }
  .team-content {
    padding: 1.5rem;
  }
}
/* CPHI Section Styles */
.cphi-section {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.02);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
}

.cphi-title {
  font-size: 1.7rem;
  text-align: center;
  font-weight: 300;
  padding-inline: 10px;
  line-height: 1.3;
}

.video-container {
  max-width: 900px;
  margin-right: 0;
  margin-left: 0;
  margin: auto;
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  background: #000;
}

.cphi-video {
  width: 100%;
  height: auto;
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Play Button Overlay */
.play-button-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.play-button-overlay:hover {
  background: rgba(0, 0, 0, 0.5);
}

.play-button {
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #b71833, #3a5ba7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(183, 24, 51, 0.4);
}

.play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(183, 24, 51, 0.6);
}

.play-icon {
  width: 32px;
  height: 32px;
  color: white;
  margin-left: 4px;
  /* Slight offset for visual balance */
}

/* Video Controls */
.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  z-index: 15;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-controls {
  opacity: 1;
}

.controls-overlay {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.control-bar {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.control-btn {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.control-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.control-btn svg {
  width: 24px;
  height: 24px;
}

.progress-container {
  flex: 1;
  position: relative;
  height: 20px;
  display: flex;
  align-items: center;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  position: relative;
  cursor: pointer;
}

.progress-filled {
  height: 100%;
  background: linear-gradient(90deg, #b71833, #3a5ba7);
  border-radius: 2px;
  width: 0%;
  transition: width 0.1s ease;
}

.progress-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.time-display {
  color: white;
  font-size: 0.9rem;
  white-space: nowrap;
  min-width: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .cphi-title {
    font-size: 1.3rem;
  }
  .cphi-video {
    min-height: 250px;
  }
  .play-button {
    width: 80px;
    height: 80px;
  }
  .play-icon {
    width: 24px;
    height: 24px;
  }
  .video-controls {
    padding: 15px;
  }
  .control-bar {
    gap: 0.5rem;
  }
  .control-btn svg {
    width: 20px;
    height: 20px;
  }
  .time-display {
    font-size: 0.8rem;
    min-width: 70px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  .section-subtitle {
    font-size: 1rem;
  }
  .cphi-video {
    min-height: 200px;
  }
  .play-button {
    width: 60px;
    height: 60px;
  }
  .play-icon {
    width: 20px;
    height: 20px;
  }
  .video-controls {
    padding: 10px;
  }
  .time-display {
    display: none;
    /* Hide time on very small screens */
  }
}/*# sourceMappingURL=about_extra.css.map */