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: #0d47a1;
  color: #fff;
  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;
  background: #f0f4f8;
  color: black;
}

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

.cookies-div button {
  color: white;
  background-color: #0d47a1;
  cursor: pointer;
}

/* Header Styles */
.header_div {
  background: linear-gradient(135deg, #6cc3d5, #4884b8);
  padding: 20px 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo img {
  max-height: 60px;
  border-radius: 50%;
  border: 3px solid #fff;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.8);
}

nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
}

nav ul li a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s;
}

nav ul li a:hover {
  background-color: #ffffff;
  color: #4884b8;
  transform: scale(1.1);
}

nav ul li a:focus {
  box-shadow: 0 0 8px #4884b8;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  nav ul {
    flex-direction: column;
  }
}

/* Footer Styles */
.footer_div {
  background: linear-gradient(135deg, #4884b8, #6cc3d5);
  color: #ffffff;
  padding: 40px 20px;
}

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

.footer-logo img {
  max-height: 50px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 0.9rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 10px;
}

.footer-nav ul li a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
  color: #333333;
}

.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100vh;
}

.hero-slideshow {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.hero-slide {
  flex: 1 0 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  text-align: center;
  color: #fff;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  padding: 20px 40px;
  border-radius: 10px;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2rem;
}

.hero-slide:not(.active) {
  display: none;
}

.about-company-section {
  background: linear-gradient(45deg, #f0f4c3, #dcedc8);
  padding: 60px 20px;
}

.about-company-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-company-text {
  flex: 1 1 50%;
}

.about-company-text h2 {
  font-size: 2.5rem;
  color: #4caf50;
  margin-bottom: 20px;
}

.about-company-text p {
  font-size: 1.2rem;
  color: #4e342e;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-company-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.about-company-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-section {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 60px 20px;
}

.service-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.service-image {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
}

.service-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-text {
  flex: 1 1 50%;
}

.service-text h2 {
  font-size: 2.5rem;
  color: #0d47a1;
  margin-bottom: 20px;
}

.service-text p {
  font-size: 1.2rem;
  color: #37474f;
  line-height: 1.8;
  margin-bottom: 15px;
}

.service-text ul {
  list-style: disc inside;
  padding-left: 20px;
  color: #0d47a1;
}

.service-text ul li {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.services-section {
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  padding: 60px 20px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.services-title {
  font-size: 2.5rem;
  color: #1b5e20;
  margin-bottom: 40px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-item {
  background: #ffffff;
  border: 2px solid #a5d6a7;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service-item h3 {
  font-size: 1.8rem;
  color: #2e7d32;
  margin-bottom: 15px;
}

.service-item p {
  font-size: 1.2rem;
  color: #4caf50;
  margin-bottom: 15px;
  line-height: 1.6;
}

.service-item ul {
  list-style: disc inside;
  padding: 0;
  color: #1b5e20;
}

.service-item ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-section {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  padding: 60px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  color: #0d47a1;
  margin-bottom: 40px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.contact-info {
  text-align: left;
}

.contact-info p {
  font-size: 1.2rem;
  color: #1e88e5;
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  color: #1565c0;
}

.contact-info ul li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.contact-form {
  background: #ffffff;
  border: 2px solid #90caf9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
  display: block;
  font-size: 1rem;
  color: #1565c0;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #bbdefb;
  border-radius: 5px;
  font-size: 1rem;
  color: #0d47a1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #1565c0;
  box-shadow: 0 0 5px rgba(21, 101, 192, 0.5);
}

.submit-button {
  background: #0d47a1;
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background: #1565c0;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
