.pt-30 {
    padding-top: 30px;
}

.silot-color {
    color: #d14528 !important;
}

.silot-colot-blue {
    color: #0146c9;
}

.header-img {
    width: 900px;
    top: 5%;
    left: -10%;
}

@media screen and (max-width: 375px) {
    .box-terms {
        text-align: center;
    }

    .btn-terms {
        margin-bottom: 1em;
    }

    .btn-privacy {
        margin-bottom: 5em;
    }
}

.logo-force {
    width: 140px;
}

.atompay-btn {
    background-color: #fa511f;
    border-color: #ff850b;
}

.custom-logo-footer {
    width: 350px;
    background-color: #fff;
    border-radius: 20px;
    padding: 10px;
}

.atompay-color {
    color: #fa511f !important;
}

/* =====================================================
   PARTNER LOGO AUTO SLIDE ANIMATION (NO GRAYSCALE)
   ===================================================== */
#partners {
  overflow: hidden;
  position: relative;
  background-color: #ffffff !important;
  padding: 30px 0;
  text-align: center;
}

#partners h3 {
  margin-bottom: 20px;
}

/* Slider wrapper */
.partners-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
}

/* Track bergerak */
.partners-slider .slide-track {
  display: flex;
  align-items: center;
  gap: 60px;
  width: max-content;
  min-width: 200%; /* ✅ penting untuk loop */

  animation: scroll 30s linear infinite;
  -webkit-animation: scroll 30s linear infinite; /* Safari & iOS */

  /* Smooth scroll fix */
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.partners-slider img {
  height: 60px;
  margin: 0 40px;
  flex-shrink: 0;
  object-fit: contain;
  -webkit-user-drag: none;
  filter: none;
  opacity: 0.9;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.partners-slider img:hover {
  transform: scale(1.05);
  opacity: 1;
}

/* Keyframes horizontal scroll */
@keyframes scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@-webkit-keyframes scroll {
  0%   { -webkit-transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 991px) {
  .partners-slider .slide-track {
    animation: scroll 20s linear infinite;
    -webkit-animation: scroll 20s linear infinite;
  }

  .partners-slider img {
    height: 40px;
    margin: 0 20px;
  }

  #partners h3 { font-size: 1.8rem; }

  #partners p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (max-width: 375px) {
  .partners-slider img {
    height: 35px;
    margin: 0 15px;
  }
}

/* Safari text & image rendering fix */
* {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-user-drag: none;
}

/* Font import (modern fintech style) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* Base container */
.terms-content {
  font-family: 'Inter', sans-serif;
  font-size: 11pt;
  color: #2b2b2b;
  text-align: justify;
  line-height: 1.7;
  padding: 0 1rem;
}

/* Headings */
.terms-content h3,
.terms-content h4 {
  text-align: center;
  color: #1a1a1a;
  font-weight: 600;
  margin-top: 1.5rem;
  text-transform: uppercase;
}

.terms-content h4 {
  text-align: left;
  color: #0d6efd; /* Soft fintech blue */
  margin-bottom: 0.5rem;
}

/* Lists */
.terms-content ul,
.terms-content ol {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.terms-content li {
  margin-bottom: 0.6rem;
  color: #333;
}

/* Links with motion hover */
.fancy-link {
  color: #0056d6;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease, transform 0.2s ease;
}

.fancy-link:hover {
  color: #ff4b4b;
  transform: translateY(-2px);
  text-decoration: underline;
}

/* Optional: modal title */
.modal-content h3 {
  font-weight: 700;
  color: #222;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* --- Base Container --- */
.terms-content {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1e293b;
  text-align: justify;
  line-height: 1.8;
  padding: 0 1.5rem 1.5rem;
  max-height: 75vh; /* biar bisa scroll dalam modal */
  overflow-y: auto;
  scroll-behavior: smooth;
  animation: fadeUp 0.6s ease both;
}

/* --- Fade-up animation --- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Custom scrollbar --- */
.terms-content::-webkit-scrollbar {
  width: 6px;
}
.terms-content::-webkit-scrollbar-thumb {
  background: #0072ff;
  border-radius: 10px;
}
.terms-content::-webkit-scrollbar-thumb:hover {
  background: #005fe0;
}

/* --- Headings --- */
.terms-content h3 {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.terms-content h4 {
  color: #0072ff;
  font-weight: 600;
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
}

/* --- Paragraphs & Lists --- */
.terms-content p {
  margin-bottom: 0.8rem;
}

.terms-content ul,
.terms-content ol {
  margin: 0.5rem 0 1rem 1.3rem;
  padding: 0;
}

.terms-content li {
  margin-bottom: 0.5rem;
  color: #334155;
}

/* --- Fancy Link (Animated Email Link) --- */
.fancy-link {
  color: #0072ff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.fancy-link::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #0072ff;
  transition: width 0.3s ease;
}

.fancy-link:hover {
  color: #005fe0;
  transform: translateX(3px);
}

.fancy-link:hover::after {
  width: 100%;
}

/* --- Modal Close Button --- */
.btn-close {
  position: absolute;
  top: 15px;
  right: 15px;
  filter: brightness(0) saturate(100%) invert(25%) sepia(95%) saturate(3700%) hue-rotate(204deg) brightness(97%) contrast(103%);
}

/* --- Responsive Fixes --- */
@media (max-width: 768px) {
  .terms-content {
    font-size: 13px;
    line-height: 1.6;
    padding: 0 1rem 1rem;
    max-height: 70vh;
  }

  .terms-content h3 {
    font-size: 16px;
  }

  .terms-content h4 {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .terms-content {
    padding: 0 0.8rem 1rem;
    font-size: 12.5px;
  }
}

