:root {
--bg-light: #f3f3f3;
--bg-dark: #1a1a1a;
--primary: #D00404;
--primary-on-dark: #ffffff;

--bg-white: #ffffff;
--white: #ffffff;
--text-light: #d9d9d9;
--text-muted: #6c757d;
--border-light: #c8c8c8;

--radius-sm: 12px;
--radius-md: 14px;

--transition: all .3s ease;


}

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

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

html{
scroll-behavior:smooth;
}

body{
font-family: "Rubik", sans-serif;
background:var(--bg-white);
color:#222;
overflow-x:hidden;
}

img,
svg{
display:block;
max-width:100%;
}
ol, ul {
    padding-left: 0rem;
}
a{
text-decoration:none;
transition:var(--transition);
}

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

.header-wrapper{
position:sticky;
top:0;
z-index:1000;
padding:28px 0;
transition:var(--transition);
}

.header-inner{
    display:contents;
    align-items:center;
    justify-content:space-between;
    position:relative;
}

.header-wrapper .container{
    transition:var(--transition);
}

.logo-mark{
    display:none;
}

/* =================================
STICKY / SCROLLED STATE
================================= */

.header-wrapper.is-scrolled{
    padding:14px 0;
}

.header-wrapper.is-scrolled .container{
    position:relative;
    isolation:isolate;
    background:
        linear-gradient(135deg, rgba(255,255,255,.04), rgba(255,255,255,.01) 40%, rgba(255,255,255,.03) 100%);
    -webkit-backdrop-filter:blur(1px) saturate(117%) brightness(1.05);
    backdrop-filter:blur(1px) saturate(117%) brightness(1.05);
    border:1px solid transparent;
    background-clip:padding-box;
    border-radius:999px;
    padding-top:10px;
    padding-bottom:10px;
    box-shadow:
        0 12px 40px rgba(0,0,0,.16),
        0 2px 6px rgba(0,0,0,.06),
        0 1.5px 0 rgba(255,255,255,.5) inset,
        0 -1.5px 0 rgba(0,0,0,.05) inset,
        0 0 0 1px rgba(255,255,255,.25) inset;
}

.header-wrapper.is-scrolled .container::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(115deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 22%, rgba(255,255,255,0) 78%, rgba(255,255,255,.25) 100%);
    mix-blend-mode:overlay;
    z-index:1;
}

.header-wrapper.is-scrolled .container > .header-inner > *{
    position:relative;
    z-index:2;
}

.header-wrapper.is-scrolled .logo-section::after{
    display:none;
}

.header-wrapper.is-scrolled .logo-full{
    display:none;
}

.header-wrapper.is-scrolled .logo-mark{
    display:block;
}
/* =================================
LOGO
================================= */

.logo-section{
position:relative;
display:flex;
align-items:center;
padding-right:36px;
}

.logo-section::after{
content:"";
position:absolute;
top:50%;
right:20px;


width:2px;
height:30px;

background:var(--border-light);

transform:translateY(-50%);


}

.logo-section .logo-full{
width:154px;
height:auto;
}

.logo-section span.logo-full{
display:inline-flex;
align-items:center;
}

.logo-section span.logo-full svg{
width:154px;
height:auto;
}

.logo-section .logo-mark{
width:24px;
height:24px;
margin-left:15px;
}

/* =================================
DESKTOP MENU
================================= */

.center-menu{
    position:relative; 
    display:flex;
    align-items:center;
    padding:0px;
    background:var(--bg-dark);
    border-radius:var(--radius-md);
}
 

.contact-section{
    justify-self:end;
}
.center-menu a{
position:relative;

order:0;

padding:12px 20px;

color:var(--text-light);

font-size:15px;
font-weight:400;

transition:var(--transition), order 0s;

}

.center-menu a.active{
order:-1;
}

.center-menu a::after{
content:"";

position:absolute;
left:50%;
bottom:5px;

width:5px;
height:5px;

border-radius:50%;
background:var(--primary);

transform:translateX(-50%) scale(0);
opacity:0;
transition:var(--transition);

}

.center-menu a:hover{
color:var(--primary);
}

.center-menu a.active{
color:var(--primary-on-dark);
font-weight:600;
}

.center-menu a:hover::after,
.center-menu a.active::after{
transform:translateX(-50%) scale(1);
opacity:1;
}

/* =================================
CONTACT BUTTON
================================= */

.contact-section{
margin-left:auto;
}

.contact-btn{
display:inline-flex;
align-items:center;
justify-content:center;
padding:12px 24px;
color:var(--white);
background:var(--primary);

border-radius:999px;

font-size:14px;
font-weight:500;


}

.contact-btn:hover{
background:#c70000;
color:var(--white);
}

/* =================================
MOBILE TOGGLE
================================= */

.menu-toggle{
display:none;


background:none;
border:none;

font-size:28px;
cursor:pointer;


}

/* =================================
MOBILE MENU
================================= */

.mobile-menu{
display:none;
}

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

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

#mobileMenu{
    position: relative;
}

/* =================================
TABLET & MOBILE
================================= */

@media (max-width:991px){


.header-wrapper{
    padding:20px 0;
}

.logo-section{
    padding-right:0;
    flex:0 0 auto;
}

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

.logo-section .logo-full{
    width:140px;
}

.logo-section span.logo-full svg{
    width:140px;
}

.center-menu{
    display:none;
}

.contact-section{
    display:none;
}

.menu-toggle{
    display:block;
}

.mobile-menu{
    display:none;

    flex-direction:column;
    gap:8px;

    margin-top:20px;
    padding:20px;

    background:var(--bg-dark);
    border-radius:var(--radius-md);
}

.mobile-menu.show{
    display:flex !important;
    width:100%;
    flex-basis:100%;
}
.mobile-menu a{
    color:var(--white);
    padding:12px;
    text-align:center;
    order:0;
}

.mobile-menu a.active{
    order:-1;
}

.mobile-menu a.active{
    color:var(--primary-on-dark);
    font-weight:600;
}

.mobile-menu .contact-btn{
    margin-top:10px;
}


}

/* =================================
MOBILE
================================= */

@media (max-width:768px){


.hero-section{
    padding:60px 0;
}

.hero-title{
    line-height:1.2;
}


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

.hero-section{ 
    padding:80px 0 0;
    overflow:hidden;
}

.hero-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.hero-content{
    flex:1;
    max-width:600px;
}

.hero-title{
    font-size:53px;
    font-weight:700;
    line-height:1.1;
    color:#1b1d27;
    margin-bottom:20px;
}

.hero-title span{
    color:#D00404;
}

.hero-subtitle{
    font-size:28px;
    font-weight:600;
    color:#1b1d27;
    margin-bottom:40px;
}

.tech-stack{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    max-width:420px;
}

.tech-item{
    width:54px;
    height:54px;

    background:#000;
    border-radius:14px;

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

    transition:.3s;
}

.tech-item:hover{
    transform:translateY(-6px);
}

.tech-item img{
    width:28px;
    height:28px;
    object-fit:contain;
}

.hero-image{
  flex: 1;
    text-align: right;
    position: absolute;
    right: 8%;
    top: 0%;
}

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

/* ==========================
ANIMATION
========================== */

.fade-up{
    animation:fadeUp .8s ease forwards;
}

.fade-right{
    animation:fadeRight 1s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

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

@media(max-width:991px){

    .hero-wrapper{
        flex-direction:column;
        text-align:center;
    }

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

    .hero-title{
        font-size:40px;
    }

    .tech-stack{
        justify-content:center;
        margin:auto;
    }

    .hero-image{
        text-align:center;
        
        position: relative !important;
    }

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

@media(max-width:576px){

    .hero-title{
        font-size:32px;
    }

    .hero-subtitle{
        font-size:18px;
    }

    .tech-item{
        width:48px;
        height:48px;
    }
    .hero-image {
        left: 0px !important;
    }
}

/* ==================================
ABOUT SECTION
================================== */

.about-section{
    padding:60px 0;
    background:var(--bg-white);
}

.about-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;
}

/* =====================
LEFT
===================== */

.about-gallery{
    display:flex;
    gap:18px;
    margin-bottom:50px;
}

.phone-card{
    flex:1;
    overflow:hidden;
    border-radius:24px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.phone-card img{
    width:100%;
    display:block;
}

.about-content h2{
    font-size:45px;
    font-weight:700;
    margin-bottom:25px;
}

.about-content p{
    font-size:20px;
    line-height:1.9;
    color:#444;
    margin-bottom:25px;
}

.about-content h4{
    font-size:30px;
    font-weight:700;
    line-height:1.4;
    margin-bottom:35px;
}

.about-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:52px;
    border: none;
    padding:0 34px;

    border-radius:40px;

    background:#000;
    color:#fff;
    font-weight:600;
}

/* =====================
RIGHT
===================== */

.about-right{
    display:flex;
    flex-direction:column;
    gap:28px;
}

/* =====================
STATS CARD
===================== */
.stats-card{
    position:relative;
    background:#111;
    color:#fff;
    border-radius:42px;
    padding:60px 86px;
    min-height:280px;
    overflow:hidden;
}

.stats-card::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:url("../images/home/world_map.39af0e8ce860.webp");
    background-repeat:no-repeat;
    background-position:center;
    background-size:70%;

    opacity:.25;
    pointer-events:none;
}
.stats-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.stats-grid h3{
    font-size:45px;
    font-weight:700;
    margin-bottom:8px;
}

.stats-grid span{
    font-size:22px;
    color:#ddd;
}

.stats-circles{
    position:absolute;
    top:50px;
    right:40px;
}

.stats-circles span{
    display:block;
    width:24px;
    height:24px;
    border:2px solid #fff;
    border-radius:8px;
    margin-bottom:10px;
}

/* =====================
SERVICE CARD
===================== */

.service-card{
    background:#111;
    color:#fff;

    border-radius:42px; 
    padding:80px 30px 60px 80px;
}

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

.service-item{
    display:flex;
    align-items:center;
    gap:15px;
}

.service-item span{
    width:48px;
    height:48px;
    min-width: 48px;
    min-height: 48px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:#222;
    border-radius:12px;
}
.navbar-toggler-icon{
    background: none !important;
}

.service-item p{
    margin:0;
    font-size:18px;
}

.service-title{ 
    text-align: center;
    margin-top: 50px;
    font-size: 28px;
    font-weight: 500;
    
    margin-right: 45px;
}

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

@media(max-width:991px){

    .about-wrapper{
        grid-template-columns:1fr;
    }

    .about-content h2{
        font-size:42px;
    }

    .about-content h4{
        font-size:26px;
    }

    .stats-grid h3{
        font-size:38px;
    }

    .service-title{
        font-size:26px;
    }
}

@media(max-width:768px){

    .about-gallery{
        flex-direction:column;
    }

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

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

    .about-content p{
        font-size:16px;
    }
}

/* ==================================
SERVICES SECTION
================================== */

.services-section{
    padding:60px 0;
    background:var(--bg-light);
}

.services-heading{
    margin-bottom:50px;
}

.services-heading h2{
    font-size:45px;
    font-weight:700;
    color:#1b1d27;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
}

.service-box{
    background:#fff;
    border-radius:42px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.35s ease;
}

.service-box:hover{
    transform:translateY(-10px);
}

.service-image{
    padding:18px;
}

.service-image img{
    width:100%;
    height:220px;
    object-fit:cover;
    border-radius:24px;
}

.service-content{
    padding:0 24px 24px;
}

.service-content p{
    font-size:20px;
    line-height:1.8;
    color:#333;
    margin-bottom:30px;
}

.service-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.service-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:12px 22px;

    background:#000;
    color:#fff;

    border-radius:30px;

    font-size:14px;
    font-weight:600;
}

.service-arrow{
    width:48px;
    height:48px;

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

    border-radius:14px;

    background:var(--primary);
    color:#fff;

    font-size:24px;
    font-weight:700;
}

.service-arrow:hover{
    color:#fff;
    background:#c70000;
}

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

@media(max-width:991px){

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

    .services-heading h2{
        font-size:42px;
    }
}

@media(max-width:768px){

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

    .services-section{
        padding:80px 0;
    }

    .services-heading h2{
        font-size:34px;
    }

    .service-content p{
        font-size:16px;
    }
}

/* ==================================
EXPERTISE SECTION
================================== */

.expertise-section{
    padding:60px 0;
    background:var(--bg-white);
    overflow:hidden;
}

.expertise-heading{
    margin-bottom:50px;
}

.expertise-heading h2{
    font-size:45px;
    font-weight:700;
}

.expertise-heading span{
    color:#6c6c6c;
}
.expertise-wrapper{
    display:grid;
    grid-template-columns:45% 50%;
    gap:60px;
    align-items:start;
}

.expertise-image{
    position:sticky;
    top:40px;
    display:flex;
    justify-content:center;
}

.expertise-image img { 
    max-width: 181%;
    object-fit: contain;
    position: absolute; 
    left: -44%;
    top: -365px;
}
/* ====================
RIGHT SIDE
==================== */

.expertise-cards{
    display:flex;
    flex-direction:column;
    gap:28px;
}

/* ====================
CARD
==================== */

.expertise-card{
    background:#fff;
    border-radius:42px;
    padding: 60px 35px 50px;
    display:flex;
    gap:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s ease;
}

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

.expertise-icon{
    width:54px;
    height:54px;
    flex-shrink:0;
}

.expertise-icon img{
    width:100%;
}

.expertise-content{
    width:100%;
}

.expertise-content h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:15px;
}

.expertise-content p{
    font-size:18px;
    line-height:1.8;
    color:#444;
    margin-bottom:25px;
}

.expertise-footer{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:20px;
}

.expertise-footer ul{
    padding-left:18px;
    margin:0;
}

.expertise-footer li{
    margin-bottom:8px;
    color:#555;
}

.expertise-link{
    display:flex;
    align-items:center;
    gap:12px;

    color:#111;
    font-weight:600;
}
.expertise-link span:hover, .service-arrow:hover,.expertise-get-in-touch:hover svg{
        transform: translateX(6px);
}
.work-prev:hover{
        transform: translateX(-6px); 
}
.work-next:hover{
        transform: translateX(6px); 
}
.expertise-link span{
    width:38px;
    height:38px;

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

    background:var(--primary);
    color:#fff;

    border-radius:12px;
}

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

@media(max-width:1200px){

    .expertise-wrapper{
        grid-template-columns:420px 1fr;
    }
}

@media(max-width:991px){

    .expertise-wrapper{
        grid-template-columns:1fr;
    }

    .expertise-image{
        position:relative;
        max-width:500px;
        margin:auto;
    }

    .expertise-heading h2{
        font-size:42px;
    }
}

@media(max-width:768px){

    .expertise-card{
        flex-direction:column;
        padding:25px;
    }

    .expertise-footer{
        flex-direction:column;
        align-items:flex-start;
    }

    .expertise-heading h2{
        font-size:34px;
    }

    .expertise-content h3{
        font-size:22px;
    }

    .expertise-content p{
        font-size:16px;
    }
}

/* ==========================
GENERATIVE AI SECTION
========================== */

.genai-section{
    padding:60px 0;
}

.genai-card{
    background:#111;
    border-radius:42px;
    padding:72px 68px 60px;
    color:#fff;

    display:grid;
    grid-template-columns:420px 1fr;
    gap:80px;

    position:relative;
    overflow:hidden;
}

.genai-card::before{
    content:"";
    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(109,84,255,.08),
        transparent 40%
    );

    pointer-events:none;
}

.genai-progress h2{
    font-size:45px;
    font-weight:700;
    margin-bottom:40px;
    background: linear-gradient(90deg, #8C00F5, #60F3FF); 
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.progress-item{
    display:grid;
    grid-template-columns:1fr 160px 40px;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.progress-item span{
    font-size:14px;
    color:#fff;
}

.bar{
    height:14px;
    background:#fff;
    border-radius:50px;
    overflow:hidden;
}

.fill{
    height:100%;
    border-radius:50px;
    width:0;
}

.fill-95{
    width:95%;
    background:linear-gradient(
        90deg,
        #4f7cff,
        #58f0ff
    );
}

.fill-50{
    width:50%;
    background:linear-gradient(
        90deg,
        #ff7d4f,
        #ffc24f
    );
}

.fill-20{
    width:20%;
    background:linear-gradient(
        90deg,
        #ff5050,
        #ff8080
    );
}

.progress-item strong{
    font-size:32px;
    font-weight:700;
}

.genai-content{
    position:relative;
}

.genai-logo{
    position:absolute;
    top:0;
    right:0;

    font-size:32px;
    font-weight:700;
}

.genai-content h3{
    font-size:45px;
    font-weight:700;
    margin-bottom:25px;
}

.genai-content h3 span{
    color:#777;
}

.genai-content p{
    max-width:600px; 
    line-height:1.9;
    color:#cfcfcf;

    margin-bottom:35px;
}

.genai-btn{
    border: none;
    outline: none;
    background:transparent;
    overflow: hidden;
}

 

.genai-btn span{
    color:#6ff7ff;
}

/* ==========================
ASK AVO CHAT MODAL
========================== */

.askavo-overlay{
    display:none;
    position:fixed;
    inset:0;
    z-index:2000;
    align-items:flex-end;
    justify-content:center;
    padding:24px;
    background:rgba(0,0,0,.55);
    -webkit-backdrop-filter:blur(4px);
    backdrop-filter:blur(4px);
}

.askavo-overlay.show{
    display:flex;
}

.askavo-modal{
    display:flex;
    flex-direction:column;
    width:100%;
    max-width:1000px;
    height:min(560px, 82vh);
    background:#0d0d10;
    border:1px solid rgba(255,255,255,.08);
    border-radius:32px;
    box-shadow:0 30px 80px rgba(0,0,0,.5);
    overflow:hidden;
}

.askavo-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 28px; 
}

.askavo-title{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-weight:600;
}

.askavo-dots{
    color:#6f6cff;
}

.askavo-close{
    padding:8px 20px;
    background:transparent;
    border:none;
    border-radius:30px;
        width: 150px;
    color:#fff;
    font-size:13px;
    font-weight:500;
    cursor:pointer;
    transition:var(--transition);
}

.askavo-close:hover{
    border-color:#6f6cff;
    color:#6f6cff;
}

.askavo-messages{
    flex:1 1 auto;
    overflow-y:auto;
    padding:28px;
    display:flex;
    flex-direction:column;
    gap:20px;
    scrollbar-width:thin;
    scrollbar-color:rgba(255,255,255,0.25) transparent;
}

.askavo-messages::-webkit-scrollbar{
    width:8px;
    background:transparent;
}

.askavo-messages::-webkit-scrollbar-track{
    background:transparent;
}

.askavo-messages::-webkit-scrollbar-thumb{
    background-color:rgba(255,255,255,0.25);
    border-radius:10px;
    border:2px solid transparent;
    background-clip:padding-box;
}

.askavo-messages:hover::-webkit-scrollbar-thumb{
    background-color:rgba(255,255,255,0.4);
}

.askavo-msg{
    display:flex;
    align-items:center;
    gap:10px;
    max-width:80%;
}

.askavo-msg.bot{
    align-self:flex-start;
}

.askavo-msg.user{
    align-self:flex-end;
    flex-direction:ROW;
    align-items:center;
    max-width:60%;
}

.askavo-avatar{
    flex:0 0 auto;
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    font-size:14px;
}

.askavo-bubble{
    position:relative;
    padding:14px 18px;
    background:rgba(255,255,255,.08);
    border-radius:18px;
    color:#e9e9e9;
    font-size:14px;
    line-height:1.6;
}

.askavo-msg.user .askavo-bubble{
    background:rgba(111,108,255,.18);
    color:#fff;
}

.askavo-time{
    display:block;
    margin-top:6px;
    color:rgba(255,255,255,.4);
    font-size:11px;
}

.askavo-lead-card{
    max-width:320px;
}

.askavo-lead-intro{
    margin:0 0 12px;
}

.askavo-lead-form{
    display:flex;
    flex-direction:column;
    gap:10px;
}

.askavo-lead-form input,
.askavo-lead-form textarea{
    width:100%;
    padding:10px 14px;
    border-radius:12px;
    border:1px solid rgba(255,255,255,.15);
    background:rgba(255,255,255,.06);
    color:#fff;
    font-size:13px;
    font-family:inherit;
}

.askavo-lead-form textarea{
    min-height:70px;
    resize:vertical;
}

.askavo-lead-form input::placeholder,
.askavo-lead-form textarea::placeholder{
    color:rgba(255,255,255,.45);
}

.askavo-lead-form .about-btn{
    align-self:flex-start;
}

.askavo-who{
    margin-top:4px;
    color:#61efff;
    font-size:11px;
}

.askavo-inputbar{
    display:flex;
    align-items:center;
    gap:12px;
    margin:0 28px 28px;
    padding:8px 8px 8px 22px;
    background:#fff;
    border-radius:50px;
}

.askavo-inputbar input{
    flex:1 1 auto;
    border:none;
    outline:none;
    background:transparent;
    font-size:14px;
    font-family:inherit;
    color:#171717;
}

.askavo-send{
    flex:0 0 auto;
    width:38px;
    height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#171717;
    border:none;
    border-radius:50%;
    color:#fff;
    font-size:16px;
    cursor:pointer;
    transition:var(--transition);
}

.askavo-send:hover{
    background:var(--primary);
}

@media (max-width:768px){
    .askavo-overlay{
        padding:0;
    }

    .askavo-modal{
        height:100vh;
        border-radius:0;
    }
}

/* ==========================
LOAD ANIMATION
========================== */

.genai-card{
    opacity:0;
    transform:translateY(60px);
    animation:genaiFade 1s ease forwards;
}

@keyframes genaiFade{
    from{
        opacity:0;
        transform:translateY(60px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

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

@media(max-width:991px){

    .genai-card{
        grid-template-columns:1fr;
        gap:50px;
        padding:40px;
    }

    .genai-content h3{
        font-size:42px;
    }

    .genai-progress h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .genai-section{
        padding:80px 0;
    }

    .progress-item{
        grid-template-columns:1fr;
        gap:10px;
    }

    .progress-item strong{
        font-size:22px;
    }

    .genai-content h3{
        font-size:32px;
    }

    .genai-content p{
        font-size:18px;
    }

    .genai-logo{
        position:relative;
        margin-bottom:20px;
        right:auto;
        top:auto;
    }

    .genai-card{
        border-radius:28px;
        padding:30px;
    }
}

.work-section{
    padding:60px 0;
    background:var(--bg-white);
}

.work-slider{
    position:relative;
    margin-bottom:90px;
}

.work-heading h2{
    font-size:45px;
    font-weight:700;
}

.work-heading span{
    color:#6c6c6c;
}

.work-tabs{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:32px;
    margin-bottom:40px;
}

.work-tab{
    border:none;
    background:none;
    padding:10px 28px;
    border-radius:999px;
    font-size:15px;
    font-weight:600;
    color:#6c6c6c;
    cursor:pointer;
    transition:var(--transition);
}

.work-tab.active{
    background:var(--bg-dark);
    color:#fff;
}

.work-track{
    display:flex;
    gap:24px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scroll-behavior:smooth;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}

.work-card.is-hidden{
    display:none;
}

.work-track::-webkit-scrollbar{
    display:none;
}

.work-card{
    display:block;
    position:relative;
    flex:0 0 100%;
    scroll-snap-align:start; 
    overflow:hidden;
    text-align:center;
    padding:30px;
}

@media(min-width:992px){
    .work-track{
        gap:24px;
    }

    .work-card{
        flex:0 0 calc((100% - 48px) / 3);
    }
}

.work-card img{
    width:100%;
    border-radius:10px;
    position:relative;
    z-index:2;
}

.work-card h3{
    color:#fff;
    margin-top:20px;
    font-size:13px;
    letter-spacing:1px;
}

.navy{
    background:#0d2b5f;
}

.blue{
    background:#17324d;
}

.purple{
    background:linear-gradient(
        135deg,
        #d10000,
        #7c00b8
    );
}

.circle{
    display:none;
}

.custom-arrow{
    position:absolute;
    width:48px;
    height:48px;
    bottom:-70px;
    opacity:1;
    border:none;
    background:none;
    padding:0;
    z-index:2;
}

.work-prev{
    left:45%;
}

.work-next{
    right:45%;
}

.custom-arrow span{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;

    background:#1a1a1a;
    color:#D00404;
    border-radius:10px;
    font-size:26px;
}
 

@media(max-width:991px){

    .work-card{
        height:auto;
    }

    .work-prev{
        left:38%;
    }

    .work-next{
        right:38%;
    }

    .work-heading h2{
        font-size:38px;
    }
}

@media(max-width:576px){

    .work-heading h2{
        font-size:30px;
    }

    .work-slider{
        margin-bottom:60px;
    }
}


/* =================================
TESTIMONIAL SECTION
================================= */

.testimonial-section{
    padding:60px 0;
}

.testimonial-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px;
    align-items:center;
}

/* =================================
LEFT IMAGE / VIDEO
================================= */

.testimonial-video{
    overflow:hidden;
    border-radius:42px;
}

.testimonial-video iframe{
    display:block;
    width:100%;
    aspect-ratio:16/9;
    height:auto;
    border:0;
}

.yt-facade{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    aspect-ratio:16/9;
    background:#111 center/cover no-repeat;
    cursor:pointer;
}

.yt-facade-play{
    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    padding:0;
    border:none;
    border-radius:50%;
    background:rgba(208,4,4,.9);
    cursor:pointer;
    transition:var(--transition);
}

.yt-facade-play:hover{
    background:var(--primary);
    transform:scale(1.08);
}
button.faq-toggle svg{
    margin: auto;
    text-align: center;
}
.testimonial-video img{
    width:100%;
    height:100%;
    display:block;
    object-fit:none;
}

/* =================================
RIGHT CARD
================================= */

.testimonial-card{
    background:#fff;
    border-radius:42px;

    padding:73px 45px;

    min-height:300px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.testimonial-text{
    font-size:20px;
    line-height:1.7;
    color:#222;
    margin-bottom:35px;
}

.testimonial-user h3{
        font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
}

.testimonial-user h3 span{
    color:var(--primary);
}

.testimonial-linkedin{
    display:inline-flex;
    align-items:center;
    vertical-align:middle; 
}

.testimonial-linkedin svg path{
    fill:#000000;
}

.testimonial-linkedin svg path[style*="fill:#fff"]{
    fill:#fff;
}

.testimonial-user p{
    color:var(--primary);
    font-size:18px;
    margin-top:4px;
}

/* =================================
ANIMATIONS
================================= */

.fade-up{
    animation:fadeUp .8s ease forwards;
}

.fade-left{
    animation:fadeLeft 1s ease forwards;
}

.fade-right{
    animation:fadeRight 1s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes fadeLeft{
    from{
        opacity:0;
        transform:translateX(-80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes fadeRight{
    from{
        opacity:0;
        transform:translateX(80px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

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

@media(max-width:991px){

    .testimonial-wrapper{
        grid-template-columns:1fr;
    }

    .testimonial-card{
        min-height:auto;
    }

    .testimonial-user h3{
        font-size:32px;
    }
}

@media(max-width:576px){

    .testimonial-section{
        padding:80px 0;
    }
    section{
        padding-bottom: 20px !important;
        padding-top: 20px !important;
        padding-right:10px !important;
        padding-left:10px !important;
    } 

    .testimonial-card{
        padding:30px;
        border-radius:24px;
    }

    .testimonial-video{
        border-radius:24px;
    }

    .testimonial-text{
        font-size:16px;
    }

    .testimonial-user h3{
        font-size:28px;
    }
}

/* ==========================
FAQ SECTION
========================== */

.faq-section{
    padding:60px 0;
}

.faq-heading{
    text-align:center;
    font-size:64px;
    font-weight:700;
    margin-bottom:60px;
}

.faq-heading span{
    color:#6c6c6c;
}

@media(max-width:991px){

    .faq-heading{
        font-size:45px;
        margin-bottom:45px;
    }
}

@media(max-width:576px){

    .faq-heading{
        font-size:36px;
        margin-bottom:35px;
    }

    .faq-question{
        padding:18px 16px;
    }

    .faq-question h3{
        font-size:16px;
    }
}

.faq-wrapper{
    max-width:900px;
    margin:auto;
}

.faq-item{
    margin-bottom:18px;
}

.faq-question{

    background:#f7f7f7;

    border-radius:18px;

    padding:22px 28px;

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

    cursor:pointer;
}

.faq-question h3{
    font-size:18px;
    font-weight:600;
    margin:0;
}

.faq-toggle{

    width:36px;
    height:36px;

    border:none;

    border-radius:10px;

    background:#1b1d27;
    color:#D00404;

    font-size:14px;

    transition:.3s;
}

.faq-answer{

    max-height:0;
    overflow:hidden;

    transition:max-height .4s ease;

    padding:0 30px;
}

.faq-answer p{
    padding-top:22px;

    font-size:18px;
    line-height:1.8;

    color:#333;
}

.faq-item.active .faq-answer{
    max-height:250px;
}

.faq-item.active .faq-toggle{
    transform:rotate(180deg);
}


/* ==========================
BLOG SECTION
========================== */

.blog-section{
    padding:60px 0;
}

.blog-heading{
    text-align:center;
    font-size:64px;
    font-weight:700;
    margin-bottom:70px;
}

.blog-heading span{
    color:#6c6c6c;
}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    align-items:stretch;
}

.blog-card{
    display:flex;
    flex-direction:column;
    height:100%;
}

.blog-card .blog-description{
    flex-grow:1;
}

.blog-image-link{
    display:block;
    margin-bottom:24px;
    border-radius:var(--radius-md);
    overflow:hidden;
    height:220px;
    background:#f0f0f0;
}

.blog-image{
    width:100%;
    height:220px;
    object-fit:cover;
}

.blog-detail-image{
    width:100%;
    max-height:420px;
    object-fit:cover;
    border-radius:var(--radius-md);
    margin-bottom:30px;
}

.blog-title{
    font-size:20px;
    font-weight:700;
    line-height:1.6;
    margin-bottom:28px;
    color:#111;
}

.blog-description{
    font-size:18px;
    line-height:1.9;
    color:#444;
    margin-bottom:22px;
}

.blog-meta{
    font-size:14px;
    font-weight:600;
    color:#333;
    margin-bottom:25px;
}

.blog-meta span{
    margin:0 8px;
}

.blog-arrow{
    width:42px;
    height:42px;

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

    background:var(--primary);
    color:#fff;

    border-radius:12px;

    font-size:24px;
    font-weight:600;

    transition:.3s;
}

.blog-arrow:hover{
    background:#c70000;
    color:#fff;
    transform:translateX(6px);
}

/* ==========================
ANIMATION
========================== */

.fade-up{
    animation:fadeUp .8s ease forwards;
}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

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

@media(max-width:991px){

    .blog-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .blog-heading{
        font-size:45px;
    }
}

@media(max-width:576px){

    .blog-section{
        padding:80px 0;
    }

    .blog-heading{
        font-size:36px;
        margin-bottom:50px;
    }

    .blog-title{
        font-size:18px;
    }

    .blog-description{
        font-size:16px;
    }
}

/* ==========================
CLIENTS SECTION
========================== */

.clients-section{
    padding:60px 0;
}

.clients-title{
    text-align:center;
    font-size:64px;
    font-weight:700;
    margin-bottom:70px;
}

@media(max-width:991px){

    .clients-title{
        font-size:45px;
        margin-bottom:45px;
    }
}

@media(max-width:576px){

    .clients-title{
        font-size:32px;
        margin-bottom:35px;
    }
}

 
 

.client-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}
 

.clients-row{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:24px;
    margin-bottom:24px;
}

.center-row{
    justify-content:center;
}

.client-card{
    width: 100px;
    height: 99px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: 1px solid rgba(0,0,0,.06);
    transition: .3s;
}

/* The "We Enjoyed building experiences" client SVGs are plain logo marks
   with no baked-in background, so this card draws the single card chrome. */
.clients-section .client-card{
    width:102px;
    height:102px;
}

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

.site-footer{
    padding:60px 0 40px; 
}
.site-footer .border_footer {
    border-top: 1px solid rgba(0, 0, 0, .08); 
    width: 84%;
    display: block;
    justify-content: center;
    align-items: center;
    margin: auto;
    padding-bottom: 50px;
}
.footer-top{
       display: grid;
    grid-template-columns: 1.3fr repeat(5, 2fr) auto;
    gap: 19px;
    align-items: start;

}

.footer-logo img{
    width:70px;
}

.footer-column h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
}

.footer-column a{
    display:block;
    color:#333;
    margin-bottom:10px;
    font-size:15px;
}

.footer-column a:hover{
    color:var(--primary);
}

.social-links{
    display:flex;
    gap:15px;
}

.social-links a{
    font-size:20px;
}

.scroll-top{
    width:46px;
    height:46px;

    border:none;

    border-radius:14px;

    background:#111;
    color:#D00404;

    cursor:pointer;
}

.footer-bottom{
    text-align:right;
    margin-top:50px;
    font-size:14px;
    font-weight:600;
}
.scroll-top svg{
    margin: auto;
}

@media(max-width:1200px){

    .footer-top{
        grid-template-columns:repeat(3,1fr);
        gap:30px;
    }

}

@media(max-width:991px){

    .footer-top{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .footer-bottom{
        text-align:center;
    }

    .scroll-top{
        margin:auto;
    }

}

@media(max-width:768px){
      .page-banner-pills a {
    padding: 11px 12px; 
    font-size: 14px; 
}
.page-banner-pills {
        gap: 0px; 
    padding: 4px;
}

    .navbar-toggler-icon svg{
        max-width: 70%;
    }
    .navbar-toggler-icon {
    display: flex; 
    align-items: center;
}
    .site-footer{
        padding:50px 0 30px;
    }
        .work-prev {
        left: 30%;
    }
        .work-next {
        right: 30%;
    }
    .askavo-modal {
        width: 93% !important;
    }
    .expertise-image{
       display: none;
    }
.expertise-image img {
    width: 100%;
    max-width:100%;
    object-fit: contain;
    position: absolute;
    position: relative;
    left: 0;
    top: 0;
}
    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
        gap:30px;
    }

    .footer-logo{
        margin:auto;
    }

    .footer-logo img{
        margin:auto;
    }

    .social-links{
        justify-content:center;
    }

    .footer-column h3{
        margin-bottom:12px;
        font-size:20px;
    }

    .footer-column a{
        margin-bottom:8px;
    }

    .scroll-top{
        margin:auto;
    }

    .footer-bottom{
        text-align:center;
        margin-top:30px;
    }

}

@media(max-width:576px){

    .footer-column h3{
        font-size:18px;
    }
    .stats-card{
            padding: 40px 28px;
            min-height:auto;
    }
    .service-card {
    padding: 40px 24px 36px;
}
.service-title {
    margin-right: 0px;
    margin-top: 28px;
}
.faq-question h3 { 
    max-width: 203px;
}
.faq-question .faq-toggle{
     max-width: 80px;
}
 .expertise-image{
        top: -10px !important;
    }
    .footer-column a{
        font-size:14px;
    }
    .expertise-heading {
    margin-bottom: 10px;
}
 

    .social-links{
        gap:12px;
        flex-wrap:wrap;
    }

}

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

.section-title{
    text-align:center;
    font-size:45px;
    font-weight:700;
    line-height:1.1;
    margin-bottom:60px;
    color:#1b1d27;
}

.section-title span{
    color:#6c6c6c;
}

/* Tablet */
@media(max-width:991px){

    .section-title{
        font-size:45px;
        margin-bottom:45px;
    }

}

/* Mobile */
@media(max-width:576px){

    .section-title{
        font-size:36px;
        margin-bottom:35px;
    }

    .intro-section h2{
        font-size:36px;
    }

}

/* =================================
PAGE BANNER (sub-page hero)
================================= */

.page-banner{
    padding:40px 0 0;
}

.page-banner-inner{
    position:relative;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    min-height:280px;
    align-items: center;
    padding:50px 60px;
    overflow:visible;
    background:var(--bg-dark);
    border-radius:42px;
}

.page-banner-inner.no-icons{
    align-items:center;
}

.page-banner-decor{
    position:absolute;
}

.page-banner-decor span{
    position:absolute;
    border:2px solid rgba(255,255,255,.15);
    border-radius:16px;
}

.page-banner-decor span:first-child{
    width:70px;
    height:70px;
    left:40px;
    bottom:40px;
}

.page-banner-decor span:last-child{
    width:44px;
    height:44px;
    left:130px;
    bottom:30px;
}

.page-banner-text{
    position:relative;
    z-index:2;
    max-width:420px;
    justify-items: center;
}

.page-banner-title{
    font-size:clamp(2rem,4vw,2.8rem);
    font-weight:700;
    color:#fff;
    line-height:1.1;
    text-shadow:0 2px 16px rgba(0,0,0,.5);
}

.page-banner-icons{
    display:block;
    height:36px;
    width:auto;
    max-width:100%;
    object-fit:contain;
    object-position:left center;
    margin-top:16px;
    border-radius:8px;
    overflow:hidden;
}

.page-banner-title span{
    color:var(--primary);
}

.page-banner-image{
    position:absolute;
    z-index:1;
    right:40px;
    top:-40px;
    max-height:130%;
    max-width:42%;
    width:auto;
    object-fit:contain;
}

.page-banner-pills{
    position:relative;
    z-index:2;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:4px;
    width:fit-content;
    margin:-24px auto 0;
    padding:6px;
    background:#fff;
    border-radius:40px;
    box-shadow:0 10px 24px rgba(0,0,0,.1);
    transition:var(--transition);
}

.page-banner-pills.is-fixed{
    position:fixed;
    top:94px;
    left:0;
    right:0;
    z-index:999;
    margin:0 auto;
    background:
        linear-gradient(135deg, rgba(255,255,255,.5), rgba(255,255,255,.25) 40%, rgba(255,255,255,.4) 100%);
    -webkit-backdrop-filter:blur(1px) saturate(117%) brightness(1.05);
    backdrop-filter:blur(1px) saturate(117%) brightness(1.05);
    box-shadow:
        0 10px 24px rgba(0,0,0,.1),
        0 1.5px 0 rgba(255,255,255,.5) inset,
        0 0 0 1px rgba(255,255,255,.25) inset;
}

.page-banner-pills-spacer{
    display:none;
}

.page-banner-pills-spacer.show{
    display:block;
}

.page-banner-pills a{
    padding:12px 22px;
    border-radius:32px;
    font-size:14px;
    font-weight:500;
    color:#171717;
}

.page-banner-pills a.active{
    background:var(--primary);
    color:#fff;
}

@media (max-width:768px){

    .page-banner-inner{
        flex-direction:column;
        align-items:center;
        justify-content:flex-end;
        min-height:auto;
        padding:36px 24px 24px;
        text-align:center;
    }

    .page-banner-text{
        max-width:100%;
        margin-bottom:20px;
    }

    .page-banner-icons{
        margin-left:auto;
        margin-right:auto;
    }

    .page-banner-image{
        display: none;
    }

    .page-banner-pills{
        flex-wrap:wrap;
    }

}


/* =================================
FORMS
================================= */

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:44px 40px;
    margin:auto;

    max-width: 70%;
}

.form-field{
    grid-column:span 1;
}

.form-field.full{
    grid-column:span 2;
}

.form-field label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    color:var(--text-muted);
    margin: auto;
    text-align: center;
}

.form-field input,
.form-field textarea{
    width:100%;
    padding:10px 0;
    border:none;
    border-bottom:1px solid var(--border-light);
    background:transparent;
    font-family:inherit;
    font-size:15px;
    color:#222;
    outline:none;
}

input::placeholder,
textarea::placeholder{
    color:#595959;
    opacity:1;
}

.form-field textarea{
    resize:vertical;
    min-height:60px;
}

.form-note{
    margin-top:40px;
    padding:80px 0;
    text-align:center;
    background:var(--bg-light);
}

.form-note h3{
    margin-bottom:8px;
}

@media (max-width:576px){

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

    .form-field.full{
        grid-column:span 1;
    }

}

/* =================================
AUTH (LOGIN / SIGNUP / PASSWORD RESET)
================================= */

.auth-section{
    padding:80px 0;
}

.auth-card{
    max-width:480px;
    margin:0 auto;
    padding:50px 45px;
    background:var(--bg-white);
    border:1px solid var(--border-light);
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.06);
}

.auth-card-narrow{
    max-width:440px;
    text-align:center;
}

.auth-card h2{
    font-size:36px;
    font-weight:700;
    color:#1b1d27;
}

.auth-card h2 span{
    color:var(--primary);
}

.auth-subtext{
    margin-top:12px;
    color:var(--text-muted);
    font-size:15px;
}

.auth-subtext a{
    color:var(--primary);
    font-weight:600;
}

.auth-form{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:22px;
}

.auth-form .form-field{
    grid-column:unset;
}

.auth-error{
    margin-top:16px;
    padding:12px 16px;
    border-radius:10px;
    background:rgba(208,4,4,.08);
}

.auth-error p,
.auth-field-error{
    color:var(--primary);
    font-size:13px;
    margin-top:4px;
}

.auth-checkbox-field input{
    width:auto;
    display:inline-block;
    margin-right:8px;
    border:1px solid var(--border-light);
}

.auth-checkbox{
    display:flex;
    align-items:center;
    font-size:14px;
    color:var(--text-muted);
    cursor:pointer;
}

.auth-forgot{
    text-align:right;
    margin-top:-10px;
}

.auth-forgot a{
    font-size:13px;
    color:var(--text-muted);
}

.auth-forgot a:hover{
    color:var(--primary);
}

.auth-submit{
    width:100%;
    border:none;
    cursor:pointer;
    margin-top:6px;
}

.auth-divider{
    position:relative;
    text-align:center;
    margin:32px 0 20px;
}

.auth-divider::before{
    content:"";
    position:absolute;
    top:50%;
    left:0;
    right:0;
    height:1px;
    background:var(--border-light);
}

.auth-divider span{
    position:relative;
    padding:0 14px;
    background:var(--bg-white);
    color:var(--text-muted);
    font-size:13px;
}

.auth-social{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.auth-social-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    height:48px;
    border:1px solid var(--border-light);
    border-radius:999px;
    color:#222;
    font-weight:600;
    font-size:14px;
    transition:var(--transition);
}

.auth-social-btn svg{
    flex-shrink:0;
}

.auth-social-btn:hover{
    border-color:var(--primary);
    color:var(--primary);
}

@media (max-width:576px){

    .auth-card{
        padding:36px 24px;
    }

}

/* =================================
CAREER PAGE
================================= */

.intro-section{
    padding:60px 0 0;
}

.intro-section h2{
    font-size:45px;
    font-weight:700;
    color:#1b1d27;
    margin-bottom:16px;
    margin-bottom: 58px;
}

.intro-section h2 span{
    color:#6c6c6c;
}

.intro-section p,.service-intro p{
    max-width:89%;
    color:var(--text-muted);
    font-size:22px;
    line-height:1.9;
}

.benefit-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    margin-top:50px;
}

.benefit-columns h3{
    margin-bottom:20px;
    font-size:22px;
    font-weight:700;
}

.benefit-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:14px;
    padding-top: 21px;
}

.benefit-list li{
    position:relative;
    padding-left:32px;
    color:#333;
    font-size: 20px;
}

.benefit-list li::before{
    content:"";
    position:absolute;
    left:0;
    top:2px;
    width:20px;
    height:20px;
    background:url("/static/images/icons/bullet-check.9e71087091d6.svg") center/contain no-repeat;
}

.openings-section{
    padding:60px 0 0;
}

.benefit-columns h3 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
}
.openings-section h2{
    margin-bottom:8px;
    font-size:28px;
    font-weight:700;
}

.openings-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:69px 40px;
    margin-top:30px;
}

.opening-item h3{
    margin-bottom:14px;
    font-size:17px;
    font-weight:600;
}


.opening-item .about-btn{
    height:44px;
    padding:0 24px;
    font-size:14px;
}

@media (max-width:768px){

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

    .openings-grid{
        grid-template-columns:1fr 1fr;
        gap: 63px 12px
    } 
      .blog-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 66%;
    max-width: 313px;
    }
  

}

 
@media (max-width:576px){

    
    .pagination-custom{
        gap:8px;
        margin:40px 0;
    }
      .blog-search {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 62% !important;
    max-width: 253px !important;
    }

    .pagination-custom a,
    .pagination-custom span{
        width:38px;
        height:38px;
        font-size:14px;
    }
}

/* =================================
BLOG LIST / DETAIL
================================= */

.blog-search-wrapper{
    display:flex;
    justify-content:center;
    margin:50px 0;
}

.blog-search{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    max-width:520px;
    padding:14px 22px;
    border:1px solid var(--border-light);
    border-radius:40px;
}

.blog-search input{
    flex:1;
    border:none;
    outline:none;
    font-family:inherit;
    font-size:15px;
    background:transparent;
}

.blog-search button{
    border:none;
    background:none;
    color:var(--text-muted);
}

.pagination-custom{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:10px;
    margin:60px 0;
}

.pagination-custom a,
.pagination-custom span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border-radius:12px;
    background:var(--bg-light);
    color:#171717;
    font-weight:500;
}

.pagination-custom a.arrow{
    background:#171717;
    color:#fff;
}

.pagination-custom .active{
    background:var(--primary);
    color:#fff;
}

.blog-back-link{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:500;
    color:#171717;
}

.blog-back-link svg{
    width:30px;
    height:30px;
    padding:8px;
    background:var(--primary);
    border-radius:50%;
}

/* ==========================
BLOG ENGAGEMENT (like/share/comments)
========================== */

.blog-engagement{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:16px;
    margin:24px 0;
    padding:16px 0;
    border-top:1px solid var(--border-light);
    border-bottom:1px solid var(--border-light);
}

.blog-like-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 18px;
    background:#fff;
    border:1px solid var(--border-light);
    border-radius:999px;
    color:#171717;
    font-weight:600;
    cursor:pointer;
    transition:var(--transition);
}

.blog-like-btn:hover{
    border-color:var(--primary);
}

.blog-like-btn.liked{
    background:rgba(208,4,4,.08);
    border-color:var(--primary);
    color:var(--primary);
}

.blog-share{
    display:flex;
    align-items:center;
    gap:10px;
    color:var(--text-muted);
    font-size:14px;
}

.blog-share a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%; 
    color:#fff;
    font-size:11px;
    font-weight:700;
}

.blog-share a:hover{
    background:var(--primary);
}

.blog-comments{
    margin:32px 0;
}

.blog-comments h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:16px;
}

.blog-comment-form{
    display:flex;
    flex-direction:column;
    gap:12px;
    margin-bottom:24px;
}

.blog-comment-form textarea{
    width:100%;
    min-height:90px;
    padding:14px;
    border:1px solid var(--border-light);
    border-radius:var(--radius-sm);
    font-family:inherit;
    font-size:14px;
    resize:vertical;
}

.blog-comment-form .about-btn{
    align-self:flex-end;
}

.blog-comment-google-prompt{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:12px 20px 12px 12px;
    border:1px solid var(--border-light);
    border-radius:999px;
    background:var(--bg-white);
    color:#333;
    font-weight:600;
    font-size:14px;
    transition:var(--transition);
}

.blog-comment-google-prompt:hover{
    border-color:var(--primary);
    box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.blog-comment-google-icon{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:36px;
    height:36px;
    border-radius:50%;
    background:var(--bg-light);
    flex-shrink:0;
}

.blog-comment-list{
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:16px;
}

.blog-comment-list li{
    padding:16px;
    background:var(--bg-light);
    border-radius:var(--radius-sm);
}

.blog-comment-date{
    margin-left:10px;
    color:var(--text-muted);
    font-size:12px;
}

.blog-comment-list p{
    margin-top:6px;
    color:#333;
}

.blog-comment-empty{
    color:var(--text-muted);
    background:transparent !important;
    padding:0 !important;
}

/* ==========================
LOCATION CONSENT PROMPT
========================== */

.location-consent-overlay{
    position:fixed;
    inset:0;
    z-index:1500;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding-bottom:32px;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .35s ease;
}

.location-consent-overlay.show{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.location-consent{
    position:relative;
    isolation:isolate;
    width:90%;
    max-width:360px;
    padding:24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.5), rgba(255,255,255,.15) 40%, rgba(255,255,255,.35) 100%);
    -webkit-backdrop-filter:blur(20px) saturate(180%);
    backdrop-filter:blur(20px) saturate(180%);
    border:1px solid transparent;
    background-clip:padding-box;
    border-radius:20px;
    box-shadow:
        0 12px 40px rgba(0,0,0,.16),
        0 2px 6px rgba(0,0,0,.06),
        0 1.5px 0 rgba(255,255,255,.5) inset,
        0 -1.5px 0 rgba(0,0,0,.05) inset,
        0 0 0 1px rgba(255,255,255,.25) inset;
    opacity:0;
    transform:scale(.85);
    transition:opacity .35s cubic-bezier(.2,.9,.3,1.3), transform .35s cubic-bezier(.2,.9,.3,1.3);
}

.location-consent::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    pointer-events:none;
    background:linear-gradient(115deg, rgba(255,255,255,.4) 0%, rgba(255,255,255,0) 22%, rgba(255,255,255,0) 78%, rgba(255,255,255,.25) 100%);
    mix-blend-mode:overlay;
    z-index:1;
}

.location-consent > *{
    position:relative;
    z-index:2;
}

.location-consent-overlay.show .location-consent{
    opacity:1;
    transform:scale(1);
}

.location-consent p{
    margin-bottom:14px;
    font-size:14px;
    color:#333;
}

.location-consent-actions{
    display:flex;
    align-items:center;
    gap:12px;
}

.location-consent-decline{
    background:none;
    border:none;
    color:var(--text-muted);
    font-size:14px;
    cursor:pointer;
}

.location-consent-decline:hover{
    color:#171717;
}

.blog-detail-layout{
    display:grid;
    grid-template-columns:2.5fr 1fr;
    gap:60px;
    margin-top:40px;
}

.blog-detail-content h2{
    margin-bottom:14px;
    font-size:22px;
    font-weight:700;
}

.blog-detail-content p{
    margin-bottom:30px;
    color:var(--text-muted);
    line-height:1.8;
}

.blog-detail-meta{
    margin-top:10px;
    color:var(--text-muted);
    font-size:14px;
}

.blog-sidebar h3{
    margin-bottom:20px;
    font-size:20px;
    font-weight:700;
}

.blog-sidebar a{
    display:block;
    padding:10px 0; 
    color:#333;
}

.blog-sidebar-auth{
    padding:24px;
    margin-bottom:30px;
    background:var(--bg-white);
    border:1px solid var(--border-light);
    border-radius:16px;
}

.blog-sidebar-auth p{
    margin-bottom:16px;
    color:var(--text-muted);
    font-size:14px;
}

.blog-sidebar-auth .auth-social-btn{
    display:flex;
    border:1px solid var(--border-light);
}

@media (max-width:991px){

    .blog-detail-layout{
        grid-template-columns:1fr;
    }

}

/* =================================
EXPERTISE PAGE
================================= */

.expertise-block{
    padding:50px 0; 
}

.expertise-block:last-of-type{
    border-bottom:none;
}

.expertise-block .expertise-icon{
    margin-bottom:16px;
}

.expertise-block h2{
    margin-bottom:10px;
    font-size:26px;
    font-weight:700;
}

.expertise-block > p{
    max-width: 89%;
    margin-bottom: 49px;
    color:var(--text-muted);
    font-size: 20px;
    line-height: 1.9;
}

.expertise-columns{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

.expertise-columns h3{
    margin-bottom: 16px;
    font-size: 22px;
    font-weight: 700;
}

.expertise-clients-row{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
}

.expertise-clients-row .client-card{
    width:100px;
    height:100px; 
}

.expertise-get-in-touch{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:20px;
    color:var(--primary);
    font-weight:500;
}

@media (max-width:768px){

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

}

/* =================================
SERVICE DETAIL PAGE
================================= */

.service-intro{
    padding:60px 0 0;
}

.service-intro > .container > h2{
    margin-bottom:12px;
    font-size: 26px;
    font-weight: 700;
}

.service-intro p{
    max-width:89%;
    margin-bottom:30px;
    color:var(--text-muted);
    font-size: 22px;
    line-height:1.9;
}

.offer-list{
    display:flex;
    flex-direction:column;
    gap:60px;
    margin-top:40px;
}

.offer-item{
    display:flex;
    align-items:center;
    gap:50px;
}

.offer-item:nth-child(even){
    flex-direction:row-reverse;
}

.offer-item-content{
    flex:1;
}

.offer-item-number{
    display:none;
}

.offer-item-content h3{
    margin-bottom:10px;
    font-size: 26px;
    font-weight: 700;
}

.offer-item-content p{
    color:var(--text-muted);
}

.offer-item-image{
    flex:1;
}

.offer-item-image img{
    width:100%;
    max-height:340px;
    object-fit:contain;
    border-radius:var(--radius-md);
}

.best-practices-box{
    margin-top:70px;
    padding:80px 60px;
    background:var(--bg-dark);
    border-radius:42px;
    color:#fff;
}

.best-practices-box h2{
    margin-bottom:49px;
    font-size:24px;
    font-weight:700;
}

.best-practices-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px 60px;
}

.best-practice-item{
    display:flex;
    gap:14px;
}

.best-practice-item .check-icon{
    flex:0 0 auto;
    width:20px;
    height:20px;
    margin-top:2px;
    background:url("/static/images/icons/bullet-check.9e71087091d6.svg") center/contain no-repeat;
}

.best-practice-item h3{
    margin-bottom:6px;
    font-size:15px;
    font-weight:600;
}

.best-practice-item p{
    color:var(--text-light);
    font-size:14px;
}

.our-work-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:40px;
}

.our-work-card{
    aspect-ratio:4/3;
    padding:20px;
    display:flex;
    align-items:flex-end;
    border-radius:var(--radius-md);
    background-size:cover;
    background-position:center;
    background-color:#171717;
    color:#fff;
    font-weight:600;
}

@media (max-width:991px){

    .offer-item,
    .offer-item:nth-child(even){
        flex-direction:column;
    }

    .offer-list{
        gap:40px;
    }

    .best-practices-grid{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    .our-work-grid{
        grid-template-columns:1fr;
    }

    .best-practices-box{
        padding:36px 24px;
    }

}

.pb-5{
    padding-bottom: 5px;
}
.pb-7{
    padding-bottom: 7px;
}
.pb-10{
    padding-bottom: 10px;
}
.pb-12{
    padding-bottom: 12px;
}
.pb-15{
    padding-bottom: 15px;
}