:root {
  /* --- Colors from index.html --- */
  --primary: #5b9fff;     /* Royal Blue */
  --secondary: #bbccf8;   /* Golden Yellow */
  --light: #E0E0FF;  /* Lavender White */
}
.player__audio {
  visibility: hidden;
  height: 0px;

}
.player__btn {
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: -8px -8px 20px 0px #fff9, -6px -6px 6px 0px #fff9, 8px 8px 20px --dark, 5px 5px 6px 0px --dark;
  color: var(--gray);
}

.hide {
  display: none;
}

.blue {
  background-color: var(--secondary);
  color: #fff;
}

.player__btn--medium {
  height: 40px;
  width: 40px;
}



.bg-white {
  max-width: 1320px;
  margin: auto;
}
/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Gradient Text & BG ***/
.text-primary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.bg-secondary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
  position: relative;
  overflow: hidden;
  border: none;
  color: var(--light);
  z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
  opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
  opacity: 1;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  border: none;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
  position: relative;
  margin-right: 25px;
  padding: 45px 0;
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--light) !important;
  outline: none;
  transition: 0.5s;
}

.navbar-light .navbar-nav .nav-link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border: 10px solid;
  border-color: var(--light) transparent transparent transparent;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
  padding: 20px 0;
  color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
  top: 0;
}

.navbar-light .navbar-brand h1 {
  color: var(--light);
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

@media (max-width: 991.98px) {
  .sticky-top.navbar-light {
    position: relative;
    background: var(--light);
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid var(--light);
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin-left: 0;
    color: var(--dark) !important;
  }

  .navbar-light .navbar-nav .nav-link::before {
    display: none;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
  }

  .navbar-light .navbar-brand h1 {
    background: linear-gradient(
      to bottom right,
      var(--primary),
      var(--secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
  }
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    color: var(--light);
    background: linear-gradient(var(--primary), var(--secondary)rgba(228, 9, 9, 0.425));
  }

  .sticky-top.navbar-light .navbar-nav .nav-link::before {
    border-top-color: var(--primary);
  }

  .sticky-top.navbar-light .navbar-brand h1 {
    background: linear-gradient(
      to bottom right,
      var(--primary),
      var(--secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/*** Hero Header ***/
.hero-header {
  /* height: 90vh; */
  margin-bottom: 6rem;
  padding: 15rem 0 0 0;
  background: url(../assets/img/bg-circle.png), url(../assets/img/bg-triangle.png),
    url(../assets/img/bg-bottom.png),
    linear-gradient(to bottom right, var(--primary), var(--secondary));
  background-position: left 0px top 0px, right 0px top 50%, center bottom;
  background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
  .hero-header {
    padding: 6rem 0 9rem 0;
  }
}

/*** Feature ***/
.feature-item {
  transition: 0.5s;
}

.feature-item:hover {
  margin-top: -15px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

/*** Pricing ***/
.pricing .nav {
  padding: 2px;
}

.pricing .nav-link {
  padding: 12px 30px;
  font-weight: 500;
  color: var(--dark);
  background: var(--light);
}

.pricing .nav-item:first-child .nav-link {
  border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
  border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
  color: var(--light);
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
  color: var(--light) !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  border-radius: 60px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

/*** Footer ***/

.footer {
  max-width: 1320px;
  margin-top: 6rem;
  padding-top: 9rem;
  background: url(../assets/img/bg-circle.png),
    url(../assets/img/bg-triangle.png), url(../assets/img/bg-top.png),
    linear-gradient(to bottom right, var(--primary), var(--secondary));
  background-position: left 0px bottom 0px, right 0px top 50%, center top;
  /* width: 80%; */
  background-color: white;
  background-repeat: no-repeat;
}

.footer .btn.btn-social {
  margin-right: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid rgba(256, 256, 256, 0.1);
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/*** Screenshot ***/
.screenshot-carousel {
  position: relative;
  width: 249px;
  height: 500px;
  padding: 15px;
  /* margin-right: 30px; */
}

.screenshot-carousel::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url(../assets/img/screenshot-frame.png) center center no-repeat;
  z-index: 1;
}

.screenshot-carousel .owl-item img {
  position: relative;
  height: 470px;
}

.screenshot-carousel .owl-dots {
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.screenshot-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 5px 0;
  width: 15px;
  height: 15px;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  border-radius: 15px;
  transition: 0.5s;
}

.screenshot-carousel .owl-dot::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 5px;
  left: 5px;
  background: var(--light);
  border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
  box-shadow: 0 0 10px var(--dark);
}


.slider-container {
  width: 80%;
  color: var(--light);
  background-color:var(--light);
  margin: 50px auto;
  overflow: hidden;
  position: relative;
}

.slider {
  color: var(--light);
  background-color: var(--light);

  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider img {
  color:var(--light);
  background-color: var(--light);
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  object-fit: contain;
}

.slider-container {
  color: var(--light);
  background-color: var(--light);
  width: 80%;

  margin: 50px auto;
  overflow: hidden;
  position: relative;
}

.slider2 {
  color: var(--light);
  background-color: var(--light);
  height: 100%;
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider2 img {
  width: 100%;
  color: var(--light);
  background-color: var(--light);
  height: 100%;
  flex-shrink: 0;
  object-fit: contain;
}
/* Typography */
h1,
h2,
.fw-bold {
  font-weight: 700 !important;
}
h3,
h4,
.fw-semi-bold {
  font-weight: 600 !important;
}
h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/* Gradient Effects */
.text-primary-gradient,
.text-secondary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-primary-gradient,
.bg-secondary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.index-post {
  padding: 0;
  margin: 0 0 30px;
}

.blog-post {

  display: block;
  overflow:hidden;
  word-wrap: break-word;
}

.index-post .post-image-wrap {
  float: left;
  width: 260px;
  height: 195px;
  margin: 0 20px 0 0;
}

.post-image-wrap {
  position: relative;
  display: block;
}

.index-post .post-image-wrap .post-image-link {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  z-index: 1;
  overflow: hidden;
}

a,
a:visited {
  text-decoration: none;
}

.post-image-link,
.about-author .avatar-container,
.comments .avatar-image-container {
  background-color: rgba(155, 155, 155, 0.05);
  color: transparent !important;
}

.post-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  height: 18px;
  z-index: 5;
  background-color: #e51515;
  color: #fff;
  font-size: 10px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0 6px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-bottom-color: rgba(0, 0, 0, 0.34);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.34) inset,
    0 2px 0 -1px rgba(0, 0, 0, 0.13), 0 3px 0 -1px rgba(0, 0, 0, 0.08),
    0 3px 13px -1px rgba(0, 0, 0, 0.21);
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.15);
}

.index-post .post-info {
  overflow: hidden;
}

.index-post .post-info > h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4em;
  text-decoration: none;
  margin: 0 0 10px;
}

.index-post .post-snippet {
  font-size: 13px;
  line-height: 24px;
  color: #666666;
  text-align: justify;
}

.post-snippet {
  position: relative;
  display: block;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 400;
  margin: 10px 0 0;
}

a.read-more {
  display: inline-block;
  background-color: #e51515;
  color: #fff;
  height: 25px;
  font-size: 13px;
  font-weight: 600;
  line-height: 25px;
  padding: 0 10px;
  margin: 12px 0 0;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.21);
  border-bottom-color: rgba(0, 0, 0, 0.34);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.34) inset,
    0 2px 0 -1px rgba(0, 0, 0, 0.13), 0 3px 0 -1px rgba(0, 0, 0, 0.08),
    0 3px 13px -1px rgba(0, 0, 0, 0.21);
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.15);
  transition: background 0.17sease;
}

.index-post .post-snippet {
  font-size: 13px;
  line-height: 24px;
  color: #666666;
  text-align: justify;
}

.post-snippet {
  position: relative;
  display: block;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 400;
  margin: 10px 0 0;
}
.post-thumb {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: 1;

  transition: opacity 0.35sease, transform 0.35sease;
}

.post-meta {
  display: block;
  overflow: hidden;
  color: #aaa;
  font-size: 12px;
  font-weight: 400;
  padding: 0 1px;
}

.blog-post {
  /* background: #ffffff; */
  display: block;
  max-width: 1120px;
  padding-left: 10px;
  padding-right: 10px;
  word-wrap: break-word;
  padding-top: 100px;
}

.index-post .post-image-wrap {
  float: left;
  border-radius: 20px;

  width: 260px;
  height: 195px;
  margin: 0 20px 0 0;
}
*/ .post-image-wrap {
  border-radius: 20px;
  position: relative;
  display: block;
}
.index-post .post-image-wrap .post-image-link {
  width: 100%;
  height: 100%;
  position: relative;
  display: block;
  z-index: 1;
  overflow: hidden;
}
.post-snippet {
  position: relative;
  display: block;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.6em;
  font-weight: 400;
  margin: 10px 0 0;
}
.index-post .post-info {
  overflow: hidden;
}

@media screen and (max-width: 540px) {
  .index-post .post-image-wrap {
    height: 160px;
  }
}

@media screen and (max-width: 680px) {
  .index-post .post-info,
  .feat-big .item-big .post-info,
  .feat-list .post-info {
    float: left;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 680px) {
  .blog-post {
    background: #ffffff00;
    display: block;
    padding-left: 10px;
    padding-right: 10px;
    word-wrap: break-word;
    padding-top: 10px;
  }
}

@media screen and (max-width: 680px) {
  .index-post .post-image-wrap,
  .feat-list .feat-inner .post-image-link,
  .feat-col .feat-inner .post-image-link,
  .grid-big .post-image-link,
  .FeaturedPost .post-image-link {
    padding-left: 10px;
    padding-right: 10px;
    width: 100%;
    height: 180px;
    margin: 0 0 10px;
  }
}

.feature-img {
  text-align: center;
margin-left: auto;
margin-right: auto;
max-width: 300px;
max-height: 400px;
margin-bottom: 30px;
  margin-top: 20px;
  border-radius: 10px;
  /* width: 300px; */
}

@media screen and (max-width: 510px) {
  .feature-img {
    
    padding: 20px;
    width: 100%;
  }
}

.play-store-badge {
  display: inline-block;
}

.store-link {
  display: flex;
  align-items: center;
  /* padding: 12px 20px; */
  border-radius: 8px;
  text-decoration: none;
  color: var(--light);
  transition: all 0.2s ease;
}
.store-link:hover{
  color: rgba(255, 255, 255, 0.815);
}

.store-icon {
  font-size: 45px;
  margin-right: 15px;
  width: 30px;
  text-align: center;
}

.store-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.available-text {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.store-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}


/* Hide default play button */
#audioPlayer::-webkit-media-controls-play-button,
#audioPlayer::-webkit-media-controls-panel {
    display: none !important;
    visibility: hidden !important;
}

/* Style the progress bar */
#audioPlayer::-webkit-media-controls-timeline {
    height: 8px; /* Adjust the height */
    background-color: #ff4f5a; /* Custom background color */
    border-radius: 5px; /* Round corners */
}

/* Style the progress fill */
#audioPlayer::-webkit-media-controls-current-time-display,
#audioPlayer::-webkit-media-controls-time-remaining-display {
    color: #333; /* Change time display color */
    font-weight: bold;
}

/* Remove border around progress bar */
#audioPlayer::-webkit-media-controls-progress-bar {
    border: none;
}


#audioPlayer {
  display: none;
}

.custom-audio-player {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Arial, sans-serif;
  margin-top: 10px;
}

/* Style the seek bar */
#seekBar {
  height: 5px;
  background: #ddd;
  border-radius: 5px;
  cursor: pointer;
  -webkit-appearance: none;
}

#seekBar::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: #ff4f5a;
  border-radius: 50%;
  cursor: pointer;
}

#seekBar::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: #ff4f5a;
  border-radius: 50%;
  cursor: pointer;
}
