/*About Header Section*/
.about-header-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 0;
  background-color: #fff;
}

.about-header-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  padding: 0 20px;
}

.about-header-title {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.about-header-paragraph {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
  max-width: 1100px;
}

.highlight-orange {
  color: #ff5003;
}

/*Vidio Section*/
.mockup-section {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mockup-container {
  position: relative;
  width: 700px;
  height: 400px;
  background-color: transparent;
}

.panel-large {
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.panel-small {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 250px;
  height: 160px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.play-button {
  width: 60px;
  height: 60px;
  background-color: #e53935;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.play-button i {
  color: white;
  font-size: 24px;
  margin-left: 3px;
}

.dots {
  margin-top: 20px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: #888;
  border-radius: 50%;
  opacity: 0.5;
}

.dot.active {
  opacity: 1;
}

/*Our Skills Section*/
.about-skill-section {
  width: 100%;
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.about-skill-container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-skill-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.about-skill-paragraph {
  font-size: 1.2rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.about-skill-circle-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 60px;
}

.skill-icon-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.skill-icon-circle:hover {
  transform: scale(1.1);
}

.skill-icon-circle img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.about-skill-details-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.skill-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.skill-bullet {
  color: #003366;
  font-size: 1.5rem;
  line-height: 1.5rem;
  margin-top: 5px;
}

.skill-title-detail {
  font-size: 1.5rem;
  font-weight: 600;
  color: #003366;
  margin-bottom: 5px;
}

.skill-description-detail {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/*Team Section*/
.about-team-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.about-team-container {
  max-width: 1200px;
  margin: 0 auto 50px;
}

.about-team-title {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.highlight-orange {
  color: #ff5003;
}

.about-team-paragraph {
  font-size: 1.5rem;
  color: #555;
}

.about-team-card-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-card {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  width: 280px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
}

.team-card-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card-info {
  padding: 20px;
}

.team-social-links {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  gap: 10px;
}

.socials-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #eee;
  color: #333;
  gap: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background-color: #333;
  color: white;
  transform: scale(1.1);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.team-card-name {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 1rem;
  color: #888;
  margin-bottom: 6px;
}

.team-card-skill {
  font-size: 0.95rem;
  color: #666;
}

.logo a {
    text-decoration: none;
}








@media (max-width: 1024px) {

.about-header-section{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 0px 50px 0px;
    background-color: #fff;
}
  .about-header-title,
  .about-skill-title,
  .about-team-title {
    font-size: 2.5rem;
    width: 80%;
    margin: 0 auto;
  }
  .about-header-paragraph,
  .about-skill-paragraph,
  .about-team-paragraph {
    font-size: 1.1rem;
    width: 90%;
    margin: 0 auto;
  }
  .about-header-container,
  .about-skill-container,
  .about-team-container {
    font-size: 1.1rem;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 50px;
  }

/*Vidio Section*/
.mockup-container {
  position: relative;
  width: 500px;
  height: 300px;
  background-color: transparent;
}


.panel-small {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 200px;
  height: 140px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-right: -70px;
}

  .team-card {
    width: 220px;
  }
  .team-card-photo {
    height: 180px;
  }
  .team-card-name{
    font-size: 1rem;
  }
  .team-card-role{
    font-size: 0.9rem;
  }
  .team-card-skill{
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .about-header-section,
  .about-skill-section,
  .about-team-section {
    padding: 50px 0px 10px 0px;
  }
  .about-header-title,
  .about-skill-title {
    font-size: 1.6rem;
  }
  .about-header-paragraph,
  .about-skill-paragraph {
    font-size: 1rem;
    width: 600px;
  }
/*Vidio Section*/
.mockup-container {
  position: relative;
  width: 450px;
  height: 280px;
  background-color: transparent;
}


.panel-small {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 180px;
  height: 130px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  margin-right: -40px;
}
  .team-card-name{
    font-size: 1rem;
  }
  .team-card-role{
    font-size: 0.9rem;
  }
  .team-card-skill{
    font-size: 0.7rem;
  }

}


@media (max-width: 480px) {
  .about-header-section,
  .about-skill-section,
  .about-team-section {
    padding: 10px 0px 10px 0px;
    width: 100%;
    margin: 0 auto;
  }
  .about-header-title,
  .about-skill-title,
  .about-team-title {
    font-size: 1.6rem;
  }
  .about-header-paragraph,
  .about-skill-paragraph,
  .about-team-paragraph {
    font-size: 0.8rem;
    width: 100%;
    margin: 0 auto;
  }
  
.mockup-section {
    padding: 10px 20px 50px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
  .mockup-container{
    position: relative;
    width: 280px;
    height: 180px;
    background-color: transparent;
    margin-right:100px ;
}
.panel-small {
  position: absolute;
  top: 50%;
  right: -50px;
  transform: translateY(-50%);
  width: 150px;
  height: 100px;

  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.play-button {
    width: 40px;
    height: 40px;
    background-color: #e53935;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.play-button i {
    color: white;
    font-size: 18px;
    margin-left: 3px;
}
    
.team-card {
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 190px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}
.about-team-container {
  font-size: 1.1rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}
.about-team-card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.team-card-name,
.team-card-role {
    font-size: 0.8rem;
}
.team-card-skill {
    font-size: 0.6rem;
    color: #666;
}

.team-social-links {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
  gap: 10px;
}

.socials-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: #eee;
  color: #333;
  gap: 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}
  }
