/* RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f2f2f2;
  color: #333;
  line-height: 1.6;
}

/* NAVIGATION BAR */
.navbar {
  /* Gray gradient to match page edges */
  background: linear-gradient(to right, #f2f2f2, #cccccc);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  height: 100px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 170px; /* Increase if you want a bigger logo */
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #333;  /* Darker text for better contrast on lighter navbar */
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #F7931E; /* Orange accent on hover/active */
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #333 0%, #444 100%);
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
}

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

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #f0f0f0;
}

.btn-primary {
  background-color: #F7931E;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-primary:hover {
  background-color: #d97914; /* darker orange on hover */
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* ABOUT & COMMON SECTIONS */
.about-section {
  background-color: #fff;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
  border-radius: 6px;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-section p {
  max-width: 800px;
  margin: 0.5rem auto 1rem;
  color: #555;
}

/* SERVICES SECTION */
.services-section {
  padding: 3rem 1rem;
}

.services-section h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.service-card {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  padding: 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

/* FOOTER */
.footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-container p {
  margin: 0.5rem 0 0;
}
