/* =========================
   RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Poppins',sans-serif;
background:#07111F;
color:#fff;
line-height:1.7;
overflow-x:hidden;

}

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;
color:inherit;

}

ul{

list-style:none;

}

/* =========================
   CONTAINER
========================= */

.container{

width:min(1180px,90%);
margin:auto;

}

.section{

padding:110px 0;

}

/* =========================
   SECTION TITLE
========================= */

.section-title{

text-align:center;
margin-bottom:70px;

}

.section-title span{

display:inline-block;
padding:8px 18px;
background:#12345c;
border-radius:50px;
font-size:.85rem;
letter-spacing:1px;
font-weight:600;
color:#67b5ff;
margin-bottom:18px;

}

.section-title h2{

font-size:2.8rem;
margin-bottom:20px;
font-weight:700;

}

.section-title p{

max-width:700px;
margin:auto;
color:#a6b5c7;

}

/* =========================
   HEADER
========================= */

header{

position:fixed;
top:0;
left:0;
width:100%;
z-index:999;
background:rgba(7,17,31,.85);
backdrop-filter:blur(16px);
border-bottom:1px solid rgba(255,255,255,.05);

}

.nav{

display:grid;
grid-template-columns:1fr auto 1fr;
align-items:center;
height:78px;
gap:20px;

}

.nav-links-group{
display:flex;
align-items:center;
gap:22px;
min-width:0;
}

.nav-actions-group{
display:flex;
align-items:center;
justify-content:flex-end;
gap:14px;
min-width:0;
}

.nav-actions-group .btn{
    padding:9px 20px;
    font-size:.8rem;
    white-space:nowrap;
}

.logo{

font-size:1.15rem;
font-weight:800;
display:flex;
align-items:center;
gap:8px;

}

.logo-mark{
width:28px;
height:28px;
flex-shrink:0;
}

.logo span{

color:#3B82F6;

}

nav{

display:flex;
align-items:center;
gap:35px;

}

nav a{

color:#d5dbe5;
font-weight:500;
font-size:.92rem;
transition:.3s;

}

nav a:hover{

color:#3B82F6;

}

/* =========================
   BUTTONS
========================= */

.btn{

display:inline-flex;
align-items:center;
justify-content:center;
padding:15px 34px;
border-radius:50px;
background:#3B82F6;
color:white;
font-weight:600;
transition:.35s;

}

.btn-icon{
display:none;
}

.btn:hover{

background:#2563eb;
transform:translateY(-3px);

}

.outline{

background:transparent;
border:2px solid #3B82F6;

}

.outline:hover{

background:#3B82F6;

}

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

.hero{

position:relative;
padding-top:180px;
padding-bottom:120px;
background-image:
    linear-gradient(180deg, rgba(7,17,31,.92) 0%, rgba(7,17,31,.82) 45%, rgba(7,17,31,.96) 100%),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1800&q=80");
background-size:cover;
background-position:center right;
background-repeat:no-repeat;
overflow:hidden;

}

.hero::after{
content:"";
position:absolute;
inset:0;
background:radial-gradient(ellipse 70% 60% at 15% 40%, rgba(7,17,31,.75), transparent 70%);
pointer-events:none;
}

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

.hero-grid{

display:block;
max-width:760px;

}

.tag{

display:inline-block;
background:#12345c;
color:#6cbcff;
padding:10px 18px;
border-radius:40px;
margin-bottom:25px;
font-size:.85rem;
font-weight:600;

}

.hero h1{

font-size:clamp(2.5rem, 5.6vw, 4.4rem);
line-height:1.08;
letter-spacing:-.02em;
margin-bottom:25px;
max-width:15ch;

}

.hero h1 span{

color:#3B82F6;

}

.hero p{

font-size:1.1rem;
color:#c3cddb;
margin-bottom:40px;
max-width:56ch;

}

.hero-buttons{

display:flex;
gap:20px;
margin-bottom:50px;

}

.hero-image{

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

}

.hero-image{

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

}

.hero-image{

display:none;

}

.hero-image img{

width:100%;
max-width:100%;
aspect-ratio:4 / 3;
object-fit:cover;
border-radius:18px;
border:1px solid rgba(255,255,255,.08);
box-shadow:0 24px 60px rgba(0,0,0,.4);
transform:none;
transition:transform .5s ease, box-shadow .5s ease;

}

.hero-image:hover img{
transform:translateY(-4px);
box-shadow:0 32px 72px rgba(0,0,0,.5);
}

/* =========================
   HERO STATS
========================= */


.stats{

display:flex;
justify-content:space-between;
gap:30px;
flex-wrap:wrap;
margin-top:20px;

}


.stats h2{

font-size:2rem;
color:#3B82F6;

}

.stats p{

color:#b8c3d1;
font-size:.95rem;

}
/* =========================
   SERVICES
========================= */

.services-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
perspective:1000px;

}

.service-card{

display:block;
background:#0c1a2d;
padding:35px;
border-radius:18px;
border:1px solid rgba(255,255,255,.05);
overflow:hidden;
transition:.35s;

}

.service-card-img{
margin:-35px -35px 22px -35px;
}
.service-card-img img{
width:100%;
height:160px;
object-fit:cover;
display:block;
}

.service-card-static{
    cursor:default;
}
.service-card-static:hover{
    transform:none;
    border-color:rgba(255,255,255,.05);
    box-shadow:none;
}

.service-card:hover{

transform:translateY(-10px) rotateX(3deg);
border-color:#3B82F6;
box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.service-card .icon{

width:55px;
height:55px;
display:flex;
align-items:center;
justify-content:center;
background:#12345c;
border-radius:12px;
margin-bottom:20px;
color:#3B82F6;
font-size:1.2rem;

}

.service-card h3{

margin-bottom:12px;
font-size:1.3rem;

}

.service-card p{

color:#a7b6c8;
font-size:.95rem;

}

/* =========================
   WHY CHOOSE US
========================= */

.why-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.why-image img{

border-radius:20px;
box-shadow:0 25px 60px rgba(0,0,0,.4);

}

.section-label{

display:inline-block;
background:#12345c;
color:#67b5ff;
padding:8px 16px;
border-radius:40px;
font-size:.8rem;
font-weight:600;
margin-bottom:15px;

}

.why-content h2{

font-size:2.5rem;
margin-bottom:20px;

}

.why-content p{

color:#aab7c8;
margin-bottom:30px;

}

/* =========================
   FEATURES
========================= */

.feature-list{

display:flex;
flex-direction:column;
gap:25px;
margin-bottom:40px;

}

.feature{

display:flex;
gap:18px;
align-items:flex-start;

}

.feature i{

color:#3B82F6;
font-size:1.2rem;
margin-top:5px;

}

.feature h3{

margin-bottom:5px;
font-size:1.1rem;

}

.feature p{

color:#a6b5c7;
font-size:.95rem;

}

/* =========================
   NUMBERS
========================= */

.numbers{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:40px;

}

.numbers div{

background:#0c1a2d;
padding:25px;
border-radius:15px;
text-align:center;
border:1px solid rgba(255,255,255,.05);

}

.numbers h2{

color:#3B82F6;
font-size:1.8rem;

}

.numbers span{

color:#b5c3d3;
font-size:.9rem;

}
/* =========================
   CASE STUDIES
========================= */

.case-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.case-card{

background:#0c1a2d;
border-radius:18px;
overflow:hidden;
border:1px solid rgba(255,255,255,.05);
transition:.35s;

}

.case-card:hover{

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

}

.case-card img{

width:100%;
height:220px;
object-fit:cover;

}

.case-content{

padding:25px;

}

.industry{

display:inline-block;
padding:6px 12px;
background:#12345c;
color:#67b5ff;
border-radius:30px;
font-size:.75rem;
font-weight:600;
margin-bottom:15px;

}

.case-content h3{

font-size:1.3rem;
margin-bottom:12px;

}

.case-content p{

color:#a6b6c8;
font-size:.95rem;
margin-bottom:20px;

}

/* =========================
   METRICS
========================= */

.metrics{

display:flex;
gap:20px;

}

.metrics div{

background:#07111F;
padding:12px 15px;
border-radius:12px;
flex:1;
text-align:center;
border:1px solid rgba(255,255,255,.05);

}

.metrics h4{

color:#3B82F6;
font-size:1.2rem;

}

.metrics span{

color:#aab7c8;
font-size:.8rem;

}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-grid{

display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;

}

.testimonial-card{

background:#0c1a2d;
padding:30px;
border-radius:18px;
border:1px solid rgba(255,255,255,.05);
transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-8px);

}

.stars{

color:#fbbf24;
font-size:1.1rem;
margin-bottom:15px;

}

.testimonial-card p{

color:#aab7c8;
margin-bottom:25px;

}

.client{

display:flex;
align-items:center;
gap:15px;

}

.client img{

width:45px;
height:45px;
border-radius:50%;
object-fit:cover;

}

.avatar-initials{
width:45px;
height:45px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
color:white;
font-weight:700;
font-size:.85rem;
flex-shrink:0;
}

.client h4{

margin-bottom:3px;

}

.client span{

color:#9fb0c2;
font-size:.85rem;

}

/* =========================
   TRUST BAR
========================= */

.trust-bar{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin-top:60px;

}

.trust-bar div{

background:#0c1a2d;
padding:25px;
text-align:center;
border-radius:15px;
border:1px solid rgba(255,255,255,.05);

}

.trust-bar h3{

color:#3B82F6;
font-size:1.6rem;

}

.trust-bar p{

color:#aab7c8;
font-size:.9rem;

}
/* =========================
   CONTACT
========================= */

.contact-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:start;

}

.contact-info{

display:flex;
flex-direction:column;
gap:12px;

}

.contact-card{

display:flex;
gap:15px;
align-items:flex-start;
background:#0c1a2d;
padding:20px;
border-radius:15px;
border:1px solid rgba(255,255,255,.05);
transition:.3s;

}

.contact-card:hover{

transform:translateY(-5px);
border-color:#3B82F6;

}

.contact-card i{

color:#3B82F6;
font-size:1.2rem;
margin-top:5px;

}

.contact-card h3{

margin-bottom:5px;

}

.contact-card a{

color:#d0d9e5;

}

.contact-card a:hover{

color:#3B82F6;

}

/* =========================
   FORM
========================= */

.contact-form{

background:#0c1a2d;
padding:35px;
border-radius:18px;
border:1px solid rgba(255,255,255,.05);

}

.contact-form input,
.contact-form textarea{

width:100%;
padding:15px;
margin-bottom:15px;
background:#07111F;
border:1px solid rgba(255,255,255,.08);
border-radius:12px;
color:white;
outline:none;

}

.contact-form input:focus,
.contact-form textarea:focus{

border-color:#3B82F6;

}

.contact-form button{

width:100%;

}

/* =========================
   FOOTER
========================= */

footer{

background:#06101c;
padding:60px 0 20px;

}

.footer-grid{

display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;

}

footer h3,
footer h4{

margin-bottom:15px;

}

footer a{

display:block;
margin-bottom:8px;
color:#aab7c8;

}

footer a:hover{

color:#3B82F6;

}

.copyright{

text-align:center;
margin-top:40px;
color:#7f92a8;
font-size:.9rem;

}

/* =========================
   WHATSAPP FLOAT BUTTON
========================= */

.whatsapp-float{

position:fixed;
right:25px;
bottom:25px;
background:#25D366;
color:white;
padding:15px 22px;
border-radius:50px;
font-weight:600;
display:flex;
align-items:center;
gap:10px;
box-shadow:0 15px 35px rgba(0,0,0,.4);
z-index:9999;
transition:.3s;

}

.whatsapp-float:hover{

transform:translateY(-4px);
background:#1ebe5d;

}

/* =========================
   RESPONSIVE
========================= */

/* ---------------- TABLETS ---------------- */

/* ===== HAMBURGER MENU TOGGLE ===== */
.menu-toggle{
    display:none;
    flex-shrink:0;
    width:38px;
    height:38px;
    background:transparent;
    border:none;
    color:#fff;
    font-size:1.4rem;
    cursor:pointer;
    padding:8px;
}

/* ===== MOBILE MENU PANEL ===== */
.menu-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.6);
    z-index:1000;
    opacity:0;
    transition:opacity .3s ease;
}
.menu-overlay.active{
    display:block;
    opacity:1;
}

.mobile-menu{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    height:100vh;
    background:#0c1a2d;
    z-index:1001;
    padding:96px 28px 40px;
    display:flex;
    flex-direction:column;
    gap:0;
    opacity:0;
    pointer-events:none;
    transform:none;
    transition:opacity .35s ease;
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
}
.mobile-menu.active{
    opacity:1;
    pointer-events:auto;
}
.mobile-menu a{
    color:#d5dbe5;
    font-weight:500;
    padding:20px 0;
    border-bottom:1px solid rgba(255,255,255,.08);
    font-size:1.02rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    text-align:left;
    transition:color .25s ease, opacity .35s ease, transform .35s ease;
    opacity:0;
    transform:translateY(10px);
}
.mobile-menu.active a{
    opacity:1;
    transform:translateY(0);
}
.mobile-menu.active a:nth-child(2){ transition-delay:.05s; }
.mobile-menu.active a:nth-child(3){ transition-delay:.08s; }
.mobile-menu.active a:nth-child(4){ transition-delay:.11s; }
.mobile-menu.active a:nth-child(5){ transition-delay:.14s; }
.mobile-menu.active a:nth-child(6){ transition-delay:.17s; }
.mobile-menu.active a:nth-child(7){ transition-delay:.20s; }
.mobile-menu.active a:nth-child(8){ transition-delay:.23s; }
.mobile-menu.active a:nth-child(9){ transition-delay:.26s; }
.mobile-menu.active a:nth-child(10){ transition-delay:.29s; }
.mobile-menu.active a:nth-child(11){ transition-delay:.32s; }
.mobile-menu a:hover{
    color:#3B82F6;
}
.mobile-close{
    position:absolute;
    top:24px;
    right:24px;
    background:transparent;
    border:none;
    color:#fff;
    font-size:1.6rem;
    cursor:pointer;
}

@media (max-width: 992px){

.container{
    width:92%;
}

.hero{
    padding-top:140px;
    padding-bottom:70px;
}

.hero-grid,
.why-grid,
.contact-grid{

    grid-template-columns:1fr;
    gap:50px;
}

.hero-content{
    order:1;
}

.hero-image{
    order:2;
}

.hero h1{
    font-size:3rem;
}

.hero-buttons{
    flex-wrap:wrap;
}

.services-grid,
.case-grid,
.testimonial-grid,
.footer-grid{
    grid-template-columns:repeat(2,1fr);
}

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

.stats{
    justify-content:space-between;
}

}


/* ---------------- MOBILE ---------------- */

@media (max-width:768px){

header{
    padding:0;
}

.nav{

    height:75px;
}

nav{
    display:none;
}

.menu-toggle{
    display:block;
}

.nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}

.nav-links-group{
    display:none;
}

.logo{
    font-size:.95rem;
    flex-shrink:1;
    min-width:0;
}

.logo-mark{
    width:24px;
    height:24px;
}

.nav-actions-group{
    gap:10px;
    flex-shrink:0;
}

header .btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:9px 14px;
    font-size:.68rem;
    white-space:nowrap;
}

.hero-content,
.why-content,
.contact-info,
.footer-brand,
footer > .container.footer-grid > div{
    text-align:center;
}

.hero-buttons,
.feature,
.contact-card,
.footer-col a{
    justify-content:center;
}

.feature{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.contact-card{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.hero{

    padding-top:130px;
    padding-bottom:70px;
    background-position:center;
}

.hero-grid{
    max-width:100%;
}

.hero h1{
    max-width:100%;
}

.hero p{
    max-width:100%;
}

.hero-grid{

    gap:35px;
}

.tag{

    font-size:.75rem;
    padding:8px 14px;
}

.hero h1{

    font-size:2.3rem;
    line-height:1.25;
}

.hero p{

    font-size:1rem;
    margin-bottom:30px;
}

.hero-buttons{

    flex-direction:column;
    gap:15px;
}

.hero-buttons .btn{

    width:100%;
}

.stats{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    text-align:center;
}

.stats h2{

    font-size:1.6rem;
}

.stats p{

    font-size:.8rem;
}

.hero-image img{

    border-radius:18px;
}

.section{

    padding:70px 0;
}

.section-title{

    margin-bottom:45px;
}

.section-title h2{

    font-size:2rem;
}

.section-title p{

    font-size:.95rem;
}

.services-grid,
.case-grid,
.testimonial-grid,
.footer-grid{

    grid-template-columns:1fr;
}

.service-card,
.case-card,
.testimonial-card{

    padding:25px;
}

.numbers{

    grid-template-columns:1fr;
}

.metrics{

    flex-direction:column;
}

.contact-grid{

    gap:30px;
}

.contact-form{

    padding:25px;
}

.whatsapp-float{

    right:15px;
    bottom:15px;
    padding:12px 16px;
    font-size:.9rem;
}

}


/* ---------------- SMALL PHONES ---------------- */

@media (max-width:480px){

.container{

    width:94%;
}

.logo{

    font-size:.82rem;
    gap:6px;
}

.logo-mark{
    width:22px;
    height:22px;
}

header .btn{

    padding:8px 12px;
    width:auto;
    height:auto;
    font-size:.66rem;
    white-space:nowrap;
}

.btn-text{
    display:inline;
}
.btn-icon{
    display:none !important;
}

/* Shorten CTA label on very small screens so it never crowds the logo */
header .btn .btn-text{
    font-size:0;
}
header .btn .btn-text::after{
    content:"Book Call";
    font-size:.66rem;
}

.hero h1{

    font-size:2.05rem;
}

.hero p{

    font-size:.95rem;
}

.btn{

    padding:14px 20px;
}

.section-title h2{

    font-size:1.8rem;
}

.whatsapp-float{

    padding:12px;
}

.whatsapp-float i{

    font-size:20px;
}

.whatsapp-float{

    gap:8px;
}

}

.footer-contact{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.footer-contact a{
    color:#aab7c8;
}

.footer-contact a:hover{
    color:#3B82F6;
}

/* ===== INNER PAGE HERO (Service pages, Blog) ===== */
.page-hero{
    padding-top:150px;
    padding-bottom:60px;
    text-align:center;
}
.page-hero .tag{
    margin:0 auto 20px;
}
.page-hero h1{
    font-size:2.6rem;
    font-weight:800;
    margin-bottom:18px;
}
.page-hero h1 span{
    color:#3B82F6;
}
.page-hero p{
    color:#a6b5c7;
    max-width:640px;
    margin:0 auto;
    line-height:1.7;
}
.page-crumb{
    font-size:.85rem;
    color:#6b7c93;
    margin-bottom:18px;
}
.page-crumb a{
    color:#8fa3bb;
}
.page-crumb a:hover{
    color:#3B82F6;
}

/* ===== PROSE CONTENT ===== */
.prose{
    max-width:760px;
    margin:0 auto;
}
.prose h2{
    font-size:1.6rem;
    font-weight:700;
    margin:40px 0 14px;
    color:#fff;
}
.prose p{
    color:#a6b5c7;
    font-size:1.02rem;
    line-height:1.85;
    margin-bottom:18px;
}
.prose ul{
    margin:0 0 20px;
}
.prose ul li{
    color:#a6b5c7;
    font-size:1rem;
    line-height:1.8;
    padding-left:24px;
    position:relative;
    margin-bottom:8px;
}
.prose ul li::before{
    content:"";
    position:absolute;
    left:0;
    top:11px;
    width:6px;
    height:6px;
    background:#3B82F6;
    border-radius:50%;
}

/* ===== BLOG GRID ===== */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.blog-card{
    display:block;
    background:#0c1a2d;
    padding:30px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;
}
.blog-card:hover{
    transform:translateY(-8px);
    border-color:#3B82F6;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}
.blog-card span.tag-label{
    font-size:.75rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
    color:#3B82F6;
    display:block;
    margin-bottom:12px;
}
.blog-card h3{
    font-size:1.2rem;
    margin-bottom:12px;
    color:#fff;
}
.blog-card p{
    color:#a6b5c7;
    font-size:.92rem;
    line-height:1.6;
    margin-bottom:14px;
}
.blog-card-link{
    font-size:.85rem;
    font-weight:700;
    color:#3B82F6;
}

@media (max-width: 900px){
    .blog-grid{ grid-template-columns:1fr; }
}

/* ===== PORTFOLIO GRID ===== */
.portfolio-filters{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
    margin-bottom:40px;
}
.industry-dropdown{
    position:relative;
}
.industry-toggle{
    display:inline-flex;
    align-items:center;
    gap:8px;
}
.industry-toggle i{
    font-size:.75rem;
    transition:transform .25s ease;
}
.industry-toggle[aria-expanded="true"] i{
    transform:rotate(180deg);
}
.industry-menu{
    display:none;
    position:absolute;
    top:calc(100% + 8px);
    left:0;
    min-width:200px;
    background:#0c1a2d;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:8px;
    box-shadow:0 20px 50px rgba(0,0,0,.5);
    z-index:50;
}
.industry-menu.is-open{
    display:block;
}
.industry-menu li{
    padding:11px 14px;
    border-radius:8px;
    font-size:.88rem;
    color:#a6b5c7;
    cursor:pointer;
    transition:.2s;
}
.industry-menu li:hover{
    background:rgba(59,130,246,.12);
    color:#fff;
}
.industry-menu li.active{
    background:#3B82F6;
    color:#fff;
}
.filter-pill{
    background:#0c1a2d;
    border:1px solid rgba(255,255,255,.08);
    color:#a6b5c7;
    padding:9px 18px;
    border-radius:30px;
    font-size:.85rem;
    font-weight:600;
    cursor:pointer;
    transition:.25s;
}
.filter-pill:hover{
    border-color:#3B82F6;
    color:#fff;
}
.filter-pill.active{
    background:#3B82F6;
    color:#fff;
    border-color:#3B82F6;
}
.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}
.portfolio-card{
    display:block;
    background:#0c1a2d;
    border-radius:18px;
    overflow:hidden;
    border:1px solid rgba(255,255,255,.05);
    transition:.35s;
}
.portfolio-card:hover{
    transform:translateY(-8px);
    border-color:#3B82F6;
    box-shadow:0 20px 40px rgba(0,0,0,.35);
}
.portfolio-card.is-hidden{
    display:none;
}
.portfolio-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}
.portfolio-card-body{
    padding:24px;
}
.portfolio-badge{
    display:inline-block;
    font-size:.72rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.05em;
    color:#3B82F6;
    margin-bottom:10px;
}
.portfolio-card h3{
    font-size:1.15rem;
    margin-bottom:8px;
    color:#fff;
}
.portfolio-card p{
    color:#a6b5c7;
    font-size:.88rem;
    line-height:1.55;
    margin-bottom:12px;
}
.portfolio-services-line{
    font-size:.78rem;
    color:#6b7c93;
}

@media (max-width: 900px){
    .portfolio-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 560px){
    .portfolio-grid{ grid-template-columns:1fr; }
}

/* ===== PROJECT DETAIL PAGE ===== */
.project-banner{
    max-width:1180px;
    margin:0 auto;
    padding:0 5%;
}
.project-banner img{
    width:100%;
    max-height:480px;
    object-fit:cover;
    border-radius:20px;
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}
.project-video{
    max-width:1180px;
    margin:24px auto 0;
    padding:0 5%;
}
.project-video video{
    width:100%;
    border-radius:20px;
    box-shadow:0 30px 70px rgba(0,0,0,.35);
}
.project-grid-layout{
    display:grid;
    grid-template-columns:1.3fr 0.9fr;
    gap:50px;
    align-items:start;
}
.project-block{
    margin-bottom:30px;
}
.project-block h2{
    font-size:.85rem;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.06em;
    color:#3B82F6;
    margin-bottom:10px;
}
.project-block p{
    color:#a6b5c7;
    font-size:1.02rem;
    line-height:1.8;
}
.project-stats-panel{
    display:flex;
    flex-direction:column;
    gap:16px;
}
.pf-metric-lg{
    background:#0c1a2d;
    border:1px solid rgba(255,255,255,.05);
    border-radius:14px;
    padding:22px;
    text-align:center;
}
.pf-metric-lg b{
    display:block;
    font-size:1.8rem;
    color:#3B82F6;
    margin-bottom:4px;
}
.pf-metric-lg span{
    color:#a6b5c7;
    font-size:.85rem;
}
.project-back{
    display:inline-block;
    color:#8fa3bb;
    font-size:.9rem;
    margin-bottom:16px;
}
.project-back:hover{
    color:#3B82F6;
}

@media (max-width: 900px){
    .project-grid-layout{ grid-template-columns:1fr; gap:30px; }
}
















/* ===== RESULTS MARQUEE BANNER ===== */
.results-marquee{
    width:100%;
    overflow:hidden;
    border-top:1px solid rgba(59,130,246,.18);
    border-bottom:1px solid rgba(59,130,246,.18);
    background:linear-gradient(180deg, rgba(59,130,246,.06), rgba(255,255,255,.02));
    padding:30px 0;
    margin-top:0;
    position:relative;
}
/* fade edges so items enter/exit smoothly */
.results-marquee::before,
.results-marquee::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:90px;
    z-index:2;
    pointer-events:none;
}
.results-marquee::before{
    left:0;
    background:linear-gradient(90deg, #07111f, transparent);
}
.results-marquee::after{
    right:0;
    background:linear-gradient(270deg, #07111f, transparent);
}
.results-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:results-scroll 30s linear infinite;
}
.results-track:hover{
    animation-play-state:paused;
}
@keyframes results-scroll{
    from{ transform:translateX(0); }
    to{ transform:translateX(-50%); }
}
.result-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:0 52px;
    white-space:nowrap;
    position:relative;
    flex-shrink:0;
}
.result-item::after{
    content:"";
    position:absolute;
    right:0;
    top:50%;
    transform:translateY(-50%);
    height:38px;
    width:1px;
    background:rgba(255,255,255,.1);
}
.result-item h3{
    font-size:2.1rem;
    font-weight:700;
    color:#3B82F6;
    line-height:1.1;
    margin:0 0 6px;
}
.result-item p{
    font-size:.82rem;
    letter-spacing:.1em;
    text-transform:uppercase;
    color:#98a4b6;
    margin:0;
}
@media (max-width:768px){
    .results-marquee{ padding:26px 0; margin-top:0; }
    .result-item{ padding:0 34px; }
    .result-item h3{ font-size:1.65rem; }
    .result-item p{ font-size:.72rem; }
}
@media (prefers-reduced-motion: reduce){
    .results-track{ animation:none; }
}


/* ===== POLISH ===== */
.btn{
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover{
    transform:translateY(-2px);
}
.service-card,
.case-card,
.testimonial-card{
    transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-card:hover,
.case-card:hover{
    transform:translateY(-6px);
    box-shadow:0 22px 50px rgba(0,0,0,.4);
}
/* keep hero legible on very wide screens */
@media (min-width:1600px){
    .hero{ background-position:center; }
}
/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
    .btn:hover,
    .service-card:hover,
    .case-card:hover{ transform:none; }
}

/* ===== CONTACT FORM STATUS ===== */
.form-status{
    margin-top:16px;
    font-size:.92rem;
    line-height:1.5;
    min-height:1.2em;
}
.form-status.success{
    color:#4ade80;
}
.form-status.error{
    color:#f87171;
}
