/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

/* Navigation */
header {
  background: #007ACC;
  color: #fff;
  padding: 12px 25px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
}

nav ul li {
  margin-left: 25px;
}

nav ul li a {
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #3CB371;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
              url('hero.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}
.hero h1,
.hero p {
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.hero p {
  margin-bottom: 25px;
  font-size: 1.3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  margin: 5px;
  background: #3CB371;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
}

.btn:hover {
  background: #2e8b57;
  transform: scale(1.05);
}

/* Sections */
section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

section:nth-child(even) {
  background: #f9f9f9;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #007ACC;
  font-size: 2rem;
  font-weight: 700;
}

/* About */
.about-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.about-grid div {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
}

/* Services */
.service-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.service-grid div {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 3px 6px rgba(0,0,0,0.08);
  transition: transform 0.2s ease-in-out;
}

.service-grid div:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.service-grid h3 {
  margin-bottom: 15px;
  color: #3CB371;
}

/* Contact */
form {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: auto;
}

form input, form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  padding: 12px;
  background: #007ACC;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s;
}

form button:hover {
  background: #005f99;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #3CB371;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}


