* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 100px;
	
  scroll-behavior: smooth;
}

html, body, * {
  font-family: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  line-height: 1.6;
  background-color: #060C14;
  color: #B5BBC3;
}

a {
  text-decoration: none;
}

.img_fluid {
  max-width: 100%;
  height: auto;
}

.w-100 {
  width: 100% !important;
}

.text-center {
  text-align: center !important;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  /* padding: 0 20px; */
}

.blog_banner {
  background-image: url('../images/blog-banner.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  padding-top: 125px;
}

.banner_title {
  font-size: 3.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.banner_text {
  font-size: 1.5rem;
  margin: 0 auto;
}

.banner_button_holder{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.featured_blog {
  display: block;
  background: #0E151D;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured_blog_link {
  display: flex;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.featured_blog:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.featured_image {
  flex: 1;
  min-width: 50%;
}

.featured_image_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.featured_content {
  flex: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured_category {
  align-self: flex-start;
  margin-bottom: 20px;
}

.featured_title {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.featured_text {
  color: #B5BBC3;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.7;
}

.blog_layout {
  display: flex;
  gap: 40px;
  padding-bottom: 60px;
}

.blog_main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 2;
}

.blog_main_content {
  flex: 1;
  min-width: 0;
}

.blog_main .glow_btn{
  align-self: center;
}

.category_filters {
  background: #0A0F14;
  border: 1px solid #0F2139;
  border-width: 1px 0;
  padding: 30px 0;
  margin-bottom: 30px;
}

.category_filters .container {
  display: flex;
  flex-wrap: nowrap !important;
  justify-content: flex-start !important;
  justify-content: safe center !important;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #0974F2 transparent;
  gap: 12px;
  padding-bottom: 8px !important;
}

.category_filters .container::-webkit-scrollbar {
  height: 6px;
}
.category_filters .container::-webkit-scrollbar-track {
  background: transparent;
}
.category_filters .container::-webkit-scrollbar-thumb {
  background: #0974F2;
  border-radius: 10px;
}
.category_filters .container::-webkit-scrollbar-thumb:hover {
  background: #005bb5;
}



.filter_badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #0F1418;
  color: #B5BBC3;
  border: 1px solid #0F1418;
  padding: 8px 18px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.filter_badge:hover,
.filter_badge.active {
  background: #075DC2;
  color: #fff;
  border-color: #075DC2;
}

.badge_count {
  padding: 2px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.2);
}

.blog_sidebar {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}

.blog_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.blog_card {
  display: block;
  background: #0E151D;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog_card_link {
  display: block;
  color: inherit;
  text-decoration: none;
  width: 100%;
  height: 100%;
}

.blog_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog_card_image {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 13/5;
}

.card_content {
  padding: 20px;
}

/* .category {
  display: inline-block;
  background: #e94560;
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
} */
.category_border {
  position: relative;
  padding: 10px 20px;
  border-radius: 100px;
  /* background: #0a1020; */
  color: white;
  display: inline-block;
  margin-bottom: 20px;
}

.category_border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 100px;
  background: linear-gradient(74deg, #0974F2 50%, #05162B 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: badge-glow-pulse 2.4s ease-in-out infinite;
}

@keyframes badge-text-shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes badge-glow-pulse {
  0%, 100% { opacity: 0.95; filter: blur(5px); }
  50%       { opacity: 0.75; filter: blur(5px); }
}
 
.badge-text-shimmer {
  background: linear-gradient(
    90deg,
    #7DB9FF 0%,
    #FFFFFF 50%,
    #7DB9FF 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: badge-text-shimmer 3.5s linear infinite;
}

.blog_card_title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.blog_card_text {
  color: #B5BBC3;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.author_badge {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: rgba(41, 204, 89, 0.1);
  color: #29CC59;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.blog_card_details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8rem;
  color: #838A92;
  margin-bottom: 12px;
}

.left_holder {
  display: flex;
  align-items: center;
  gap: 8px;
}

.right_holder {
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.blog_card_details .dot {
  color: #838A92;
}

.blog_card_details .author_name {
  color: #ffffff;
  white-space: nowrap;
  font-weight: 500;
}

.know_more {
  display: inline-block;
  color: #838A92;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.know_more:hover,
.blog_card:hover .know_more,
.featured_blog:hover .know_more {
  text-decoration: underline;
}

.sidebar_card {
  background: #0F151D;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
}

.sidebar_title {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 15px;
}

.subscribe_form .sidebar_title{
  color: #0088FF;
}

.subscribe_text {
  color: #B5BBC3;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.form_input {
  width: 100%;
  padding: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 5px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #ffffff;
}

.glow_btn {
  display: inline-block;
  position: relative;
  padding: 8px 16px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: linear-gradient(
    109deg,
    #004fac 0%,
    #0075ff 47%,
    #0253b3 100%
  );
  color: white;
  font-size: 0.942rem;
  font-weight: 500;
  cursor: pointer;
  overflow: hidden;

  /* 3D depth */
  box-shadow:
    /* outer glow */
    0 -4px 15.4 3px rgba(0, 117, 255, 0.26),
    0 2px 13.8px 0 rgba(0, 117, 255, 0.25),

    /* depth shadow */
    0 0 0 2px rgba(9, 116, 242, 0.1),
    inset -2px 0 0 0 rgba(255, 255, 255, 0.2),

    /* top glossy highlight */
    inset 2px 0 0 0 rgba(255, 255, 255, 0.2),
    inset 0 4px 0 0 rgba(255, 255, 255, 0.2),

    /* bottom inner depth */
    inset 0 -2px 0 0 rgba(0, 0, 0, 0.2),
    inset 0 -2px 0 0 rgba(0, 0, 0, 0.2);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.glow_btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;

  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.35) 0%,
    rgba(255,255,255,0.08) 45%,
    rgba(255,255,255,0) 100%
  );

  pointer-events: none;
}
.glow_btn::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  background: rgba(0, 117, 255, 0.55);
  filter: blur(18px);
  z-index: -1;
}
.glow_btn:hover {
  color: #fff !important;
  transform: translateY(-2px) scale(1.03);

  box-shadow:
    0 0 28px rgba(0, 117, 255, 0.9),
    0 14px 28px rgba(0, 0, 0, 0.55),
    inset 0 2px 3px rgba(255, 255, 255, 0.45),
    inset 0 -5px 10px rgba(0, 0, 0, 0.35);
}
.glow_btn:active {
  transform: translateY(1px) scale(0.98);
}

.border_gradient_btn {
  display: inline-block;
  position: relative;
  padding: 8px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background-image: linear-gradient(#0d1520, #0d1520), linear-gradient(to right, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.9) 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  color: #ffffff;
  font-size: 0.942rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, background-image 0.3s ease;
}

.border_gradient_btn:hover {
  transform: translateY(-2px) scale(1.03);
  color: #fff !important;
  background-image: linear-gradient(#141c2b, #141c2b), linear-gradient(to right, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 1) 100%);
}

.border_gradient_btn:active {
  transform: translateY(1px) scale(0.98);
}

.trending_list_container {
  list-style: none;
}

.trending_thumbnail {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.trending_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #2a2a4e;
}

.trending_item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.trending_link {
  color: #B5BBC3;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trending_link span {
  flex: 1;
}

.topic_tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.topic_tag {
  background: #1D1E2C;
  color: #6B6B79;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.topic_tag.active{
  background-color: #0974F21A;
  border: 1px solid #0974F2;
  color: #0974F2;
}

.demo_card {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
}

.demo_card_title {
  color: #0088ff;
  font-weight: 600;
}

.demo_card_text {
  color: #b5bbc3;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.four_col_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.cta_section {
  padding: 80px 0;
  text-align: center;
  background-image: url('../images/cta-bg.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.cta_title {
  font-size: 60px;
  font-weight: 600;
  line-height: 130%;
  color: #fff;
  margin-bottom: 10px;
}

.cta_title span{
  color:#0974F2;
}

.cta_text {
  font-size: 24px;
  color: #B5BBC3;
  max-width: 980px;
  margin: 0 auto 40px auto;
}

.cta_button_holder {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #161b22;
}
::-webkit-scrollbar-thumb {
  background: #0974F2;
  border-radius: 3px;
}

.breadcrumb_section {
    background: #0A0F14;
    border: 1px solid #0F2139;
    border-width: 1px 0;
    padding: 35px 0;
    margin-top: 100px;
    margin-bottom: 40px;
}

.breadcrumb_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.breadcrumb_item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
}

.breadcrumb_link {
    color: #B5BBC380;
    transition: color 0.2s ease;
}

.breadcrumb_link:hover {
    color: #ffffff;
}

.breadcrumb_item:last-child .breadcrumb_link {
    color: #ffffff;
    pointer-events: none;
}

.breadcrumb_item:not(:last-child)::after {
    content: ">";
    margin-left: 15px;
    color: #B5BBC380;
    font-size: 1rem;
    pointer-events: none;
}

.page_contents_title{
    font-size: 1.25rem;
    font-weight: 600;
}

.page_contents_list{
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 350px;
    overflow: auto;
}

.page_contents_link{
    padding: 0 0 0 10px;
    color: #B5BBC3;
    text-decoration: none;
    border-left: 1px solid #303141;
}

.page_contents_link:hover {
    color: #ffffff;
    border-left: 1px solid #ffffff;
}
.page_contents_link.active {
    color: #0974F2;
    border-left: 1px solid #0974F2;
}

.blog_top_content h1{
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.blog_top_content p{
    font-size: 1.125rem;
    color: #B5BBC3;
    line-height: 145%;
    margin-bottom: 20px;
}

.blog_author_details{
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.blog_author_details .author_badge{
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: rgba(41, 204, 89, 0.1);
    color: #29CC59;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6875rem;
    font-weight: 700;
    flex-shrink: 0;
}
.blog_author_details_right{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.blog_author_details_right p{
    margin-bottom: 0;
}
.blog_author_details .author_name{
    font-size: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.blog_author_details .author_role{
    font-size: 0.75rem;
    color: #FFFFFF73;
}

.blog_analytics_holder{
    border-top: 1px solid #343443;
    border-bottom: 1px solid #343443;
    padding: 16px 12px;
    margin-bottom: 30px;
    display: flex;
    gap: 24px;
}

.blog_analytics{
    justify-content: flex-start;
    display: flex;
    width: calc(25% - 18px);
    gap: 4px;
    padding: 6.5px 0;
    align-items: center;
}

.blog_analytics:not(:last-child){
    border-right: 1px solid #343443;;
}

.blog_analytics_icon{
    flex-shrink: 0;
}

.blog_analytics_text{
    font-size: 1rem;
    color: #FFFFFF73;
}

.blog_analytics.share_buttons{
    gap: 12px;
}

.share_buttons .blog_analytics_text{
    font-size: 1rem;
    color: #B5BBC3;
}

.blog_analytics.share_buttons a{
    background-color: #0974F21A;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
}

.blog_featured_image{
    aspect-ratio: 13/5;
    object-fit: cover;
    width: 100%;
    border-radius: 18px;
    margin-bottom: 30px;
}

.blog_content_wrapper p{
    font-size: 1.125rem;
    color: #B5BBC3;
    line-height: 145%;
    margin-bottom: 30px;
}

.blog_content_wrapper strong{
    font-weight: 600;
}

.blog_content_wrapper pre{
    background-color: #0974F21A;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    border-left: 1px solid #0974F2;
    font-size: 1.125rem;
    color: #0974F2;
    line-height: 145%;
    white-space: wrap;
}

.blog_content_wrapper pre strong{
    font-weight: 600;
}

.blog_content_wrapper h2{
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 20px;
}

.blog_content_wrapper h3{
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.blog_content_wrapper h4{
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 20px;
}

.blog_content_wrapper h5{
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.blog_content_wrapper h6{
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.blog_content_wrapper ul{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 1.25rem;
    color: #ffffff;
    line-height: 145%;
}


.blog_content_wrapper ul li{
    position: relative;
    padding-left: 28px;
    margin-bottom: 20px;
}

@keyframes bulletPulse {
    0%, 100% { opacity: 0.6; transform: scale(0.9); }
    50% { opacity: 1; transform: scale(1.1); }
}
 
.blog_content_wrapper ul li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    min-width: 12px;
    min-height: 12px;
    max-width: 12px;
    max-height: 12px;
    border-radius: 50%;
    background: #0974F2;
    box-shadow: 0 0 8px 2px rgba(9, 116, 242, 0.6);
    animation: bulletPulse 2000ms ease-in-out infinite;
}

.blog_content_wrapper ol{
    margin-bottom: 0px;
    font-size: 1.125rem;
    color: #ffffff;
    line-height: 145%;
    list-style-position: inside;
}

.blog_content_wrapper ol li{
    margin-bottom: 20px;
}

.blog_content_wrapper ol li::marker{
    color: #0974F2;
}

.blog_content_wrapper img{
    object-fit: cover;
    max-width: 100%;
    width: auto;
    height: auto;
	margin: 30px auto 20px auto;
    display: block;
}

.table_responsive_wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 50px;
    border-radius: 13px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.blog_content_wrapper table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0.5px;
    text-align: left;
    min-width: 700px;
    overflow: clip;
    background-color: transparent;
}

.blog_content_wrapper thead {
    background: linear-gradient(90deg, rgba(9, 116, 242, 0.40) 0%, rgba(15, 21, 29, 0) 100%), #0F151D;
}

.blog_content_wrapper th, .blog_content_wrapper td {
    padding: 20px 16px;
    font-size: 1rem;
    color: #B5BBC3;
    width: 33.33%;
}

.blog_content_wrapper th {
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog_content_wrapper td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.blog_content_wrapper tbody tr:last-child td {
    border-bottom: none;
}

.blog_content_wrapper a{
    text-decoration: underline;
    color: #0974F2;
}

.blog_content_wrapper hr{
    margin-bottom: 20px;
    border: 0;
    height: 1px;
    border-top: 1px solid #343443;
    background-color: #343443;
}

.related_blogs_section{
    background: #0A0F14;
    border: 1px solid #0F2139;
    border-width: 1px 0;
    padding: 60px 0;
}

.related_blogs_title{
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.related_blogs_description{
    font-size: 1.25rem;
    color: #B5BBC3;
    line-height: 145%;
    margin-bottom: 20px;
}

.related_blogs_grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.related_blogs_section .blog_card_image{
    aspect-ratio: 13/5;
}

.featured_whitepaper {
    background: #0A0F14;
    border: 1px solid #0F2139;
    border-width: 1px 0;
    padding: 80px 0
}

.featured_whitepaper_inner {
  display: flex;
  background: #0E151D;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.featured_whitepaper_image {
  flex: 0 0 50%;
}

.featured_whitepaper_image_img {
  width: 100%;
  height: 100%;
  aspect-ratio: 13/5;
  object-fit: cover;
}

.featured_whitepaper_content {
  flex: 1;
  background-image: url('../images/featured-whitepaper-left-bg.webp');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured_whitepaper_title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.featured_whitepaper_text {
  color: #B5BBC3;
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 30px;
}

.featured_whitepaper_content.blog_card_details{ color: #565F6B important;}

.featured_whitepaper_content .blog_card_details {
  margin-bottom: 30px;
  justify-content: flex-start;
  gap: 8px;
}

.featured_whitepaper_btn {
  align-self: flex-start;
}

.whitepaper_grid_section {
  padding: 80px 0;
  border-bottom: 1px solid #0F2139;
}

.whitepaper_section_header {
  margin-bottom: 50px;
}

.whitepaper_section_title {
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.3;
}

.whitepaper_section_subtitle {
  color: #B5BBC3;
  font-size: 1.125rem;
  margin: 0 auto;
  line-height: 1.5;
}

.whitepapers_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.whitepaper_card {
  display: flex;
  flex-direction: column;
  background: #0E151D;
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), 
              border-color 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.whitepaper_card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 117, 255, 0.15);
}

.whitepaper_card_image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.whitepaper_card_image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 13/5;
  object-fit: cover;
}

.whitepaper_card_content {
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.whitepaper_card_title {
  font-size: 1.35rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.whitepaper_card:hover .whitepaper_card_title {
  color: #0075ff;
}

.whitepaper_card_text {
  color: #B5BBC3;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.whitepaper_card_btn {
  align-self: flex-start;
  margin-top: auto;
  width: auto;
  text-align: center;
  font-size: 0.875rem;
  padding: 10px 20px;
}

.whitepaper_grid_actions {
  margin-top: 50px;
}

.load_more_btn {
  padding: 12px 36px;
  font-size: 1rem;
}

.blog_analytics_holder.whitepaper_analytics_holder {
    border: 0;
}

.whitepaper_featured_image_holder{
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.whitepaper_featured_image_holder .blog_featured_image.whitepaper_featured_image {
    margin-bottom: 15px;
}

.whitepaper_featured_image_holder .whitepaper_featured_image_caption {
    color: #B5BBC3;
    font-size: 1rem;
    line-height: 145%;
    letter-spacing: -0.5%;
}

.blog_content_wrapper.whitepaper_content_wrapper pre{
    font-size: 1rem;
    color: #B5BBC3;
}

.blog_content_wrapper.whitepaper_content_wrapper pre strong{
    display: block;
    font-weight: 600;
    letter-spacing: 5%;
    color: #0974F2;
    margin-bottom: 6px;
}

.blog_content_wrapper.whitepaper_content_wrapper li h4{
    margin-bottom: 5px;
    color: white;
}

.blog_content_wrapper.whitepaper_content_wrapper ul{
    color: #B5BBC3;
    font-size: 1.125rem;
}

.blog_content_wrapper.whitepaper_content_wrapper ul li strong{
    font-size: 1.25rem;
    font-weight: 400;
    color: white;
}

.whitepaper_download_form{
    background: linear-gradient(to bottom right, #0974f20d, #0f151d00);
}

.whitepaper_download_form .sidebar_title{
    font-size: 1.125rem;
    font-weight: 600;
    color: #0974F2;
    margin-bottom: 13px;
}

.whitepaper_download_form hr{
    margin-bottom: 13px;
    border: 0;
    height: 1px;
    border-top: 1px solid #ffffff0F;
    background-color: #ffffff0F;
}

.whitepaper_download_form .subscribe_text{
    font-size: 0.875rem;
    margin-bottom: 13px;
}

.whitepaper_download_form .form_input{
    margin-bottom: 13px;
}

.related_blogs_section.related_whitepaper_section{
    text-align: center;
}

.related_blogs_section.related_whitepaper_section .related_blogs_grid{
    text-align: start;
}

.blog_banner.case_study_banner{
    background-image: url('../images/case-study-banner.webp');
}

.case_filters_title{
    padding:80px 0 10px 0;
    background: #0A0F14;
    border: 1px solid #0F2139;
    border-width: 1px 0 0 0;
}

.case_filters_title .container{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.case_filters_title h3{
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 116%;
    letter-spacing: -0.5%;
    color: white;
}

.case_filters_title p{
    font-size: 1.25rem;
    letter-spacing: -0.5%;
    color: #B5BBC3;
}

.case_filters{
    border: 0;
    margin: 0;
    padding-bottom: 40px;
}

.case_cards_section{
    background: #0A0F14;
    padding-bottom: 20px;
}

.case_grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.case_grid .blog_card_details .author_name,
.blog_grid .blog_card_details .author_name{
    color: #565F6B;
}

.case_card .case_card_title{
    font-size: 1.5rem;
    font-weight: 400;
}

.case_card .case_card_text{
    margin-bottom: 15px;
}

.case_card .blog_card_details{
    margin-bottom: 15px;
    justify-content: flex-start;
}

.case_card .case_link{
    font-size: 1.125rem;
    font-weight: 500;
    color: #0974F2;
    line-height: 145%;
    gap: 6px;
    transition: color 0.25s ease, transform 0.25s ease, gap 0.25s ease;
    text-decoration: none;
}

.case_card .case_link:hover{
    color: #0556b3;
    gap: 10px;
    text-decoration: underline;
}

.testimonial_section {
    background: #060C18;
    padding: 80px 0;
    border: 1px solid #0F2139;
    border-width: 1px 0;
}

.testimonial_header {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial_title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.testimonial_subtitle {
    font-size: 1.25rem;
    color: #B5BBC3;
    letter-spacing: -0.1px;
}

.testimonial_card {
    background: #0F1418;
    border: 1px solid #0974f278;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    backdrop-filter: blur(8px);
}

.testimonial_image_holder {
    flex-shrink: 0;
}

.testimonial_image_holder img {
    border-radius: 50%;
    object-fit: cover;
}

.testimonial_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial_quote {
    font-size: 1.5rem;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.testimonial_author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author_avatar {
    width: 38px;
    height: 38px;
    background: rgba(41, 204, 89, 0.1);
    color: #29CC59;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar_initials {
    font-size: 10px;
    font-weight: 700;
}

.author_info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author_info .author_name {
    font-size: 1.125rem;
    color: #fff;
    line-height: 1.3;
    margin: 0;
}

.author_info .author_role {
    font-size: 0.9375rem;
    color: #BEBEBE;
    margin: 0;
    line-height: 1.3;
}

.cta_section.case_cta{
    padding: 142.5px;
    background-image: url(../images/case-cta-bg.webp);
}

.use_cases_list{
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.use_cases_list .use_cases_list_title{
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0;
}

.use_cases_list .case_catagory{
    text-transform: uppercase;
    margin-bottom: 0;
}

.case_analytics_holder{
    flex-wrap: wrap;
    border-top: 0.5px solid #343443;
    border-bottom: 0.5px solid #343443;
    padding: 0;
    gap: 0;
}

.case_analytics_holder .case_analytics{
    width: 33.33%;
    padding: 16px 12px;
    border-top: 0.5px solid #343443;
    border-bottom: 0.5px solid #343443;
    border-right: 0;
    position: relative;
}
.case_analytics_holder .case_analytics::after{
    content: "";
    position: absolute;
    right: 0;
    top: 16px;
    bottom: 16px;
    width: 1px;
    background: #343443;
}

.case_analytics_holder .case_analytics:nth-child(3n)::after{
    display: none;
}

.case_analytics{
    gap: 8px;
}

.case_analtics_icon_holder{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: #FFFFFF14;
    background: #0F151D;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.case_analtics_icon_holder::before{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(9, 116, 242, 0.4) 0%, rgba(15, 21, 29, 0) 100%);
    pointer-events: none;
}

.case_analytics_text{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
}

.case_analytics_text .case_analytics_title{
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    color: white;
    margin-bottom: 0;
}

.case_analytics_text .case_analytics_sub_text{
    font-size: 0.75rem;
    font-weight: 400;
    color: #FFFFFF73;
    margin-bottom: 0;
}

.related_case_section{
    padding: 80px 0;
}

.related_case_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.related_case_header .related_case_title{
    margin-bottom: 0;
}

.related_case_header .related_case_description{
    margin-bottom: 0;
}

.case_content_wrapper pre h3{
    color: #E8F2FF;
    font-weight: 500;
    margin: 12px 40px 52px 40px;
}

.case_content_wrapper pre h5{
    color: #B5BBC3;
    font-weight: 600;
    margin: 0 40px 28px 40px;
}

.case_author_details{
    padding: 20px;
    border: 1px solid #343443;
    border-width: 1px 0;
}

.author_badge.case_author_badge{
    width: 40px;
    height: 40px;
}

a:hover { color: inherit !important; }


ol, ul { padding-left: 0; }

@media (max-width: 1200px) {
    .case_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta_section.case_cta {
        padding: 100px 60px;
    }
}

@media (max-width: 1024px) {
  .banner_title { font-size: 2.75rem; }
  .banner_text { font-size: 1.25rem; }
  .featured_title { font-size: 1.6rem; }
  .featured_text { font-size: 0.95rem; }
  .blog_card_title { font-size: 1.05rem; }
  .cta_title { font-size: 48px; }
  .cta_text { font-size: 20px; }
  .blog_top_content h1 {
      font-size: 2.25rem;
  }
  
  .blog_content_wrapper h2 {
      font-size: 1.75rem;
  }
  
  .blog_content_wrapper h3 {
      font-size: 1.35rem;
  }
  
  .related_blogs_title {
      font-size: 2rem;
  }
  
  .related_blogs_grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
  }
  
  .blog_analytics_holder {
      flex-wrap: wrap;
      row-gap: 20px;
  }
  
  .blog_analytics {
      width: calc(50% - 12px);
  }
  
  .blog_analytics:nth-child(2) {
      border-right: none;
  }
  .featured_whitepaper_inner {
    flex-direction: column;
  }
  
  .featured_whitepaper_image {
    width: 100%;
    max-width: none;
    height: 350px;
  }
  
  .featured_whitepaper_content {
    padding: 40px;
  }
  
  .featured_whitepaper_title {
    font-size: 2rem;
  }
  .whitepapers_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .whitepaper_section_title {
    font-size: 2.25rem;
  }
  .whitepaper_card_content {
    padding: 24px;
  }
  .blog_content_wrapper.whitepaper_content_wrapper ul li strong {
      font-size: 1.125rem;
  }
  .blog_content_wrapper.whitepaper_content_wrapper li h4 {
      font-size: 1.125rem;
  }

}

@media (max-width: 992px) {
  .blog_layout {
    flex-direction: column;
  }

  .blog_sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    position: static;
    align-self: auto;
  }

  .sidebar_card {
    flex: 1;
    min-width: 280px;
  }

  .sidebar_card.page_contents{ display: none; }
}

@media (max-width: 991px) {
  .subscribe_form form{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .demo_card_mobile{
    display: flex;
    flex-direction: column;
  }
  .demo_card_mobile .glow_btn{
    align-self: center;
  }
  .blog_sidebar .trending_blogs,
  .blog_sidebar .browse_topics {
    display: none;
  }
  .blog_sidebar{
    width: auto;
  }
  .browse_topics{
    height: fit-content;
  }
  .whitepaper_download_form{
    width: 50%;
    align-self: center;
  }
    .case_filters_title {
        padding: 60px 0 10px 0;
    }

    .case_filters_title .container {
        flex-direction: column;
        gap: 10px;
    }

    .case_filters_title h3 {
        font-size: 2rem;
    }

    .case_filters_title p {
        font-size: 1.125rem;
    }

    .testimonial_card {
        flex-direction: column;
        gap: 30px;
        padding: 30px;
    }

    .testimonial_quote{
        text-align: center;
        font-size: 1.25rem;
    }

    .testimonial_author {
        justify-content: center;
    }

    .testimonial_title {
        font-size: 2rem;
    }

    .cta_section.case_cta {
        padding: 80px 30px;
    }
    .case_analytics_holder .case_analytics {
        width: 50%;
    }
    .case_analytics_holder .case_analytics:nth-child(3n)::after {
        display: block;
    }
    .case_analytics_holder .case_analytics:nth-child(2n)::after {
        display: none;
    }
    .related_case_section {
        padding: 60px 0;
    }
    .case_content_wrapper pre h3 {
        margin: 12px 30px 40px 30px;
    }
    .case_content_wrapper pre h5 {
        margin: 0 30px 24px 30px;
    }
}

@media (max-width: 768px) {
  .banner_title { font-size: 2.2rem; }
  .banner_text { font-size: 1.1rem; }
  .featured_title { font-size: 1.4rem; }
  .featured_text { font-size: 0.9rem; }
  .blog_card_title { font-size: 1rem; }
  .cta_title { font-size: 36px; line-height: 1.2; }
  .cta_text { font-size: 16px; margin-bottom: 30px; }
  .blog_grid {
    grid-template-columns: 1fr;
  }

  .featured_blog_link {
    flex-direction: column;
  }

  .featured_image {
    min-width: 100%;
  }

  .featured_image_img {
    height: 250px;
  }

  .featured_content {
    padding: 30px;
  }
  .blog_top_content h1 {
      font-size: 1.75rem;
  }
  
  .blog_top_content p,
  .blog_content_wrapper p,
  .blog_content_wrapper ul,
  .blog_content_wrapper ol,
  .blog_content_wrapper pre {
      font-size: 1rem;
  }
  
  .blog_content_wrapper h2 {
      font-size: 1.5rem;
  }
  
  .blog_content_wrapper h3 {
      font-size: 1.25rem;
  }
  
  .related_blogs_title {
      font-size: 1.75rem;
  }
  
  .related_blogs_description {
      font-size: 1rem;
  }
  
  .related_blogs_grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  
  .blog_analytics_holder {
      flex-direction: column;
      row-gap: 15px;
      padding: 20px 15px;
  }
  
  .blog_analytics {
      width: 100%;
      padding: 0 0 15px 0;
  }
  
  .blog_analytics:not(:last-child) {
      border-right: none;
      border-bottom: 1px solid #343443;
  }
  
  .blog_analytics:last-child {
      padding-bottom: 0;
  }
  
  .breadcrumb_section {
      padding: 20px 0;
      margin-top: 80px;
      margin-bottom: 20px;
  }
  
  .related_blogs_section {
      padding: 40px 0;
  }
  
  .blog_content_wrapper table {
      min-width: 500px;
  }
  .featured_whitepaper_title {
    font-size: 1.75rem;
  }
  
  .featured_whitepaper_content {
    padding: 25px;
  }

  .featured_whitepaper_image {
    height: 250px;
  }
  
  .featured_whitepaper_content .blog_card_details {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .featured_whitepaper_btn {
    width: 100%;
  }
  .whitepaper_grid_section {
    padding: 60px 0;
  }
  .whitepapers_grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .whitepaper_section_title {
    font-size: 1.85rem;
  }
  .whitepaper_section_subtitle {
    font-size: 1rem;
  }
  .whitepaper_card_title {
    font-size: 1.25rem;
  }
  .whitepaper_card_btn {
    width: 100%;
  }
  .whitepaper_featured_image_holder {
      margin-bottom: 30px;
  }
  .whitepaper_featured_image_holder .whitepaper_featured_image_caption {
      font-size: 0.875rem;
  }
  .blog_content_wrapper.whitepaper_content_wrapper pre {
      font-size: 0.875rem;
  }
  .blog_content_wrapper.whitepaper_content_wrapper ul li strong {
      font-size: 1rem;
  }
  .blog_content_wrapper.whitepaper_content_wrapper li h4 {
      font-size: 1rem;
  }
  .whitepaper_download_form .sidebar_title {
      font-size: 1rem;
  }
    .case_grid {
        grid-template-columns: 1fr;
    }

    .case_filters_title {
        padding: 40px 0 10px 0;
    }

    .case_filters_title h3 {
        font-size: 1.625rem;
    }

    .case_filters_title p {
        font-size: 1rem;
    }

    .testimonial_section {
        padding: 60px 0;
    }

    .testimonial_card {
        padding: 24px;
        gap: 20px;
    }

    .testimonial_quote {
        font-size: 1.125rem;
    }

    .testimonial_title {
        font-size: 1.5rem;
    }

    .testimonial_subtitle {
        font-size: 1rem;
    }

    .cta_section.case_cta {
        padding: 60px 20px;
    }
    .use_cases_list .use_cases_list_title {
        font-size: 1.125rem;
    }
    .case_analytics_holder.case_analytics_holder {
        flex-direction: row;
    }
    .related_case_section {
        padding: 40px 0;
    }
    .related_case_header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 30px;
    }
    .case_content_wrapper pre h3 {
        margin: 12px 15px 32px 15px;
        font-size: 1.125rem;
    }
    .case_content_wrapper pre h5 {
        margin: 0 15px 20px 15px;
        font-size: 0.9rem;
    }
    .case_author_details {
        padding: 15px;
    }
    .author_badge.case_author_badge {
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 480px){
    .case_analytics_holder .case_analytics {
        padding: 12px 8px;
    }
}