/* Suguta Valley Technologies - Brand Styles */
:root {
  --green: #16A34A;
  --green-2: #22D84F;
  --blue: #2563EB;
  --blue-2: #0E8BFF;
  --navy: #040A16;
  --navy-2: #08121F;
  --footer: #07101B;
  --white: #FFFFFF;
  --gray: #5A6572;
  --border: #E7EAF0; 
  --grad: linear-gradient(135deg, #16C443 0%, #19B66A 35%, #118FD4 70%, #1F66FF 100%);
  --shadow-card: 0 12px 30px rgba(0,0,0,.08);
  --shadow-hero: 0 20px 60px rgba(0,0,0,.25);
  --shadow-btn: 0 8px 20px rgba(31,102,255,.25);
}

* { box-sizing: border-box; }

html, body {
  font-family: 'Inter', 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1a2230;
  margin: 0;
  scroll-behavior: smooth;
}

a { text-decoration: none; }

.container-svt { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ====== NAV ====== */
.navbar-svt {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #EEF2F7;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.navbar-svt .inner {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  padding: 10px 24px; 
  max-width: 1440px; 
  margin: 0 auto;
}
.navbar-svt .brand img { height: 75px; display: block; }
.navbar-svt .links { 
  display: flex; 
  align-items: 
  center; gap: 28px;
}
.navbar-svt .links a {
  color: #2563EB; font-size: 16px; font-weight: 500; transition: all 250ms ease;
  padding: 6px 0; position: relative;
}
.navbar-svt .links a:hover { color: var(--green); }
.navbar-svt .links a.active { color: #16A34A; }
.navbar-svt .links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 3px; background: #16A34A; border-radius: 2px;
}
.navbar-svt .cta {
  border: 1.5px solid #16A34A; color: var(--green);
  padding: 10px 22px; border-radius: 10px; font-weight: 600;
  transition: all .2s;
  background: #0080001f;
}
.navbar-svt .cta:hover { background: #16A34A; color: #ffffff !important; }

.menu-toggle { display: none; background: none; border: none; font-size: 28px; color: var(--navy); }

/* ====== BUTTONS ====== */
.btn-svt {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 35px; border-radius: 14px; font-weight: 600; font-size: 17px;
  border: none; cursor: pointer; transition: all .2s;
}
.btn-primary-svt { background: var(--blue); color: #fff; box-shadow: var(--shadow-btn); }
.btn-primary-svt:hover { background: #1a57db; color: #fff; transform: translateY(-2px); }
.btn-outline-svt { background: rgba(255,255,255,.06); color: #fff; border: 1px solid rgba(255,255,255,.25); }
.btn-outline-svt:hover { background: rgba(255,255,255,.12); color: #fff; border: 1px solid lightgrey;}
.btn-green-svt { background: var(--green); color: #fff; }
.btn-green-svt:hover { background: #13a838; color: #fff; transform: translateY(-2px); }

/* ====== HERO (dark) ====== */
.hero {
  background: radial-gradient(circle at 70% 45%,
            rgba(0,212,255,.35) 0%,
            rgba(0,153,255,.22) 20%,
            rgba(0,102,255,.12) 40%,
            rgba(0,60,180,.05) 60%,
            transparent 75%),

        radial-gradient(circle at 80% 60%,
            rgba(0,140,255,.18),
            transparent 60%),

        linear-gradient(180deg,#08111F 0%,#060B18 100%);;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: .5; pointer-events: none;
}
.hero .row-flex {
  display: grid; 
  grid-template-columns: 46% 54%;
  align-items: center; 
  position: relative; z-index: 1;
}
.eyebrow {
  color: var(--green); font-weight: 600; letter-spacing: .15em;
  font-size: 14px; text-transform: uppercase; margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::after { content: ""; width: 60px; height: 2px; background: var(--green); }
.hero h1 {
  font-size: 58px; font-weight: 700; line-height: 1.05; margin: -100px 0 18px;
  letter-spacing: -.02em;
}
.hero h1 .g { color: var(--green); }
.hero h1 .b { color: var(--blue); }
.hero p.lead {
  font-size: 18px; color: #fff; max-width: 520px; margin-bottom: 18px;
}
.hero .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero visual placeholder */
.hero-visual {
  display: flex; align-items: center; justify-content: center;
  min-height: 420px; position: relative;
}
.chip-graphic {
  width: 100%; max-width: 460px; aspect-ratio: 1; border-radius: 48px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-hero), 0 0 80px rgba(31,102,255,.4);
  position: relative;
}
.chip-graphic::before {
  content: ""; position: absolute; inset: 18px; border-radius: 36px;
  border: 2px solid rgba(255,255,255,.2);
}
.chip-graphic span {
  font-size: 110px; font-weight: 800; color: #fff; letter-spacing: .04em;
  text-shadow: 0 4px 20px rgba(0,0,0,.3);
}

/* Tower (home hero) */
.tower { display: flex; flex-direction: column; gap: 18px; width: 100%; max-width: 480px; }
.tower-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px; border-radius: 18px;
  background: linear-gradient(135deg, rgba(31,102,255,.25), rgba(22,196,67,.18));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}
.tower-card .icn { font-size: 36px; color: #fff; }
.tower-card .meta { text-align: right; }
.tower-card .meta h4 { color: var(--green); margin: 0 0 4px; font-size: 20px; font-weight: 700; }
.tower-card .meta p { margin: 0; font-size: 14px; color: #c5cdd9; }

/* Solutions hero hex */
.hex-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  max-width: 460px; width: 100%;
}
.hex {
  aspect-ratio: 1; border-radius: 18px;
  background: linear-gradient(135deg, rgba(31,102,255,.3), rgba(14,139,255,.15));
  border: 1px solid rgba(31,102,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--blue-2);
  box-shadow: 0 8px 30px rgba(31,102,255,.25);
}
.hex.center {
  background: var(--grad);
  color: #fff; font-weight: 800; font-size: 28px;
  box-shadow: 0 0 50px rgba(31,102,255,.6);
}

/* ====== STATS BAR (white floating) ====== */
.stats-bar {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-card);
  padding: 32px; margin: -56px auto 0; position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  max-width: 1280px;
}
.stat { display: flex; gap: 16px; align-items: flex-start; padding: 15px 0px; }
.stat .ring {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; flex-shrink: 0;
  border: 2px solid var(--green); color: var(--green);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.7), 0 0 15px rgba(0, 168, 255, .12);
}
.stat .ring.blue { border-color: var(--blue); color: var(--blue); }
.stat h3 { margin: 0; font-size: 26px; font-weight: 700; color: #1a2230; }
.stat .label { margin: 2px 0 6px; font-weight: 600; color: #1a2230; font-size: 15px; }
.stat .desc { margin: 0; font-size: 13px; color: var(--gray); }

/* Dark stats bar variant */
.stats-bar.dark {
  background: var(--navy-2);
  color: #fff;
}
.stats-bar.dark .stat h3 { color: #fff; }
.stats-bar.dark .stat .label { color: #fff; }
.stats-bar.dark .stat .desc { color: #98a2b3; }
.stats-bar.dark .ring { background: rgba(22,196,67,.15); border-color: transparent; }
.stats-bar.dark .ring.blue { background: rgba(31,102,255,.18); }

/* ====== SECTIONS ====== */
section { padding: 80px 0; }
.section-light { background: #fafbfc; }
.section-eyebrow {
  text-align: center; color: var(--green); font-weight: 600;
  letter-spacing: .12em; font-size: 13px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  text-align: center; font-size: 42px; font-weight: 700; margin: 0 auto 14px;
  letter-spacing: -.02em; position: relative; padding-bottom: 16px; max-width: 920px;
}
.section-title::after {
  content:""; position:absolute; bottom:0; left:50%; transform:translateX(-50%);
  width: 60px; height: 3px; background: var(--green); border-radius: 2px;
}
.section-sub { text-align: center; color: var(--gray); max-width: 720px; margin: 16px auto 56px; }

/* Feature row (Secure, Data-Driven, etc) */
.feature-row {
  position: relative;
  z-index: 10;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  background: radial-gradient(circle at 70% 45%,rgba(0,212,255,.35) 0%,
    rgba(0,153,255,.22) 0%,            
    rgba(0,102,255,0.12) 65%,            
    rgba(0,60,180,.05) 100%, transparent 75%),        
  radial-gradient(circle at 80% 60%, rgba(0,140,255,.18), transparent 60%),        
  linear-gradient(180deg,#08111F 0%,#060B18 100%);
  border: 1px solid rgb(36 72 104); border-radius: 18px;
  padding: 28px; margin-top: 28px;
  overflow: hidden;
}

.feature {
  display: flex; gap: 16px; align-items: center;
   transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease,
        background .35s ease;
  padding:20px 40px;
  border-radius:18px;
  position: relative;
}
.feature .icn {
  width: 60px; height: 60px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 35px; flex-shrink: 0;
}
.feature h5 { color: #fff; margin: 0 0 4px; font-size: 18px; font-weight: 600; }
.feature p { color: #98a2b3; margin: 0; font-size: 14px; }

/* ====== PLATFORM CARDS ====== */
.platforms-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.platform-card {
  background: #fff; border-radius: 18px; 
  box-shadow:  0 2px 8px rgba(15, 23, 42, 0.04),
  0 12px 32px rgba(15, 23, 42, 0.06);
  padding: 28px; display: flex; gap: 22px; min-height: 360px;
  position: relative; overflow: hidden;
  transition:
    transform 350ms ease,
    box-shadow 350ms ease,
    border-color 350ms ease;
}
.platform-card .app-icon {
  width: 110px; height: 110px; border-radius: 22px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 32px; letter-spacing: .02em;
}
.platform-card .app-icon.mis { background: #0d0d12; }
.platform-card .app-icon.mboka { background: linear-gradient(135deg, #1F66FF, #0E8BFF); }
.platform-card .app-icon.mis small { display:block; background: var(--green); color:#000; font-size: 11px; padding: 2px 8px; border-radius: 6px; margin-top:6px; font-weight:700; letter-spacing:.04em;}
.platform-card h3 { margin: 0 0 6px; font-size: 22px; font-weight: 600; }
.platform-card h3.blue { color: var(--blue); }
.platform-card .tag { display: inline-block; background: rgba(22,196,67,.12); color: var(--green); padding: 2px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; margin-left: 8px; vertical-align: middle; }
.platform-card .sub { font-weight: 600; color: #1a2230; margin: 0 0 8px; font-size: 15px; }
.platform-card .desc { color: var(--gray); margin: 0 0 16px; font-size: 14px; }
.platform-card ul { list-style: none; padding: 0; margin: 0 0 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; }
.platform-card ul li { font-size: 14px; color: #1a2230; display: flex; gap: 8px; align-items: center; }
.platform-card ul li::before { content: "✓"; color: var(--green); font-weight: 800; }
.platform-card .learn { color: var(--blue); font-weight: 600; font-size: 14px; }
.platform-card .learn:hover { color: var(--green); }

/* ====== HOW WE WORK ====== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; position: relative; }
.step { text-align: center; padding: 0 8px; }
.step .icon-circle {
  width: 85px; height: 85px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: var(--blue); margin: 0 auto 16px;
  transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}
.step .num { color: var(--gray); font-weight: 600; font-size: 14px; }
.step h4 { margin: 4px 0 8px; font-size: 18px; font-weight: 600; }
.step p { color: var(--gray); font-size: 14px; margin: 0; }

/* ====== SOLUTIONS GRID ====== */
.sol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sol-card {
  background: #fff; border-radius: 24px; box-shadow: var(--shadow-card);
  padding: 28px; transition: transform .2s, box-shadow .2s;
}
.sol-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,.1); }
.sol-card .icn-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--green); margin-bottom: 18px;
}
.sol-card .icn-circle.blue { color: var(--blue-2); }
.sol-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 8px; }
.sol-card .desc { color: var(--gray); font-size: 14px; margin: 0 0 14px; }
.sol-card ul { list-style: none; padding: 0; margin: 0 0 16px; }
.sol-card ul li { font-size: 14px; padding: 4px 0; display: flex; gap: 8px; align-items: center; }
.sol-card ul li::before { content: "●"; color: var(--green); font-size: 10px; }
.sol-card ul li.blue::before { color: var(--blue); }
.sol-card .learn { color: var(--blue); font-weight: 600; font-size: 14px; }

/* ====== WHY PARTNER (dark band) ====== */
.why-band {
  background: var(--navy-2); border-radius: 24px; padding: 36px;
  display: grid; grid-template-columns: 1.2fr repeat(4, 1fr); gap: 24px;
  align-items: center; color: #fff;
}
.why-band h3 { font-size: 22px; margin: 0 0 8px; font-weight: 700; }
.why-band h3 .b { color: var(--blue-2); }
.why-band p { color: #98a2b3; font-size: 14px; margin: 0; }
.why-item { text-align: center; }
.why-item .icn { font-size: 30px; margin-bottom: 8px; }
.why-item h5 { font-size: 15px; margin: 0 0 4px; }
.why-item p { color: #98a2b3; font-size: 13px; margin: 0; }

/* ====== INDUSTRIES ====== */
.ind-row {
  display: grid; grid-template-columns: 1.2fr repeat(7, 1fr); gap: 20px;
  align-items: center; padding: 28px; background: #fff;
  border-radius: 20px; box-shadow: var(--shadow-card);
}
.ind-item { text-align: center; }
.ind-item .icn { font-size: 28px; color: var(--gray); display: block; margin-bottom: 8px; }
.ind-item span { font-size: 13px; font-weight: 600; color: #1a2230; display: block; }
.ind-row .lead-cell h3 { font-size: 20px; margin: 0 0 6px; }
.ind-row .lead-cell p { font-size: 13px; color: var(--gray); margin: 0 0 12px; }
.ind-row .lead-cell a { color: var(--green); border: 1.5px solid var(--green); padding: 8px 16px; border-radius: 10px; font-size: 13px; font-weight: 600; }

/* ====== ABOUT - Story / Values ====== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.about-card {
  background: #fff; border-radius: 24px; box-shadow: var(--shadow-card);
  padding: 32px;
}
.about-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 16px; display: flex; align-items: center; gap: 12px; padding-bottom: 8px; border-bottom: 2px solid var(--green); width: fit-content; }
.about-card h3 .icn { color: var(--green); font-size: 28px; }
.about-card p { color: var(--gray); font-size: 15px; }
.about-card img { width: 100%; border-radius: 16px; margin-top: 16px; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 20px; }
.value { text-align: center; }
.value .icn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(22,196,67,.1); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 12px;
}
.value h5 { margin: 0 0 6px; font-size: 15px; font-weight: 700; }
.value p { font-size: 13px; color: var(--gray); margin: 0; }

.subsection { margin-bottom: 28px; }

/* ====== CTA BAND ====== */
.cta-band {
  background: radial-gradient(circle at top right, rgba(0,168,255,.18), transparent 0%),
  radial-gradient(circle at bottom left, rgba(22,196,67,.12), transparent 0%),
  linear-gradient(135deg,#07111D,#091624);; color: #fff; border-radius: 18px; padding:40px 35px;
  display: grid; grid-template-columns: 45% 30% 25%; gap: 0px; align-items: stretch;
  position: relative; overflow: hidden;
}

.cta-band > *:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #16A34A;
}


.cta-band::before {
  content: ""; position: absolute; width: 100%; height: 100%; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(22,196,67,68%) 1.5px, transparent 1.5px);
  background-size: 18px 18px; opacity: .6; top: 0;
}
.cta-band::before { left: 0; }
.cta-band::after { right: 0; }
.cta-band > * { position: relative; z-index: 2; padding: 0 20px;}
.cta-band h3 {
    font-size: 30px;
    margin: auto;
    font-weight: 700;
    line-height: 1.3;
    padding: 0;
    color: white;
    background: #09162399;
    padding: 10px 10px;
}
.cta-band h3 .g { color: var(--green); }
.cta-band p {
    color: white;
    font-size: 15px;
    background: #09162399;
    padding: 14px 10px 0px 10px;
}

.cta-band a { margin: 0px 10px; }


.cta-band .contact-list { list-style: none; padding: 0px 0px 0px 15px; margin: 0; display: grid; gap: 10px; }
.cta-band .contact-list li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: white; background: #09162399; }
.cta-band .contact-list li .icn { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: var(--green); flex-shrink: 0; font-size: 18px; }
.cta-band .contact-list li .icn i {
    transition: all 0.4s ease;
}

.cta-band .contact-list li:hover .icn i {
    transform: scale(1.1);
}

/* Light CTA band variant (about page) */
.cta-band.light {
  background: linear-gradient(135deg, #f3f7fc 0%, #e9f1fb 100%);
  color: #1a2230;
}
.cta-band.light h3 { color: #1a2230; }
.cta-band.light h3 u { color: var(--green); text-decoration-color: var(--green); text-underline-offset: 4px; }
.cta-band.light p { color: var(--gray); }
.cta-band.light .contact-list li { color: #1a2230; }
.cta-band.light .contact-list li .icn { background: #fff; }
.cta-band.light::before, .cta-band.light::after {
  background-image: radial-gradient(rgba(22,196,67,.35) 1.5px, transparent 1.5px);
  opacity: .6;
}

.cta-title-icn {
  align-items: center;
}

.cta-title-icn i {
  font-size: 44px;
}

.cta-icn-box {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 15px;
}
/* ====== FOOTER ====== */
footer.svt {
  background: var(--footer); color: #c5cdd9; padding: 56px 0 24px;
}
footer.svt .cols {
  display: grid; grid-template-columns: 1.4fr repeat(5, 1fr); gap: 32px;
}
footer.svt h6 { color: var(--green); font-size: 15px; font-weight: 700; margin: 0 0 16px; }
footer.svt h6.blue { color: var(--blue-2); }
footer.svt ul { list-style: none; padding: 0; margin: 0; }
footer.svt ul li { margin-bottom: 10px; }
footer.svt ul li a { color: #c5cdd9; font-size: 14px; }
footer.svt ul li a:hover { color: #16A34A; }
footer.svt .brand img { height: 70px; margin-bottom: 16px; filter: brightness(1.05); background: #fff; padding: 8px 12px; border-radius: 10px; }
footer.svt .socials { display: flex; gap: 10px; margin-top: 16px; }
footer.svt .socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px;
}
footer.svt .socials a:hover { background: var(--green); }
footer.svt .office li { display: flex; gap: 10px; font-size: 13px; line-height: 1.5; }
footer.svt .office li .icn { color: var(--green); flex-shrink: 0; }
footer.svt .copy { text-align: center; padding-top: 28px; margin-top: 40px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: #98a2b3; }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  .hero h1 { font-size: 44px; }
  .hero .row-flex { grid-template-columns: 1fr; gap: 32px; padding: 56px 0 72px; }
  .hero-visual { min-height: 320px; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .platforms-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { grid-template-columns: 1fr; }
  .why-band { grid-template-columns: 1fr 1fr; }
  .ind-row { grid-template-columns: repeat(4, 1fr); }
  .ind-row .lead-cell { grid-column: 1 / -1; }
  .cta-band { grid-template-columns: 1fr; }
  footer.svt .cols { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 32px; }
  section { padding: 56px 0; }
  .menu-toggle { display: block; }
  .navbar-svt .links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0; padding: 16px 24px;
    border-bottom: 1px solid var(--border); box-shadow: 0 8px 20px rgba(0,0,0,.05);
  }
  .navbar-svt .links.open { display: flex; }
  .navbar-svt .links a { padding: 12px 0; border-bottom: 1px solid var(--border); width: 100%; }
  .navbar-svt .links a.active::after { display: none; }
  .navbar-svt .cta { align-self: flex-start; margin-top: 8px; }
  .feature-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .platform-card { flex-direction: column; }
  .platform-card ul { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
  .hero h1 { font-size: 34px; }
  .stats-bar { grid-template-columns: 1fr; padding: 24px; margin-top: -36px; }
  .sol-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ind-row { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  footer.svt .cols { grid-template-columns: 1fr; }
  .hex-grid { grid-template-columns: repeat(3, 1fr); max-width: 320px; }
  .chip-graphic span { font-size: 70px; }
  .section-title { font-size: 26px; }
  body { font-size: 16px; }
}

.lead-cell { 
  width: 220px;
}


.platform-card.h-2 ul {
    grid-template-columns: unset !important;
}

.bg-dark-navy-black {
    background: #040a16;
}

.navbar-h2 .links a:hover {
    color: #16A34A;
}

/*.navbar-h2 .links a {
    color: #fff;
}*/

.navbar-h2 .cta:hover {
    color: #fff !important;
}

/*.feature .feature-parts {
  border-right: 1px solid rgba(255,255,255,.12);
  padding-right: 20px;
}*/

.feature:last-child .feature-parts {
  border-right: none;
}

.stats-bar .stat .stats-bar-parts {
    border-right: 2px solid rgb(24 79 225 / 82%);
    padding-right: 20px;
}

.stats-bar .stat:last-child .stats-bar-parts {
  border-right: none;
}

.step{
    position:relative;
}

.connector{
    position:absolute;
    top:30px;
    left:75%;
    width:50%;
    display:flex;
    align-items:center;
}

.connector .line{
     flex: 1;
    height: 2px;
    background:
        repeating-linear-gradient(
            90deg,
            #7899ff 0 6px,
            transparent 6px 12px
        );
    animation: dashMove 1s linear infinite;
}

.connector i {
    color: #235BFF;
    font-size: 20px;
    margin-left: -2px;
    margin-top: 1px;
}

.step:last-child .connector{
    display:none;
}

.text-green {
  color: var(--green);
}

.fs-42 {
  font-size: 42px !important;
}

.sol-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sol-header h3{
    margin:0;
    flex:1;
}

@media (max-width:576px){

    .sol-header{
        gap:12px;
    }

    .sol-header h3{
        font-size:20px;
    }

}

.br-green {
  border: 1px solid var(--green);
}

.br-blue {
  border: 1px solid var(--blue-2);
}

.sol-card:hover {
  border: 1px solid var(--blue-2);
}

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

.industry-card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.industry-card:hover{
    transform:translateY(-8px);
}

.industry-card i{
    font-size:42px;
    color:#235BFF;
    margin-bottom:18px;
}

.industry-card h3{
    font-size:22px;
    font-weight: 700;
}

.intro{
    text-align:left;
    font-size: 14px;
}

.intro p{
    color: #98a2b3;
}

.industry-card h5 {
  font-size: 18px;
  font-weight: 500;
}

.industry-card.intro {
  box-shadow: none;
}

.steps.h2 .icon-circle {
    background: #0d2147;
}

footer.svt.h2 .brand img {
    background: unset;
}

.platform-left img {
  border-radius: 10px;
}

@media (max-width:992px){

    .hero-image img{
        max-width:450px;
    }

    .feature-row{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:768px){

    .hero-image img{
        max-width:100%;
    }

    .feature-row{
        grid-template-columns:1fr;
        gap:15px;
    }

    .feature .feature-parts {
      border-right: none;
    } 

    .connector {
      display: none;
    }

    .menu-toggle i {
      color: black;
    }

    /*.links.open {
      background: #040a16;
    }*/

    .platform-image {
      display: none;
    }

    .stats-bar .stat .stats-bar-parts {
      border-right: unset;
  }
}

/*.hero::after {
    content: "";
    position: absolute;
    right: -50px;
    bottom: -80px;

    width: 600px;
    height: 350px;

    background-image:
        radial-gradient(circle,
            rgba(0,200,255,.9) 1.5px,
            transparent 2px);

    background-size: 28px 28px;

    transform: perspective(500px) rotateX(70deg);

    opacity: .7;

    pointer-events: none;
}*/

/*.hero::after {
    content: "";
    position: absolute;
    bottom: 155px;
    width: 750px;
    height: 350px;
    background-image: radial-gradient(circle, rgba(0, 200, 255, .9) 1.5px, transparent 2px);
    background-size: 28px 28px;
    transform: perspective(500px) rotateX(70deg);
    opacity: .5;
    pointer-events: none;
    left: 23%;
}*/
.home-page.hero {
    background-image: url(../images/home-bg.jpg);
    background-size: cover;
    background-position: 60% 60%;
    background-repeat: no-repeat;
}

.home-page.hero::after{
  content: "";
  position: absolute;
  inset: 0;
  background: #0000008a;
  pointer-events: none;
  z-index: 0;
}

.home-page.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #0101011a;
    pointer-events: none;
    z-index: 0;
}

  /*.home-page.hero::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-218px;
    width:2600px;
    height:931px;

    z-index: 0;

    transform:
        translateX(-50%)
        perspective(900px)
        rotateX(72deg);

    background:
    radial-gradient(circle, #04defc 1px, transparent 3px), 
    linear-gradient(rgba(0, 180, 255, .12) 4px, transparent 1px), 
    linear-gradient(90deg, rgba(0, 180, 255, .12) 1px, transparent 1px);

    background-size:24px 24px;
    filter:drop-shadow(0 0 10px #00d9ff);

     -webkit-mask-image:
        radial-gradient(circle at 50% -30%, transparent 0%, #000 40%, #000 100%),
        linear-gradient(to bottom,
            #000 0%,
            #000 60%,
            rgba(0,0,0,.8) 75%,
            rgba(0,0,0,.4) 90%,
            transparent 100%);

    -webkit-mask-composite: source-in;

    mask-image:
        radial-gradient(circle at 50% -30%, transparent 0%, #000 40%, #000 100%),
        linear-gradient(to bottom,
            #000 0%,
            #000 60%,
            rgba(0,0,0,.7) 75%,
            rgba(0,0,0,.8) 90%,
            transparent 100%);

}*/

.home-page.hero{
    position: relative;
    overflow: hidden;
}

/*.home-page.hero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index: 0;

    background:
        radial-gradient(circle at center,
            rgba(0,170,255,.45),
            transparent 70%);

    mix-blend-mode:screen;
    filter:blur(70px);
}*/


.feature:hover{
    transform:translateY(-4px);

    border-color:rgba(0,180,255,.45);

    /*background:rgba(255,255,255,.06);*/

    /*box-shadow:
        0 10px 25px rgba(0,0,0,.25),
        0 0 20px rgba(0,170,255,.18),
        0 0 40px rgba(0,140,255,.12);*/
}

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

    border-color: rgba(0,168,255,.35);

    box-shadow:
        0 18px 40px rgba(0,0,0,.18),
        0 0 25px rgba(0,168,255,.10);
}

.learn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    transition:.3s ease;
}

.learn i {
    transition: transform .3s ease;
    font-size: 18px;
    padding-top: 3px;
}

.learn:hover i{
    transform:translateX(6px);
}

.particles{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
}

.particles span{
    position:absolute;

    width:4px;
    height:4px;

    border-radius:50%;

    background:#38BDF8;

    box-shadow:
        0 0 10px #38BDF8;

    animation:floatParticle 10s linear infinite;
}

footer.svt .socials i {
  font-size: 18px;
}

footer.svt ul li {
    line-height: 0.6;
}

.hero .container-svt {
  max-width: 1440px;
  padding: 0px 80px;
  margin-top: 90px;
  margin-bottom: 70px;
}

@media (max-width:1920px){
    .hero .container-svt{
      max-width: 1440px;
      padding: 0px 80px;
      margin-top: 90px;
      margin-bottom: 70px;
    }
}

/* Tablet */
@media (max-width:992px){
    .hero .container-svt{
        padding:0 40px;
        margin-top:70px;
        margin-bottom:50px;
    }
}


@keyframes dashMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 12px 0;
    }
}

.step:hover .icon-circle {
    transform: translateY(-4px);
    box-shadow:
        0 0 0 10px rgba(120, 153, 255, 0.08),
        0 16px 40px rgba(15, 23, 42, 0.10),
        0 0 30px rgba(120, 153, 255, 0.18);
}

.cta-band .contact-list li:hover .icn {
    background: #16A34A;
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .navbar-svt .brand img {
        height: 55px; 
    }

    .hero::after {
      bottom: -85px;
      height: 250px;
    }

    .home-page.hero::after {
      height: unset !important;
    }
}

footer.svt a {
    transition: all 250ms ease;
}


.products-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
    margin-top:50px;
}

.product-card{
    background:#fff;
    border:1px solid rgba(15,23,42,.06);
    border-radius:18px;
    padding:32px;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;

    box-shadow:
        0 2px 8px rgba(15,23,42,.04),
        0 12px 32px rgba(15,23,42,.05);
}

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

    border-color:#7899ff;

    box-shadow:
        0 8px 24px rgba(15,23,42,.08),
        0 24px 48px rgba(15,23,42,.08);
}

.product-icon{
    width:68px;
    height:68px;
    border-radius:18px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#eef4ff;
    color:#2563eb;
    font-size:28px;

    margin-bottom:22px;

    transition:all .25s ease;
}

.product-icon.blue{
    background:#2563eb;
    color:#fff;
}

.product-card:hover .product-icon{
    transform:scale(1.05);
}

.product-card h4{
    margin-bottom:12px;
    font-size:22px;
    font-weight: 600;
}

.product-card p{
    color:var(--gray);
    line-height:1.6;
    margin-bottom:24px;
    font-size: 14px;
}

.product-card .learn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#2563eb;
    font-weight:600;
    text-decoration:none;
    transition:all .25s ease;
    font-size: 14px;
}

.product-card .learn:hover{
    gap:14px;
    color: var(--green);
}

@media (max-width:991px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media (max-width:767px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .product-card{
        padding:24px;
    }

    .feature:not(:last-child)::after {
      display: none;
    }

    .cta-icn-box {
      display: none;
    }
    .cta-sub-title {
      margin-bottom: 30px;
    }

}

@media (max-width: 991px) {
    .cta-band > *:not(:first-child)::before {
        display: none;
    }
}

.feature:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    width: 1px;
    height: 70%;
    background: rgba(255,255,255,.12);
}

.home-page .container-svt {
  margin-bottom: 35px;
}

/*.hero-sub {
    margin-top: 12px;
    color: #fff;
    font-size: 18px;
    display: flex;
    max-width: 650px;
    justify-self: center;
    text-align: center;
}*/

.hero-sub {
  margin: 12px auto 0;
  color: #fff;
  font-size: 18px;
  max-width: 650px;
  text-align: center;
}

.prd-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .card-bs {
            background: #fff;
            border: 1px solid #edf0f5;
            border-radius: 18px;
            padding: 28px;
            box-shadow: 0 5px 25px rgba(30, 55, 90, .05);
            transition: .35s;
            display: flex;
            flex-direction: column;
        }
  
        .card-bs:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 45px rgba(30, 55, 90, .12);
            border-color: #7899ff;
        }

        .top {
            display: flex;
            gap: 20px;
        }

        .card-icon-box {
            width: 82px;
            height: 82px;
            border-radius: 18px;
            background: #eef8ef;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .card-icon-box i {
          font-size: 44px;
        }

        .clr-grn {
          color: #16c15c;
        }

        .bright-blue {
          color: #1769E8;
        }

        .light-lavender {
          color: #9333EA;
        }

        .bright-blue-bg {
          background: #EAF2FF;
        }

        .light-lavender-bg {
          background: #F3E8FF;
        }

        .card-icon-box.blue {
            background: #edf3ff;
        }

        .light-cream {
          color: #F4A300;
        }

        .light-cream-bg {
          background: #FFF7E8;
        }

        .light-icn-blue {
          color: #1697C8;
        }

        .light-icn-blue-bg {
           background: #EAF8FC;
        }

        .icon {
            width: 44px;
            height: 44px;
        }

        .card-m-content h2 {
            font-size: 22px;
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .card-m-content p {
            color: var(--gray);
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .card-list-bs {
            list-style: none;
        }

        .card-list-bs li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 13px;
            color: var(--gray);
            font-size: 14px;
        }

        .check {
            color: var(--green);
            font-size: 14px;
            font-weight: bold;
        }

        .card-btm-line {
            margin: 28px 0 20px;
            height: 1px;
            background: #eceff3;
        }

        .card-learn-btn {
          color: var(--blue);
          font-weight: 600;
          font-size: 14px;
          text-decoration: none;
          display: inline-flex;
          align-items: center;
          gap: 10px;
          transition: .3s;
        }

        .card-learn-btn:hover {
            gap: 16px;
            color: var(--green);
        }

        .card-arrow-icn {
            font-size: 20px;
        }

        /* Tablet */

        @media(max-width:991px) {

            .prd-cards {
                grid-template-columns: 1fr;
            }

            .card-m-content h2 {
                font-size: 30px;
            }

        }

        /* Mobile */

        @media(max-width:600px) {


            .card-bs {
                padding: 22px;
            }

            .top {
                flex-direction: column;
            }

            .card-icon-box {
                width: 72px;
                height: 72px;
            }

            .card-m-content h2 {
                font-size: 26px;
            }

            .card-m-content p {
                font-size: 15px;
            }

            .card-list-bs li {
                font-size: 15px;
            }

        }

/*solutions page*/
.solutions.hero {
  background-image: url("../images/solution-bg.jpg");
  background-size: cover;
  background-position: center; 
  background-repeat: no-repeat;
} 

.section-title::after { 
  display: none;
}  

/* ===========================
 HERO SECTION
=========================== */

.about-us.hero{
    position:relative;
    /*min-height:760px;*/
    background-image:url("../images/about-us-bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    overflow:hidden;
    background-position: 60% 85%;
}

.about-us.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.90) 30%,
            rgba(0,0,0,.75) 40%,
            rgba(0,0,0,.35) 70%,
            rgba(0,0,0,.20) 100%
        ),
        rgba(0,0,0,.90);
}

.about-us.hero > .container {
    position: relative;
    z-index: 2;
}

/* Dark Overlay */

/*.about-us .hero-overlay{
    position:absolute;
    inset:0;
    background: radial-gradient(circle at 70% 45%,
            rgba(0,212,255,.35) 0%,
            rgba(0,153,255,.22) 20%,
            rgba(0,102,255,.12) 40%,
            rgba(0,60,180,.05) 60%,
            transparent 75%),

        radial-gradient(circle at 80% 60%,
            rgba(0,140,255,.18),
            transparent 60%),

        linear-gradient(180deg,#08111F 0%,#060B18 100%);
}*/

/* ABOUT */

.about-us .section-title {
  text-align: left;
}
.section-tag{
    color:#17b64b;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* Title */


.text-success-custom{
    color:var(--green);
}

.text-primary-custom{
    color:#2467ff;
}

/* Subtitle */

.hero-subtitle {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    margin-top: 12px;
}






/* Mission Card */

.mission-card{
    position:absolute;
    right:15px;
    bottom:45px;
    max-width:600px;
    background:var(--navy-2);
    border-radius:18px;
    padding:35px;
}

@media (max-width: 1024px) {
    .mission-card {
        position: relative;
        bottom: -15px;
        max-width: 100%;
    }
}

.mission-title{

    color:var(--green);

}

.mission-icon{

    margin-right:25px;

}

.icon-circle{

    width:70px;

    height:70px;

    border:3px solid #18b84d;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

/* ===========================
 Tablet
=========================== */

@media (max-width:991px){


}

@media (max-width: 1024px) {
    .mission-card {
        position: relative;
        bottom: -15px;
        max-width: 100%;
    }
}

/* ===========================
 Mobile
=========================== */

@media (max-width:767px){
.mission-card{
  padding:25px;
}

.icon-circle{
  width:55px;
  height:55px;
  font-size:26px;
}
}      

.section-rgl-text {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}



.info-card{
    background:#fff;
    border-radius:18px;
    padding: 10px 25px;
    box-shadow:0 10px 35px rgba(0,0,0,.06);
    transition:.35s;
    border:1px solid #edf1f7;
}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.10);

}

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

.value-list li {
    position: relative;
    padding-left: 28px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.value-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    color:#17b84a;
}

@media(max-width:767px){
.info-card{
  padding:25px;

}
}

.fs-30 {
  font-size: 30px;
}

.fs-35 {
  font-size: 35px;
}

.custom-sus-btn {
  padding: 14px 35px;
}

.custom-sus-btn.btn-outline-success {
  border-color: var(--green);
}
.custom-sus-btn.btn-outline-success:hover {
  background: var(--green);
}

.icn-clr-grn {
  color: var(--green);
}

.icn-clr-purple {
  color: #8B5CF6;
}

@media (min-width: 992px) {
    .fs-38 {
        font-size: 38px;
    }

    .fs-45 {
      font-size: 45px;
    }
}

.product-ft .feature {
  padding: 20px 20px;
}

.product-ft.feature-row {
  background: #01102a;
  border: 2px solid rgb(32 45 68);
  padding: 10px;
}

.service-card{

    background:#fff;

    border:1px solid #edf1f6;

    border-radius:18px;

    padding:28px;

    height:100%;

    transition:.35s;

    box-shadow:0 4px 20px rgba(0,0,0,.04);

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.service-icon{

    width:56px;

    height:56px;

    border-radius:14px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    margin-bottom:22px;

}

.service-icon i{

    line-height:1;

}

.service-icon.purple{
    background:#f4ebff;
    color:#7c3aed;
}

.service-icon.orange{

    background:#fff3e8;

    color:#f97316;

}

.service-icon.green{

    background:#eaf8ef;
    color:var(--green);

}

.service-icon.blue{

    background:#ebf4ff;

    color:#2563eb;

}

.cyan{

    background:#e8f8fb;

    color:#0891b2;

}

/*==============================
YardEase Banner
==============================*/


.yardease-banner{
    position:relative;
    overflow:hidden;
    border:2px solid #b6e8b6;
    border-radius:18px;
    background:#fff;
    padding: 0px 0px 0px 25px;
}

/* Right Gradient */

.yardease-banner::before{

    content:"";

    position:absolute;

    right:0;
    top:0;

    width:38%;
    height:100%;

    background:
    radial-gradient(circle at right center,
    rgba(190,245,95,.70),
    rgba(232,248,201,.55) 45%,
    transparent 85%);

}

/* Left */

.yardease-left{

    position:relative;
    z-index:2;
    display: flex;
    align-items: center;

}

.yardease-icon{

    width:78px;
    height:78px;
    background:var(--green);
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;

}

.yardease-icon i{

    color:#fff;

    font-size:34px;

}

.yardease-content h3{

    font-size:22px;

    font-weight:600;

    margin-bottom:15px;

}

.yardease-content p{

    color:#4d5d70;

    font-size:14px;

    line-height:1.6;

    margin-bottom:10px;

}

.yardease-content {
  padding-left: 20px;
}

/* Right */

.yardease-right{

    position:relative;

    z-index:2;

    display:flex;

    align-items:center;

    justify-content:flex-end;

    gap:30px;

    height:100%;

}

.yardease-btn{

    background:#0a8c3d;

    color:#fff;

    font-size:22px;

    font-weight:600;

    padding:18px 35px;

    border-radius:12px;

    border:none;

    white-space:nowrap;

}

.yardease-btn:hover{

    background:#087436;

    color:#fff;

}

.yardease-right img{

    width:220px;

    object-fit:contain;

}

/* Tablet */

@media(max-width:991px){

.yardease-banner{

padding:30px;

}

.yardease-banner::before{

width:100%;
opacity:.25;

}

.yardease-left{

text-align:center;

}

.yardease-icon{

margin:0 auto 20px;

}

.yardease-content h2{

font-size:30px;

}

.yardease-content p{

font-size:17px;

}

.yardease-right{

margin-top:30px;

justify-content:center;

flex-direction:column;

gap:20px;

}

.yardease-right img{

width:220px;

}

}

/* Mobile */

@media(max-width:576px){
.custom-solution-card{
    display:block !important;
}

.products-cta .cta-band ul.contact-list {
  padding: 0px 0px 0px 25px;
}

.products-cta .cta-band a {
  margin: 0px;
}

.product-ft .feature {
    padding: 5px 20px;
}

.yardease-left .yardease-icon {
  display: none;
}

.yardease-banner{
  padding:20px;
}

.yardease-content h2{
  font-size:24px;
}

.yardease-content p{
  font-size:15px;
}

.yardease-btn{
  width:100%;
  font-size:17px;
  padding:15px;
}

.yardease-right img{
  width: auto;
  border-radius: 18px;
}

}

.custom-solution-card{
    display:flex;
    align-items:center;
    gap:20px;
}

.custom-icon{

    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;

}

.custom-icon i{

    color:#fff;

    font-size:32px;

}

.custom-content{

    flex:1;

}

.check-icon-circle{
    width:20px;
    height:20px;
    border-radius:50%;
    background:var(--green);   
    display:flex;
    align-items:center;
    justify-content:center;
}

.check-icon-circle i{
    color:#fff;           
    font-size:16px;
    font-weight:bold;
}

.products-cta .cta-band {
  grid-template-columns: 45% 25% 30%;
}

@media (max-width: 991px) {
    .products-cta .cta-band {
        grid-template-columns: 1fr;
    }
}


/*==================================
 Security Hero
==================================*/

.security-hero{
    background:#071326;
    padding:60px 0;
}

/*==================================
 Left Content
==================================*/

.title-row{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:20px;
}

.security-logo{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:16px;
    background:linear-gradient(135deg,#2362ff,#2f7cff);
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 0 25px rgba(40,120,255,.45);
}

.security-logo i{
    font-size:36px;
    color:#fff;
}

.security-subtitle{
    margin-left:90px;
    margin-top: -30px;
}

.security-text{
    margin-left:90px;
    margin-bottom: 18px;
}

/*==================================
 Buttons
==================================*/

.security-suite.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-left:90px;
}

.btn-security,
.btn-security-outline{
    padding:15px 28px;
    border-radius:10px;
    font-weight:600;
}

.btn-security{
    background:#2563eb;
    border:none;
}

.btn-security-outline{
    border:1px solid rgba(255,255,255,.6);
}

/*==================================
 Right Image
==================================*/

.security-image-area{
    position:relative;
    text-align:center;
}

.security-image{
    /*max-width:600px;*/
    width:100%;
    /*animation:float 5s ease-in-out infinite;*/
}

/*==================================
 Floating Icons
==================================*/

.floating{
    position:absolute;
    text-align:center;
    color:#fff;
    font-size:14px;
}

.feature-circle{
    width:64px;
    height:64px;
    margin:0 auto 10px;
    border-radius:50%;
    border:2px solid #3cd642;
    display:flex;
    align-items:center;
    justify-content:center;
}

.feature-circle i{
    font-size:28px;
    color:#66ff66;
}

.feature-top-left{
    left:5%;
    top:12%;
}

.feature-bottom-left{
    left:8%;
    bottom:18%;
}

.feature-top-right{
    right:5%;
    top:12%;
}

.feature-bottom-right{
    right:3%;
    bottom:20%;
}

/*==================================
 Animation
==================================*/

@keyframes float{

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

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

}

/*==================================
 Tablet
==================================*/

@media (max-width:991px){

    .security-content{
        text-align:center;
        margin-bottom:50px;
    }

    .title-row{
        justify-content:center;
        align-items:center;
    }

    .security-subtitle,
    .security-text,
    .security-suite.hero-buttons{
        margin-left:0;
    }

    .security-suite.hero-buttons{
        justify-content:center;
    }

    .floating{
        display:none;
    }


}

/*==================================
 Mobile
==================================*/

@media (max-width:576px){

    .title-row{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .security-logo{
        width:65px;
        height:65px;
        min-width:65px;
    }

    .security-logo i{
        font-size:32px;
    }


    .security-suite.hero-buttons{
        flex-direction:column;
    }

    .security-suite.hero-buttons .btn{
        width:100%;
    }

}

.security-suite .feature {
  padding: 10px 10px;
  align-items: start;
}

.security-suite .feature .icn {
  align-items: start;
}

.security-suite .feature i.bi::before {
  vertical-align: top;
}

.security-suite .feature .icn {
  flex-shrink: unset;
}

.lime-green {
  color: #72ba30;
}

.security-suite.feature-row {
  background: #071326;
  border: 1px solid #253040;
}

/*==========================
 Security Checklist
==========================*/

.security-check-list{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.check-item{
    display:flex;
    align-items:center;
    gap:14px;
}

.check-icon{
    width:18px;
    height:18px;
    min-width:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:2px solid var(--green);
    border-radius:50%;
}

.check-icon i{
    color:var(--green);
    font-size:14px;
    font-weight:600;
}

.check-text{
    color: var(--gray);
    font-size: 14px;
    line-height: 1.6;
}

.security-services .learn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s ease;
    font-size: 14px;
}

.security-services .learn:hover {
    gap: 14px;
    color: var(--green);
}

.alice-blue {
  background-color: #f0f5fb;
}

.surveillance .feature {
  padding: 5px 5px;
  gap: 0px;
}

.surveillance.feature-row {
  grid-template-columns: repeat(5, 1fr);
  gap: 0px;
  padding: 20px;
  background: #f0f5fb;
  border-top: 1px solid #9e9e9e7d;
  border-left: unset;
  border-right: unset;
  border-bottom: unset;
  border-radius: 0px;
}

.surveillance.feature-row .feature-parts h5 {
  color: #1a2230;
}

.surveillance.feature-row .feature-parts p {
  color: var(--gray);
}

.surveillance .feature:not(:last-child)::after {
    background: rgb(199 202 205);
}

.surveillance .feature .icn i {
  font-size: 30px;
}

@media (max-width: 1024px) {
  .surveillance.feature-row {
    grid-template-columns: unset;
  }
}

.why-heading h2 {
    font-size: 22px;
    font-weight: 600;
}

.security-trust h5 {
  font-size: 18px;
  font-weight: 600;
}

.security-trust p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.6;
}

.security-trust {
  padding: 0px 10px;
}

.security-trust i {
  font-size: 30px;
  color: var(--green);
}

@media (max-width:576px){
  .security-cta .cta-band .btn-svt {
    padding: 14px 14px;
  }
}

.contact-info-item {
    display: flex;
    align-items: center; 
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green);
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
}

.contact-info-item p {
    color: #666;
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
    font-weight: 600;
}