 
  .cs-wrap { display: flex; min-height: 600px; gap: 0; border: 0.5px solid #1e3a5f; border-radius: 12px; overflow: hidden; background: #050d1a; }
  .cs-nav { width: 240px; min-width: 240px; background: #070f1e; border-right: 0.5px solid #1e3a5f; display: flex; flex-direction: column; padding: 16px 0; overflow-y: auto; margin: 40px;}
  .cs-nav-item { display: flex; align-items: center; gap: 10px; padding: 11px 18px; cursor: pointer; border-left: 3px solid transparent; transition: all 0.2s; color: #7a9cc0; font-size: 13px; font-weight: 400; }
  .cs-nav-item:hover { background: #0d1f38; color: #90c4f0; }
  .cs-nav-item.active { border-left-color: #2d87e8; background: #0d1f38; color: #90c4f0; }
  .cs-nav-item .cs-icon { font-size: 16px; min-width: 18px; }
  .cs-content { flex: 1; overflow-y: auto; padding: 28px 32px; background: #050d1a; }
  .cs-overview { }
  .cs-overview-title { font-size: 22px; font-weight: 500; color: #c8e0f8; margin: 0 0 6px; }
  .cs-overview-sub { font-size: 13px; color: #3d7ab8; margin: 0 0 18px; text-transform: uppercase; letter-spacing: 0.08em; }
  .cs-overview-text { font-size: 14px; color: #7a9cc0; line-height: 1.75; margin: 0 0 24px; }
  .cs-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 18px; border: 0.5px solid #2d87e8; border-radius: 8px; background: transparent; color: #2d87e8; font-size: 13px; cursor: pointer; transition: all 0.2s; }
  .cs-btn:hover { background: #0d2f5a; }
  .cs-detail { }
  .cs-back { display: inline-flex; align-items: center; gap: 6px; color: #3d7ab8; font-size: 13px; cursor: pointer; margin-bottom: 20px; background: none; border: none; padding: 0; transition: color 0.2s; }
  .cs-back:hover { color: #90c4f0; }
  .cs-detail-title { font-size: 20px; font-weight: 500; color: #c8e0f8; margin: 0 0 20px; }
  .cs-section { margin-bottom: 22px; }
  .cs-section-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #2d87e8; font-weight: 500; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
  .cs-section-label i { font-size: 14px; }
  .cs-section-text { font-size: 13.5px; color: #7a9cc0; line-height: 1.75; }
  .cs-pills { display: flex; flex-wrap: wrap; gap: 7px; }
  .cs-pill { font-size: 12px; padding: 4px 12px; border-radius: 20px; background: #0a1e38; border: 0.5px solid #1e3a5f; color: #5a9fd4; }
  .cs-benefits { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
  .cs-benefits li { font-size: 13px; color: #7a9cc0; display: flex; align-items: flex-start; gap: 8px; }
  .cs-benefits li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #2d87e8; margin-top: 6px; flex-shrink: 0; }
  .cs-steps { display: flex; flex-direction: column; gap: 0; }
  .cs-step { display: flex; gap: 14px; }
  .cs-step-line { display: flex; flex-direction: column; align-items: center; }
  .cs-step-dot { width: 28px; height: 28px; border-radius: 50%; background: #0a1e38; border: 1.5px solid #2d87e8; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 500; color: #2d87e8; flex-shrink: 0; }
  .cs-step-vline { width: 1.5px; flex: 1; background: #1e3a5f; min-height: 16px; }
  .cs-step-body { padding-bottom: 18px; }
  .cs-step-name { font-size: 13px; font-weight: 500; color: #90c4f0; margin-bottom: 3px; }
  .cs-step-desc { font-size: 12.5px; color: #5a7a9c; line-height: 1.6; }
  .cs-divider { height: 0.5px; background: #1e3a5f; margin: 18px 0; }
  .cs-best { background: #060e1c; border: 0.5px solid #1e3a5f; border-radius: 8px; padding: 14px 16px; }
  .cs-best-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: #2d87e8; font-weight: 500; margin-bottom: 6px; }
  .cs-best-text { font-size: 13px; color: #7a9cc0; line-height: 1.6; }
  .fade-in { animation: fadeIn 0.28s ease forwards; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
  .slide-detail { animation: slideDetail 0.3s ease forwards; }
  @keyframes slideDetail { from { opacity: 0; transform: translateX(16px); } to { opacity: 1; transform: translateX(0); } }
  .cs-nav-header { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: #2d5a8a; padding: 8px 18px 6px; font-weight: 500; }
  @media (max-width: 600px) {
    .cs-wrap { flex-direction: column; }
    .cs-nav { width: 100%; min-width: 100%; border-right: none; border-bottom: 0.5px solid #1e3a5f; padding: 8px 0; flex-direction: row; flex-wrap: wrap; overflow-x: auto; }
    .cs-nav-item { border-left: none; border-bottom: 3px solid transparent; flex-direction: column; gap: 4px; padding: 8px 12px; font-size: 11px; text-align: center; }
    .cs-nav-item.active { border-bottom-color: #2d87e8; border-left-color: transparent; }
    .cs-nav-header { display: none; }
    .cs-content { padding: 20px 16px; }
  }


  .casestudies_sec {
  margin: 2rem 0 4rem 0;
  position: relative;
}

.viewCaseStudies {
  border: 1px solid #fff;
  color: #fff;
  border-radius: 10px;
  padding: 10px 1.5rem;
}

.casestudies_sec h4 {
  text-align: center;
  line-height: normal;
  font-size: 2.7rem;
  color: #fff;
  font-weight: 700;
  text-transform: capitalize;
}

.caseStudiesSliderBox h4 {
  font-size: 2rem;
  color: #fff;
  font-weight: 600;
  text-align: left;
  margin-bottom: 1rem;
}

.casestudies_slider {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.slider-casestudies {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

.caseStudiesSliderBox {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

.caseStudiesBottomArrows {
  position: absolute;
  /* bottom: 15px; */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 40;
}

.caseStudiesBottomArrows button {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  border: none;
  padding: 8px;
  background-color: #0b79be;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.caseStudiesBottomArrows button:hover {
  background-color: transparent;
  color: #0b79be;
  border: 1px solid #0b79be;
}

.caseStudiesBottomArrows button i {
  font-size: 1rem;
}

/* place arrows slightly outside the slider for better touch */
.caseStudiesLeftArrow {
  left: -24px;
}

.caseStudieRightArrow {
  right: -24px;
}

.caseStudiesLeftArrow:hover,
.caseStudieRightArrow:hover {
  background-color: transparent;
  color: #0b79be;
  border: 1px solid #0b79be;
}

.caseStudiesLeftArrow i,
.caseStudieRightArrow i {
  font-size: 1.2rem;
}

.case_box {
  padding: 15px;
  border-radius: 20px;
  height: 380px;
  align-items: stretch;
  overflow: hidden;
  scroll-snap-align: start;
  position: relative;
}

.case_box p {
  display: -webkit-box;
  -webkit-line-clamp: 9;
  /* Limit to 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: start;
  color: #fff;
  margin-bottom: 2rem;
}

.case_logo img {
  margin-bottom: 1rem;
  height: auto;
  width: 100px;
}

.case_img img {
  float: right;
  /* max-height: 350px; */
  width: 100%;
  height: auto;
  text-align: center;
}

.img-landscape {
  padding: 10px 6px 10px 0;
  align-items: center !important;
  justify-content: center !important;
}

.img-wrapper {
  /* position: absolute; */
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-landscape img {
  width: 100%;
  height: auto;
  /* max-height: 100%; */
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  opacity: 0.95;
}

.case-available {
  display: flex;
  gap: 10px;
  margin-bottom: 3rem;
  align-items: center;
}

.img-portrait {
  align-items: flex-end;
}

.img-portrait img {
  /* height: 100%; */
  width: auto;
  object-fit: contain;
  object-position: bottom;
  border-radius: 12px 12px 0 0;
  filter: drop-shadow(0 -8px 24px rgba(0, 0, 0, 0.4));
}

.case-available p {
  /* marg */
  margin-bottom: 0;
}

.case-available img {
  filter: invert(1);
  width: 40px;
  height: 40px;
}

/* case studies section end */
@media only screen and (max-width: 500px) {
  /*  */
  .case_logo img {
    margin-bottom: 1rem;
    height: 50px;
    width: auto;
    max-width: 140px;
    display: block;
  }

  .casestudies_sec h4 {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .img-wrapper {
    margin-top: 1.5rem;
  }

  .casestudies_slider {
    padding-bottom: 1rem;
  }

  .caseStudiesSliderBox {
    min-width: 100%;
  }

  .caseStudiesLeftArrow,
  .caseStudieRightArrow {
    /* z-index: 1000 !important; */
    top: 95% !important;
  }

  .caseStudieRightArrow {
    right: 125px;
  }

  .caseStudiesLeftArrow {
    left: 125px;
  }

  .caseStudiesSliderBox {
    padding: 20px;
  }

  .case-available p {
    display: inline;
  }
}

  /* FIX SLIDER HEIGHT + NO BLANK SPACE */
  .case_box {
    height: 450px !important;
    min-height: 450px !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15px;
  }

  /* FIX SLIDER ITEM WIDTH */
  .caseStudiesSliderBox {
    min-width: 100%;
    max-width: 100%;
    padding: 10px;
  }

  /* FIX TRACK HEIGHT */
  .slider-casestudies {
    align-items: stretch;
  }

  /* FIX IMAGE SIZE */
  .img-portrait img {
    max-height: 200px;
    width: auto;
    margin: 0 auto;
  }

  .img-landscape img {
    max-height: 180px;
    width: 100%;
  }

  /* REMOVE EXTRA SPACE */
  .casestudies_slider {
    height: auto;
    overflow: hidden;
  }

  /* CENTER CONTENT */
  .case_box .row {
   
    text-align: center;
  }

  /* OPTIONAL: HIDE LONG TEXT */
  .case_box p {
    /* display: none; */
  }
.case_box{
    height: 450px; /* apni requirement ke hisab se */
    display: flex;
    flex-direction: column;
}

.case_box .row{
    height: 100%;
    align-items: center;
}


/* =============================================
   HERO SECTION
============================================= */
  .hero-visual-wrapper{
    display:flex;
    align-items:flex-start;
    justify-content:center;
}

.hero-image-box{
    margin-top:-120px;
}

.hero-security-image{
    width:100%;
    max-width:650px;
    height:auto;
}
.hero-section-main {
  position: relative;
  min-height: 100vh;
  background: #030712;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 30px 0;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,80,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,80,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: rgba(30,80,255,0.18);
  top: -150px; left: -100px;
}
.hero-glow-2 {
  width: 400px; height: 400px;
  background: rgba(0,200,255,0.1);
  bottom: -100px; right: 10%;
}
.hero-content-wrapper {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30,80,255,0.12);
  border: 1px solid rgba(30,80,255,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #60a5fa;
  margin-bottom: 24px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: #3b82f6;
  border-radius: 50%;
  animation: hero-pulse 2s infinite;
}
@keyframes hero-pulse {
  0%,100% { opacity:1; transform: scale(1); }
  50% { opacity:0.5; transform: scale(1.4); }
}
.hero-heading-h1 {

  font-size: 3rem;
  font-weight: 800;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-heading-accent {
  background: linear-gradient(135deg, #3b82f6, #60a5fa, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subheading {
  
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 30px rgba(59,130,246,0.35);
  text-decoration: none;
}
.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(59,130,246,0.55);
  color: #fff;
  text-decoration: none;
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 14px 28px;
  
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.hero-btn-secondary:hover {
  border-color: rgba(59,130,246,0.5);
  background: rgba(59,130,246,0.08);
  color: #fff;
  text-decoration: none;
}
.hero-trust-bar {
  display: flex;
  
  gap: 8px;
}
.hero-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 7px 13px;
  
  font-size: 12px;
  color: #94a3b8;
  white-space: nowrap;
}
.hero-trust-badge i { color: #3b82f6; font-size: 11px; }
.hero-visual-wrapper {
  position: relative;
  z-index: 2;
}


/* =============================================
   TRUST SECTION
============================================= */
.sdp-clients { background: var(--sdp-dark-2); padding-top: 30px; padding-bottom: 30px; }
.sdp-clients-heading {  font-size: 1rem; color: #fff; text-align: center; letter-spacing: 0.05em; margin-bottom: 24px; font-weight: 500; }
.sdp-logo-strip-wrap { overflow: hidden; position: relative; }
.sdp-logo-strip-wrap::before, .sdp-logo-strip-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none; }
.sdp-logo-strip-wrap::before { left: 0; background: linear-gradient(90deg, var(--sdp-dark-2), transparent); }
.sdp-logo-strip-wrap::after { right: 0; background: linear-gradient(270deg, var(--sdp-dark-2), transparent); }
.sdp-logo-strip { display: flex; gap: 48px; animation: sdpScrollLogos 28s linear infinite; width: max-content; align-items: center; padding: 12px 0; }
.sdp-logo-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; padding: 12px 24px;  font-weight: 700; font-size: 0.85rem; color: rgba(148,163,184,0.7); white-space: nowrap; transition: all 0.3s; min-width: 120px; text-align: center; }
.sdp-logo-item img{
    width: auto;
    height: 30px;
}
.sdp-logo-item:hover { border-color: rgba(37,99,235,0.3); color: var(--sdp-white); }
@keyframes sdpScrollLogos { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
/* =============================================
   WHAT ARE CYBERSECURITY SERVICES
============================================= */
.whatcyber-section-main {
  background: #030712;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.whatcyber-section-main::before {
  content: '';
  position: absolute;
  right: -200px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,80,255,0.1), transparent 70%);
  pointer-events: none;
}
.whatcyber-tag {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 16px;
}
.whatcyber-heading {

  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 28px;
}
.whatcyber-body {
  
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.8;
  margin-bottom: 24px;
}
.whatcyber-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  border-bottom: 1px solid rgba(59,130,246,0.3);
  padding-bottom: 2px;
  transition: gap 0.3s;
}
.whatcyber-link:hover { gap: 14px; color: #60a5fa; text-decoration: none; }
.whatcyber-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whatcyber-circle-outer {
  width: 320px; height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: whatcyber-rotate 30s linear infinite;
}
.whatcyber-circle-inner {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(30,80,255,0.08);
  border: 1px solid rgba(59,130,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: whatcyber-rotate 20s linear infinite reverse;
}
.whatcyber-shield-icon {
  font-size: 64px;
  color: #3b82f6;
  filter: drop-shadow(0 0 20px rgba(59,130,246,0.4));
}
.whatcyber-orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(59,130,246,0.6);
}
.whatcyber-orbit-dot:nth-child(1) { top: -5px; left: 50%; transform: translateX(-50%); }
.whatcyber-orbit-dot:nth-child(2) { bottom: -5px; left: 50%; transform: translateX(-50%); }
.whatcyber-orbit-dot:nth-child(3) { left: -5px; top: 50%; transform: translateY(-50%); }
.whatcyber-orbit-dot:nth-child(4) { right: -5px; top: 50%; transform: translateY(-50%); }
@keyframes whatcyber-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* =============================================
   CYBER THREATS SECTION
============================================= */
.threats-section-main {
  background: #050d1a;
  padding: 30px 0;
  position: relative;
}
.threats-section-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(30,80,255,0.07), transparent);
  pointer-events: none;
}
.section-label-tag {
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 14px;
}
.section-heading-h2 {

  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-subheading {
  
  font-size: 16px;
  color: #64748b;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.threats-card-box {
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  cursor: default;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.threats-card-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.threats-card-box:hover {
  transform: translateY(-6px);
  border-color: rgba(59,130,246,0.35);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(59,130,246,0.12);
}
.threats-card-box:hover::before { opacity: 1; }
.threats-card-emoji {
  font-size: 38px;
  display: block;
  margin-bottom: 16px;
}
.threats-card-title {

  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
}

/* =============================================
   SERVICES SECTION
============================================= */
.services-section-main {
  background: #030712;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.services-intro-text {
  font-weight: 500;
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 16px;
}
.services-card-box {
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 32px 26px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative;
  overflow: hidden;
}
.services-card-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  transform: scaleX(0);
  transition: transform 0.4s;
  transform-origin: left;
}
.services-card-box:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 30px rgba(30,80,255,0.1);
}
.services-card-box:hover::after { transform: scaleX(1); }
.services-card-icon {
  width: 52px; height: 52px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #3b82f6;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.services-card-box:hover .services-card-icon {
  background: rgba(59,130,246,0.2);
  box-shadow: 0 0 20px rgba(59,130,246,0.25);
}
.services-card-title {

  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 10px;
}
.services-card-desc {
  
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
}
.services-card-link {
  
  font-size: 13px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.services-card-link:hover { gap: 10px; color: #60a5fa; text-decoration: none; }

/* =============================================
   INDUSTRIES SECTION
============================================= */
.industries-section-main {
  background: #050d1a;
  padding: 30px 0;
  position: relative;
}
.industries-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  justify-content: center;
}
.industries-tab-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px 18px;
  
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}
.industries-tab-btn.active,
.industries-tab-btn:hover {
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.35);
  color: #60a5fa;
}
.industries-tab-content {
  display: none;
  animation: industries-fadeup 0.4s ease;
}
.industries-tab-content.active { display: block; }
@keyframes industries-fadeup {
  from { opacity:0; transform: translateY(16px); }
  to { opacity:1; transform: translateY(0); }
}
.industries-content-card {
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(30,80,255,0.15);
  border-radius: 20px;
  padding: 40px;
}
.industries-col-heading {

  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 20px;
}
.industries-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 12px;
  line-height: 1.5;
}
.industries-list-item i {
  color: #3b82f6;
  font-size: 12px;
  margin-top: 3px;
  flex-shrink: 0;
}
.industries-risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 6px;
  padding: 6px 12px;
  
  font-size: 12px;
  color: #f87171;
  margin-bottom: 8px;
  margin-right: 8px;
  display: inline-flex;
}
.industries-solution-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 6px;
  padding: 6px 12px;
  
  font-size: 12px;
  color: #4ade80;
  margin-bottom: 8px;
  margin-right: 8px;
}

/* =============================================
   AI CYBERSECURITY SECTION
============================================= */
.ai-section-main {
  background: #030712;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.ai-section-main::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(30,80,255,0.06), transparent 60%);
  pointer-events: none;
}
.ai-card-box {
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 30px 26px;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.ai-card-box:hover {
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 25px rgba(30,80,255,0.1);
}
.ai-card-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(56,189,248,0.1));
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #60a5fa;
  margin-bottom: 18px;
}
.ai-card-title {

  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 10px;
}
.ai-card-desc {
  
  font-size: 14px;
  color: #64748b;
  line-height: 1.65;
}
.ai-workflow-graphic {
  margin-top: 60px;
  background: rgba(15,23,42,0.6);
  border: 1px solid rgba(30,80,255,0.15);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}
.ai-workflow-title {

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 32px;
}
.ai-workflow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.ai-workflow-step {
  text-align: center;
  padding: 0 20px;
  flex: 1;
  min-width: 120px;
}
.ai-workflow-step-icon {
  width: 56px; height: 56px;
  background: rgba(59,130,246,0.1);
  border: 2px solid rgba(59,130,246,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #3b82f6;
  margin: 0 auto 12px;
  animation: ai-workflow-pulse 3s ease-in-out infinite;
}
.ai-workflow-step:nth-child(3) .ai-workflow-step-icon { animation-delay: 0.5s; }
.ai-workflow-step:nth-child(5) .ai-workflow-step-icon { animation-delay: 1s; }
.ai-workflow-step:nth-child(7) .ai-workflow-step-icon { animation-delay: 1.5s; }
.ai-workflow-step:nth-child(9) .ai-workflow-step-icon { animation-delay: 2s; }
@keyframes ai-workflow-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(59,130,246,0.3); }
  50% { box-shadow: 0 0 0 12px rgba(59,130,246,0); }
}
.ai-workflow-step-label {
  
  font-size: 12px;
  color: #64748b;
}
.ai-workflow-arrow {
  font-size: 20px;
  color: rgba(59,130,246,0.3);
  flex-shrink: 0;
  padding: 0 4px;
}

/* =============================================
   PROCESS TIMELINE SECTION
============================================= */
.timeline-section-main {
  background: #050d1a;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.timeline-track {
  position: relative;
  padding: 40px 0;
}
.timeline-connector-line {
  position: absolute;
  top: 56px;
  left: 0; right: 0;
  height: 2px;
  background: rgba(59,130,246,0.15);
  z-index: 0;
}
.timeline-connector-progress {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
  width: 0%;
  transition: width 1.5s ease;
}
.timeline-step-item {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}
.timeline-step-circle {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(15,23,42,0.9);
  border: 2px solid rgba(59,130,246,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;

  font-size: 16px;
  font-weight: 700;
  color: #64748b;
  transition: all 0.5s;
  position: relative;
}
.timeline-step-item.tl-active .timeline-step-circle {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border-color: #3b82f6;
  color: #fff;
  box-shadow: 0 0 25px rgba(59,130,246,0.4);
}
.timeline-step-title {

  font-size: 14px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}
.timeline-step-desc {
  
  font-size: 12px;
  color: #64748b;
  line-height: 1.5;
}

/* =============================================
   COMPLIANCE SECTION
============================================= */
.compliance-section-main {
  background: #030712;
  padding: 30px 0;
  position: relative;
}
.compliance-card-box {
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  height: 100%;
  transition: all 0.4s;
  text-align: center;
}
.compliance-card-box:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 20px rgba(30,80,255,0.1);
}
.compliance-card-logo {
  width: 60px; height: 60px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;

  font-size: 13px;
  font-weight: 800;
  color: #3b82f6;
  letter-spacing: -0.5px;
}
.compliance-card-name {

  font-size: 16px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 8px;
}
.compliance-card-desc {
  
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

/* =============================================
   WHY CHOOSE SECTION
============================================= */
.whychoose-section-main {
  background: #050d1a;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}
.whychoose-section-main::before {
  content: '';
  position: absolute;
  left: -200px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(30,80,255,0.08), transparent 70%);
}
.whychoose-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.whychoose-image-wrapper img {
  width: 100%;
  border-radius: 20px;
  display: block;
}
.whychoose-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,80,255,0.1), transparent);
  border-radius: 20px;
  border: 1px solid rgba(59,130,246,0.2);
}
.whychoose-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.whychoose-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.whychoose-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.5;
}
.whychoose-benefit-item:last-child { border-bottom: none; }
.whychoose-check-icon {
  width: 24px; height: 24px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  color: #22c55e;
}

/* =============================================
   CASE STUDIES SECTION
============================================= */
.casestudies-section-main {
  background: #030712;
  padding: 30px 0;
  position: relative;
}
.casestudy-card-box {
  background: rgba(15,23,42,0.7);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 36px 32px;
  height: 100%;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.casestudy-card-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}
.casestudy-card-box:hover {
  border-color: rgba(59,130,246,0.25);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.casestudy-label {
  
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3b82f6;
  margin-bottom: 14px;
}
.casestudy-problem-title {

  font-size: 13px;
  font-weight: 700;
  color: #ef4444;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.casestudy-solution-title {

  font-size: 13px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.casestudy-results-title {

  font-size: 13px;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.casestudy-text {
  
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}
.casestudy-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.casestudy-metric {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 6px;
  padding: 6px 12px;

  font-size: 12px;
  font-weight: 700;
  color: #4ade80;
}

/* =============================================
   TECH STACK SECTION
============================================= */
.techstack-section-main {
  background: #050d1a;
  padding: 30px 0;
  overflow: hidden;
}
.techstack-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.techstack-logo-item {
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  transition: all 0.3s;
}
.techstack-logo-item{
    display:flex;
    flex-direction:column;
    align-items:center;
}
.techstack-logo-item:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 0 20px rgba(30,80,255,0.1);
  transform: translateY(-2px);
}
.techstack-logo-item img {
  max-height: auto!important;
  max-width: 100px;
  object-fit: contain;

 opacity: 1; filter: grayscale(0%);
  transition: all 0.3s;
}
.techstack-logo-item:hover img { opacity: 1; filter: grayscale(0%); }
.techstack-logo-name {

  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.techstack-logo-item:hover .techstack-logo-name { color: #94a3b8; }

/* =============================================
   FAQ SECTION
============================================= */
.faq-section-main {
  background: #030712;
  padding: 30px 0;
  position: relative;
}
.faq-accordion-item {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-accordion-item.faq-open {
  border-color: rgba(59,130,246,0.3);
}
.faq-accordion-trigger {
  width: 100%;
  background: rgba(15,23,42,0.7);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-accordion-trigger:hover { background: rgba(15,23,42,1); }
.faq-question-h3 {

  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
  text-align: left;
  line-height: 1.4;
}
.faq-toggle-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #3b82f6;
  transition: all 0.3s;
}
.faq-open .faq-toggle-icon {
  background: rgba(59,130,246,0.2);
  transform: rotate(45deg);
}
.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-accordion-body-inner {
  padding: 0 24px 24px;
  background: rgba(15,23,42,0.7);
}
.faq-answer-p {
  
  font-size: 14px;
  color: #64748b;
  line-height: 1.75;
  margin: 0;
}

/* RESPONSIVE CODE */
/* Right Section Responsive Fix */
.hero-visual-wrapper{
    margin-top:40px;
}

.hero-dashboard-card{
    width:100%;
    max-width:520px;
    margin:auto;
}

.hero-floating-card{
    max-width:160px;
}

/* Tablet */
@media (max-width:991px){

    .hero-content-wrapper{
        text-align:center;
    }

    .hero-visual-wrapper{
        margin-top:50px;
        display:flex;
        justify-content:center;
    }

    .hero-dashboard-card{
        max-width:100%;
    }

    .hero-float-1{
        top:-20px;
        left:0;
    }

    .hero-float-2{
        top:-20px;
        right:0;
    }
}

/* Mobile */
@media (max-width:767px){

    .hero-visual-wrapper{
        margin-top:35px;
        padding:0 10px;
    }

    .hero-dashboard-card{
        padding:20px;
    }

    .hero-floating-card{
        position:relative;
        top:auto !important;
        left:auto !important;
        right:auto !important;
        margin:0 auto 12px;
        width:100%;
        max-width:220px;
    }

    .hero-threat-graph{
        height:140px;
    }

    .hero-stats-mini{
        display:grid;
        grid-template-columns:1fr;
        gap:12px;
    }

    .hero-threat-item{
        flex-direction:column;
        align-items:flex-start;
        gap:8px;
    }
}

/* Small Mobile */
@media (max-width:480px){

    .hero-heading-h1{
        font-size:32px;
        line-height:1.2;
    }

    .hero-subheading{
        font-size:15px;
    }

    .hero-trust-bar{
        justify-content:center;
    }

    .hero-dashboard-card{
        padding:15px;
    }

    .hero-stat-mini-num{
        font-size:22px;
    }
}
@media (max-width:576px){

    .hero-trust-bar{
        flex-direction:column;
        align-items:center;
    }

    .hero-trust-badge{
        width:100%;
        max-width:280px;
        justify-content:center;
    }
}
@media (max-width: 767px){
    .cs-nav{
        padding-right: 15px;
    }
}


.industries-know-more-wrap {
  margin-top: 20px;
  text-align: right;
}

.industries-know-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
 
  border: 2px solid currentColor;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.industries-know-more-btn:hover {
  opacity: 0.8;
  gap: 12px;
  text-decoration: none;
}

.industries-know-more-btn i {
  transition: transform 0.3s ease;
}

.industries-know-more-btn:hover i {
  transform: translateX(4px);
}
