body {
  margin: 0;
  font-family: "IBM Plex Sans", sans-serif;
  background: #f5f7fa;
  color: #1c2d4a;
  line-height: 1.5;
}

/* Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-nav li {
  margin: 0 1rem;
}

.main-nav a:not(.button-primary) {
  position: relative;
  padding: 0.5rem 0;
  display: inline-block;
}

.main-nav a:not(.button-primary).active {
  font-weight: 600;
}

.main-nav a:not(.button-primary).active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #f4b400;
}

.hero-slider {
  position: relative;
  width: 100vw;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  z-index: 3;
}

.hero-text {
  max-width: 800px;
  transform: translateY(20px);
  opacity: 0;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.slide.active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-content h1 {
  font-size: 3.5rem;
  margin: 0 0 1.5rem 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-cta {
  display: inline-block;
  background: #1c2d4a;
  color: white;
  padding: 1rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.8s ease 0.3s;
}

.slide.active .hero-cta {
  opacity: 1;
}

.hero-cta:hover {
  background: #2c3e50;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.hero-cta:active {
  transform: translateY(0) !important;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.slider-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

.slider-nav svg {
  width: 24px;
  height: 24px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 4;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: white;
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
    min-height: 300px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .slider-nav {
    width: 40px;
    height: 40px;
  }

  .slider-nav svg {
    width: 20px;
    height: 20px;
  }

  .slider-dots {
    bottom: 10px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}

header h2 {
  font-size: 3rem;
  margin: 0;
}

header p,
.service-box h3 {
  font-weight: 600;
}

.intro-text {
  font-size: 1.25rem;
}

.section {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section h1 {
  font-size: 2.5rem;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.services-grid,
.download-grid {
  display: grid;
  gap: 1.5rem;
}

.download-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-cta {
  text-align: right;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .download-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    border-radius: 0.5rem;
  }
}

.button-container {
  margin-top: 1rem;
}

.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #1c2d4a;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.button-primary:hover {
  background: #142136;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.button-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.button-icon {
  font-size: 1.1em;
  margin-left: 0.25rem;
}

.service-box {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.button-primary,
.cta {
  background: #1c2d4a;
  color: #fff;
  text-align: center;
  padding: 0.75rem 1.5rem;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  color: #6c7a89;
}

.section ul {
  margin-bottom: 1.5rem;
}

.section ul li {
  margin-bottom: 0.5rem;
}

.step-list {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.step-list li {
  counter-increment: step;
  display: flex;
  align-items: center;
}

.step-list li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  background: #1c2d4a;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  flex: 1;
  line-height: 1.4;
  margin-bottom: 2rem;
}

.step-content .diagram {
  display: block;
  margin: 1.5rem auto;
  width: 80%;
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 0.75rem 1rem;
  }


  .main-nav ul {
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
    width: 100%;
  }

  .main-nav li {
    margin: 0;
  }

  /* Put the Enquire button on its own centered line */
  .main-nav li:last-child {
    flex-basis: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .main-nav li:last-child .button-primary {
    width: 50%;
    text-align: center;
  }
}

a.service-box,
header a {
  text-decoration: none;
  color: inherit;
}

a.service-box:hover {
  opacity: 0.7;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cta-button.primary {
  background-color: #1c2d4a;
  color: white;
  border: 2px solid #1c2d4a;
}

.cta-button.primary:hover {
  background-color: #142136;
  border-color: #142136;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button.secondary {
  background-color: #4299e1;
  color: white;
  border: 2px solid #4299e1;
}

.cta-button.secondary:hover {
  background-color: #3182ce;
  border-color: #3182ce;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.cta-button.outline {
  background-color: transparent;
  color: #1c2d4a;
  border: 2px solid #1c2d4a;
}

.cta-button.outline:hover {
  background-color: rgba(28, 45, 74, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }

  .cta-button {
    width: 100%;
    padding: 0.9rem 1.5rem;
  }
}

.progress-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
  color: #1c2d4a;
}

.progress-wrapper progress {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.75rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #e0e4ea;
}

.progress-wrapper progress::-webkit-progress-bar {
  background: #e0e4ea;
}

.progress-wrapper progress::-webkit-progress-value {
  background: #1c2d4a;
}

.progress-wrapper progress::-moz-progress-bar {
  background: #1c2d4a;
}

.booking-header {
  background: #fff;
  box-shadow: none;
}

.booking-main {
  max-width: 600px;
  margin: 2.5rem auto 4rem;
  padding: 0 1rem;
  text-align: center;
}

.booking-title {
  font-size: 2.2rem;
  margin: 0 0 0.75rem;
  color: #1c2d4a;
}

.booking-sub {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #1c2d4a;
}

/* Calendar container */
.calendar-box {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  margin-bottom: 2rem;
}

#my-cal-inline {
  width: 100%;
  min-height: 600px;
}

@media (max-width: 500px) {
  .booking-title {
    font-size: 1.8rem;
  }
}

/* Product Box Styles */
.product-box {
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.product-box h3 {
  margin-top: 0;
  color: #142136;
  width: 100%;
  margin-bottom: 0.5rem;
}

.product-box .product-content {
  width: 100%;
  margin-bottom: 1.5rem;
}

.product-box p {
  margin: 0.5rem 0;
}

.product-box .product-cta {
  display: inline-flex;
  align-items: center;
  background: #142136;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s;
  white-space: nowrap;
  justify-content: center;
  width: 80%;
}

.product-box .product-cta:hover {
  background: #1e293b;
}

.pricing-box {
  background: #1c2d4a;
  color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}
.pricing-box h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.pricing-box p {
  font-size: 1.25rem;
  margin: 0.5rem 0;
}
.highlight {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}