/*Blog Details Section Start*/
.blog-details {
  padding: 80px 0;
}

.blog-details img {
  border-radius: 16px;
}

.blog-meta {
  display: flex;
  gap: 40px;
  font-size: 13px;
  color: #8a97a8;
  margin-top: 25px;
}

.blog-title {
  font-size: 43px;
  font-weight: 600;
  color: #0b1030;
}

.blog-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #6b7c93;
  margin-bottom: 25px;
}

.section-title {
  position: relative;
  font-size: 26px;
  font-weight: 600;
  color: #0b1030;
  margin-bottom: 15px;
}
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #19c6d1;
  border-radius: 2px;
}
.section-desc {
  font-size: 16px;
  color: #6b7c93;
  margin-bottom: 40px;
  max-width: 750px;
}
.section-sub {
  font-size: 18px;
  font-weight: 400;
  color: #0b1030;
  margin-bottom: 15px;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.custom-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.6;
}

.blog-details .row img {
  border-radius: 16px;
  margin-bottom: 20px;
}

.blog-details .row {
  margin-top: 20px;
  margin-bottom: 20px;
}

.video-box {
  position: relative;
  width: 100%;
  height: 421px;
  border-radius: 16px;
  overflow: hidden;
}

.video-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  background: rgba(254, 255, 255, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.play-btn::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 18px;
  border-left: 15px solid #000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
} */
.final-desc {
  font-weight: 800;
  font-size: 18px;
  color: #0b1030;
  margin-bottom: 40px;
  max-width: 750px;
}

.share-box {
  font-size: 13px;
  color: #6b7c93;
  display: flex;
  align-items: center;
  gap: 15px;
}

.share-box span {
  font-size: 18px;
  font-weight: 600;
  color: #0b1030;
}

.share-btn {
  padding: 10px 22px;
  background: #eef1f6;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #0b1030;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  z-index: 0;
}

.share-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.4s ease;
  z-index: -1;
}

.share-btn:hover::before {
  left: 0;
}

.share-btn:hover {
  color: #00b4d8;
  border-color: #00b4d8;
}

.comment-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.custom-input {
  border-radius: 30px;
  border: 1px solid #d6e9ef;
  padding: 12px 18px;
  font-size: 14px;
  box-shadow: none;
}

.custom-input:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 2px rgba(0, 180, 216, 0.1);
}

textarea.custom-input {
  border-radius: 16px;
  resize: none;
}

.submit-btn {
  background: linear-gradient(90deg, #00b4d8, #0096c7);
  color: #fff;
  border-radius: 50px;
  padding: 10px 28px;
  font-size: 14px;
  border: 2px solid transparent;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.4s ease;
  z-index: -1;
}

.submit-btn:hover::before {
  left: 0;
}

.submit-btn:hover {
  color: #0096c7;
  border-color: #0096c7;
}
/*Blog Details Section End*/

/*Media Queries*/
@media (max-width: 1200px) {
  .blog-details {
    padding: 70px 0;
  }

  .blog-title {
    font-size: 38px;
  }

  .section-title {
    font-size: 23px;
  }

  .section-desc {
    font-size: 15px;
  }

  .blog-meta {
    gap: 28px;
  }

  .video-box {
    height: 380px;
  }
}

@media (max-width: 992px) {
  .blog-details {
    padding: 60px 0;
  }

  .blog-title {
    font-size: 32px;
  }

  .section-title {
    font-size: 21px;
  }

  .section-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .section-sub {
    font-size: 16px;
  }

  .blog-desc {
    font-size: 13px;
  }

  .blog-meta {
    gap: 20px;
    flex-wrap: wrap;
  }

  .video-box {
    height: 320px;
  }

  .share-box {
    flex-wrap: wrap;
    gap: 10px;
  }

  .share-btn {
    padding: 9px 18px;
    font-size: 13px;
  }

  .final-desc {
    font-size: 16px;
  }

  .custom-list li {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .blog-details {
    padding: 40px 0;
  }

  .blog-title {
    font-size: 26px;
  }

  .blog-desc {
    font-size: 13px;
  }

  .section-title {
    font-size: 19px;
  }

  .section-desc {
    font-size: 13px;
    margin-bottom: 20px;
    max-width: 100%;
  }

  .section-sub {
    font-size: 14px;
  }

  .blog-meta {
    gap: 12px;
    margin-top: 16px;
    font-size: 12px;
    flex-wrap: wrap;
  }

  .blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .custom-list li {
    font-size: 13px;
    padding-left: 20px;
  }

  .video-box {
    height: 250px;
  }

  .play-btn {
    width: 48px;
    height: 48px;
  }

  .play-btn::after {
    left: 18px;
    top: 14px;
    border-left: 12px solid #000;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }

  .share-box {
    gap: 8px;
    flex-wrap: wrap;
  }

  .share-box span {
    font-size: 15px;
    width: 100%;
  }

  .share-btn {
    padding: 8px 14px;
    font-size: 12px;
  }

  .final-desc {
    font-size: 15px;
    margin-bottom: 28px;
    max-width: 100%;
  }

  .comment-box h5 {
    font-size: 16px;
  }

  .custom-input {
    padding: 10px 14px;
    font-size: 13px;
  }

  .submit-btn {
    width: 100%;
    padding: 12px;
    font-size: 14px;
  }

  .blog-details .row img {
    margin-bottom: 12px;
  }
}

@media (max-width: 576px) {
  .blog-details {
    padding: 30px 0;
  }

  .blog-title {
    font-size: 22px;
  }

  .blog-desc {
    font-size: 12px;
  }

  .section-title {
    font-size: 17px;
  }

  .section-desc {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .section-sub {
    font-size: 13px;
  }

  .blog-meta {
    gap: 10px;
    font-size: 11px;
  }

  .blog-meta span svg {
    width: 18px;
    height: 18px;
  }

  .custom-list li {
    font-size: 12px;
    margin-bottom: 8px;
    padding-left: 16px;
  }

  .video-box {
    height: 210px;
    border-radius: 12px;
  }

  .play-btn {
    width: 42px;
    height: 42px;
  }

  .play-btn::after {
    left: 15px;
    top: 12px;
    border-left: 10px solid #000;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
  }

  .share-btn {
    padding: 7px 11px;
    font-size: 11px;
    border-radius: 8px;
  }

  .final-desc {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .comment-box {
    margin-top: 30px !important;
  }

  .comment-box h5 {
    font-size: 15px;
  }

  .custom-input {
    padding: 9px 12px;
    font-size: 12px;
  }

  .submit-btn {
    font-size: 13px;
    padding: 11px;
  }
}

@media (max-width: 320px) {
  .blog-details {
    padding: 20px 0;
  }

  .blog-title {
    font-size: 18px;
  }

  .blog-desc {
    font-size: 11px;
  }

  .section-title {
    font-size: 15px;
  }

  .section-desc {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .section-sub {
    font-size: 12px;
  }

  .blog-meta {
    gap: 8px;
    font-size: 10px;
  }

  .blog-meta span svg {
    width: 16px;
    height: 16px;
  }

  .custom-list li {
    font-size: 11px;
    padding-left: 12px;
    margin-bottom: 6px;
  }

  .video-box {
    height: 170px;
    border-radius: 10px;
  }

  .play-btn {
    width: 36px;
    height: 36px;
  }

  .play-btn::after {
    left: 13px;
    top: 10px;
    border-left: 9px solid #000;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }

  .share-box {
    gap: 6px;
  }

  .share-btn {
    padding: 6px 9px;
    font-size: 10px;
    border-radius: 6px;
  }

  .final-desc {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .comment-box h5 {
    font-size: 13px;
  }

  .custom-input {
    padding: 8px 10px;
    font-size: 11px;
    border-radius: 20px;
  }

  textarea.custom-input {
    border-radius: 10px;
  }

  .submit-btn {
    font-size: 12px;
    padding: 10px;
  }
}
