/*------------------------------------------------------------------
    OpenWebApps — Theme v2
    Hand-written design system. No build step, no framework grid.
    Palette sampled directly from images/logos/logo_full.png
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
    /* brand colors, sampled from logo */
    --navy:        #29348F;
    --navy-dark:   #1E2569;
    --sky:         #0098CE;
    --sky-dark:    #007AA8;
    --orange:      #EF4029;
    --orange-dark: #D22E19;
    --teal:        #00A886;
    --teal-dark:   #00876B;
    --sky-tint:    #EAF7FD;
    --navy-tint:   #EEF0FA;

    /* neutrals */
    --ink:         #16192B;
    --ink-soft:    #4B5169;
    --gray-500:    #6B7280;
    --gray-200:    #E6E8F0;
    --gray-100:    #F4F5F9;
    --white:       #FFFFFF;

    /* type */
    --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* scale */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --shadow-sm: 0 2px 10px rgba(22,25,43,0.06);
    --shadow-md: 0 10px 30px rgba(22,25,43,0.10);
    --shadow-lg: 0 20px 50px rgba(22,25,43,0.14);
    --container: 1180px;
}

/* -------------------- Reset / base -------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
html, body{ overflow-x: hidden; max-width: 100%; }
body{
    margin:0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ color: var(--navy); text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4,h5{
    font-family: var(--font-head);
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 .6em;
    font-weight: 700;
}
p{ margin: 0 0 1em; color: var(--ink-soft); }
.container{ max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* -------------------- Layout helpers -------------------- */
.section{ padding: 84px 0; }
.section-sm{ padding: 56px 0; }
.section-tint{ background: var(--gray-100); }
.section-navy{ background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy p{ color: var(--white); }
.section-navy p{ opacity:.85; }

.grid{ display:grid; gap: 28px; }
.grid > *{ min-width: 0; }
.grid-2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4{ grid-template-columns: repeat(4, minmax(0,1fr)); }
.grid-auto{ grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
@media (max-width: 900px){
    .grid-2, .grid-3, .grid-4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 620px){
    .grid-2, .grid-3, .grid-4{ grid-template-columns: minmax(0,1fr); }
}

.flex{ display:flex; align-items:center; }
.flex-between{ display:flex; align-items:center; justify-content:space-between; }
.text-center{ text-align:center; }
.eyebrow{
    display:inline-block; font-family: var(--font-head); font-weight:700; font-size:13px;
    letter-spacing:.08em; text-transform:uppercase; color: var(--sky-dark);
    background: var(--sky-tint); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section-head{ max-width: 640px; margin: 0 auto 48px; }
.section-head.left{ margin: 0 0 48px; }
.section-head h2{ font-size: clamp(28px, 3.4vw, 38px); }
.section-head p{ font-size: 17px; }

/* -------------------- Buttons -------------------- */
.btn{
    display:inline-flex; align-items:center; justify-content:center; gap:8px;
    font-family: var(--font-head); font-weight:700; font-size:15px;
    padding: 14px 28px; border-radius: 999px; border: 2px solid transparent;
    cursor:pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
    white-space: nowrap;
}
.btn-primary{ background: var(--orange); color: var(--white); box-shadow: 0 10px 24px rgba(239,64,41,.30); }
.btn-primary:hover{ background: var(--orange-dark); transform: translateY(-2px); color:var(--white); }
.btn-navy{ background: var(--navy); color: var(--white); box-shadow: 0 10px 24px rgba(41,52,143,.28); }
.btn-navy:hover{ background: var(--navy-dark); transform: translateY(-2px); color:var(--white); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline:hover{ background: rgba(255,255,255,.12); color:var(--white); }
.btn-outline-navy{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); }
.btn-sm{ padding: 10px 20px; font-size:14px; }
.btn-link{ font-family: var(--font-head); font-weight:700; color: var(--navy); display:inline-flex; align-items:center; gap:6px; }
.btn-link:hover{ color: var(--orange); }

/* -------------------- Top bar + nav -------------------- */
.topbar{ background: var(--navy-dark); color: rgba(255,255,255,.85); font-size: 14px; }
.topbar .container{ display:flex; align-items:center; justify-content:flex-end; gap: 28px; padding-top:9px; padding-bottom:9px; }
.topbar a{ color: rgba(255,255,255,.85); }
.topbar a:hover{ color: var(--white); }
.topbar i{ margin-right:6px; color: var(--sky); }

.site-topnav{ position: fixed; top:0; left:0; right:0; z-index: 500; }
.site-header{ position: relative; background: var(--white); border-bottom: 1px solid var(--gray-200); transition: box-shadow .2s ease; }
.site-topnav.is-stuck .site-header{ box-shadow: var(--shadow-sm); }
.navbar{ display:flex; align-items:center; justify-content:space-between; padding-top: 14px; padding-bottom: 14px; gap: 20px; }
.brand{ flex-shrink:0; }
.brand img{ height: 70px; width:auto; }
.nav-links{ display:flex; align-items:center; gap: 30px; min-width:0; }
.nav-links a{ font-family: var(--font-head); font-weight:600; font-size: 15px; color: var(--ink); padding: 6px 0; position:relative; flex-shrink:0; }
.nav-links a::after{ content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px; background: var(--orange); transform: scaleX(0); transition: transform .2s ease; }
.nav-links a:hover::after, .nav-links a.active::after{ transform: scaleX(1); }
.nav-links a.active{ color: var(--navy); }
.nav-cta{ display:flex; align-items:center; gap:18px; flex-shrink:0; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:6px; }
.nav-toggle span{ width:26px; height:2px; background: var(--navy); border-radius:2px; }

@media (max-width: 960px){
    .topbar .container{ justify-content:center; gap:20px; font-size:13px; }
    .nav-toggle{ display:flex; }
    .nav-links{
        position:absolute; top:100%; left:0; right:0; background: var(--white);
        flex-direction:column; align-items:flex-start; gap:0; padding: 8px 24px 18px;
        border-bottom:1px solid var(--gray-200); box-shadow: var(--shadow-md);
        display:none; white-space:normal;
        max-height: calc(100vh - 110px); overflow-y:auto; overflow-x:hidden;
    }
    .nav-links.is-open{ display:flex; }
    .nav-links a{ width:100%; padding: 12px 0; border-bottom:1px solid var(--gray-100); }
    .nav-cta .btn-navy{ display:none; }
}

/* -------------------- Hero -------------------- */
.hero{
    position: relative; overflow:hidden; color: var(--white);
    background: radial-gradient(1100px 500px at 85% -10%, rgba(0,152,206,.55), transparent 60%),
                linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    padding: 110px 0 100px;
}
.hero::after{
    content:""; position:absolute; inset:0; opacity:.5; pointer-events:none;
    background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
    background-size: 26px 26px;
}
.hero .container{ position:relative; z-index:1; }
.hero-inner{ max-width: 700px; }
.hero h1{ color: var(--white); font-size: clamp(34px, 5vw, 54px); margin-bottom: 22px; }
.hero h1 span{ color: var(--sky); }
.hero p.lead{ color: rgba(255,255,255,.85); font-size: 19px; max-width: 560px; margin-bottom: 34px; }
.hero-actions{ display:flex; gap:16px; flex-wrap:wrap; }
.page-header{
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white); padding: 40px 0 38px; text-align:center;
}
.page-header h1{ color: var(--white); font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 8px; }
.page-header p{ color: rgba(255,255,255,.82); max-width: 620px; margin: 0 auto; }
.breadcrumb{ font-size:13px; color: rgba(255,255,255,.65); padding:0; margin-bottom:8px; font-family: var(--font-head); font-weight:600; letter-spacing:.03em; }
.breadcrumb a{ color: rgba(255,255,255,.85); }

/* -------------------- Stats -------------------- */
.stats{ margin-top:-56px; position:relative; z-index:2; }
.stats .grid{ background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 40px 20px; }
.stat{ text-align:center; border-right: 1px solid var(--gray-200); }
.stat:last-child{ border-right:none; }
.stat .num{ font-family: var(--font-head); font-weight:800; font-size: 36px; color: var(--navy); display:block; }
.stat .label{ color: var(--gray-500); font-size: 14px; font-weight:600; }
@media (max-width: 900px){ .stat{ border-right:none; border-bottom:1px solid var(--gray-200); padding-bottom:16px; } }

/* -------------------- Cards -------------------- */
.card{ background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.card:hover{ transform: translateY(-4px) !important; box-shadow: var(--shadow-md); }
a.card{ display:block; color:inherit; text-decoration:none; }
.icon-badge{
    width:56px; height:56px; border-radius: 16px; display:flex; align-items:center; justify-content:center;
    background: var(--sky-tint); color: var(--sky-dark); font-size:24px; margin-bottom:18px;
}
.icon-badge.navy{ background: var(--navy-tint); color: var(--navy); }
.icon-badge.orange{ background: #FDEBE8; color: var(--orange); }
.icon-badge.teal{ background: #E3F7F2; color: var(--teal-dark); }

/* Service cards */
.service-card h4{ font-size:19px; margin-bottom:8px; }
.service-card p{ font-size:15px; margin-bottom: 16px; }
.service-card .btn-link{ font-size:14px; }

/* Strength / feature list cards */
.feature-card .icon-badge{ margin-bottom: 14px; }
.feature-card h4{ font-size:18px; }
.feature-card p{ font-size:15px; }

/* Web application showcase cards */
.app-card{ display:flex; flex-direction:column; }
.app-card-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:16px; }
.app-card-head .icon-badge{ margin-bottom:0; flex-shrink:0; }
.app-card h4{ font-size:19px; margin-bottom:8px; }
.app-card p{ font-size:15px; margin-bottom:16px; }
.app-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:auto; }
.app-tags span{ font-size:12.5px; font-weight:600; padding:4px 10px; border-radius:6px; background: var(--gray-100); color: var(--ink-soft); }
.tech-stack{ display:flex; flex-wrap:wrap; justify-content:center; gap:12px; max-width:900px; margin:0 auto; }
.tech-stack span{ font-family: var(--font-head); font-weight:700; font-size:14.5px; padding:10px 18px; border-radius:999px; background: var(--navy-tint); color: var(--navy); }

/* -------------------- Process steps -------------------- */
.process{ counter-reset: step; }
.process-step .step-num{
    font-family: var(--font-head); font-weight:800; font-size:15px; color:var(--white);
    background: var(--orange); width:38px; height:38px; border-radius:50%;
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
}
.process-step h4{ font-size:19px; }
.process-step p{ font-size:15px; }

/* -------------------- Logo carousel (slick) -------------------- */
.customer-logos .slide{ padding: 0 18px; }
.customer-logos .slide img{
    width: 100%; height: auto; transition: transform .2s ease;
}
.customer-logos .slide img:hover{ transform: scale(1.06); }
.customer-logos .slick-track{ display:flex; align-items:center; }
.customer-logos .slick-slide{ float:none; }

/* -------------------- Portfolio -------------------- */
.portfolio-card{ background: var(--white); border:1px solid var(--gray-200); border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; }
.portfolio-card:hover{ transform: translateY(-4px) !important; box-shadow: var(--shadow-md); }
.portfolio-thumb{ display:block; position:relative; aspect-ratio: 4/3; overflow:hidden; background: var(--gray-100); cursor: zoom-in; }
.portfolio-thumb img{ width:100%; height:100%; object-fit:cover; transition: transform .3s ease; }
.portfolio-thumb:hover img{ transform: scale(1.06); }
.portfolio-body{ padding: 18px 20px; display:flex; align-items:center; justify-content:space-between; gap:10px; }
.portfolio-body h4{ font-size:16px; margin:0; }
.portfolio-links{ display:flex; gap:10px; }
.portfolio-links a{ font-size:13px; font-weight:700; font-family: var(--font-head); }

.lightbox-overlay{ position:fixed; inset:0; background: rgba(15,17,32,.88); display:none; align-items:center; justify-content:center; z-index:2000; padding: 40px; }
.lightbox-overlay.is-open{ display:flex; }
.lightbox-overlay img{ max-width: min(92vw, 900px); max-height: 86vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.lightbox-close{ position:absolute; top: 26px; right: 32px; color:#fff; font-size:34px; line-height:1; background:none; border:none; cursor:pointer; }

/* -------------------- Testimonials -------------------- */
.testimonial-card{ background: var(--white); border:1px solid var(--gray-200); border-radius: var(--radius-md); padding: 30px; box-shadow: var(--shadow-sm); }
.testimonial-card .quote-mark{ color: var(--sky); font-size:30px; margin-bottom:10px; display:block; }
.testimonial-card h3{ font-size:18px; margin-bottom:10px; }
.testimonial-card p{ font-size:15px; }
.testi-meta{ display:flex; align-items:center; gap:12px; margin-top:16px; padding-top:16px; border-top:1px solid var(--gray-100); }
.testi-avatar{ width:42px; height:42px; border-radius:50%; background: var(--navy-tint); color:var(--navy); display:flex; align-items:center; justify-content:center; font-family:var(--font-head); font-weight:800; }
.testi-meta h4{ font-size:14.5px; margin:0; }
.testi-meta small{ color: var(--gray-500); font-weight:500; }

/* -------------------- Tags -------------------- */
.tag{ display:inline-flex; align-items:center; font-family: var(--font-head); font-weight:700; font-size:12.5px; letter-spacing:.02em; padding:5px 12px; border-radius:999px; background: var(--sky-tint); color: var(--sky-dark); }
.tag.teal{ background:#E3F7F2; color: var(--teal-dark); }
.tag.orange{ background:#FDEBE8; color: var(--orange-dark); }

/* -------------------- Blog / case studies -------------------- */
.blog-card{ background: var(--white); border:1px solid var(--gray-200); border-radius: var(--radius-md); overflow:hidden; box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease; display:flex; flex-direction:column; color:inherit; text-decoration:none; }
.blog-card:hover{ transform: translateY(-4px) !important; box-shadow: var(--shadow-md); }
.blog-card .thumb{ aspect-ratio: 16/10; overflow:hidden; background: var(--gray-100); }
.blog-card .thumb img{ width:100%; height:100%; object-fit:cover; }
.blog-card .body{ padding: 22px; display:flex; flex-direction:column; gap:10px; flex:1; }
.blog-card .body h3{ font-size:19px; margin:0; }
.blog-card .body p{ font-size:14.5px; margin:0; }

.cs-hero{ background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%); color:#fff; padding: 40px 0 0; }
.cs-hero .container{ padding-bottom: 0; }
.cs-hero h1{ color:#fff; font-size: clamp(28px,3.8vw,40px); }
.cs-hero p{ color: rgba(255,255,255,.82); max-width: 640px; }
.cs-meta{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:18px; }
.cs-shot{ margin-top: 40px; border-radius: var(--radius-lg) var(--radius-lg) 0 0; overflow:hidden; box-shadow: 0 -20px 50px rgba(0,0,0,.15); }
.cs-shot img{ width:100%; display:block; }
.cs-body{ max-width: 760px; margin: 0 auto; }
.cs-body h2{ font-size:24px; margin-top: 2.2em; }
.cs-body h2:first-child{ margin-top:0; }
.cs-body ul{ margin: 0 0 1.4em; }
.cs-body ul li{ position:relative; padding-left:26px; margin-bottom:10px; color: var(--ink-soft); }
.cs-body ul li::before{ content:"✓"; position:absolute; left:0; color: var(--teal-dark); font-weight:800; }

/* -------------------- Service detail illustration -------------------- */
.svc-illustration{ position:relative; width:100%; max-width:320px; aspect-ratio:1; margin:0 auto; }
.svc-illustration svg{ width:100%; height:100%; display:block; }
.svc-illustration i{ position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); font-size:84px; color: var(--navy); }
.svc-list{ margin: 26px 0; }
.svc-list li{ position:relative; padding-left:30px; margin-bottom:14px; font-size:15.5px; color: var(--ink-soft); }
.svc-list li::before{ content:"\f00c"; font-family:"FontAwesome"; position:absolute; left:0; top:2px; color: var(--teal-dark); font-size:14px; }

/* -------------------- CTA banner -------------------- */
.cta-banner{ background: linear-gradient(120deg, var(--orange) 0%, #FF6A4D 100%); border-radius: var(--radius-lg); padding: 54px; color:#fff; display:flex; align-items:center; justify-content:space-between; gap: 30px; flex-wrap:wrap; }
.cta-banner h2{ color:#fff; font-size: 28px; margin-bottom:8px; }
.cta-banner p{ color: rgba(255,255,255,.9); margin:0; }
.cta-banner .btn-navy{ background:#fff; color: var(--navy); box-shadow:none; }
.cta-banner .btn-navy:hover{ background: var(--navy-tint); }

/* -------------------- Contact -------------------- */
.contact-card{ background:var(--white); border:1px solid var(--gray-200); border-radius: var(--radius-md); padding:26px; box-shadow: var(--shadow-sm); text-align:center; }
.contact-form{ background: var(--white); border:1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:18px; margin-bottom:18px; }
@media (max-width:620px){ .form-row{ grid-template-columns:1fr; } }
.form-control{
    width:100%; padding: 14px 16px; border:1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    font-family: var(--font-body); font-size:15px; color: var(--ink); background: var(--gray-100);
    transition: border-color .15s ease, background .15s ease;
}
.form-control:focus{ outline:none; border-color: var(--sky); background: var(--white); }
textarea.form-control{ resize: vertical; min-height:130px; }
#message .error_message{ background:#FDEBE8; color:var(--orange-dark); padding:14px 18px; border-radius: var(--radius-sm); margin-bottom:18px; font-weight:600; }
#message #success_page{ background:#E3F7F2; color:var(--teal-dark); padding:18px; border-radius: var(--radius-sm); margin-bottom:18px; }

/* -------------------- Footer -------------------- */
.site-footer{ background: var(--navy-dark); color: rgba(255,255,255,.72); padding: 68px 0 30px; }
.footer-grid{ display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.site-footer h3{ color:#fff; font-size:15px; text-transform:uppercase; letter-spacing:.05em; margin-bottom:18px; }
.site-footer a{ color: rgba(255,255,255,.72); }
.site-footer a:hover{ color: var(--sky); }
.footer-links li{ margin-bottom:10px; font-size:14.5px; }
.footer-brand p{ color: rgba(255,255,255,.6); font-size:14.5px; }
.footer-partner-logo{
    display:inline-block; background: var(--white); padding: 14px 18px; border-radius: var(--radius-sm);
    margin-bottom: 18px; transition: transform .15s ease;
}
.footer-partner-logo:hover{ transform: translateY(-2px); }
.footer-partner-logo img{ height:60px; width:auto; display:block; }
.footer-social{ display:flex; gap:10px; margin-top:18px; }
.footer-social a{ width:36px; height:36px; border-radius:50%; background: rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; }
.footer-social a:hover{ background: var(--sky); color:#fff; }
.footer-contact li{ font-size:14.5px; margin-bottom:12px; display:flex; gap:10px; }
.footer-contact i{ color: var(--sky); margin-top:3px; }
.footer-bottom{ padding-top: 24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; font-size:13.5px; }
.footer-bottom a{ color: rgba(255,255,255,.85); font-weight:600; }

#scroll-to-top{
    position: fixed; right: 26px; bottom: 26px; width:48px; height:48px; border-radius:50%;
    background: var(--navy); color:#fff; display:flex; align-items:center; justify-content:center;
    box-shadow: var(--shadow-md); opacity:0; visibility:hidden; transform: translateY(10px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease; z-index: 400;
}
#scroll-to-top.is-visible{ opacity:1; visibility:visible; transform:none; }
#scroll-to-top:hover{ background: var(--sky); color:#fff; }

#whatsapp-float{
    position: fixed; left: 26px; bottom: 26px; width:56px; height:56px; border-radius:50%;
    background:#25d366; color:#fff; display:flex; align-items:center; justify-content:center;
    font-size:30px; box-shadow: var(--shadow-md); z-index: 400; transition: transform .2s ease, background .2s ease;
}
#whatsapp-float:hover{ background:#1ebe5b; color:#fff; transform: scale(1.08); }

/* -------------------- Utility -------------------- */
.mt-0{ margin-top:0; } .mb-0{ margin-bottom:0; }
.text-white{ color:#fff; }
.muted{ color: var(--gray-500); }

/* -------------------- Scroll reveal (aos-style) --------------------
   Hidden state is scoped under html.has-js (set by a synchronous inline
   script in <head>, before first paint) so there is no flash of visible
   content, and pages stay fully visible with JS disabled. */
html.has-js .section-head,
html.has-js .hero-inner,
html.has-js .page-header h1,
html.has-js .page-header p,
html.has-js .breadcrumb,
html.has-js .card,
html.has-js .contact-card,
html.has-js .portfolio-card,
html.has-js .testimonial-card,
html.has-js .blog-card,
html.has-js .stat,
html.has-js .cta-banner,
html.has-js .cs-shot,
html.has-js .cs-body h2,
html.has-js .cs-meta,
html.has-js .svc-illustration{
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.22,.68,.36,1), transform .7s cubic-bezier(.22,.68,.36,1);
}
/* Scoped variants outrank the "tag inside class" hidden selectors above (e.g. .page-header h1). */
html.has-js .aos-animate,
html.has-js .page-header .aos-animate,
html.has-js .cs-body .aos-animate{
    opacity: 1;
    transform: none;
}
