.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;  
}
.titles{
      font-size: 3rem;
  margin: 0 auto 20px;
  line-height: 1.2;
  background: linear-gradient(to right, #ffffff,#c9b6f8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  position: relative;
  display: inline-block;
}
.titles::after{
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #8c79cf, transparent);
  border-radius: 3px;
  opacity: 0;
  animation: fadeIn 0.8s 0.8s forwards;
}

/* 1. Hero Section */
.about-hero {
  padding: 180px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.section-subtitle {
  color: #8c79cf;
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 0.8s 1.2s forwards;
}

.hero-title {
  font-size: 3rem;
  margin: 0 auto 20px;
  line-height: 1.2;
  background: linear-gradient(to right, #ffffff,#c9b6f8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 1.4s forwards;
  position: relative;
  display: inline-block;
}

.hero-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #8c79cf, transparent);
  border-radius: 3px;
  opacity: 0;
  animation: fadeIn 0.8s 1.4s forwards;
}

.hero-description {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  animation: fadeIn 0.8s 1.6s forwards;
}

/* 2. Journey Section */
.journey {
  position: relative;
}

.journey::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 70%, rgba(140, 121, 207, 0.05), transparent 50%);
  z-index: -1;
}

.journey-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 50px;
  opacity: 0;
  animation: fadeInUp 0.8s 1.8s forwards;
}

.journey-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: white;
  line-height: 1.7;
  text-align: justify;
}

/* 3. Team Section */
.team {
  position: relative;
  padding-bottom: 100px;
}
.team-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}

.ceo {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.ceo:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(170, 0, 255, 0.1);
}

.ceo-image {
  width: 100%;
  height: 400px;
  background-color: white;
  background-image: url('../images/partner/omar.PNG');
  background-size: cover;
  background-position: center;
  border-radius: 15px;
}

.team-info {
  text-align: center;
  margin-bottom: 20px;
}

.team-info h3 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: white;
}

.team-info p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}


.team-members {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

.team-member {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(170, 0, 255, 0.1);
}

.member-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
  border: 3px solid rgba(140, 121, 207, 0.3);
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.member-info h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: white;
}

.member-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

/* 4. Mission Section */
.mission {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  padding-bottom: 100px;
}
.mission .container{
    padding-bottom: 50px;
}
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.mission-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: white;
  line-height: 1.7;
}

/* Values */
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  transition: all 0.4s ease;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #8c79cf;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  transform: scale(1.2);
}

.value-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: white;
}

.value-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .journey-content,
  .mission-content {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 85%;
  }
  
  .team-container {
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 85%;
  }
  .hero-description{
      max-width: 85%;
  }
  .team-members {
    grid-template-rows: auto;
  }
  
  .values {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ceo-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 80px 0;
  }
  
  .about-hero {
    padding: 150px 0 80px;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .team-member {
    flex-direction: column;
    text-align: center;
  }
  
  .member-image {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .values {
    grid-template-columns: 1fr;
  }
  
  .ceo-image {
    height: 300px;
            background-size: contain;
        background-repeat: no-repeat;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .ceo-image {
    height: 250px;
  }
}