/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9fb;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #002b5c;
  color: white;
  padding: 1rem 2rem;
}

.logo {
  height: 50px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

.nav-links a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #0052cc, #0078d4);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

/* Headings */
h2 {
  font-size: 2em;
  margin-bottom: 20px;
  color: #222;
}

/* Paragraphs */
p {
  line-height: 1.6;
  color: #555;
}

/* Sections */
section {
  padding: 3rem 2rem;
  max-width: 1000px;
  margin: auto;
}

/* Section spacing and layout */
section {
  padding: 80px 20px;
  margin-bottom: 40px;
  background-color: #f9f9f9; /* Optional: light background for separation */
}

section:nth-child(even) {
  background-color: #ffffff;
}

section:nth-child(odd) {
  background-color: #f2f2f2;
}

/* Container for centered content */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #002b5c;
}

.service,
.why-choose ul,
.goal,
.contact {
  margin-bottom: 2rem;
}

.service ul,
.why-choose ul {
  list-style: disc;
  margin-left: 1.5rem;
}

/* Contact Form */
.contact form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Contact form styling */
form input,
form textarea,
form button {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

form button {
  background-color: #0056b3;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background-color: #004494;
}

.contact input,
.contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

.contact button {
  padding: 0.75rem;
  background-color: #002b5c;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

.contact button:hover {
  background-color: #004085;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #002b5c;
  color: white;
}
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.modal-content h2 {
  margin-top: 0;
}

.modal-content .close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
}
