    .page-header {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 50px 20px;
  z-index: 1;
  background: #0f0f23;
}

/*it go to the current page*/


.page-header .container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-header h1 {

  font-size: 4.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  background: linear-gradient(125deg, #ffffff, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite alternate;
  text-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
  transform: translateZ(0);
}

.page-header .lead {
  font-size: 1.5rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.page-header .lead:hover {
  transform: translateZ(5px);
  opacity: 1;
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 10px rgba(139, 92, 246, 0.3), 0 0 20px rgba(59, 130, 246, 0.2); }
  100% { text-shadow: 0 0 30px rgba(59, 130, 246, 0.5), 0 0 50px rgba(139, 92, 246, 0.4), 0 0 70px rgba(6, 182, 212, 0.3); }
}

/* ========== ABOUT CONTENT SECTION — HERO-STYLE ========== */

.about-content {
  padding: 100px 20px;
  background: rgba(15, 15, 35, 0.5);
  position: relative;
  overflow: hidden;
}

.about-content .container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(125deg, #ffffff, #8b5cf6, #3b82f6);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
  transition: transform 0.4s ease;
}




.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 1;
  margin-bottom: 1.5rem;
  color: #ffffff;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.about-section p:hover {
  opacity: 1;
  transform: translateZ(3px);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.about-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 1; 
  color: #ffffff;
  flex: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-card:hover p {
  opacity: 1;
  transform: translateZ(3px);
}

/* About Cards Grid */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateZ(0) rotateX(0deg);
  box-shadow: 
    0 4px 16px rgba(0, 0, 0, 0.1),  
    0 2px 6px rgba(139, 92, 246, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

ط

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), transparent);
  border-radius: 28px;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-card:hover {
  transform: translateY(-6px) scale(1.015) rotateX(1.5deg) translateZ(10px); 
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow: 
    0 10px 25px rgba(139, 92, 246, 0.175), 
    0 5px 15px rgba(59, 130, 246, 0.1);   
}


.about-card:hover::before {
  opacity: 1;
}

/* Icon Styling */
.about-card .icon {
  font-size: 3.2rem;
  margin-bottom: 1.5rem;
  display: block;
  color: white;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 4px 8px rgba(139, 92, 246, 0.3));
}

.about-card:hover .icon {
  transform: scale(1.25) rotate(3deg) translateZ(10px);
  filter: drop-shadow(0 8px 20px rgba(139, 92, 246, 0.5));
}

/* Title Styling */
.about-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: white;
  background: linear-gradient(to right, #fff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.about-card:hover h3 {
  transform: translateX(5px) translateZ(5px);
}

/* Paragraph & List Styling */
.about-card p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
  flex: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.about-card:hover p {
  opacity: 1;
  transform: translateZ(3px);
}

.about-card ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  text-align: left;
  width: 100%;
}

.about-card li {
  margin: 0.6rem 0;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  color: #ffffff;
}

.about-card:hover li {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(3px) translateZ(3px);
}

/* Responsive */
@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2.8rem;
  }

  .page-header .lead {
    font-size: 1.25rem;
  }

  .about-content {
    padding: 60px 20px;
  }

  .about-section h2 {
    font-size: 2.2rem;
  }

  .cards-container {
    gap: 2rem;
  }

  .about-card {
    padding: 2rem 1.5rem;
  }

  .about-card .icon {
    font-size: 2.8rem;
  }

  .about-card h3 {
    font-size: 1.4rem;
  }
}



/*team section style css*/

    /* ========== TEAM SECTION — HERO-STYLE MODERN 3D GLASS ========== */

.team-section {
  padding: 120px 20px 100px;
  background: rgba(15, 15, 35, 0.6);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.team-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.team-section h2 {
  font-size: 3.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 4rem;
  letter-spacing: -0.5px;
  background: linear-gradient(125deg, #ffffff, #8b5cf6, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  animation: titleGlow 3s ease-in-out infinite alternate;
  text-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
  transform: translateZ(0);
}

@keyframes titleGlow {
  0% { text-shadow: 0 0 10px rgba(139, 92, 246, 0.3), 0 0 20px rgba(59, 130, 246, 0.2); }
  100% { text-shadow: 0 0 30px rgba(59, 130, 246, 0.5), 0 0 50px rgba(139, 92, 246, 0.4), 0 0 70px rgba(6, 182, 212, 0.3); }
}
.team-grid {
  display: flex;               /* استفاده از فلکس برای یک ردیف */
  flex-wrap: wrap;             /* کارت‌ها در موبایل به ردیف بعدی می‌روند */
  justify-content: center;     /* وسط چین افقی */
  gap: 2rem;                   /* فاصله بین کارت‌ها */
  width: 100%;
  margin: 0 auto;
}

.team-member {
  flex: 0 1 300px;             /* کارت حداقل 300px و قابل کوچک شدن */
  max-width: 300px;            /* حداکثر عرض کارت */
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.1), 0 3px 8px rgba(139, 92, 246, 0.06);
  backdrop-filter: blur(18px);
  position: relative;
}


.team-member::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), transparent);
  border-radius: 32px;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.team-member:hover {
  transform: translateY(-7px) scale(1.02) rotateX(2deg) translateZ(12px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 
    0 12px 30px rgba(139, 92, 246, 0.2),
    0 7px 20px rgba(59, 130, 246, 0.12);
}


.team-member:hover::before {
  opacity: 1;
}

.member-photo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1.8rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: grayscale(0.1) brightness(0.95);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.team-member:hover .member-photo {
  transform: scale(1.12) translateZ(10px);
  border-color: rgba(139, 92, 246, 0.7);
  filter: grayscale(0) brightness(1.05);
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.35);
}

.team-member h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: white;
  background: linear-gradient(to right, #fff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.4s ease;
}

.team-member:hover h4 {
  transform: translateX(5px) translateZ(5px);
}

.role {
  font-size: 1rem;
  opacity: 0.75;
  margin-bottom: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.team-member:hover .role {
  opacity: 1;
  transform: translateZ(3px);
  color: #3b82f6;
}

.bio-short {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 1.8rem;
  transition: all 0.4s ease;
  flex: 1;
}

.team-member:hover .bio-short {
  opacity: 1;
  transform: translateZ(4px);
}




/* Social Links */
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: rgba(139, 92, 246, 0.7);
  transform: translateY(-4px) scale(1.15) translateZ(10px);
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.4);
  color: white;
}

.no-data {
  text-align: center;
  font-size: 1.6rem;
  opacity: 0.7;
  padding: 6rem 2rem;
  color: rgba(255, 255, 255, 0.7);
  grid-column: 1 / -1;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .team-section {
    padding: 80px 20px 60px;
  }

  .team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
  }

  .team-grid {
    gap: 2rem;
  }

  .team-member {
    padding: 2rem 1.5rem;
  }

  .member-photo {
    width: 110px;
    height: 110px;
    margin-bottom: 1.5rem;
  }

  .team-member h4 {
    font-size: 1.3rem;
  }
}

