* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0a74da;
  color: white;
  padding: 20px;
  transition: padding 0.3s ease;
  z-index: 1000;
}

header.shrink {
  padding: 10px 20px;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.branding {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 50px;
  height: 50px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
}

/* Navigation */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.nav-menu a:hover {
  text-decoration: underline;
}

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #0a74da;
    width: 100%;
    transform: translateY(-200%);
    transition: transform 0.3s ease;
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 10px;
  }
}

/* Slideshow */
.slideshow-container {
  height: 600px;
  position: relative;
  overflow: hidden;
  margin-top: 80px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s;
}

.active-slide {
  opacity: 1;
  z-index: 1;
}

.prev, .next {
  position: absolute;
  top: 50%;
  background: rgba(0,0,0,0.4);
  color: white;
  font-size: 2rem;
  padding: 10px;
  cursor: pointer;
  border: none;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.prev {
  left: 20px;
}
.next {
  right: 20px;
}

/* Sections */
.section {
  padding: 80px 20px;
  background: #f4f4f4;
}

.section:nth-of-type(even) {
  background: #eaeaea;
}

.section h2 {
  margin-bottom: 10px;
}

footer {
  background: #0a74da;
  color: white;
  text-align: center;
  padding: 20px 0;
}
