/* ================================================== */
/* ================== RESET & UMUM ================== */
/* ================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    background: linear-gradient(
        to right,
        #d0ebff 0%,
        #e6f4ff 30%,
        #e6f4ff 1000%
    );
    color: #1a1a1a;
    line-height: 1.5;
}

/* Global Fade In Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animasi untuk semua elemen yang akan muncul saat scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animate {
  opacity: 1;
  transform: translateY(0);
}

/* Delay bertahap untuk animasi */
[data-animate-delay="100"] { transition-delay: 0.1s; }
[data-animate-delay="200"] { transition-delay: 0.2s; }
[data-animate-delay="300"] { transition-delay: 0.3s; }
[data-animate-delay="400"] { transition-delay: 0.4s; }
[data-animate-delay="500"] { transition-delay: 0.5s; }
[data-animate-delay="600"] { transition-delay: 0.6s; }
[data-animate-delay="700"] { transition-delay: 0.7s; }
[data-animate-delay="800"] { transition-delay: 0.8s; }




/* ===================== HEADER ===================== */
header {
    position: fixed; /* agar selalu terlihat saat scroll */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    backdrop-filter: blur(8px);
    font-family: 'Georgia', serif;
}


.nav-left {
    display: flex;
    align-items: center;
    margin-left: 100px;
}

.site-name {
    font-size: 32px;
    font-weight: bold;
    color: #339af0;
}


.nav-center {
    display: flex;
    gap: 40px;
    margin-right: 100px;
}

.nav-center a {
    font-size: 18px;
    font-weight: 600;
    font-family: 'Georgia', serif;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-center a:hover {
    transform: translateY(-2px);
}
@media (max-width: 992px) {
  header {
    padding: 15px 20px;
  }
  
  .nav-left {
    margin-left: 0;
  }
  
  .nav-center {
    display: none; /* Sembunyikan menu tengah di mobile */
  }
  
  .site-name {
    font-size: 24px;
  }
  
  /* Tambahkan menu hamburger untuk mobile */
  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
  }
}


/* ================================================== */
/* ================= HERO SECTION =================== */
/* ================================================== */
/* HERO SECTION - Tampilan Penuh */

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 80px 150px;
  min-height: 100vh;
  overflow: hidden;
  position: relative;
  margin-top: 20px;

  /* latar belakang transparan agar menyatu dengan body */
  background-color: transparent;
  color: #1a1a1a;
  font-family: 'Georgia', serif;
}

.hero-section > * {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 0.9s ease forwards;
}

.hero-section > *:nth-child(1) {
  animation-delay: 0.2s;
}
.hero-section > *:nth-child(2) {
  animation-delay: 0.4s;
}
.hero-section > *:nth-child(3) {
  animation-delay: 0.6s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero-text small {
  color: #555;
  font-size: 70px;
}

.hero-text h1 {
  font-size: 70px;
  font-weight: normal;
  line-height: 1.2;
  margin: 20px 0;
  white-space: nowrap; /* Ini yang mencegah pemisahan baris */
}



.hero-text h1 span {
  display: inline;
  font-weight: bold; /* opsional: kalau mau Delima lebih tegas */
}

.hero-desc {
  font-size: 18px;
  color: #333;
  max-width: 550px;
  margin-top: 20px;
}

.hero-desc strong {
  color: #1a1a1a;
}

.hero-image {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-left: auto;
}


.circle-arrow {
  width: 120px;
  height: 120px;
  border: 2px solid #1a1a1a;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #d8ae60;
  font-size: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.circle-arrow:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.circle-arrow i.arrow {
  margin-top: 5px;
  font-style: normal;
}

.hero-background-deco {
  position: absolute;
  top: -60px;
  right: 0;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle at top left, rgba(152, 119, 255, 0.3), transparent 70%),
              radial-gradient(circle at bottom right, rgba(124, 200, 255, 0.2), transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* ======== Custom Background & Image Shape ======== */
.photo-wrapper {
  position: relative;
  width: 550px;
  height: 550px;
  margin-left: auto;
  overflow: hidden;
  margin-left: 100px;
}

.photo-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(179, 141, 255, 0.35), transparent 70%);
  border-radius: 50% 50% 0 0;
  z-index: 0;
  filter: blur(10px);
}

.photo-wrapper img {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0 0 50% 50%;
  object-fit: cover;
  z-index: 1;
  clip-path: ellipse(50% 50% at 50% 50%);
}

/* ======== Position Hero Buttons Below Section ======== */
.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .hero-section {
    flex-direction: row; /* tetap horizontal */
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    text-align: left;
    gap: 30px;
  }

  .hero-text {
    flex: 1;
    max-width: 100%;
    text-align: left;
  }

  .hero-text h1 {
    white-space: normal;
    font-size: 38px;
  }

  .hero-desc {
    font-size: 16px;
    margin-top: 15px;
  }

  .hero-buttons {
    justify-content: flex-start;
    margin-top: 25px;
  }

  .hero-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
    width: 100%;
  }

  .photo-wrapper {
    width: 260px;
    height: 260px;
    margin-left: auto;
  }
}




/* ================================================== */
/* ================ FEATURES SECTION ================ */
/* ================================================== */

.features-section {
  padding: 100px 60px;
  background: linear-gradient(to bottom, #f0f8ff, #b8d8d7);
  text-align: center;
}

.project-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.project-subtext {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #444;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}

.feature-box {
  background-color: #f8f9fa;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 36px;
  color: #339af0;
  margin-bottom: 16px;
}

.feature-box h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}


.feature-box,
.project-header h2,
.project-subtext {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}


.in-view {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}



/* ================================================== */
/* ========== EDUCATION SECTION ============= */
/* ================================================== */

.education-section {
  padding: 80px 20px;
  background: beige;

  font-family: 'Georgia', serif;
}

.education-header {
  text-align: center;
  margin-bottom: 50px;
  margin-left: 100px;
  margin-top: 50px;
}

.education-header h2 {
  font-size: 36px;
  color: #0a0214;
  margin: 0;
  flex: 1;
  max-width: 900px;
  margin-left: 300px;
}


.subtitle {
  font-size: 18px;
  color: #555;
  position: relative;
  display: inline-block;
}

.subtitle::after {
  content: '';
  display: block;
  width: 50%;
  height: 2px;
  background: #339af0;
  margin: 15px auto 0;
}

.education-timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.education-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 100px;
  height: 100%;
  width: 2px;
  background: #003d6f;
  z-index: 1;
}

.education-item {
  position: relative;
  padding-left: 150px;
  margin-bottom: 40px;
}

.education-year {
  position: absolute;
  left: -30px;
  top: 0;
  width: 120px;
  text-align: right;
  font-weight: bold;
  color: white;
  background-color: #031e35;
  padding: 5px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 2;
}

.education-content {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  position: relative;
  border-left: 3px solid #339af0;
}

.education-content::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid white;
  z-index: 2;
}

.education-content::after {
  content: '';
  position: absolute;
  left: -13px;
  top: 25px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #339af0;
  z-index: 1;
}

.education-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.education-degree {
  font-weight: 600;
  color: #339af0;
  margin-bottom: 12px;
  font-size: 16px;
}

.education-desc p {
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}


.education-item::before {
  content: '';
  position: absolute;
  left: 96px;
  top: 10px;
  width: 12px;
  height: 12px;
  background: white;
  border: 3px solid #339af0;
  border-radius: 50%;
  z-index: 2;
}


@media (max-width: 768px) {
  .education-section {
    padding: 60px 15px;
  }
  
  .education-header h2 {
    font-size: 28px;
  }
  
  .education-timeline::before {
    left: 30px;
  }
  
  .education-item {
    padding-left: 80px;
  }
  
  .education-year {
    left: 0;
    width: 60px;
    text-align: center;
    font-size: 14px;
  }
  
  .education-content {
    padding: 20px;
  }
  
  .education-item h3 {
    font-size: 18px;
  }
  
  .education-item::before {
    left: 26px;
  }
}

.detail-section {

  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.detail-section.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}




/* ================================================= */
/*                 EXPERIENCE SECTION                */
/* ================================================= */
#experience-section {
  padding: 100px 40px;
  background: #f5f2ee;
  display: flex;
  flex-direction: column;      
  align-items: center;          
}


.experience-header {
  text-align: center;         
  margin-bottom: 60px;
}

.experience-title {
  font-size: 48px;
  color: #4b0082;
  margin: 0;
}

.experience-title span {
  color: #f43f5e;
}

.experience-subtext {
  font-size: 20px;
  color: #222;
}


.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 50px;
  max-width: 1500px;
  width: 100%;
}


.experience-box {
  background: #dbe7e6;
  padding: 40px;              
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.experience-inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;        
  overflow: hidden;
  border-radius: 12px;
}


.experience-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform .4s ease;
}


.experience-hover {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  transition: opacity .3s ease;
}

.experience-inner:hover .experience-hover { opacity: 1; }
.experience-inner:hover img               { transform: scale(1.05); }

.experience-info {
  color: #fff;
  text-align: center;
  padding: 20px;
}

.experience-info h3 { margin: 0 0 8px; font-size: 20px; font-weight: 600; }
.experience-info p  { font-size: 14px; line-height: 1.5; }


@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr; 
  }
}



/* ================================================== */
/* =====================  ORGANIZATION  ===================== */
/* ================================================== */

.organization-section {
  background: transparent;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.organization-header {
  margin: 50px 0 60px;
}

.organization-title {
  font-size: 48px;
  color: #4b0082;
  margin: 0;
}

.organization-title span {
  color: #f43f5e;
}

.organization-subtext {
  font-size: 20px;
  color: #222;
}

.organization-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  grid-template-areas:
    "left right-top"
    "left right-bottom";
  gap: 32px;
  max-width: 1200px;
  width: 100%;
  margin-bottom: 70px;
}

.org-card {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 12px;
  overflow: hidden;
  padding: 16px;
  transition: transform 0.3s ease;
}

.org-card:hover {
  transform: translateY(-5px);
}

.org-card:nth-child(1) {
  grid-area: left;
  margin-left: 10px;
}

.org-card:nth-child(2) {
  grid-area: right-top;
}

.org-card:nth-child(3) {
  grid-area: right-bottom;
}

.org-thumbnail {
  background-size: cover;
  background-position: center;
  height: 180px;
  border-radius: 8px;
}


.org-card:nth-child(1) .org-thumbnail {
  height: 380px;
}


.play-button {
  display: none;
}

.org-meta {
  color: #999;
  font-size: 12px;
  margin-top: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.org-title {
  font-size: 18px;
  font-weight: bold;
  margin: 8px 0;
  color: #222;
}

.org-desc {
  font-size: 14px;
  color: #555;
  margin-bottom: 0;
}

/* RESPONSIF MOBILE */
@media (max-width: 768px) {
  .organization-wrapper {
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "right-top"
      "right-bottom";
    margin-left: 0;
  }

  .org-card:nth-child(1) .org-thumbnail {
    height: 280px;
  }
}



/* ================================================== */
/* ===================== PROJECT   =================== */
/* ================================================== */

#project-section {
  padding: 80px 20px;
  background: #edf1f5;
  text-align: center;
}

.project-carousel {
  display: flex;
  gap: 40px;
  padding: 50px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  justify-content: center;
}

.project-carousel::-webkit-scrollbar {
  display: none;
}

.project-card {
  scroll-snap-align: start;
  background-color: #3F5D8F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  height: 800px; 
  flex: 0 0 360px;
  scroll-snap-align: start;
  height: 650px; 
  margin: 0 10px;
}

.project-img-wrapper {
  width: 100%;
  height: 800px; 
  overflow: hidden;
  height: 380px;
  background: #000;
}


.project-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


.project-card:hover {
  transform: scale(1.03);
}

.project-card:hover .project-img-wrapper img {
  transform: scale(1.05);
}


.project-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.project-meta {
  font-size: 13px;
  color: #ddd;
  margin-bottom: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.project-heading {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 15px;
}

.project-desc {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.read-more {
  background-color: #e6f266;
  border: 2px dashed #7c7c2b;
  color: #111;
  border-radius: 30px;
  padding: 10px 28px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  margin: 20px auto; 
  display: inline-block;
  text-decoration: none;
  width: max-content;
}

@media screen and (min-width: 901px) {
  .project-carousel {
    justify-content: flex-start;
    padding: 50px 60px;
  }

  .project-card {
    flex: 0 0 calc(50% - 40px); 
    margin: 0 20px;
  }
}

/* =============================================== */
/* ==========  ACTIVITY STYLES ============= */
/* =============================================== */

#activity-section {
  background-color: transparent;
  padding: 60px 40px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

#activity-section .project-header {
  margin-bottom: 50px;
}

#activity-section .project-title {
  font-size: 48px;
  color: #4b0082;
}

#activity-section .project-title span {
  color: #f43f5e;
}

#activity-section .project-subtext {
  font-size: 20px;
  color: #222;
}

#activity-section .activity-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}

#activity-section .nav-arrow {
  font-size: 40px;
  font-weight: bold;
  color: white;
  background-color: #6d28d9;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  user-select: none;
  transition: background-color 0.3s ease;
}

#activity-section .nav-arrow:hover {
  background-color: #4c1d95;
}

#activity-section .nav-arrow.left {
  position: absolute;
  left: -7px;
}

#activity-section .nav-arrow.right {
  position: absolute;
  right: -70px;
}

#activity-section .activity-container {
  display: flex;
  flex-direction: row;
  gap: 60px;
  background-color: transparent;
  padding: 40px;
  width: 100%;
  max-width: 1100px;
  box-sizing: border-box;
  align-items: stretch;
}

#activity-section .activity-slide {
  display: flex;
  flex-direction: row;
  gap: 60px;
  width: 100%;
  align-items: center;
}

#activity-section .image-box,
#activity-section .text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50%;
  box-sizing: border-box;
}

#activity-section .mockup-image {
  width: 100%;
}

#activity-section .text-content h1 {
  font-size: 40px;
  color: #6d28d9;
  margin-bottom: 20px;
  text-align: left;
}

#activity-section .text-content p {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1e1e1e;
  text-align: left;
}

#activity-section .project-info {
  list-style: none;
  padding: 0;
  font-size: 18px;
  margin-bottom: 25px;
  text-align: left;
}

#activity-section .project-info li {
  margin-bottom: 10px;
}

#activity-section .cta-button {
  background-color: #f43f5e;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 9999px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s;
  align-self: flex-start;
}

#activity-section .cta-button:hover {
  background-color: #e11d48;
}

@media screen and (max-width: 900px) {
  #activity-section .activity-container {
    flex-direction: column;
    align-items: center;
  }

  #activity-section .activity-slide {
    flex-direction: column;
  }

  #activity-section .image-box,
  #activity-section .text-content {
    max-width: 100%;
  }

  #activity-section .nav-arrow.left,
  #activity-section .nav-arrow.right {
    top: unset;
    bottom: -70px;
    position: relative;
  }
}





/* ================================================== */
/* ===================== GAMBAR ===================== */
/* ================================================== */
.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 500px;
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}



/* ================= FOOTER ================= */
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.custom-footer {
  background-color: rgb(204, 227, 227);
  color: #fff;
  padding: 50px 40px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}


.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 100px;
  flex-wrap: wrap;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-right: 200px;
}

.footer-column a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #aaa;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  margin-right: 430px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.footer-social a:hover {
  background-color: #555;
}

.footer-social a img {
  width: 22px;
  height: 22px;
  filter: invert(100%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
  filter: invert(70%);
}



.footer-bottom {
  font-size: 30px;
  color: black;
  margin-right: 500px;
}


.scroll-to-top:hover {
  background-color: #eee;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .custom-footer {
    padding: 40px 20px 20px;
  }

  .footer-container {
    align-items: center;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin: 0;
  }

  .footer-column {
    margin: 0;
    align-items: center;
  }

  .footer-column a {
    font-size: 16px;
  }

  .footer-social {
    justify-content: center;
    margin: 20px 0 0;
  }

  .footer-bottom {
    font-size: 18px;
    margin: 20px 0 0;
    text-align: center;
    margin-right: 0;
  }
}


/* ========================================= */
/* ========== ARTICLE GRID STYLES ========== */
/* ========== =============================== */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
  padding: 40px 10%;
  margin-top: 100px;
}

.article-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.card-img {
  height: 180px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.article-card:hover .card-img img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
  line-height: 1.4;
}

.card-excerpt {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.card-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 20px;
}

.card-read {
  display: inline-block;
  padding: 8px 16px;
  background: #5fa5c3;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.card-read:hover {
  background: #333;
}

@media (max-width: 960px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}


/* ========================================= */
/* ========== DETAIL ========== */
/* ========== =============================== */

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.article-detail {
  max-width: 950px;
  margin: 60px auto;
  background: transparent;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-top: 130px;
}

.detail-inner {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
}


.detail-image img {
  width: 300px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.detail-info {
  flex: 1;
}


.detail-left img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 6px;
}

.category-label {
  font-size: 14px;
  color: #26a69a;
  font-weight: bold;
  text-transform: uppercase;
}

.detail-title {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0 15px;
}

.detail-meta {
  color: #999;
  font-size: 14px;
  margin-bottom: 20px;
}

.detail-excerpt {
  font-style: italic;
  margin-bottom: 20px;
  color: #555;
}

.detail-body {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  white-space: pre-line;
}

/* Related Articles */
.related-articles {
  max-width: 950px;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.related-articles .article-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.related-articles .card-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.related-articles .card-content {
  padding: 15px;
}

.related-articles h3 {
  font-size: 16px;
  font-weight: bold;
}

.related-articles p {
  font-size: 14px;
  color: #666;
}

.related-articles a {
  font-size: 13px;
  color: #0077cc;
  text-decoration: none;
}


@media (max-width: 768px) {
  .article-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  
  .card-img {
    height: 150px;
  }
}


.related-wrapper {
  max-width: 950px;
  margin: 60px auto;
  padding: 0 20px;
}

.related-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #222;
  text-align: left;
  padding-left: 10px;
}

.related-articles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.article-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.card-content h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.card-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.card-content .read-more {
  background-color: #000;
  color: #00c3ff;
  padding: 8px 12px;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  align-self: flex-start;
  transition: background 0.3s;
}

.card-content .read-more:hover {
  background-color: #333;
}


.back-button-container {
  max-width: 950px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.back-to-article {
  display: inline-block;
  background-color: #0077cc;
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  transition: background-color 0.3s ease;
}

.back-to-article:hover {
  background-color: #005fa3;
}


/* ========================
   SIGN IN PAGE STYLE
   ======================== */

.signin-page {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #5a5f5e;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.signin-container {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.signin-box {
  background: #fff;
  padding: 30px 24px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.signin-box h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 600;
  color: #222;
}

.signin-box label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  color: #333;
}

.signin-box input[type="email"],
.signin-box input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-size: 14px;
}

.show-password {
  font-size: 14px;
  color: #333;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-signin {
  width: 100%;
  background: #007a9c;
  color: #fff;
  padding: 12px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-signin:hover {
  background: #005f7b;
}

.signin-links {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}

.signin-links span {
  color: #007a9c;
  font-weight: 600;
}

.signin-links a {
  text-decoration: none;
  color: #333;
}

.error {
  color: red;
  font-size: 14px;
  margin-bottom: 14px;
  text-align: center;
}


/* ========================= */
/*        CONTACT CSS        */
/* ========================= */
.contact-section {
  background-color: #dfeadd;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: hsl(181, 72%, 14%);
}

.contact-container {
  max-width: 720px;
  margin: 0 auto;
  margin-top: 50px;
}

.contact-heading {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-subtext {
  font-size: 18px;
  margin-bottom: 40px;
  color: #000;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 25px;
  font-size: 16px;
  border: none;
  background-color: #ffffff;
  color: #333;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-submit {
  background-color: #0a3c3d;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-submit:hover {
  background-color: #082f30;
}




/* ==========================================================*/
/* ==================== PRICING SECTION ==================== */
/* ================================================= =========*/

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-heading {
  font-size: 32px;
  font-weight: 700;
  color: #007bbd; 
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.pricing-subtext {
  font-size: 16px;
  color: #555;
  font-weight: 400;
}

.pricing-section {
  background-color: #f8f8f8;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

.pricing-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}


.pricing-card {
  background-color: #d9fbfd; /* biru muda */
  padding: 40px 30px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
}


.pricing-card.center {
  background-color: white;
}


.pricing-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.pricing-price {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 4px;
}

.pricing-price strong {
  font-size: 44px;
  font-weight: 700;
}


.pricing-sub {
  font-size: 14px;
  font-style: italic;
  color: #444;
  display: block;
  margin-bottom: 20px;
}


.pricing-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-features li {
  padding: 6px 0;
  color: #333;
}


.cross {
  font-size: 18px;
  color: #111;
}


.pricing-btn {
  background-color: white;
  color: #333;
  padding: 12px 28px;
  border-radius: 24px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.pricing-btn:hover {
  background-color: #4e3bff;
  color: white;
}

/* tombol biru untuk tengah */
.center-btn {
  background-color: #007bbd;
  color: white;
}


/* ================================================= */
/*               INFO BOXES  (Full Page)             */
/* ================================================= */



/* Menjadikan tinggi area penuh layar */
.boxes-section {
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  padding: 40px 20px;
  background: #dde9db;
  align-items: center;
  justify-items: center;
}

/* Info Box Styling */
.info-box {
  background: #f7f3ef;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform .25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 32px;
  text-align: center;
  height: 80%;
  max-width: 360px;
}

.info-box:hover {
  transform: translateY(-4px);
}

.info-content {
  max-width: 320px;
}

.info-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #00719d;
}

.info-icon {
  font-size: 40px;
  color: #00719d;
  margin-bottom: 20px;
}

.info-subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: #333;
  margin-bottom: 14px;
}

.info-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 26px;
}

.info-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #ffffff;
  border-radius: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: background .25s ease, box-shadow .25s ease;
}

.info-btn:hover {
  background: #e8f7ff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive tweak */
@media (max-width: 600px){
  .info-title   { font-size: 24px; }
  .info-box     { height: auto; }
}
