.about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2rem;
}

.about-content {
  margin-top: 2rem;
}

.about-story {
  margin-bottom: 4rem;
  padding: 3rem;
  background: var(--glass-background);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.about-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.5;
}

.about-story h2 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.team-section {
  margin-top: 3rem;
}

.team-section h2 {
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 2rem;
}

/* Update the leadership team section for better mobile responsiveness */
.leadership-team {
  margin: 4rem 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Add this media query to center team cards on mobile */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  
  .team-member {
    max-width: 320px;
    width: 100%;
  }
}

.team-card {
  background: var(--glass-background);
  border-radius: 12px;
  padding: 2.5rem;
  text-align: center;
  transition: var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.member-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 2rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 20px var(--accent-glow);
  position: relative;
}

.member-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 50%, rgba(0, 229, 255, 0.1));
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.position {
  color: var(--accent-color);
  margin: 0.5rem 0;
}

.bio {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}


/* Contact Section Styles */
.contact-section {
  margin-top: 5rem;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-heading {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.contact-tagline {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--text-color-light);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.contact-info-card {
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-card h3 {
  margin-bottom: 1rem;
  color: var(--accent-color);
}

.contact-info-card ul {
  list-style: none;
  padding: 0;
}

.contact-info-card ul li {
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--accent-color-hover);
  text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-container {
  margin-top: 3rem;
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.contact-form-container h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
  position: relative;
  display: inline-block;
}

.contact-form-container h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  margin-bottom: 0.7rem;
  font-weight: 500;
  color: var(--text-color-light);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.form-group input,
.form-group textarea {
  padding: 1rem 1.2rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-color);
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.15), inset 0 2px 4px rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.35);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  grid-column: span 2;
  padding: 1.2rem;
  background: var(--accent-color);
  color: #000;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 229, 255, 0.3);
}

.submit-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
}

.submit-button:hover {
  background: var(--accent-color-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 229, 255, 0.4);
}

.submit-button:hover::before {
  left: 100%;
}

.submit-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(0, 229, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .form-group.full-width {
    grid-column: span 1;
  }
  
  .submit-button {
    grid-column: span 1;
    padding: 1rem;
  }
  
  .contact-form-container {
    padding: 1.8rem;
  }
}

/* Services Section Styles */
.services-section {
  padding: 4rem 0;
}

/* Add these new styles to your About.css file */

.about-hero {
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(20,27,45,0.9) 100%);
  border-radius: 15px;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: url('/src/assets/images/CyberImg2.jpg') center/cover no-repeat; */
  opacity: 0.2;
  z-index: -1;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--accent-color), #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 229, 255, 0.5);
}

.about-hero p {
  font-size: 1.5rem;
  color: var(--text-color-light);
  max-width: 600px;
}

/* Update service cards to have equal height */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: rgba(20, 27, 45, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(0, 229, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.service-card .tools {
  margin-top: auto;
}

/* Enhance team cards */
.team-card {
  background: rgba(20, 27, 45, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 229, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(0, 229, 255, 0.2);
}

/* Add a glow effect to section headings */
.services-section h2,
.team-section h2,
.contact-section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 2.5rem;
  padding-bottom: 0.5rem;
}

.services-section h2::after,
.team-section h2::after,
.contact-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  box-shadow: 0 0 10px var(--accent-glow);
  border-radius: 3px;
}

/* Improve spacing between sections */
.services-section,
.team-section,
.contact-section {
  margin-top: 6rem;
  padding-top: 2rem;
}

/* Add a subtle divider between sections */
.services-section::before,
.team-section::before,
.contact-section::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
  margin-bottom: 3rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .about-hero h1 {
    font-size: 2.8rem;
  }
  
  .services-section,
  .team-section,
  .contact-section {
    margin-top: 4rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: auto;
    padding: 4rem 1rem;
  }
  
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .about-hero p {
    font-size: 1.2rem;
  }
  
  .services-section h2,
  .team-section h2,
  .contact-section h2 {
    text-align: center;
    display: block;
  }
  
  .services-section h2::after,
  .team-section h2::after,
  .contact-section h2::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.tools {
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 8px;
  margin-top: auto;
}

.tools h5 {
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.tools p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.trust-section {
  margin-top: 4rem;
  padding: 2rem;
  background: rgba(20, 27, 45, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.trust-section h2 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.trust-section ul {
  list-style: none;
  padding: 0;
}

.trust-section li {
  margin-bottom: 1rem;
  color: var(--text-color-light);
  font-size: 1.1rem;
}

.cta-section {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem;
  background: rgba(20, 27, 45, 0.8);
  border-radius: 15px;
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.cta-section h2 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: var(--text-color-light);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .cta-section {
    padding: 2rem;
  }
}