.button {
  background-color: #007BFF;
  color: #fff;
  margin-bottom: 10px;
  padding: 10px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.button:hover {
  background-color: rgb(51, 149.4, 255);
}
.button:active {
  background-color: rgb(0, 98.4, 204);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transform: translateY(2px);
}

/* Secondary Button Style */
.button--secondary {
  background-color: #ec7e37;
}
.button--secondary:hover {
  background-color: rgb(240.4246575342, 156.0410958904, 101.5753424658);
}
.button--secondary:active {
  background-color: rgb(219.1780821918, 98.6301369863, 20.8219178082);
}

/* Large Button Modifier */
.button--large {
  padding: 15px 30px;
  font-size: 18px;
}

/* Small Button Modifier */
.button--small {
  padding: 5px 10px;
  font-size: 14px;
}

.contact-form-section {
  background: #007BFF;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 2rem auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

input,
textarea {
  padding: 0.75rem;
  border: 1px solid #007BFF;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}

.submit-button {
  align-self: flex-start;
  background-color: #007BFF;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.submit-button:hover {
  background-color: #ec7e37;
}

header {
  background-color: #ec7e37;
  color: white;
  text-align: center;
  padding: 1rem 0;
  top: 0;
  position: sticky;
  z-index: 999;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
nav ul li a:hover {
  text-decoration: underline;
}

footer {
  background-color: #ec7e37;
  text-align: center;
  padding: 0.1rem 0;
}

.main-panel {
  scroll-snap-align: center;
  width: 900px;
  text-align: left;
  flex-shrink: 0;
  gap: 2rem;
  margin: 2rem auto 2rem;
  padding: 1.5rem 2rem;
  background: linear-gradient(to bottom right, #7ad3e6, #bcbcbc);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.main-panel h2 {
  border-bottom: 2px solid #ccc;
}

.img-panel {
  scroll-snap-align: center;
  width: 900px;
  text-align: left;
  margin: 2rem auto 2rem;
  padding: 1.5rem;
  flex-shrink: 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  background: linear-gradient(to bottom right, #7ad3e6, #bcbcbc);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.img-panel img {
  flex-shrink: 0;
  width: 350px;
  max-width: 40%;
  border-radius: 10px;
  object-fit: contain;
}
.img-panel h2 {
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
}

.timeline-panel {
  max-width: 900px;
  background: linear-gradient(to bottom right, #7ad3e6, #bcbcbc);
  padding: 1.5rem 2rem;
  margin: 0 auto 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
.timeline-panel h2 {
  border-bottom: 2px solid #ccc;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.timeline-panel ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline-panel ul::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  width: 2px;
  height: 100%;
  background: #ccc;
}
.timeline-panel ul li {
  position: relative;
  margin-left: 2.5rem;
  padding-left: 1rem;
  transition: margin-top 0.4s ease;
}
.timeline-panel ul li::before {
  content: "";
  position: absolute;
  left: -2.2rem;
  top: 0.4rem;
  width: 10px;
  height: 10px;
  background-color: #007BFF;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 2px #ccc;
}

.scrollable-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  box-sizing: border-box;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollable-container::-webkit-scrollbar {
  display: none;
}
.scrollable-container section {
  opacity: 0.7;
  transform: scale(0.9);
  transition: transform 0.4s ease, opacity 0.4s ease, box-shadow 0.4s ease;
}
.scrollable-container section.active {
  transform: scale(1);
  opacity: 1;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  z-index: 2;
}
@media (max-width: 900px) {
  .scrollable-container section {
    flex-direction: column-reverse;
    width: 90vw;
    text-align: center;
  }
  .scrollable-container section img {
    max-width: 100%;
  }
  .scrollable-container section div {
    align-items: center;
  }
}

.container-spacer {
  width: calc((100vw - 900px) / 2);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .container-spacer {
    width: 5vw;
  }
}

.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.scroll-wrapper .scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 2rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.scroll-wrapper .scroll-btn:hover {
  background: rgba(0, 0, 0, 0.7);
}
.scroll-wrapper .scroll-btn.left {
  left: 1rem;
}
.scroll-wrapper .scroll-btn.right {
  right: 1rem;
}

html {
  margin: 0;
  padding: 0;
  background-color: #ec7e37;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #007BFF;
  color: black;
}

main {
  margin: 0 auto;
}

.page-title {
  padding: 2rem;
  text-align: center;
  margin: 0;
}

.section-title {
  text-align: center;
  margin: 0;
}

.hero {
  background: linear-gradient(to top, #007BFF, #ec7e37 100%, #ec7e37);
}
.hero .hero-text p, .hero .hero-text h1, .hero .hero-text h2 {
  color: white;
  margin: 0;
  text-align: center;
}
.hero .main-panel {
  max-width: 600px;
}

/*# sourceMappingURL=main.css.map */
