/* ROOT COLORS */
:root {
  --primary: hsl(142, 71%, 45%);
  --secondary: hsl(45, 93%, 54%);
  --muted: hsl(220, 9%, 46%);
  --light-bg: hsl(140, 25%, 96%);
  --gradient: linear-gradient(135deg, hsl(142, 71%, 45%), hsl(45, 93%, 54%));
  --card-bg: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --radius: 20px;
  --transition: 0.35s ease;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* ----------------------- */
/* HEADER */
/* ----------------------- */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 1000;
}

.header-container {
  max-width: 1300px;
  margin: auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 55px;
}

.nav-buttons a {
  margin-left: 20px;
  text-decoration: none;
  font-size: 16px;
  color: #606060;
  font-weight: 500;
  transition: var(--transition);
}

.nav-buttons a:hover,
.nav-buttons .active {
  color: var(--primary);
  font-weight: 600;
}

/* ----------------------- */
/* PAGE CONTENT */
/* ----------------------- */
.page-content {
  margin-top: 90px;
  padding: 40px 0;
}

.page-title {
  text-align: center;
  margin-bottom: 50px;
}

.page-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.page-title p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
}

/* ----------------------- */
/* TESTIMONIALS GRID */
/* ----------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.stars {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.client-details h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.client-details p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ----------------------- */
/* CLIENTS SERVED SECTION */
/* ----------------------- */
.clients-section {
  background: var(--light-bg);
  padding: 60px 0;
  text-align: center;
  border-radius: var(--radius);
  margin-top: 40px;
}

.clients-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.client-image {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.client-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----------------------- */
/* RESPONSIVE DESIGN */
/* ----------------------- */
@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .nav-buttons {
    display: none;
  }
  
  .page-title h1 {
    font-size: 2rem;
  }
  
  .page-content {
    margin-top: 70px;
  }
}
/* Footer Section */
.footer {
  background: hsl(220, 14%, 95%);
  padding: 40px 20px 30px; /* reduced top/bottom padding */
  color: hsl(220, 14%, 28%);
  font-size: 16px;
}

.footer-container {
  max-width: 900px; /* reduced container width */
  margin: auto;
}

.footer h3 {
  font-size: 22px; /* smaller heading */
  font-weight: 700;
  margin-bottom: 25px; /* reduced space below heading */
}

/* Logo + Title Layout */
.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 12px; /* smaller gap */
  margin-bottom: 30px; /* reduced space below */
}

.footer-logo {
  width: 40px; /* smaller logo */
  height: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px; /* slightly smaller gap between columns */
  margin-bottom: 30px; /* reduced bottom margin */
}

.footer-column h4 {
  font-size: 18px; /* slightly smaller */
  font-weight: 600;
  margin-bottom: 12px;
}

/* Links styling */
.footer-column a {
  display: block;
  text-decoration: none;
  color: hsl(220, 14%, 28%);
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary);
}

/* Plain text styling */
.footer-column p {
  display: block;
  font-size: 16px; /* match link size */
  color: hsl(220, 14%, 28%);
  margin-bottom: 10px;
}

/* Footer copyright */
.footer-copy {
  text-align: center;
  font-size: 14px;
  opacity: 0.7;
}

/* Social icons in one line */
.social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 15px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  display: block;
}
