.ai-hero {
  position: relative;
  background: url('http://sacumend.com/wp-content/themes/sacumen/banner.webp');
  padding: 140px 0 120px;     
  height: calc(100vh - 165px);
  overflow: hidden;
  background-size:cover;
}

/* AI glow background */
.ai-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(51,240,241,.25), transparent 60%);
  top: -120px;
  right: -120px;
  filter: blur(40px);
}

/* neural grid */
.ai-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 70px 70px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

/* HEADLINE */
.hero-text h1 {
  color: #fff;
  font-weight: 700;
  font-family: var(--sb);
    font-size: var(--fs-64);
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.2;
}
}

.hero-text h1 span {
  background: linear-gradient(74deg,#123b8e,#33f0f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* DESCRIPTION */
.hero-text p {

  text-align: center;
      font-family: var(--sm);
    color: #fff;
    font-size: var(--fs-18);
    line-height: 1.5;
}

/* CTA */
.hero-cta {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 10px;
  background: linear-gradient(74deg,#123b8e,#33f0f1);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(51,240,241,.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 16px;
  }
}
 /* Light Section */
        .section-light {
            background: #ffffff;
            padding: 50px 0;
        }
		
.section-light h2{ font-size: 42px;
    font-weight: 800;
font-family: var(--sb); }


.content-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            transition: all 0.4s;
            position: relative;
        }

        .content-image:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
        }

        .content-image img {
            width: 100%;
            height: auto;
            display: block;
        }.section-header {
            text-align: center;
            margin-bottom: 70px;
        }

       .section-subtitle {
            font-size: 18px;
    color: #000;
    text-align: center;
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
        }
		/* Challenge Section with Image */
        .challenge-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .challenge-content ul {
            list-style: none;
            margin: 30px 0;
        }

        .challenge-content ul li {
            padding: 20px;
            padding-left: 70px;
            position: relative;
            margin-bottom: 20px;
            font-size: 17px;
            color: #1f2937;
            background: #f1f5f9;
            border-radius: 12px;
            border-left: 4px solid #63b5cf;
            transition: all 0.3s;
        }

        .challenge-content ul li:hover {
            background: #e0e7ff;
            transform: translateX(5px);
        }

        .challenge-content ul li i {
            position: absolute;
            left: 25px;
            top: 22px;
            font-size: 24px;
            color: #3564a4;
        }
		.approach-dark {
  background: linear-gradient(74deg, #123b8e 8.14%, #33f0f1 109.64%);
  padding: 50px 0;
  color: #fff;
}

/* HEADER */
.approach-header {
  text-align: center;
  margin-bottom: 60px;
}

.approach-header h2 {
  font-size: 42px;
  font-weight: 800;font-family: var(--sb); color:#fff;
}

.approach-header p {
  color: #fff; font-size:18px;
}

/* FLOW */
.approach-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

/* CONNECTOR LINE */
.approach-flow::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 6%;
  width: 88%;
  height: 2px;
  background: linear-gradient(90deg,#123b8e,#33f0f1);
}

/* STEP */
.approach-step {
  text-align: center;
  background: #0d1026;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 1;
  transition: 0.3s ease;
}

.approach-step:hover {
  transform: translateY(-6px);
  border-color: #33f0f1;
}

/* ICON */
.step-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(74deg,#123b8e,#33f0f1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 15px;
}

.step-icon i {
  font-size: 24px;
  color: #fff;
}

/* TEXT */
.approach-step h3 {
  font-size: 18px;
  margin-bottom: 8px;font-family: var(--sb);
}

.approach-step p {
  color: #9aa3b2;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .approach-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-flow::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .approach-flow {
    grid-template-columns: 1fr;
  }
}

.ai-process {
  background: linear-gradient(74deg, #123b8e 8.14%, #33f0f1 109.64%);
  padding: 50px 0;
  color: #e5e7eb;
}

/* TIMELINE */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr 80px 1fr;
  align-items: center;
  position: relative;
  margin-bottom: 30px;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 8%;
  width: 84%;
  height: 2px;
  background: rgba(255,255,255,.25);
}

.circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: auto;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 8px solid #0f172a;
  box-shadow: 0 0 0 2px rgba(255,255,255,.25);
  position: relative;
  z-index: 2;
}

.red { background: #ef4444; }
.blue { background: #2563eb; }

/* PROCESS GRID */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 50px 1fr 50px 1fr 50px 1fr;
  align-items: center;
}

/* CARD */
.process-card {
  background: #111827;
  padding: 34px 28px;
  border-radius: 22px;
  text-align: center;
  min-height: 210px;
  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 10px 30px rgba(0,0,0,.6),
    inset 0 1px 0 rgba(255,255,255,.05);

  transition: all .35s ease;
  position: relative;
}


.process-card:hover {
  transform: translateY(-6px);
}

/* TEXT */
.process-card h3 {
  color: #f9fafb;
}

.process-card p {
  color: #cbd5e1;
}

/* ICON */
.icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border-radius: 16px;
  background: linear-gradient(135deg,#3b82f6,#22d3ee);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 20px rgba(59,130,246,.35);
}

/* ARROWS */
.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-line {
  width: 42px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg,#3b82f6,#22d3ee);
  background-size: 200% 100%;
  animation: flowArrow 3s linear infinite;
}

.arrow-head {
  width: 10px;
  height: 10px;
  border-top: 3px solid #22d3ee;
  border-right: 3px solid #22d3ee;
  transform: rotate(45deg);
  margin-left: -4px;
}

@keyframes flowArrow {
  from { background-position: 0% 0; }
  to { background-position: 200% 0; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .timeline-grid,
  .arrow {
    display: none;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.tab-content-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: center;
}

.tab-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* responsive */
@media(max-width:900px) {
  .tab-content-grid {
    grid-template-columns: 1fr;
  }

  .tab-image {
    order: -1;
  }
}

.tab-btn i {
  width: 18px;
  margin-right: 8px;
}

.title-icon {
  color: #2563eb;
  margin-right: 8px;
}

.tab-btn.active i {
  color: #fff;
}

.feature-list li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 8px;
}

.feature-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #33b5e5;
  font-size: 12px;
}
.ai-tabs-section {
  background: #f6f8fb;
  padding: 50px 0;
}

/* TITLE */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 42px;
  font-weight: 800;font-family: var(--sb);
}

/* LAYOUT */
.tabs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  margin: auto;
}

/* LEFT NAV */
.tabs-nav {
  background: #ffffff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.tab-btn {
  width: 100%;
  border: none;
  background: transparent;
  padding: 12px 14px;
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  font-size: 16px;
  color: #334155;
  transition: .2s; font-weight: 800;
}

.tab-btn:hover {
  background: #f1f5f9;
}

.tab-btn.active {
  background: linear-gradient(74deg, #123b8e 8.14%, #33f0f1 109.64%);
  color: #fff;
  font-weight: 800;
}

/* CONTENT CARD */
.tabs-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  min-height: 320px;
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
}

/* CONTENT TYPOGRAPHY */
.tab-panel h3 {
  margin-bottom: 10px;
  font-size: 20px; font-weight:800;
}

.tab-panel p {
  color: #64748b;
  margin-bottom: 12px;
}

/* FEATURE LIST */
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.feature-list li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
  color: #334155;
}

.feature-list li:before {
  content: "•";
  position: absolute;
  left: 6px;
  color: #2563eb;
  font-size: 18px;
}

/* VALUE BOX */
.value-box {
  margin-top: 22px;
  padding: 14px 18px;
  border-radius: 10px;
  background: linear-gradient(90deg,#eef2ff,#ecfeff);
  border-left: 4px solid #2563eb;
  font-weight: 600;
  color: #1e40af;
}

/* MOBILE */
@media(max-width:900px) {
  .tabs-layout {
    grid-template-columns: 1fr;
  }
}


/* LAYOUT */
.tabs-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start; /* important */
}

/* LEFT NAV STICKY */
.tabs-nav {
  position: sticky;
  top: 100px;
  height: fit-content;
}

/* RIGHT CONTENT SCROLL */
.tabs-content {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
  overflow-y: auto;
}


/* Smooth scrollbar (optional) */
.tabs-content::-webkit-scrollbar {
  width: 6px;
}

.tabs-content::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}
.tabs-nav {
  position: sticky;
  top: 100px;
}.impact-ai-strip { overflow: hidden; background: url(https://mediumslateblue-rhinoceros-171312.hostingersite.com/wp-content/themes/sacumen/assets/img/pre-built-connectors.jpg) no-repeat; background-size: 100% 100%; padding: 50px 0; color: #fff; }

/* HEADER */
.impact-header {
  text-align: center;
  margin-bottom: 30px;
}

.impact-header h2 {
  font-size: 42px;
  font-weight: 800;
  font-family: var(--sb);
  color: #fff;
}

.impact-header p {
  color: #fff;font-size: 18px;
}

/* STRIP */
.impact-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* STAT */
.impact-stat {
  padding: 40px 21px;
  text-align: center;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

.impact-stat:last-child {
  border-right: none;
}

.impact-stat:hover {
  background: #f8fafc;
}

/* VALUE */
.impact-stat h3 {
 font-size: var(--fs-48);
    font-family: var(--sb);
    background: linear-gradient(311deg, #283d91 -21.76%, #33f0f1 90.49%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    display: block;
}

/* TEXT */
.impact-stat p {
  font-size: 16px;
  color: #475569;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .impact-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .impact-strip {
    grid-template-columns: 1fr;
  }
}

.stories_frame {	
    padding: 20px;
}
.stories_frame .pera {
    margin-bottom: 20px;
}
.stories-section {
    position: relative;
    overflow: hidden;
    padding-top: 50px;
    padding-bottom: 10px;
}
.service-hero {
  background: linear-gradient(180deg,#f8fafc,#f1f5f9);
  padding: 50px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.image-card {
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.image-card img {
  width: 100%;
  border-radius: 12px;
}

/* TEXT */
.section-eyebrow {
  color: #2563eb;
  font-weight: 600;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 38px;
  margin-bottom: 14px;font-family: var(--sb);
}

.hero-desc {
  color: #64748b;
  margin-bottom: 30px;
  max-width: 520px;
}

/* FEATURES GRID */
.hero-features {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

/* FEATURE CARD */
.feature-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 12px;
  padding: 14px;
  border: 1px solid #e5e7eb;
  transition: .25s;font-family: var(--sb);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.feature-card i {
  width: 38px;
  height: 38px;
  background: linear-gradient(74deg,#123b8e,#33f0f1);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MOBILE */
@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}
.blog-section {
  background: #fff;
  padding: 60px 0;
}

/* TITLE */
.blog-title {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #0a2540;
  font-family: var(--sb);
}

/* GRID */
.blog-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.blog-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eef2f7;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 380px;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

/* IMAGE */
.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TAG */
.blog-tag {
  
  top: 14px;
  left: 14px;
  background: linear-gradient(74deg,#123b8e,#33f0f1);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: 0 6px 18px rgba(18,59,142,0.25);
}

/* CONTENT */
.blog-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;background: #16509a;
}

.blog-date {

  
   max-width: 105px;
    text-align: center;
    border: 1px solid #fff;
	margin-bottom:10px;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .3px;
  box-shadow: 0 6px 18px rgba(18,59,142,0.25);
}

.blog-content h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--sb);
}

.blog-content p {
  font-size: 15px;
  color: #fff;
  line-height: 1.6;
  flex-grow: 1;
}

/* BUTTON */
.blog-btn {
  margin-top: 12px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.blog-btn:hover {
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .blog-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .blog-wrapper {
    grid-template-columns: 1fr;
  }
}
/* SECTION */
.rsa-comparison-simple{
  padding:40px 20px;
  background:linear-gradient(180deg,#f8fafc,#f1f5f9);
}
/* Header Icons */
.rsa-table-simple thead th i{
  margin-right:8px;
  font-size:16px;
  vertical-align:middle;
}


.rsa-container{
  max-width:1200px;
  margin:auto;
}

/* HEADER */
.rsa-header-simple{
  text-align:center;
  margin-bottom:15px;
}

.rsa-header-simple h2{
  font-size:36px;
  font-weight:700;
  margin-bottom:12px;
  color:#0b1f3a;
}

.rsa-header-simple p{
  font-size:17px;
  color:#6b7280;
}

/* TABLE WRAPPER */
.rsa-table-wrapper-simple{
  overflow-x:auto;
  border-radius:14px;
  border:1px solid #e5e7eb;
}

/* TABLE */
.rsa-table-simple{
  width:100%;
  border-collapse:collapse;
  background:#fff;
}

/* TABLE HEADER */
.rsa-table-simple thead th{
  background:#123b8e;   /* header color */
  color:#ffffff;
  padding:20px;
  font-size:16px;
  font-weight:600;
  text-align:left;
}

/* ZEBRA ROWS */
.rsa-table-simple tbody tr:nth-child(even){
  background:#f9fafb;
}

.rsa-table-simple tbody td{
  padding:20px;
  font-size:16px;
  color:#374151;
  border-bottom:1px solid #e5e7eb;
}

/* FEATURED COLUMN */
.featured-head{
  background:#0f2f73 !important;
}

.featured-col{
  background:#eef4ff;
  font-weight:600;
  color:#123b8e;
}

/* HOVER */
.rsa-table-simple tbody tr:hover{
  background:#f1f5ff;
}

/* RESPONSIVE */
@media(max-width:768px){

  .rsa-header-simple h2{
    font-size:26px;
  }

  .rsa-table-simple thead{
    display:none;
  }

  .rsa-table-simple,
  .rsa-table-simple tbody,
  .rsa-table-simple tr,
  .rsa-table-simple td{
    display:block;
    width:100%;
  }

  .rsa-table-simple tr{
    margin-bottom:15px;
  }

  .rsa-table-simple td{
    border:none;
    padding:12px 15px;
  }
}
.feature-card i {

  font-family: dashicons;
  font-style: normal;
}
@media(max-width:480px){
.challenge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}.section-light h2 {
  font-size: 30px;
  font-weight: 800;
  font-family: var(--sb);
}.section-header {
  text-align: center;
  margin-bottom: 30px;
}.ai-process {
  background: linear-gradient(74deg, #123b8e 8.14%, #33f0f1 109.64%);
  padding: 30px 0;
  color: #e5e7eb;
}.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 800;
  font-family: var(--sb);
}.tabs-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}.impact-stat {
  padding: 20px 25px;
  text-align: center;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  transition: 0.25s ease;
}.impact-header h2 {
  font-size: 30px;
  font-weight: 800;
  font-family: var(--sb);
  color: #fff;
}
.image-card {
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  width: 93%;
}
.hero-content {
  width: 90%;
}.feature-card {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px;
  border: 1px solid #e5e7eb;
  transition: .25s;
  font-family: var(--sb);
  font-size: 12px;
}
}

/* Mobile view */
@media (max-width: 768px) {

  /* Hide tab buttons */
  .tabs-nav {
    display: none;
  }

  /* Show all tab content */
  .tab-panel {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Remove tab switching behavior */
  .tab-panel:not(.active) {
    display: block;
  }

  /* Optional: spacing between sections */
  .tab-panel {
    margin-bottom: 30px;
  }
}