
body{font-family:Poppins, sans-serif;background:#0a192f;color:#e6f1ff;margin:0}
.container{width:90%;max-width:1000px;margin:auto;padding:20px}
h1,h2,h3{color:#00d4ff}
a{color:#00ff9d;text-decoration:none}
.btn{display:inline-block;padding:10px 16px;border-radius:6px;background:#00d4ff;color:#0a192f;font-weight:600;margin-top:10px}
.btn-primary{background:linear-gradient(135deg,#00d4ff,#00ff9d)}
.nav{background:#0f2746;padding:10px 0}
.nav-inner{display:flex;justify-content:space-between;align-items:center}
.brand{display:flex;align-items:center;gap:10px;color:#e6f1ff;font-weight:600}
.brand-logo{width:200px;height:200px}
.menu a{margin:0 10px;color:#e6f1ff}
.hero{padding:60px 0;text-align:center}
.badge{margin-top:20px;padding:10px;background:rgba(0,212,255,.1);border:1px solid #00d4ff;border-radius:8px}
.footer{padding:20px;margin-top:40px;background:#0f2746;color:#a3b1c6;font-size:14px}
.footer-inner{display:flex;justify-content:space-between;align-items:center}
.footer-logo{width:30px;height:30px}
.form {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* space between fields */
  max-width: 500px;
}

.form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: #e6f1ff;
}

.form input {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #00d4ff;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background: #0a192f;
  color: #e6f1ff;
  height: 40px;   /* normal input height */
}

.form textarea {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid #00d4ff;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  background: #0a192f;
  color: #e6f1ff;
  min-height: 150px;   /*  taller for message */
  resize: vertical;    /* allow resizing */
}



.form button {
  margin-top: 1rem;
  padding: 0.75rem;
}

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

.service-card {
  background: #0a192f;
  padding: 1.5rem;
  border: 1px solid #00d4ff;
  border-radius: 10px;
  text-decoration: none;
  color: #e6f1ff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,212,255,0.2);
}

.service-detail {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.service-images img {
  max-width: 300px;
  border-radius: 10px;
  margin-bottom: 1rem;
}
.service-description {
  flex: 1;
}

.page-header {
  text-align: center;
  margin-bottom: 2rem;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #00d4ff;
  border-bottom: 2px solid #00ff9d;
  display: inline-block;
  padding-bottom: .5rem;
}


/* Process */
.process { margin-block: 2rem; }
.process h2 { margin-bottom: 1rem; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.step {
  background: #0a192f;
  border: 1px solid #00d4ff;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,212,255,.08);
}
.step span {
  display: inline-grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #00ff9d;
  color: #0a192f;
  font-weight: 700;
  margin-bottom: .5rem;
}
.step h3 { margin: .25rem 0 .5rem; }

/* Image grid */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.image-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #00d4ff;
}

/* Intro + CTA */
.intro { max-width: 800px; opacity: .9; }
.cta {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: rgba(0,212,255,.06);
  border: 1px solid #00d4ff;
  border-radius: 12px;
  text-align: center;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.mission-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.mission-points li { margin-bottom: .5rem; }

.values {
  margin-top: 3rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.value {
  background: #0a192f;
  padding: 1rem;
  border: 1px solid #00d4ff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,212,255,.08);
  text-align: center;
}
.value h3 { color: #00d4ff; margin-bottom: .5rem; }


