/*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;
  overflow: hidden;
  white-space: nowrap;
  animation: blink 0.7s step-end infinite;
}

.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: 20px;
  margin-bottom: 60px;
}

.skill-circle {
  position: relative;
  width: 160px;
  height: 160px;
}

.circle-svg {
  width: 160px;
  height: 160px;
}

circle.bg {
  fill: none;
  stroke: #e6e6e6;
  stroke-width: 20;
}

circle.progress {
  fill: none;
  stroke: #003366;
  stroke-width: 14;
  stroke-dasharray: 439.82;
  transition: stroke-dashoffset 0.8s ease-in-out;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
}

.circle-label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background-color: #003366;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.circle-label h1 {
  margin: 0;
  font-size: 1.2rem;
}

.circle-label p {
  font-size: 0.9rem;
  margin: 0;
}
/* Persentase */
.progress-85 {
  stroke-dashoffset: 65.97;
}

.progress-95 {
  stroke-dashoffset: 21.99;
}











.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;
    opacity: 0;
  transform: translateY(40px);
}

.team-card:hover {
  transform: translateY(-8px);
}
.team-card.reveal-up {
  animation: fadeUp 0.8s ease forwards;
}
.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);
}
.socials-link:hover svg {
  transform: scale(1.2);
  color: #ff8c42;
}
.social-link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.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;
}

.typing-cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: orange;
  animation: blink 0.8s infinite;
  vertical-align: middle;
}



@keyframes blink { 50% { border-color: transparent; } }

/* Fade in */
.fade-in { opacity: 0; transform: translateY(15px); animation: fadeIn 1s ease forwards; }
@keyframes fadeIn { to { opacity: 1; transform: translateY(0); } }

/* Fade in up (scroll reveal) */
.fade-in-up { opacity: 0; transform: translateY(30px); animation: fadeUp 1s ease forwards; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Slide panels */
.slide-in-left { animation: slideLeft 1s ease forwards; }
.slide-in-right { animation: slideRight 1s ease forwards; }
@keyframes slideLeft { from { opacity: 0; transform: translateX(-80px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideRight { from { opacity: 0; transform: translateX(80px); } to { opacity: 1; transform: translateX(0); } }








@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: 240px;
    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;
}
}

@media (max-width: 375px) {
    .team-card {
        width: 150px;
    }
}

@media (max-width: 320px) {
    .mockup-container {
        position: relative;
        width: 200px;
        height: 180px;
        background-color: transparent;
        margin-right: 70px;
    }
    .panel-small {
        position: absolute;
        top: 30%;
        right: -30px;
        transform: translateY(-50%);
        width: 120px;
        height: 80px;
        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);
    }
}