/* === Global === */
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: honeydew;
}

/* === Logo === */
.logo {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 1000;
}

.logo a {
  text-decoration: none;
  color: cornflowerblue;
  transition: color 0.2s ease;
}

.logo a:active {
  color: hotpink;
}

/* === Center Navigation === */
.center-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 80px;
  z-index: 10;
}

.navi {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  background-color: antiquewhite;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.navi li,
.dropdown {
  position: relative;
}

.navi li a,
.dropbtn {
  display: inline-block;
  color: cornflowerblue;
  text-decoration: none;
  padding: 12px 20px;
  transition: background-color 0.3s ease;
}

.navi li a:hover,
.dropdown:hover .dropbtn {
  background-color: lightpink;
  border-radius: 40px;
}

/* === Dropdown Menu === */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: azure;
  min-width: 160px;
  z-index: 500;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 8px;
}

.dropdown-content a {
  color: lightblue;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background-color: lightyellow;
  color: lightsteelblue;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* === Top Section === */
.main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 80px 40px 40px;
}

.aside-left img {
  max-width: 450px;
  width: 100%;
  border-radius: 12px;
}

.aside-right {
  max-width: 500px;
  text-align: left;
}

.aside-right h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.aside-right h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.call-button {
  padding: 12px 24px;
  background-color: cornflowerblue;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.call-button:hover {
  background-color: lightpink;
  color: black;
}

/* === Carousel / Scrollable Row === */
.scroll-section {
  text-align: center;
  padding: 40px 0;
}

.carousel-container {
  position: relative;
  max-width: 90%;
  margin: auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scrollable-row {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  margin: 0 40px;
}

.col {
  flex: 0 0 auto;
  width: 300px;
  background-color: white;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  scroll-snap-align: start;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.col img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 1rem;
}

/* === Carousel Arrows === */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.arrow:hover {
  background-color: lightpink;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 20px;
  background-color: antiquewhite;
  border-radius: 10px;
  margin-top: 40px;
}
