@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');
:root {
--bg-light: #f3f3f3;
--bg-dark: #1a1a1a;
--primary: #D00404;

--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%;
}

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:4px;
}

/* =================================
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);
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);
    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:800;
    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:800;
    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;
    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:800;
    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;

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

    background:#222;
    border-radius:12px;
}

.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:800;
    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:800;
}

.expertise-heading span{
    color:#8d8d8d;
}
.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 {
        /* width: 100%; */
    max-width: 189%;
    object-fit: contain;
    position: absolute;
    position: relative;
    left: -3%;
    top: -81px;
}
/* ====================
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{
    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:800;
    margin-bottom:40px;

    background:linear-gradient(
        90deg,
        #6f6cff,
        #8f6dff,
        #55f3ff
    );

    -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:800;
    margin-bottom:25px;
}

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

.genai-content p{
    max-width:600px;

    font-size:20px;
    line-height:1.9;
    color:#cfcfcf;

    margin-bottom:35px;
}

.genai-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;

    padding:14px 26px;

    background:transparent;
    border:1px solid #6f6cff;
    border-radius:50px;

    color:#fff;
    font-family:inherit;
    font-size:15px;
    font-weight:600;
    cursor:pointer;

    transition:.35s;
}

.genai-btn:hover{
    background:#6f6cff;
    color:#fff;
    transform:translateY(-3px);
}

.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;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.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:1px solid rgba(255,255,255,.3);
    border-radius:30px;
    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;
}

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

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

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

.askavo-avatar{
    flex:0 0 auto;
    width:28px;
    height:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(111,108,255,.15);
    color:#6f6cff;
    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-who{
    margin-top:4px;
    color:rgba(255,255,255,.4);
    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:16px;
    }

    .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);
}

#workCarousel{
    margin-bottom:90px;
}

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

.work-heading span{
    color:#8d8d8d;
}

.work-card{
    display:block;
    position:relative;
    height:360px;
    border-radius:40px;
    overflow:hidden;
    text-align:center;
    padding:30px;
    margin:0 8px;
}

/* Bootstrap 5 multi-item carousel: show 3 cards per view on desktop while
   keeping a single full-width card per slide (true swipeable slider) on mobile */
@media(min-width:992px){
    #workCarousel .carousel-inner .carousel-item-start.active,
    #workCarousel .carousel-inner .carousel-item-next{
        transform:translateX(33.3333%);
    }

    #workCarousel .carousel-inner .carousel-item-end.active,
    #workCarousel .carousel-inner .carousel-item-prev{
        transform:translateX(-33.3333%);
    }

    #workCarousel .carousel-inner .carousel-item-start,
    #workCarousel .carousel-inner .carousel-item-end{
        transform:translateX(0);
    }

    #workCarousel .carousel-item{
        margin-right:0;
    }

    #workCarousel .carousel-inner .active.carousel-item-start,
    #workCarousel .carousel-inner .active.carousel-item-end{
        transition:transform .6s ease-in-out;
    }

    #workCarousel .carousel-inner .active + .carousel-item{
        display:block;
        float:left;
        width:33.3333%;
    }

    #workCarousel .carousel-inner .active + .carousel-item + .carousel-item{
        display:block;
        float:left;
        width:33.3333%;
    }
}

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

.work-card h5{
    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{
    width:48px;
    height:48px;
    top:auto;
    bottom:-70px;
    opacity:1;
}

.carousel-control-prev{
    left:45%;
}

.carousel-control-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;
}

.custom-arrow span:hover{
    background:#D00404;
    color:#fff;
}

@media(max-width:991px){

    .work-card{
        height:auto;
    }

    .carousel-control-prev{
        left:38%;
    }

    .carousel-control-next{
        right:38%;
    }

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

@media(max-width:576px){

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

    #workCarousel{
        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;
}
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-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:800;
    margin-bottom:60px;
}

.faq-heading span{
    color:#8d8d8d;
}

@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 h4{
        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 h4{
    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:800;
    margin-bottom:70px;
}

.blog-heading span{
    color:#8d8d8d;
}

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

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

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

.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:800;
    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);
}

.client-card img{
    padding:5px;
    object-fit:contain;
}

.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;
}

.clients-section .client-card img{
    padding:5px;
    object-fit:contain;
}
/* ==========================
FOOTER
========================== */

.site-footer{
    padding:60px 0 40px;
    border-top:1px solid rgba(0,0,0,.08);
}

.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 h4{
    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){

    .site-footer{
        padding:50px 0 30px;
    }
    .expertise-image{
        top: -10px !important;
    }
.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 h4{
        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 h4{
        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 h4 { 
    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:800;
    line-height:1.1;
    margin-bottom:60px;
    color:#1b1d27;
}

.section-title span{
    color:#8d8d8d;
}

/* 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;
    padding:50px 60px;
    overflow:visible;
    background:var(--bg-dark);
    border-radius:var(--radius-md);
}

.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;
}

.page-banner-title{
    font-size:clamp(2rem,4vw,2.8rem);
    font-weight:800;
    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{
        position:relative;
        right:auto;
        max-height:220px;
    }

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

}

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

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

.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);
}

.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;
}

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

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

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

@media (max-width:576px){

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

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

}

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

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

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

.intro-section h2 span{
    color:#8d8d8d;
}

.intro-section p{
    max-width:800px;
    color:var(--text-muted);
    font-size:16px;
    line-height:1.7;
}

.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;
}

.benefit-list li{
    position:relative;
    padding-left:28px;
    color:#333;
}

.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;
}

.openings-section h2{
    margin-bottom:8px;
    font-size:28px;
    font-weight:800;
}

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

.opening-item h4{
    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;
    }

}

@media (max-width:576px){

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

}

@media (max-width:576px){

    .pagination-custom{
        gap:8px;
        margin:40px 0;
    }

    .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-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 h4{
    margin-bottom:20px;
    font-size:20px;
    font-weight:700;
}

.blog-sidebar a{
    display:block;
    padding:10px 0;
    border-bottom:1px solid var(--border-light);
    color:#333;
}

@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 h3{
    margin-bottom:10px;
    font-size:26px;
    font-weight:700;
}

.expertise-block > p{
    max-width:800px;
    margin-bottom:26px;
    color:var(--text-muted);
}

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

.expertise-columns h5{
    margin-bottom:16px;
    font-size:15px;
    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 h3{
    margin-bottom:12px;
    font-size:22px;
    font-weight:700;
}

.service-intro p{
    max-width:900px;
    margin-bottom:30px;
    color:var(--text-muted);
    line-height:1.8;
}

.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 h4{
    margin-bottom:10px;
    font-size:20px;
    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:50px 60px;
    background:var(--bg-dark);
    border-radius:var(--radius-md);
    color:#fff;
}

.best-practices-box h3{
    margin-bottom:30px;
    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 h5{
    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;
    }

}