body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #f9f9f9;
  color: #1e1e1e;
  line-height: 1.6;
}

.navbar {
  background-color: #000;
  color: white;
  padding: 12px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-logo {
  height: 40px;
  max-width: 140px;
}


.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #ff4d4d;
}


.hero {
  background: url('hero_img.jpg') no-repeat center center/cover;
  position: relative;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: linear-gradient(to right, rgba(179, 0, 0, 0.8), rgba(77, 0, 0, 0.8));
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: white;
}

.hero-logo {
  height: 200px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #b30000;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.section {
  padding: 60px 20px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.services, .portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 36px;
  margin-bottom: 15px;
  color: #b30000;
}

.about-why {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  text-align: left;
  padding: 60px 20px;
}

.about-why .about,
.about-why .why {
  flex: 1 1 400px;
  max-width: 500px;
}

.about-why h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.about-why ul {
  list-style: none;
  padding: 0;
}

.about-why li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.about {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 10px;
}

.why {
  background-color: #f0f0f0;
  padding: 40px;
  border-radius: 10px;
}
.about-why {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about, .why {
  flex: 1 1 45%;
}


form {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}


label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

button {
  background-color: #b30000;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  text-align: center;
  font-size: 14px;
  padding: 20px;
  background: #eee;
  color: #777;
}

.contact-info {
  margin-top: 30px;
  font-size: 16px;
  color: #1e1e1e;
}
