/* Base */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #0d1117;
  color: #ffffff;
  line-height: 1.75;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navigation */
.navbar {
  padding: 20px 0;
  background-color: #0d1117;
  border-bottom: 1px solid #1a1f25;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 48px;
}

.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
}

/* Hero */
.hero {
  padding: 80px 0 80px;
}

.hero-box {
  background-color: #161b22;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
}

.hero-text {
  max-width: 640px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo img.hero-image {
  height: 280px;
  max-width: 100%;
  object-fit: contain;
}

/* Two-Column Sections */
.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.text {
  flex: 1 1 60%;
  min-width: 280px;
}

.image {
  flex: 1 1 35%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-top: 20px;
}

.image img {
  max-width: 100%;
  max-height: 320px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

img.tall-image {
  max-height: 420px;
  margin-top: 10px;
}

/* Bullets */
.bullets {
  padding-left: 20px;
  margin: 10px 0 20px;
}

.bullets li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Cards */
.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #161b22;
  padding: 30px;
  border-radius: 12px;
  flex: 1 1 300px;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card:hover {
  transform: scale(1.03);
}

.card h3 {
  margin-top: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: bold;
  background-color: #38bdf8;
  color: #000;
  text-align: center;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}

.btn:hover {
  background-color: #0ea5e9;
  color: #fff;
}

.align-btn {
  margin-top: 0.25rem;
}

/* Contact Section */
.wide-contact .container {
  max-width: 900px;
  padding: 40px;
  background-color: #161b22;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  margin-top: 6px;
  background-color: #1a1f25;
  color: #fff;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border: 1px solid #38bdf8;
  background-color: #11151a;
}

/* Footer */
.footer {
  background-color: #0d1117;
  text-align: center;
  padding: 40px 0;
  font-size: 0.9rem;
  color: #888;
  border-top: 1px solid #1a1f25;
}

.footer-content img {
  height: 32px;
  margin-bottom: 10px;
}
/* ============================== */
/* MOBILE ENHANCEMENTS */
/* ============================== */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-logo img.hero-image {
    height: 220px;
  }

  .nav-menu ul {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  .container {
    width: 95%;
    padding: 0 10px;
  }

  .contact-form {
    gap: 16px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
  }
}
