/* Global Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3 {
  font-weight: 700;
}

/* Hero Section */
header .hero {
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  padding: 80px 20px;
  text-align: center;
  color: white;
}

header .hero h1 {
  font-size: 3rem;
  margin: 0;
}

header .hero p {
  font-size: 1.5rem;
  margin: 20px 0;
}

.cta-btn {
  background-color: #007BFF;
  color: white;
  padding: 15px 25px;
  font-size: 1.2rem;
  border-radius: 5px;
  text-transform: uppercase;
}

/* Services Section */
/* Services Section with background image */
.services {
  padding: 60px 20px;
  text-align: center;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #CCCCCC;
}


.services .card {
  display: inline-block;
  background-color: #464646;
  padding: 20px;
  width: 300px;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services .card:hover {
  transform: scale(1.2); /* Enlarge the card on hover */
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4); /* Stronger shadow on hover */
}


.services .card img {
  width: 100%;
  border-radius: 8px;
}

.services .card h3 {
  margin-top: 20px;
  font-size: 1.5rem;
}

.services .card p {
  margin-top: 10px;
  font-size: 1rem;
  color: #ffffff;
}

/* Clients Section */
/* Clients Section with background image */
.clients {
  padding: 60px 20px;
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  text-align: center;
  color: white;
}


.clients .logos img {
  width: 150px;
  margin: 10px;
}

/* Footer Section */
footer {
  background: url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

footer a {
  color: #007BFF;
  margin: 0 10px;
}

footer .socials a {
  margin: 0 15px;
}