.content-wrapper {
  position: relative;
  z-index: -1;
}
.about-hero {
  min-height: 60vh;
  position: relative;
}
.about-hero::after {
  content: "";
  position: absolute;
  top: -110px;
  left: 0;
  width: 100%;
  height: 130%;
  /* background-image: url(../images/about-bg.png); */

  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
}
.about-hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  margin-top: 150px;
}

.about-hero-title .highlight {
  background: linear-gradient(45deg, #2be296, #1e90ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #e0e0e0;
  margin-bottom: 3rem;
  /* max-width: 800px; */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.btn-wrapper {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}
.mission-img img {
  width: 100%;
}
.product-img img {
  width: 80%;
  margin: 0 auto;
}



.team-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin: 0 auto;
  display: block;
}

.team-image-wrapper {
  position: relative;
  text-align: center;
}

.team-image-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #8a2be2, #1e90ff);
  border-radius: 30px;
  opacity: 0.3;
  z-index: -1;
}

/* Responsive styles */
@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }

  .about-description {
    font-size: 1.1rem;
    padding: 0 15px;
  }

  .btn-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .about-hero-title {
    margin-top: 120px;
    font-size: 40px;
  }

  .about-hero {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 2rem;
  }

  .about-description {
    font-size: 1rem;
  }
}

.about-choose {
  padding: 80px 0 120px;
  background: url(../images/svg/about-choose.svg) no-repeat center center/cover;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}

/* ==============================================team section======================================== */
.team-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.team-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.team-title .highlight {
  color: #40e0d0;
  text-shadow: 0 0 20px rgba(64, 224, 208, 0.5);
}

.team-subtitle {
  font-size: 1.1rem;
  color: #b8bcc8;
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.team-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.team-slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 30px;
  width: 100%;
}

.team-card {
  flex: 0 0 280px;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(64, 224, 208, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.team-card:hover::before {
  left: 100%;
}

.team-card:hover {
  transform: translateY(-10px);
  border-color: rgba(64, 224, 208, 0.3);
  box-shadow: 0 20px 40px rgba(64, 224, 208, 0.1);
}

.team-card.active {
  border-color: #40e0d0;
  transform: translateY(-5px);
}

.team-card.active .team-image {
  border-color: #40e0d0;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 25px;
  border: 3px solid #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0px 10px 30px #12cdffa1;
}

.team-card:hover .team-image {
  border-color: #40e0d0;
  transform: scale(1.05);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.1);
}

.team-name {
  font-size: 18px;
  font-weight: 600;
  color: #141414;
  background: white;
  padding: 8px;
  border-radius: 50px;
  position: relative;
  width: 100%;
  margin: -60px auto 10px;
}

.team-position {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

.team-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(64, 224, 208, 0.1);
  border: 2px solid rgba(64, 224, 208, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.team-btn:hover {
  background: rgba(64, 224, 208, 0.2);
  border-color: #40e0d0;
  transform: translateY(-50%) scale(1.1);
}

.team-btn i {
  color: #40e0d0;
  font-size: 1.2rem;
}

.team-btn.prev {
  left: -25px;
}

.team-btn.next {
  right: -25px;
}

.dots-indicator {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(64, 224, 208, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: #40e0d0;
  transform: scale(1.2);
}
.over-hide {
  overflow: hidden;
  position: relative;
  width: 100%;

}

/* Responsive Design */
@media (max-width: 1200px) {
  .team-card {
    flex: 0 0 300px;
  }

  .team-carousel {
    max-width: 1000px;
  }
}

@media (max-width: 992px) {
  .section-title {
    font-size: 2.5rem;
  }

  .team-card {
    flex: 0 0 350px;
  }

  .team-carousel {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 40px;
  }

  .team-card {
    flex: 0 0 280px;
  }

  .team-carousel {
    max-width: 320px;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
  }

  .nav-btn.prev {
    left: -20px;
  }

  .nav-btn.next {
    right: -20px;
  }
}

@media (max-width: 576px) {
  .team-section {
    padding: 60px 0 0;
  }

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

  .team-card {
    flex: 0 0 320px;
    padding: 30px 20px;
  }

  .team-image {
    width: 180px;
    height: 180px;
  }

  .team-name {
    font-size: 1.1rem;
  }

  .team-position {
    font-size: 0.9rem;
  }
}

/* =============================================value================================================== */

.values-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}

.values-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(0, 255, 255, 0.1) 50%,
    transparent 100%
  );
  border-radius: 50% 50% 0 0;
  animation: wave 6s ease-in-out infinite;
}

.values-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -20%;
  width: 140%;
  height: 150px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #0e0350 50%,
    transparent 100%
  );
  border-radius: 50%;
  opacity: 0.3;
  animation: glow 4s ease-in-out infinite alternate;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(0) scaleX(1);
  }
  50% {
    transform: translateY(-20px) scaleX(1.05);
  }
}

@keyframes glow {
  0% {
    opacity: 0.2;
    transform: translateX(-10px);
  }
  100% {
    opacity: 0.4;
    transform: translateX(10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.main-title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.main-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.values-grid {
  position: relative;
  z-index: 10;
}

.value-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.3);
  /* border: 1px solid transparent;
    background: linear-gradient(#040427, #061640) padding-box, 
              linear-gradient(45deg, #5ffaff, #f1ff33) border-box; */
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  animation: slideInLeft 0.8s ease-out;
}

.value-card:nth-child(1) {
  animation-delay: 0.2s;
}
.value-card:nth-child(2) {
  animation-delay: 0.4s;
}
.value-card:nth-child(3) {
  animation-delay: 0.6s;
}
.value-card:nth-child(4) {
  animation-delay: 0.8s;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transition: all 0.6s ease;
}

.value-card:hover::before {
  left: 100%;
}

.value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.6);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.value-icon {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 1.5rem;
  animation: float 3s ease-in-out infinite;
}

.value-card:nth-child(1) .value-icon {
  animation-delay: 0s;
}
.value-card:nth-child(2) .value-icon {
  animation-delay: 0.5s;
}
.value-card:nth-child(3) .value-icon {
  animation-delay: 1s;
}
.value-card:nth-child(4) .value-icon {
  animation-delay: 1.5s;
}

.value-title {
  color: #00d4ff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.value-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 200;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-title {
    font-size: 2.5rem;
  }
  .value-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 992px) {
  .main-title {
    font-size: 2.2rem;
  }
  .main-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }
  .value-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 60px 0;
  }
  .main-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .main-subtitle {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
  }
  .value-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  .value-icon {
    font-size: 2.5rem;
  }
  .value-title {
    font-size: 1.2rem;
  }
  .about-choose {
    padding: 30px 0 120px;
  }
  .team-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .values-section {
    padding: 40px 0;
  }
  .main-title {
    font-size: 1.8rem;
  }
  .main-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  .value-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
  .value-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .value-title {
    font-size: 1.1rem;
  }
  .value-description {
    font-size: 0.9rem;
  }
}

/* Animation on scroll */
.fade-in {
  /* opacity: 0; */
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation for icons */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.value-card:hover .value-icon {
  animation: pulse 0.6s ease-in-out infinite;
}
