/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
}

h1, h2, h3 {
  font-weight: 600;
  color: #222;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #212529;
  padding: 1rem 2rem;
  color: #fff;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ffc107;
}

/* Hero Section */
.hero {
  background: url('hero-image.jpg') no-repeat center center/cover;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
  background-color: #333; /* fallback */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #ffc107;
  color: #000;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #e0a800;
}

/* Services Preview */
.services-preview {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #fff;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.service-box {
  background: #f1f1f1;
  padding: 2rem;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonial-preview {
  background-color: #e9ecef;
  padding: 3rem 2rem;
  text-align: center;
}

.testimonial-preview blockquote {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-preview cite {
  display: block;
  font-weight: bold;
  margin-top: 0.5rem;
}

/* Instagram Section */
.instagram {
  padding: 3rem 2rem;
  text-align: center;
  background-color: #fff;
}

/* Reviews Page */
.reviews {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
}

.reviews ul {
  list-style: none;
  padding: 0;
}

.reviews li {
  background: #f4f4f4;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Footer */
footer {
  background-color: #212529;
  color: #fff;
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
}

footer p {
  margin-bottom: 0.5rem;
}
/* --- General Body & Typography --- */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #212529;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Georgia', serif;
  color: #212529;
  margin-bottom: 0.8rem;
}

h1 {
  font-weight: 700;
  font-size: 2.8rem;
  text-align: center;
  margin-top: 2.5rem;
}

h2 {
  font-weight: 700;
  font-size: 2rem;
  margin-top: 2rem;
}

h3 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

p {
  color: #444;
  font-weight: 500;
  font-size: 1.05rem;
  max-width: 800px;
  margin: 0 auto 1rem auto;
}

/* --- Navbar --- */
.navbar {
  background-color: #212529;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  font-weight: 600;
  letter-spacing: 1.1px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo {
  font-size: 1.7rem;
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #ffc107;
}

/* --- Main Content Area --- */
main {
  max-width: 900px;
  margin: 3rem auto 5rem auto;
  padding: 0 1rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* --- Lists --- */
.service-list {
  list-style: disc inside;
  padding-left: 1.2rem;
  font-weight: 600;
  color: #333;
}

.service-list li {
  margin-bottom: 0.6rem;
}

/* --- Sections --- */
.turnkey-section {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 20px rgba(0,0,0,0.1);
  margin-top: 2rem;
}

.scope-work ul,
.specifications ul,
.timeline-terms ul,
.exclusions ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  color: #444;
  margin-top: 0.5rem;
}

.scope-work ul li,
.specifications ul li,
.timeline-terms ul li,
.exclusions ul li {
  margin-bottom: 0.5rem;
}

/* --- Tables --- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: #444;
}

table, th, td {
  border: 1px solid #ccc;
}

th, td {
  padding: 0.6rem 1rem;
  text-align: left;
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 1.5rem 1rem;
  font-size: 0.95rem;
  background-color: #212529;
  color: white;
  font-weight: 600;
  letter-spacing: 0.6px;
  margin-top: 4rem;
}

/* --- Social Links --- */
.social-links {
  margin-top: 2rem;
  text-align: center;
}

.social-links a {
  color: #212529;
  font-weight: 600;
  margin: 0 1rem;
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffc107;
}

/* --- Responsive tweaks --- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 1rem 1.5rem;
  }

  .nav-links {
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.8rem;
  }

  main {
    margin: 2rem 1rem 3rem 1rem;
  }
}
.nav-links a.active-link {
  color: #ffc107;
  border-bottom: 2px solid #ffc107;
  padding-bottom: 4px;
}
/* BLOG SECTION STYLES */
.blog-section {
  background-color: #f9f9f9;
  padding: 60px 20px;
}

.blog-section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 40px;
  color: #222;
  font-weight: bold;
}

.blog-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
}

.blog-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #333;
}

.blog-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

.blog-readmore {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  color: #0077cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-readmore:hover {
  color: #0055aa;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .blog-section h2 {
    font-size: 28px;
  }

  .blog-content h3 {
    font-size: 20px;
  }
}
.hero-image,
.banner-img,
.service-img,
.project-thumb,
.blog-thumb,
.client-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
