body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: url('it-background.png') no-repeat center center fixed;
  background-size: cover;
  color: #1b1a1a;
}

header {
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
  height: 60px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #1d1d1d;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #4caf50;
}

.hero {
  padding: 80px 20px;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  color: white;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.about-section, .testimonials-section, .contact-section, .services-section {
  padding: 60px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
}

.about-section h2, .testimonials-section h2, .contact-section h2, .services-section h2 {
  font-size: 2em;
  color: #333;
}

.about-section p, .contact-section p, .testimonials-section blockquote, .services-section p {
  max-width: 800px;
  margin: 20px auto;
  font-size: 1.1em;
}

.founders {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.founder img {
  height: 200px;
  width: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.service-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  font-size: 1.05em;
}

.bullet {
  color: #4caf50;
  font-size: 1.2em;
  flex-shrink: 0;
}


.service-list li::before {
  content: '->';
  color: #4caf50;
  font-size: 1em;
  position: absolute;
  margin: 8px 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  
}



.contact-button {
  display: inline-block;
  margin-top: 20px;
  background: #4caf50;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}

.contact-button:hover {
  background: #388e3c;
}

footer {
  text-align: center;
  padding: 20px;
  background: #f5f5f5;
}
fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}[11:20, 28/05/2025] S: body {
  position: relative;
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f0f0;
  color: #333;
  overflow-x: hidden;
}

.blur-background
 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('your-blur-image.jpg') no-repeat center center;
  background-size: cover;
  filter: blur(10px);
  z-index: -1;
  opacity: 0.6;
}

.founder img {
  transition: transform 0.3s ease;
}

.founder img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}