/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #000000;
  background-color: #89CFF0;
}

header {
  background-color: #89CFF0;
  /* Dark blue */
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 3px solid #0099FF;
  /* Light blue border */
}

.logo img {
  height: 50px;
  /* Adjust height as needed */
  width: auto;
  /* Maintain aspect ratio */
}

header .logo h1 {
  margin: 0;
  color: #0099FF;
  /* Light blue text */
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #000000;
  /* White text for links */
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background-color 0.3s;
}

nav ul li a:hover {
  background-color: #0099FF;
  /* Light blue hover effect */
  color: #89CFF0;
  /* Dark blue text on hover */
}

nav ul li a.active {
  font-weight: bold;
  border-bottom: 2px solid #0099FF;
  /* Highlight for active page */
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(to bottom, #0099FF, #89CFF0);
}

.hero h2 {
  font-size: 2.5rem;
  color: #fff;
}

.hero p {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #fff;
}

.cta-button {
  background-color: #fff;
  color: #0099FF;
  padding: 0.8rem 1.5rem;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* Two columns */
  gap: 2rem;
  /* Space between rows and columns */
  text-align: center;
  padding: 2rem;
}

.feature {
  background-color: #5c69e6;
  /* White background for contrast */
  color: #89CFF0;
  /* Dark blue text */
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px #ffff(222, 223, 223, 0);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  /* Slight hover effect */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}


footer {
  background-color: #89CFF0;
  /* Dark blue */
  color: #000000;
  font-family: Arial, sans-serif;
  padding: 20px 0;
}

.footer-top {
  background-color: #0099FF;
  /* Bright blue */
  color: #000000;
  text-align: center;
  padding: 10px 0;
}

.contact-info p {
  margin: 5px 0;
  font-size: 14px;
}

.contact-info a {
  color: #000000;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.footer-logo {
  text-align: center;
}

.footer-logo img {
  max-width: 120px;
  margin-bottom: 10px;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  flex-grow: 1;
  gap: 20px;
}

.links-section {
  margin-right: 20px;
}

.links-section h4 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #000000;
  /* Text color */
}

.links-section ul {
  list-style: none;
  padding: 0;
}

.links-section ul li {
  margin-bottom: 5px;
}

.links-section ul li a {
  color: #000000;
  /* Link text color */
  text-decoration: none;
  font-size: 14px;
}

.links-section ul li a:hover {
  text-decoration: underline;
}

.social-media {
  margin-top: 10px;
}

.social-media a img {
  max-width: 24px;
  margin: 0 5px;
}

.footer-copyright {
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: #000000;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  /* Adds spacing to both sides */
}

.links-section:first-child {
  margin-left: 20px;
  /* Adds spacing to the left of "Our Company" */
}

.links-section:last-child {
  margin-right: 20px;
  /* Adds spacing to the right of "Core Products" */
}

/*for bacground image*/
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-image: url('SynergyGlobal.png');
  /* Replace with your image path */
  background-size: cover;
  /* Ensures the image covers the entire section */
  background-position: center;
  /* Centers the image */
  color: #000000;
  /* White text for contrast */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 300px;
  /* Adjust height as needed */
  box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
  /* Optional: Adds a dark overlay */
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #fff;
  color: #4539c4;
  padding: 0.8rem 1.5rem;
  border: none;
  text-decoration: none;
  font-size: 1rem;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.cta-button:hover {
  transform: scale(1.1);
  background-color: #89CFF0;
  color: #fff;
}