* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: #ffffff;
  color: #1f2933;
  line-height: 1.7;
}

/* HEADER */
.navbar {
  background: #0A2A43;
  padding: 16px;
  display: flex;
  justify-content: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
}

.company-logo { height: 48px; }

.company-name {
  color: white;
  font-size: 20px;
  font-weight: 700;
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0A2A43, #08314f);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero-buttons-vertical {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.btn {
  background: #2FA84F;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  width: 240px;
  text-align: center;
  text-decoration: none;
}

.btn.outline {
  background: transparent;
  border: 2px solid #2FA84F;
  color: #2FA84F;
}

/* SECTIONS */
.section {
  padding: 90px 20px;
  text-align: center;
}

.bg-light { background: #F5F7FA; }

.section-text {
  max-width: 900px;
  margin: auto;
}

/* CEO */
.ceo-card img {
  width: 210px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* SERVICES */
.services-list {
  max-width: 950px;
  margin: auto;
}

.service-item {
  background: white;
  padding: 26px;
  margin-bottom: 22px;
  border-left: 6px solid #2FA84F;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 45px;
}

.gallery-item {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.gallery-item img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  cursor: pointer;
}

.gallery-title {
  padding: 14px;
  font-weight: 600;
  cursor: pointer;
}

.gallery-info {
  display: none;
  padding: 18px;
  background: #fafafa;
  font-size: 14px;
  line-height: 1.8;
  border-top: 1px solid #e5e7eb;
}

/* FOOTER */
.footer {
  background: #0A2A43;
  color: white;
  text-align: center;
  padding: 35px;
}

.footer img {
  height: 42px;
  margin-bottom: 12px;
}

/* UX */
html { scroll-behavior: smooth; }
