

  .about-section-flex {
    display: flex;
    align-items: center;
    gap: 92px;
    margin-bottom: 0px;
    flex-wrap: wrap;
  }
  .about-section-flex.reverse {
    flex-direction: row-reverse;
  }
  .about-section-img {
    flex: 1 1 220px;
    min-width: 180px;
    max-width: 920px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
  }
  .about-section-content {
    flex: 2 1 340px;
    min-width: 220px;
  }
  @media (max-width: 900px) {
    .about-section-flex, .about-section-flex.reverse {
      flex-direction: column !important;
      gap: 18px;
    }
    .about-section-img, .about-section-content {
      min-width: 0;
      max-width: 100%;
    }
  }

/** about-section **/

.about-section{
  position: relative;
}

.content_block_1 .content-box{
  position: relative;
  display: block;
}

.about-section .content_block_1 .content-box{
  margin-right: 75px;
}

.content_block_1 .content-box .bold-text p{
  font-size: 18px;
  line-height: 30px;
  color: #222;
}

.content_block_1 .content-box .bold-text{
  margin-bottom: 31px;
}

.content_block_1 .content-box .text p{
  line-height: 30px;
  margin-bottom: 26px;
}

.list-style-one{
  position: relative;
  display: block;
}

.list-style-one li{
  position: relative;
  display: block;
  padding-left: 32px;
  margin-bottom: 12px;
}

.list-style-one li:last-child{
  margin-bottom: 0px;
}

.list-style-one li:before{
  position: absolute;
  content: "\f058";
  font-family: 'Font Awesome 5 Pro';
  font-weight: 400;
  font-size: 16px;
  left: 0px;
  top: 0px;
}

.content_block_1 .content-box .list-style-one{
  margin-bottom: 46px;
}

.content_block_1 .content-box .sec-title{
  margin-bottom: 45px;
}

.image_block_1 .image-box{
  position: relative;
  display: block;
}

.image_block_1 .image-box .image{
  position: relative;
  display: block;
}

.image_block_1 .image-box .image img{
  width: 100%;
}

.about-section .image_block_1 .image-box{
  margin-right: -57px;
}

.image_block_1 .image-box .text{
  position: absolute;
  top: 80px;
  right: 50px;
  display: inline-block;
  width: 170px;
  height: 170px;
  text-align: center;
  border-radius: 50%;
  background-blend-mode: multiply;
  padding: 32px 0px;
}

.image_block_1 .image-box .text h2{
  font-size: 60px;
  line-height: 60px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 6px;
}

.image_block_1 .image-box .text h5{
  font-size: 18px;
  line-height: 28px;
  color: #ffffff;
  font-weight: 600;
}

.image_block_1 .image-box .shape .shape-1{
  position: absolute;
  right: 200px;
  bottom: -10px;
  width: 153px;
  height: 162px;
  background-repeat: no-repeat;
}

.image_block_1 .image-box .shape .shape-2{
  position: absolute;
  left: 10px;
  top: 70px;
  width: 211px;
  height: 211px;
  background-repeat: no-repeat;
}

/** about-style-four **/

/* Production & R&D Section Styles - Konsisten dengan section lain */
.production-rd-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7fa 100%);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-bottom: 7svh;
  padding-top: 7svh;
}

.production-rd-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 V0 H0 Z" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat;
  background-size: cover;
}

.production-content-block {
  position: relative;
  z-index: 2;
}

.production-image-block {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.production-image-block .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.production-image-block .main-animation {
  width: 80%;
  height: 80%;
  z-index: 1;
  position: relative;
}

.production-image-block .floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.production-image-block .floating-card {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(90, 24, 154, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #18689a;
  animation: float 3s ease-in-out infinite;
}

.production-image-block .floating-card i {
  font-size: 1.2rem;
  color: #8ec5fc;
}

.production-image-block .card-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.production-image-block .card-2 {
  bottom: 30%;
  left: 5%;
  animation-delay: 1.5s;
}

.production-image-block .card-3 {
  top: 50%;
  right: 5%;
  animation-delay: 2.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .production-rd-section {
    padding: 60px 20px;
  }
  
  .main-title {
    font-size: 1.8rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .production-image-block .floating-card {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
  
  .production-image-block {
    height: 350px;
    margin-top: 30px;
  }
}



        .about-container {
          max-width: 100%;
          background: rgba(255,255,255,0.95);
          border-radius: 24px;
          padding: 20px 32px 32px 32px;
          backdrop-filter: blur(6px);
        }
        .about-title {
          font-size: 2.2rem;
          font-weight: 700;
          color: #18689a;
          margin-bottom: 10px;
          letter-spacing: 1px;
          text-align: center;
        }
        .about-section-title {
          font-size: 1.25rem;
          font-weight: 600;
          color: #3d246c;
          margin-top: 12px;
          margin-bottom: 10px;
          letter-spacing: 0.5px;
          border-left: 4px solid #8ec5fc;
          padding-left: 12px;
        }

        .about-section-title.center {
          text-align: center;
          border-left: none;
          padding-left: 0;
          display: block;
          margin-left: auto;
          margin-right: auto;
        }
        .about-list {
          margin: 0 0 0 18px;
          padding: 0;
        }
        .about-list li {
          margin-bottom: 4px;
          line-height: 1.7;
        }
        .about-milestone {
          background: #f3f0ff;
          border-radius: 16px;
          padding: 24px 20px 16px 20px;
          margin-top: 24px;
          box-shadow: 0 2px 12px 0 rgba(90,24,154,0.06);
        }
        .about-milestone-title {
          font-size: 1.15rem;
          font-weight: 600;
          color: #18689a;
          margin-bottom: 10px;
          letter-spacing: 0.5px;
        }
        .about-milestone ul {
          margin-left: 18px;
          padding: 0;
        }
        .about-milestone li {
          margin-bottom: 4px;
          line-height: 1.7;
        }
        .about-vision {
          background: linear-gradient(90deg, #e0c3fc 0%, #f8f9fa 100%);
          border-radius: 14px;
          padding: 18px 20px 10px 20px;
          margin: 18px 0 0 0;
          box-shadow: 0 2px 8px 0 rgba(90,24,154,0.04);
        }
        .about-culture {
          background: #fff4e6;
          border-radius: 14px;
          padding: 18px 20px 10px 20px;
          margin: 18px 0 0 0;
          box-shadow: 0 2px 8px 0 rgba(253,160,133,0.06);
        }
        .about-cert {
          background: #e7f5ff;
          border-radius: 14px;
          padding: 18px 20px 10px 20px;
          margin: 18px 0 0 0;
          box-shadow: 0 2px 8px 0 rgba(142,197,252,0.06);
        }
        .about-assoc {
          background: #f0f7fa;
          border-radius: 14px;
          padding: 18px 20px 10px 20px;
          margin: 18px 0 0 0;
          box-shadow: 0 2px 8px 0 rgba(142,197,252,0.06);
        }
        .about-commit {
          background: #f8f9fa;
          border-radius: 14px;
          padding: 18px 20px 10px 20px;
          margin: 18px 0 0 0;
          box-shadow: 0 2px 8px 0 rgba(90,24,154,0.04);
        }
        .about-section {
          margin-bottom: 18px;
        }
        @media (max-width: 600px) {
          .about-container {
           padding: 18px 4vw;
           margin: 2rem;}
          .about-title { font-size: 1.3rem; }
          .about-section-title { font-size: 1.05rem; }
        }
       @media (min-width: 605px) { 
  .about-container {
    margin: 60px;
  }
}
        
        
           @import "https://codepen.io/cbolson/pen/rNEdgKo.css" layer(template);
@layer template, demo;

/* Market Reach Section Styles */
.market-reach-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7fa 100%);

  position: relative;
  overflow: hidden;
    width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-bottom: 7svh;
  padding-top: 7svh;
}

.market-reach-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 V0 H0 Z" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat;
  background-size: cover;
}

.market-content-block {
  position: relative;
  z-index: 2;
}

.sec-title-modern {
  margin-bottom: 30px;
}

.subtitle-badge {
  display: inline-block;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 0;
}

.highlight-text {
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.description-text {
  margin: 25px 0;
}

.description-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  font-weight: 500;
}

.stat-highlight {
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  color: white;
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

.achievement-text p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.stats-container {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.stat-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(90, 24, 154, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex: 1;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(90, 24, 154, 0.2);
  border-color: rgba(142, 197, 252, 0.3);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.stat-info h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #18689a;
  margin: 0;
  line-height: 1;
}

.stat-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0 0 0;
  font-weight: 500;
}

.features-list {
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding: 12px 0;
}

.feature-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 1rem;
  color: #444;
  font-weight: 500;
}

.modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(90, 24, 154, 0.2);
}

.modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(90, 24, 154, 0.3);
  color: white;
  text-decoration: none;
}

.modern-btn i {
  transition: transform 0.3s ease;
}

.modern-btn:hover i {
  transform: translateX(5px);
}

.market-image-block {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-animation {
  width: 80%;
  height: 80%;
  z-index: 1;
  position: relative;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.floating-card {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(90, 24, 154, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #18689a;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.2rem;
  color: #8ec5fc;
}

.card-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.card-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 1.5s;
}

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

@media (max-width: 768px) {
  .main-title {
    font-size: 1.8rem;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .floating-card {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
  
  .market-image-block {
    height: 350px;
    margin-top: 30px;
  }
}

/* Feature Highlights Block Styles */
.feature-highlights-block {
  margin-top: 30px;
  padding: 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 20px;
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(90, 24, 154, 0.08);
  border: 1px solid rgba(142, 197, 252, 0.15);
  transition: all 0.3s ease;
  margin-bottom: 20px;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(90, 24, 154, 0.15);
  border-color: rgba(142, 197, 252, 0.3);
}

.feature-icon-wrapper {
  flex-shrink: 0;
}

.feature-icon-box {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #18689a 0%, #8ec5fc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(90, 24, 154, 0.25);
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon-box {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(90, 24, 154, 0.35);
}

.feature-icon-box i {
  font-size: 28px;
  color: #ffffff;
}

.feature-content {
  flex: 1;
  padding-top: 5px;
}

.feature-content h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #3d246c;
  margin-bottom: 8px;
  line-height: 1.3;
}

.feature-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .feature-icon-box {
    width: 55px;
    height: 55px;
    margin: 0 auto;
  }
  
  .feature-icon-box i {
    font-size: 24px;
  }
  
  .feature-content h4 {
    font-size: 1.1rem;
  }
  
  .feature-content p {
    font-size: 0.9rem;
  }
}

@layer demo {
  /* Hide radio buttons */
  input[type="radio"] {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
  }
  .cards-container {
    --base-rotation: 0deg;
    --full-circle: 360deg;
    --radius: 40vw;
    --duration: 200ms;

    --cards-container-size: calc(var(--radius) * 2);
    --cards-container-padding: 2rem;

    --border-color: transparent;

    --label-offset: calc(var(--radius) * -1 - 1rem);
    --label-size: 30px;
    --label-color: #666;
    --label-color-hover: steelblue;
    --label-line-h: 0;
    --label-line-h-current: 2rem;
    --label-dot-size: 10px;

    --title-top: 1.5rem;
    --title-offset-y: 30px;

    --info-top: 5rem;
    --info-width: min(70%, 500px);
    --info-offset-y: 30px;

    box-sizing: content-box;
    position: relative;
    inset: 0;
    margin: 5rem auto;
    width: var(--cards-container-size);
    height: var(--cards-container-size);
    padding: 6rem;
   

    
    @media (width > 600px){
    /* clip-path: polygon(0 0, 0 0, 100% 50%, 0 0); */
   
    }

 
    @media (min-width: 800px) {
        --radius: 30vw;
        --label-size: 40px;
        --label-dot-size: 15px;
        --label-line-h-current: 4rem;
        --title-top: 4rem;
        --info-top: 8rem;
      }
    }
    @media (min-width: 1200px) {
        --label-size: 50px;
        --border-color: var(--label-color);
    }
    
}
  .cards {
    position: absolute;
    inset: var(--cards-container-padding);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease-in-out var(--duration);
    list-style: none;
  }



  .cards li {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    transform-origin:center;
    display: grid;
    place-content: center;
    transform: rotate(calc(var(--i) * 360deg / var(--items)));
    pointer-events: none;
  }

  .cards li > label {
    position: absolute;
    inset: 0;
    margin: auto;
    transform: translateY(var(--label-offset));
    width: var(--label-size);
    height: var(--label-size);
    cursor: pointer;
    pointer-events: initial;
    text-align: center;
    color: var(--label-color);
    font-size: clamp(.8rem, 2.5vw + .04rem,1rem);
    transition: var(--duration) ease-in-out;

  }
  .cards li > label::before{
      content: '';
      position: absolute;
      top: var(--cards-container-padding);
      left: 50%;
      translate: -50% 0;
      width: var(--label-dot-size);
      height: var(--label-dot-size);
      aspect-ratio: 50%;
      border-radius: 50%;
      background-color: var(--label-color);
      transition: background-color var(--duration) ease-in-out;
  }

  .cards li > label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    translate: -50% 5px;
    width: 2px;
    height: var(--label-line-h);
    background-color: steelblue;
    transition: height 300ms ease-in-out var(--label-line-delay,0ms);
  }
  .cards li > label:hover{
    --label-color: var(--label-color-hover);
  }

  .cards > li > h2,
  .cards > li > p{
    position: absolute;
    left: 50%;
    text-align: center;
    transform: translate(-50%, 0);
    transform-origin: center;
  }
  .cards > li > h2{
    top: var(--title-top);
    opacity: var(--title-opacity,0);
    translate: 0 var(--title-offset-y);
    transition: var(--duration) ease-in-out var(--title-delay,0ms);
  }
  .cards > li > p{
    top: var(--info-top);
    margin: 0 auto;
     font-weight: bold;
    margin-top: 25px;
    width: var(--info-width);
    z-index: 2;
    font-size: clamp(.8rem, 2.5vw + 0.05rem, .9rem);
    text-align: left;
    text-wrap: pretty;
    opacity: var(--info-opacity,0);
    /*translate: 0 var( --info-offset-y);*/
    transition: var(--duration) ease-in-out var(--info-delay,0ms);
  }

  /* update custom properties for checked item */
  li:has(input:checked){
      --label-opacity: 1;
      --label-color: var(--label-color-hover);
      --label-line-h: var(--label-line-h-current);
      --label-line-delay: calc(var(--duration) * 2);

      --title-opacity: 1;
      --title-offset-y: 0;
      --title-delay: calc(var(--duration) * 3);

      --info-opacity: 1;
      --info-offset-y: 0;
      --info-delay: calc(var(--duration) * 4);
      /*outline: 1px dashed red;*/
  }

  /* rotate container based on checked radio */
  .cards:has(input:checked) {
    transform: rotate(calc(var(--base-rotation) - (var(--index) * var(--full-circle) / var(--items))));
  }
  /*
  this would be so much simpler if we could use counter values as custom property values
  */
  .cards:has(li:nth-child(1)>input:checked) { --index: 0; }
  .cards:has(li:nth-child(2)>input:checked) { --index: 1; }
  .cards:has(li:nth-child(3)>input:checked) { --index: 2; }
  .cards:has(li:nth-child(4)>input:checked) { --index: 3; }
  .cards:has(li:nth-child(5)>input:checked) { --index: 4; }
  .cards:has(li:nth-child(6)>input:checked) { --index: 5; }
  .cards:has(li:nth-child(7)>input:checked) { --index: 6; }
  .cards:has(li:nth-child(8)>input:checked) { --index: 7; }
  .cards:has(li:nth-child(9)>input:checked) { --index: 8; }
  .cards:has(li:nth-child(10)>input:checked) { --index: 9; }
  .cards:has(li:nth-child(11)>input:checked) { --index: 10; }
  .cards:has(li:nth-child(12)>input:checked) { --index: 11; }
  .cards:has(li:nth-child(13)>input:checked) { --index: 12; }
  .cards:has(li:nth-child(14)>input:checked) { --index: 13; }
  .cards:has(li:nth-child(15)>input:checked) { --index: 14; }
  .cards:has(li:nth-child(16)>input:checked) { --index: 15; }
  .cards:has(li:nth-child(17)>input:checked) { --index: 16; }
  .cards:has(li:nth-child(18)>input:checked) { --index: 17; }
  .cards:has(li:nth-child(19)>input:checked) { --index: 18; }
  .cards:has(li:nth-child(20)>input:checked) { --index: 19; }
  .cards:has(li:nth-child(21)>input:checked) { --index: 20; }
  .cards:has(li:nth-child(22)>input:checked) { --index: 21; }
  .cards:has(li:nth-child(23)>input:checked) { --index: 22; }
  .cards:has(li:nth-child(24)>input:checked) { --index: 23; }
  .cards:has(li:nth-child(25)>input:checked) { --index: 24; }
  .cards:has(li:nth-child(26)>input:checked) { --index: 25; }
}

/* Vision Mission Section Styles */
.vision-mission-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 30%, #f0f7fa 70%, #e7f5ff 100%);
  
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-bottom: 7svh;
  padding-top: 7svh;
}

.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(90, 24, 154, 0.05), rgba(142, 197, 252, 0.05));
  animation: float-smooth 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.floating-shape.shape-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.floating-shape.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 15%;
  animation-delay: 4s;
}

@keyframes float-smooth {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(120deg); }
  66% { transform: translateY(10px) rotate(240deg); }
}

.vision-image-block {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.background-circle {
  position: absolute;
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(90, 24, 154, 0.1), rgba(142, 197, 252, 0.1));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.main-image {
  width: 300px;
  height: 300px;
  z-index: 2;
  position: relative;
}

.brand-badge {
  position: absolute;
  bottom: 50px;
  right: 50px;
  background: white;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(90, 24, 154, 0.2);
  z-index: 3;
  animation: float-badge 3s ease-in-out infinite;
}

.brand-badge h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #18689a;
  margin: 0;
  line-height: 1;
}

.brand-badge span {
  font-size: 0.9rem;
  color: #8ec5fc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.icon-item {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(90, 24, 154, 0.15);
  animation: float-icon 3s ease-in-out infinite;
}

.icon-item i {
  font-size: 1.5rem;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon-1 {
  top: 15%;
  left: 20%;
  animation-delay: 0s;
}

.icon-2 {
  top: 25%;
  right: 15%;
  animation-delay: 1s;
}

.icon-3 {
  bottom: 25%;
  left: 10%;
  animation-delay: 2s;
}

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

.vision-content-block {
  padding-left: 40px;
}

.section-header {
  margin-bottom: 40px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin: 0;
}

.highlight-gradient {
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.vision-card, .mission-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(90, 24, 154, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.vision-card:hover, .mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(90, 24, 154, 0.15);
  border-color: rgba(142, 197, 252, 0.3);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.card-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #18689a;
  margin: 0;
}

.vision-card p, .mission-card p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.mission-list {
  margin-top: 20px;
}

.mission-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(90, 24, 154, 0.02);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.mission-item:hover {
  background: rgba(90, 24, 154, 0.05);
  transform: translateX(10px);
}

.mission-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.mission-item p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin: 0;
  padding-top: 8px;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(90, 24, 154, 0.05);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(90, 24, 154, 0.1);
}

.value-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.value-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #18689a;
  margin: 0 0 8px 0;
}

.value-content p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .vision-content-block {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .vision-image-block {
    height: 400px;
  }
  
  .background-circle {
    width: 300px;
    height: 300px;
  }
  
  .main-image {
    width: 200px;
    height: 200px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .brand-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px 20px;
  }
  
  .floating-icons .icon-item {
    width: 45px;
    height: 45px;
  }
}

/* Company Culture Section Styles */
.company-culture-section {
  background: linear-gradient(135deg, #fff4e6 0%, #ffffff 30%, #f8f9ff 70%, #f0f7fa 100%);
  padding-top: 7svh;
  padding-bottom: 7svh;
   width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  position: relative;
  overflow: hidden;
}

.culture-decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.culture-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(253, 160, 133, 0.05), rgba(90, 24, 154, 0.05));
  animation: culture-float 8s ease-in-out infinite;
}

.culture-shape-1 {
  width: 150px;
  height: 150px;
  top: 8%;
  right: 8%;
  animation-delay: 0s;
}

.culture-shape-2 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 5%;
  animation-delay: 3s;
}

.culture-shape-3 {
  width: 120px;
  height: 120px;
  top: 50%;
  left: 50%;
  animation-delay: 6s;
}

@keyframes culture-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
  33% { transform: translateY(-20px) rotate(120deg); opacity: 0.6; }
  66% { transform: translateY(15px) rotate(240deg); opacity: 0.5; }
}

.culture-content-block {
  position: relative;
  z-index: 2;
  padding-right: 30px;
}

.culture-header {
  margin-bottom: 40px;
}

.culture-badge {
  display: inline-block;
  background: linear-gradient(45deg, #fd9e85, #18689a);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.culture-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 15px;
}

.tampan-highlight {
  background: linear-gradient(45deg, #fd9e85, #18689a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.culture-description {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.tampan-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 40px 0;
}

.tampan-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(253, 160, 133, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.tampan-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(45deg, #fd9e85, #18689a);
  transition: width 0.3s ease;
}

.tampan-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(253, 160, 133, 0.15);
  border-color: rgba(253, 160, 133, 0.3);
}

.tampan-item:hover::before {
  width: 8px;
}

.tampan-letter {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #fd9e85, #18689a);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tampan-item:hover .tampan-letter {
  transform: scale(1.1) rotate(360deg);
}

.tampan-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #18689a;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.tampan-content p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.culture-cta {
  margin-top: 40px;
}

.culture-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #fd9e85, #18689a);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(253, 160, 133, 0.2);
}

.culture-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(253, 160, 133, 0.3);
  color: white;
  text-decoration: none;
}

.culture-btn i {
  transition: transform 0.3s ease;
}

.culture-btn:hover i {
  transform: translateX(5px);
}

.culture-image-block {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-bg-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, rgba(253, 160, 133, 0.1), rgba(90, 24, 154, 0.1));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: culture-pulse 4s ease-in-out infinite;
}

@keyframes culture-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.culture-main-animation {
  width: 350px;
  height: 350px;
  z-index: 2;
  position: relative;
}

.culture-brand-badge {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: white;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(253, 160, 133, 0.2);
  z-index: 3;
  animation: culture-badge-float 3s ease-in-out infinite;
}

.culture-brand-badge h3 {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(45deg, #fd9e85, #18689a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
}

.culture-brand-badge span {
  font-size: 0.9rem;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.culture-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.culture-float-item {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(253, 160, 133, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: culture-item-float 3s ease-in-out infinite;
}

.culture-float-item i {
  font-size: 1.1rem;
  background: linear-gradient(45deg, #fd9e85, #18689a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.culture-float-item span {
  color: #18689a;
}

.float-1 {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.float-2 {
  top: 35%;
  left: 5%;
  animation-delay: 1s;
}

.float-3 {
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

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

@media (max-width: 768px) {
  .culture-content-block {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .culture-title {
    font-size: 1.8rem;
  }
  
  .tampan-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px 15px;
  }
  
  .tampan-item:hover {
    transform: translateY(-5px);
  }
  
  .culture-image-block {
    height: 400px;
  }
  
  .culture-bg-circle {
    width: 300px;
    height: 300px;
  }
  
  .culture-main-animation {
    width: 250px;
    height: 250px;
  }
  
  .culture-float-item {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
  
  .culture-brand-badge {
    bottom: 20px;
    left: 20px;
    padding: 15px 20px;
  }
}

/* Certification Section Styles */
.certification-section {
  background: linear-gradient(135deg, #e7f5ff 0%, #ffffff 30%, #f0f7fa 70%, #e0f2fe 100%);
    width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-bottom: 7svh;
  padding-top: 7svh;
  position: relative;
  overflow: hidden;
}

.cert-decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.cert-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(14, 165, 233, 0.05), rgba(59, 130, 246, 0.05));
  animation: cert-float 9s ease-in-out infinite;
}

.cert-shape-1 {
  width: 140px;
  height: 140px;
  top: 12%;
  left: 8%;
  animation-delay: 0s;
}

.cert-shape-2 {
  width: 90px;
  height: 90px;
  bottom: 25%;
  right: 10%;
  animation-delay: 3s;
}

.cert-shape-3 {
  width: 110px;
  height: 110px;
  top: 45%;
  right: 15%;
  animation-delay: 6s;
}

@keyframes cert-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
  33% { transform: translateY(-18px) rotate(120deg); opacity: 0.6; }
  66% { transform: translateY(12px) rotate(240deg); opacity: 0.5; }
}

.certification-image-block {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-bg-pattern {
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(59, 130, 246, 0.08));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cert-pulse 4s ease-in-out infinite;
}

.cert-bg-pattern::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(14, 165, 233, 0.05), rgba(59, 130, 246, 0.05));
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: cert-pulse 4s ease-in-out infinite reverse;
}

@keyframes cert-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.8; }
}

.cert-main-animation {
  width: 320px;
  height: 320px;
  z-index: 2;
  position: relative;
}

.cert-brand-badge {
  position: absolute;
  bottom: 45px;
  right: 45px;
  background: white;
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
  z-index: 3;
  animation: cert-badge-float 3s ease-in-out infinite;
  border: 2px solid rgba(14, 165, 233, 0.1);
}

.cert-brand-badge h3 {
  font-size: 1.6rem;
  font-weight: 700;
  background: linear-gradient(45deg, #0ea5e9, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
}

.cert-brand-badge span {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

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

.cert-floating-icons {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.cert-icon-item {
  position: absolute;
  background: white;
  padding: 10px 16px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  animation: cert-icon-float 3s ease-in-out infinite;
  border: 1px solid rgba(14, 165, 233, 0.1);
}

.cert-icon-item i {
  font-size: 1rem;
  background: linear-gradient(45deg, #0ea5e9, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cert-icon-item span {
  color: #1e40af;
}

.cert-icon-1 {
  top: 18%;
  left: 12%;
  animation-delay: 0s;
}

.cert-icon-2 {
  top: 30%;
  right: 8%;
  animation-delay: 1s;
}

.cert-icon-3 {
  bottom: 20%;
  left: 8%;
  animation-delay: 2s;
}

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

.certification-content-block {
  position: relative;
  z-index: 2;
  padding-left: 40px;
}

.cert-header {
  margin-bottom: 40px;
}

.cert-badge {
  display: inline-block;
  background: linear-gradient(45deg, #0ea5e9, #3b82f6);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 15px;
}

.cert-highlight {
  background: linear-gradient(45deg, #0ea5e9, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cert-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 40px 0;
  font-weight: 500;
}

.certifications-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-bottom: 40px;
}

@media (min-width: 576px) {
  .certifications-grid {
    gap: 18px;
  }
}

@media (min-width: 768px) {
  .certifications-grid {
    gap: 20px;
  }
}

@media (min-width: 992px) {
  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.cert-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(14, 165, 233, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(45deg, #0ea5e9, #3b82f6);
  transition: width 0.3s ease;
}

.cert-card:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
  border-color: rgba(14, 165, 233, 0.2);
}

.cert-card:hover::before {
  width: 6px;
}

.cert-card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #0ea5e9, #3b82f6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.cert-card:hover .cert-card-icon {
  transform: scale(1.1) rotate(360deg);
}

.cert-card-content {
  flex: 1;
}

.cert-card-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 5px 0;
  line-height: 1.2;
}

.cert-card-content p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
  font-weight: 500;
}

.cert-card-status {
  width: 35px;
  height: 35px;
  background: linear-gradient(45deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  animation: cert-check-pulse 2s ease-in-out infinite;
}

@keyframes cert-check-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.cert-cta {
  margin-top: 40px;
}

.cert-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #0ea5e9, #3b82f6);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(14, 165, 233, 0.2);
}

.cert-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
  color: white;
  text-decoration: none;
}

.cert-btn i {
  transition: transform 0.3s ease;
}

.cert-btn:hover i {
  transform: translateX(3px) scale(1.1);
}

@media (max-width: 992px) and (min-width: 769px) {
  .certification-section {
    padding: 90px 0;
  }
  
  .cert-title {
    font-size: 2.1rem;
  }
  
  .cert-card {
    padding: 22px 18px;
  }
  
  .certifications-grid {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .certification-section {
    padding: 80px 20px;
    padding-top: 7svh;
    padding-bottom: 7svh;
  }
  
  .certification-section .auto-container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .certification-content-block {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .cert-title {
    font-size: 1.8rem;
  }
  
  .certifications-grid {
    gap: 12px;
  }
  
  .cert-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 18px 15px;
    margin-bottom: 8px;
  }
  
  .cert-card:hover {
    transform: translateY(-3px);
  }
  
  .certification-image-block {
    height: 400px;
    margin-bottom: 20px;
  }
  
  .cert-bg-pattern {
    width: 320px;
    height: 320px;
  }
  
  .cert-main-animation {
    width: 250px;
    height: 250px;
  }
  
  .cert-icon-item {
    font-size: 0.8rem;
    padding: 8px 14px;
  }
  
  .cert-brand-badge {
    bottom: 25px;
    right: 25px;
    padding: 15px 18px;
  }
  
  .cert-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .certification-section {
    padding: 60px 15px;
    padding-top: 6svh;
    padding-bottom: 6svh;
  }
  
  .certification-section .auto-container {
    padding-left: 0;
    padding-right: 0;
  }
  
  .cert-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .cert-card {
    padding: 16px 12px;
    border-radius: 12px;
  }
  
  .cert-card-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .cert-card-content h4 {
    font-size: 1.1rem;
  }
  
  .cert-card-content p {
    font-size: 0.9rem;
  }
  
  .cert-card-status {
    width: 30px;
    height: 30px;
    font-size: 0.9rem;
  }
  
  .certification-image-block {
    height: 350px;
  }
  
  .cert-bg-pattern {
    width: 280px;
    height: 280px;
  }
  
  .cert-main-animation {
    width: 220px;
    height: 220px;
  }
  
  .cert-brand-badge {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
  }
  
  .cert-brand-badge h3 {
    font-size: 1.4rem;
  }
  
  .cert-description {
    font-size: 0.95rem;
  }
}

/* Asosiasi Section Styles */
.asosiasi-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 30%, #e7f5ff 70%, #f8fbff 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.asosiasi-decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.asosiasi-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(0, 51, 102, 0.08), rgba(100, 149, 237, 0.08));
  animation: asosiasi-float 8s ease-in-out infinite;
}

.asosiasi-shape-1 {
  width: 120px;
  height: 120px;
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.asosiasi-shape-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 12%;
  animation-delay: 3s;
}

.asosiasi-shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 8%;
  animation-delay: 6s;
}

@keyframes asosiasi-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
  33% { transform: translateY(-15px) rotate(120deg); opacity: 0.6; }
  66% { transform: translateY(10px) rotate(240deg); opacity: 0.5; }
}

.asosiasi-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.asosiasi-header {
  margin-bottom: 50px;
}

.asosiasi-badge {
  display: inline-block;
  background: linear-gradient(45deg, #003366, #4682b4);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.asosiasi-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 20px;
}

.asosiasi-highlight {
  background: linear-gradient(45deg, #003366, #4682b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.asosiasi-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
}

.asosiasi-description strong {
  color: #003366;
  font-weight: 700;
}

.asosiasi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
}

.asosiasi-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 51, 102, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.asosiasi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #003366, #4682b4);
  transition: height 0.4s ease;
}

.asosiasi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 51, 102, 0.2);
  border-color: rgba(0, 51, 102, 0.2);
}

.asosiasi-card:hover::before {
  height: 8px;
}

.asosiasi-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #003366, #4682b4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
  margin: 0 auto 20px auto;
  transition: all 0.4s ease;
  position: relative;
}

.asosiasi-card:hover .asosiasi-card-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
}

.asosiasi-card-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 10px;
  line-height: 1.3;
}

.asosiasi-card-content p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.asosiasi-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #10b981, #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  animation: asosiasi-badge-pulse 2s ease-in-out infinite;
}

@keyframes asosiasi-badge-pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.asosiasi-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.asosiasi-float-item {
  position: absolute;
  background: white;
  padding: 12px 18px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0, 51, 102, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: asosiasi-item-float 3s ease-in-out infinite;
  border: 2px solid rgba(0, 51, 102, 0.1);
}

.asosiasi-float-item i {
  font-size: 1.1rem;
  background: linear-gradient(45deg, #003366, #4682b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.asosiasi-float-item span {
  color: #003366;
}

.asosiasi-float-1 {
  top: 20%;
  right: 15%;
  animation-delay: 0s;
}

.asosiasi-float-2 {
  bottom: 25%;
  left: 10%;
  animation-delay: 1s;
}

.asosiasi-float-3 {
  top: 45%;
  left: 8%;
  animation-delay: 2s;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .asosiasi-section {
    padding: 80px 0;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .asosiasi-title {
    font-size: 2rem;
  }
  
  .asosiasi-description {
    font-size: 1rem;
  }
  
  .asosiasi-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  
  .asosiasi-card {
    padding: 30px 20px;
  }
  
  .asosiasi-card-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
  
  .asosiasi-card-content h3 {
    font-size: 1.2rem;
  }
  
  .asosiasi-card-content p {
    font-size: 0.95rem;
  }
  
  .asosiasi-float-item {
    font-size: 0.8rem;
    padding: 10px 15px;
    display: none;
  }
}

@media (max-width: 576px) {
  .asosiasi-title {
    font-size: 1.8rem;
  }
  
  .asosiasi-card {
    padding: 25px 18px;
    border-radius: 16px;
  }
  
  .asosiasi-card-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }
  
  .asosiasi-description {
    font-size: 0.95rem;
  }
}

/* Komitmen Section Styles */
.komitmen-section {
  position: relative;
  background: url('https://images.unsplash.com/photo-1581092580338-9d8f37a1b85d?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  background-attachment: fixed;
  padding: 120px 0;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.komitmen-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 40, 80, 0.85), rgba(0, 51, 102, 0.75));
  z-index: 1;
}

.komitmen-decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.komitmen-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  animation: komitmen-float 10s ease-in-out infinite;
}

.komitmen-shape-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 8%;
  animation-delay: 0s;
}

.komitmen-shape-2 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  right: 10%;
  animation-delay: 4s;
}

.komitmen-shape-3 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 5%;
  animation-delay: 8s;
}

@keyframes komitmen-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  33% { transform: translateY(-20px) rotate(120deg); opacity: 0.5; }
  66% { transform: translateY(15px) rotate(240deg); opacity: 0.4; }
}

.komitmen-content-wrapper {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
}

.komitmen-header {
  margin-bottom: 50px;
}

.komitmen-badge {
  display: inline-block;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(10px);
  color: white;
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.komitmen-title {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.komitmen-highlight {
  background: linear-gradient(45deg, #ffd700, #ffeb3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.komitmen-content {
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.komitmen-text-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.komitmen-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.komitmen-paragraph:last-child {
  margin-bottom: 0;
}

.komitmen-paragraph strong {
  color: #ffd700;
  font-weight: 700;
}

.komitmen-features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.komitmen-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
  min-width: 140px;
}

.komitmen-feature-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.komitmen-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #ffd700, #ffeb3b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003366;
  font-size: 1.5rem;
  transition: all 0.4s ease;
}

.komitmen-feature-item:hover .komitmen-feature-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.komitmen-feature-item span {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-align: center;
  line-height: 1.3;
}

.komitmen-floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.komitmen-float-item {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  animation: komitmen-item-float 3s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.komitmen-float-item i {
  font-size: 1.1rem;
  color: #ffd700;
}

.komitmen-float-1 {
  top: 25%;
  left: 5%;
  animation-delay: 0s;
}

.komitmen-float-2 {
  bottom: 30%;
  right: 8%;
  animation-delay: 1.5s;
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .komitmen-section {
    padding: 100px 20px;
    background-attachment: scroll;
  }
  
  .komitmen-title {
    font-size: 2.2rem;
  }
  
  .komitmen-text-block {
    padding: 30px 25px;
  }
  
  .komitmen-paragraph {
    font-size: 1.1rem;
  }
  
  .komitmen-features {
    gap: 20px;
    justify-content: center;
  }
  
  .komitmen-feature-item {
    min-width: 120px;
    padding: 20px 15px;
  }
  
  .komitmen-feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .komitmen-float-item {
    display: none;
  }
}

@media (max-width: 576px) {
  .komitmen-section {
    padding: 80px 15px;
  }
  
  .komitmen-title {
    font-size: 1.9rem;
  }
  
  .komitmen-text-block {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .komitmen-paragraph {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .komitmen-features {
    flex-direction: column;
    gap: 15px;
  }
  
  .komitmen-feature-item {
    flex-direction: row;
    min-width: auto;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    gap: 20px;
    text-align: left;
  }
  
  .komitmen-feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    flex-shrink: 0;
  }
}

/* Milestone Section Styles */
.milestone-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7fa 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

.milestone-decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.milestone-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, rgba(90, 24, 154, 0.08), rgba(142, 197, 252, 0.08));
  animation: milestone-float 8s ease-in-out infinite;
}

.milestone-shape-1 {
  width: 130px;
  height: 130px;
  top: 12%;
  left: 8%;
  animation-delay: 0s;
}

.milestone-shape-2 {
  width: 90px;
  height: 90px;
  bottom: 20%;
  right: 10%;
  animation-delay: 3s;
}

.milestone-shape-3 {
  width: 110px;
  height: 110px;
  top: 50%;
  right: 5%;
  animation-delay: 6s;
}

@keyframes milestone-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.4; }
  33% { transform: translateY(-15px) rotate(120deg); opacity: 0.6; }
  66% { transform: translateY(10px) rotate(240deg); opacity: 0.5; }
}

.milestone-content-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
}

.milestone-header {
  margin-bottom: 60px;
}

.milestone-badge {
  display: inline-block;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.milestone-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
  margin-bottom: 20px;
}

.milestone-highlight {
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.milestone-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
}

.timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #18689a, #8ec5fc);
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-item {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  z-index: 2;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
  text-align: right;
}

.timeline-year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 5px 20px rgba(90, 24, 154, 0.3);
  z-index: 3;
}

.timeline-content {
  flex: 1;
  max-width: 450px;
  margin: 0 30px;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(90, 24, 154, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  position: relative;
}

.timeline-content:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(90, 24, 154, 0.2);
  border-color: rgba(142, 197, 252, 0.3);
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.timeline-content:hover .timeline-icon {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 10px 30px rgba(90, 24, 154, 0.3);
}

.timeline-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #18689a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.timeline-content p {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

.milestone-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(90, 24, 154, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s ease;
  min-width: 160px;
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(90, 24, 154, 0.2);
  border-color: rgba(142, 197, 252, 0.3);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .milestone-section {
    padding: 80px 20px;
  }
  
  .milestone-title {
    font-size: 2rem;
  }
  
  .milestone-description {
    font-size: 1rem;
  }
  
  .timeline-line {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    text-align: left !important;
    margin-bottom: 40px;
  }
  
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
  }
  
  .timeline-year {
    position: static;
    transform: none;
    margin-bottom: 20px;
    align-self: flex-start;
    margin-left: 15px;
  }
  
  .timeline-content {
    margin: 0;
    margin-left: 60px;
    max-width: none;
    padding: 25px;
  }
  
  .milestone-stats {
    gap: 30px;
    margin-top: 40px;
  }
  
  .stat-item {
    min-width: 140px;
    padding: 25px 20px;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .milestone-section {
    padding: 60px 15px;
  }
  
  .milestone-title {
    font-size: 1.8rem;
  }
  
  .timeline-content {
    margin-left: 50px;
    padding: 20px;
    border-radius: 15px;
  }
  
  .timeline-icon {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  
  .timeline-content h3 {
    font-size: 1.2rem;
  }
  
  .timeline-content p {
    font-size: 0.95rem;
  }
  
  .milestone-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
}

/* Portfolio Section Styles */
.portfolio-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7fa 100%);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-bottom: 7svh;
  padding-top: 7svh;
}

.portfolio-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 V0 H0 Z" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat;
  background-size: cover;
}

.portfolio-content-block {
  position: relative;
  z-index: 2;
}

.categories-container {
  display: flex;
  gap: 20px;
  margin: 30px 0;
}

.category-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(90, 24, 154, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex: 1;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(90, 24, 154, 0.2);
  border-color: rgba(142, 197, 252, 0.3);
}

.category-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.category-info h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #18689a;
  margin: 0;
  line-height: 1;
}

.category-info p {
  font-size: 0.9rem;
  color: #666;
  margin: 5px 0 0 0;
  font-weight: 500;
}

.portfolio-image-block {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image-block .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-image-block .main-animation {
  width: 80%;
  height: 80%;
  z-index: 1;
  position: relative;
}

.portfolio-image-block .floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.portfolio-image-block .floating-card {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(90, 24, 154, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #18689a;
  animation: float 3s ease-in-out infinite;
}

.portfolio-image-block .floating-card i {
  font-size: 1.2rem;
  color: #8ec5fc;
}

.portfolio-image-block .card-1 {
  top: 15%;
  right: 10%;
  animation-delay: 0s;
}

.portfolio-image-block .card-2 {
  bottom: 20%;
  left: 5%;
  animation-delay: 1.5s;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 1.8rem;
  }
  
  .categories-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .portfolio-image-block .floating-card {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
  
  .portfolio-image-block {
    height: 350px;
    margin-top: 30px;
  }
}

/* About SMI Section Styles */
.about-smi-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f7fa 100%);
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-bottom: 7svh;
  padding-top: 7svh;
}

.about-smi-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 V0 H0 Z" fill="%23ffffff" opacity="0.1"/></svg>') no-repeat;
  background-size: cover;
}

.content_block_2 {
  position: relative;
  z-index: 2;
}

.sec-title.style-two {
  margin-bottom: 30px;
}

.sec-title.style-two h6 {
  display: inline-block;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sec-title.style-two h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.2;
  margin-bottom: 0;
}

.content-box.pr-70 {
  padding-right: 70px;
}

.content_block_2 .text {
  margin: 25px 0;
}

.content_block_2 .text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
  font-weight: 500;
}

.highlight-box {
  background: white;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 20px rgba(90, 24, 154, 0.1);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  margin-top: 30px;
}

.highlight-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(90, 24, 154, 0.2);
  border-color: rgba(142, 197, 252, 0.3);
}

.highlight-box i {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.highlight-box span {
  font-size: 1rem;
  color: #444;
  font-weight: 600;
}

.image_block_6 {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-smi-image-block {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-smi-image-block .image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-smi-image-block .main-logo-container {
  width: 300px;
  height: 300px;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-background {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  position: relative;
  overflow: hidden;
}

.logo-background::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: logoRotate 15s linear infinite;
}

@keyframes logoRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.main-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  z-index: 2;
  position: relative;
  filter: brightness(0) invert(1);
  transition: all 0.4s ease;
}

.logo-background:hover .main-logo {
  transform: scale(1.1);
}

.logo-placeholder {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  position: relative;
  transition: all 0.4s ease;
}

.logo-text {
  font-size: 4rem;
  font-weight: 900;
  color: white;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
  letter-spacing: 2px;
  font-family: 'Arial Black', Arial, sans-serif;
}

.logo-background:hover .logo-placeholder {
  transform: scale(1.1);
}

.about-smi-image-block .floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.about-smi-image-block .floating-card {
  position: absolute;
  background: white;
  padding: 12px 20px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(90, 24, 154, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #18689a;
  animation: float 3s ease-in-out infinite;
}

.about-smi-image-block .floating-card i {
  font-size: 1.2rem;
  color: #8ec5fc;
}

.about-smi-image-block .card-1 {
  top: 10%;
  right: 15%;
  animation-delay: 0s;
}

.about-smi-image-block .card-2 {
  top: 50%;
  left: 5%;
  animation-delay: 1s;
}

.about-smi-image-block .card-3 {
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

/* Responsive Design for About SMI Section */
@media (max-width: 768px) {
  .sec-title.style-two h2 {
    font-size: 1.8rem;
  }
  
  .content-box.pr-70 {
    padding-right: 0;
  }
  
  .about-smi-image-block {
    height: 350px;
    margin-top: 30px;
  }
  
  .about-smi-image-block .main-logo-container {
    width: 250px;
    height: 250px;
  }
  
  .main-logo {
    width: 150px;
    height: 150px;
  }
  
  .about-smi-image-block .floating-card {
    font-size: 0.8rem;
    padding: 8px 15px;
  }
}
    margin-bottom: 60px;
  }
  
  .product-card {
    margin: 0 10px;
  }
  
  .product-image {
    height: 220px;
  }
  
  .product-info {
    padding: 25px;
  }
  
  .portfolio-cta {
    padding: 40px 25px;
    margin: 0 10px;
  }
  
  .portfolio-cta h3 {
    font-size: 1.6rem;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .portfolio-header .section-title {
    font-size: 1.8rem;
  }
  
  .portfolio-header .section-subtitle {
    font-size: 1rem;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }
  
  .product-image {
    height: 200px;
  }
  
  .product-info {
    padding: 20px;
  }
  
  .product-info h3 {
    font-size: 1.2rem;
  }
  
  .feature-tag {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  
  .portfolio-cta {
    padding: 30px 20px;
  }
  
  .portfolio-cta h3 {
    font-size: 1.4rem;
  }
}



/* Hero Section - Konsisten dengan halaman lain */
.hero-wrap {
  height: 100vh;
  min-height: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  z-index: 0;
}

.hero-wrap .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
  background: linear-gradient(135deg, rgba(90, 24, 154, 0.8) 0%, rgba(102, 126, 234, 0.6) 100%);
  z-index: 1;
}

.hero-wrap.modern-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-wrap .slider-text {
  height: 100vh;
  min-height: 750px;
  color: rgba(255, 255, 255, 0.9);
  z-index: 3;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-wrap .slider-text .text {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-wrap .slider-text .subheading {
  display: inline-block;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
}

.hero-wrap .slider-text h1, .hero-wrap .slider-text .h1 {
  font-weight: 700;
  color: #fff;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.highlight-text {
  background: linear-gradient(45deg, #ffd700, #ffeb3b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-wrap .slider-text p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  font-weight: 500;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.modern-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #18689a, #8ec5fc);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(90, 24, 154, 0.3);
  border: none;
}

.modern-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(90, 24, 154, 0.4);
  color: white;
  text-decoration: none;
}

.modern-btn i {
  transition: transform 0.3s ease;
}

.modern-btn:hover i {
  transform: translateY(3px);
}

.modern-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: white;
  padding: 15px 35px;
  border: 2px solid white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
}

.modern-btn-outline:hover {
  background: white;
  color: #18689a;
  transform: translateY(-3px);
  text-decoration: none;
}

.modern-btn-outline:hover i {
  transform: translateX(5px);
}

@media (max-width: 767px) {
  .hero-wrap .slider-text h1, .hero-wrap .slider-text .h1 {
    font-size: 2.5rem;
  }
  
  .hero-wrap .slider-text p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .modern-btn, .modern-btn-outline {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .hero-wrap {
    background-attachment: scroll;
  }
}

@media (max-width: 576px) {
  .hero-wrap .slider-text h1, .hero-wrap .slider-text .h1 {
    font-size: 2rem;
  }
  
  .hero-wrap .slider-text .subheading {
    font-size: 0.8rem;
    padding: 6px 16px;
  }
  
  .modern-btn, .modern-btn-outline {
    padding: 12px 28px;
    font-size: 1rem;
  }
}
