/* Basic Styles for DeepTech Innolabs LLP website */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

header {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

/* ✅ Add this block below header */
.logo {
  height: 3.5cm;
  width: 3.5cm;
  border-radius: 2cm;
  object-fit: cover;
  background-color: white;         /* White background for contrast */
  border: 2px solid #fff;          /* Optional white border */
  box-shadow: 0 0 10px rgba(0,0,0,0.3);  /* Optional shadow */
}

header h1 {
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
}

#services {
  display: flex;
  justify-content: space-around;
  padding: 40px;
  background-color: #fff;
}

.service {
  background-color: #e2e2e2;
  padding: 20px;
  border-radius: 8px;
  width: 30%;
}

.service h3 {
  font-size: 1.5rem;
}

footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
  position: fixed;
  width: 100%;
  bottom: 0;
}
