@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lemon&family=Russo+One&display=swap");

* {
  border: 0;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%; /* Ensure it fills the entire viewport */
}

body {
  margin: 0; /* Reset any margin */
  background-color: #2c3e50;
  color: #ecf0f1;
  min-height: 100vh;
  font-family: "Lemon", serif;
  overflow-x: hidden;
  padding: 5px;
  padding-top: 0; /* Remove blank space at the top */
}

.container.mt-4 {
  padding: 20px;  /* Add padding for more breathing room */
  background-color: #34495e; /* Slightly darker background to contrast with the rest */
  border-radius: 10px;  /* Add rounded corners */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Add subtle shadow for depth */
  margin-top: 4rem; /* This will align with the mt-4 class from Bootstrap */
}

.container.mt-4 h1,
h2,
h3 {
  font-family: "Bebas Neue", serif;
  color: white;
}

.container.mt-4 p {
  font-size: 1.125rem;
  color: #ecf0f1; /* Light color for paragraph text */
  line-height: 1.6;
}

.container.mt-4 a {
  color: lime;  /* Set the text color to black */
  text-decoration: underline;
}

.container.mt-4 a:hover {
  color: lavender;  /* Optional: Color change on hover */
}
.about-us {
  background-color: #34495e; /* Slightly darker background to contrast with the rest */
  border-radius: 10px;  /* Add rounded corners */
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2); /* Add subtle shadow for depth */
  color: white;
}

@media (max-width: 768px) {
  .container.mt-4 {
    padding: 15px;
    margin-top: 2rem; /* Adjust margin-top on smaller screens */
  }
  
  .container.mt-4 h2 {
    font-size: 1.75rem;  /* Reduce font size for smaller screens */
  }

  .container.mt-4 p {
    font-size: 1rem;  /* Reduce font size for better readability */
  }
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", serif;
  color: white;
}

h1 {
  margin-bottom: 30px;
  font-size: 2.5rem;
}

h2,
h3 {
  margin-top: 25px;
  font-size: 1.75rem;
}

a {
  font-family: "Lemon", serif;
  color: white;
  text-decoration: none;
}

a:hover {
  color: #4a7ef0;
}

input[type="text"],
input[type="email"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  background-color: #2c3e50;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  color: white;
}

input[type="text"]:hover,
input[type="email"]:hover,
input[type="quantity"]:hover,
textarea:hover {
  background-color: rgb(47, 37, 37);
}

input[type="submit"] {
  width: 100%;
  background-color: black;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  border-radius: 25px; /* Increased border-radius for more rounded corners */
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

.errorlist {
  color: red;
}

img {
  max-width: 100%;
}

.service-card {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 15px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
  margin-top: 0;
  color: #326dee;
  font-size: 1.5rem;
}

.service-card p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.service-card a.btn {
  color: #fff; /* Ensure text is visible on the button */
  background-color: #326dee; /* Primary button color */
  padding: 10px 20px; /* Adjust padding as needed */
  text-decoration: none; /* Remove underline */
  border-radius: 20px; /* Rounded corners */
  display: inline-block; /* Ensure proper spacing */
  margin-top: 10px; /* Space above button */
}

.service-card a.btn:hover {
  background-color: #4a7ef0; /* Lighter background on hover */
  color: #fff; /* Keep text color white on hover */
}

.about-us h2,
.about-us h3 {
  color: #326dee;
  border-bottom: 2px solid #326dee;
  padding-bottom: 10px;
}

.about-us ul {
  list-style-type: square;
  padding-left: 20px;
}

.about-us ul li {
  margin-bottom: 10px;
  font-size: medium;
}

button {
  color: white;
  border: 0;
  background-color: #326dee;
  border-radius: 20px;
  padding: 0.75rem;
  margin: 0.75rem;
}

.error {
  color: #d32752;
  border-color: #d32752;
  border-style: solid;
  margin: 0.75rem;
  padding: 0.75rem;
  border-radius: 20px;
  border-width: 1px;
}

.notification {
  color: #1ac888;
  border-color: #1ac888;
  border-style: solid;
  margin: 0.75rem;
  padding: 0.75rem;
  border-radius: 20px;
  border-width: 1px;
}

footer {
  text-align: center;
  background-color: #333;
  color: #fff;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
}

footer p {
  margin: 0;
}

footer img {
  display: block;
  margin: 5px auto 0; /* Adds margin above the image, centers it horizontally */
  height: 50px;       /* Increase size as needed */
}

fooetr a {
  color: lime;
  text-decoration: none;
}

footer a:hover {
  color: lavender;
}

/* Responsive styles */
@media (max-width: 1200px) {
  .main {
    padding: 0 20px;
  }

  .service-card {
    margin: 10px;
  }
}

@media (max-width: 992px) {
  .btn {
    padding: 0.5rem 1rem;
  }

  h1,
  h2,
  h3 {
    font-size: 1.5rem;
  }

  .service-card {
    margin: 10px;
  }
}

@media (max-width: 768px) {
  .service-card {
    margin: 5px;
  }

  input[type="submit"] {
    padding: 10px;
  }
}

@media (max-width: 576px) {
  .service-card {
    margin: 5px;
    padding: 15px;
  }

  .btn {
    padding: 0.5rem 1rem;
  }
}
