/* ---------- Global Styles ---------- */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: #fff;
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}

/* ---------- Header ---------- */
header {
  text-align: center;
  padding: 40px 20px 15px;
}

.logo {
  width: 120px;
  display: block;
  margin: 0 auto 10px;
}

h1 {
  font-size: 32px;
  color: #333;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

h2 {
  font-size: 16px;
  color: #777;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: 1px;
}

/* ---------- Contact Info ---------- */
.info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
  padding: 20px;
  font-size: 15px;
  text-align: center;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background: #fafafa;
}

.info p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.info i {
  color: #555;
  font-size: 16px;
}


/* ---------- Clients Section ---------- */
.clients-section {
  padding: 40px 10%;
  text-align: center;
}

.clients-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: #444;
  margin-bottom: 20px;
  text-decoration: underline;
}

.clients-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 80px;
  text-align: left;
}

.clients-part {
  width: 300px;
}

.clients-part p {
  margin: 4px 0;
  font-size: 15px;
  color: #555;
}

/* ---------- Projects Section ---------- */
.projects-heading {
  text-align: center;
  padding: 60px 20px;        
  background: #f4f4f4;        
  border-top: 1px solid #ddd; 
  border-bottom: 1px solid #ddd;
}

.projects-heading h3 {
  font-size: 22px;            
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;                 
  line-height: 1.4;           
}

.project-section {
  padding: 50px 10%;
  text-align: center;
  background: #f9f9f9;
  border-top: 1px solid #eee;
}

.project-info {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 30px;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #e9ecef;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.project-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.project-gallery img {
  width: 230px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: transform 0.25s ease-in-out;
}

.project-gallery img:hover {
  transform: scale(1.05);
}

/* ---------- Responsive Design ---------- */
@media (max-width: 1024px) {
  .about-section {
    gap: 30px;
  }

  .about-box {
    flex: 1 1 45%;
  }

  .turnover img {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    align-items: center;
  }

  .about-box {
    width: 90%;
  }

  .clients-container {
    flex-direction: column;
    align-items: center;
  }

  .clients-part {
    width: 90%;
  }

  .project-gallery img {
    width: 100%;
    max-width: 320px;
  }

  .project-info {
    font-size: 15px;
    width: 90%;
  }
}

@media (max-width: 480px) {
  header {
    padding: 25px 10px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 14px;
  }

  .info {
    gap: 10px;
    padding: 15px;
  }

  .project-gallery img {
    max-width: 280px;
  }
}
/* ---------- FOOTER ---------- */
footer {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 25px 10px;
  margin-top: 50px;
}

.footer-content p {
  margin: 8px 0;
  font-size: 15px;
}

.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 10px;
}

.footer-icons span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.footer-icons i {
  color: #e6b800;
  font-size: 16px;
}
