@charset "UTF-8";
body {
  background-color: #0b0d17;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
}

.head-banner {
  padding-inline: 120px;
  padding-top: 95px;
  padding-bottom: 60px;
  border-bottom: 1px solid #2c343c;
}

.banner-container {
  max-width: 1608px;
}

.main-image-hero img {
  margin-bottom: 16px;
}

.main-image-hero img {
  width: 100%;
  /* height: 500px; */
  object-fit: fill;
  background-size: cover;
}

.digi-btn {
  font-family: Montserrat;
}

.banner-container h1 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 2px;
  text-transform: capitalize;
  margin-bottom: 20px;
  max-width: 1040px;
}

.list-items {
  display: flex;
  gap: 64px;
}

.list-items li {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 34px;
  letter-spacing: 0%;
  color: rgb(204, 204, 204);
}

@media (max-width: 992px) {
  .head-banner {
    padding: 40px;
    padding-top: 50px;
    padding-bottom: 24px;
  }
  .banner-container h1 {
    font-size: 24px;
    line-height: 34px;
  }
  .main-image-hero {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .head-banner {
    padding: 16px;
  }
  .blog-container {
    padding: 0px !important;
  }
  .main-image-hero {
    padding: 16px;
  }
  .list-items {
    gap: 10px;
    list-style: none;
  }
  .list-items li {
    font-size: 11px;
    line-height: 20px;
  }
}
.blog-container {
  display: grid;
  grid-template-columns: 400px 1fr 400px;
  gap: 40px;
  max-width: 1723px;
  margin: 100px auto;
  padding: 0 20px;
}

@media (max-width: 1680px) {
  .blog-container {
    grid-template-columns: 350px 1fr 350px !important;
    padding: 0 80px;
  }
}
@media (max-width: 1440px) {
  .blog-container {
    grid-template-columns: 300px 1fr 300px !important;
    padding: 0 40px;
  }
}
@media (max-width: 992px) {
  .blog-container {
    padding: 0 20px;
    grid-template-columns: 1fr !important;
  }
}
/* Sticky sidebars */
.toc,
.contact-form {
  position: sticky;
  top: 100px;
  align-self: start;
}

/* Table of Contents */
.toc {
  padding: 40px 32px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), linear-gradient(0deg, rgba(8, 18, 28, 0.4), rgba(8, 18, 28, 0.4));
  border-radius: 12px;
  border: 1px solid rgb(255, 255, 255);
}

.toc h3 {
  margin-bottom: 10px;
  font-family: Montserrat;
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: rgb(255, 255, 255);
}

.toc ul {
  list-style: disc;
  padding: 0;
  margin: 0;
}

.toc ul li {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: #ffffff;
}

.toc a {
  color: white;
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: 0.3s;
}

.toc a:hover {
  color: #00baff;
}

.toc a.active {
  color: #00baff;
  font-weight: bold;
}

/* Main Content */
.blog-content section {
  scroll-margin-top: 120px;
}

.blog-content h2 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 33px;
  margin-top: 33px;
}

.blog-content .vision-content h2 {
  text-align: center;
}

.blog-content p {
  font-family: Montserrat;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: 0px;
  margin-bottom: 16px;
}

.blog-content-btm {
  margin-bottom: 30px;
}

.blog-content-btm h2 {
  font-family: Montserrat;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.blog-content-btm p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  letter-spacing: 0px;
  color: rgb(204, 204, 204);
}

.share-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  font-weight: 500;
}

.share-section span {
  color: #b0b9c4;
}

.share-section a {
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.share-section a:hover {
  color: #fff;
  font-family: Montserrat;
  font-weight: 500;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
}

@media (max-width: 1440px) {
  .toc {
    padding: 40px 24px;
  }
  .form-box {
    border-radius: 12px !important;
    padding: 40px 15px !important;
  }
}
.author-box {
  display: flex;
  align-items: center;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid white;
  border-bottom: none;
}

.author-box img {
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin-right: 20px;
}

.author-info h4 {
  font-family: Montserrat;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 140%;
  letter-spacing: 0px;
  margin-bottom: 13px;
}

.author-info p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}

.author-social {
  font-size: 24px;
  display: flex;
  gap: 15px;
}

.author-social a:hover {
  color: #fff;
}

.digi-insights-section {
  padding-block: 50px;
}

.digi-insights-section {
  position: relative;
  padding-left: 120px;
  padding-right: 120px;
  padding-block: 0px;
  /* padding-top: 62.43px;
  padding-bottom: 108.5px; */
}

.side-border {
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  padding-inline: 97px;
  padding-top: 62.7px;
  padding-bottom: 110px;
}

.top-border {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.digi-insights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.digi-insights-title {
  font-size: 26px;
  font-weight: 600;
}

.digi-view-all {
  font-size: 14px;
  text-decoration: none;
  color: #aaa;
  transition: color 0.3s;
}

.digi-view-all:hover {
  color: #fff;
}

/* Grid Layout */
.digi-insights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.digi-insight-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  transition: transform 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.digi-insight-card:hover {
  transform: translateY(-5px);
}

.digi-insight-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  min-height: 400px;
}

.digi-insight-content {
  padding: 15px;
}

.digi-insight-category {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 5px;
}

.digi-insight-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* Featured (middle) card spans 2 columns only on large screens */
.digi-insight-card.middle-card {
  grid-column: span 2;
}

.insight-wrapper {
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 62.43px;
  padding-bottom: 108.5px;
}

.side-border {
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.top-border {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* Responsive breakpoints */
@media (max-width: 1680px) {
  .digi-insights-section {
    padding-left: 80px;
    padding-right: 80px;
  }
  .side-border {
    padding-inline: 32px;
  }
}
@media (min-width: 1240px) {
  .digi-insights-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 1240px) {
  .digi-insights-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .digi-insight-card.middle-card {
    grid-column: span 1; /* fall back to normal */
  }
  .digi-insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .Explore-bookmark {
    padding-bottom: 0px;
  }
  .digi-insights-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .side-border {
    padding-inline: 25px;
  }
}
@media (max-width: 767px) {
  .digi-insights-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .side-border {
    padding-inline: 8px;
  }
}
@media (max-width: 600px) {
  .digi-insights-title {
    font-size: 20px;
  }
  .digi-insight-title {
    font-size: 14px;
  }
  .digi-insight-image {
    height: 160px;
  }
  .digi-insights-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.insights-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 81.43px 70px;
  /* border-top: 1px solid #0af;
  border-bottom: 1px solid #0af; */
  /* background: linear-gradient(to right, #0b0b0d, #000); */
}

.insights-title {
  font-size: 48px;
  font-weight: 600;
  margin: 0;
  max-width: 1162px;
  line-height: 100%;
}

.digi-insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.software-vision {
  background-image: url("/wp-content/themes/digimantra/asset/img/blog-section-background.png");
  background-size: cover;
  background-position: center;
  padding: 32px;
  align-items: center;
  margin-bottom: 40px;
}

.software-vision h1 {
  font-family: Montserrat;
  font-weight: 600;
  font-size: 38px;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.software-vision p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0%;
  text-align: center;
  margin-bottom: 24px;
  color: rgb(235, 235, 235);
}

.digi-link-wrap {
  text-align: center;
}

.form-box {
  border-radius: 12px;
  padding: 40px 32px;
  border: 0.91px solid #9aa3ac;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.06)), linear-gradient(0deg, rgba(8, 18, 28, 0.8), rgba(8, 18, 28, 0.8));
}

.form-box h2 {
  margin-bottom: 20px;
  font-size: 32px;
  line-height: 32px;
  font-weight: 700;
}

.form-box form input,
.form-box form select,
.form-box form textarea {
  width: 100%;
  padding: 17px 24px;
  margin-bottom: 20px;
  border: 1px solid #fff;
  border-radius: 15px;
  background: transparent;
  color: #fff;
}

.form-box form input::placeholder,
.form-box form select::placeholder,
.form-box form textarea::placeholder {
  color: #fff;
}

.form-box form textarea {
  resize: none;
  height: 100px;
}

.form-box button {
  width: 100%;
  padding: 15px 50px;
  border-radius: 20px;
  justify-content: center;
  color: #fff;
}

.form-box .iti {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.lets-mob-btn {
  display: none;
}

.side-border h1 {
  font-family: Montserrat;
  font-weight: 500;
  font-size: 48px;
  line-height: 58px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

li.toc-item.toc-h2 a.active {
  color: #00bfff !important;
  font-weight: 600;
  transition: color 0.3s ease;
}

.name-info {
  display: flex;
  justify-content: space-between;
}

/* Responsive */
@media (max-width: 992px) {
  .blog-container {
    grid-template-columns: 1fr;
  }
  .toc,
  .contact-form {
    position: static;
    margin-bottom: 30px;
    display: none;
  }
}
/* --- Sticky TOC Sidebar --- */
.toc {
  position: sticky;
  top: 100px;
  align-self: flex-start;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.toc::-webkit-scrollbar {
  display: none;
}

.toc::-webkit-scrollbar {
  width: 6px;
}

.toc::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}

/* TOC links styling */
.toc ul {
  list-style: disc;
  margin: 0;
  padding: 0;
  padding-left: 18px;
}

.toc ul li {
  margin-bottom: 8px;
}

.toc ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease;
}

.toc ul li a:hover {
  color: #0073aa;
}

.toc ul li a.active {
  color: #0073aa;
  font-weight: 600;
  font-size: 16px;
}

.custom-comments-wrapper {
  margin-top: 60px;
  padding: 40px;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.custom-comments-wrapper h3,
.custom-comments-wrapper h2,
.comment-reply-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
}

.custom-comments-wrapper h3::after,
.comment-reply-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #0073aa;
  margin-top: 10px;
  border-radius: 3px;
}

/* Comment List */
.commentlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 20px 25px;
  margin-bottom: 20px;
}

.comment .comment-author,
.comment .comment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment .comment-author cite {
  font-weight: 600;
  color: #111;
  font-style: normal;
}

.comment .comment-meta a {
  font-size: 13px;
  color: #999;
  text-decoration: none;
}

.comment .comment-content {
  margin-top: 10px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.comment .avatar {
  display: none !important;
}

.comment-reply-link {
  display: inline-block;
  margin-top: 10px;
  background: #0073aa;
  color: #fff !important;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.comment-reply-link:hover {
  background: #005f87;
}

.comment-respond {
  margin-top: 50px;
}

.comment-respond label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #fff;
}

.comment-form input[type=text],
.comment-form input[type=email],
.comment-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 15px;
  margin-bottom: 20px;
  transition: border-color 0.2s ease;
}

.comment-form input[type=text]:focus,
.comment-form input[type=email]:focus,
.comment-form textarea:focus {
  border-color: #0073aa;
  outline: none;
}

.comment-form textarea {
  min-height: 90px;
  resize: vertical;
}

.comment-form input[type=submit] {
  background: #0073aa;
  color: #fff;
  border: none;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.comment-form input[type=submit]:hover {
  background: #005e8c;
}

.must-log-in {
  background: #f3f3f3;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  color: #555;
}

.must-log-in a {
  color: #0073aa;
  font-weight: 600;
  text-decoration: none;
}

.must-log-in a:hover {
  text-decoration: underline;
}

@media (max-width: 1240px) and (min-width: 993px) {
  .blog-container {
    grid-template-columns: 250px 1fr 250px;
    gap: 20px;
    padding: 0 20px;
  }
  .head-banner {
    padding-inline: 40px;
    padding-top: 70px;
    padding-bottom: 45px;
  }
  .banner-container h1 {
    font-size: 36px;
    line-height: 48px;
  }
  .toc h3 {
    font-size: 24px;
  }
  .form-box h2 {
    font-size: 24px;
    margin-bottom: 6px;
  }
  .toc {
    padding: 40px 15px;
  }
  .form-box {
    padding: 40px 9px !important;
  }
  .form-box form input, .form-box form select, .form-box form textarea {
    padding: 15px 18px;
  }
  .toc ul li {
    line-height: 21px;
  }
  .toc ul li a {
    font-size: 14px;
  }
  .toc ul li a.active {
    font-size: 15px;
  }
  .toc ul li {
    margin-bottom: 0;
  }
}
.ai-hero {
  background: #07111B;
  padding: 36px;
  border-radius: 12px;
  color: #ffffff;
}

.ai-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.ai-image img {
  max-width: 100%;
  height: auto;
}

.ai-content h2 {
  font-size: 24px;
  color: #ccc;
  font-weight: 600;
  line-height: 140%;
  margin-bottom: 20px;
  letter-spacing: 0px;
  margin-top: 0px;
}

.ai-content p {
  font-family: Montserrat;
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
  line-height: 140%;
  letter-spacing: 0px;
  margin-bottom: 20px;
}

.features {
  display: flex;
  gap: 60px;
  margin-bottom: 32px;
}

.features ul {
  list-style: none;
}

.features li {
  font-size: 14px;
  font-family: Montserrat;
  color: #e5e7eb;
  margin-bottom: 14px;
  display: flex;
}

.features li img {
  max-width: 20px;
  margin: 0px;
}

.features li span {
  margin-left: 12px;
}

/* CTA BUTTON */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: #ffffff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-btn .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn:hover svg {
  transform: translateX(5px);
  transition: transform 0.3s ease;
}

/* TAB CARD */
.ai-hero {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  padding: 24px 26px 30px 23px;
  background: transparent;
  border: 1px solid transparent; /* ensure border area exists */
}

/* Frosted glass */
.ai-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  z-index: 0;
}

/* Gradient border */
.ai-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px; /* thickness */
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) -10.55%, #FFFFFF 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}

.ai-hero:hover::after {
  background-image: url("/wp-content/uploads/2025/09/Developer-Image-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 1580px) {
  .ai-content h2 {
    font-size: 22px;
    margin-bottom: 9px;
  }
  .ai-content p {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .features {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
  }
}
@media (max-width: 1460px) {
  .ai-content h2 {
    font-size: 18px;
    margin-bottom: 9px;
  }
  .ai-content p {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .features li {
    font-size: 10px;
  }
  .features {
    display: flex;
    gap: 5px;
    margin-bottom: 12px;
  }
  .cta-btn {
    gap: 12px;
    padding: 12px 18px;
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .ai-content h2 {
    font-size: 18px;
  }
  .ai-content p {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .features {
    display: flex;
    gap: 0px;
    margin-bottom: 7px;
  }
}
@media (max-width: 992px) {
  .ai-content h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
    margin-bottom: 20px;
    letter-spacing: 0px;
    margin-top: 0px;
  }
  .ai-content p {
    font-size: 14px;
  }
  .features {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .ai-container {
    flex-direction: column;
  }
  .ai-hero {
    padding: 24px;
  }
  .ai-image {
    display: none;
  }
  .features {
    gap: 16px;
  }
  .ai-content p {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 14px;
  }
  .features li {
    font-size: 10px;
  }
  .cta-btn {
    width: 100%;
    font-size: 14px;
    justify-content: center;
  }
}
/* ------------------FAQ SECTION START------------------ */
.faq-section {
  padding: 20px 20px;
  background-color: #08121C;
  margin-bottom: 40px;
}

.faq-section .faq-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.faq-section .faq-icon {
  font-size: 16px;
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}

.faq-section .faq-item.active .faq-icon {
  transform: rotate(0deg);
}

.faq-section .faq-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1680px;
  margin: auto;
  gap: 40px;
}

.faq-section .faq-left {
  flex: 1 1 35%;
}

.faq-section h2 {
  font-size: 48px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 58px;
  text-transform: uppercase;
  background: linear-gradient(100.61deg, #FFFFFF 30.32%, rgba(255, 255, 255, 0) 129.88%);
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  background-clip: text;
  margin-bottom: 20px;
}

.faq-section p {
  font-size: 24px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  line-height: 34px;
  color: #ccc;
  max-width: 1075.5px;
  margin-bottom: 40px;
}

.faq-section .ask-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #4db8ff;
  color: white;
  font-size: 18px;
  font-weight: 500;
  padding: 12px;
  text-decoration: none;
  width: fit-content;
  gap: 8px;
  text-transform: uppercase;
}

.faq-section .faq-left img {
  width: 100%;
  max-width: 421px;
  max-height: 530px;
  margin-top: 35px;
}

.faq-section .faq-right {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-section .faq-item {
  border-left: 1.5px solid rgba(26, 117, 219, 0.5019607843);
  padding: 16px 0 16px 24px;
  background-color: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}

.faq-section .faq-item.active {
  border-left: 1.5px solid #1A76DB;
}

.faq-section .faq-question {
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  line-height: 34px;
}

.faq-section .faq-answer {
  font-size: 16px;
  font-weight: 400;
  margin-top: 24px;
  color: #ccc;
  line-height: 24px;
  display: none;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.faq-section .faq-item.active .faq-answer {
  transform: translateY(0);
  display: block;
}

/* ----------- max-width: 1279px ----------- */
@media (max-width: 1279px) {
  .faq-section {
    padding: 32px 40px;
  }
  .faq-section .faq-container {
    flex-direction: column;
  }
  .faq-section .faq-container .faq-left .ask-btn {
    display: none;
  }
  .faq-section .faq-container .faq-left img {
    display: none;
  }
}
/* ----------- max-width: 1024px ----------- */
@media (max-width: 1024px) {
  .faq-section {
    padding: 32px 40px;
  }
  .faq-section .faq-container {
    gap: 56px;
  }
  .faq-section .faq-container .faq-left h2 {
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 10.67px;
  }
  .faq-section .faq-container .faq-left p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
  }
  .faq-section .faq-container .faq-right .faq-question {
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
  }
  .faq-section .faq-container .faq-right .faq-answer {
    font-size: 16px;
    line-height: 140%;
    font-weight: 300;
  }
}
/* ----------- max-width: 767px ----------- */
@media (max-width: 767px) {
  .faq-section {
    padding: 40px 16px 64px 16px;
  }
  .faq-section .faq-container {
    gap: 48px;
  }
  .faq-section .faq-container .faq-left h2 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 22px;
  }
  .faq-section .faq-container .faq-left p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 0;
  }
  .faq-section .faq-container .faq-right .faq-question {
    font-size: 18px;
    line-height: 24px;
  }
  .faq-section .faq-container .faq-right .faq-answer {
    line-height: 140%;
    font-weight: 300;
  }
}
.blog-article {
  font-family: "Montserrat", sans-serif;
  color: #222;
  line-height: 1.6;
}

/* Headings */
.blog-title {
  font-size: 42px;
  font-family: "Montserrat", sans-serif;
  line-height: 52px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.blog-subtitle {
  font-size: 28px;
  line-height: 38px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 10px;
  color: #fff;
}

.blog-heading3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

.blog-table {
  margin-bottom: 16px;
  padding: 5px;
}

.blog-table td {
  padding: 10px;
  font-family: "Montserrat", sans-serif;
}

.blog-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  object-fit: contain;
}

/* Paragraphs */
.blog-intro {
  font-size: 18px;
  line-height: 28px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 20px;
}

.blog-intro a {
  color: #007bff;
  font-family: "Montserrat", sans-serif;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-paragraph a {
  color: #007bff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-list li a {
  color: #007bff;
  font-family: "Montserrat", sans-serif;
}

.blog-main-content {
  font-family: "Montserrat", sans-serif;
}

.blog-paragraph {
  font-size: 16px;
  line-height: 26px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 16px;
}

/* Emphasis text */
.blog-strong {
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

/* Lists */
.blog-list {
  list-style: disc;
  padding-left: 25px;
  margin: 12px 0 24px 0;
  font-family: "Montserrat", sans-serif;
}

.blog-list li {
  margin-bottom: 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
}

/* Images */
.blog-image {
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

/* Spacing for   lines (optional) */
.blog-article br,
.blog-article [style*= ] {
  display: block;
  margin: 10px 0;
}

.blog-list li::marker {
  color: rgb(31, 127, 231);
}

.blog-content blockquote {
  margin: 40px 0px 40px 10px;
  padding: 0px 20px 0px 25px;
  border-left: 2px solid rgb(31, 127, 231);
}

.blog-content blockquote p {
  margin: 0;
  font-style: italic;
  font-size: 17px;
}

.blog-content ul li {
  list-style: disc;
}

.blog-content ul li::marker {
  color: rgb(31, 127, 231);
}

.blog-content p a {
  color: #007bff;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-content ul li a {
  color: #007bff;
  font-family: "Montserrat", sans-serif;
}

.blog-main-content {
  font-family: "Montserrat", sans-serif;
}

.blog-content p {
  font-size: 16px;
  line-height: 26px;
  font-family: "Montserrat", sans-serif;
  color: #fff;
  margin-bottom: 16px;
}

/* Emphasis text */
.blog-strong {
  font-weight: 600;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: "Montserrat", sans-serif;
}

/* Lists */
.blog-content ul {
  list-style: disc;
  padding-left: 25px;
  margin: 12px 0 24px 0;
  font-family: "Montserrat", sans-serif;
}

.blog-content h3 {
  font-size: 26px;
  line-height: 38px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}

/* Lists */
.blog-content ol {
  padding-left: 25px;
  margin: 12px 0 24px 0;
  font-family: "Montserrat", sans-serif;
}

.blog-content ol li {
  margin-bottom: 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
}

.blog-content ul li {
  margin-bottom: 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  line-height: 24px;
}

/* Images */
.blog-content img {
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid;
  color: #ffffff;
  font-family: Arial, sans-serif;
  margin-top: 15px;
  margin-bottom: 20px;
}

.blog-content table tr th {
  padding: 14px;
  text-align: center;
  font-size: 18px;
  border: 2px solid;
  background-color: rgb(31, 127, 231);
}

.blog-content table tbody td {
  padding: 14px;
  border: 1.5px solid #374151;
  vertical-align: top;
  line-height: 1.6;
}

.blog-content li h3 {
  font-size: 26px;
  line-height: 38px;
  font-weight: 600;
}

.blog-content ol h3 {
  font-size: 26px;
  line-height: 38px;
  font-weight: 600;
}

.blog-content ul h3 {
  font-size: 26px;
  line-height: 38px;
  font-weight: 600;
}

@media (max-width: 1440px) {
  .blog-container {
    grid-template-columns: 250px 1fr 275px;
    gap: 20px;
  }
  .form-box h2 {
    font-size: 28px;
  }
}
.blog-content table tr:first-child th,
.blog-content table tr:first-child td {
  padding: 14px;
  text-align: center;
  font-size: 18px;
  border: 2px solid;
  background-color: rgb(31, 127, 231);
}

.digi-btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #fff;
  padding: 15px 24px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
  background: linear-gradient(328.68deg, rgba(22, 69, 121, 0.1) 19.02%, rgba(26, 118, 219, 0.1) 81.19%);
  border-radius: 60px;
  display: inline-flex;
  column-gap: 8px;
  outline: none;
  z-index: 1;
}

.digi-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  z-index: -1;
  padding: 1px;
  background: linear-gradient(106.59deg, #5EA0E8 31.35%, #355A82 72.33%);
  -webkit-mask: linear-gradient(106.59deg, #5EA0E8 31.35%, #355A82 72.33%) content-box, linear-gradient(106.59deg, #5EA0E8 31.35%, #355A82 72.33%);
  mask-composite: exclude;
}

.digi-btn:hover {
  background: linear-gradient(328.68deg, rgba(22, 69, 121, 0.1) 19.02%, rgba(26, 118, 219, 0.1) 81.19%), linear-gradient(328.68deg, #135196 19.02%, #3193FF 81.19%) !important;
  color: #fff !important;
}

.Explore-bookmark .digi-inline-btn span {
  display: flex;
  align-items: center;
}

.digi-insights-section {
  position: relative;
  padding-left: 120px;
  padding-right: 120px;
}

.side-border {
  border-left: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
}

.top-border {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.digi-insights-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 10px;
}

.digi-insights-title {
  font-size: 26px;
  font-weight: 600;
}

.digi-view-all {
  font-size: 14px;
  text-decoration: none;
  color: #aaa;
  transition: color 0.3s;
}

.digi-view-all:hover {
  color: #fff;
}

/* Grid Layout */
.digi-insights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.digi-insight-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  transition: transform 0.3s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.digi-insight-card:hover {
  transform: translateY(-5px);
}

.digi-insight-image {
  width: 100%;
  height: auto;
  object-fit: contain !important;
  display: block;
  min-height: auto !important;
}

.digi-insight-content {
  padding: 15px;
}

.digi-insight-category {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 5px;
}

.digi-insight-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

/* Featured (middle) card spans 2 columns only on large screens */
.digi-insight-card.middle-card {
  grid-column: span 1;
}

.insight-wrapper {
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 62.43px;
  padding-bottom: 108.5px;
}

.side-border {
  border-left: 1px solid #2C343C;
  border-right: 1px solid #2C343C;
}

.top-border {
  border-top: 1px solid #2C343C;
  border-bottom: 1px solid #2C343C;
}

/* Responsive breakpoints */
@media (max-width: 1680px) {
  /* .digi-insights-section {
      padding-left: 80px;
      padding-right: 80px;
  } */
  .side-border {
    padding-inline: 32px;
  }
}
/* @media(max-width:1440px){
 .digi-insights-grid {
 grid-template-columns:1fr 1fr;
}
.digi-insight-image{
  object-fit:cover
}
} */
@media (max-width: 1240px) {
  .digi-insights-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .digi-insight-card.middle-card {
    grid-column: span 1; /* fall back to normal */
  }
}
@media (max-width: 992px) {
  .Explore-bookmark {
    padding-bottom: 0px;
  }
  .digi-insights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .digi-insights-section {
    padding-left: 40px;
    padding-right: 40px;
  }
  .side-border {
    padding-inline: 25px;
  }
}
@media (max-width: 767px) {
  .digi-insights-section {
    padding-left: 20px;
    padding-right: 20px;
  }
  .side-border {
    padding-inline: 8px;
  }
}
@media (max-width: 600px) {
  .digi-insights-title {
    font-size: 20px;
  }
  .digi-insight-title {
    font-size: 14px;
  }
  .digi-insight-image {
    height: auto;
  }
}
.insights-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 81.43px 70px;
  /* border-top: 1px solid #0af;
  border-bottom: 1px solid #0af; */
  /* background: linear-gradient(to right, #0b0b0d, #000); */
}

.insights-title {
  font-size: 48px;
  font-weight: 600;
  margin: 0;
  max-width: 1162px;
  line-height: 100%;
}

.digi-insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 767px) {
  .Bookmark-content-wrap .bookmark-title {
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 2px;
  }
}
@media (max-width: 1980px) {
  h1.bookmark-title {
    font-size: 48px;
    line-height: 58px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
}
@media (max-width: 360px) {
  .home-inline-block-title {
    width: 343px;
    font-size: 24px;
  }
}
@media (max-width: 992px) {
  /* target the first .digi-insights-grid on the page */
  .digi-insights-grid:nth-of-type(1) {
    grid-template-columns: 1fr 1fr;
  }
  .digi-insights-grid:nth-of-type(1) > :first-child {
    grid-column: span 1; /* first card spans across */
  }
}
@media (max-width: 767.7px) {
  .insights-section.tab-border {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .insights-section .hire-link {
    font-size: 14px !important;
  }
  .insights-title {
    font-size: 24px !important;
    line-height: 34px !important;
    max-width: 331px !important;
  }
  .digi-visionary-brands-section {
    padding-block: 0px !important;
  }
}
.digi-insight-title a {
  transition: color 0.3s ease-out;
  outline: none;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 600px) {
  .digi-insights-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

/*# sourceMappingURL=single-post-pages.css.map */
