/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header */
header {
  background: #0a3d62;
  color: #fff;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header h1 {
  margin: 0;
  display: inline-block;
}

nav {
  float: right;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin-left: 20px;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: #f1f2f6;
  padding: 4rem 0;
  text-align: center;
}

.hero h2 {
  margin-bottom: 1rem;
}

.cta-button {
  display: inline-block;
  background: #38ada9;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: #079992;
}

/* Services Section */
.services {
  padding: 4rem 0;
  background: #fff;
}

.service-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* About Section */
.about {
  padding: 4rem 0;
  background: #ecf0f1;
}

/* Contact Section */
/* Contact Form Styling */
.contact form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
  width: 100%;
  margin-top: 1rem;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
  font-family: inherit;
}

.contact textarea {
  min-height: 120px;
  resize: vertical;
}

.contact form button {
  padding: 0.75rem 1.5rem;
  background-color: #38ada9;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact form button:hover {
  background-color: #079992;
}

/* Optional: Smooth transition for showing/hiding form */
#contact-form {
  transition: all 0.3s ease;
}


/* Footer */
footer {
  background: #0a3d62;
  color: white;
  text-align: center;
  padding: 1rem 0;
}

.contact input[type="text"],
.contact input[type="email"],
.contact textarea {
  width: 100%;
  max-width: 500px;
  padding: 0.7rem;
  margin: 0.5rem 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
  resize: vertical;
}

.contact textarea {
  height: 120px;
}

.contact form button {
  padding: 0.6rem 1.2rem;
  background: #38ada9;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact form button:hover {
  background: #079992;
}
