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: #004e92;
  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: #004e92;
  color: white;
}

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

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

.header_div {
  background: linear-gradient(90deg, #004e92, #000428);
  padding: 15px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.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: 10px;
  transition: transform 0.3s;
}

.logo img:hover {
  transform: scale(1.1);
}

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

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 0.3s, transform 0.3s;
}

nav ul li a:hover {
  background: #f39c12;
  color: #000428;
  transform: scale(1.1);
}

nav ul li a:focus {
  outline: none;
  box-shadow: 0 0 10px #f39c12;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  nav ul li a {
    font-size: 0.9rem;
  }
}

.footer_div {
  background: linear-gradient(90deg, #000428, #004e92);
  color: #ffffff;
  padding: 40px 20px;
}

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

.footer-logo img {
  max-height: 50px;
  transition: transform 0.3s;
}

.footer-logo img:hover {
  transform: scale(1.1);
}

.footer-links h3,
.footer-contact h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #f39c12;
}

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

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

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

.footer-bottom p:hover {
  color: #f39c12;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
}

.about-section {
  color: #004e92;
  padding: 60px 20px;
}

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

.about-title {
  font-size: 2.5rem;
  color: #f39c12;
  text-align: center;
  margin-bottom: 40px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
}

.about-image {
  width: 300px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  float: left;
  margin: 0 20px 20px 0;
}

.about-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: #004e92;
}

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-image {
    float: none;
    margin: 0 auto 20px;
  }
}

.company-history-section {
  color: #0069c0;
  padding: 60px 20px;
}

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

.history-title {
  font-size: 2.5rem;
  color: #f39c12;
  margin-bottom: 20px;
}

.history-intro {
  font-size: 1.2rem;
  color: #0069c0;
  margin-bottom: 40px;
}

.history-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.history-event {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #0069c0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.event-content {
  flex: 1;
}

.event-content h3 {
  font-size: 1.8rem;
  color: #f39c12;
  margin-bottom: 10px;
}

.event-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

.event-image {
  width: 200px;
  height: 200px;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .history-timeline {
    flex-direction: column;
  }

  .history-event {
    flex-direction: column;
    text-align: center;
  }

  .event-image {
    width: 100%;
    height: auto;
  }
}

.services-section {
  color: #ffffff;
  padding: 60px 20px;
}

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

.services-title {
  font-size: 2.5rem;
  color: #f39c12;
  margin-bottom: 20px;
}

.services-intro {
  font-size: 1.2rem;
  color: #004e92;
  margin-bottom: 40px;
}

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

.service-card {
  background-color: #0069c0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  color: #f39c12;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
  padding: 0;
  color: #e0e0e0;
  text-align: left;
  margin: 0;
}

.service-features li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: "✔";
  color: #f39c12;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

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

  .service-image {
    width: 100%;
    height: auto;
  }
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #004e92;
  color: #ffffff;
  padding: 60px 20px;
}

.contact-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 30px;
}

.contact-info {
  flex: 1 1 40%;
}

.contact-info h2 {
  font-size: 2rem;
  color: #f39c12;
  margin-bottom: 20px;
}

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

.contact-info ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.contact-info li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info .icon {
  margin-right: 10px;
  font-size: 1.5rem;
  color: #f39c12;
}

.contact-form {
  flex: 1 1 50%;
  background-color: #ffffff;
  color: #004e92;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-form h2 {
  font-size: 2rem;
  color: #004e92;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 1rem;
  margin-bottom: 8px;
  color: #004e92;
}

.form-group input,
.form-group textarea {
  width: 95%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f39c12;
}

.contact-submit {
  display: inline-block;
  background-color: #f39c12;
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-submit:hover {
  background-color: #e67e22;
}

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

  .contact-form,
  .contact-info {
    flex: 1 1 100%;
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #f39c12;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: #004e92;
  background-color: #f39c12;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-button:hover {
  background-color: #e67e22;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}
