body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
}
img {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: auto;
}

/* NAVBAR */
header {
  background: rgb(255, 255, 255);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgb(136, 186, 255);
  position: sticky;
  top: 0;
  z-index: 999;
}

nav a {
  margin-left: 25px;
  text-decoration: none;
  color: rgb(0, 0, 0);
  font-weight: bold;
  transition: 0.3s;
}

nav a:hover {
  color: #556cff;
}

/* HERO */
.hero {
  background: url("/Images/Backgrounds-Images/BG-5.png") center/cover;
  padding: 150px 20px;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: 42px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
}

/* SECTION TITLES */
h2.section-title {
  text-align: center;
  font-size: 32px;
  margin: 40px 0;
  color: #222;
}
.background-image {
  background-image: url("/Images/Backgrounds-Images/BG-2.png");
  background-size: cover;
  background-position: center;
}
.about {
  padding: 60px 20px;
  margin: 0 0 0 0;
  max-width: 100%;
  margin: auto;
  text-align: center;
  line-height: 1.7;
  font-size: 1.2rem;
}

/* GLASS GRADIENT CLASS */
.glass-gradient {
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.1px);
  -webkit-backdrop-filter: blur(4.1px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 0 25px rgba(255, 255, 255, 0.3);
  transition: all 0.35s ease;
}

.glass-gradient:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.32),
    inset 0 0 30px rgba(255, 255, 255, 0.45);
  border-color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

/* SERVICES */
.services-section {
  background: url("Images/Backgrounds-Images/BG-1.jpg");
  background-size: cover;
  padding: 80px 20px;
}

.services-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

.service-card {
  padding: 25px;
  text-align: center;
}

.service-card img {
  width: 70px;
  margin-bottom: 15px;
}

/* CLIENTS */
.MF-Clients {
  padding: 70px 20px;
  background: rgb(0, 0, 0, 0.05);
  margin-bottom: 90;
}

.client-logos {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
}

.client-logos img {
  width: 100%;
  padding: 20px;
  border-radius: 18px;
}

/* CONTACT */
.contact-section {
  background: url("Images/Backgrounds-Images/BG-4.jpg");
  background-size: cover;
  padding: 80px 20px;
  color: rgb(0, 0, 0);
  text-align: center;
}
.client-box {
  margin: 0 0 0 0;
  width: 250px;
  height: 250px;
  background-position: center center;
  /* centers horizontally + vertically */
  background-repeat: no-repeat;
  /* prevents tiling */
  background-size: contain;
  /* keeps full image visible */
}

.contact-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-card {
  padding: 25px;
  text-align: center;
}

.contact-card img {
  width: 50px;
  margin-bottom: 15px;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  padding: 40px;
  text-align: center;
}
.link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s;
}
.link:hover {
  background: white;
  color: #007bff;
}
.MF {
  width: 150px;
  height: auto;
  border-radius: 10px;
  margin-left: 20px;
}

/* ANIMATION BASE */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* CLIENT GRID 4 PER ROW */
.clients .services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.client-box {
  width: 100%;
  height: 150px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
