:root {
  --primary: #0b5ed7;
  --primary-dark: #083f9d;
  --navy: #071d49;
  --text: #24324b;
  --muted: #667085;
  --soft-blue: #eef6ff;
  --border: #d8e6f7;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 45, 90, 0.10);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-wrapper {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  margin-right: auto;
}

.brand-logo {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: white;
  font-weight: 900;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-weight: 600;
  font-size: 15px;
}

.main-nav a {
  color: var(--text);
  padding: 26px 0;
  border-bottom: 3px solid transparent;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.nav-toggle {
  display: none;
  border: 0;
  background: var(--soft-blue);
  color: var(--primary);
  font-size: 24px;
  padding: 8px 12px;
  border-radius: 10px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 10px 20px rgba(11, 94, 215, 0.18);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-outline {
  color: var(--primary);
  border-color: var(--primary);
  background: white;
}

.link-arrow {
  color: var(--primary);
  font-weight: 800;
  white-space: nowrap;
}



/* Hero */
.hero {
  background:
    radial-gradient(circle at 45% 35%, rgba(11, 94, 215, 0.08), transparent 28%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  padding: 70px 0 42px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
}

.hero-desc,
.section-desc {
  color: var(--muted);
  max-width: 660px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
}

.hero-image {
  min-height: 380px;
}

.image-placeholder {
  width: 420px;
  height: 420px;
  border-radius: 30px 0 30px 30px;
  place-items: center;
  color: white;
  font-size: 20px;
  font-weight: 800;
  text-align: center;
}

/* Sections */
.section {
  padding: 70px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
}

.section h2 {
  font-size: clamp(28px, 3vw, 42px);
}

/* Activities */
.activities-section {
  background: #ffffff;
}

.activities-layout {
  display: grid;
  grid-template-columns: 1.1fr 1.9fr;
  gap: 22px;
}

.featured-activity,
.activity-card,
.profile-strip,
.portfolio-card,
.contact-form {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.featured-activity {
  min-height: 100%;
}

.activity-image,
.featured-image,
.portfolio-img {
  min-height: 170px;
  background: linear-gradient(135deg, #d8ecff, #0b5ed7);
  position: relative;
  
}

.featured-image {
  min-height: 280px;
}

.activity-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: white;
  color: var(--primary);
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

.activity-badge span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  margin-top: 3px;
}

.featured-label {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--primary);
  color: white;
  padding: 8px 12px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 900;
}

.activity-body {
  padding: 22px;
}

.activity-body h3 {
  margin: 0 0 10px;
  color: var(--navy);
  line-height: 1.25;
}

.activity-body p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.activity-card .activity-image {
  min-height: 132px;
}

.activity-card .activity-body {
  padding: 16px;
}

.activity-card h3 {
  font-size: 16px;
}

.activity-card p {
  font-size: 13px;
}

/* Gradient image alternatives */
.img-meeting { background: linear-gradient(135deg, #dfefff, #9bc2e8 45%, #0c4fae); }
.img-training { background: linear-gradient(135deg, #e9f4ff, #bfd7f2 45%, #1d6bd8); }
.img-field { background: linear-gradient(135deg, #e6f6ea, #89c39b 45%, #186a43); }
.img-seminar { background: linear-gradient(135deg, #eef3ff, #aebbe4 45%, #233f8d); }
.img-csr { background: linear-gradient(135deg, #effbea, #83bf72 45%, #2f7d32); }
.img-partner { background: linear-gradient(135deg, #f7f9ff, #b9c8e8 45%, #0b5ed7); }
.img-workshop { background: linear-gradient(135deg, #f3f7ff, #cad8f1 45%, #455a92); }

/* Profile */
.profile-section {
  background: var(--soft-blue);
}

.profile-strip {
  padding: 28px;
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: 28px;
  align-items: center;
}

.profile-card {
  box-shadow: none;
  border: none;
}

.profile-card h2 {
  font-size: 30px;
}

.profile-card p {
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-item {
  padding: 22px;
  border-radius: 16px;
  background: #f7fbff;
  border: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  color: var(--primary);
  font-size: 32px;
  line-height: 1;
}

.stat-item span {
  display: block;
  color: var(--navy);
  margin-top: 8px;
  font-weight: 800;
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.portfolio-card {
  padding-bottom: 18px;
}

.portfolio-card h3 {
  margin: 16px 16px 2px;
  color: var(--navy);
  font-size: 17px;
}

.portfolio-card p {
  margin: 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.building { background: linear-gradient(135deg, #dff1ff, #0b5ed7); }
.road { background: linear-gradient(135deg, #e6f7ff, #9aaec7, #3c5068); }
.industry { background: linear-gradient(135deg, #edf2f7, #8495a7, #1b3147); }
.solar { background: linear-gradient(135deg, #e8f6ff, #74aeda, #0b5ed7); }

/* Contact */
.contact-section {
  background: linear-gradient(180deg, var(--soft-blue), white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.contact-list {
  margin-top: 26px;
  padding: 22px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-list p {
  margin: 8px 0;
}

.contact-form {
  padding: 26px;
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

/* Footer */
.site-footer {
  background: #061b44;
  color: white;
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand {
  font-weight: 900;
  font-size: 22px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.78);
}

.site-footer a {
  display: block;
  margin: 8px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  padding: 18px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 16px;
    flex-direction: column;
    padding: 18px;
    display: none;
  }

  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    padding: 8px 0;
    border-bottom: 0;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid,
  .activities-layout,
  .profile-strip,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .activity-grid,
  .portfolio-grid,
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .hero {
    padding-top: 44px;
  }

  .hero-actions,
  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .activity-grid,
  .portfolio-grid,
  .stats,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-image,
  .image-placeholder {
    min-height: 280px;
    height: 280px;
  }

CSS
.personil-blue {
  background: linear-gradient(135deg, #dff1ff, #0b5ed7);
}

.personil-gray {
  background: linear-gradient(135deg, #e8f1f8, #5f7488);
}

.personil-dark {
  background: linear-gradient(135deg, #e8f1f8, #22384d);
}

.personil-sky {
  background: linear-gradient(135deg, #dff6ff, #0b5ed7);
}


}

/* =================================================
   GOOGLE EARTH ENGINE DASHBOARD
================================================= */

.gee-project-header {
  padding: 130px 20px 45px;
  background: #f4f7f8;
  text-align: center;
}

.gee-project-header .container {
  max-width: 950px;
  margin: 0 auto;
}

.project-category {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #55757c;
}

.gee-project-header h1 {
  margin: 0 0 20px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.2;
  color: #15333a;
}

.project-intro {
  max-width: 850px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #52656a;
}


/* Dashboard section */

.gee-dashboard-section {
  padding: 45px 20px 70px;
  background: #ffffff;
}

.gee-dashboard-section .container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}


/* Iframe container */

.gee-dashboard-wrapper {
  position: relative;
  width: 100%;
  height: 78vh;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid #d8e0e2;
  border-radius: 14px;
  background: #e9eef0;
  box-shadow: 0 12px 35px rgba(22, 51, 58, 0.12);
}

.gee-dashboard-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}


/* Description underneath */

.gee-dashboard-note {
  max-width: 900px;
  margin: 28px auto 0;
  text-align: center;
}

.gee-dashboard-note p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #647579;
}

.btn-open-dashboard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 8px;
  background: #173d45;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.btn-open-dashboard:hover {
  transform: translateY(-2px);
  background: #245a65;
}


/* Tablet */

