  

        
.wireframe-container {
  display: grid;
  place-items: center;
  min-height: 50vh;
 
}

.wireframe-inner-container {
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 50%;
}

.wireframe-image-container {
  max-width: 1800px;
  max-height: 400px;
  aspect-ratio: 1.6/1;
}
@media(max-width:1350px){
  .wireframe-image-container {
  aspect-ratio: 1.4/1;
}

}
.wireframe-slider-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: left;
  display: block;
  max-width: 100%;
}

.wireframe-image-before {
  position: absolute;
  inset: 0;
  width: var(--position);
 
}

.wireframe-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  opacity: 0;
  /* for Firefox */
  width: 100%;
  height: 100%;
}

.wireframe-slider:focus-visible ~ .slider-button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.wireframe-slider-line {
  position: absolute;
  inset: 0;
  width: .2rem;
  height: 100%;
  background-color: #000;
  /* z-index: 10; */
  left: var(--position);
  transform: translateX(-50%);
  pointer-events: none;
}

.wireframe-slider-button {
  position: absolute;
  background-color: #fff;
  color: black;
  padding: .5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* z-index: 100; */
  box-shadow: 1px 1px 1px hsl(0, 50%, 2%, .5);
}

.label {
  position: absolute;
  top: 10px;
  padding: 5px 12px;
  font-weight: bold;
  color: #fff;
  background: rgba(0,0,0,0.7);
  border-radius: 5px;
  font-size: 14px;
  z-index: 5;
}

/* Position Before label on the left side */
.before-label {
  left: 10px;
}

/* Position After label on the right side */
.after-label {
  right: 10px;
}
.left-arrow, .right-arrow {
  font-size: 18px;
  font-weight: 500;
  user-select: none;
}



.wireframe-video-container {
  position: relative;
  max-width: 100%;
  height: 400px;
  overflow: hidden;
  border-radius: 1rem;
}

.video-thumbnail {
  position: relative;
  cursor: pointer;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
  transform: scale(1.05);
}

/* Play button style */
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0,0,0,0.7);
  color: #fff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  transition: background-color 0.3s ease;
}

.video-thumbnail:hover .play-button {
  background-color: rgba(255, 193, 7, 0.9); /* mustard tint */
  color: black;
}

.testimonial{
    border-left: 3px solid #00aeef;
    padding: 100px 0 100px 275px;
    position: relative
}
.testimonial:before,
.testimonial:after{
    content: "";
    width: 320px;
    height: 55px;
    border-right: 3px solid #00aeef;
    position: absolute;
    left: 0;
}
.testimonial:before{
    border-top: 3px solid #00aeef;
    top: 0;
}
.testimonial:after{
    border-bottom: 3px solid #00aeef;
    bottom: 0;
}
.testimonial .pic{
    width: 100px;
    height: 100px;
    position: absolute;
    top: 100px;
    left: 100px;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .description{
    font-size: 14px;
    color: #fff;
    line-height: 27px;
    position: relative;
}
.testimonial .description:before{
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: -70px;
    left: 0;
    font-size: 20px;
    color: #fff;
}
.testimonial .testimonial-title{
    font-size: 22px;
    font-weight:800;
    color:#ffff;
    text-transform: capitalize;
}
.testimonial .post{
    display: block;
    font-size: 15px;
    font-weight: 700;
    color :#00aeef;
    margin-top: 10px;
}
.owl-theme .owl-controls{
    text-align: right;
    margin-top: 30px;
}
.owl-theme .owl-controls .owl-buttons div{
    background: #00aeef;
    border-radius: 0;
    opacity: 1;
    padding: 5px 10px;
}
.owl-prev:before,
.owl-next:before{
    content: "\f053";
    font-family: "Font Awesome 5 Free"; font-weight: 900;
    color: #fff;
}
.owl-next:before{
    content: "\f054";
}
@media only screen and (max-width: 990px){
    .testimonial{
        padding: 80px 0 80px 265px;
    }
}
@media only screen and (max-width: 767px){
    .testimonial{
        padding: 0;
        border: none;
    }
    .testimonial:before,
    .testimonial:after{
        border: none;
    }
    .testimonial .pic{
        position: relative;
        top: 0;
        left: 0;
    }
    .testimonial .description{
        margin-top: 15px;
    }
    .testimonial .description:before{
        content: "";
    }
}
.owl-theme .owl-controls {
    margin-top: 10px;
    text-align: end!important;
}
.owl-theme .owl-controls .owl-buttons div {
    color: #FFF;
    display: inline-block;
    zoom: 1;
    margin: 5px;
    padding: 3px 10px;
    font-size: 16px!important;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    background: #00aeef!important;
    filter: Alpha(Opacity=50);
    opacity: 1!important;

}


#backToTopBtn {
  position: fixed;
  bottom: 95px;
  right: 25px;
  background: #00aeef; /* Mustard */
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
}

#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

#backToTopBtn:hover {
  background: #00aeef; /* darker mustard */
  transform: translateY(-4px);
}
/* Floating buttons */
.floating-btn {
  position: fixed;
  bottom: 20px;
  right: 25px;
  background: #00aeef;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  width: 50px;
  height: 50px;
  display: flex;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: background 0.3s;
display: flex;
align-items: center;
justify-content: center;

  
}

.floating-btn:hover {
  background: #00aeef;
}

/* Email icon slightly above back-to-top */
.email-btn {
  bottom: 148px; /* move above the back to top button */
}

/* Modal styling */
.modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
}

.modal-content {
  background-color:transparent;
  margin: 80px auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  position: relative;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 48px;
    right: 50px;
    font-size: 24px;
    font-weight: 400;
    cursor: pointer;
    z-index: 100000;
    color: #fff;
}
/* ================= RESPONSIVE SLIDER FIX ================= */

.wireframe-image-container {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
}

/* Make images fluid */
.wireframe-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tablet */
@media (max-width: 992px) {

  .wireframe-image-container {
    aspect-ratio: 4 / 3;
  }

}

/* Mobile */
@media (max-width: 576px) {

  .wireframe-image-container {
    aspect-ratio: 1 / 1; /* square looks best */
  }

  .wireframe-container {
    padding: 0 15px;
  }

  .label {
    font-size: 12px;
    padding: 4px 8px;
  }

  .wireframe-slider-button {
    padding: .35rem;
    font-size: 12px;
  }

}


.wireframe-container {
  display: grid;
  place-items: center;
  min-height: 80vh; /* taller container */
}

.wireframe-image-container {
  width: 100%;
  height: 600px; /* explicitly set height */
  max-height: none;
  aspect-ratio: auto; /* disables auto aspect ratio */
}

.wireframe-slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}