* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(12, 19, 29);
  color: rgb(49, 192, 223);
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 25px 0 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Top section (logo + nav inside hero) */
.hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  width: 100%;
}

/* Bigger Logo */
.logo img {
  height: 180px;
}

/* Nav */
.nav-links {
  display: flex;
  gap: 50px;
  list-style: none;
  position: fixed;
  top: 15px;
  right: 0;
  z-index: 100;
  background-color: transparent;
  padding: 15px 50px;
}

.nav-links a {
  text-decoration: none;
  font-weight: 400;
  font-size: 1.3rem;
  transition: 0.3s ease;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* Hero Content Centering */
.hero-content {
  margin: auto;
}

/* Headings */
h2 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 30px;
}

h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  margin: 20px;
  line-height: 1.1;
}

/* Larger Paragraph */
.hero p {
  font-size: 1.3rem;
  margin-top: 20px;
  opacity: 0.9;
}

/* HERO SERVICE CARDS */
.hero-services {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 60px;
}

/* Bigger Cards */
.hero-card {
  background: #0c2233;
  border-radius: 12px;
  overflow: hidden;
  max-width: 360px;
  transition: 0.3s ease;
  text-align: left;
  color: rgb(49, 192, 223);
}

/* Bigger Images */
.hero-card img {
  width: 100%;
  height: 160px; /* bigger image */
  object-fit: cover;
}

/* Bigger Service Headings */
.hero-card h3 {
  padding: 25px 25px 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: #3ed6e0;
}

.hero-card p {
  padding: 0 25px 25px;
  font-size: 1.05rem;
  opacity: 0.9;
}

.hero-card:hover {
  transform: translateY(-10px);
}

/* Section Backgrounds */
.section-dark {
  background-color: rgb(12, 19, 29);
  color: rgb(49, 192, 223);
}

.section-light {
  background-color: rgb(49, 192, 223);
  color: rgb(12, 19, 29);
}

/* Buttons */
.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-primarylight {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  height: 60px; /* SAME FIXED HEIGHT */
  padding: 0 30px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background: #3ed6e0;
  border: 2px solid #3ed6e0;
  color: #061826;
}

.btn-primarylight {
  background: #0a2a2f;
  border: 2px solid #061826;
  color: #3ed6e0;
}

.btn-primarylight:hover {
  background: transparent;
  border: 2px solid #061826;
  color: #0a2a2f;
}

.btn-primary:hover {
  border: 2px solid #3ed6e0;
  background: #3ed5e05d;
  color: #3ed6e0;
}

.btn-secondary {
  border: 2px solid #3ed6e0;
  color: #3ed6e0;
}

.btn-secondary:hover {
  background: #3ed6e0;
  color: #061826;
}

/* About points */
.about-points {
  margin: 40px 0;
  display: grid;
  gap: 15px;
  font-size: 1.2rem;
}

/* Why Grid */
.why-grid {
  margin-top: 40px;
  display: grid;
  gap: 20px;
  font-size: 1.3rem;
}

.about-why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.about-column,
.why-column {
  text-align: left;
}

.about-column h2,
.why-column h2 {
  margin-bottom: 30px;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.2rem;
}

.about-why-section {
  background: linear-gradient(90deg, rgb(18, 28, 40) 50%, rgb(23, 87, 102) 50%);
  color: #ffffff;
}

@media (max-width: 900px) {
  .about-why-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .about-column,
  .why-column {
    text-align: center;
  }
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 2px solid rgb(49, 192, 223);
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  background-color: white;
  color: rgb(12, 19, 29);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form textarea {
  resize: vertical;
}
