/* =========================
   BASE DESIGN SYSTEM
   ========================= */

/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap');

/* Color Variables */
:root {
    --color-primary: #1E73BE;   /* Biru utama */
    --color-secondary: #F9F9F9; /* Putih */
    --color-dark: #222222;      /* Teks utama */
    --color-light: #F9F9F9;     /* Latar lembut */
    --color-gray: #777777;      /* Teks sekunder */
    --color-orange: #FFCC00;      /* orange */
}

/* ========== RESET & GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--color-secondary);
    color: var(--color-dark);
    line-height: 1.6;
}

/* Container umum */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Utility classes */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
.bg-primary { background-color: var(--color-primary); color: var(--color-secondary); }
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
}
.btn-primary:hover {
    background-color: #165d98;
    transform: translateY(-2px);
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--color-dark);
}
p {
    color: var(--color-gray);
}

/* =========================
   NAVBAR SECTION
   ========================= */
.navbar {
  background: rgba(255, 255, 255, 0.97);
  padding: 22px 55px; 
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  animation: navbarFadeIn 0.7s ease-in-out both;
}

@keyframes navbarFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar.scrolled {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==== LOGO & TITLE ==== */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(-3deg) scale(1.05);
}

.navbar-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; 
  line-height: 1.1;
  font-weight: 600;
  color: #000;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.navbar-title span {
  font-size: 20px;
  font-weight: 700;
  color: #000000; 
  text-shadow: 1px 1px 2px rgba(50, 80, 199, 0.315);
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-title h4 {
  font-size: 13px;
  color: var(--color-primary);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.navbar-right .nav-links {
  display: flex;
  list-style: none;
  gap: 34px;
}

.navbar-right .nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.navbar-right .nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #1E73BE;
  transition: width 0.3s ease;
}

.navbar-right .nav-links a:hover::after,
.navbar-right .nav-links a.active::after {
  width: 100%;
}

.navbar-right .nav-links a:hover {
  color: #1E73BE;
}

/* ======================
   NAVBAR ACTIVE LINK
====================== */
.navbar-right .nav-links a.active {
  color: #1E73BE;
}

.navbar .nav-links a {
  position: relative;
  color: #333;
  text-decoration: none;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
  color: #1E73BE;
}

.navbar .nav-links a.active {
  color: #1E73BE;
}

.navbar .nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: #1E73BE;
  border-radius: 3px;
}

/* ==== HAMBURGER ==== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 24px;
  height: 18px;
  cursor: pointer;
  z-index: 200; 
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==== MOBILE MENU ==== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%; 
  width: 50%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding-top: 80px;
  z-index: 150; 
  border-radius: 0;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 20px;
}

.mobile-menu ul li {
  margin: 20px 0;
}

.mobile-menu ul li a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.mobile-menu ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: #1E73BE;
  transition: width 0.3s ease;
}

.mobile-menu ul li a:hover::after,
.mobile-menu ul li a.active::after {
  width: 100%;
}

.mobile-menu ul li a:hover {
  color: #1E73BE;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 100; 
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 1024px) {
.logo-container {
  display: flex;
  align-items: left;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.logo-container:hover {
  transform: scale(1.05);
}

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: rotate(-3deg) scale(1.05);
}

.navbar-title {
  display: flex;
  flex-direction: column;
  justify-content: left;
  align-items: flex-start; 
  line-height: 1.1;
  font-weight: 600;
  color: #000;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.navbar-title span {
  font-size: 17px;
  font-weight: 650;
  color: #000000;
  text-shadow: 1px 1px 2px rgba(50, 80, 199, 0.315);
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.navbar-title h4 {
  font-size: 11px;
  color: var(--color-primary);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.15);
}

.navbar-right .nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

}

@media (max-width: 992px) {
  
  .navbar {
    padding: 18px 15px; 
  }

  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .navbar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
  }

  .logo-container {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .logo {
    height: 42px;
    width: auto;
  }

  .navbar-title {
    margin-left: 6px;
    line-height: 1.1;
  }

  .navbar-title span {
    font-size: 15px;
  }

  .navbar-right {
    display: none;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 24px;
    height: 18px;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
  }

  .hamburger span {
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* MOBILE MENU */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%; 
    max-width: 320px;
    height: 100vh;
    background: #fff;
    box-shadow: -8px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
    z-index: 150;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 20px;
  }

  .mobile-menu ul li {
    margin: 20px 0;
  }

  .mobile-menu ul li a {
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .mobile-menu ul li a:hover {
    color: #1E73BE;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 100;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 50%;
  }

  .navbar-title {
    margin-left: 4px;
    line-height: 1.1;
  }

  .navbar-title span {
    font-size: 12px;
  }

  .navbar-title h4 {
    font-size: 9px;
  }
}


/* ==============================
   HERO BANNER 
   ============================== */

/* --- NAV HEIGHT VARIABLE --- */
:root {
  --nav-height: 64px;
  --color-primary: #1E73BE;
}

/* --- BASE HERO SECTION --- */
.hero-banner {
    position: relative;
    width: 100%;
    min-height: calc(100svh - var(--nav-height));
    height: calc(100svh - var(--nav-height));
    min-height: calc(100vh - var(--nav-height)); 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 24px) 5% 48px;
    box-sizing: border-box;
    background: none; 
    color: #ffffff;
    overflow: hidden;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
    overflow: hidden;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: center; 
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30,115,190,0.55);
    z-index: 1; 
}

/* --- CONTAINER --- */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  text-align: left;
  z-index: 2;
}

/* --- TEXT --- */
.hero-text {
  flex: 1;
  max-width: 680px;
  z-index: 2;
  text-align: left;
  margin-left: -400px;
  animation: fadeInUpHero 0.9s ease both;
}

.hero-text h1 {
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.2;
  margin-bottom: 18px;
  color: #ffffff;
}

.hero-text p {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.6;
  margin-bottom: 26px;
  color: #f4f8ff;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}

@keyframes fadeInUpHero {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero-banner {
    padding-left: 3%;
    padding-right: 3%;
    max-height: 50%;
    }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    text-align: left;
    margin: 0 auto; 
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 25px;
    font-weight: 500;
  }
}

@media (max-width: 992px) {
  .hero-banner {
    padding-left: 3%;
    padding-right: 3%;
    max-height: 50%;
    }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-text {
    text-align: left;
    margin: 0 auto; 
    max-width: 90%;
  }

  .hero-text h1 {
    font-size: 35px;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 25px;
    font-weight: 500;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 56px;
  }
    .hero-banner {
    min-height: calc(80svh - var(--nav-height));
    height: calc(80svh - var(--nav-height));
    padding: calc(var(--nav-height) + 20px) 6% 40px;
    background:
      linear-gradient(rgba(30,115,190,0.55), rgba(30,115,190,0.55)),
      url('/images/banner/background.png') center center/cover no-repeat;
  }

  .hero-text {
    text-align: left;
  }

  .hero-text h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 15px;
    font-weight: 500;
  }
}

/* --- MOBILE --- */
@media (max-width: 576px) {
  :root {
    --nav-height: 56px;
  }

  .hero-banner {
    min-height: calc(80svh - var(--nav-height));
    height: calc(80svh - var(--nav-height));
    padding: calc(var(--nav-height) + 20px) 6% 40px;
    background:
      linear-gradient(rgba(30,115,190,0.55), rgba(30,115,190,0.55)),
      url('/images/banner/background.png') center center/cover no-repeat;
  }

  .hero-text {
    max-width: 95%;
    margin: 0 auto;
    text-align: left;
  }

  .hero-text h1 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .hero-text p {
    font-size: 15px;
    font-weight: 500;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 15px;
  }
}

/* --- GLOBAL FIXES --- */
html, body {
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
  width: 100%;
}


@keyframes softFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

/* Wave Separator */
.wave-separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-separator svg {
  position: relative;
  display: block;
  width: calc(133% + 1.3px);
  height: 100px;
}

.wave-separator svg path {
  filter: drop-shadow(0 -2px 4px rgba(0, 0, 0, 0.1));
}

.wave-separator svg path {
  animation: waveFloat 6s ease-in-out infinite alternate;
}

@keyframes waveFloat {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(10px);
  }
}

/* === ABOUT SECTION === */
.about-section {
  background: #ffffff; 
  padding: 80px 0 0 0; 
  display: flex;
  flex-direction: column;
  margin-top: -70px;
  align-items: center;
}

.about-main-content {
  width: 90%;
  max-width: 1200px;
  margin-bottom: 70px; 
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.about-text {
  flex: 1 1 50%;
  padding: 20px 0; 
}

.about-text h2 {
  font-size: 2.8rem;
  color: var(--color-primary);
  margin-bottom: 10px;
  font-weight: 800;
  border-left: 5px solid var(--color-primary); 
  padding-left: 15px;
}

.about-text p {
  color: #333;
  font-size: 17px;
  line-height: 1.5;
  text-align: justify;
}

.about-image {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 100%;
  max-width: 400px;
  max-height: 450px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  border: 5px solid #ffffff; 
}

/* === ABOUT PARTNERS SECTION === */
.about-partners {
  width: 100%;
  background: none;
  padding: 40px 0;
  box-shadow: none;
  margin-bottom: 60px; 
  margin-top: -70px;
  text-align: center;
}

.about-partners h3 {
    font-size: 1.8rem;
    color: var(--color-primary);
    margin-bottom: 30px;
    font-weight: 600;
}

.partners-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.partner-card {
  transform: skewX(-15deg); 
  background: #ffffff; 
  padding: 10px 15px;
  border-radius: 12px; 
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px; 
  transition: all 0.3s ease;
  cursor: pointer;
  width: 120px;
  padding: 10px;
  flex-shrink: 0;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.partner-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

/* === ABOUT STATS === */
.about-stats {
  width: 100%;
  padding: 30px 10px; 
  background-color: #155eb8;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
  justify-content: center;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(6px);
  flex: 0 0 200px;
  min-width: 200px;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-box h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.stat-box p {
  font-size: 16px;
  color: #ffffff;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .about-main-content {
    width: 95%;
  }

  .about-container {
    gap: 30px;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-image {
    display: none;
  }

  .about-text p {
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .about-main-content {
    width: 90%;
  }

  .about-container {
    flex-direction: column-reverse; 
    text-align: center;
  }
  
  .about-text {
    padding: 0;
  }

  .about-text h2 {
    border-left: none;
    padding-left: 0;
    margin-top: 20px;
  }

  .about-image {
    display: none;
  }

  .about-image img {
    max-width: 300px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }
  
  /* Partner Section */
  .about-partners {
    max-width: 75%;
  }

  .about-partners h3 {
    font-size: 1.5rem;
  }
  
  .partners-list {
    gap: 8px; 
    padding: 0 5px;
  }
  
  .partner-card {
    flex: 0 0 calc(33.333% - 6px);
    transform: skewX(-15deg); 
    border-radius: 8px;
    padding: 8px 10px;
    height: 50px;
    margin: 0px;
  }

  .partner-card img {
    transform: none;
    max-height: 25px;
  }
  
  /* About Stats */
  .about-stats {
    overflow-x: hidden; 
    flex-wrap: nowrap; 
    justify-content: center; 
    padding: 15px 10px; 
    gap: 8px; 
    padding-right: 10px; 
  }

  .stat-box {
    flex: 1 1 22%; 
    min-width: 60px; 
    height: 70px; 
    padding: 10px 5px; 
  }

  .stat-box h3 {
    font-size: 20px; 
    font-weight: 700;
    margin-bottom: 3px; 
  }

  .stat-box p {
    font-size: 10px; 
    line-height: 1.2;
  }
}


/* ======================
   SERVICES SECTION 
====================== */
.services {
  padding: 70px 0; 
  background: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.services h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #1E73BE;
  margin: 8px auto 0;
  border-radius: 2px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px; 
  justify-items: center;
  align-items: stretch;
  width: 90%;
  margin: 0 auto;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: #000;
  padding: 45px 25px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 260px; 
  width: 100%;
  max-width: 360px; 
}

.service-card img {
  height: 90px; 
  width: auto;
  margin-bottom: 18px;
  transition: transform 0.35s ease;
}

.service-card h3 {
  font-size: 1.0rem;
  font-weight: 600;
  color: #222;
  margin-top: 10px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card:hover h3 {
  color: var(--color-primary);
}

/* ======================
   RESPONSIVE SETTINGS
====================== */
@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-card {
    max-width: 320px;
    min-height: 240px;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    width: 90%;
    margin: 0 auto;
    min-height: 220px;
  }
}

/* =========================
   SERVICE PAGE (Infra, DC,etc)
========================= */

/* Hero Section */
.service-hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 70px;
  padding: 70px 8%;
  background: #fff;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 15px;
}

.service-hero h4 {
  color: #1e73be;
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 2px;
}

.service-hero h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.3;
  max-width: 500px;
}

.service-hero p {
  color: #333;
  line-height: 1.6;
  max-width: 500px;
}

.hero-left {
    flex: 1 1 55%; 
}

.hero-right {
  flex: 0 0 35%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-right img {
  width: 300px;
  height: 200px; 
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* ===== EXPERIENCE BADGE ===== */
.experience-badge {
  position: absolute;
  bottom: -45px; 
  left: -65px;  
  background: rgba(30, 115, 190, 0.15); 
  color: #fff;
  border: 1px solid rgba(30,115,190,0.4);
  border-radius: 14px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(6px); 
}

.experience-badge span {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff; 
  display: block;
}

.experience-badge p {
  font-size: 0.9rem;
  margin: 0;
  color: #1e73be; 
  font-weight: 600;
}


/* Service List */
.service-list {
  padding: 20px 6% 60px 6%;
  background: #f9f9f9;
  text-align: center;
}

.service-list h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 50px;
}

.service-list h2::after {
  content: "";
  display: block;
  width: 20%;
  height: 3px;
  background: var(--color-primary);
  margin: 0 auto 0;
  border-radius: 2px;
}

/* Item Layout */
.service-items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-image img {
  width: 320px;
  height: 200px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.service-text {
  flex: 1;
  text-align: left;
}

.service-text h3 {
  color: #155eb8;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-text p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .service-hero {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 70px;
  padding: 70px 8%;
  background: #fff;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 15px;
}
}

/* Responsive */
@media (max-width: 965px) {
  .service-hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
  }
}

/* Responsive */
@media (max-width: 762px) {
  .service-hero {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
  }

  .hero-right img {
    width: 280px;
  }

  .experience-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(30, 115, 190, 0.15);
    border-radius: 12px;
    padding: 8px 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    color: #fff;
    border: 1px solid rgba(30,115,190,0.4);
    margin-bottom: -50px;
    margin-left: -50px;
    min-width: 70px;
  }

  .service-item {
    flex-direction: column;
    text-align: center;
  }

  .service-item:nth-child(even) {
    flex-direction: column;
  }

  .service-image img {
    max-width: 320px;
  }
}

/* ============================
   PARTNERS SECTION (PREMIUM)
============================ */
.product {
  padding: 90px 0;
  background: #f9fafc;
  text-align: center;
  margin-top: -25px;
}

.product-wrapper {
  width: 80%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.product-wrapper h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.product-wrapper h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #1e73be;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* ====== PARTNER ROW ====== */
.product-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 25px;
  margin-bottom: 45px;
  white-space: nowrap;
}

.product-row:last-child {
  margin-bottom: 0;
}

/* ====== CARD ====== */
.product-card {
  transform: skewX(-15deg); 
  background: #ffffff; 
  padding: 10px 15px;
  border-radius: 12px; 
  border: 2px solid var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px; 
  transition: all 0.3s ease;
  cursor: pointer;

  width: 120px;
  padding: 10px;
  flex-shrink: 0;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.product-card img {
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
}

/* ====== ANIMATION ====== */
.scroll-right {
  animation: scrollRight 40s linear infinite;
}
.scroll-left {
  animation: scrollLeft 40s linear infinite;
}

@keyframes scrollRight {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scrollLeft {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ====== PAUSE ON HOVER ====== */
.product-row:hover {
  animation-play-state: paused;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .product-wrapper {
    width: 90%;
    padding: 40px 25px;
  }
  .product-card {
    width: 120px;
    height: 80px;
  }
}

@media (max-width: 600px) {
  .product-card {
    width: 100px;
    height: 65px;
  }
  .product-wrapper {
    width: 95%;
  }
}

/* ======================
   PORTFOLIO SECTION 
====================== */
.portfolio {
  padding: 100px 8%;
  background: linear-gradient(180deg, #1e73be 0%, #0d47a1 100%);
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.portfolio h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.portfolio h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #fff;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* ===== SLIDER WRAPPER ===== */
.portfolio-slider-wrapper {
  overflow: hidden;
  position: relative;
  max-width: 100%;
}

.portfolio-slider {
  display: flex;
  gap: 25px;
  transition: transform 0.8s ease;
}

/* CARD STYLE */
.portfolio-card {
  flex: 0 0 23%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: all 0.35s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.2);
}

.portfolio-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 20px;
  text-align: left;
}

.portfolio-info h3 {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-info p {
  color: #f2f2f2;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .portfolio-card {
    flex: 0 0 25%;
  }
}

@media (max-width: 600px) {
  .portfolio-card {
    flex: 0 0 46%;
  }
  .portfolio-info {
  padding: 20px;
  text-align: left;
}

.portfolio-info h3 {
  color: #fff;
  font-size: 1.0rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.portfolio-info p {
  color: #f2f2f2;
  line-height: 1.4;
  font-size: 0.7rem;
}
}

/* ============ CLIENT SECTION ============ */
.client-section {
  background: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.client-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.client-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1e73be;
  margin: 10px auto 0;
  margin-bottom: 70px;
  border-radius: 2px;
}

.client-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 90%;
  margin: 0 auto;
}

.client-slider {
  display: flex;
  width: 200%; 
  animation: scrollClients 30s linear infinite;
}

.client-track {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 60px;
  flex-shrink: 0;
  width: 50%;
}

.client-track img {
  height: 30px;
  object-fit: contain;
  transition: filter 0.3s ease, transform 0.3s ease;
}

@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-slider-wrapper::before,
.client-slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.client-slider-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #fff 40%, transparent 100%);
}

.client-slider-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #fff 40%, transparent 100%);
}

/* Responsif */
@media (max-width: 768px) {
  .client-track {
    gap: 40px;
  }

  .client-track img {
    height: 30px;
  }
}


/* ============================
   CONTACT SECTION - FINAL
============================ */
.contact-section {
  background-color: #f8fafc;
  padding: 80px 0;
  text-align: center;
}

/* === TITLE === */
.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  position: relative;
}

.contact-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1e73be;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 50px;
}

/* === ROW WRAPPER === */
.contact-row {
  display: flex;
  justify-content: center;
  align-items: stretch; 
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
  flex-wrap: wrap;
}

/* === LEFT SIDE - CONTACT INFO === */
.contact-info {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 22px;
}

.contact-box {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-bottom: 8px;
}

.contact-box:last-child {
  margin-bottom: 0;
}

.contact-box i {
  font-size: 20px;
  color: #1e73be;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-box h4 {
  font-size: 1.1rem;
  color: #1e73be;
  margin-bottom: 0px;
  line-height: 2;
}

.contact-box span {
  font-size: 0.95rem;
  color: #555;
  line-height: 0,5;
}

/* === RIGHT SIDE - FORM === */
.contact-form-wrapper {
  flex: 1 1 45%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 30px 35px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
}

.contact-form-wrapper h3 {
  font-size: 1.3rem;
  color: #1e73be;
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-row {
  display: flex;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #1e73be;
  box-shadow: 0 0 0 2px rgba(30, 115, 190, 0.2);
  outline: none;
}

.btn-submit {
  width: 100%;
  background: #1e73be;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background: #155a99;
}

/* === MAP BELOW === */
.contact-map {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
  .contact-row {
    flex-direction: column;
    gap: 30px;
  }

  .contact-info,
  .contact-form-wrapper {
    width: 100%;
    height: auto; 
  }

  .contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 20px;
  }
  .contact-box {
    gap: 6px;
    margin-bottom: 10px;
  }

  .contact-box h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  .contact-box span {
    font-size: 0.88rem;
    line-height: 1.35;
  }
}

/* ====== FOOTER BASE ====== */
.footer {
  background-color: #0a1e3f;
  color: #fff;
  padding-top: 40px;
  font-family: 'Poppins', sans-serif;
}

/* ====== LOGO TOP ====== */
.footer-logo-top {
  text-align: left;
  margin-bottom: 20px;
}

.footer-logo-top img {
  width: 80px;
}

/* ====== MAIN CONTENT ====== */
.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

/* ====== COMPANY INFO ====== */
.footer-company {
  flex: 1;
  min-width: 250px;
}

.footer-company h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-company p {
  font-size: 14px;
  color: #d0d0d0;
  line-height: 1.6;
}

.footer-social {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.footer-social a img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1); 
  transition: transform 0.2s ease;
}

.footer-social a:hover img {
  transform: scale(1.1);
  filter: brightness(0) invert(0.8);
}

/* ====== OUR SERVICE ====== */
.footer-services {
  flex: 1;
  min-width: 220px;
}

.footer-services h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-services li {
  margin-bottom: 8px;
}

.footer-services a {
  color: #d0d0d0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-services a:hover {
  color: #fff;
}

/* ====== NEWSLETTER ====== */
.footer-newsletter {
  flex: 1;
  min-width: 250px;
}

.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #fff;
}

.footer-newsletter p {
  font-size: 14px;
  color: #d0d0d0;
  margin-bottom: 10px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newsletter-form input[type="email"] {
  padding: 8px 10px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter-form button {
  background-color: #0073cf;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #005fa6;
}

/* ====== COPYRIGHT ====== */
.footer-bottom {
  background-color: #081735;
  margin-top: 30px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: #ccc;
  font-size: 13px;
}

.design-credit span {
  color: #fff;
  font-weight: 600;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 992px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-logo-top {
    text-align: left;
  }

  .footer-bottom-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    text-align: left;
  }
}

.footer-company h4,
.footer-services h4,
.footer-newsletter h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-company h4::after,
.footer-services h4::after,
.footer-newsletter h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #007bff; 
  border-radius: 2px;
}

/* ANIMASI SCROLLING */
.fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}









