@media (max-width: 768px) {
  .our-team .team-member {
      flex: 1 1 calc(50% - 20px); /* 2 elemen per baris pada ukuran layar kecil */
  }
}

@media (max-width: 480px) {
  .our-team .team-member {
      flex: 1 1 100%; /* 1 elemen per baris pada ukuran layar sangat kecil */
  }
}

@media (max-width: 992px) {
  .doc-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .doc-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
@media (max-width: 576px) {
  .doc-gallery-grid {
    grid-template-columns: 1fr;
  }

  .doc-item {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
.about-section {
    position: relative;
    background: url('/assets_webp/img/bg-about.webp') no-repeat center center/cover; 
    height: 533px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 50px !important;
  }
  .about-section-mobile {
    position: relative;
    background: url('/assets_webp/img/bg-about.webp') no-repeat center center/cover;
    height: 272px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    text-align: center;
    padding: 50px !important;
    overflow: hidden;
    z-index: 1;
  }
  
  .about-section-mobile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0.5;
    z-index: 0;
  }
  .about-section-mobile > * {
    position: relative;
    z-index: 1;
    height: 150px;
  }

  .about-title {
    font-size: 53px;
    font-weight: bold;
    color: #e94f35; 
    padding-top: 80px;
    z-index: 2;
  }

  .about-title-mobile {
    font-size: 20px;
    font-weight: bold;
    color: #e94f35; 
    padding-top: 100px;
    z-index: 2;
  }

  .team-image {
    z-index: 2;
    height: 317.5px;
  }
  .team-image-mobile {
    z-index: 2;
  }

  .about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6); 
    z-index: 1;
  }
  .who-we{
    padding: 50px;
  }
  .who-we-are, 
  .our-team,
  .documentation-section {
    padding: 100px 0 !important;
    background-color: #fff;
    color: #000;
  }

  .documentation-section {
    padding-bottom: 100px !important;
  }

  .who-we-are > .container-fluid, 
  .our-team > .container-fluid,
  .documentation-section > .container-fluid {
    max-width: 1220px;
    margin: 0 auto !important;
  }

  .documentation-section > .container-fluid {
    padding: 100px 0 !important;
  }
  
  .who-we-are-mobile {
    padding: 20px !important;
    background-color: #fff;
    color: #000;
  }


  .our-team-mobile{
    padding: 20px !important;
    background-color: #F2F2F2;
  }
  
  .main-heading {
    font-size: 36px;
    font-family: 'Roboto-bold','sans-serif';
    font-weight: 800;
    margin-bottom: 20px;
  }

  .main-heading-mobile {
    font-size: 20px;
    font-family: 'Roboto-bold','sans-serif';
    margin-bottom: 20px;
    margin-top: 2px !important;
  }
  
  .description {
    font-size: 16px;
    font-family: 'Lato-regular','sans-serif';
    line-height: 1.7;
    color: #444;
    margin-bottom: 40px;
  }
  .description-mobile {
    font-size: 12px;
    font-family: 'Lato-regular','sans-serif';
    line-height: 1.5;
    color: var(--dark-3-body-text-color, #6b7280);
    margin-bottom: 40px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
  
  .feature-item img {
    width: 40px;
    height: 40px;
    margin-top: 5px;
  }
  
  .feature-item p {
    font-size: 15px;
    line-height: 1.6;
  }

  .features-grid-mobile {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 700px;
    margin: auto;
    padding: 20px;
  }
  
  .feature-item-mobile {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .feature-item-mobile img {
    width: 40px; 
    height: auto;
    flex-shrink: 0;
    margin-top: 5px; 
  }

  .feature-item-mobile p {
    font-size: 12px;
    line-height: 1.5;
  }


  .feature-item-mobile strong {
    margin: 0;
    font-family: 'Lato-bold', sans-serif;
    font-weight: 400;
  }

  .feature-item-mobile span {
    margin: 0;
    font-family: 'Lato-regular', sans-serif;
    font-weight: 400;
    color: var(--dark-3-body-text-color, #6b7280);
  }
  
  .mission-vision-section {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px !important;
    padding-bottom: 100px !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    flex-wrap: wrap;
  }

  .mission-vision-section-mobile {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 10px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    flex-wrap: wrap;
  }
  
  .card {
    position: relative;
    width: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }
  
.card-row1,
.card-row2 {
  width: 592px;
  height: 231px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 20px !important;
  padding-right: 10px !important;
  border-radius: 15px;
  color: white;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.card-row1 {
  background: url('/assets_webp/img/card-content-01.webp') no-repeat center center;
  background-size: cover;
}

.card-row2 {
  background: url('/assets_webp/img/card-content-02.webp') no-repeat center center;
  background-size: cover;
}

.card-row1::before,
.card-row2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 15px;
}

.card-img-col,
.card-text-col {
  position: relative;
  z-index: 2;
}

.card-img-col {
  max-width: 50%;
}

.card-img-col img.card-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.card-text-col {
  max-width: 56%;
}

.card-text-col h2 {
  color: #fff;
  font-family: 'Inter-regular',sans-serif;
  font-size: 34px;
  font-weight: bold;
  line-height: 42px;
  margin-bottom: 15px;
}

.card-text-col p {
  color: #fff;
  font-family: 'Inter-regular',sans-serif;
  font-size: 14px;
  line-height: 18.2px;
}

.card {
    position: relative;
    width: 500px;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
  }
  
.card-row1,
.card-row2 {
  width: 592px;
  height: 231px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-top: 20px !important;
  padding-right: 10px !important;
  border-radius: 15px;
  color: white;
  position: relative;
  overflow: hidden;
  flex-wrap: wrap;
}

.card-row1 {
  background: url('/assets_webp/img/card-content-01.webp') no-repeat center center;
  background-size: cover;
}

.card-row2 {
  background: url('/assets_webp/img/card-content-02.webp') no-repeat center center;
  background-size: cover;
}

.card-row1::before,
.card-row2::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 15px;
}

.card-img-col,
.card-text-col {
  position: relative;
  z-index: 2;
}

.card-img-col {
  height: 238px;
  width: 208px;
}

.card-img-col img.card-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.card-text-col {
  max-width: 56%;
  margin-bottom: 25px !important;
}

.card-text-col h2 {
  color: #fff;
  font-family: 'Inter-regular',sans-serif;
  font-size: 34px;
  font-weight: bold;
  line-height: 42px;
  margin-bottom: 15px;
}

.card-text-col p {
  color: #fff;
  font-family: 'Inter-regular',sans-serif;
  font-size: 14px;
  line-height: 18.2px;
}

.mission-vision-section-mobile {
  max-width: 430px;
  margin: 50px auto !important;
  padding: 20px ;
}

.card-row1-mobile,
.card-row2-mobile {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  color: white;
  background-size: cover;
  background-position: center;
}

.card-row1-mobile {
  height: 200px;
  background-image: url('/assets_webp/img/card-content-01-mobile.webp');
}

.card-row2-mobile {
  height: 200px;
  background-image: url('/assets_webp/img/card-content-02-mobile.webp');
}

.card-row1-mobile::before,
.card-row2-mobile::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
  border-radius: 15px;
}

.card-img-col-mobile,
.card-text-col-mobile {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 30px !important;
  padding-right: 10px !important;
  text-align: left;
}

.card-img-col-mobile img.card-img {
  width: 100%;
  padding-top: 30px;
  max-width: 250px;
  height: auto;
  margin: 0 auto;
  border-radius: 10px;
}

.card-text-col-mobile h2 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
}

.card-text-col-mobile p {
  color: #fff;
  font-size: 11px;
  width: 200px;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
}


.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  justify-items: center;
}


@media screen and (min-width: 1440px) {
  .team-grid {
    gap: 42px;
  }

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

.team-member {
  text-align: center;
  max-width: 250px;
}

.team-photo {
  width: 250px;
  height: 335px;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  position: relative;
  background: linear-gradient(180deg, rgba(243,243,243,0.9) 0%, rgba(184,184,184,0.7) 100%);
}

.team-member h4 {
  text-align: left;
  font-family: 'Roboto-bold',sans-serif;
  font-size: 18px;
  line-height: 1.3;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

.team-member p {
  text-align: left;
  font-family: 'Roboto-regular',sans-serif;
  font-size: 14px;
  color: #030303;
  line-height: 1.3;
  margin: 0;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
  text-transform: uppercase;
}

.team-grid-mobile {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  justify-content: center;
}

.team-member-mobile {
  width: 100%;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

.team-photo-mobile {
  width: 100%;
  aspect-ratio: 106.74/132.97;
  border-radius: 20px;
  background-color: lightgray;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}

.team-member-mobile h4 {
  text-align: left;
  font-family: 'Roboto-bold', sans-serif;
  font-size: 9px;
  line-height: 28.6px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.team-member-mobile p {
  text-align: left;
  font-family: 'Roboto-regular', sans-serif;
  font-size: 6px;
  color: #030303;
  line-height: 15.6px;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* ✅ Media Query untuk layar max 430px */
@media (max-width: 430px) {
  .team-grid-mobile {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .team-photo-mobile {
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
  }

  .team-member-mobile h4 {
    font-size: 10px;
    line-height: 18px;
  }

  .team-member-mobile p {
    font-size: 7px;
    line-height: 14px;
  }
}


.tech-section {
  background: url('/assets_webp/img/tech-bg.webp') no-repeat center center;
  background-size: cover;
  padding: 60px 30px;
  color: #fff;
  position: relative;
}

.tech-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(73deg, rgba(80, 80, 80, 0.80) -32.29%, rgba(0, 0, 0, 0.80) 24%);
}

.tech-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1290px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.tech-left {
  flex: 1;
  text-align: center;
}

.drone-img {
  max-width: 100%;
  height: auto;
  padding-top: 20px;
}

.tech-right {
  flex: 1;
  padding-left: 95px !important;
  padding-top: 70px !important;
}

.section-label {
  color: var(--Red-Guideline, #e63822);
  font-weight: bold;
  margin-bottom: 10px;
}
.section-label-mobile {
  color: var(--Red-Guideline, #e63822);
  font-weight: bold;
  margin-bottom: 2px;
  font-size: 12px;
}

.section-title {
  font-size: 40px;
  font-family: 'Roboto-bold','sans-serif';
  line-height: 52px;
  margin-bottom: 30px;
}

.tech-desc{
  color: #fff;
  font-family: 'Lato-regular','sans-serif';
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  margin-top: 5px;
}

.tech-features {
  list-style: none;
  padding: 0;
}

.tech-features li {
  display: flex;
  align-items: start;
  margin-bottom: 20px;
}

.tech-features li img {
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}


.documentation-section-mobile {
  background: #fff;
  padding-top: 100px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  padding-bottom: 100px !important;
}

.container {
  padding: 100px 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.doc-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .doc-header {
    display: block;
  }
}

.text-left {
  flex: 1 1 40%;
}

.text-right {
  margin-top: 10px !important;
  flex: 1 1 50%;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.label {
  color: #d9534f;
  font-weight: bold;
  margin-bottom: 10px;
}

.title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0;
}

.doc-gallery-wrapper {
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.doc-gallery-grid {
  display: grid;
  /* grid-auto-rows: 200px; */
  gap: 10px;
  grid-template-areas:
    "img1 img1 img2 img4 img5"
    "img1 img1 img3 img4 img6";
}

.doc-item {
  overflow: hidden;
  border-radius: 12px;
}

.doc-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doc-item:nth-child(1) {
  grid-area: img1;
}

.doc-item:nth-child(2) {
  grid-area: img2;
}

.doc-item:nth-child(3) {
  grid-area: img3;
}

.doc-item:nth-child(4) {
  grid-area: img4;
}

.doc-item:nth-child(5) {
  grid-area: img5;
}

.doc-item:nth-child(6) {
  grid-area: img6;
}

.p-100{
  padding: 100px !important;
}

.doc-header-mobile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.label-mobile {
  color: #D12F2F;
  font-size: 12px;
  font-family: 'Roboto-bold', sans-serif;
  margin: 0;
}

.title-mobile {
  font-size: 20px;
  font-family: 'Roboto-bold', sans-serif;
  line-height: 28px;
  margin: 0 0 10px 0;
}

.doc-header-mobile p {
  font-size: 12px;
  line-height: 16px;
  font-family: 'Lato-regular', sans-serif;
  margin: 0;
  color: var(--dark-3-body-text-color, #6b7280);
}

.doc-gallery-grid-mobile {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  grid-template-areas:
    "img1 img1"
    "img2 img4"
    "img3 img4"
    "img5 img5"
    "img6 img6";
}

.doc-item-mobile {
  width: 100%;
}

.img-doc1-mobile {
  grid-area: img1;
}

.img-doc2-mobile {
  grid-area: img2;
}

.img-doc3-mobile {
  grid-area: img3;
}

.img-doc4-mobile {
  grid-area: img4;
}

.img-doc5-mobile {
  grid-area: img5;
}

.img-doc6-mobile {
  grid-area: img6;
}

.doc-item-mobile img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.tech-section-mobile {
  background: url('/assets_webp/img/tech-bg.webp') no-repeat center center;
  background-size: cover;
  padding-top: 20px !important;
  padding-bottom: 50px !important;
  color: #fff;
  position: relative;
}

.tech-section-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(73deg, rgba(80, 80, 80, 0.80) -32.29%, rgba(0, 0, 0, 0.80) 24%);
}

.tech-hero-mobile {
  position: relative;
  text-align: center;
}

.drone-img-mobile {
  width: 100%;
  max-width: 100%;
  padding-top: 100px;
  display: block;
  margin: 0 auto;
  z-index: 1;
}

.tech-content-mobile {
  position: absolute;
  top: 20px;
  left: 16px;
  right: 16px;
  text-align: left;
  z-index: 2;
}

.tech-label-mobile {
  color: #F0544F;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.tech-title-mobile {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

.tech-features-mobile {
  position: relative;
  color: #fff;
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tech-features-mobile li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tech-features-mobile li img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.tech-features-mobile li span {
  font-size: 14px;
  line-height: 1.4;
}