@font-face {
  font-family: "Rajdhani";
  src: url("./fonts/Rajdhani-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Rajdhani";
  src: url("./fonts/Rajdhani-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

body {
  margin: 0;
  background-color: #fff;
  font-family: "Rajdhani", sans-serif;
  line-height: 1.75;
}


h2, h3 {
  font-weight: 600; /* Assuming you want semi-bold for headings as per your original CSS */
  text-align: center;
  margin: 0;
}

h2 {
  font-size: 49px;
}

h3 {
  font-size: 32px;
}

#particles-js {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #ffffff url("./logos/Synapse_Syndicate_Solutions_Logo_Wide_Transparent_1024x1024.png") no-repeat 50% 50%;
  background-size: 800px;
}

.cta-button {
  background-color: #004fff;
  color: #ffffff;
  padding: 12px 20px;
  border: none; /* Added to remove default button styles */
  border-radius: 0;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.2s ease-in-out;
  cursor: pointer; /* To indicate the button is clickable */
}

.cta-button:hover {
  background-color: #3372ff;
}

.cta-container {
  text-align: center;
  position: fixed;
  z-index: 9999; /* Increased z-index to ensure it's above other elements */
  bottom: 7px;
  left: 0;
  right: 0; /* Added to center the button */
}

.scroll-down {
  position: absolute;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 998;
}

.scroll-down-button {
  width: 80px;
  height: 50px;
  opacity: 0.2;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.6; }
}

.what-we-do, .about-us, .our-team {
  text-align: justify;
  color: #414141;
  padding: 5vh 0;
  margin: auto;
  width: 600px;
  max-width: 90%; /* Added for responsiveness */
}

.our-team {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.image-box {
  text-align: center;
  margin: 10px;
}

.image-box img {
  width: 100%; /* Ensures image responsiveness */
  height: auto; /* Maintains aspect ratio */
}

.image-caption {
  margin-bottom: 5vh;
}

.footer {
  width: 100%;
  padding: 30px 0 30px 0;
  background-color: #f8f8f8;
  text-align: center;
}

.footer-content, .links, .social-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.links a, .social-links a {
  text-decoration: none;
  color: #aaa;
}

.links a:hover, .social-links a:hover {
  text-decoration: underline;
}

.footer-text {
  color: #aaa;
  margin-bottom: 50px;
}

@media only screen and (max-width: 700px) {
  #particles-js {
    background-image: url("./logos/Synapse_Syndicate_Solutions_Logo_Transparent_1024x1024.png");
    background-size: 400px 400px;
    background-position: 50% 45%;
  }

  .what-we-do, .about-us, .our-team {
    width: 85%;
  }

  .our-team {
    flex-direction: column;
  }

  .footer-content, .links, .social-links {
    flex-direction: column;
  }
}
