/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/

:root {
    --primary: #3A86FF;
    --secondary: #f0f0f0;
    --accent: #FF6B35 !important;
    --bg: #F5F7FA;
    --text: #333;
    --text-light: #777;
  }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
  }
  
  html,
  body {
    background: #fff !important;
  }
  
  .header-section {
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
    font-family:'Lucida Sans', Arial, sans-serif;
    color: #003871;
  }

  .subjudul {
    margin: 10px auto 0;
    font-size: 20px;
    font-weight: 500;
    color: #003871;
    font-family:'Lucida Sans', Arial, sans-serif;
  }

  h1, h2, h3, h4, h5, h6 {
    color: #003871;
    font-family:'Lucida Sans', Arial, sans-serif;
  }
  
  p {
    color: #212741;
    font-family: Arial;
  
  }
  
  ::selection {
    background: #ff4400ba!important;
    color: #fff;
  }
 
  ::-moz-selection {
    background: #FF6B35 !important;
    color: #fff;
  }
  
  @media (max-width: 991px) {
    html, body {
      overflow-x: hidden;
    }
    .mobile-top-fix {
      margin-top: 30px;
      margin-bottom: 0px;
    }
    .mobile-bottom-fix {
      margin-bottom: 30px;
    }
    .mobile-bottom-fix-big {
      margin-bottom: 60px;
    }
  }
  
  .green-button a {
    font-size: 14px;
    color: #fff;
    background-color: #43ba7f;
    padding: 12px 30px;
    display: inline-block;
    border-radius: 5px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all .3s;
  }
  
  .green-button a:hover {
    opacity: 0.9;
  }
  
  .orange-button a {
    font-size: 14px;
    color: #fff;
    background-color:  var(--accent);
    padding: 12px 30px;
    display: inline-block;
    border-radius: 5px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all .3s;
  }
  
  .orange-button a:hover {
    opacity: 0.9;
  }
  
  section {
    margin-top: 120px;
  }
  
  .section-heading {
    position: relative;
    z-index: 2;
    margin-top: 0px;
    text-align: center;
    margin-bottom: 70px;
  }
  
  .section-heading h6 {
    font-size: 16px;
    text-transform: uppercase;
    color:  var(--accent);
    font-weight: 700;
  }
  
  .section-heading h4 {
    margin-top: 10px;
    line-height: 40px;
    font-size: 36px;
    font-weight: 700;
    text-transform: capitalize;
    color: #212741;
  }
  
  .section-heading p {
    margin-top: 30px;
  }

  .box-noPublic {
  display: flex;
  align-items: center;
  justify-content: center;
}

.no-publication {
  font-size: 1.2rem;
  color: rgba(128, 128, 128, 0.729);
  text-align: center;
}

.filter-controls {
  margin-top: 25px;
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  color: #003871;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background: white;
  border: 1px solid #eee;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.filter-btn:hover {
  background: var(--secondary);
}

.filter-btn.active {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}