html {
  scroll-behavior: smooth;
}

body {
  font-family: Roboto, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  padding: 0;
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #e0e0e0;
  color: #222;
  font-size: 24px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.cookies-div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  padding: 4px;
  color: black;
}

.cookies-div p {
  margin-right: 10px;
  padding: 0;
}

.cookies-div button {
  color: black;
  background-color: white;
  cursor: pointer;
}

.header_div {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo img {
  max-height: 100px;
  margin-bottom: 20px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

nav ul li {
  display: inline-block;
}

nav ul li a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 30px;
  transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
  color: #fffdd0;
}

.footer_div {
  background-color: #222;
  padding: 40px 20px;
  color: #ffffff;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-logo img {
  max-height: 80px;
}

.footer-links h3,
.footer-contact h3 {
  font-size: 20px;
  color: #fffdd0;
  margin-bottom: 15px;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li,
.footer-contact ul li {
  font-size: 16px;
  color: #ccc;
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.footer-contact ul li span {
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}

.about-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  border-top: 4px solid #ddd;
  border-bottom: 4px solid #ddd;
  text-align: center;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-container h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.services-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  border-top: 4px solid #ddd;
  border-bottom: 4px solid #ddd;
  text-align: center;
}

.services-container {
  max-width: 1000px;
  margin: 0 auto;
}

.services-container h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: justify;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.service-item {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 300px;
  flex: 1;
  text-align: center;
}

.service-item h3 {
  font-size: 22px;
  color: #333;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.projects-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  border-top: 4px solid #ddd;
  border-bottom: 4px solid #ddd;
  text-align: center;
}

.projects-container {
  max-width: 1000px;
  margin: 0 auto;
}

.projects-container h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.projects-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: justify;
}

.projects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

.project-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.project-item h3 {
  font-size: 20px;
  color: #333;
  margin: 15px 0;
}

.contact-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  border-top: 4px solid #ddd;
  border-bottom: 4px solid #ddd;
  text-align: center;
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-container h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.contact-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: justify;
}

.contact-form {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  padding: 12px 20px;
  font-size: 16px;
  color: #ffffff;
  background-color: #333;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background-color: #555;
  transform: scale(1.05);
}

.detailed-contact-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  border-top: 4px solid #ddd;
  border-bottom: 4px solid #ddd;
  text-align: center;
}

.detailed-contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.detailed-contact-container h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.detailed-contact-container p {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.8;
  text-align: justify;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  flex: 1;
}

.contact-item img {
  width: 40px;
  height: 40px;
}

.contact-text h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 5px;
}

.contact-text p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

.contact-text a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.contact-text a:hover {
  color: #0056b3;
}
