body{
  background-color: #f6f8fa;
  font-family: 'Inter', sans-serif;
}

/* Keyframes for animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.bespoke-container {
  background: #f4f8fc;                /* soft cool gray for gentle contrast */
  border-radius: 20px;
  box-shadow: 0 10px 48px #98b5ca25, 0 1.5px 4px #fa923f11;
  max-width: 780px;
  margin: 48px auto 40px auto;
  padding: 44px 44px 36px 44px;
  font-family: 'Inter', sans-serif;
  animation: fadeInUp 1s ease-out;
  animation-play-state: paused;
}

.bespoke-container h1 {
  color: #1768ac;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2.85rem;
  margin-bottom: 34px;
  letter-spacing: 1.5px;
  text-shadow: 0 2px 8px #d3eafd80;
  border-bottom: 4px solid #fa923f;
  display: inline-block;
  line-height: 1.12;
  animation: zoomIn 1.2s ease-out 0.3s both;
  animation-play-state: paused;
  cursor: pointer;
  transition: transform 0.3s ease;
}



.bespoke-container p {
  font-size: 1.2rem;
  color: #1e263b;
  margin-bottom: 22px;
  animation: fadeInUp 1s ease-out both;
  animation-play-state: paused;
}

.bespoke-container p:nth-of-type(1) { animation-delay: 0.2s; }
.bespoke-container p:nth-of-type(2) { animation-delay: 0.3s; }
.bespoke-container p:nth-of-type(3) { animation-delay: 0.4s; }
.bespoke-container p:nth-of-type(4) { animation-delay: 0.5s; }
.bespoke-container p:nth-of-type(5) { animation-delay: 0.6s; }
.bespoke-container p:nth-of-type(6) { animation-delay: 0.7s; }
.bespoke-container p:nth-of-type(7) { animation-delay: 0.8s; }
.bespoke-container p:nth-of-type(8) { animation-delay: 0.9s; }

.highlight-blue {
  color: #1768ac;
  font-weight: 600;
}

.highlight-orange {
  color: #fa7a0a;
  font-weight: 700;
}

.call-to-action {
  color: #153a5e;
  font-size: 1.23rem;
  font-weight: 700;
  margin-top: 30px;
  animation: fadeInUp 1s ease-out 2s both;
  animation-play-state: paused;
}

.call-to-action.emphasize {
  color: #fa7a0a;
  font-style: italic;
  font-size: 1.32rem;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  animation: slideInRight 1s ease-out 2.2s both;
  animation-play-state: paused;
}

.bespoke-container h2 {
  color: #1768ac;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 40px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  animation: slideInRight 1s ease-out both;
  animation-play-state: paused;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bespoke-container h2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(250, 122, 10, 0.2), transparent);
  animation: slideIn 1s ease-out 0.5s both;
  animation-play-state: paused;
}

@keyframes slideIn {
  from {
    left: -100%;
  }
  to {
    left: 0;
  }
}

.bespoke-container h2:nth-of-type(1) { animation-delay: 2.5s; }
.bespoke-container h2:nth-of-type(2) { animation-delay: 3s; }

.bespoke-container ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 3.5s both;
  animation-play-state: paused;
}

.bespoke-container ul li {
  font-size: 1.15rem;
  color: #1e263b;
  margin-bottom: 15px;
  line-height: 1.6;
  position: relative;
  padding-left: 25px;
  animation: fadeInUp 0.8s ease-out both;
  animation-play-state: paused;
  transition: all 0.3s ease;
}

.bespoke-container ul li:nth-child(1) { animation-delay: 0; }
.bespoke-container ul li:nth-child(2) { animation-delay: 0.1s; }
.bespoke-container ul li:nth-child(3) { animation-delay: 0.2s; }
.bespoke-container ul li:nth-child(4) { animation-delay: 0.3s; }
.bespoke-container ul li:nth-child(5) { animation-delay: 0.4s; }
.bespoke-container ul li:nth-child(6) { animation-delay: 0.5s; }
.bespoke-container ul li:nth-child(7) { animation-delay: 0.6s; }
.bespoke-container ul li:nth-child(8) { animation-delay: 0.7s; }

.bespoke-container ul li::before {
  content: '✓';
  color: #fa7a0a;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
  animation: zoomIn 0.5s ease-out both;
  animation-play-state: paused;
}

.bespoke-container ul li:hover {
  color: #fa7a0a;
  transform: translateX(15px);
}

.bespoke-container ul li strong {
  color: #1768ac;
  font-weight: 700;
}

.bespoke-container hr {
  border: none;
  height: 1px;
  background-color: #444141; /* Black as requested */
  margin: 30px 0;
  animation: slideInRight 1s ease-out 2.3s both;
  animation-play-state: paused;
}

/* Responsive for mobile */
@media (max-width: 700px) {
  .bespoke-container {
    padding: 24px 10px 18px 10px;
  }
  .bespoke-container h1 {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
  .bespoke-container p {
    font-size: 1.01rem;
  }
}

/* nav-bar */
.hori-selector{
  background-color: #f6f8fa;
}

.hori-selector .right,
.hori-selector .left{
  background-color: #f6f8fa;
}

#navbarSupportedContent>ul>li.active>a{
  color:black;
}

/* NAVBAR responsiveness */
@media (max-width: 768px) {
  .hori-selector {
    width: 100%;
  }
  #navbarSupportedContent > ul > li > a {
    font-size: 1em;
  padding-bottom: 10px;
  margin-top: -3px;
  }
}