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

body {
  font-family: "Inter", sans-serif;
  color: #10223a;
  background: #f5f7fb;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

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

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  background: #0f2a4a;
  color: #c6d0e2;
  font-size: 12px;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.divider {
  opacity: 0.5;
}

.navbar {
  background: #ffffff;
  border-bottom: 1px solid #e7edf6;
  position: sticky;
  top: 0;
  z-index: 200;
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(15, 42, 74, 0.12);
  border-color: transparent;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand img {
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: #6b7c93;
  font-weight: 500;
  font-size: 14px;
  margin-left: auto;
}

.nav-links a:hover, .nav-links a.active {
    color: #0f2a4a;
}

.cta {
  background: #e6f066;
  color: #23334d;
  padding: 10px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
}

.hero {
  position: relative;
  background: url("hero-home.jpg") center/cover no-repeat;
  min-height: 620px;
  padding: 70px 0 160px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 26, 52, 0.75) 0%, rgba(9, 26, 52, 0.65) 45%, rgba(9, 26, 52, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.hero-text {
  max-width: 560px;
  color: #e8eef8;
}

.pill {
  display: inline-block;
  background: rgba(237, 244, 120, 0.2);
  color: #e7f07b;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 800;
}

.hero-text h1 span {
  color: #e7f07b;
}

.hero-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #d0d8e6;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
}

.btn.primary {
  background: #e6f066;
  color: #23334d;
}

.btn.ghost {
  border: 1px solid #9fb0c7;
  color: #e8eef8;
  background: rgba(15, 42, 74, 0.2);
}

.stats {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 2;
  width: min(1000px, 92%);
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  padding: 30px 40px;
}

.stat {
  flex: 1;
  text-align: center;
  border-right: 1px solid #e0e6ed;
  padding: 0 10px;
}

.stat:last-child {
  border-right: none;
}

.stat-value {
  font-weight: 800;
  color: #0f2a4a;
  font-size: 32px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: #6b7c93;
  font-weight: 500;
}

.features {
  padding: 140px 0 80px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 32px;
  color: #0f2a4a;
  margin-bottom: 16px;
  font-weight: 700;
}

.section-header p {
  color: #6b7c93;
  line-height: 1.6;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(15, 42, 74, 0.06);
}

.icon-box {
  width: 48px;
  height: 48px;
  background: #f0f4f8;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f2a4a;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #0f2a4a;
}

.feature-card p {
  font-size: 14px;
  color: #6b7c93;
  line-height: 1.6;
}

.solutions {
  padding: 80px 0;
}

.solutions-content {
  display: flex;
  gap: 60px;
  align-items: stretch;
}

.solutions-image {
  flex: 1.2;
  position: relative;
  display: flex;
}

.solutions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.floating-card {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.check-circle {
  width: 32px;
  height: 32px;
  background: #e6f066;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f2a4a;
}

.card-text strong {
  display: block;
  font-size: 14px;
  color: #0f2a4a;
}

.card-text span {
  font-size: 12px;
  color: #6b7c93;
}

/* Page Header */
.page-header {
  background-color: #0f2a4a;
  color: #ffffff;
  padding: 80px 0;
  text-align: left;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: #c6d0e2;
  max-width: 600px;
  line-height: 1.6;
}

/* About Content */
.about-content {
  padding: 80px 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-text h2 {
  font-size: 32px;
  color: #0f2a4a;
  margin-bottom: 24px;
  font-weight: 700;
}

.about-text p {
  color: #6b7c93;
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  border-left: 4px solid #e6f066;
  padding-left: 16px;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #0f2a4a;
  line-height: 1.2;
}

.stat-desc {
  display: block;
  font-size: 14px;
  color: #6b7c93;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .page-header h1 {
    font-size: 36px;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding: 60px 0 80px;
  }

  .hero-content {
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 32px;
  }

  .stats {
    position: static;
    transform: none;
    margin: 30px auto 0;
    flex-wrap: wrap;
    gap: 16px;
    padding: 20px;
  }

  .stat {
    flex: 1 1 45%;
    border-right: none;
  }

  .solutions-content {
    flex-direction: column;
  }

  .floating-card {
    position: static;
    margin-top: 16px;
  }

  .services-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .stats {
    width: 100%;
  }

  .stat {
    flex: 1 1 100%;
  }

  .page-header {
    padding: 60px 0;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Solutions Info (Right Side) */
.solutions-info {
  flex: 1;
}

.solutions-info h2 {
  font-size: 32px;
  color: #0f2a4a;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.solutions-info .description {
  color: #6b7c93;
  line-height: 1.6;
  margin-bottom: 32px;
}

.solutions-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.solution-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.solution-icon {
  width: 40px;
  height: 40px;
  background: #f0f4f8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f2a4a;
  flex-shrink: 0;
}

.solution-details h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f2a4a;
  margin-bottom: 8px;
}

.solution-details p {
  font-size: 14px;
  color: #6b7c93;
  line-height: 1.5;
}

.btn.primary.dark {
  background: #0f2a4a;
  color: #ffffff;
  display: inline-block;
  margin-top: 8px;
}

/* Values Section */
.values-section {
  padding: 80px 0;
  background-color: #f5f7fb;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}

.value-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #eef2f6;
  height: 100%;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(15, 42, 74, 0.06);
}

.icon-box-circle {
  width: 64px;
  height: 64px;
  background: #eef2f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f2a4a;
  margin: 0 auto 24px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #0f2a4a;
  font-weight: 700;
}

.value-card p {
  font-size: 14px;
  color: #6b7c93;
  line-height: 1.6;
}

/* Services Page */
.services-header {
  text-align: center;
}

.services-header h1 {
  margin-bottom: 16px;
}

.services-header p {
  margin: 0 auto;
}

.services-content {
  padding: 80px 0;
  background-color: #f5f7fb;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
}

.service-detail-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-body {
  padding: 40px;
}

.service-detail-card h3 {
  font-size: 24px;
  color: #0f2a4a;
  margin-bottom: 16px;
  font-weight: 700;
}

.service-desc {
  color: #6b7c93;
  margin-bottom: 32px;
  font-size: 15px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #6b7c93;
  font-size: 14px;
}

.check-icon {
  width: 20px;
  height: 20px;
  background: rgba(237, 244, 120, 0.3);
  color: #0f2a4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.btn-block {
  display: block;
  background: #0f2a4a;
  color: #ffffff;
  text-align: center;
  padding: 18px;
  font-weight: 600;
  font-size: 14px;
  margin: 0 40px 40px;
  border-radius: 8px;
  transition: background 0.2s;
}

.btn-block:hover {
  background: #1a3b63;
}

@media (max-width: 768px) {
  .services-cards-grid {
    grid-template-columns: 1fr;
  }
  
  .btn-block {
    margin: 0 20px 30px;
  }
  
  .card-body {
    padding: 30px 20px;
  }
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px; /* Adjust based on circle size */
  left: 0;
  right: 0;
  height: 2px;
  background: #eef2f6;
  z-index: 0;
  display: none; /* Hidden on mobile by default */
}

@media (min-width: 900px) {
  .process-steps::before {
    display: block;
    left: 10%;
    right: 10%;
  }
}

.step-card {
  flex: 1;
  text-align: center;
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  border: 1px solid #eef2f6;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  background: #e6f066;
  color: #0f2a4a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 20px;
}

.step-card h3 {
  font-size: 18px;
  color: #0f2a4a;
  margin-bottom: 12px;
  font-weight: 700;
}

.step-card p {
  font-size: 14px;
  color: #6b7c93;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
  }
  
  .process-steps::before {
    display: none;
  }
}

/* Contact Page */
.contact-header {
  text-align: center;
}

.contact-header h1 {
  margin-bottom: 16px;
}

.contact-header p {
  margin: 0 auto;
}

.contact-section {
  padding: 80px 0;
  background-color: #f5f7fb;
}

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

.contact-info-card, .contact-form-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.contact-info-card h3, .contact-form-card h3 {
  font-size: 20px;
  color: #0f2a4a;
  margin-bottom: 24px;
  font-weight: 700;
}

.contact-form-card p {
  color: #6b7c93;
  font-size: 14px;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: #f0f4f8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0f2a4a;
  flex-shrink: 0;
}

.info-content strong {
  display: block;
  font-size: 14px;
  color: #0f2a4a;
  margin-bottom: 4px;
}

.info-content p {
  font-size: 14px;
  color: #6b7c93;
  line-height: 1.5;
}

/* Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #0f2a4a;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e0e6ed;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #10223a;
  background: #fcfcfd;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0f2a4a;
  background: #ffffff;
}

.form-group textarea {
  resize: vertical;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* Map Section */
.map-section {
  width: 100%;
  height: 450px;
  background-color: #eef2f6;
  filter: grayscale(100%);
}

.map-section iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* Footer CTA Section */
.footer-cta {
  background: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 32px;
  color: #0f2a4a;
  margin-bottom: 16px;
  font-weight: 700;
}

.cta-content p {
  color: #6b7c93;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn.outline-light {
  border: 1px solid #0f2a4a;
  color: #0f2a4a;
  background: transparent;
}

/* Footer */
.footer {
  background: #0f2a4a;
  color: #c6d0e2;
  padding: 80px 0 0;
  font-size: 14px;
}

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

.footer-brand img {
  height: 32px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-column p {
  line-height: 1.6;
  opacity: 0.8;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
}

.footer-column a {
  display: block;
  color: #c6d0e2;
  margin-bottom: 12px;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #e6f066;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: center;
}

.contact-icon {
  font-size: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #c6d0e2;
  font-size: 13px;
  opacity: 0.6;
}

.footer-links a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-bottom-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #0f2a4a;
  margin: 5px 0;
  transition: 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .topbar-content {
    flex-direction: column;
    gap: 6px;
  }

  .nav-content {
    padding: 12px 0;
  }

  .brand img {
    height: 28px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 96px 24px 32px;
    transition: transform 0.3s ease-in-out;
    transform: translateX(100%);
    overflow-y: auto;
    z-index: 1000;
    margin-left: 0;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .nav-links a {
    font-size: 18px;
    margin: 10px 0;
  }

  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: block;
    margin-top: 20px;
    background: #e6f066;
    color: #23334d;
    padding: 10px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
  }
}
