/* =========================================================
   SIM-C WEBSITE STYLE
   Sigma Inovasi Mandiri Cyber
   Tema: Biru Tua & Abu (Profesional Cyber Security)
   ========================================================= */

:root {
  --primary-blue: #0d47a1;
  --secondary-blue: #1565c0;
  --gray-bg: #e9ecef;
  --dark-gray: #333;
  --light-text: #f8f9fa;
}

/* === GLOBAL === */
body {
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
  background-color: #fff;
  color: #212529;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
}

section {
  padding: 80px 0;
}

/* === NAVBAR === */
.navbar {
  background-color: var(--primary-blue);
  transition: background-color 0.3s ease;
}

.navbar.scrolled {
  background-color: var(--secondary-blue);
}

.navbar-brand, .nav-link {
  color: white !important;
  transition: color 0.3s ease;
}

.nav-link:hover, .navbar-brand:hover {
  color: #ffc107 !important;
}

/* === HEADER === */
header {
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--light-text);
  text-align: center;
  padding: 120px 0;
  position: relative;
}

header img {
  width: 100px;
  margin-bottom: 20px;
  filter: drop-shadow(0px 0px 6px rgba(255,255,255,0.5));
}

header h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

header p {
  font-size: 1.1rem;
  color: #e3f2fd;
}

/* === FEATURE CARD === */
.feature {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 25px;
  transition: all 0.3s ease;
  height: 100%;
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.feature i {
  font-size: 1.8rem;
  color: var(--primary-blue);
}

.feature h5 {
  margin-top: 10px;
  font-weight: 600;
}

/* === SECTION COLORS === */
.bg-light-gray {
  background-color: var(--gray-bg);
}

.text-primary {
  color: var(--primary-blue) !important;
}

/* === TEAM MEMBER === */
.team-member img {
  border-radius: 50%;
  width: 140px;
  height: 140px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-member img:hover {
  transform: scale(1.08);
}

/* === CLIENT LOGO === */
.client-logo img {
  width: 100px;
  height: auto;
  opacity: 0.8;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.client-logo img:hover {
  transform: scale(1.1);
  opacity: 1;
}

.client-logo p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* === FOOTER === */
footer {
  background-color: var(--primary-blue);
  color: white;
  text-align: center;
  padding: 25px 0;
  font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.8rem;
  }
  header p {
    font-size: 1rem;
  }
}

/* === SCROLL ANIMATION AOS ADJUST === */
[data-aos] {
  transition-property: transform, opacity !important;
}
