body {
  font-family:
    Segoe UI,
    sans-serif;

  background: linear-gradient(
    135deg,
    #038733 0%,
    #1fb65d 35%,
    #26c281 70%,
    #051110 100%
  );
}

.navbar {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}
.hero {
  height: 100vh;

  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("../images/anggotakop.jpeg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  color: #fff;

  display: flex;
  align-items: center;
}

.hero .content {
  padding-top: 300px;
}
.btn-green {
  background: #18a34a;
  color: #fff;
}
.stats {
  margin-top: -60px;
}
.card-stat {
  border: none;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.section {
  padding: 80px 0;
}
.ketua-img {
  width: 400px;
  max-width: 400px;
  height: 350px;
  object-fit: cover;
  border-radius: 30px;
  border: 5px solid #895129;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  transition: 0.4s;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  transition: 0.4s;
  position: relative;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.icon-circle {
  width: 90px;
  height: 90px;
  background: #4caf50;
  border-radius: 50%;
  margin: -45px auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 6px solid #fff;
  position: relative;
  z-index: 2;
}

.icon-circle i {
  color: #fff;
  font-size: 35px;
}

.service-body {
  padding: 0 25px 35px;
}

.service-body h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.service-body p {
  color: #666;
  line-height: 1.8;
  font-size: 15px;
}
.values-section {
  background: linear-gradient(135deg, #557823, #6b8f34);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.values-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.values-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.values-title {
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.value-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px 20px;
  display: flex;
  align-items: flex-start;
  gap: 15px;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: 0.35s;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.icon {
  width: 55px;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.icon i {
  font-size: 38px;
  color: #5a7d2d;
}

.content h5 {
  margin-bottom: 10px;
  color: #557823;
  font-weight: 700;
  font-size: 16px;
}

.content p {
  margin: 0;
  color: #333;
  font-size: 14px;
  line-height: 1.5;
}
/* ================= NAVBAR ================= */

.navbar {
  background: rgba(36, 94, 33, 0.9);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  transition: 0.4s;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  background: #fff;
  border-radius: 12px;
  padding: 5px;
}

.brand-title {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}

.brand-subtitle {
  color: #c7f0a4;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: #fff;
  font-weight: 600;
  margin: 0 10px;
  position: relative;
  transition: 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ffd54f;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: #ffd54f;
  border-radius: 10px;
  transition: 0.3s;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 70%;
}
.navbar-nav .nav-link.active::after {
  width: 100%;
}

.btn-login {
  background: #fff;
  color: #2d6b25;
  font-weight: 700;
  border-radius: 30px;
  padding: 10px 28px;
  transition: 0.3s;
}

.btn-login:hover {
  background: #95d56c;
  color: #fff;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 991px) {
  .divider-line {
    display: none;
  }
  .glass-card {
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 34px;
  }
}
.hero .badge {
  opacity: 0;
  animation: slideRight 1s ease forwards;
}

.hero h1 {
  opacity: 0;
  animation: slideLeft 1.2s ease forwards;
  animation-delay: 0.3s;
}

.hero p {
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.8s;
}

.hero .btn {
  opacity: 0;
  animation: zoomIn 1s ease forwards;
  animation-delay: 1.2s;
}

/* new css */

.contact-box {
  margin: 60px auto;
  max-width: 1200px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-area {
  padding: 50px;
}

.contact-info {
  background: linear-gradient(160deg, #16a34a, #26c281);
  color: #fff;
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
}

.contact-info:before {
  content: "";
  width: 250px;
  height: 250px;
  position: absolute;
  bottom: -100px;
  right: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.contact-info:after {
  content: "";
  width: 120px;
  height: 120px;
  position: absolute;
  top: -40px;
  left: -40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.contact-info > * {
  position: relative;
  z-index: 2;
}

.contact-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-desc {
  opacity: 0.9;
  margin-bottom: 40px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 24px;
  margin-right: 15px;
}

.form-label {
  color: #16a34a;
  font-weight: 600;
}

.form-control {
  border: none;
  border-bottom: 2px solid #d9d9d9;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  background: none;
}

.form-control:focus {
  border-color: #16a34a;
  box-shadow: none;
}

.btn-green {
  background: #16a34a;
  color: #fff;
  padding: 12px 35px;
  border-radius: 10px;
  border: none;
  transition: 0.3s;
}

.btn-green:hover {
  background: #15803d;
  color: #fff;
  transform: translateY(-2px);
}

textarea {
  resize: none;
}
/* pembatas */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-wave {
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 130px;
  display: block;
}
.contact-box {
  margin-top: 20px;
  position: relative;
  z-index: 5;
}
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(-120px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================= DIVISI ================= */
.division-section{

background:linear-gradient(135deg,#f8fbf5,#eef6e8);

}

.division-card{

background:#fff;
padding:35px;
border-radius:25px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
height:100%;
position:relative;
overflow:hidden;

}

.division-card::before{

content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:6px;
background:linear-gradient(90deg,#5c8f2d,#89b845);

}

.division-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 55px rgba(0,0,0,.15);

}

.division-icon{

width:80px;
height:80px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
margin-bottom:20px;
color:#fff;
font-size:32px;

}

.division-card h4{

font-weight:700;
margin-bottom:5px;

}

.division-card small{

color:#6c757d;
display:block;
margin-bottom:20px;

}

.division-card ul{

padding-left:20px;
margin:0;

}

.division-card ul li{

margin-bottom:10px;
font-weight:500;

}

/*=========================================================
CSR SECTION
=========================================================*/

.csr-section{

background:linear-gradient(135deg,#f6fff4,#eef9ff);
position:relative;
}

/* Blob */
.csr-blob{
position:absolute;
border-radius:50%;
filter:blur(80px);
opacity:.35;
animation:blobMove 10s ease-in-out infinite;
}

.blob1{
width:260px;
height:260px;
background:#2ecc71;
top:-80px;
left:-80px;
}

.blob2{
width:320px;
height:320px;
background:#3498db;
right:-100px;
top:150px;
animation-delay:2s;
}

.blob3{
width:220px;
height:220px;
background:#f1c40f;
bottom:-80px;
left:35%;
animation-delay:4s;
}

@keyframes blobMove{
0%{

transform:translateY(0);
}

50%{
transform:translateY(40px);
}
100%{
transform:translateY(0);
}
}

/* Badge */
.csr-badge{
display:inline-block;
padding:10px 25px;
background:#eaf8ee;
border-radius:50px;
font-weight:600;
color:#2d6a4f;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

/* Counter */
.csr-counter{
background:#fff;
padding:35px 20px;
border-radius:25px;
border:1px solid #1E90FF;
text-align:center;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.4s;
height:100%;
}
.csr-counter:hover{
transform:translateY(-10px);
box-shadow:0 25px 55px rgba(0,0,0,.15);
}

.counter-icon{
width:80px;
height:80px;
margin:auto;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:30px;
margin-bottom:20px;
}
.csr-counter h2{
font-weight:800;
color:#2c3e50;
margin-bottom:10px;
}

.csr-counter p{
margin:0;
font-weight:600;
color:#6c757d;
}

/* Intro */

.csr-intro{
background:#fff;
padding:40px;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.08);
max-width:950px;
margin:auto;
}

.csr-intro p{
color:#666;
font-size:17px;
line-height:1.9;
}
/*=========================================================
TIMELINE CSR
=========================================================*/

.csr-timeline{
position:relative;
}

.timeline-line{
position:absolute;
left:50%;
top:0;
width:4px;
height:100%;
background:linear-gradient(#2ecc71,#3498db);
transform:translateX(-50%);
border-radius:20px;
opacity:.3;
}

/* Foto */

.csr-photo{
position:relative;
overflow:hidden;
border-radius:30px;
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.csr-photo img{
width:100%;
height:420px;
object-fit:cover;
transition:.5s;
}

.csr-photo:hover img{
transform:scale(1.08);
}

/* Icon Foto */

.csr-photo-icon{
position:absolute;
top:20px;
left:20px;
width:70px;
height:70px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:28px;
color:#fff;
box-shadow:0 10px 30px rgba(0,0,0,.25);
}

/* Card */
.csr-card{
background:#fff;
padding:45px;
border-radius:30px;
box-shadow:0 20px 45px rgba(0,0,0,.08);
transition:.4s;
position:relative;
overflow:hidden;
}

.csr-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:6px;
background:linear-gradient(90deg,#2ecc71,#3498db);
}

.csr-card:hover{
transform:translateY(-8px);
box-shadow:0 25px 60px rgba(0,0,0,.15);
}

.csr-card h3{
font-weight:700;
margin-bottom:18px;
}

.csr-card p{
color:#666;
line-height:1.9;
font-size:16px;
}

/* Badge */

.csr-category{
display:inline-block;
padding:10px 20px;
color:#fff;
border-radius:50px;
font-weight:600;
font-size:14px;
}

/* Responsive */

@media(max-width:991px){
.timeline-line{
display:none;
}

.csr-photo img{
height:300px;
}

.csr-card{
padding:30px;
}
}
/*=========================================================
CSR FOOTER
=========================================================*/

.csr-footer{
background:linear-gradient(135deg,#198754,#28a745);
padding:50px;
border-radius:35px;
color:#fff;
box-shadow:0 25px 60px rgba(0,0,0,.15);
position:relative;
overflow:hidden;
}

.csr-footer::before{
content:"";
position:absolute;
width:250px;
height:250px;
background:rgba(255,255,255,.08);
border-radius:50%;
top:-120px;
right:-70px;
}

.csr-footer::after{
content:"";
position:absolute;
width:180px;
height:180px;
background:rgba(255,255,255,.05);
border-radius:50%;
bottom:-80px;
left:-50px;
}

.csr-footer h3{
font-weight:700;
position:relative;
z-index:2;
}

.csr-footer p{
line-height:1.9;
opacity:.95;
position:relative;
z-index:2;
}

.csr-footer .btn{
position:relative;
z-index:2;
font-weight:600;
padding:14px 35px;
transition:.4s;
}

.csr-footer .btn:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(0,0,0,.25);
}
/* =======================================================
CSR PHOTO PREMIUM
======================================================= */

.csr-photo-premium{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

/* Shape */

.csr-shape{
    position:absolute;
    width:50%;
    height:50%;
    background:linear-gradient(135deg,#198754,#66bb6a);
    border-radius:35px;
    transform:rotate(-8deg);
    opacity:.15;
    transition:.5s;
}

/* Frame */

.csr-frame{
    position:relative;
    z-index:2;
    width:100%;
    overflow:hidden;
    border-radius:30px;
    background:#66bb6a;
    padding:12px;
    box-shadow:
    0 35px 70px rgba(0,0,0,.18);
    transition:.5s;
}
.csr-frame img{
    width:100%;
    height:270px;
    object-fit:cover;
    transition:.6s;
}

/* Hover */
.csr-photo-premium:hover .csr-frame{
    transform:translateY(-10px);
}
.csr-photo-premium:hover img{
    transform:scale(1.06);
}
.csr-photo-premium:hover .csr-shape{
    transform:rotate(-14deg) scale(1.08);
}

/* Badge */
.csr-badge{
    position:absolute;
    top:15px;
    right:25px;
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:28px;
    z-index:4;
    border:5px solid #fff;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

/* Floating Card */

.csr-floating-card{
    position:absolute;
    left:15px;
    bottom:15px;
    background:#fff;
    padding:15px 20px;
    border-radius:18px;
    z-index:4;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
    min-width:180px;
}

.csr-floating-card h6{
    margin-top:4px;
    font-size:18px;
}

/*=========================================================
SECTION KEMITRAAN
=========================================================*/

.partnership-section{
    background:
    linear-gradient(180deg,#f8fbff,#ffffff);
    position:relative;
    overflow:hidden;
}
/*=========================================================
CARD
=========================================================*/
.partner-card{
    background:#fff;
    border-radius:25px;
    padding:40px 30px;
    text-align:center;
    transition:.45s;
    height:100%;
    border:4px solid #9acd32;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
}
.partner-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 55px rgba(25,135,84,.18);
    border-color:#198754;
}
.partner-card h5{
    font-weight:700;
    margin-top:25px;
}
.partner-card p{
    color:#6c757d;
    margin-top:15px;
    margin-bottom:0;
    line-height:1.7;
}
/*=========================================================
LOGO
=========================================================*/
.partner-logo{
    width:110px;
    height:110px;
    object-fit:contain;
    transition:.5s;
}
.partner-card:hover .partner-logo{
    transform:scale(1.08) rotate(3deg);
}
/*=========================================================
POTO KEGIATAN
=========================================================*/
.gallery-section{
background:linear-gradient(135deg,#9acd32,#daa520,#9acd32);
position:relative;
}

.gallery-section::before{
content:'';
position:absolute;
width:100%;
height:100%;
background:
radial-gradient(circle at top right,rgba(255,255,255,.12),transparent 35%),
radial-gradient(circle at bottom left,rgba(255,255,255,.08),transparent 30%);
top:0;
left:0;
}

.gallery-circle{
position:absolute;
border-radius:50%;
filter:blur(80px);
opacity:.35;
}

.circle1{
width:280px;
height:280px;
background:#00ffc8;
top:-80px;
left:-80px;
}

.circle2{
width:250px;
height:250px;
background:#ffd000;
bottom:-80px;
right:-60px;
}

.circle3{
width:180px;
height:180px;
background:#7c4dff;
top:45%;
left:55%;
}

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
grid-auto-rows:220px;
gap:18px;
position:relative;
z-index:2;
}
.gallery-item{
position:relative;
overflow:hidden;
border-radius:22px;
background:#fff;
box-shadow:0 20px 40px rgba(0,0,0,.25);
}
.gallery-item.large{
grid-row:span 2;
}
.gallery-item.tall{
grid-row:span 2;
}
.gallery-item.wide{
grid-column:span 2;
}
.gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:.7s;
}
.gallery-item:hover img{
transform:scale(1.12);
}
.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
justify-content:center;
align-items:center;
background:rgba(0,0,0,.45);
opacity:0;
transition:.4s;
}
.gallery-item:hover .overlay{
opacity:1;
}
.overlay i{
font-size:45px;
color:#fff;
}
@media(max-width:768px){
.gallery-item.wide{
grid-column:span 1;
}
.gallery-item.large,
.gallery-item.tall{
grid-row:span 1;
}
}


/* ===================================================== */
/* SECTION BERITA */
/* ===================================================== */

.news-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%,
        rgba(255,255,255,0.20) 0px,
        transparent 45%),
        radial-gradient(circle at 90% 80%,
        rgba(255,255,255,0.15) 0px,
        transparent 40%),
        linear-gradient(
            135deg,
            #eef7e7 5%,
            #dceecb 45%,
            #f6fbf1 100%
        );

}


/* Dekorasi background */

.news-section::before {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(85,120,35,0.12);
    border-radius: 50%;
    top: -100px;
    left: -80px;
}

.news-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(108,143,52,0.10);
    border-radius: 50%;
    right: -100px;
    bottom: -120px;
}


/* Container tetap di atas dekorasi */

.news-section .container {
    position: relative;
    z-index: 2;
}


/* ===================================================== */
/* JUDUL */
/* ===================================================== */

.news-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(85,120,35,0.10);
    color: #557823;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}
/* ===================================================== */
/* BERITA UTAMA */
/* ===================================================== */

.featured-news-card {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: white;
    box-shadow: 0 15px 45px rgba(0,0,0,0.12);
    transition: 0.4s ease;
}
.featured-news-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(0,0,0,0.18);
}
.featured-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
}
.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.featured-news-card:hover .featured-image img {
    transform: scale(1.06);
}
/* Gradient overlay */
.featured-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(0,0,0,0.88) 0%,
            rgba(0,0,0,0.55) 40%,
            rgba(0,0,0,0.05) 80%
        );
}

/* Konten berita */
.featured-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 35px;
    color: white;
}
.news-date {
    font-size: 13px;
    margin-bottom: 12px;
    opacity: 0.9;
}
.featured-content h2 {
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 15px;
}
.featured-content p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    max-width: 90%;
}
.news-btn {
    margin-top: 10px;
    border-radius: 30px;
    padding: 11px 22px;
    font-weight: 600;
}
/* ===================================================== */
/* BERITA SAMPING */
/* ===================================================== */
.side-news-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.side-news-card {
    display: flex;
    align-items: stretch;
    min-height: 235px;
    background: rgba(255,255,255,0.92);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 10px 30px rgba(0,0,0,0.09);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all 0.4s ease;
}
.side-news-card:hover {
    transform: translateX(-7px);
    box-shadow: 0 15px 38px rgba(0,0,0,0.14);
}
.side-news-image {
    width: 42%;
    min-width: 42%;
    overflow: hidden;
}
.side-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.side-news-card:hover .side-news-image img {
    transform: scale(1.08);
}
/* Isi berita */

.side-news-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.side-news-date {
    color: #557823;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}
.side-news-content h4 {
    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}
.read-more {
    color: #557823;
    font-size: 13px;
    font-weight: 700;
}
.read-more i {
    margin-left: 5px;
    transition: 0.3s;
}
.side-news-card:hover .read-more i {
    margin-left: 10px;
}
/* ===================================================== */
/* RESPONSIVE */
/* ===================================================== */
@media (max-width: 991px) {
    .featured-image {
        min-height: 450px;
    }
}
@media (max-width: 768px) {
    .featured-image {
        min-height: 430px;
    }
    .featured-content {
        padding: 25px;
    }
    .featured-content h2 {
        font-size: 24px;
    }
    .featured-content p {
        font-size: 14px;
    }
    .side-news-card {
        min-height: 190px;
    }
}
@media (max-width: 576px) {
    .featured-image {
        min-height: 500px;
    }
    .side-news-card {
        flex-direction: column;
    }
    .side-news-image {
        width: 100%;
        height: 200px;
    }
    .side-news-content {
        padding: 20px;
    }
}

/*======================================
    STRUKTUR ORGANISASI
=======================================*/

.struktur-section{
    background:linear-gradient(135deg,#0f5132,#198754,#2d6a4f);
    position:relative;
    overflow:hidden;
}
/* Background Glow */
.shape{
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.25;
}
.shape1{
    width:350px;
    height:350px;
    background:#ffc107;
    top:-120px;
    left:-100px;
}
.shape2{
    width:300px;
    height:300px;
    background:#ffffff;
    bottom:-120px;
    right:-80px;
}
.struktur-card{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.2);
    border-radius:30px;
    padding:35px;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    transition:.4s;
}
.struktur-card:hover{
    transform:translateY(-8px);
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}
.struktur-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}
.struktur-header h4{
    color:#fff;
    font-weight:700;
    margin-bottom:5px;
}
.struktur-header small{
    color:rgba(255,255,255,.75);
}
.struktur-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    background:rgba(255,255,255,.18);
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    color:#ffc107;
}
.struktur-image{
    overflow:hidden;
    border-radius:20px;
}
.struktur-image img{
    width:100%;
    transition:.6s;
    border:8px solid rgba(255,255,255,.18);
    box-shadow:0 15px 40px rgba(0,0,0,.25);
}
.struktur-image:hover img{
    transform:scale(1.03);
}
/* Mobile */
@media(max-width:768px){
.struktur-header{
flex-direction:column;
text-align:center;
gap:20px;
}
}