/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 04 2026 | 15:56:50 */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; background: #fff; color: #1a1d23; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }
 
:root {
  --blue: #1A56DB;
  --blue-dark: #1040b0;
  --blue-light: #3b82f6;
  --blue-pale: #eef4ff;
  --accent: #F5A623;
  --dark: #0d1117;
  --dark2: #161b26;
  --light-bg: #f4f7fe;
  --text: #1a1d23;
  --muted: #6b7280;
  --border: #e5e7eb;
  --white: #fff;
}
 
/* ===================== TOP BAR ===================== */
.top-bar { background: var(--dark); padding: 8px 0; font-size: 0.75rem; }
.top-bar .wrap { max-width: 1240px; margin: auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { color: rgba(255,255,255,0.4); font-size: 0.7rem; }
.top-bar-right { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar a { color: #aaa; display: flex; align-items: center; gap: 5px; transition: color .2s; font-size: 0.75rem; }
.top-bar a:hover { color: var(--accent); }
.top-bar svg { width: 13px; height: 13px; fill: var(--blue-light); flex-shrink: 0; }
 
/* ===================== HEADER ===================== */
header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
.header-wrap { max-width: 1240px; margin: auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; height: 68px; }
 
.logo { display: flex; align-items: center; gap: 11px; }
.logo-icon { width: 44px; height: 44px; background: var(--blue); border-radius: 11px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(26,86,219,.3); flex-shrink: 0; }
.logo-icon svg { width: 26px; height: 26px; }
.logo-name { line-height: 1.15; }
.logo-name strong { display: block; font-size: 1rem; font-weight: 800; color: var(--dark); letter-spacing: -.3px; }
.logo-name span { font-size: 0.6rem; font-weight: 600; color: var(--blue); text-transform: uppercase; letter-spacing: 1.8px; }
 
/* Desktop nav */
.nav-desktop { display: flex; align-items: center; gap: 2px; }
.nav-desktop a { font-size: 0.82rem; font-weight: 500; color: var(--text); padding: 8px 12px; border-radius: 7px; transition: all .2s; }
.nav-desktop a:hover { color: var(--blue); background: var(--blue-pale); }
.nav-cta { background: var(--blue); color: #fff !important; padding: 9px 20px !important; border-radius: 7px !important; font-weight: 700 !important; margin-left: 6px; transition: background .2s !important; }
.nav-cta:hover { background: var(--blue-dark) !important; }
 
/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
 
/* Mobile nav drawer */
.nav-mobile { display: none; position: fixed; top: 68px; left: 0; right: 0; background: #fff; border-top: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,.1); z-index: 999; padding: 16px 20px 24px; flex-direction: column; gap: 4px; }
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 0.9rem; font-weight: 500; color: var(--text); padding: 12px 16px; border-radius: 8px; transition: all .2s; }
.nav-mobile a:hover { color: var(--blue); background: var(--blue-pale); }
.nav-mobile .nav-cta-mob { background: var(--blue); color: #fff !important; font-weight: 700 !important; text-align: center; margin-top: 8px; }
 
/* ===================== HERO ===================== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; background: var(--dark); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(8,12,24,.95) 0%,rgba(10,16,35,.82) 55%,rgba(26,86,219,.2) 100%), url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&q=80') center/cover no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%,rgba(26,86,219,.15),transparent 65%); }
.shimmer-lines { position: absolute; inset: 0; overflow: hidden; opacity: .05; pointer-events: none; }
.shimmer-lines i { position: absolute; width: 1px; height: 100%; background: linear-gradient(to bottom,transparent,var(--blue-light),transparent); animation: sline 3s infinite ease-in-out; }
.shimmer-lines i:nth-child(1){left:15%;animation-delay:0s}
.shimmer-lines i:nth-child(2){left:40%;animation-delay:1s}
.shimmer-lines i:nth-child(3){left:65%;animation-delay:2s}
.shimmer-lines i:nth-child(4){left:85%;animation-delay:.5s}
@keyframes sline{0%,100%{opacity:0;transform:scaleY(.3)}50%{opacity:1;transform:scaleY(1)}}
 
.hero-inner { position: relative; z-index: 2; max-width: 1240px; margin: auto; padding: 100px 20px 80px; display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: center; width: 100%; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(26,86,219,.2); border: 1px solid rgba(26,86,219,.45); color: #93c5fd; font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; padding: 6px 16px; border-radius: 100px; margin-bottom: 20px; }
.hero-badge::before { content:''; width:6px; height:6px; background:var(--blue-light); border-radius:50%; }
.hero h1 { font-size: clamp(2rem,4vw,3.4rem); font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: -1px; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #60a5fa; }
.hero-desc { font-size: 1rem; color: rgba(255,255,255,.65); line-height: 1.75; max-width: 520px; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-main { background: var(--blue); color: #fff; padding: 13px 28px; border-radius: 8px; font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 8px; border: 2px solid var(--blue); transition: all .2s; }
.btn-main:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,86,219,.4); }
.btn-ghost { background: transparent; color: #fff; padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: .9rem; border: 2px solid rgba(255,255,255,.3); transition: all .2s; }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.07); }
 
.hero-cards { display: flex; flex-direction: column; gap: 16px; }
.stat-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(12px); border-radius: 14px; padding: 20px 22px; display: flex; align-items: center; gap: 16px; transition: all .3s; }
.stat-card:hover { background: rgba(26,86,219,.18); border-color: rgba(26,86,219,.5); transform: translateX(-4px); }
.stat-ic { width: 48px; height: 48px; background: var(--blue); border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-ic svg { width: 22px; height: 22px; fill: #fff; }
.stat-n { font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-l { font-size: .75rem; color: rgba(255,255,255,.5); margin-top: 2px; }
 
/* ===================== SHARED ===================== */
.section { padding: 80px 0; }
.wrap { max-width: 1240px; margin: auto; padding: 0 20px; }
.tag { display: inline-block; background: var(--blue-pale); color: var(--blue); font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; padding: 5px 14px; border-radius: 100px; margin-bottom: 12px; }
.heading { font-size: clamp(1.6rem,2.8vw,2.4rem); font-weight: 800; color: var(--text); letter-spacing: -.5px; line-height: 1.15; margin-bottom: 10px; }
.heading span { color: var(--blue); }
.sub { font-size: .95rem; color: var(--muted); line-height: 1.75; max-width: 580px; }
.btn-blue { display: inline-flex; align-items: center; gap: 7px; background: var(--blue); color: #fff; padding: 12px 26px; border-radius: 8px; font-weight: 700; font-size: .86rem; transition: all .2s; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26,86,219,.3); }
 
/* ===================== ABOUT ===================== */
.about { background: var(--light-bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 18px; aspect-ratio: 4/3; object-fit: cover; }
.about-badge { position: absolute; bottom: -20px; right: -20px; background: var(--blue); color: #fff; border-radius: 14px; padding: 18px 22px; text-align: center; box-shadow: 0 8px 28px rgba(26,86,219,.35); }
.about-badge b { display: block; font-size: 1.7rem; font-weight: 800; line-height: 1; }
.about-badge s { font-style: normal; text-decoration: none; font-size: .7rem; opacity: .85; }
.about-text .sub { max-width: 100%; margin-bottom: 14px; }
.highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin: 20px 0; }
.hl { display: flex; align-items: center; gap: 9px; background: #fff; border-radius: 9px; padding: 10px 13px; border: 1px solid var(--border); font-size: .79rem; font-weight: 600; }
.hl-dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; flex-shrink: 0; }
 
/* ===================== PRODUCTS ===================== */
.products { background: #fff; }
.products-hdr { text-align: center; margin-bottom: 48px; }
.products-hdr .sub { margin: 0 auto; }
.cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 40px; }
.card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; background: #fff; display: flex; flex-direction: column; transition: all .3s; }
.card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(26,86,219,.11); border-color: var(--blue); }
.card-img { height: 170px; background: var(--dark2); position: relative; overflow: hidden; flex-shrink: 0; }
.card-img img { width: 100%; height: 100%; object-fit: cover; opacity: .72; transition: all .4s; }
.card:hover .card-img img { opacity: .9; transform: scale(1.04); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top,rgba(26,86,219,.5),transparent); opacity: 0; transition: .3s; }
.card:hover .card-overlay { opacity: 1; }
.card-icon { position: absolute; bottom: 12px; left: 12px; width: 40px; height: 40px; background: var(--blue); border-radius: 9px; display: flex; align-items: center; justify-content: center; z-index: 2; transform: translateY(6px); opacity: 0; transition: .3s; }
.card:hover .card-icon { transform: translateY(0); opacity: 1; }
.card-icon svg { width: 19px; height: 19px; fill: #fff; }
.card-body { padding: 18px 20px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { font-size: .94rem; font-weight: 700; margin-bottom: 6px; }
.card-body p { font-size: .79rem; color: var(--muted); line-height: 1.6; flex: 1; margin-bottom: 14px; }
.btn-rm { display: inline-flex; align-items: center; gap: 5px; color: var(--blue); font-size: .78rem; font-weight: 600; border: 1.5px solid var(--blue); padding: 6px 14px; border-radius: 6px; align-self: flex-start; transition: all .2s; }
.btn-rm:hover { background: var(--blue); color: #fff; }
.btn-rm svg { width: 11px; height: 11px; transition: transform .2s; }
.btn-rm:hover svg { transform: translateX(3px); }
.products-foot { text-align: center; }
 
/* ===================== INDUSTRIES ===================== */
.industries { background: var(--light-bg); }
.industries-hdr { text-align: center; margin-bottom: 44px; }
.ind-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 16px; }
.ind-card { background: #fff; border-radius: 14px; padding: 26px 14px; text-align: center; border: 1px solid var(--border); transition: all .3s; cursor: pointer; }
.ind-card:hover { background: var(--blue); border-color: var(--blue); transform: translateY(-4px); box-shadow: 0 14px 32px rgba(26,86,219,.2); }
.ind-card:hover .ind-name, .ind-card:hover .ind-desc { color: #fff; }
.ind-card:hover .ind-icon { background: rgba(255,255,255,.15); }
.ind-icon { width: 58px; height: 58px; background: var(--blue-pale); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.6rem; transition: .3s; }
.ind-name { font-size: .84rem; font-weight: 700; margin-bottom: 4px; }
.ind-desc { font-size: .71rem; color: var(--muted); line-height: 1.5; }
 
/* ===================== WHY ===================== */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 13px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; padding: 15px 18px; border-radius: 11px; border: 1px solid var(--border); transition: all .3s; }
.why-item:hover { border-color: var(--blue); background: var(--blue-pale); transform: translateX(4px); }
.why-ic { width: 38px; height: 38px; background: var(--blue); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.why-item h4 { font-size: .88rem; font-weight: 700; margin-bottom: 2px; }
.why-item p { font-size: .77rem; color: var(--muted); line-height: 1.5; }
.why-visual { position: relative; border-radius: 20px; overflow: hidden; }
.why-visual img { width: 100%; border-radius: 20px; }
.trust-bar { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(8,12,24,.88); backdrop-filter: blur(12px); padding: 18px 20px; }
.trust-lbl { font-size: .68rem; color: rgba(255,255,255,.42); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 9px; }
.trust-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-tag { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); color: #fff; font-size: .68rem; font-weight: 600; padding: 4px 11px; border-radius: 5px; }
 
/* ===================== CTA ===================== */
.cta { background: var(--dark); position: relative; overflow: hidden; padding: 90px 0; }
.cta::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 25% 50%,rgba(26,86,219,.28),transparent 60%), radial-gradient(ellipse at 75% 50%,rgba(96,165,250,.1),transparent 60%); }
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-tag { display: inline-block; background: rgba(26,86,219,.25); color: #93c5fd; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; }
.cta h2 { font-size: clamp(1.8rem,3.2vw,2.7rem); font-weight: 800; color: #fff; letter-spacing: -.5px; margin-bottom: 14px; line-height: 1.15; }
.cta h2 span { color: #60a5fa; }
.cta p { font-size: .95rem; color: rgba(255,255,255,.56); margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.75; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-wh { background: #fff; color: var(--blue); padding: 13px 32px; border-radius: 8px; font-weight: 700; font-size: .9rem; border: 2px solid #fff; transition: all .2s; }
.btn-wh:hover { background: transparent; color: #fff; }
.btn-owh { background: transparent; color: #fff; padding: 13px 32px; border-radius: 8px; font-weight: 600; font-size: .9rem; border: 2px solid rgba(255,255,255,.3); transition: all .2s; }
.btn-owh:hover { border-color: #fff; background: rgba(255,255,255,.07); }
 
/* ===================== FOOTER ===================== */
footer { background: var(--dark2); color: rgba(255,255,255,.58); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.6fr; gap: 44px; margin-bottom: 44px; }
.ft-brand p { font-size: .8rem; line-height: 1.75; max-width: 260px; margin-top: 12px; }
.ft-col h4 { color: #fff; font-size: .86rem; font-weight: 700; margin-bottom: 16px; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-col ul li a { font-size: .8rem; color: rgba(255,255,255,.5); transition: color .2s; }
.ft-col ul li a:hover { color: #60a5fa; }
.ft-contact-item { display: flex; gap: 9px; font-size: .8rem; margin-bottom: 13px; align-items: flex-start; }
.ft-contact-item svg { width: 13px; height: 13px; flex-shrink: 0; margin-top: 3px; fill: var(--blue-light); }
.ft-contact-item a { color: rgba(255,255,255,.58); }
.ft-contact-item a:hover { color: #60a5fa; }
.ft-addr-lbl { font-size: .65rem; font-weight: 600; color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; font-size: .75rem; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: #60a5fa; }
 
/* ===================== SCROLL REVEAL ===================== */
.js-reveal .sr { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js-reveal .sr.visible { opacity: 1; transform: translateY(0); }
 
/* ===================== RESPONSIVE ===================== */
 
/* Tablet landscape: 1024px */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 80px 20px 60px; }
  .hero-cards { flex-direction: row; gap: 14px; overflow-x: auto; padding-bottom: 6px; }
  .stat-card { min-width: 200px; flex-shrink: 0; }
  .hero h1 { font-size: clamp(2rem,4vw,2.8rem); }
  .about-grid { gap: 48px; }
  .cards-grid { grid-template-columns: repeat(2,1fr); }
  .ind-grid { grid-template-columns: repeat(3,1fr); }
  .why-grid { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
}
 
/* Tablet portrait: 768px */
@media (max-width: 768px) {
  .top-bar-left { display: none; }
  .top-bar-right { width: 100%; justify-content: center; }
  .section { padding: 60px 0; }
  .about-grid { grid-template-columns: 1fr; gap: 20px; }
  .about-badge { bottom: 12px; right: 12px; padding: 14px 18px; }
  .about-badge b { font-size: 1.4rem; }
  .highlights { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { order: -1; }
  .cards-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .ind-grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cta { padding: 70px 0; }
  .cta h2 { font-size: clamp(1.6rem,5vw,2.2rem); }
}
 
/* Mobile: 480px */
@media (max-width: 480px) {
  .top-bar { display: none; }
  header { top: 0; }
  .logo-name strong { font-size: .9rem; }
  .hero-inner { padding: 70px 16px 50px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-desc { font-size: .9rem; }
  .hero-btns { flex-direction: column; }
  .btn-main, .btn-ghost { width: 100%; justify-content: center; }
  .hero-cards { flex-direction: column; overflow: visible; }
  .stat-card { min-width: unset; }
  .section { padding: 48px 0; }
  .wrap { padding: 0 16px; }
  .about-grid { gap: 16px; }
  .about-badge { right: 8px; bottom: 8px; padding: 10px 14px; }
  .about-badge b { font-size: 1.2rem; }
  .highlights { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .ind-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .ind-card { padding: 20px 10px; }
  .ind-icon { width: 48px; height: 48px; font-size: 1.3rem; }
  .why-list { gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-brand p { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 6px; }
  .cta { padding: 56px 0; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-wh, .btn-owh { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  .heading { font-size: 1.55rem; }
  .hero-badge { font-size: .62rem; }
}
 
/* Very small: 360px */
@media (max-width: 360px) {
  .hero h1 { font-size: 1.65rem; }
  .ind-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
}