:root {
  --wt-pry-color: #02406C;
  --wt-pry-md-color: #1C3D80;
  --wt-pry-light-color: #0074C8;
  --wt-pry-lighter-color: #1C97F0;
  --wt-sec-color: #E1F2FE;
}
.bg-pry {
  background-color: var(--wt-pry-color);
}
.bg-light-pry {
  background-color: var(--wt-pry-light-color);
}
.text-wt-pry {
  color: var(--wt-pry-color);
}
.text-md-pry {
  color: var(--wt-pry-md-color);
}
.text-wt-light {
  color: var(--wt-pry-lighter-color);
}
.btn-pry {
  background-color: var(--wt-pry-color);
  border:1px solid var(--wt-pry-color);
  color: #fff;
    padding: 12px 40px;
  /* border-radius: 8px; */
}
.btn-pry:hover, .btn-pry:active {
  background-color: var(--wt-pry-light-color) !important;
  border-color: var(--wt-pry-color) !important;
  color: #fff !important;
}
.btn-light-pry {
  background-color: #fff;
  border:1px solid var(--wt-pry-color);
  color: var(--wt-pry-color);
  padding: 12px 40px;
}
.btn-light-pry:hover, .btn-light-pry:active {
  background-color: var(--wt-pry-light-color) !important;
  border-color: var(--wt-pry-color) !important;
  color: #fff !important;
}
.user-review {
  position: relative;
  height:20px;
}
.user-review span {
  position: absolute;
  display: block;
  padding-right: 5px;
  top:0px;
  font-size: 12px;
  color: #fff;
  opacity: .4;
}
.btn {
  font-size: 15px;
}
.bar-cont {
  overflow: auto;
}
.bar-cont::-webkit-scrollbar {
  display: none;
}
.hero {
	background-color: var(--wt-pry-color);
  background-position: center;
  color: #fff;
  min-height: 600px;
  transition: background-image 1s ease-in-out;
}
.hero .row, .hero .container {
  height: 100%;
}
.ls-divider {
  background-color: var(--wt-pry-light-color);;
  width: 1px;
  height: 40px;
}
.diagnosis {
  background-color: var(--wt-sec-color);
  border-radius: 30px;
}
.bubble {
  position: absolute;
  top: 30%;
  left: -18%;
  background-color: var(--wt-pry-light-color);
  color: #fff;
  height:250px;
  width:250px;
  display: grid;
  place-items:center;
  text-align: center;
  border-radius: 100%;
}
.bubble .title {
  color: #9FD5FC;
}
.quiz {
  background-image: url('/img/watchpat/quiz.svg');
  background-size: cover;
  background-position: center;
}
.bg-wt-sec {
  background-color: #F3F9FD;
}

.ql-sleep img {
  height: 100px;
}
.num {
  height: 45px;
  width: 45px;
  font-size: 20px;
  background-color: var(--wt-pry-color);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: bold;
  border-radius: 100%;
}
.subheading {
  font-size: 24px;
  font-weight: 600;
}
.arch {
  padding: 0;
  position: relative;

}
.arch img{
  top: 0;
  width: 100%;
  margin-block: -200px;
  filter: hue-rotate(329deg);
}
.arch .content {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
  margin-top: 350px;
  text-align: center;
}
.custom-nav {
  display: flex;
  align-items: center;
  gap:10px;
}
.custom-nav a {
  height: 35px;
  width: 35px;
  border-radius: 100%;
  background-color: #ffffff;
  color: var(--wt-pry-color);
  display: grid;
  place-items:center;
  border:1px solid var(--wt-pry-color);
}
.custom-works-dots {
  display: flex;
  gap:10px;
}
.custom-works-dots .dot {
  font-size: 13px;
  color: red;
  height: 15px;
  width: 15px;
}
.custom-works-dots .dot.active {
  background-color: var(--wt-pry-color);
}
.people-carousel .h-100 {
  min-height: 250px
}
.accordion-item.light {
  border-radius: 12px !important;
  overflow: hidden;
  color: #fff;
}
.accordion-item.light .accordion-button {
  background-color: #EDF5FA;
  border:1px solid rgba(52, 147, 215, .16);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;

}
.accordion-item.light .accordion-button i {
  font-size: 35px;
  font-weight: lighter;
  color: var(--wt-pry-color);
  transform: rotate(90deg);
  transition: .5s;
}
.accordion-item.light .accordion-button::after {
  content: none;
}
.accordion-item.light .accordion-button:not(.collapsed) {
  background-color: #000;
  border-radius: 0px;
  border-bottom: 0;
  color: #fff;
}
.accordion-item.light .accordion-button:not(.collapsed) i {
  color: #fff;
  transform: rotate(-90deg);
  transition: .5s;
}
.accordion-item.light .accordion-body {
  background-color: #000;
  font-weight: lighter !important;
}
.callout {
  background-image: url('/img/watchpat/callout.jpg');
  background-position: center;
  background-size: cover;
  color: #fff;
}
.questions-section {
    width: 100%;
}

.question-card {
    background: rgba(255,255,255,.6);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.question-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.question-card.checked {
    background: #fff;
}

.custom-checkbox {
    width: 32px;
    height: 32px;
    border: 1px solid var(--wt-pry-color);
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.2s ease;
}
.question-card.checked .custom-checkbox {
    background: #1e7fb8;
    border-color: #1e7fb8;
}

.custom-checkbox::after {
    content: '✓';
    color: white;
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.question-card.checked .custom-checkbox::after {
    opacity: 1;
}

.question-text {
    flex: 1;
    margin: 0;
    font-size: 15px;
    color: var(--wt-pry-md-color);
    line-height: 1.4;
}

.question-label {
    font-weight: 700;
    color: var(--wt-pry-md-color);
}
.score-section {
    background: white;
    border-radius: 30px;
}

.score-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 40px;
}
.gauge-container {
    position: relative;
    width: 75%;
    max-width: 400px;
    height: 100%;
}

.gauge-arches {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 200px;
    position: relative;
}

.css-arcs {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 340px;
    height: 170px;
    transform: translateX(-50%);
    overflow: hidden;
}

.arc-segment {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    bottom: -170px;
    left: 50%;
    transform: translateX(-50%);
    border: 25px solid transparent;
    box-sizing: border-box;
    z-index: 1;
}

.green-arc {
    border-top: 25px solid #00685F;
    border-left: 25px solid #00685F;
    border-right: 25px solid transparent;
    border-bottom: 25px solid transparent;
    clip-path: polygon(0% 45%, 50% 50%, 50% 100%, 0% 100%);
    transform: translateX(-50%) rotate(45deg);
    z-index: 4;
}

.yellow-arc {
    border-top: 25px solid #FFAF00;
    border-left: 25px solid #FFAF00;
    border-right: 25px solid transparent;
    border-bottom: 25px solid transparent;
    clip-path: polygon(0% 40%, 50% 50%, 50% 100%, 0% 100%);
    transform: translateX(-50%) rotate(90deg);
    z-index: 3;
}

.red-arc {
    border-color: #E44A24;
    clip-path: polygon(0% 50%, 100% 20%, 100% 100%, 0% 100%);
    transform: translateX(-50%) rotate(-45deg);
    z-index: 2;
}

.gauge-pointer {
    position: absolute;
    bottom: -20px;
    left: 50%;
    width: 65px;
    height: 125px;
    transform-origin: 55% 87.2%;
    transform: translateX(-50%) rotate(-90deg);
    transition: transform 1s ease-out;
    z-index: 20;
}

.gauge-pointer svg {
    width: 100%;
    height: 100%;
    display: block;
}

.gauge-circle {
    position: absolute;
    width: 40px !important;
    height: 40px !important;
    pointer-events: none;
    z-index: 30;
    transition: all 1s ease-out;
    left: 55%;
    bottom: 140%;
    transform: translate(-50%, 50%);
}

.gauge-circle circle:nth-child(2) {
    transition: fill 0.5s ease;
}

.gauge-labels {
    display: flex;
    justify-content: space-between;
    width: 75%;
    margin-top: 25px;
    max-width: 330px;
}

.gauge-label {
    font-size: 24px;
    font-weight: 300;
    color: var(--wt-pry-md-color);
}

.score-display {
    text-align: center;
    margin-top: 20px;
}

.score-number {
    font-size: 48px;
    font-weight: 700;
    color: #1e3a5f;
}
 @media screen and (max-width:1399px) {
   .title {
     font-size: 42px;
   }
   .arch .content {
     margin-top: 250px;
   }
 }
 @media screen and (max-width:1299px) {
   .arch img{
     margin-block: -150px;
   }
 }
 @media screen and (max-width:1199px) {
   .arch img{
     margin-block: -50px;
   }
   .arch .content {
     margin-top: 300px;
   }
 }
 @media screen and (max-width:991px) {
   .hero {
     background-color: #1E3444;
     min-height: 450px;
     padding: 0;
     background-image: none !important;
   }
   .hero .row, .hero .container {
     height: auto;
   }
   .bubble {
     top: 45%;
      left: 25px;
   }
   .ql-sleep {
     flex-wrap: wrap;
     gap:30px;
   }
   .ql-sleep > div {
     width:25%;
   }
   .why-img {
     position: relative;
   }
   .why-img img {
     position: absolute;
     width: 40%;
     bottom: 0;
     right: 0;
   }
   .arch img{
     margin-top:-70px;
     margin-bottom: 40px;
   }
   .arch .content {
     margin-top: 180px;
     width: 70%;
   }
   .title {
     font-size: 38px;
   }
 }
@media screen and (max-width:650px) {
  .bubble {
    height: 200px;
    width: 200px;
    top:35%;
    left: 15px;
  }
  .bubble .title {
    margin-top: -30px !important;
  }
  .title {
    font-size: 32px;
  }
  .why-img {
    text-align: center;
  }
  .why-img img {
    position: relative;
    width: 90%;
  }
  .ql-sleep > div {
    width:45%;
  }
  .ql-sleep h5 {
    font-size: 17px;
  }
  .arch .content {
    position: relative;
    margin-top: -100px;
    margin-bottom: 50px;
    width: 80%;
  }
  .arch img{
    margin-bottom: 0px;
  }
}
