:root {
--bg-light: #f3f3f3;
--bg-dark: #1a1a1a;
--primary: #e40000;


--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:"Inter",sans-serif;
background:var(--bg-light);
color:#222;
overflow-x:hidden;
}

img,
svg{
display:block;
max-width:100%;
}

a{
text-decoration:none;
transition:var(--transition);
}

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

.header-wrapper{
background:var(--bg-light);
padding:28px 0;
}

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

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

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


width:1px;
height:30px;

background:var(--border-light);

transform:translateY(-50%);


}

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

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


padding:12px 20px;

color:var(--text-light);

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


}

.center-menu a:hover,
.center-menu a.active{
color:var(--white);
}

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


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

width:5px;
height:5px;

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

transform:translateX(-50%);


}

/* =================================
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:var(--radius-md);

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
================================= */

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

.hero-title{
font-size:clamp(2rem,5vw,4rem);
font-weight:800;
line-height:1.1;
}

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

.hero-subheading{
margin-top:20px;
color:var(--text-muted);
font-size:1.25rem;
}
#mobileMenu{
    position: relative;
}
#mobileMenu .contact-btn{
    position: absolute;
    top: 0px;
    right: -87px;
    padding: 12px;
}

/* =================================
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 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:block !important;
}
.mobile-menu a{
    color:var(--white);
    padding:12px;
    text-align:center;
}

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


}

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

@media (max-width:768px){


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

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

.hero-subheading{
    font-size:1rem;
}


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

.hero-section{
    background:#f3f3f3;
    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:56px;
    font-weight:800;
    line-height:1.1;
    color:#1b1d27;
    margin-bottom:20px;
}

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

.hero-subtitle{
    font-size:22px;
    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: 10%;
    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-light);
}

.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:56px;
    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:34px;
    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;
    min-height:280px;
    overflow:hidden;
}

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

    background-image:url("../images/home/world_map.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:54px;
    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:50px;
}

.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:36px;
    font-weight:800;
}

/* =====================
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:56px;
    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-light);
    overflow:hidden;
}

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

.expertise-heading h2{
    font-size:56px;
    font-weight:800;
}

.expertise-heading span{
    color:#8b8b8b;
}
.expertise-wrapper{
    display:grid;
    grid-template-columns:45% 55%;
    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: -12%;
    top: -209px;
}
/* ====================
RIGHT SIDE
==================== */

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

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

.expertise-card{
    background:#fff;
    border-radius:42px;
    padding:35px;
    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: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:48px;
    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:56px;
    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;

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

    color:#fff;
    font-weight:600;

    transition:.35s;
}

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

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

/* ==========================
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:#f3f3f3;
}

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

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

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

.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{
    position:absolute;
    width:250px;
    height:250px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    top:15px;
    left:-60px;
}

.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:#e40000;
    border-radius:10px;
    font-size:26px;
}

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

@media(max-width:991px){

    .work-card{
        height:auto;
    }

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

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


/* =================================
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:75px; 
}

.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:42px;
    font-weight:600;
    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;
}

.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:#e40000;

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

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

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

.clients-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(120px, 1fr));
    gap:28px;
    justify-items:center;
}

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

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

.client-card img{
    max-width:65%;
    max-height:45px;
    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,1fr) auto;
    gap:40px;
    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:#e40000;

    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;
    }
 .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:64px;
    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:48px;
        margin-bottom:45px;
    }

}

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

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

}