@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(135deg, #ffffff, #62be9c);
  color: #fff;
  line-height: 1.6;
}

.container {
  width: 90%; /* The container takes up 80% of the page width */
  max-width: 1500px; /* Ensures the container doesn't exceed 1200px */
  margin: auto; /* Centers the container horizontally and adds space on top and bottom */
  padding: 50px; /* Adds spacing inside the container */
  border: 5px solid #135b3c; /* Adds a solid white border */
  background-color: #135b3c; /* Adds a green background color */
  color: #fff; /* Ensures text remains readable */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Adds a shadow for depth */
  text-align: center; /* Centers the text content inside */
  height: 600px;
}
.container img {
  max-width: 150px; /* Restricts the image size */
  height: auto; /* Maintains the aspect ratio */
  margin-left: auto; /* Pushes the image to the right */
  border-radius: 50%; /* Optional: Makes the image circular */
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2); /* Adds a subtle shadow to the image */
  background-color: #c5c5c5;
}

/* Header Section */
.header {
  padding: 100px 0;
  text-align: center;
}

.header h1 {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.header p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s ease;
  margin: 8px 50px;
}

.cta-button:hover {
  background-color: #30a070;
  transform: scale(1.1);
}

/* Navigation */
.head {
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
  background: #135b3c;
  position: fixed;
  z-index: 10;
}

.logo {
  text-align: center; /* Centers the logo in its container */
  margin: 20px 0; /* Adds spacing above and below the logo */
}

.logo a {
  font-size: 1.5em; /* Increases the size of the text */
  font-weight: bold; /* Makes the text bold */
  color: #ffffff; /* Sets a green color for the logo text */
  text-decoration: none; /* Removes the underline */
  transition: color 0.3s, transform 0.3s; /* Adds smooth effects on hover */
  margin-left: 60px;
}

.logo a:hover {
  color: #8ee4af; /* Changes the color to white when hovered */
  transform: scale(1.1); /* Slightly enlarges the text on hover */
}

.logo a:active {
  color: #8ee4af; /* Changes the color when clicked */
}

/* Basic Styles for Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #135b3c;
  padding: 10px 20px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #30a070;
}

/* Hamburger Button */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #135b3c;
    position: absolute;
    top: 70px;
    right: 20px;
    border: 1px solid white;
    border-radius: 8px;
    width: 180px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
  .logo a {
    margin-left: 25px;
  }
  .container {
    height: auto;
  }
}

/* Solutions Section */
.solutions {
  padding: 50px 0;
  text-align: center;
  color: #000000;
}

.solutions h2 {
  font-size: 2.2em;
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.solution {
  background-color: #000000; /* Black background for the card */
  padding: 20px; /* Inner spacing for the card */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow */
  transition: transform 0.3s; /* Smooth hover effect */
  margin: 0 auto; /* Horizontally centers the card */
  width: 80%; /* Restricts the card's width */
  text-align: center; /* Centers text inside the card */
  border: #30a070;
}

.grid {
  display: flex; /* Changes the grid to a flexbox layout */
  flex-direction: column; /* Aligns the solutions vertically */
  align-items: center; /* Centers the solutions within the container */
  gap: 20px; /* Adds space between each solution card */
}

.solution h3 {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 10px;
}
.solution p {
  color: #ffffff;
}

/* About and Contact Sections */
.about,
.contact {
  padding: 50px 0;
  text-align: center;
  color: #fff;
}

.about h2,
.contact h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

.social-links {
  list-style: none;
  padding: 0;
}

.social-links li {
  display: inline-block;
  margin: 0 10px;
}

.social-links a {
  text-decoration: none;
  color: #fff;
  font-size: 1.1em;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #30a070;
}

/* Footer */
.footer {
  background-color: #135b3c;
  padding: 20px 0;
  text-align: center;
  color: #fff;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #ffffff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}

.scroll-to-top.show {
  opacity: 1;
}
hr {
  width: 90%; /* Adjust the width as needed */
  border: none;
  height: 2.5px; /* Thin line height */
  background-color: #000000; /* Line color */
  margin: 20px auto; /* Center the line */
}
