@font-face {
  font-family: 'Aquire';
  src: url('aquire-font/Aquire-BW0ox.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Aquire';
  src: url('aquire-font/AquireBold-8Ma60.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Aquire';
  src: url('aquire-font/AquireLight-YzE0o.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

:root {
  --primary: #1a5c9e;       /* deep blue – tech/immersive feel */
  --primary-dark: #0f3d6e;
  --accent: #00c4b4;         /* teal – fresh & dynamic */
  --dark: #0f172a;
  --gray: #475569;
  --light: #f8fafc;
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.6;
}

header {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: linear-gradient(rgba(15, 61, 110, 0.65), rgba(15, 61, 110, 0.75)),
              url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?auto=format&fit=crop&q=80') center/cover no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 1.5rem;
}

.logo-container {
  margin-bottom: 2.5rem;
}

.logo-container img {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
}

h1 {
  font-family: 'Aquire', sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.tagline {
  font-size: clamp(1.35rem, 4vw, 2.1rem);
  font-weight: 300;
  max-width: 780px;
  margin: 0 auto 2.5rem;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  margin: 0.6rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,196,180,0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,196,180,0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--dark);
}

main {
  padding: 6rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin-bottom: 8rem;
}

h2 {
  font-family: 'Aquire', sans-serif;
  font-size: 3.2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: var(--accent);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

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

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.50);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;   /* remove underline */
  color: inherit;          /* keep text color from inside */
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.65);
}

.card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.card-content {
  padding: 2rem;
  text-align: center;
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.stretched-link {
  position: absolute;
  inset: 0;                     /* top: 0; right: 0; bottom: 0; left: 0; – covers entire card */
  z-index: 1;                   /* above the content so clicks go to the link */
  text-decoration: none;
  cursor: pointer;
}

/* Contact Form */
.contact-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.status-msg {
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.status-msg.success {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.status-msg.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,196,180,0.1);
}

.contact-container .btn {
  width: 100%;
  margin: 1rem 0 0;
  border: none;
  cursor: pointer;
}

footer {
  background: var(--dark);
  color: white;
  text-align: center;
  padding: 4rem 1.5rem 2rem;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

@media (max-width: 768px) {
  h1 { font-size: 4.2rem; }
  .tagline { font-size: 1.5rem; }
}