

/* Hero Section */

@keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px); 
    }
    to {
      opacity: 1;
      transform: translateY(0); 
    }
  }
  
  /* الحالة الافتراضية للعناصر */
  .hero-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
  }
  
  /* عند إضافة كلاس visible */
  .hero-section.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 1s ease-out; /* تشغيل الأنيميشن */
  
    /*hero section*/
  }
  .hero-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 16px;
    gap: 32px;
    max-width: 1440px;
    margin: 0 auto;
    min-height: 100vh;
  }
  
  .call-to-action {
    text-align: center;
    max-width: 1140px;
  }
  
  .title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #191c19;
  }
  
  .subtitle {
    font-size: 1rem;
    color: #454744;
    margin-bottom: 24px;
  }
  
  .cta-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 500;
    background-color: var(--accent-color);
    color: #0f120f;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .cta-button:hover {
    transform: scale(1.05);
  }
  
  .image-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  
  
  /* Features Section */
  .feature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 3rem 1rem;
    width: 100%;
    background-color: var(--text-light);
    opacity: 0;
    transform: scale(0.95);
    transition: var(--transition);
  }
  
  .feature.visible {
    opacity: 1;
    transform: scale(1);
  }
  
  /* Content section */
  .feature-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    max-width: 409px;
    width: 100%;
  }
  
  .feature-title {
    color: var(--text-dark);
    font-size: 1.875rem;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 1rem;
  }
  
  .feature-subtitle {
    color: var(--text-gray);
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  /* Button styles */
  .feature-button {
  width: 110px;
  height: 60px;
    padding: 0.5rem 0.75rem;
    background-color: var(--accent-color);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #0F120F;
    border: none;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .feature-button:hover {
    transform: scale(1.05);
    background-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(39, 222, 125, 0.2);
  }
  
  /* Image container */
  .feature-image-container {
    position: relative;
    width: 100%;
    height: 300px;
    border: 1px solid var(--accent-color);
    border-radius: 0.75rem;
    margin-top: 2rem;
    overflow: hidden;
  }
  
  .feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
    transition: var(--transition);
  }
  
  .feature-image:hover {
    transform: scale(1.02);
  }
  
  /* Animation classes */
  .zoom-in {
    animation: zoomIn 0.6s ease-out forwards;
  }
  
  @keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
  }
  

  /* Responsive design */
@media (min-width: 1024px) {
  .feature {
      flex-direction: row;
      gap: 4rem;
      padding: 6rem 150px;
  }

  .feature-title {
      font-size: 2.25rem;
      line-height: 2.75rem;
  }

  .feature-subtitle {
      font-size: 1.25rem;
      line-height: 1.875rem;
  }

  .feature-image-container {
      width: 608px;
      height: 420px;
      margin-top: 0;
  }
}

/* Additional hover effects */
.feature-content:hover .feature-title {
  color: var(--primary-color);
  transition: var(--transition);
}

.feature-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--accent-color);
  outline-offset: 2px;
}




  
  
   /* Achievement  Styles */
   #achievements {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 96px 150px;
    gap: 64px;
    width: 100%;
    height: 396px;
    background: #F8FDFB;
    align-self: center;
    margin: auto;
  }
  
  .achievements-wrapper {
    width: 100%;
    max-width: 1140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
  }
  
  .achievements-title {
    width: 100%;
    height: 44px;
    font-style: normal;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    letter-spacing: -0.02em;
    color: #191C19;
  }
  
  .achievements-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: center;
    padding: 0;
    gap: 40px;
    width: 100%;
    height: 96px;
  }
  
  .achievement-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 8px;
    width: 196px;
    min-width: 196px;
    height: 96px;
  }
  
  .number-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    gap: 6px;
    width: 196px;
    height: 60px;
  }
  
  .number {
  
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 60px;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .description {
    width: 196px;
    height: 28px;
   
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #454744;
  }

  

  
/* Responsive design */
@media (min-width: 1024px) {
    .feature {
        flex-direction: row;
        gap: 4rem;
        padding: 6rem 150px;
    }
  
    .feature-title {
        font-size: 2.25rem;
        line-height: 2.75rem;
    }
  
    .feature-subtitle {
        font-size: 1.25rem;
        line-height: 1.875rem;
    }
  
    .feature-image-container {
        width: 608px;
        height: 420px;
        margin-top: 0;
    }
  }
  
  /* Additional hover effects */
  .feature-content:hover .feature-title {
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .feature-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-color);
    outline-offset: 2px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .desktop-menu {
      display: none;
    }
    
    .hamburger {
      display: block;
    }
    
    .mobile-menu {
      flex-direction: column;
      gap: 16px;
    }
    
    .mobile-menu.show {
      display: flex;
    }
    
    .container {
      height: 64px;
    }
    
    .logo img {
      height: 40px;
    }
  }
  
  /* Hero Section */
  @media (min-width: 576px) {
    .title {
      font-size: 2.5rem;
    }
  
    .subtitle {
      font-size: 1.125rem;
      margin-bottom: 32px;
    }
  
    .cta-button {
      font-size: 1.125rem;
      padding: 12px 32px;
    }
  
    .image-container {
      height: 500px;
    }
  }
  
  @media (min-width: 768px) {
    .hero-section {
      padding: 32px;
      gap: 48px;
    }
  
    .title {
      font-size: 3rem;
    }
  
    .subtitle {
      font-size: 1.25rem;
    }
  
    .cta-button {
      font-size: 1.25rem;
    }
  
    .image-container {
      height: 600px;
    }
  }
  
  @media (min-width: 992px) {
    .hero-section {
      padding: 48px;
      gap: 64px;
    }
  
    .title {
      font-size: 3.5rem;
    }
  
    .subtitle {
      font-size: 1.5rem;
    }
  
    .image-container {
      height: 700px;
    }
  }
  
  @media (min-width: 1200px) {
    .title {
      font-size: 4rem;
    }
  
    .subtitle {
      font-size: 1.75rem;
    }
  
    .cta-button {
      font-size: 1.375rem;
    }
  
    .image-container {
      height: 756px;
    }
  }



  /* Influencers Section */

  /* Influencers Section */
  .influencer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    width: 100%;
    background-color: #F8FDFB;
  }
  
  .section-header {
    max-width: 72rem;
    width: 100%;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #111827;
  }
  
  .section-subtitle {
    font-size: 1rem;
    color: #4B5563;
  }
  
  .influencer-container {
    width: 100%;
    max-width: 72rem;
    overflow: hidden;
  }
  
  .influencer-slider {
    display: flex;
    transition: transform 0.3s ease-in-out;
  }
  
  .influencer-card {
    flex-shrink: 0;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .influencer-image-container {
    position: relative;
    width: 5rem;
    height: 5rem;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.5rem;
  }
  
  .influencer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .influencer-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #1F2937;
    text-align: center;
  }

@media (min-width: 640px) {
  .influencer-section {
      padding: 4rem 1rem;
  }

  .section-title {
      font-size: 2.5rem;
  }

  .section-subtitle {
      font-size: 1.125rem;
  }

  .influencer-image-container {
      width: 6rem;
      height: 6rem;
  }

  .influencer-name {
      font-size: 1rem;
  }
}

@media (min-width: 768px) {


  .influencer-section {
      padding: 5rem 1rem;
  }

  .section-title {
      font-size: 3rem;
  }

  .section-subtitle {
      font-size: 1.25rem;
  }

  .influencer-image-container {
      width: 7rem;
      height: 7rem;
  }
}

@media (min-width: 1024px) {


  .influencer-image-container {
      width: 8rem;
      height: 8rem;
  }
}


  
  /* Achievement Responsive */
  
  @media (max-width: 1440px) {
    
    #achievements {
        padding: 96px 40px;
    }
  }
  
  @media (max-width: 768px) {
    #achievements {
        padding: 96px 20px;
        height: auto;
    }
  
    .achievements-container {
        height: auto;
        flex-wrap: wrap;
    }
  }