   .why-choose-us {
         padding: 100px 0;
         background: linear-gradient(135deg, #0a0a0a4f 0%, #1a1a2e 100%);
         position: relative;
         overflow: hidden;
      }

      .why-choose-us::before {
         content: '';
         position: absolute;
         top: 0;
         left: 0;
         right: 0;
         bottom: 0;
         background: url('assets/img/choose-bg.png') center center / cover no-repeat;
         opacity: 0.05;
         pointer-events: none;
      }

      /* Image Section */
      .choose-image-wrapper {
         position: relative;
      }

      .main-image {
         border-radius: 30px;
         overflow: hidden;
         box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      }

      .main-image img {
         width: 100%;
         height: auto;
         display: block;
         transition: transform 0.5s ease;
      }

      .main-image:hover img {
         transform: scale(1.05);
      }

      .floating-card {
         position: absolute;
         top: 50px;
         right: -20px;
         background: linear-gradient(135deg, #FFB300, #f07400);
         border-radius: 20px;
         padding: 15px 25px;
         display: flex;
         align-items: center;
         gap: 15px;
         box-shadow: 0 20px 35px -10px rgba(240, 116, 0, 0.3);
         animation: float 3s ease-in-out infinite;
      }

      .floating-card2 {
         position: absolute;
         bottom: 50px;
         left: -20px;
         background: linear-gradient(135deg, #FFB300, #f07400);
         border-radius: 20px;
         padding: 15px 25px;
         text-align: center;
         box-shadow: 0 20px 35px -10px rgba(240, 116, 0, 0.3);
         animation: float 3s ease-in-out infinite 1s;
      }

      @keyframes float {

         0%,
         100% {
            transform: translateY(0);
         }

         50% {
            transform: translateY(-10px);
         }
      }

      .floating-icon img {
         width: 40px;
         height: 40px;
      }

      .floating-text h4 {
         font-size: 24px;
         font-weight: 800;
         color: #fff;
         margin: 0;
      }

      .floating-text p {
         font-size: 12px;
         color: rgba(255, 255, 255, 0.9);
         margin: 0;
      }

      /* Content Section */
      .choose-content {
         padding: 20px 0;
      }

      .section-badge {
         display: inline-block;
         background: rgba(255, 180, 0, 0.15);
         color: #FFB300;
         padding: 6px 18px;
         border-radius: 50px;
         font-size: 12px;
         font-weight: 600;
         letter-spacing: 1px;
         margin-bottom: 20px;
         font-family: 'Montserrat', sans-serif;
      }

      .section-title {
         font-size: 38px;
         font-weight: 800;
         line-height: 1.2;
         margin-bottom: 25px;
         color: #fff;
         font-family: 'Montserrat', sans-serif;
      }

      .section-title .highlight {
         color: #FFB300;
         position: relative;
         display: inline-block;
      }

      .section-title .highlight::after {
         content: '';
         position: absolute;
         bottom: -5px;
         left: 0;
         right: 0;
         height: 3px;
         background: linear-gradient(90deg, #FFB300, #f07400);
         border-radius: 3px;
      }

      .section-desc {
         font-size: 15px;
         line-height: 1.7;
         color: rgba(255, 255, 255, 0.75);
         font-family: 'Noto Sans', sans-serif;
      }

      /* Features Grid */
      .features-grid {
         display: grid;
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
         margin-top: 30px;
      }

      .feature-item {
         display: flex;
         gap: 15px;
         padding: 15px;
         background: rgba(255, 255, 255, 0.05);
         border-radius: 15px;
         transition: all 0.3s ease;
         border: 1px solid rgba(255, 255, 255, 0.08);
      }

      .feature-item:hover {
         background: rgba(255, 255, 255, 0.08);
         transform: translateY(-3px);
         border-color: rgba(255, 180, 0, 0.3);
      }

      .feature-icon span {
         width: 45px;
         height: 45px;
         background: linear-gradient(135deg, #FFB300, #f07400);
         border-radius: 12px;
         display: flex;
         align-items: center;
         justify-content: center;
         font-weight: 800;
         font-size: 18px;
         color: #fff;
      }

      .feature-info h4 {
         font-size: 16px;
         font-weight: 700;
         margin: 0 0 5px 0;
         color: #FFB300;
         font-family: 'Montserrat', sans-serif;
      }

      .feature-info p {
         font-size: 13px;
         line-height: 1.5;
         margin: 0;
         color: rgba(255, 255, 255, 0.7);
         font-family: 'Noto Sans', sans-serif;
      }

      /* Signature Box */
      .signature-box {
         margin-top: 30px;
         padding-top: 20px;
         border-top: 1px solid rgba(255, 255, 255, 0.1);
      }

      .signature-box p {
         font-size: 18px;
         font-weight: 600;
         margin: 0;
         background: linear-gradient(135deg, #FFB300, #f07400);
         -webkit-background-clip: text;
         background-clip: text;
         color: transparent;
         font-family: 'Montserrat', sans-serif;
      }

      /* Responsive */
      @media (max-width: 992px) {
         .why-choose-us {
            padding: 70px 0;
         }

         .section-title {
            font-size: 32px;
         }

         .features-grid {
            grid-template-columns: 1fr;
         }

         .floating-card,
         .floating-card2 {
            display: none;
         }
      }

      @media (max-width: 768px) {
         .why-choose-us {
            padding: 50px 0;
         }

         .section-title {
            font-size: 26px;
         }

         .section-desc {
            font-size: 14px;
         }

         .signature-box p {
            font-size: 14px;
         }
      }

      @media (max-width: 480px) {
         .section-title {
            font-size: 22px;
         }

         .feature-item {
            padding: 12px;
         }

         .feature-icon span {
            width: 35px;
            height: 35px;
            font-size: 14px;
         }

         .feature-info h4 {
            font-size: 14px;
         }

         .feature-info p {
            font-size: 12px;
         }
      }
      /* =========================================================== */
         .ot-funfact-area {
  padding: 80px 0;
  background: var(--ot-dark-color, #080C14);
  position: relative;
  overflow: hidden;
}

.ot-funfact-wrapp3 {
  background: var(--ot-smoke-color2, #1A3A5F);
  border-radius: 30px;
  padding: 50px 30px;
  border: 1px solid rgba(255, 179, 0, 0.2);
}

.ot-funfact-card3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 25px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  transition: all 0.3s ease;
  text-align: left;
  height: 100%;
  min-height: 140px;
}

.ot-funfact-card3:hover {
  transform: translateY(-8px);
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid rgba(255, 179, 0, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.funfact-icon {
  flex-shrink: 0;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 179, 0, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.ot-funfact-card3:hover .funfact-icon {
  background: rgba(0, 102, 255, 0.2);
  transform: scale(1.05);
}

.funfact-icon i {
  font-size: 36px;
  color: var(--ot-theme-color2, #FFB300);
  transition: all 0.3s ease;
}

.ot-funfact-card3:hover .funfact-icon i {
  transform: scale(1.1);
  color: var(--ot-theme-color, #f07400);
}

.funfact-content {
  text-align: left;
  flex: 1;
}

.funfact-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--ot-theme-color2, #FFB300);
  margin: 0;
  line-height: 1.2;
  font-family: var(--ot-title-font, 'Montserrat', sans-serif);
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.funfact-number span {
  font-size: 42px;
  font-weight: 800;
  color: var(--ot-theme-color2, #FFB300);
}

.funfact-number .plus-sign {
  font-size: 32px;
  color: var(--ot-theme-color, #f07400);
}

.funfact-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--ot-white-color, #FFFFFF);
  margin: 10px 0 0 0;
  font-family: var(--ot-body-font, 'Noto Sans', sans-serif);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Counter Animation */
@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter-num {
  display: inline-block;
  animation: countUp 0.6s ease forwards;
}

/* Responsive */
@media (max-width: 1200px) {
  .ot-funfact-card3 {
    gap: 15px;
    padding: 20px 15px;
  }
  .funfact-number {
    font-size: 36px;
  }
  .funfact-number span {
    font-size: 36px;
  }
  .funfact-icon i {
    font-size: 32px;
  }
  .funfact-icon {
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 992px) {
  .ot-funfact-area {
    padding: 60px 0;
  }
  .ot-funfact-wrapp3 {
    padding: 40px 20px;
  }
  .funfact-number {
    font-size: 32px;
  }
  .funfact-number span {
    font-size: 32px;
  }
  .funfact-text {
    font-size: 13px;
  }
  .ot-funfact-card3 {
    min-height: 120px;
  }
}

@media (max-width: 768px) {
  .ot-funfact-card3 {
    justify-content: flex-start;
    text-align: left;
    flex-direction: row;
    min-height: auto;
  }
  .funfact-content {
    text-align: left;
  }
  .funfact-number {
    font-size: 32px;
  }
  .funfact-number span {
    font-size: 32px;
  }
  .funfact-text {
    font-size: 13px;
  }
  .funfact-icon {
    width: 50px;
    height: 50px;
  }
  .funfact-icon i {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .ot-funfact-area {
    padding: 50px 0;
  }
  .ot-funfact-wrapp3 {
    padding: 25px 15px;
  }
  .ot-funfact-card3 {
    padding: 15px 12px;
    gap: 12px;
  }
  .funfact-number {
    font-size: 28px;
  }
  .funfact-number span {
    font-size: 28px;
  }
  .funfact-number .plus-sign {
    font-size: 22px;
  }
  .funfact-text {
    font-size: 12px;
    margin-top: 5px;
  }
  .funfact-icon {
    width: 45px;
    height: 45px;
  }
  .funfact-icon i {
    font-size: 24px;
  }
}

@media (max-width: 400px) {
  .ot-funfact-card3 {
    flex-direction: column;
    text-align: center;
  }
  .funfact-content {
    text-align: center;
  }
  .funfact-number {
    justify-content: center;
  }
}