

/* Custom CSS for Blog Detail Page */
.blog_details_page body {
  background-color: #f5f5f5;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.blog_details_page .blog-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.blog_details_page .blog-meta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog_details_page .category-tag {
  background: var(--secondary);
  color: #000;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
}

.blog_details_page .publish-date {
  background: var(--secondary);
  font-size: 14px;
  padding: 10px;
  border-radius: 100px;
  padding: 10px 20px;
  color: #000;
  font-weight: 500;
}

.blog_details_page .blog-title {
  color: var(--arovan-base);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.blog_details_page .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog_details_page .author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog_details_page .author-name {
  font-weight: 600;
  color: #1f2937;
  font-size: 16px;
}

.blog_details_page .author-title {
  color: #343434;
  font-size: 14px;
}

.blog_details_page .featured-image-container {
  position: relative;
  border-radius: 12px;
  /* overflow: hidden; */
  margin-bottom: 100px !important;
}

.blog_details_page .featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}


.blog_details_page .image-actions {
    display: flex;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    gap: 40px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    flex-wrap: wrap;
    margin-top: 20px;
    border: 1px solid rgba(0, 0, 0, 10%);
}

.blog_details_page .action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.blog_details_page .action-btn:hover {
  background: white;
  color: var(--arovan-base);
  transform: translateY(-2px);
}

.blog_details_page .article-content {
  font-size: 16px;
  line-height: 1.7;
  color: #374151;
}

.blog_details_page .article-content p img {
  width: 100% !important;
  height: 730px !important;
}

.blog_details_page .intro-paragraph {
  font-size: 18px;
  margin-bottom: 1.5rem;
}

.blog_details_page .drop-cap {
  float: left;
  font-size: 4rem;
  line-height: 3rem;
  padding-right: 8px;
  padding-top: 4px;
  color: var(--arovan-base);
  font-weight: 700;
}

.blog_details_page .section-heading {
  color: var(--arovan-base);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.blog_details_page .quote-block {
  background: #f8fafc;
  border-left: 4px solid var(--arovan-base);
  padding: 20px 24px;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: #4b5563;
}

.blog_details_page .quote-block p {
  margin: 0;
  font-size: 16px;
}

.blog_details_page .benefits-list {
  padding-left: 0;
  list-style: none;
}

.blog_details_page .benefits-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  color: #374151;
}

.blog_details_page .benefits-list li::before {
  content: "•";
  color: var(--arovan-base);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.blog_details_page .share-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
}

.blog_details_page .share-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.blog_details_page .social-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.blog_details_page .social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  font-size: 18px;
}

.blog_details_page .social-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog_details_page .facebook {
  background: #1877f2;
}

.blog_details_page .twitter {
  background: #1da1f2;
}

.blog_details_page .linkedin {
  background: #0077b5;
}

.blog_details_page .whatsapp {
  background: #25d366;
}

.blog_details_page .email {
  background: #ea4335;
}





/* Author Details */

.author-details {
  padding: 2rem 2rem;
  border-radius: 1.5rem;
  background-color: #fff;
  border: 0.1rem solid rgba(189, 189, 189, 0.2);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.author-details .media {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.author-details .media .auth-mata {
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  -ms-flex-positive: 0;
  flex-grow: 0;
  margin-right: 3rem;
  margin-top: 0;
}

.author-details .media .auth-mata img {
  border-radius: 50%;
  background-color: rgba(255, 255, 255);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.08);
  width: 10rem;
  height: 10rem;
}

.author-details .media .media-body {
  flex: 1;
}

.author-details .media .media-body .title {
  letter-spacing: 0.025rem;
  vertical-align: baseline;
}

.author-details .media .media-body a {
  text-decoration: none;
  color: var(--arovan-base);
  margin-bottom: 10px;
}
.author-details .media .media-body h5 {

  margin-bottom: 10px;
}

.author-details .media .media-body a:hover,
.author-details .media .media-body a:focus {
  color: var(--arovan-base);
}

.author-details .media .media-body .title+p {
  margin-bottom: 0;
  margin-top: 0.8rem;
}



/* Comment & Form */

.comments-area {
  margin-top: 8rem;
}

.single-comments-title,
.comments-title {
  margin-bottom: 3rem;
  text-align: left;
}

.comments-title h3 {
  font-size: 3.4rem;
}

.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 30px 0;
}

.comments-area li {
  list-style: none;
}

.comments-area .comment-body {
  position: relative;
  padding: 3rem 3rem 3rem 16.5rem;
  min-height: 12rem;
  word-wrap: break-word;
  border-radius: 1.5rem;
  z-index: 0;
  margin-bottom: 6rem;
}

.comments-area .comment-body:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  max-width: calc(100% - 120px);
  z-index: -1;
  border-radius: inherit;
}

.comment-list .comment .comment-body:before {
  background-color: var(--dt-gray2-color);
}

.comments-area .comment-meta .comment-awaiting-moderation {
  display: block;
  width: 100%;
  clear: both;
}

.comments-area .comment-meta .comment-author {
  font-size: 1.6rem;
}

.comments-area .comment-meta .comment-author .fn {
  font-weight: 700;
}

.comment-meta .comment-metadata>a,
.comments-area .comment-meta .comment-author a {
  text-decoration: none;
  color: var(--dt-sec-color);
}

.comment-meta .comment-metadata>a:hover,
.comment-meta .comment-metadata>a:focus,
.comments-area .comment-meta .comment-author a:hover,
.comments-area .comment-meta .comment-author a:focus {
  color: var(--dt-pri-color);
}

.comments-area .comment-meta .comment-author img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0.6rem;
  width: 9rem;
  border-radius: 10rem;
}

.comments-area .comment-meta .comment-author,
.comment-meta .comment-metadata {
  line-height: 1.5;
  font-size: 1.8rem;
  display: inline-block;
}

.comment-content {
  position: relative;
  z-index: 0;
  padding: 1.6rem 0;
  line-height: 1.5;
}

.comment-content p {
  margin-bottom: 0;
}

.comment-body .reply a,
.comment-body .edit a {
  font-weight: 600;
  letter-spacing: 0.03rem;
}

.comment-body .reply a:not(:hover, :focus),
.comment-body .edit a:not(:hover, :focus) {
  text-decoration: none;
}

.comment-list .comment .children .comment-body:before {
  border: 0.1rem solid rgba(189, 189, 189, 0.2);
  background-color: transparent;
}

.comment-reply-title {
  font-size: 3.4rem;
}

.comment-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
}

.comment-form>p.comment-notes {
  flex-basis: 100%;
  width: 100%;
}

.comment-form>p:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
  flex: auto;
}

/*.comment-form > p:nth-child(2n+1):not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 3rem;
}

.comment-form p.comment-form-url:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    margin-right: 0;
}*/

@media (max-width: 61.938em) {

  .comment-form>p:nth-child(2n+1):not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit),
  .comment-form>p:not(.comment-notes):not(.comment-form-comment):not(.comment-form-cookies-consent):not(.form-submit) {
    max-width: 100%;
    flex-basis: 100%;
    /*margin-right: 0;*/
  }
}

.comment-form-comment {
  max-width: 100%;
  flex-basis: 100%;
}

/*.comment-form > p:not(:last-child) {
    margin-bottom: 3rem;
}*/

.comment-form-cookies-consent,
.form-submit {
  width: 100%;
}

.comment-form-cookies-consent label {
  vertical-align: middle;
  margin-left: 0.3rem;
}


.blog-comment-form {
  margin-top: 47px;
  padding: 30px 35px;
  background: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
}

.comment-reply-title {
  font-size: 25px;
  margin-bottom: 15px;
}




@media (max-width: 991px) {
  .blog_details_page .article-content p img {
    width: 100% !important;
    height: 500px !important;
  }
}

@media (max-width: 768px) {
  .author-details .media {
    flex-direction: column;
    justify-content: center;
    margin: auto;

    text-align: center;
  }

  .author-details .media .auth-mata {
    margin: auto;
    margin-bottom: 30px;
  }

  .blog-comment-form {
    padding: 20px;
  }

  .blog_details_page .blog-card {
    padding: 24px;
    /* margin: 0 16px; */
  }

  .blog_details_page .blog-title {
    font-size: 2rem;
  }

  .blog_details_page .featured-image {
    height: 250px;
  }

  .blog_details_page .drop-cap {
    font-size: 3rem;
    line-height: 2.5rem;
  }

  .blog_details_page .image-actions {
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog_details_page .blog-meta {
    gap: 5px;
  }

  .blog_details_page .category-tag {
    padding: 6px 9px;
    font-size: 12px;
  }

  .blog_details_page .publish-date {
    font-size: 12px;
    padding: 7px 12px;
  }

  .send-your-enquiry .wpcf7-form p {
    width: 100% !important;
  }

  .cta-product-img {
    border: 0;
    width: 100%;
    height: 100%;
    box-shadow: none;
  }

  .countdown-number {
    font-size: 3rem;
  }

  .countdown-item {
    margin: 0 20px;
  }

  .dt_heading_inner {
    font-size: 1rem;
  }

  .dt_siteheading .title.overlay-anim-white-bg {
    font-size: 32px;
  }

  .dt_footer_top {
    padding: 45px 20px !important;
  }
}

@media (max-width: 575px) {
 
  .blog_details_page .blog-meta {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 8px;
  }

  .blog_details_page .category-tag {
    padding: 5px 11px;
    font-size: 11px;
  }

  .blog_details_page .publish-date {
    font-size: 11px;
    padding: 5px 11px;
  }

  .blog_details_page .author-info {
    gap: 0;
  }

  .blog_details_page .author-name {
    font-size: 15px;
  }

  .blog_details_page .social-buttons {
    justify-content: center;
  }
.blog_details_page .article-content p img {
    width: 100% !important;
    height: 360px !important;
  }
  .countdown-number {
    font-size: 2rem;
  }

  .countdown-item {
    margin: 0 10px;
  }

  .countdown-label {
    font-size: 12px;
  }
}
@media (max-width: 576px){
   .dt_content_block {
    margin-top: 170px;
  }
}
@media (max-width: 300px) {
  .blog_details_page .author-info {
    flex-wrap: wrap;
  }
}



/* ------------------- [Responsive Media End] --------------- */

.faq-box .faq-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faq-box .faq-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.faq-box .faq-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--arovan-base);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
}

.faq-box .faq-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.faq-box .faq-decorative {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  opacity: 0.1;
  animation: faq-float 6s ease-in-out infinite;
}

@keyframes faq-float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.faq-box .faq-item {
  background: white;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.faq-box .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-box .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--arovan-base);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq-box .faq-item.active::before {
  transform: scaleY(1);
}

.faq-box .faq-question {
  padding: 15px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.faq-box .faq-question:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.faq-box .faq-question h5 {
  margin: 0;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
  flex: 1;
  padding-right: 20px;
}


.faq-box .faq-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--arovan-base);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 10%);
  position: relative;
}

.faq-box .faq-toggle i {
  transition: transform 0.3s ease;
}

.faq-box .faq-item.active .faq-toggle {
  background: var(--secondary);
  transform: rotate(180deg);
  color: #000;
}

.faq-box .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  background: rgba(102, 126, 234, 0.02);
}

.faq-box .faq-answer.active {
  max-height: 300px;
  padding: 20px 30px 30px 50px;
}

.faq-box .faq-answer p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.faq-box .faq-answer.active p {
  transform: translateY(0);
  opacity: 1;
}

.faq-box .faq-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.faq-box .stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  min-width: 150px;
}

.faq-box .stat-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--arovan-base);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-box .stat-label {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .faq-box .faq-title {
    font-size: 2.5rem;
  }

  .faq-box .faq-question {
    padding: 20px;
  }

  .faq-box .faq-answer.active {
    padding: 0 20px 20px 70px;
  }


}

.toc-box {
  background: linear-gradient(135deg, #fff 80%, #f3eaff 100%);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(98, 8, 177, 0.10), 0 1.5px 8px rgba(255, 215, 0, 0.08);
  margin: 32px 0;
  font-family: inherit;
  border: 1.5px solid var(--arovan-base);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.toc-box::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 90px;
  height: 90px;
  background: var(--secondary);
  opacity: 0.13;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  animation: toc-float 7s ease-in-out infinite;
}

@keyframes toc-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.toc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.toc-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
  color: var(--arovan-base);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.toc-header h3::before {
    content: "\f02d";
     font-family: "Font Awesome 5 Free"; /* Correct name */
    font-weight: 900; /* Solid style */
    font-weight: 900;
    color: var(--arovan-base);
    font-size: 1.2em;
    margin-right: 7px;
    background: #ebebeb;
    border-radius: 50%;
    padding: 4px 7px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.08);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toc-toggle {
  background: var(--arovan-base);
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #fff;
  border-radius: 100px;
  padding: 4px 14px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(98, 8, 177, 0.08);
}

.toc-toggle:hover,
.toc-toggle:focus {
  background: var(--secondary);
  color: #222;
  transform: translateY(-2px) scale(1.08);
}

.toc-content {
  margin-top: 12px;
  position: relative;
  z-index: 1;
  animation: fadeIn 0.4s;
}

.toc-content ol {
  padding-left: 22px;
  margin: 0;
  counter-reset: toc-item;
}

.toc-content ol li {
  margin: 7px 0;
  font-size: 15px;
  color: #333;
  line-height: 1.7;
  list-style: none;
  position: relative;
  transition: color 0.2s;
}

.toc-content ol>li::before {
  content: counter(toc-item) ". ";
  counter-increment: toc-item;
  font-weight: 700;
  color: #000;
  margin-right: 6px;
  font-size: 1em;
  border-radius: 50%;
  padding: 2px 8px;
  margin-left: -22px;
  margin-top: 0;
  display: inline-block;
  min-width: 28px;
  text-align: center;
}

.toc-content ol li a {
  color: var(--arovan-base);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px dashed var(--arovan-base);
  transition: color 0.2s, border-color 0.2s;
}

.toc-content ol li a:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

.toc-content ol li:hover {
  color: var(--arovan-base);
}

@media (max-width: 600px) {
  .toc-box {
    padding: 12px 7px;
    border-radius: 12px;
    margin: 18px 0;
  }

  .toc-header h3 {
    font-size: 1rem;
  }

  .toc-content ol li {
    font-size: 13px;
  }
}


.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comment {
  background: #fff;
  border-radius: 20px;
  padding: 30px 35px;
  margin-bottom: 25px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: transform 0.3s ease;

  cursor: pointer;
}

.comment-box {
  height: 381px;
  overflow: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
}

.comment-box:hover {
  transform: translateY(-4px);
}

.comment-box .comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.comment-box .avatar {
  border-radius: 50%;
  width: 60px;
  height: 60px;
  object-fit: cover;
  margin-right: 15px;
  border: 2px solid #eee;
}

.comment-box .author_info {
  display: flex;
  flex-direction: column;
}

.comment-box .fn a {
  font-weight: 700;
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
}

.comment-box .fn a:hover {
  color: #6a1b9a;
}

.comment-box time {
  font-size: 0.875rem;
  color: #888;
  margin-top: 2px;
}

.border-top {
  border-top: 1px solid #80808021;
  padding-top: 15px;
}

/* .comment-box .comment-reply-link {
  font-size: 0.85rem;
  color: #6a1b9a;
  text-decoration: none;
  float: right;
  background: rgba(106, 27, 154, 0.1);
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.comment-box .comment-reply-link:hover {
  background: #6a1b9a;
  color: #fff;
} */

.comment-box .comment-content p {
  margin: 0;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.comment-box .comment-content {
  padding: 10px 0;
}

.related-blog-section .related-blogs {
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  margin: 50px 0;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;

}

.related-blog-section .related-blogs .section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
  border-left: 4px solid #6a1b9a;
  padding-left: 12px;
}

.related-blog-section .blog-box {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 10%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* margin-bottom: 30px; */
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.related-blog-section .blog-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.related-blog-section .blog-box img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  flex-shrink: 0;
}

.related-blog-section .blog-box a {
  display: block;
  padding: 15px;
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.related-blog-section .blog-box a:hover {
  color: #6a1b9a;
}

/* Responsive fix */
@media (max-width: 767px) {
  .related-blog-section .blog-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .related-blog-section .blog-box img {
    width: 100%;
    height: auto;
  }

  .related-blog-section .blog-box a {
    padding: 15px 10px;
  }
}





.comment-box .comment-body {
  border-radius: 10px;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
  position: relative;
  text-align: left !important;
}

.comment-box .comment-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  border-radius: 10px;
  height: 100%;
  border-left: 5px solid var(--arovan-base);
  border-radius: 10px 0 0 10px;
  opacity: 1;
}

.comment-box .comment-body:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.comment-box .comment-body {
  padding: 1.25rem 1.5rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}



.contact-section {
  padding-bottom: 80px;
  background-color: var(--bg-color);
}

.contactus-widget .widget-contact .contact-area {
  background-color: #2a2f35;
  padding: 15px;
  border-radius: 15px;
  margin-bottom: 25px;
  display: flex;
  position: relative;
  overflow: hidden;
  transition: 0.65s;
}

.contactus-widget .widget-contact .contact-area:hover,
.contactus-widget .widget-contact .contact-area:focus-within {
  background-color: var(--arovan-base);
}

.contactus-widget .widget-contact .contact-area::after,
.contactus-widget .widget-contact .contact-area::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 10px;
  background-color: var(--arovan-base);
  right: -40px;
  transform: rotate(45deg);
  transition: 0.65s;
}

.contactus-widget .widget-contact .contact-area::before {
  right: -30px;
  opacity: 0.5;
}

.contactus-widget .widget-contact .contact-area:hover::before,
.contactus-widget .widget-contact .contact-area:focus-within::before,
.contactus-widget .widget-contact .contact-area:hover::after,
.contactus-widget .widget-contact .contact-area:focus-within::after {
  transform: rotate(225deg);
  background-color: #e1e1e1;
}

.contactus-widget .widget-contact .contact-icon {
  width: 60px;
  height: 60px;
  border-radius: 100%;
  line-height: 60px;
  text-align: center;
  border: 1px solid #fff;
  color: #fff;
  font-size: 25px;
  margin-right: 15px;
  transition: 0.65s;
}

.contactus-widget .widget-contact .contact-info .text {
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contactus-widget .widget-contact .contact-info .text span {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}

.contactus-widget .widget-contact .contact-info .text a {
  text-decoration: none;
  color: #fff;
}

.contactus-widget .widget-contact .contact-area:hover .contact-icon,
.contactus-widget .widget-contact .contact-area:focus-within .contact-icon {
  background-color: #fff;
  color: var(--arovan-base);
}

.contactus-widget .widget-contact .contact-area:hover .contact-info .text span,
.contactus-widget .widget-contact .contact-area:focus-within .contact-info .text span,
.contactus-widget .widget-contact .contact-area:hover .contact-info .text a,
.contactus-widget .widget-contact .contact-area:focus-within .contact-info .text a {
  color: #fff;
}

.send-your-enquiry .wpcf7-form p input[type="text"],
.send-your-enquiry .wpcf7-form p input[type="email"],
.send-your-enquiry .wpcf7-form p .wpcf7-textarea {
  width: 100%;
  outline: none;
  box-shadow: none;
  padding: 10px 15px;
  color: var(--dark);
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 10%);
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}

.send-your-enquiry .wpcf7-form p label {
  width: 100%;
  font-weight: 500;
  color: var(--dark);
}

.send-your-enquiry .wpcf7-form p .wpcf7-submit {
  background: linear-gradient(90deg, var(--arovan-base) 0%, var(--arovan-base) 100%);
  border: none;
  outline: none;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 18px rgba(98, 8, 177, 0.18);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s,
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.25s;
}

.send-your-enquiry .wpcf7-form p .wpcf7-submit::before {
  content: "";
  position: absolute;
  left: -75%;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-25deg);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  pointer-events: none;
}

.send-your-enquiry .wpcf7-form p .wpcf7-submit:hover {
  background: linear-gradient(90deg, var(--arovan-base) 0%, var(--arovan-base) 100%);
  color: #fff;
  transform: translateY(-4px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(98, 8, 177, 0.28),
    0 2px 8px rgba(255, 215, 0, 0.12);
}

.send-your-enquiry .wpcf7-form p .wpcf7-submit:hover::before {
  left: 120%;
}

.contact-wrap {
  padding: 50px;
  background: #fff;
  /* box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; */
  border-radius: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
.send-your-enquiry{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 30px;
  border-radius: 20px;
}
}
@media (max-width: 768px) {
  .contactus-widget .widget-contact .contact-area::after, .contactus-widget .widget-contact .contact-area::before{
   right: -55px;
  }
  .contactus-widget .widget-contact .contact-area{
    flex-wrap: wrap;
  }
  
}
@media (max-width:576px) {
  .contact-wrap{
    padding: 24px;
  }
  .contactus-widget .widget-contact .contact-icon{
    width: 50px;
  height: 50px;
  line-height: 50px;
  }
.contactus-widget .widget-contact .contact-info .text span{
 font-size: 16px;
}
.contactus-widget .widget-contact .contact-icon{
  font-size: 20px;
  margin-bottom: 10px;
}
.contactus-widget .widget-contact .contact-info .text a{
  font-size: 14px;
}

}
@media (max-width:360px) {
.contactus-widget .widget-contact .contact-icon.sm-icon{
    margin-right: 140px;
  }
  
}

.custom-pagination .page-item {
  margin: 0 5px;
  transition: transform 0.2s ease;
}

.custom-pagination .page-link {
  color: #6c757d;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.custom-pagination .page-link:hover {
  background-color: var(--arovan-base);
  color: white;
  transform: scale(1.1);
}

.custom-pagination .page-item.active .page-link {
  background-color: var(--arovan-base);
  color: #fff;
  border-color: var(--arovan-base);
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 123, 255, 0.3);
}

.custom-pagination .page-item:focus-within .page-link {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}


.article-content h2{
    color: var(--arovan-base);
    margin-bottom: 10px;
}


.image-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 15px 20px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #f9f9f9;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.image-actions .author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.image-actions .author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #007bff;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2);
}

.image-actions .author-detail .author-name {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.image-actions .blog-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}

.image-actions .category-tag {
  background-color: #007bff;
  color: #fff;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.image-actions .publish-date {
  font-size: 13px;
  color: #777;
}

@media (max-width: 576px) {
  .image-actions {
    align-items: flex-start;
  }

  .image-actions .blog-meta {
    align-items: flex-start;
    text-align: left;
  }
}



figure.table {
  max-width: 100%;
  margin: 40px auto;
  overflow-x: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
}

figure.table table {
  width: 100%;
  min-width: 600px; /* Ensures horizontal scroll on smaller screens */
  border-collapse: collapse;
}

figure.table thead {
  background-color: #007192;
  color: #fff;
}

figure.table thead th {
  padding: 14px 18px;
  font-size: 16px;
  text-align: left;
  font-weight: 600;
  border-right: 1px solid #00607e;
}

figure.table thead th:last-child {
  border-right: none;
}

figure.table tbody td {
  padding: 14px 18px;
  font-size: 15px;
  color: #333;
  border-bottom: 1px solid #eee;
}

figure.table tbody tr:nth-child(even) {
  background-color: #f6f9fa;
}

figure.table tbody tr:hover {
  background-color: #e0f3f6;
  transition: background 0.2s ease-in-out;
}

/* Scroller on small screens */
@media (max-width: 768px) {
  figure.table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}


figure.image img{
width: 100%;
    object-fit: contain;
    height: auto;
}
