body {
  background-color: #f1f1f1;
  padding-top: 0px;
}

.purple-gradient {
  background: linear-gradient(40deg, #ff6ec4, #7873f5);
}

.young-passion-gradient {
  background: linear-gradient(40deg, #b12a5b, #ff8177);
}

.title h1 {
  text-align: left;
  color: #202020;
}

.hero {
  color: white;
  padding: 15px;
}

.hero h3 {
  color: white;
}

.description, .simple-examples {
  margin-top: 15px;
}

.description p, .simple-examples p {
  font-weight: 700;
}

.simple-examples .countdown {
  display: none;
}

.simple-examples .countdown.simple-bar {
  background-color: #af0b0b;
  margin: 20px;
  padding: 3px 21px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  color: white;
}

.simple-examples .countdown.fix {
  font-size: 14px;
}

.countdown.show, .countdown.hero_count {
  text-align: center;
  background-color: #e4e4e4;
  margin: 22px;
  padding: 20px;
  border-radius: 30px;
}

.countdown.show h2, .countdown.hero_count h2 {
  font-size: 60px;
}

.countdown.show .running, .countdown.hero_count .running {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.countdown.show .running timer, .countdown.hero_count .running timer {
  font-size: 55px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  color: #8c0734;
}

.countdown.show .running timer .days, .countdown.hero_count .running timer .days,
.countdown.show .running timer .hours,
.countdown.hero_count .running timer .hours,
.countdown.show .running timer .minutes,
.countdown.hero_count .running timer .minutes,
.countdown.show .running timer .seconds,
.countdown.hero_count .running timer .seconds {
  width: 70px;
  text-align: left;
  margin: 0 7px;
}

@media (max-width: 480px) {
  .countdown.show .running timer, .countdown.hero_count .running timer {
    font-size: 40px;
  }
  .countdown.show .running timer .days, .countdown.hero_count .running timer .days,
  .countdown.show .running timer .hours,
  .countdown.hero_count .running timer .hours,
  .countdown.show .running timer .minutes,
  .countdown.hero_count .running timer .minutes,
  .countdown.show .running timer .seconds,
  .countdown.hero_count .running timer .seconds {
    width: 49px;
  }
}

.countdown.show .running .labels, .countdown.hero_count .running .labels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
}

.countdown.show .running .labels span, .countdown.hero_count .running .labels span {
  width: 97px;
  text-align: center;
  margin: 0px 2px;
}

@media (max-width: 480px) {
  .countdown.show .running .labels span, .countdown.hero_count .running .labels span {
    width: 69px;
  }
}

.countdown.show .running .text, .countdown.hero_count .running .text {
  font-size: 20px;
  margin-top: 12px;
  font-weight: 600;
}

.countdown.show .running button, .countdown.hero_count .running button {
  border: none;
  background-color: black;
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  margin: 10px;
}

.countdown.show .running .break, .countdown.hero_count .running .break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
}

.countdown.show .ended, .countdown.hero_count .ended {
  display: none;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.countdown.show .ended .text, .countdown.hero_count .ended .text {
  font-size: 20px;
}

.countdown.show .ended button, .countdown.hero_count .ended button {
  border: none;
  background-color: #5a0000;
  color: white;
  border-radius: 25px;
  padding: 10px 20px;
  margin: 10px;
}

.countdown.show .ended .break, .countdown.hero_count .ended .break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
}

.countdown.hero_count {
  background-color: #6d0303;
  margin: 0 10px;
}

.countdown.hero_count h2 {
  font-size: 40px;
  color: #b3b3b3;
  font-size: 33px;
}

.countdown.hero_count .running timer {
  color: #e2e2e2;
}

.countdown.hero_count .running button {
  background-color: #af0b0b;
}

.countdown.hero_count .running button a {
  color: white;
}

.countdown.hero_count .running .labels span {
  width: 95px;
  margin: 0px 3px 0px 0px;
}

@media (max-width: 480px) {
  .countdown.hero_count .running .labels span {
    width: 69px;
  }
}

/* Custom Colors */
.navy-blue {
  background-color: #000080 !important; /* Navy Blue */
}

.gold {
  background-color: #FFD700 !important; /* Gold */
  color: #000080 !important; /* Navy Blue text for better contrast */
}

/* Custom Countdown Timer Styles */
#countdown {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin: 30px 0;
}

.countdown-box {
  transition: transform 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.countdown-box:nth-child(1) { animation-delay: 0s; }
.countdown-box:nth-child(3) { animation-delay: 0.2s; }
.countdown-box:nth-child(5) { animation-delay: 0.4s; }
.countdown-box:nth-child(7) { animation-delay: 0.6s; }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.countdown-item {
  width: 120px;
  height: 120px;
  text-align: center;
  border-radius: 50% !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.countdown-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.countdown-item:hover:before {
  transform: translateY(0);
}

.countdown-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* Navy Blue and Gold Color Scheme */
.countdown-item.navy-blue {
  background-color: #000080 !important; /* Navy Blue */
}

.countdown-item.gold {
  background-color: #FFD700 !important; /* Gold */
  color: #000080 !important; /* Navy Blue text for better contrast */
}

.countdown-item h1 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
  z-index: 1;
}

.countdown-item p {
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  z-index: 1;
}

.countdown-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1.5s infinite;
  color: #000080 !important; /* Navy Blue separators */
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* Add glow effect to numbers when they change */
@keyframes glow {
  0% { text-shadow: 0 0 5px #fff, 0 0 10px #fff; }
  100% { text-shadow: none; }
}

.countdown-item.changing h1 {
  animation: glow 0.5s ease;
}

@media (max-width: 768px) {
  .countdown-item {
    width: 90px;
    height: 90px;
    padding: 10px !important;
  }
  
  .countdown-item h1 {
    font-size: 2rem;
  }
  
  .countdown-item p {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .countdown-item {
    width: 70px;
    height: 70px;
    padding: 8px !important;
  }
  
  .countdown-item h1 {
    font-size: 1.5rem;
  }
  
  .countdown-item p {
    font-size: 0.7rem;
  }
  
  #countdown {
    gap: 5px;
  }
  
  .countdown-separator h1 {
    font-size: 1.5rem;
  }
  
  .countdown-box {
    animation: none;
  }
}

/* NRPs Section Enhancements */
.service-item {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    background: #fff;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #181d80;
}

.nrp-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nrp-image::after {
    content: '';
    position: absolute;
    width: 110px;
    height: 110px;
    border: 3px solid #FFD700;
    border-radius: 50%;
    z-index: -1;
}

.nrp-image img {
    border: 3px solid #181d80;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 50%;
}

.service-item:hover .nrp-image img {
    border-color: #FFD700;
    transform: scale(1.05);
}

.service-item h4 {
    color: #181d80;
    font-weight: 600;
    margin-top: 15px;
}

.btn-light {
    background-color: #f8f9fa;
    border: 1px solid #181d80;
    color: #181d80;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #181d80;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(24, 29, 128, 0.3);
}

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