@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #0E7490;
  --primary-light: rgba(14,116,144,0.10);
  --primary-mid: rgba(14,116,144,0.20);
  --accent: #E63946;
  --accent-light: rgba(230,57,70,0.10);
  --foreground: #0c2d38;
  --muted: #5a7d88;
  --bg: #f0f9fb;
  --card: #ffffff;
  --border: #c8dfe5;
  --shadow: 0 4px 24px rgba(14,116,144,0.08);
  --shadow-lg: 0 8px 48px rgba(14,116,144,0.14);
  --radius: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── NAVBAR ─────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(14,116,144,0.12); }

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img {
  height: 64px; width: auto; max-width: 280px; object-fit: contain;
}

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.9375rem; font-weight: 500;
  color: var(--foreground);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  background: var(--primary-light);
  color: var(--primary);
}

.nav-cta {
  background: var(--accent); color: #fff;
  padding: 0.625rem 1.375rem;
  border-radius: 9999px;
  font-weight: 600; font-size: 0.9375rem;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(230,57,70,0.25);
}
.nav-cta:hover { background: #c8303c; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,57,70,0.32); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--foreground);
  border-radius: 2px; transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 1rem 1.5rem 1.5rem;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 0.625rem 0.875rem; border-radius: var(--radius);
  font-weight: 500; font-size: 1rem;
  color: var(--foreground); transition: background 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active {
  background: var(--primary-light); color: var(--primary);
}
.mobile-menu .nav-cta { margin-top: 0.5rem; text-align: center; display: block; }

/* ── HERO GRADIENT BG ────────────────────────── */
.hero-bg {
  background: linear-gradient(135deg, #e0f7f9 0%, #ffffff 50%, #fde8e8 100%);
  position: relative; overflow: hidden;
}
.hero-bg::before {
  content: ''; position: absolute;
  top: -20%; right: -10%; width: 600px; height: 600px;
  background: rgba(14,116,144,0.06);
  border-radius: 50%; pointer-events: none;
}
.hero-bg::after {
  content: ''; position: absolute;
  bottom: -15%; left: -8%; width: 400px; height: 400px;
  background: rgba(230,57,70,0.05);
  border-radius: 50%; pointer-events: none;
}

/* ── PAGE HEADER (inner pages) ───────────────── */
.page-header {
  background: linear-gradient(135deg, #e0f7f9 0%, #ffffff 50%, #e0f7f9 100%);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 900; line-height: 1.1;
  color: var(--foreground); margin-bottom: 1rem;
}
.page-header h1 span { color: var(--accent); }
.page-header p {
  font-size: 1.125rem; color: var(--muted);
  max-width: 600px; margin: 0 auto;
}
.page-header .badge-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary-light); border: 1px solid var(--primary-mid);
  color: var(--primary); padding: 0.4rem 1rem;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ── SECTIONS ────────────────────────────────── */
.section { padding: 5rem 1.5rem; }
.section-inner { max-width: 1200px; margin: 0 auto; }

.section-label {
  font-size: 0.8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.2;
  color: var(--foreground); margin-bottom: 1.25rem;
}
.section-subtitle {
  font-size: 1.0625rem; color: var(--muted);
  max-width: 600px; margin: 0 auto 3rem;
}

/* ── GRADIENT SECTION ────────────────────────── */
.section-teal {
  background: linear-gradient(135deg, rgba(14,116,144,0.07) 0%, #e8f7fa 50%, rgba(14,116,144,0.07) 100%);
  border-radius: var(--radius-xl);
  margin: 0 1rem 4rem;
  padding: 4rem 1.5rem;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600; font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap;
}
.btn-accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 18px rgba(230,57,70,0.25);
}
.btn-accent:hover { background: #c8303c; transform: translateY(-1px); box-shadow: 0 6px 22px rgba(230,57,70,0.32); }
.btn-primary {
  background: var(--primary); color: #fff;
  box-shadow: 0 4px 18px rgba(14,116,144,0.22);
}
.btn-primary:hover { background: #0b5e74; transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary-light); }
.btn-lg { padding: 0.875rem 2.25rem; font-size: 1.0625rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ── CARDS ───────────────────────────────────── */
.card {
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem; box-shadow: var(--shadow);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.card-icon {
  width: 56px; height: 56px;
  background: var(--primary-light); color: var(--primary);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 28px; height: 28px; stroke: var(--primary); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.card p { color: var(--muted); line-height: 1.7; }

.feature-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.9rem; color: var(--foreground); font-weight: 500;
}
.feature-list li::before {
  content: '✓'; color: var(--accent); font-weight: 700;
  flex-shrink: 0; margin-top: 0.05rem;
}

/* ── GRIDS ───────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── TRUST BANNER ────────────────────────────── */
.trust-banner {
  background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 1.75rem 1.5rem;
}
.trust-items {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.9rem; color: var(--foreground);
}
.trust-item svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ── WHY PPTS SECTION ────────────────────────── */
.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin: 1.75rem 0 2rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-dot {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(230,57,70,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 0.2rem;
}
.why-dot::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); display: block;
}
.why-item h5 { font-size: 1.0625rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.2rem; }
.why-item p { color: var(--muted); font-size: 0.9375rem; }

/* ── IMAGE BLOCK ─────────────────────────────── */
.img-rounded {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border);
}
.img-rounded img { width: 100%; height: 100%; object-fit: cover; }

/* ── HERO SPECIFIC ───────────────────────────── */
.hero {
  min-height: 90vh; display: flex; align-items: center;
  padding: 8rem 1.5rem 4rem;
}
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-content { max-width: 700px; }

.hero-badge {
  display: inline-flex; align-items: center;
  background: var(--primary-light); border: 1px solid var(--primary-mid);
  color: var(--primary); padding: 0.4rem 1rem;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900; line-height: 1.08; margin-bottom: 1rem;
}
.hero h1 .name-gradient {
  background: linear-gradient(90deg, var(--accent), #e85d04);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero h1 .name-tech { color: var(--foreground); }
.hero h1 .name-pvt { font-size: 0.55em; font-weight: 600; color: var(--muted); vertical-align: middle; margin-left: 0.3rem; }
.hero-tagline {
  font-size: 1.25rem; font-weight: 600; font-style: italic;
  color: var(--primary); margin-bottom: 1rem;
}
.hero-desc { font-size: 1.0625rem; color: var(--muted); max-width: 560px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── SERVICES CARD ───────────────────────────── */
.service-card { display: flex; flex-direction: column; }
.service-card .card-icon { background: var(--primary-light); }
.service-card .inquire-divider { margin-top: auto; padding-top: 1.25rem; border-top: 1px solid var(--border); }

/* ── GOVT SOLUTION ITEM ──────────────────────── */
.govt-item {
  display: flex; gap: 1.5rem; padding: 2rem;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow);
  transition: box-shadow 0.2s;
}
.govt-item:hover { box-shadow: var(--shadow-lg); }
.govt-item-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.govt-item-icon svg { width: 32px; height: 32px; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.govt-item h3 { font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.govt-item p { color: var(--muted); margin-bottom: 0.75rem; }
.govt-bullets li { color: var(--primary); font-size: 0.9rem; font-weight: 500; padding: 0.1rem 0; }
.govt-bullets li::before { content: '• '; }

/* ── TRAINING COURSE CARD ────────────────────── */
.course-card { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); padding: 2rem; box-shadow: var(--shadow); }
.course-category {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 9999px;
  font-size: 0.8125rem; font-weight: 600; margin-bottom: 1rem;
  background: var(--primary-light); color: var(--primary);
}
.course-category.security { background: rgba(230,57,70,0.1); color: var(--accent); }
.course-category.ai { background: rgba(14,116,144,0.1); color: var(--primary); }
.course-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.75rem; }
.course-card p { color: var(--muted); font-size: 0.9375rem; margin-bottom: 1.25rem; }
.course-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.course-meta span { display: flex; align-items: center; gap: 0.375rem; font-size: 0.8125rem; color: var(--muted); font-weight: 500; }
.course-meta svg { width: 14px; height: 14px; stroke: var(--muted); fill: none; stroke-width: 2; }

/* ── CONTACT ─────────────────────────────────── */
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--primary-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 22px; height: 22px; stroke: var(--primary); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.contact-info-item h4 { font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.contact-info-item p, .contact-info-item a { color: var(--muted); font-size: 0.9375rem; }
.contact-info-item a:hover { color: var(--primary); }

.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--foreground); margin-bottom: 0.4rem; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  background: #fff; color: var(--foreground);
  font-family: 'Inter', sans-serif; font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,116,144,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── CTA BLOCK ───────────────────────────────── */
.cta-block {
  background: linear-gradient(135deg, rgba(14,116,144,0.09) 0%, #eaf6f9 50%, rgba(14,116,144,0.09) 100%);
  border-radius: var(--radius-xl); border: 1px solid var(--primary-mid);
  padding: 4rem 2rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-block::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; background: rgba(230,57,70,0.07);
  border-radius: 50%; pointer-events: none;
}
.cta-block h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; color: var(--foreground); margin-bottom: 1rem; }
.cta-block p { color: var(--muted); font-size: 1.0625rem; max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: #0f172a; color: #94a3b8;
  padding: 4rem 1.5rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-brand img { height: 56px; width: auto; max-width: 240px; object-fit: contain; }
.footer-brand span { color: #fff; font-weight: 700; font-size: 1.1rem; }
.footer p { font-size: 0.875rem; line-height: 1.7; }
.footer h4 { color: #f1f5f9; font-size: 1rem; font-weight: 700; margin-bottom: 1.25rem; }
.footer ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer ul li a {
  font-size: 0.9rem; color: #94a3b8;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 0.4rem;
}
.footer ul li a::before { content: '•'; color: var(--accent); font-size: 0.6rem; }
.footer ul li a:hover { color: #f1f5f9; }
.footer ul li span { font-size: 0.875rem; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 0.625rem; margin-bottom: 0.875rem; }
.footer-contact-item svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 1.75; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a, .footer-contact-item span { font-size: 0.875rem; line-height: 1.5; }
.footer-contact-item a:hover { color: #f1f5f9; }

.footer-bottom {
  border-top: 1px solid #1e293b; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  font-size: 0.8125rem;
}
.footer-bottom a:hover { color: #f1f5f9; }

/* ── WHATSAPP FLOAT ──────────────────────────── */
.wa-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
  width: 56px; height: 56px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* ── FADE IN ANIMATION ───────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }

/* ── ABOUT PAGE SPECIFICS ────────────────────── */
.stat-block { text-align: center; padding: 1.5rem; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.stat-block .stat-num { font-size: 2.25rem; font-weight: 900; color: var(--primary); line-height: 1; }
.stat-block .stat-label { font-size: 0.875rem; color: var(--muted); margin-top: 0.25rem; font-weight: 500; }

.value-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.value-icon { width: 40px; height: 40px; flex-shrink: 0; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.value-icon svg { width: 22px; height: 22px; fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }

/* ── TOAST ───────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--foreground); color: #fff;
  padding: 1rem 1.75rem; border-radius: var(--radius-lg);
  font-weight: 500; font-size: 0.9375rem;
  box-shadow: var(--shadow-lg); z-index: 999;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero { min-height: auto; padding: 6rem 1.25rem 3rem; }
  .section { padding: 3rem 1.25rem; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .trust-items { gap: 1.25rem; }
}
