body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: #333;
  background: #fff;
}

h1, h2 {
  font-family: 'Montserrat', sans-serif;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

nav a:hover {
  color: #FF6A00;
}

.btn {
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.2s, background 0.3s;
}

.btn.primary {
  background: #FF6A00;
  color: #fff;
}

.btn.secondary {
  border: 2px solid #FF6A00;
  color: #FF6A00;
}

.btn:hover {
  transform: scale(1.05);
  background: #e65b00;
  color: #fff;
}

/* HERO (Updated) */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 8%;
  height: 80vh;
  background: #f9f9f9;
}

.hero-content {
  flex: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero-btns {
  margin-bottom: 20px;
}

.hero-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-form input {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  min-width: 180px;
}

.hero-services {
  display: flex;
  gap: 20px;
  font-size: 1.1rem;
  font-weight: bold;
  flex-wrap: wrap;
}

.hero-services div {
  background: #0056A6;
  color: white;
  padding: 8px 15px;
  border-radius: 5px;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 90%;
  border-radius: 10px;
}

/* Services */
.services h2 {
  text-align: center;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.card {
  background: #F5F5F5;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Why Choose Us */
.why {
  text-align: center;
  padding: 50px 0;
}

.stats {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 20px;
}

.stat {
  background: #F5F5F5;
  padding: 15px 20px;
  border-radius: 8px;
  margin: 10px;
  transition: background 0.3s;
}

.stat:hover {
  background: #FF6A00;
  color: #fff;
}

/* Process */
.process {
  background: #0056A6;
  color: #fff;
  text-align: center;
  padding: 50px 20px;
}

.steps {
  display: flex;
  justify-content: space-around;
  margin: 20px 0;
  flex-wrap: wrap;
}

.step {
  margin: 10px;
  padding: 15px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  transition: transform 0.3s;
}

.step:hover {
  transform: scale(1.05);
}

/* About */
.about {
  padding: 50px 20px;
  text-align: center;
}

/* Contact */
.contact {
  padding: 50px 20px;
  text-align: center;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact input, .contact textarea {
  margin: 10px 0;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact button:hover {
  background: #e65b00;
}

/* Footer */
footer {
  background: #0056A6;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Mobile Responsive Fix */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    height: auto;
    text-align: center;
    padding: 30px 5%;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .hero-image {
    text-align: center;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  .hero-form {
    justify-content: center;
  }

  .hero-services {
    justify-content: center;
  }
}
