/* Reset default spacing */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.site-header {
  background-color: #fff;
  padding: 1rem 2rem;
  border-bottom: 1px solid #ddd;
}

h1 {
  text-align: center;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonials .container,
.contact .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about .container{
  display: block;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
}

.service-item {
  background: #fff;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.service-logo {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.service-item h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
}

.service-item p {
  margin: 0 0 0.5em 0;
}

.hero {
  background-color: #f0f8ff;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-content {
  margin-top: 2rem;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.site-logo img {
  max-height: 80px;    /* Ensures the image fits inside header */
  height: auto;
  width: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #0077cc;
}

.services, .testimonials {
  background: #f0f8ff;
  margin-top: 1rem;
  padding: 3rem 2rem;
}

.client {
  background-color: #2B1B17;      
  padding: 3rem 2rem;
  text-align: center;         
}

.client h1 {
  color: #fff;                
  margin-bottom: 2rem;
  font-size: 2rem;
  letter-spacing: 1px;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;                  
  flex-wrap: wrap;            
}

.client-logos img {
  height: 60px;                /* Adjust as needed */
  width: auto;
  transition: transform 0.3s;
}

.about p {
  margin-bottom: 1.5em; 
}

.contact, .about, .info {
  margin-top: 1rem;
  padding: 3rem 2rem;
}

.services ul {
  list-style-type: square;
  padding-left: 20px;
}

blockquote {
  font-style: italic;
  border-left: 4px solid #004aad;
  margin: 1rem 0;
  padding-left: 1rem;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
}
