/* ===========================
   VARIABLES
=========================== */
:root {
    --bg:#050816;
    --panel:#111827;
    --card:#1e293b;
    --line:#334155;
    --white:#fff;
    --muted:#cbd5e1;
    --blue:#2563eb;
    --cyan:#06b6d4
}

/* ===========================
   RESET
=========================== */
* {
    box-sizing:border-box
}
html {
    scroll-behavior:smooth
}
body {
    margin:0;
    background:var(--bg);
    color:var(--white);
    font-family:Poppins,Arial,sans-serif;
    overflow-x:hidden
}

/* ===========================
   BASE / AMBIENT BACKGROUND
=========================== */
.ambient {
    position:fixed;
    border-radius:50%;
    filter:blur(100px);
    opacity:.18;
    pointer-events:none;
    z-index:-1
}
.a1 {
    width:420px;
    height:420px;
    background:#2563eb;
    top:-160px;
    right:-140px
}
.a2 {
    width:350px;
    height:350px;
    background:#06b6d4;
    bottom:8%;
    left:-180px
}

/* Scroll progress bar */
.progress {
    position:fixed;
    top:0;
    z-index:30;
    height:3px;
    background:linear-gradient(90deg,var(--cyan),var(--blue));
    width:0
}

/* Layout containers */
.section {
    max-width:1240px;
    margin:auto;
    padding:130px 32px
}
.eyebrow {
    font-size:10px;
    letter-spacing:2px;
    font-weight:600;
    color:#91a3bf;
    margin:0 0 19px;
    display:flex;
    align-items:center;
    gap:10px
}
.eyebrow span {
    width:22px;
    height:1px;
    background:var(--cyan);
    display:inline-block
}

/* ===========================
   TYPOGRAPHY
=========================== */
h1,h2,h3,p {
    margin-top:0
}
h1 {
    font-size:clamp(43px,5.25vw,78px);
    line-height:1.1;
    letter-spacing:-2.8px;
    margin:0 0 26px
}
h2 {
    font-size:clamp(34px,4vw,57px);
    line-height:1.14;
    letter-spacing:-2.2px;
    margin-bottom:22px
}
em {
    font-style:normal;
    background:linear-gradient(100deg,#fff,#70d6f5 75%);
    -webkit-background-clip:text;
    color:transparent
}
p {
    color:var(--muted);
    font-size:14px;
    line-height:1.85
}
.lead {
    max-width:530px
}

/* ===========================
   BUTTONS
=========================== */
.button {
    display:inline-flex;
    align-items:center;
    gap:28px;
    border-radius:99px;
    padding:15px 21px;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
    transition:.3s;
    border:1px solid transparent
}
.button b {
    font-size:19px;
    line-height:1
}
.primary {
    background:linear-gradient(120deg,#2563eb,#0ea5e9);
    color:#fff;
    box-shadow:0 10px 35px #2563eb42
}
.primary:hover {
    transform:translateY(-3px);
    box-shadow:0 15px 40px #06b6d45e
}
.text {
    color:#d8e6f7
}
.text:hover {
    color:var(--cyan)
}

/* ===========================
   HEADER
=========================== */
header {
    height:82px;
    display:flex;
    align-items:center;
    gap:30px;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:20;
    padding:0 max(28px,calc((100% - 1240px)/2 + 32px));
    transition:.35s
}
header.scrolled {
    height:68px;
    background:#050816c9;
    backdrop-filter:blur(15px);
    border-bottom:1px solid #ffffff0e
}
.brand {
    display:flex;
    align-items:center;
    gap:9px;
    color:#fff;
    text-decoration:none;
    line-height:1;
    font-weight:700;
    font-size:16px;
    letter-spacing:-.7px
}
.brand i {
    font-style:normal;
    font-size:19px;
    width:31px;
    height:31px;
    border-radius:9px;
    display:grid;
    place-items:center;
    background:linear-gradient(145deg,#3b82f6,#1d4ed8);
    box-shadow:inset 0 1px #ffffff69
}
.brand small {
    display:block;
    font-size:6px;
    letter-spacing:2px;
    font-weight:500;
    margin:4px 0 0 1px;
    color:#9bb9e8
}

/* ===========================
   NAVBAR
=========================== */
nav {
    display:flex;
    gap:24px;
    margin-left:auto
}
nav a {
    font-size:11px;
    text-decoration:none;
    color:#a7b7cd;
    position:relative
}
nav a:after {
    content:"";
    position:absolute;
    bottom:-7px;
    left:0;
    width:0;
    height:1px;
    background:var(--cyan);
    transition:.3s
}
nav a:hover,nav a.active {
    color:#fff
}
nav a.active:after {
    width:100%
}
.nav-cta {
    color:#fff;
    text-decoration:none;
    font-size:11px;
    font-weight:600;
    border:1px solid #ffffff36;
    border-radius:30px;
    padding:10px 14px
}
.nav-cta b {
    color:var(--cyan);
    font-size:16px;
    margin-left:9px
}
.menu {
    display:none
}

/* Services dropdown trigger — mirrors nav a styling since it's a <button>, not an <a> */
.nav-dropdown {
    position:relative
}
.nav-dropdown-toggle {
    background:none;
    border:0;
    padding:0;
    font-family:inherit;
    font-size:11px;
    color:#a7b7cd;
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:6px;
    position:relative
}
.nav-dropdown-toggle:after {
    content:"";
    position:absolute;
    bottom:-7px;
    left:0;
    width:0;
    height:1px;
    background:var(--cyan);
    transition:.3s
}
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active,
.nav-dropdown.open .nav-dropdown-toggle {
    color:#fff
}
.nav-dropdown-toggle.active:after {
    width:100%
}
.nav-dropdown-toggle b {
    font-size:8px;
    transition:transform .25s ease
}
.nav-dropdown.open .nav-dropdown-toggle b {
    transform:rotate(180deg)
}
.nav-dropdown-menu {
    position:absolute;
    top:calc(100% + 20px);
    left:50%;
    transform:translateX(-50%) translateY(8px);
    width:460px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:2px;
    background:#0b1322f2;
    backdrop-filter:blur(18px);
    border:1px solid #ffffff1a;
    border-radius:16px;
    padding:14px;
    box-shadow:0 30px 60px -20px #000000a3;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .22s ease, transform .22s ease;
    z-index:25
}
.nav-dropdown.open .nav-dropdown-menu {
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    transform:translateX(-50%) translateY(0)
}
.nav-dropdown-menu a {
    font-size:12px;
    color:#cbd5e1;
    text-decoration:none;
    padding:11px 14px;
    border-radius:10px;
    transition:background .2s ease, color .2s ease
}
.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
    background:#ffffff0f;
    color:#fff
}
.nav-dropdown-menu a.active {
    color:var(--cyan);
    background:#06b6d41a
}

/* ===========================
   HERO
=========================== */
.hero {
    min-height:100vh;
    max-width:1240px;
    margin:auto;
    padding:158px 32px 72px;
    display:grid;
    grid-template-columns:1.02fr .98fr;
    align-items:center;
    gap:30px
}
.actions {
    display:flex;
    align-items:center;
    gap:17px;
    margin-top:33px
}
.hero-trust {
    display:flex;
    gap:31px;
    margin-top:66px
}
.hero-trust div {
    border-left:1px solid #38506b;
    padding-left:12px
}
.hero-trust strong {
    font-size:18px;
    display:block
}
.hero-trust strong span {
    color:var(--cyan)
}
.hero-trust small {
    display:block;
    color:#98aabe;
    font-size:9px;
    margin-top:3px
}
.hero-art {
    height:455px;
    position:relative
}
.orbit {
    width:410px;
    height:410px;
    border:1px solid #27638a52;
    border-radius:50%;
    position:absolute;
    top:12px;
    left:50%;
    transform:translateX(-50%)
}
.orbit:after,.orbit:before {
    content:"";
    position:absolute;
    border-radius:50%;
    background:var(--cyan);
    box-shadow:0 0 20px 7px #06b6d471
}
.orbit:after {
    width:8px;
    height:8px;
    top:31px;
    right:65px
}
.orbit:before {
    width:5px;
    height:5px;
    bottom:79px;
    left:6px
}
.screen {
    position:absolute;
    width:330px;
    height:260px;
    top:83px;
    left:50%;
    transform:translateX(-50%) rotate(-5deg);
    padding:17px;
    background:linear-gradient(145deg,#1c2c48e8,#101a2eda);
    border:1px solid #81b9f25c;
    border-radius:17px;
    box-shadow:0 30px 65px #0000008a,0 0 55px #2563eb25;
    backdrop-filter:blur(10px)
}
.screen-top {
    display:flex;
    gap:4px;
    font-size:8px;
    color:#a6b6cc
}
.screen-top span {
    width:5px;
    height:5px;
    background:#ee6e72;
    border-radius:50%
}
.screen-top span:nth-child(2) {
    background:#eebd6e
}
.screen-top span:nth-child(3) {
    background:#67d69f
}
.screen-top b {
    margin-left:31px;
    font-weight:400
}
.screen-top i {
    font-style:normal;
    margin-left:auto
}
.chart-head {
    margin:25px 0 4px
}
.chart-head small {
    font-size:9px;
    color:#9aaac1;
    display:block
}
.chart-head strong {
    font-size:21px
}
.chart-head sup {
    font-size:9px;
    color:#52d2eb
}
.chart {
    height:94px
}
.chart svg {
    height:100%;
    width:100%
}
.mini-row {
    display:flex;
    gap:10px
}
.mini-row div {
    width:50%;
    padding:8px 10px;
    border-radius:8px;
    background:#ffffff0b
}
.mini-row small {
    display:block;
    font-size:7px;
    color:#8fa2ba
}
.mini-row b {
    font-size:11px
}
.float-card {
    position:absolute;
    border:1px solid #96c7ee42;
    background:#152441dc;
    backdrop-filter:blur(12px);
    border-radius:12px;
    padding:12px;
    box-shadow:0 15px 30px #0005
}
.float-card small {
    font-size:8px;
    color:#a1b4ca;
    display:block
}
.float-card b {
    display:block;
    font-size:10px;
    margin-top:4px
}
.card-one {
    top:42px;
    right:3px;
    width:145px;
    animation:float 4s ease-in-out infinite
}
.card-one .dot {
    width:7px;
    height:7px;
    display:inline-block;
    border-radius:50%;
    margin-right:5px
}
.cyan {
    background:var(--cyan)
}
.card-one i {
    color:var(--cyan);
    font-style:normal
}
.card-two {
    bottom:45px;
    left:15px;
    display:flex;
    align-items:center;
    gap:8px;
    animation:float 5s ease-in-out 1s infinite
}
.avatar {
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    background:linear-gradient(135deg,#427de6,#45c6dc);
    font-size:10px;
    border-radius:8px
}
.spark {
    position:absolute;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 0 30px 8px #fff
}
.s1 {
    left:10%;
    top:24%
}
.s2 {
    right:11%;
    bottom:16%;
    width:5px;
    height:5px
}

/* ===========================
   ABOUT
=========================== */
.about {
    display:grid;
    grid-template-columns:.9fr 1fr;
    gap:115px;
    align-items:center
}
.about-visual {
    position:relative
}
.photo-art {
    height:475px;
    border-radius:4px;
    background:radial-gradient(circle at 68% 27%,#20b9ce 0 2%,transparent 2.5%),radial-gradient(circle at 54% 55%,#245ecb 0,transparent 34%),linear-gradient(135deg,#112342,#07101f 72%);
    overflow:hidden;
    position:relative;
    border:1px solid #355378
}
.grid-lines {
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,transparent 49.5%,#9bc7ef21 50%,transparent 50.5%),linear-gradient(#9bc7ef1b 1px,transparent 1px);
    background-size:100% 100%,100% 42px;
    transform:perspective(200px) rotateX(45deg) translateY(130px)
}
.photo-art p {
    position:absolute;
    left:30px;
    top:31px;
    font-size:10px;
    line-height:1.3;
    color:#8fc4ec;
    letter-spacing:1px
}
.photo-art p b {
    font-size:15px;
    color:#fff
}
.photo-title {
    position:absolute;
    left:29px;
    bottom:27px;
    font-weight:700;
    font-size:35px;
    line-height:1.05;
    letter-spacing:-2px
}
.award {
    position:absolute;
    right:-39px;
    bottom:40px;
    width:115px;
    height:115px;
    background:#d9f5fd;
    color:#0b2942;
    border-radius:50%;
    display:grid;
    place-items:center;
    font-size:22px;
    transform:rotate(-14deg)
}
.award span {
    font-size:8px;
    text-align:center;
    line-height:1.5;
    margin-top:-49px
}
.award b {
    font-size:10px
}
.about-copy>p:not(.eyebrow) {
    max-width:510px
}
.value-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:11px;
    margin:32px 0
}
.value-grid article {
    padding:18px;
    border:1px solid #314258;
    background:#111d31;
    border-radius:5px
}
.value-grid b {
    color:var(--cyan);
    font-size:11px
}
.value-grid h3 {
    font-size:13px;
    margin:12px 0 5px
}
.value-grid p {
    font-size:10px;
    line-height:1.6;
    margin:0
}
.arrow-link {
    display:inline-flex;
    gap:19px;
    text-decoration:none;
    color:#fff;
    font-size:12px;
    font-weight:600;
    border-bottom:1px solid #42627f;
    padding-bottom:8px
}
.arrow-link b {
    color:var(--cyan);
    font-size:17px
}
.section-heading {
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:47px
}
.section-heading>p {
    max-width:355px;
    margin-bottom:4px
}

/* ===========================
   SERVICES (cards + grid)
=========================== */
.service-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:13px
}
.service {
    padding:26px 25px 22px;
    background:linear-gradient(135deg,#152238aa,#101b2d8c);
    border:1px solid #2c435d;
    border-radius:8px;
    min-height:227px;
    transition:.35s;
    position:relative;
    overflow:hidden
}
.service:after {
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    background:#2563eb24;
    filter:blur(35px);
    right:-75px;
    top:-70px;
    opacity:0;
    transition:.35s
}
.service:hover {
    transform:translateY(-7px);
    border-color:#3d8ee5;
    box-shadow:0 18px 40px #0005
}
.service:hover:after {
    opacity:1
}
.service i {
    display:grid;
    place-items:center;
    width:37px;
    height:37px;
    border-radius:9px;
    color:#8dddf0;
    background:#2563eb24;
    font-style:normal;
    font-size:19px
}
.service h3 {
    font-size:15px;
    margin:21px 0 8px
}
.service p {
    font-size:11px;
    line-height:1.75;
    margin-bottom:18px
}
.service a {
    color:#a8c0dc;
    text-decoration:none;
    font-size:10px
}
.service a b {
    color:var(--cyan);
    font-size:15px;
    margin-left:7px
}
.portfolio {
    padding-top:155px
}
.filters {
    display:flex;
    gap:19px;
    margin:-11px 0 27px
}
.filters button {
    border:0;
    background:none;
    color:#8092aa;
    font:500 10px Poppins;
    cursor:pointer;
    padding:0
}
.filters .selected {
    color:#fff
}
.work-grid {
    display:grid;
    grid-template-columns:1.12fr .88fr;
    gap:17px
}
.work {
    position:relative
}
.work-c {
    grid-column:span 2
}
.work-art {
    height:300px;
    border-radius:6px;
    overflow:hidden;
    position:relative;
    display:grid;
    place-items:center
}
.work-a .work-art {
    background:radial-gradient(circle at 45% 40%,#fdc5a1 0, #f47a66 10%,#6b294a 43%,#241233 75%)
}
.work-b .work-art {
    background:radial-gradient(circle at 55% 40%,#b7fae9 0,#1ea57f 11%,#063e4a 48%,#071728 75%)
}
.work-c .work-art {
    height:235px;
    background:linear-gradient(110deg,#cbe6e2,#6fa2a4 42%,#294e57 42%,#163139)
}
.work-art span {
    font-size:120px;
    font-weight:800;
    color:#ffffffd1;
    letter-spacing:-13px
}
.work-art small {
    position:absolute;
    letter-spacing:6px;
    font-size:12px
}
.work-a .work-art small {
    bottom:43px
}
.work-b .work-art small {
    top:62px
}
.work-c .work-art span {
    font-size:92px
}
.work>div+div {
    display:flex;
    align-items:end;
    padding-top:14px
}
.work p {
    margin:0;
    font-size:9px;
    color:#8ea6c3;
    letter-spacing:.5px
}
.work h3 {
    font-size:17px;
    margin:3px 0 0
}
.work a {
    margin-left:auto;
    width:32px;
    height:32px;
    border:1px solid #44617d;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#9fdbec;
    text-decoration:none
}

/* ===========================
   WHY US / REASONS
=========================== */
.why {
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:90px
}
.reasons article {
    display:flex;
    gap:27px;
    border-top:1px solid #293b52;
    padding:19px 0
}
.reasons article:last-child {
    border-bottom:1px solid #293b52
}
.reasons b {
    color:#5bcde4;
    font-size:10px;
    padding-top:4px
}
.reasons h3 {
    font-size:15px;
    margin:0 0 4px
}
.reasons p {
    font-size:11px;
    margin:0
}
.center {
    justify-content:center;
    text-align:center
}

/* ===========================
   PROCESS TIMELINE
=========================== */
.process {
    max-width:none;
    background:linear-gradient(105deg,#0d1830,#10172a 60%,#0c2031);
    padding-bottom:112px
}
.process h2 {
    text-align:center
}
.steps {
    max-width:1200px;
    margin:59px auto 0;
    padding:0 25px;
    display:flex;
    justify-content:space-between;
    position:relative
}
.steps:before {
    content:"";
    height:1px;
    background:linear-gradient(90deg,transparent,#2f638d 10%,#2f638d 90%,transparent);
    position:absolute;
    top:19px;
    left:3%;
    right:3%
}
.steps article {
    width:130px;
    position:relative
}
.steps b {
    width:39px;
    height:39px;
    border:1px solid #4d7b9e;
    border-radius:50%;
    background:#122744;
    display:grid;
    place-items:center;
    font-size:10px;
    color:#94dcec;
    position:relative
}
.steps h3 {
    font-size:13px;
    margin:18px 0 3px
}
.steps p {
    font-size:10px;
    margin:0
}
.numbers {
    max-width:1240px;
    margin:auto;
    padding:65px 32px;
    display:grid;
    grid-template-columns:repeat(4,1fr)
}
.numbers article {
    padding-left:25px;
    border-left:1px solid #2e455e
}
.numbers strong {
    font-size:36px;
    letter-spacing:-2px
}
.numbers p {
    font-size:10px;
    margin:2px 0
}
.quote-mark {
    font-size:100px;
    line-height:.4;
    color:#1a4f78
}

/* ===========================
   TESTIMONIALS
=========================== */
.testimonial-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px
}
.testimonial-grid article {
    padding:27px;
    background:#111d30b8;
    border:1px solid #2d435d;
    border-radius:7px
}
.stars {
    color:#55d9ef;
    font-size:12px;
    letter-spacing:2px
}
.testimonial-grid article>p {
    font-size:12px;
    line-height:1.85;
    color:#d5e0ef;
    margin:19px 0 27px
}
.testimonial-grid footer {
    display:flex;
    align-items:center;
    gap:10px
}
.testimonial-grid footer span {
    width:31px;
    height:31px;
    border-radius:50%;
    display:grid;
    place-items:center;
    background:linear-gradient(130deg,#205eb7,#36acc2);
    font-size:9px
}
.testimonial-grid footer b,.testimonial-grid footer small {
    display:block;
    font-size:10px
}
.testimonial-grid footer small {
    color:#9cadbf;
    margin-top:3px
}
.cta {
    max-width:none;
    text-align:center;
    background:linear-gradient(125deg,#0d2860,#123d80 48%,#0e738c);
    position:relative;
    overflow:hidden
}
.cta>* {
    position:relative
}
.cta-ring {
    position:absolute;
    width:650px;
    height:650px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    border:1px solid #7fe7ff4a;
    box-shadow:0 0 0 60px #ffffff05,0 0 0 140px #ffffff04
}
.cta h2 {
    font-size:clamp(37px,4vw,58px);
    margin-bottom:14px
}
.cta h2 em {
    background:linear-gradient(100deg,#9eeeff,#fff);
    -webkit-background-clip:text
}
.cta>p:not(.eyebrow) {
    font-size:13px;
    margin-bottom:27px;
    color:#e2f3ff
}

/* ===========================
   CONTACT (info + form)
=========================== */
.contact {
    display:grid;
    grid-template-columns:.84fr 1.16fr;
    gap:100px
}
.contact-info>p:not(.eyebrow) {
    max-width:370px
}
.contact-list {
    margin-top:34px
}
.contact-list>* {
    display:flex;
    gap:14px;
    color:#fff;
    text-decoration:none;
    margin:17px 0
}
.contact-list i {
    color:#72d9ed;
    font-style:normal;
    width:22px;
    font-size:15px
}
.contact-list span {
    font-size:10px;
    font-weight:600
}
.contact-list small {
    display:block;
    color:#9eafc2;
    font-size:10px;
    font-weight:400;
    line-height:1.7;
    margin-top:2px
}
.contact-form {
    padding:31px;
    background:linear-gradient(145deg,#17253be6,#101a2b);
    border:1px solid #36526f;
    border-radius:8px
}
.two {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px
}
.field {
    position:relative;
    margin-bottom:23px
}
.field input,.field select,.field textarea {
    background:transparent;
    border:0;
    border-bottom:1px solid #3b536e;
    width:100%;
    height:44px;
    color:#fff;
    font:12px Poppins;
    outline:0;
    padding:15px 0 3px
}
.field select option {
    background:#132139
}
.field textarea {
    height:76px;
    resize:vertical
}
.field label {
    position:absolute;
    left:0;
    top:15px;
    font-size:10px;
    color:#92a5bd;
    pointer-events:none;
    transition:.2s
}
.field input:focus+label,.field input:not(:placeholder-shown)+label,.field textarea:focus+label,.field textarea:not(:placeholder-shown)+label,.field select:valid+label {
    top:0;
    color:#5fd7ec;
    font-size:8px
}
.field input:focus,.field select:focus,.field textarea:focus {
    border-color:#35bedb
}
.form-note {
    font-size:9px;
    margin:17px 0 0;
    color:#8fa4b9
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    max-width:1240px;
    margin:auto;
    padding:35px 32px 25px;
    border-top:1px solid #23374d
}
.footer-top {
    display:flex;
    align-items:center
}
.footer-top>p {
    font-size:11px;
    margin:0 0 0 24px
}
.socials {
    margin-left:auto;
    display:flex;
    gap:8px
}
.socials a {
    width:26px;
    height:26px;
    border:1px solid #435e79;
    color:#a9c9df;
    border-radius:50%;
    display:grid;
    place-items:center;
    text-decoration:none;
    font-size:10px
}
.footer-bottom {
    display:flex;
    justify-content:space-between;
    border-top:1px solid #203348;
    margin-top:25px;
    padding-top:17px;
    color:#71859d;
    font-size:9px
}
.footer-bottom a {
    color:#96afc8;
    text-decoration:none
}

/* Floating call/WhatsApp buttons + form-submit popup */
.floating {
    position:fixed;
    bottom:22px;
    z-index:10;
    width:43px;
    height:43px;
    border-radius:50%;
    display:grid;
    place-items:center;
    text-decoration:none;
    color:#fff;
    font-size:19px;
    box-shadow:0 8px 20px #0008
}
.call {
    left:20px;
    background:#1b6fb0
}
.whatsapp {
    right:20px;
    background:#12a86a;
    animation:pulse 2s infinite
}
.popup {
    position:fixed;
    right:24px;
    bottom:80px;
    background:#153754;
    color:#fff;
    border:1px solid #45bcd8;
    border-radius:8px;
    padding:14px 19px;
    display:flex;
    align-items:center;
    gap:11px;
    transform:translateY(20px);
    opacity:0;
    pointer-events:none;
    transition:.35s;
    z-index:50
}
.popup.show {
    opacity:1;
    transform:none
}
.popup>b {
    display:grid;
    place-items:center;
    width:24px;
    height:24px;
    border-radius:50%;
    background:#27a9bf
}
.popup strong,.popup span {
    display:block;
    font-size:11px
}
.popup span {
    font-size:9px;
    color:#bfd4e6;
    margin-top:2px
}

/* ===========================
   ANIMATIONS / SCROLL REVEAL
=========================== */
.reveal {
    opacity:0;
    transform:translateY(28px);
    transition:opacity .7s ease,transform .7s ease
}
.reveal.visible {
    opacity:1;
    transform:none
}
@keyframes float {
  50% {
      transform:translateY(-12px)
  }
}
@keyframes pulse {
  50% {
      box-shadow:0 0 0 9px #12a86a25,0 8px 20px #0008
  }
}

/* ===========================
   RESPONSIVE — tablet (max-width:850px)
=========================== */
@media(max-width:850px) {
  header {
      padding:0 22px
  }
  .menu {
      display:block;
      margin-left:auto;
      background:0;
      border:0;
      width:32px
  }
  .menu span {
      height:1px;
      background:#fff;
      display:block;
      margin:6px;
      width:20px
  }
  header nav {
      display:none;
      position:absolute;
      top:68px;
      left:0;
      right:0;
      background:#0b1322f7;
      backdrop-filter:blur(15px);
      padding:18px 24px;
      flex-direction:column;
      gap:16px;
      border-bottom:1px solid #29445f
  }
  header nav.open {
      display:flex
  }
  .nav-dropdown {
      width:100%
  }
  .nav-dropdown-toggle {
      width:100%;
      justify-content:space-between;
      font-size:13px;
      padding:2px 0
  }
  .nav-dropdown-menu {
      position:static;
      transform:none;
      width:100%;
      grid-template-columns:1fr;
      background:#ffffff08;
      border:0;
      box-shadow:none;
      padding:6px 0 0 10px;
      margin-top:12px;
      max-height:0;
      opacity:1;
      visibility:visible;
      pointer-events:none;
      overflow:hidden;
      transition:max-height .25s ease
  }
  .nav-dropdown.open .nav-dropdown-menu {
      max-height:400px;
      pointer-events:auto
  }
  .nav-dropdown-menu a {
      padding:9px 10px
  }
  .nav-cta {
      display:none
  }
  .hero {
      grid-template-columns:1fr;
      padding-top:135px;
      text-align:center
  }
  .hero-copy .eyebrow,.actions {
      justify-content:center
  }
  .hero-trust {
      justify-content:center;
      margin-top:45px
  }
  .hero-art {
      height:390px
  }
  .about,.why,.contact {
      grid-template-columns:1fr;
      gap:55px
  }
  .about-visual {
      max-width:520px
  }
  .section {
      padding:92px 23px
  }
  .service-grid {
      grid-template-columns:repeat(2,1fr)
  }
  .work-grid {
      grid-template-columns:1fr
  }
  .work-c {
      grid-column:auto
  }
  .work-art,.work-c .work-art {
      height:250px
  }
  .steps {
      overflow-x:auto;
      gap:30px;
      padding-bottom:15px
  }
  .steps article {
      min-width:105px
  }
  .steps:before {
      width:700px
  }
  .numbers {
      grid-template-columns:repeat(2,1fr);
      gap:28px;
      padding:52px 23px
  }
  .testimonial-grid {
      grid-template-columns:1fr
  }
  .contact-form {
      padding:25px
  }
  .footer-top {
      flex-wrap:wrap;
      gap:16px
  }
  .socials {
      margin-left:0;
      width:100%
  }
  .section-heading {
      gap:18px
  }
  .section-heading>p {
      font-size:12px
  }
  .hero-art {
      margin-top:-10px
  }
}

/* ===========================
   RESPONSIVE — mobile (max-width:520px)
=========================== */
@media(max-width:520px) {
  h1 {
      letter-spacing:-1.8px
  }
  .hero {
      padding-left:22px;
      padding-right:22px
  }
  .hero-trust {
      gap:15px
  }
  .hero-trust strong {
      font-size:15px
  }
  .hero-trust small {
      font-size:8px
  }
  .hero-art {
      transform:scale(.86);
      transform-origin:top center;
      margin-bottom:-55px
  }
  .section-heading {
      display:block
  }
  .section-heading>p {
      margin-top:16px
  }
  .service-grid {
      grid-template-columns:1fr
  }
  .service {
      min-height:190px
  }
  .value-grid,.two {
      grid-template-columns:1fr
  }
  .filters {
      gap:13px;
      overflow:auto;
      padding-bottom:4px
  }
  .filters button {
      white-space:nowrap
  }
  .why {
      gap:40px
  }
  .contact {
      gap:42px
  }
  .footer-bottom {
      display:block;
      line-height:2
  }
  .footer-bottom a {
      display:block
  }
  .award {
      right:-12px
  }
  .photo-art {
      height:390px
  }
  .quote-mark {
      display:none
  }
}
.trusted {
    max-width:1176px;
    margin:0 auto;
    padding:18px 32px 45px;
    border-bottom:1px solid #1e3349;
    text-align:center
}
.trusted p {
    font-size:9px;
    letter-spacing:2px;
    color:#6f849d
}
.trusted div {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    margin-top:19px
}
.trusted span {
    color:#6f8197;
    font-weight:600;
    font-size:17px;
    filter:grayscale(1);
    transition:.3s
}
.trusted span:hover {
    color:#d9efff;
    filter:none
}
.device-scene {
    perspective:700px;
    transition:.5s
}
.work:hover .device-scene {
    transform:translateY(-5px) rotateX(2deg)
}
.work {
    overflow:hidden
}
.laptop {
    width:77%;
    height:73%;
    margin-top:22px;
    transform:rotateX(7deg);
    position:relative
}
.laptop-screen {
    height:100%;
    padding:28px;
    border:6px solid #111827;
    border-bottom-width:9px;
    border-radius:9px 9px 3px 3px;
    background:radial-gradient(circle at 75% 22%,#d88e73 0 3%,transparent 3.2%),linear-gradient(135deg,#1b0d2d,#633150 60%,#e48665);
    display:flex;
    flex-direction:column;
    align-items:start
}
.laptop-screen small,.tablet small,.heal-screen small {
    font-size:8px;
    letter-spacing:3px
}
.laptop-screen b,.tablet b,.heal-screen b {
    font-size:clamp(18px,2vw,32px);
    line-height:1.05;
    margin-top:18px;
    letter-spacing:-1px
}
.laptop-screen i {
    width:65px;
    height:4px;
    background:#f7b79a;
    margin-top:16px
}
.laptop-base {
    height:10px;
    background:linear-gradient(#8594a9,#263446);
    width:108%;
    margin-left:-4%;
    border-radius:1px 1px 8px 8px
}
.tablet {
    height:81%;
    width:57%;
    margin:24px auto 0;
    border:7px solid #0f1622;
    border-radius:11px;
    background:linear-gradient(145deg,#d5ffed,#227d72 58%,#0e3d4a);
    padding:25px;
    display:flex;
    flex-direction:column;
    position:relative
}
.mini-chart {
    width:100%;
    height:32%;
    margin-top:auto;
    border-bottom:2px solid #b9fff0;
    background:linear-gradient(145deg,transparent 45%,#87f7d8 46% 49%,transparent 50%)
}
.phone {
    position:absolute;
    right:14%;
    bottom:16px;
    width:74px;
    height:138px;
    border:5px solid #111827;
    border-radius:12px;
    background:linear-gradient(160deg,#141935,#4c6c98);
    padding:15px
}
.phone small {
    font-size:18px
}
.phone i {
    display:block;
    height:2px;
    background:#75e9e0;
    width:35px;
    margin-top:50px
}
.browser {
    height:82%;
    width:72%;
    margin-top:21px;
    border:6px solid #101b2b;
    border-radius:8px;
    background:#e2f1ed
}
.browser-bar {
    height:19px;
    padding:5px;
    background:#243a50
}
.browser-bar i {
    width:5px;
    height:5px;
    display:inline-block;
    border-radius:50%;
    background:#88a4b2;
    margin-right:3px
}
.heal-screen {
    height:calc(100% - 19px);
    padding:28px;
    background:linear-gradient(115deg,#d5eee7,#84b6b0 46%,#245567 46%);
    color:#143a47;
    display:flex;
    flex-direction:column;
    align-items:flex-start
}
.heal-screen b {
    color:#153f4e
}
.heal-screen span {
    font-size:8px;
    background:#167c81;
    color:#fff;
    padding:7px 12px;
    margin-top:16px
}
.work-overlay {
    position:absolute;
    inset:0;
    background:#061326cc;
    display:flex;
    flex-direction:column;
    gap:5px;
    justify-content:center;
    align-items:center;
    opacity:0;
    transition:.35s
}
.work:hover .work-overlay {
    opacity:1
}
.work-overlay b {
    font-size:15px
}
.work-overlay span {
    font-size:10px;
    color:#79d9ed
}

/* ===========================
   CAPABILITIES / TOOLKIT
=========================== */
.capabilities {
    padding-top:100px;
    padding-bottom:100px
}
.tech-list {
    display:flex;
    flex-wrap:wrap;
    gap:11px
}
.tech-list span {
    padding:12px 17px;
    border:1px solid #314b65;
    border-radius:4px;
    color:#9fc6e1;
    font-size:11px;
    background:#121f33;
    transition:.3s
}
.tech-list span:hover {
    transform:translateY(-4px);
    color:#fff;
    border-color:#46bfd8;
    box-shadow:0 10px 25px #0c76a52b
}

/* ===========================
   INDUSTRIES
=========================== */
.industries {
    max-width:none;
    background:linear-gradient(180deg,#0b1220,#101f34);
    padding-top:115px
}
.industry-grid {
    max-width:1176px;
    margin:48px auto 0;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:12px
}
.industry-grid article {
    height:135px;
    border:1px solid #2d4962;
    border-radius:7px;
    background:#132139;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:#55cae3;
    font-size:25px;
    transition:.35s
}
.industry-grid article:hover {
    transform:translateY(-8px);
    background:linear-gradient(145deg,#173b6d,#112036);
    box-shadow:0 15px 30px #0005
}
.industry-grid span {
    font-size:11px;
    color:#d2e3f0;
    margin-top:12px
}

/* ===========================
   FAQ / ACCORDION
=========================== */
.faq {
    display:grid;
    grid-template-columns:.75fr 1.25fr;
    gap:90px
}
.faq .section-heading {
    margin:0
}
.accordion details {
    border-top:1px solid #2b435d;
    padding:19px 0
}
.accordion details:last-child {
    border-bottom:1px solid #2b435d
}
.accordion summary {
    list-style:none;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    display:flex;
    justify-content:space-between
}
.accordion summary::-webkit-details-marker {
    display:none
}
.accordion summary b {
    color:#57cee5;
    font-size:19px;
    font-weight:400
}
.accordion details[open] summary b {
    transform:rotate(45deg)
}
.accordion p {
    font-size:11px;
    margin:13px 35px 0 0
}
.map-placeholder {
    height:120px;
    margin-top:27px;
    border:1px solid #35546c;
    border-radius:6px;
    background:radial-gradient(circle at 61% 45%,#0bb6cd 0 3%,transparent 3.5%),linear-gradient(130deg,#10243a,#17314b);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center
}
.map-placeholder span {
    font-size:20px;
    color:#65e3ef
}
.map-placeholder b {
    font-size:11px;
    margin-top:4px
}
.map-placeholder small {
    font-size:9px;
    color:#a3bfd0
}
.footer-top {
    align-items:flex-start
}
.footer-top>div>p {
    font-size:11px;
    margin:15px 0 0
}
.footer-links {
    margin-left:auto;
    display:grid;
    grid-template-columns:repeat(3,145px);
    gap:35px
}
.footer-links>div {
    display:flex;
    flex-direction:column;
    gap:7px
}
.footer-links b {
    font-size:10px
}
.footer-links a {
    font-size:9px;
    color:#9bb0c5;
    text-decoration:none
}
.footer-links p {
    font-size:9px;
    line-height:1.5;
    margin:0
}
.newsletter {
    display:flex!important;
    border-bottom:1px solid #52708b;
    padding-bottom:4px
}
.newsletter input {
    width:100%;
    border:0;
    background:transparent;
    color:#fff;
    outline:0;
    font:9px Poppins
}
.newsletter button {
    border:0;
    background:transparent;
    color:#5ee2f2;
    font-size:15px;
    cursor:pointer
}

/* RESPONSIVE — FAQ, tablet (max-width:850px) */
@media(max-width:850px) {
  .industry-grid {
      grid-template-columns:repeat(3,1fr)
  }
  .faq {
      grid-template-columns:1fr;
      gap:30px
  }
  .footer-links {
      margin:0;
      grid-template-columns:repeat(3,1fr);
      width:100%
  }
  .trusted {
      padding-left:23px;
      padding-right:23px
  }
  .trusted div {
      flex-wrap:wrap;
      justify-content:center
  }
  .work-overlay {
      display:none
  }
}

/* RESPONSIVE — FAQ, mobile (max-width:520px) */
@media(max-width:520px) {
  .industry-grid {
      grid-template-columns:repeat(2,1fr)
  }
  .footer-links {
      grid-template-columns:1fr 1fr;
      gap:23px
  }
  .footer-links>div:last-child {
      grid-column:span 2
  }
  .trusted span {
      font-size:14px
  }
  .tablet {
      width:67%
  }
}
  /* Keeps the typing effect from changing the hero's layout or shifting later sections. */

/* Hero — small-viewport height fix */
.hero {
    min-height:100svh
}
.hero-copy h1 {
    min-height:2.2em
}
.hero-copy h1 em {
    display:inline-block;
    min-width:16ch;
    white-space:nowrap
}

/* RESPONSIVE — hero, mobile (max-width:520px) */
@media(max-width:520px) {
  .hero-copy h1 {
      min-height:3.3em
  }
  .hero-copy h1 em {
      min-width:0
  }
}
  /* Logo styling */
.brand img.logo {
    height:40px;
    width:auto;
    display:block
}
header.scrolled .brand img.logo {
    height:32px
}

/* Logo sizing across header/footer states */
.site-footer .brand img.logo {
    height:36px
}

/* ===========================
   ACCESSIBILITY
=========================== */
.skip-link {
    position:fixed;
    top:-60px;
    left:12px;
    z-index:100;
    background:#0ea5e9;
    color:#fff;
    padding:10px 16px;
    border-radius:6px;
    font:600 12px Poppins,Arial,sans-serif;
    text-decoration:none;
    transition:top .2s
}
.skip-link:focus {
    top:12px
}
/* ===========================
   BREADCRUMB (service pages)
=========================== */
.page-hero {
    padding-top: 180px;
}
.no-top {
    padding-top: 0;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
}
.breadcrumb-link {
    color: inherit;
    text-decoration: none;
}
.breadcrumb-link:hover {
    color: var(--cyan);
}
.lead--wide {
    max-width: 640px;
    font-size: 14px;
    line-height: 1.9;
    color: var(--muted);
}
.service-copy h2 {
    font-size: clamp(24px, 2.4vw, 32px);
    margin-bottom: 14px;
}
.service-copy p {
    max-width: 720px;
    margin-bottom: 34px;
}

/* ===========================
   PRICING (future ready)
=========================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.pricing-card {
    background: linear-gradient(160deg, rgba(30, 41, 59, .7), rgba(17, 24, 39, .7));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 36px 28px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 45px -25px rgba(0, 0, 0, .6);
    transition: transform .25s ease, box-shadow .25s ease;
}
.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px -25px rgba(6, 182, 212, .35);
}
.pricing-card.featured {
    border-color: var(--cyan);
    position: relative;
}
.pricing-card h3 {
    font-size: 20px;
    margin-bottom: 6px;
}
.pricing-card .price {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin: 14px 0;
}
.pricing-card .price small {
    font-size: 13px;
    font-weight: 400;
    color: var(--muted);
}
.pricing-card ul {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    font-size: 13px;
    color: var(--muted);
}
.pricing-card li {
    padding: 8px 0;
    border-top: 1px solid var(--line);
}

/* ===========================
   BLOG CARDS (future ready)
=========================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.blog-card {
    background: rgba(30, 41, 59, .55);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(14px);
    transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px -28px rgba(6, 182, 212, .4);
}
.blog-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}
.blog-card .blog-body {
    padding: 22px 24px 26px;
}
.blog-card .blog-tag {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--cyan);
    text-transform: uppercase;
}
.blog-card h3 {
    font-size: 18px;
    margin: 10px 0;
}
.blog-card p {
    font-size: 13px;
    color: var(--muted);
}

/* ===========================
   RESPONSIVE — pricing & blog grids
=========================== */
@media(max-width:850px) {
    .pricing-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width:520px) {
    .pricing-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
}
