:root {
    --primary-gradient: #E83030;
    --bg-color: #fafafa;
    --text-dark: #000000;
    --text-muted: #505050;
    --border-color: #e0e0e0;
    --dot-color: #e6e6e6;
    --red-plus: #ff4b4b;
    --dark: #111111;
    --mid: #666666;
    --border: #e6e6e6;
    --salmon: #fdf2f1;
}



    body {
        font-family: 'Inter', sans-serif;
        margin: 0;
    }

    /* ════════════════════════════
        HEADER
    ════════════════════════════ */  


    a {
       color: #000; 
    }

    a:hover {
     color: #e8222e;
    }

    .site-header {
        background: #fff;
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 9999;
        padding: 12px 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
      
    }

    .blog .site-header {
      box-shadow: none;
    }

    /* .site-header .container {
        max-width: 1140px;
        Width: 100%;
        margin: 0 auto;
        box-shadow: 0 2px 10px rgba(0, 0, 0, .10);
        background: #fff;
    } */

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 7px;
        text-decoration: none;
        padding: 10px 0;
        flex-shrink: 0;
    }

    .logo-badge {
        background: var(--red);
        color: #fff;
        font-size: .68rem;
        font-weight: 800;
        border-radius: 4px;
        padding: 5px 7px;
        line-height: 1;
        letter-spacing: .5px;
    }

    .logo-info .logo-name {
        display: block;
        font-size: 1.38rem;
        font-weight: 800;
        color: var(--dark);
        letter-spacing: -.5px;
        line-height: 1;
    }

    .logo-info .logo-sub {
        display: block;
        font-size: .58rem;
        color: #aaa;
        letter-spacing: .3px;
        margin-top: 1px;
    }

    .navbar-nav .nav-item > .nav-link {
        font-size: 14px;
        font-weight: 500;
        color: var(--dark);
        padding: 24px 12px;
        position: relative;
        white-space: nowrap;
        transition: color .2s;
    }

    /* ul#menu-header-home-new {
        margin-left: 17px;
    } */

    .navbar-nav .nav-item > .nav-link.active {
        color: #de4948;
    }

    .navbar-nav .nav-item > .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 12px;
        right: 12px;
        height: 2px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .22s ease;
    }

    .navbar-nav .nav-item:hover > .nav-link,
    .navbar-nav .nav-item.current-menu-item > .nav-link {
        color: var(--red);
    }

    .navbar-nav .nav-item:hover > .nav-link::after,
    .navbar-nav .nav-item.current-menu-item > .nav-link::after {
        transform: scaleX(1);
    }

    .nav-caret {
        margin-left: 5px;
        width: 16px;
        color: #000;
        transition: all .3s;
        height: 16px;
    }

    .has-mega:hover .nav-caret {
        transform: rotate(180deg);
    }

    .btn-connect {
        background-color: rgb(209, 44, 44);
        color: #fff;
        font-size: .78rem;
        font-weight: 700;
        padding: 9px 20px;
        border-radius: 50px;
        border: none;
        letter-spacing: .3px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        text-decoration: none;
        white-space: nowrap;
        transition: background .2s, box-shadow .2s, transform .15s;
    }

    .btn-connect:hover {
        background: #c4141f;
        color: #fff;
        transform: translateY(-1px);
        box-shadow: 0 6px 18px rgba(232, 34, 46, .3);
    }

    .hamburger {
        width: 24px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger span {
        height: 2px;
        width: 100%;
        background: #fff;
        display: block;
        transition: all 0.3s ease;
    }

    /* OPEN STATE */
    .navbar-toggler.open .hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .navbar-toggler.open .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler.open .hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navbar-toggler {
        padding: 10px !important;
    }
    /* ════════════════════════════
        MEGA-MENU
    ════════════════════════════ */
    .mega-wrap {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        z-index: 1040;
         opacity: 0; 
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity .22s ease, transform .22s ease;
    }

    .mega-wrap.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    /* Hover bridge for the 13px margin-top */
    .mega-wrap::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 0;
        width: 100%;
        height: 20px;
        background: transparent;
    }

    .svc-link.active {
        color: #9D1C1B;
        font-weight: 600;
        position: relative;
    }

    .svc-link.active::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 14px;
        background: var(--red);
    }
    
    /* .nav-link .active {
        color: #DE4948 !important;
        font-weight: 600 !important;
        background-color: #FCF0F0;
        padding: 16px !important;
        border-radius: 48px;
    } */

    @media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
   }

@media (min-width: 992px) {
    .container {
        max-width: 1140px;
    }
}

@media screen and (max-width:991px) {
    .container {
        max-width: 1140px !important;
    }
}

@media (min-width: 1400px) {
    .fixed-blog-categories .fixed-menu {
        top: 96px;
    }
}

@media (max-width: 1399px) {
    .fixed-blog-categories .fixed-menu {
        top: 93px;
    }
}
    
    /* Desktop specific alignment for mega menu */
    @media (min-width: 992px) {
        .site-header .container { position: static; } /* breakout container */
        .navbar-nav .nav-item.has-mega { position: static; } 
        
        .mega-wrap {
            left: 0;            
            width: 100%;
            margin-top: 11px;
            background: #fff;
            border-top: 1px solid #eee;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
    }

    .mega-box {
        background: transparent;
        display: flex;
        position: relative;
        width: 100%;
        /* padding: 0 120px; */
        max-width: 1320px;
        margin: 0 AUTO;
        padding: 0 20px;
    }

    /* Full-width background extensions */
    .mega-box::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        /* left: -100vw; */
        right: 36%;
        background: #fff;
        z-index: -1;
    }

    .mega-box::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 64%;
        right: 0;
        background: #fdf2f1;
        z-index: -1;
    }
    .new-our-work .mega-left {
        padding: 10px 0px 26px !important;
    }

    .mega-left {
        flex: 0 0 64%;
        padding: 32px 16px;
        background: #fff;
        border-right: 1px solid var(--border);
        /* min-height: 550px;  */
        overflow-y: auto;  
        overflow-x: hidden;
        /* display: flex;
        flex-direction: column; */
    }   

    
    /* Custom scrollbar for better design */
    .mega-left::-webkit-scrollbar { width: 4px; }
    .mega-left::-webkit-scrollbar-thumb { background: #eee; border-radius: 10px; }

    .svc-title {
        font-size: 1rem;
        font-weight: 700;
        color: var(--dark);
        padding-bottom: 5px;
        border-bottom: 1px solid #eee;
    }

    .svc-cols {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        column-gap: 12px;
        row-gap: 16px;
        margin-bottom:16px;
    }

    .svc-col {
        padding-right: 20px;
        border-right: 1px solid #f0f0f0;
    }

    .company .svc-col{
        padding-right: 0;
        border-right: none !important;
    }

    .mega-cta-content {
        display: flex;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
        width: 100%;
    }
    .mega-cta-text {
        max-width: 431px;
        margin-right: auto;
        margin-left: 0;
    }

    .svc-col:nth-child(3n),
    .svc-col:last-child {
        border-right: none;
    }

    .svc-item {
        margin-bottom: 0;
    }

    .navbar-nav .nav-item.current-menu-item > .nav-link,
    .navbar-nav .nav-item.current_page_item > .nav-link {
        color: var(--red);
        position: relative;
    }
    
    a.nav-link.active {
        background-color: #FCF0F0 !important;
        color:  #9D1C1B !important;    
        padding: 15px !important;
        border-radius: 43px;
    }

    .svc-link:hover {
        color:  #9D1C1B !important;   
    }

    .menu-services .svc-cols > *:first-child {
        border-left: 1px solid #F0F0F0 !important;
        padding-left: 10px !important;
    }


    .svc-title-link {
        font-size: 14px;
        font-weight: 700;
        color: #000;
        text-transform: capitalize;
        letter-spacing: 0px;
        display: block;
        margin-bottom: 10px;
    }

    .svc-sub {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .svc-sub li {
        margin-bottom: 5px;
    }

    .svc-link {
        font-size: 14px;
        color: #333;
        text-decoration: none;
        margin-bottom: 10px;
        display: block;
        transition: color .18s;
        font-family: "Poppins", sans-serif;
    }

    .svc-link:hover { color: var(--red); }
    .svc-link.is-featured { color: var(--red); font-weight: 700; position: relative; padding-left: 12px; }
    .svc-link.is-featured::before {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 2px;
        height: 14px;
        background: var(--red);
    }

    .nav-caret {
        display: inline-block;
        transition: transform 0.3s ease;
    }

    /* hover par rotate */
    .nav-item:hover .nav-caret {
        transform: rotate(180deg);
    }

    .mega-cta {
        background: #fdf2f1;
        border-radius: 12px;
        padding: 44px 28px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        max-width: 800px; /* Fixing width issue */
    }

    .mega-cta h6 { 
        font-size: 1.05rem; 
        font-weight: 700; 
        color: #000; 
        margin-bottom: 4px; 
        letter-spacing: -0.2px;
    }

    .mega-cta p { 
        font-size: .84rem; 
        color: #666; 
        line-height: 1.5; 
        margin: 0; 
        flex: 1; 
    }   

    /* New Contact Layout for Mega CTA */
    .menu-company-header { grid-column: span 2; padding-left: 20px; border-left: 1px solid #eee; }
    .cta-footer-row { margin-top: 25px; display: flex; align-items: start; gap: 40px; }
    .cta-btn-wrap { padding-top: 5px; }

    .cta-contact-row { display: flex; gap: 60px; }
    .cta-contact-col { display: flex; flex-direction: column; gap: 8px; }
    .cta-contact-col h6 { font-size: .92rem; font-weight: 700; color: #000; margin-bottom: 8px; text-transform: none; }
    .cta-contact-col a { font-size: .88rem; color: #666; text-decoration: none; transition: color .2s; }
    .cta-contact-col a:hover { color: var(--red); }

    .work-portfolio-box a.portfolio_link {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
        color: #000;
        font-family: "Inter";
        font-size: 14px;
    }

    .mega-right {
        /* flex: 0 0 360px; */
        background: #fdf2f1 !important; /* Force visible salmon background */
        padding: 30px 25px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        border-left: 1px solid #eee;
    }

    .app-card { background: #111; border-radius: 20px; overflow: hidden; position: relative; display: flex; }
    .app-card-img { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-size: contain; background-position: bottom right; background-repeat: no-repeat; z-index: 1; pointer-events: none; transform: scale(1.1) translateX(15px) translateY(15px); filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5)); }
    .app-card-body { padding: 30px; display: flex; width: 100%; position: relative; z-index: 2; height: 100%; }
    .app-card-body:before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(108.55deg, #000000 3.29%, rgba(0, 0, 0, 0.4) 55.72%);
        width: 100%;
        height: 100%;
    }
    .app-text { flex: 0 0 80%; color: #fff; position: relative; display: flex; flex-direction: column; height: 100%; }
    .app-text h6 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 12px; margin-top: 0; }
    .app-text p { font-size: .88rem; color: #fff; font-family:'Inter'; line-height: 1.6; margin-bottom: 25px; max-width: 90%; }
    .app-explore-link { font-size: .95rem; font-weight: 700; color: #fff; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; border-bottom: 1px solid #fff; padding-bottom: 4px; width: fit-content; transition: all 0.2s; margin-top: auto; }
    .app-explore-link:hover { color: #9D1C1B !important; border-bottom-color: #9D1C1B; }

    .ai-block .ai-title { font-size: .82rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
    .ai-row { display: flex; align-items: center; gap: 5px; padding: 9px 0; border-bottom: 1px solid #e8d5d5; text-decoration: none; }
    .ai-row:last-child { border-bottom: none; }
    .ai-row span { font-size: .8rem; color: var(--mid); font-weight: 500; transition: color .18s; }
    .ai-row i { font-size: 15px; color: #000; transition: color .18s, transform .18s; }
    .ai-row:hover span { color: var(--red); }
    .ai-row:hover i { color: var(--red); transform: translateX(4px); }

    /* ════════════════════════════
        OUR WORK MEGA MENU (CUSTOM)
    ════════════════════════════ */
    .mega-work-content { width: 100%; padding: 0 10px; }
    .work-section-title { font-size: 1.1rem; font-weight: 700; color: #111; margin-bottom: 20px; }
    
    /* Testimonial Grid */
    .header-testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; margin-bottom: 25px; }
    .header-testimonial-card { background: #f8f9fa; border-radius: 12px; padding: 16px 20px; border: 1px solid #eee; transition: transform 0.2s, box-shadow 0.2s; }
    .header-testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.05); }
    .header-testimonial-card .client-info { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
    .header-testimonial-card .client-avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.1); }
    .header-testimonial-card .client-name { font-size: .9rem; font-weight: 700; color: #111; margin: 0; line-height: 1.2; }
    .header-testimonial-card .client-title { font-size: .72rem; color: #888; margin: 0; }
    .header-testimonial-card .client-quote { font-size: .88rem; font-weight: 500; color: #333; margin: 0; line-height: 1.6; font-style: normal; }

    /* Lower CTA in Our Work */
    .work-cta-block { background: #fff5f4; border-radius: 16px; padding: 30px; display: flex; justify-content: space-between; align-items: center; border: 1px solid #fdeaea; }
    .mega-cta-text h5 { font-size: 1.15rem; font-weight: 700; color: #111; margin-bottom: 10px; }
    .mega-cta-text p { font-size: .82rem; color: #666; margin: 0; line-height: 1.7; max-width: 420px; }

    /* Portfolio Sidebar in Mega Menu */
    .work-portfolio-box { padding-left: 20px; display: flex; flex-direction: column; }
    .portfolio-featured { 
        
        /* background: linear-gradient(135deg, #1e73be 0%, #002d5b 100%); */
        /* border-radius: 16px; */
        /* padding: 20px; */
        margin-bottom: 15px;
        position: relative;
        overflow: hidden;
        /* flex: 1; */
        display: flex;
        align-items: flex-start;
        justify-content: left;
    }


   .left-img img, .small-img img {
        border-radius: 20px;
   }

    .decor a:hover
    {
        color: #B00020;
    }

    /* specific menu item hide */
    .new-our-work a.svc-link {
        display: none;
    }

    .new-our-work .svc-cols {
        margin-bottom: 0 !important;
    }

    .portfolio-img-wrap { width: 100%; transform: none; transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
    .portfolio-img-wrap img { width: 100%; min-height: 260px; border-radius: 22px; border: 1px solid #eee; }
    .work-portfolio-box:hover .portfolio-img-wrap { transform: translateY(-5px) scale(1.01); }

    .portfolio-title { font-size: 1rem; font-weight: 700; color: #444; margin-bottom: 0; }
    .portfolio-explore { font-size: .85rem; font-weight: 700; color: #ff4d4d; text-decoration: none; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid transparent; transition: all 0.2s; }
    .portfolio-explore:hover { color: #c4141f; border-bottom-color: #c4141f; }
    .portfolio-explore i { font-size: 1rem; }

    /* Company Mega Menu Overrides */
    .company-mega-wrap .company-links-col {
        border-right: 1px solid #eee;
    }
    .company-mega-wrap .svc-title-link {
        color: #111;
        font-weight: 700;
        text-transform: none;
        font-size: 1rem;
        margin-bottom: 15px;
    }
    .company-mega-wrap .svc-link {
        font-size: 0.88rem;
        color: #666;
        padding: 6px 0;
    }
    .company-mega-wrap .svc-link:hover {
        color: var(--red);
    }

    /* Full Width Overrides for Our Work */
    .mega-wrap.is-full-width .mega-box::after { display: none; }
    .mega-wrap.is-full-width .mega-box::before { right: -100vw; }
    .mega-wrap.is-full-width .mega-left { flex: 0 0 100%; border-right: none; }
    .navbar-toggler {
        background: #D12C2C !important;
    }

    .ai-pages a.mobile-nav-link {
       padding-left: 0px !important;
       padding-bottom: 0px !important;
    }

    .ai-pages li.mobile-nav-item.menu-item.menu-item-type-post_type.menu-item-object-page.nav-link {
       padding-bottom: 0; 
    }

    @media (max-width: 991.98px) {
        .navbar-nav {
            margin-left: 0px;
        }

    }

    @media (max-width: 991.98px) {
        .mega-wrap { position: static; opacity: 1; transform: none; pointer-events: auto; display: none; }
        .mega-wrap.is-open { display: block; }
        .mega-box { flex-direction: column; box-shadow: none; }
        .mega-left, .mega-right { flex: none; width: 100%; }
        .svc-cols { grid-template-columns: repeat(2, 1fr); }
        .navbar-collapse {
            background: #fff;
            padding: 15px;
        }
    }

    @media (min-width: 1400px) {

        /* ul#menu-header-home-new {
            margin-left: 75px;
        } */

        .mega-box {
            background: transparent;
            display: flex;
            position: relative;
            width: 100%;
             /* padding: 0 292px; */
        }

        .navbar-nav .nav-item > .nav-link {
            font-size: 16px;
            font-weight: 500;
            color: var(--dark);
            padding: 24px 12px;
            position: relative;
            white-space: nowrap;
            transition: color .2s;
        }
    }



    @media (max-width: 992px) {
        .mega-box
        {
            background: transparent;
            display: flex;
            position: relative;
            width: 100%;
            padding: 0 120px;
        }

    }
/* Header menu Css Start */

.mega-wrap {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

/* Hover pe open */
.nav-item.has-mega:hover>.mega-wrap {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mega-wrap::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}


.navbar .container {
    margin: 0 auto;
    justify-content: center;
    max-width: 1320px !important;
    width: 100%;
    padding: 0 20px;
}




@media (max-width: 991.98px) {
    .nav-item.has-mega:hover>.mega-wrap {
        opacity: 1;
        transform: none;
        pointer-events: auto;
    }
}

/* Header menu Css end */
.hero-section {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    background-color: #ffffff;
    background-size: cover;
    background-position: center;
}

.hero-content {
    width: 100%;
    text-align: center;
}



.page-id-21019 .hero-content h1 {
    font-family: 'Poppins';
    font-weight: 700;
    font-style: Bold;
    font-size: 36px;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.25;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

/* .page-id-21019 .hero-content h1 {
    font-family: 'Poppins';
    font-weight: 700;
    font-style: Bold;
    font-size: 54px;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-dark);
} */



.hero-content h1 {
    font-family: 'Poppins';
    font-weight: 700;
    font-style: Bold;
    font-size: 75px;
    text-align: center;
    text-transform: capitalize;
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-dark);
}

.gradient-text {
    background: #D12C2C;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    /* padding-left: 36px; */
}

.gradient-text {
  display: inline-block;
  background: #D12C2C;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Performance hints */
  will-change: background;
  backface-visibility: hidden;
}

.sparkles {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.6;
}


.services-bg .section-title {
    font-size: 32px;
    line-height: 46px;
    margin: 0 0 24px;
    font-family: 'Poppins';
}

.services-bg .tagline-title {
    color: #D12C2C;
    font-size: 16px;
    line-height: 30px;
    margin: 0 0 10px;
    font-family: 'Inter';
    display: inline-block;
    font-weight: 700;
}

.service-column-box .details-text {
    color: #000 !important;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Inter';
    margin: 0 0 30px;
}

.services-bg .details-text {
    color: #616161;
    font-size: 16px;
    line-height: 26px;
    font-family: 'Inter';
    margin: 0 0 30px;
}

.nav-link:hover {
    color:  #9D1C1B !important;
}

.nav-link:hover .nav-caret {
    color: #9D1C1B !important;
}

.blog-details-content a {
    color: #B00020 !important;
}

/* .hero-content .container {
  display: flex;
  align-items: center;
  justify-content: center;
} */

/* Anchor reset (important for <a>) */
.banner-premium-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    padding-right: 48px;
    color: #fff;
    background: #D12C2C;
    border: 2px solid #e14d4d;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
}


.ai-row:hover {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 9px 0;
    color: #9D1C1B;
    border-bottom: 1px solid #e8d5d5;
    text-decoration: none;
}

/* TEXT KO UPPER LANA */
.banner-btn-text {
    position: relative;
    z-index: 2;
    font-family: 'Poppins';
}

/* ICON KO BHI UPPER */
.banner-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 12px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.banner-premium-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.banner-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.page-id-31 .contact-tabs .nav-link:hover, .contact-tabs .nav-link.active {
    border: 1px solid #de4948 !important;
    background: #fff8f8 !important;
    color: #1b2534 !important;
    border-radius: 22px;
}

.page-id-31 .contact-tabs .nav-link {
    margin: 0 12px;
    padding: 14px 20px;
    border-radius: 20px !important;
    border: 1px solid #e8e8e8 !important;
    background: #fff !important;
    box-shadow: 0px 3px 25px 0px rgba(181, 181, 181, 0.25);
    display: flex;
    align-items: center;
    color: #1b2534 !important;
    font-size: 20px;
    font-weight: 600;
    min-width: 282px;
    transition: all 0.3s;
    position: relative;
    top: 0;
}

.contact-tabs .nav-link:hover, .contact-tabs .nav-link.active {
    border: 1px solid #de4948;
    background: #fff8f8 !important;
    color: #1b2534 !important;
    border-radius: 22px;
}

.contact-tabs .nav-link {
    margin: 0 12px;
    padding: 14px 20px;
    border-radius: 20px;
    border: 1px solid #e8e8e8 !important;
    background: #fff !important;
    box-shadow: 0px 3px 25px 0px rgba(181, 181, 181, 0.25);
    display: flex;
    align-items: center;
    color: #1b2534 !important;
    font-size: 20px;
    font-weight: 600;
    min-width: 282px;
    transition: all 0.3s;
    position: relative;
    top: 0;
}


/* ARROW */
.banner-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.banner-premium-btn:hover {
    color: #e14d4d;
}

.banner-premium-btn:hover::before {
    transform: translateY(-50%) scale(50);
}

.banner-premium-btn:hover .banner-dot {
    opacity: 0;
    transform: scale(0);
}

.banner-premium-btn:hover .banner-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* banner-btn-end */

/* CTA Button One and two  */
.cta-btn-one,
.cta-btn-two {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    padding-right: 48px;
    color: #fff;
    background: #e14d4d;
    border: 2px solid #e14d4d;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
}

/* TEXT KO UPPER LANA */
.cta-one-btn-text,
.cta-two-btn-text {
    position: relative;
    z-index: 2;
}

/* ICON KO BHI UPPER */
.cta-btn-one .cta-one-icon-wrapper,
.cta-btn-two .cta-two-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.cta-btn-one::before,
.cta-btn-two::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) scale(1);
    width: 10px !important;
    height: 10px !important;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.cta-one-dot,
.cta-two-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.cta-one-arrow,
.cta-two-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.cta-btn-one:hover,
.cta-btn-two:hover {
    color: #e14d4d;
}

.cta-btn-one:hover::before,
.cta-btn-two:hover::before {
    transform: translateY(-50%) scale(50);
}

.cta-btn-one:hover .cta-one-dot,
.cta-btn-two:hover .cta-two-dot {
    opacity: 0;
    transform: scale(0);
}

.cta-btn-one:hover .cta-one-arrow,
.cta-btn-two:hover .cta-two-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* CTA Button One and two end */

/* header cotact-us btn */
.btn-contact-us {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    padding-right: 48px;
    color: #fff;
    background: #e14d4d;
    border: 2px solid #e14d4d;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
}

.btn-contact-us {
    height: 30px;
    width: 157px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D12C2C;
    color: white;
    font-weight: 600;
    gap: 17px;
    padding: 18px 47px 22px 26px;
}

/* TEXT KO UPPER LANA */
.btn-contact-us-btn-text {
    position: relative;
    z-index: 2;
    font-size: 14px !important;
    font-family: 'Poppins';
    font-weight: 500;
    padding-top: 4px;
}

/* ICON KO BHI UPPER */
.btn-contact-us-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.btn-contact-us::before {
    content: '';
    position: absolute;
    top: 48%;
    right: 29px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.btn-contact-us-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.btn-contact-us-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.btn-contact-us:hover {
    color: #e14d4d;
}

.btn-contact-us:hover::before {
    transform: translateY(-50%) scale(50);
}

.btn-contact-us:hover .btn-contact-us-dot {
    opacity: 0;
    transform: scale(0);
}

.btn-contact-us:hover .btn-contact-us-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* mobile contact us menu btn */
.mobile-btn-connect {
    position: relative;
    height: 30px;
    width: 150px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    padding-right: 48px;
    color: #fff;
    background: #D12C2C;
    border: 2px solid #e14d4d;
    font-weight: 600;
    border-radius: 50px;
    gap: 17px;
    text-decoration: none;
    overflow: hidden;
    padding: 18px 47px 22px 26px;
}

.mobile-btn-connect-btn-text {
    position: relative;
    z-index: 2;
}

/* ICON KO BHI UPPER */
.mobile-btn-connect-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.mobile-btn-connect::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.mobile-btn-connect-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.mobile-btn-connect-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.btn-ask-indus:hover {
    color: #e14d4d;
}

.mobile-btn-connect:hover::before {
    transform: translateY(-50%) scale(50);
}

.mobile-btn-connect:hover .mobile-btn-connect-dot {
    opacity: 0;
    transform: scale(0);
}

.mobile-btn-connect:hover .mobile-btn-connect-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}


.btn-ask-indus {
    position: relative;
    height: 30px;
    /* max-width: 124px;
    width: 100%; */
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    padding-right: 48px;
    color: #fff;
    background: #D12C2C;
    border: 2px solid #e14d4d;
    font-weight: 500;
    border-radius: 50px;
    gap: 17px;
    text-decoration: none;
    overflow: hidden;
    padding: 18px 47px 22px 26px;
}

.btn-ask-indus-btn-text {
    position: relative;
    z-index: 2;
    font-size: 14px;
}

/* ICON KO BHI UPPER */
.btn-ask-indus-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.btn-ask-indus::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.btn-ask-indus-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.btn-ask-indus-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.btn-ask-indus:hover {
    color: #e14d4d;
}

.btn-ask-indus:hover::before {
    transform: translateY(-50%) scale(50);
}

.btn-ask-indus:hover .btn-ask-indus-dot {
    opacity: 0;
    transform: scale(0);
}

.btn-ask-indus:hover .btn-ask-indus-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}



/* btn services  */

@media (min-width: 1024px) and (max-width: 1280px) {

    .btn-ask-servi-btn-text,
    .btn-ask-tech-btn-text,
    .btn-ask-indus-btn-text,
    .btn-ask-hire-deve-btn-text,
    .btn-ask-our-work-btn-text,
    .btn-ask-company-btn-text {
        font-size: 12px !important;
    }

    .btn-ask-our-work {
        width: 130px !important;
    }
}

@media (width: 1280px) and (height: 720px) {

    .btn-ask-servi-btn-text,
    .btn-ask-tech-btn-text,
    .btn-ask-indus-btn-text,
    .btn-ask-hire-deve-btn-text,
    .btn-ask-our-work-btn-text,
    .btn-ask-company-btn-text {
        font-size: 12px !important;
    }

    .btn-ask-our-work {
        width: 130px !important;
    }

}


.btn-ask-servi {
    position: relative;
    height: 30px;
    /* max-width: 124px;
    width:100%;*/
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #D12C2C;
    border: 2px solid #e14d4d;
    font-weight: 500;
    border-radius: 50px;
    gap: 17px;
    text-decoration: none;
    overflow: hidden;
    padding: 18px 47px 18px 26px;
}

.btn-ask-servi-btn-text {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 500;
    padding-top: 4px;
}

/* ICON KO BHI UPPER */
.btn-ask-servi-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.btn-ask-servi::before {
    content: '';
    position: absolute;
    top: 54%;
    right: 26px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.btn-ask-servi-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.btn-ask-servi-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.btn-ask-servi:hover {
    color: #e14d4d;
}

.btn-ask-servi:hover::before {
    transform: translateY(-50%) scale(50);
}

.btn-ask-servi:hover .btn-ask-servi-dot {
    opacity: 0;
    transform: scale(0);
}

.btn-ask-servi:hover .btn-ask-servi-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}


/* btn technologies  */

.btn-ask-tech {
    position: relative;
    height: 30px;
    /* max-width: 124px;
    width: 100%; */
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #D12C2C;
    border: 2px solid #e14d4d;
    font-weight: 500;
    border-radius: 50px;
    gap: 17px;
    text-decoration: none;
    overflow: hidden;
    padding: 18px 47px 18px 26px;

}

.btn-ask-tech-btn-text {
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 500;
}

/* ICON KO BHI UPPER */
.btn-ask-tech-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.btn-ask-tech::before {
    content: '';
    position: absolute;
    top: 54%;
    right: 26px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.btn-ask-tech-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.btn-ask-tech-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.btn-ask-tech:hover {
    color: #e14d4d;
}

.btn-ask-tech:hover::before {
    transform: translateY(-50%) scale(50);
}

.btn-ask-tech:hover .btn-ask-tech-dot {
    opacity: 0;
    transform: scale(0);
}

.btn-ask-tech:hover .btn-ask-tech-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}


.ai-pages .svc-cols>*:first-child,
.technologies .svc-cols>*:nth-child(3n + 1),
.industry .svc-cols>*:first-child,
.hire-developers .svc-cols>*:first-child,
.company .svc-cols>*:first-child {
    border-left: 1px solid #F0F0F0;
    padding-left: 10px;
    /* optional spacing */
}

/* btn Hire developers */

.btn-ask-hire-deve {
    position: relative;
    height: 30px;
    /* max-width: 124px;
    width: 100%;*/
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    padding-right: 48px;
    color: #fff;
    background: #D12C2C;
    border: 2px solid #e14d4d;
    font-weight: 500;
    border-radius: 50px;
    gap: 17px;
    text-decoration: none;
    overflow: hidden;
    padding: 18px 47px 22px 26px;
}

.btn-ask-hire-deve-btn-text {
    position: relative;
    z-index: 2;
    font-size: 14px;
}

/* ICON KO BHI UPPER */
.btn-ask-hire-deve-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.btn-ask-hire-deve::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.btn-ask-hire-deve-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.btn-ask-hire-deve-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.btn-ask-hire-deve:hover {
    color: #e14d4d;
}

.btn-ask-hire-deve:hover::before {
    transform: translateY(-50%) scale(50);
}

.btn-ask-hire-deve:hover .btn-ask-hire-deve-dot {
    opacity: 0;
    transform: scale(0);
}

.btn-ask-hire-deve:hover .btn-ask-hire-deve-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* btn our work */

.btn-ask-our-work {
    position: relative;
    height: 30px;
    /* max-width: 124px;
    width: 100%;
    flex: none; */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    padding-right: 48px;
    color: #fff;
    background: #D12C2C;
    border: 2px solid #e14d4d;
    font-weight: 500;
    border-radius: 50px;
    gap: 17px;
    text-decoration: none;
    overflow: hidden;
    padding: 18px 47px 22px 26px;
}

.btn-ask-our-work-btn-text {
    position: relative;
    z-index: 2;
    padding-top: 4px;
    font-size: 14px;
}

/* ICON KO BHI UPPER */
.btn-ask-our-work-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.btn-ask-our-work::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.btn-ask-our-work-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.btn-ask-our-work-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.btn-ask-our-work:hover {
    color: #e14d4d;
}

.btn-ask-our-work:hover::before {
    transform: translateY(-50%) scale(50);
}

.btn-ask-our-work:hover .btn-ask-our-work-dot {
    opacity: 0;
    transform: scale(0);
}

.btn-ask-our-work:hover .btn-ask-our-work-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}



/* btn our Company */

.btn-ask-company {
    position: relative;
    height: 30px;
    /* max-width: 124px;
    width: 100%;*/
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* padding-right: 48px; */
    color: #fff;
    background: #D12C2C;
    border: 2px solid #e14d4d;
    font-weight: 500;
    border-radius: 50px;
    gap: 17px;
    text-decoration: none;
    overflow: hidden;
    padding: 18px 47px 22px 26px;
}

.btn-ask-company-btn-text {
    position: relative;
    z-index: 2;
    font-size: 14px;
}

/* ICON KO BHI UPPER */
.btn-ask-company-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.btn-ask-company::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.btn-ask-company-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.btn-ask-company-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.btn-ask-company:hover {
    color: #e14d4d;
}

.btn-ask-company:hover::before {
    transform: translateY(-50%) scale(50);
}

.btn-ask-company:hover .btn-ask-company-dot {
    opacity: 0;
    transform: scale(0);
}

.btn-ask-company:hover .btn-ask-company-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* header contact-us-btn end */


/* ===============================
   TECHNOLOGIES SECTION
================================= */

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

.technologies-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

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

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header .subtitle {
  font-size: 16px;
  color: #666;
}

/* ===============================
   CATEGORY TABS
================================= */

.tech-categories ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.tech-categories li {
  padding: 8px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

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

.tech-grid-container {
  position: relative;
}

/* Hide all grids */
.tech-grid {
  display: none;
}

/* ===============================
   MAIN GRID (CENTER + WRAP FIX)
================================= */

.tech-grid.active {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 140px));
  justify-content: center;   /* 🔥 CENTER ALIGN */
  gap: 20px;
}

/* ===============================
   GRID ITEM
================================= */

.tech-item {

  padding: 20px 10px;
  text-align: center;
}



/* link reset */
.tech-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ===============================
   IMAGE FIX (VERY IMPORTANT)
================================= */

.tech-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto;
  display: block;
}

/* ===============================
   TEXT LABEL
================================= */

.tech-item span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
}

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

@media (max-width: 1024px) {
  .tech-grid.active {
    grid-template-columns: repeat(auto-fit, minmax(120px, 120px));
  }
}

@media (max-width: 768px) {
  .tech-grid.active {
    grid-template-columns: repeat(auto-fit, minmax(100px, 100px));
  }

  .section-header h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .tech-grid.active {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }

  .tech-item {
    padding: 15px 8px;
  }

  .tech-item img {
    width: 60px;
    height: 60px;
  }
}

.send-inquiry {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    padding-right: 48px;
    color: #fff;
    background: #e14d4d;
    border: 2px solid #e14d4d !important;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
}

.send-inquiry {
    height: 30px;
    width: 178px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D12C2C;
    color: white;
    font-weight: 600;
    gap: 17px;
    padding: 18px 47px 22px 26px;
}

/* TEXT KO UPPER LANA */
.send-inquiry-btn-text {
    position: relative;
    z-index: 2;
}

/* ICON KO BHI UPPER */
.send-inquiry-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.send-inquiry::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.send-inquiry-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.send-inquiry-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.send-inquiry:hover {
    color: #e14d4d;
}

.send-inquiry:hover::before {
    transform: translateY(-50%) scale(50);
}

.send-inquiry:hover .send-inquiry-dot {
    opacity: 0;
    transform: scale(0);
}

.send-inquiry:hover .send-inquiry-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* portfolio view more btn */


.read-more .btn-link {
    color: #000 !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;
    position: relative;
    z-index: 1;
    padding: 0 18px;
}

.read-more .btn-link:hover {
  color: #D12C2C;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.form-control {
    border-radius: 10px;
    box-shadow: none !important;
}

input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel.form-control {
    border-radius: 10px;
    box-shadow: none !important;
}

select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required.form-control {
    border-radius: 10px;
    box-shadow: none !important;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.form-control {
    border-radius: 10px;
    box-shadow: none !important;
}

.form-control:focus {
    box-shadow: 0 0 0;
    border-color: #de4948 !important;
}

.view-more {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    padding-right: 48px;
    color: #fff;
    background: #D12C2C;
    border: 2px solid #e14d4d;
    border-radius: 50px;
    text-decoration: none;
    overflow: hidden;
}

.view-more {
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D12C2C;
    color: white;
    font-weight: 600;
    gap: 17px;
    padding: 20px 46px 20px 28px;
}

/* TEXT KO UPPER LANA */
.view-more-btn-text {
    position: relative;
    z-index: 2;
}

/* ICON KO BHI UPPER */
.view-more-icon-wrapper {
    position: absolute;
    right: 32px;
    top: 8px;
    z-index: 2;
}

/* BACKGROUND CIRCLE */
.view-more::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%) scale(1);
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
    transition: transform 0.6s ease;
}

/* DOT */
.view-more-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* ARROW */
.view-more-arrow {
    position: absolute;
    width: 18px;
    height: 18px;
    color: #e14d4d;
    opacity: 0;
    transform: translateX(-10px) scale(0.5);
    transition: all 0.4s ease;
}

/* HOVER */
.view-more:hover {
    color: #e14d4d;
}

.view-more:hover::before {
    transform: translateY(-50%) scale(50);
}

.view-more:hover .view-more-dot {
    opacity: 0;
    transform: scale(0);
}

.view-more:hover .view-more-arrow {
    opacity: 1;
    transform: translateX(0) scale(1);
}


.accordion-button:not(.collapsed) {
    color: inherit !important;
    background-color: transparent !important;
    box-shadow: none !important;
}

.arrow-container {
    margin: 20px auto 30px;
    display: flex;
    justify-content: center;
}


/* .banner_btn .btn-primary {
    width: 200px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D12C2C;
    border: none;
    color: white;
    font-weight: 600;
    gap: 17px;
    padding: 30px;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.103);
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
} */

.banner_btn .btn-primary {
    width: 180px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D12C2C;
    color: white;
    font-weight: 600;
    gap: 17px;
    padding: 20px;
    border-radius: 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* clean shadow */
}

/* white overlay */
.banner_btn .btn-primary::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: white;
    left: 0;
    top: 0;
    transition: 0.4s ease;
    z-index: -1;
    border-radius: 40px;
}

/* hover effect */
.banner_btn .btn-primary:hover::before {
    width: 100%;
}

/* text color change */
.banner_btn .btn-primary:hover {
    color: #D12C2C;
    border-color: #D12C2C;
}


.cta-btn-one,
.cta-btn-two {
    /* width: 180px; */
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D12C2C;
    color: white;
    font-weight: 600;
    gap: 17px;
    padding: 20px 46px 20px 28px;
    border-radius: 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* clean shadow */
}

/* white overlay */
/* .cta-btn-one::before, .cta-btn-two::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: white;
    left: 0;
    top: 0;
    transition: 0.4s ease;
    z-index: -1;
    border-radius: 40px;
} */

/* hover effect */
.cta-btn-one:hover::before,
.cta-btn-two:hover::before {
    width: 100%;
}

/* text color change */
.cta-btn-one:hover,
.cta-btn-two:hover {
    color: #D12C2C;
    border-color: #D12C2C;
}

button.Send-inquiry {
    width: 200px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D12C2C;
    color: white;
    font-weight: 600;
    gap: 17px;
    padding: 30px;
    border-radius: 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* clean shadow */
}

/* white overlay */
button.Send-inquiry::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: white !important;
    left: 0;
    top: 0;
    transition: 0.4s ease;
    z-index: -1;
    border-radius: 40px;
}

/* hover effect */
button.Send-inquiry:hover::before {
    width: 100%;
}

/* text color change */
button.Send-inquiry:hover {
    color: #D12C2C !important;
    /* red text */
    border-color: #D12C2C !important;
}


/* .view-more {
    width: 180px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D12C2C;
    color: white;
    font-weight: 600;
    gap: 17px;
    padding: 20px;
    border-radius: 32px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
    z-index: 1;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* clean shadow */
}

*/

/* white overlay */
.view-more::before {
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: white;
    left: 0;
    top: 0;
    transition: 0.4s ease;
    z-index: -1;
    border-radius: 40px;
}

/* hover effect */
.view-more:hover::before {
    width: 100%;
}

/* text color change */
.view-more:hover {
    color: #D12C2C;
    border-color: #D12C2C;
}


.ai-pages a.svc-link.active {
    color: #9D1C1B !important;
    position: relative;
    font-weight: 500 !important;
}

.ai-pages a.svc-link.active::before {
    content: "";
    position: absolute;
    left: -10px !important;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    /* adjust as needed */
    background-color: #D12C2C;
}

.menu-services a.svc-link.active {
    color: #9D1C1B !important;
    position: relative;
}

.menu-services a.svc-link.active::before {
    content: "";
    position: absolute;
    left: -10px !important;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 70%;
    /* adjust as needed */
    background-color: #D12C2C;
}

a.svc-sub-active {
    color: #9D1C1B !important;
    position: relative;
}

a.svc-sub-active::before {
    content: "";
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 83%;
    background-color: #D12C2C;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.25);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Client Logos Section */
.clients-section {
    padding: 103px 0;
    border-top: 1px solid var(--border-color);
    background-color: #fff;
    overflow: hidden;
}


.slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.clients-grid {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 80px;
    /* Increased gap for better spacing in slider */
    animation: scroll 30s linear infinite;
}

.clients-grid:hover {
    animation-play-state: paused;
}

.client-logo {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all 0.3s ease;
    min-width: 150px;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo img {
    max-width: 140px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.tech-item img.entered.lazyloaded {
    height: 80px;
    max-width: 120px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 10px;
}


.page-id-21019 .brand-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.blogSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.stats-section {
    background-color: white;
    border-top: 1px solid var(--border-color);
    width: 100%;
    border-bottom: 1px solid var(--border-color);
}

.stats-items {
    display: flex;
    justify-content: space-between;
    /* border-bottom: 1px solid var(--border-color); */
}

.stat-item {
    flex: 1;
    padding: 30px 20px;
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.stat-item:last-child {
    border-right: none;
    flex: 2;
    /* wider space for logos */
    flex-direction: row;
    align-items: center;
    gap: 0px;
    justify-content: center;
}

.stat-item h2 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.stat-item h2 span {
    font-family: "Montserrat", sans-serif;
    color: var(--red-plus);
    font-size: 36px;
    font-weight: 700;
}

.stat-item p {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    text-align: left;
    text-transform: capitalize;
    color: #000;
    line-height: 1.4;
}


.logos {
    display: flex;
    gap: 50px;
}

.badge {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

/* .badge img {
  height: 24px;
  object-fit: contain;
  object-position: left;
} */

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
}

.stars {
    color: #ffc107;
    font-size: 11px;
    display: flex;
    gap: 2px;
}


.brand-logo-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    padding: 15px;
}

/* LEFT SHADOW */
.brand-logo-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to right, #FFFFFF94, transparent);
}

/* RIGHT SHADOW */
.brand-logo-section::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(to left, #FFFFFF81, transparent);
}


.brand-slider::before,
.brand-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    /* fade width control */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* LEFT FADE */
.brand-slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, rgba(255, 255, 255, 0));
}

/* RIGHT FADE */
.brand-slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, rgba(255, 255, 255, 0));
}

.blogSwiper::before,
.blogSwiper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    /* adjust as needed */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* LEFT FADE */
.blogSwiper::before {
    left: 0;
    background: linear-gradient(to right, #fff, rgba(255, 255, 255, 0));
}

/* RIGHT FADE */
.blogSwiper::after {
    right: 0;
    background: linear-gradient(to left, #fff, rgba(255, 255, 255, 0));
}

.owl-carousel::before,
.owl-carousel::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    /* control fade strength */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.latest-blogs-section p.latest-blog-text {
    text-align: center;
    margin-bottom: 30px;
    font-size: 16px;
    font-family: 'inter';
    line-height: 26px;
    color: #616161;
}

/* LEFT FADE */
.page-id-21019 .latest-blogs-owl::before {
    left: -0px;
    background: none !important;
}

/* RIGHT FADE */
.page-id-21019 .latest-blogs-owl::after {
    right: -0px !important;
    background: none !important;
}

.page-id-21019 .latest-blogs-section .owl-nav {
    display: none !important;
}

.owl-carousel::before {
    left: 0;
    background: linear-gradient(to right, #F5F5F5, rgba(255, 255, 255, 0)) !important;
}

/* RIGHT FADE */
.owl-carousel::after {
    right: -20px;
    background: linear-gradient(to left, #F5F5F5, rgba(255, 255, 255, 0)) !important;
}

/* .brand-slider::before,
.brand-slider::after {
    backdrop-filter: blur(2px);
} */
/* Responsive Design */

/* Tablets and smaller desktops (max-width: 1024px) */
@media (max-width: 1024px) {
    h1 {
        font-size: 56px;
    }

    .stats-items {
        flex-wrap: wrap;
    }

    /* .stat-item {
    flex: 0 0 50%;
    border-bottom: 1px solid var(--border-color);
  } */

    /* .stat-item:nth-child(2) {
    border-right: none;
  } */

    .stat-item:last-child {
        flex: 0 0 100%;
        border-bottom: none;
        padding-top: 40px;
        padding-bottom: 40px;
    }
}

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


    .navbar-nav .nav-item>.nav-link {
        font-size: .82rem;
        font-weight: 600;
        color: var(--dark);
        padding: 10px 0px !important;
        position: relative;
        white-space: nowrap;
        transition: color .2s;
    }

    .hero-content h1 {
        font-family: 'Poppins';
        font-weight: 700;
        font-size: 40px;
        text-align: center;
        text-transform: capitalize;
        line-height: 1.25;
        margin-bottom: 24px;
        letter-spacing: -1px;
        color: var(--text-dark);
    }


    .arrow-container {
        margin: 20px auto 20px;
        display: flex;
        justify-content: center;
    }

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

    .gradient-text {
        display: inline;
        padding: 0;
        font-size: 46px;
        line-height: 50px;
        font-family: "Poppins", sans-serif;
    }

    .stat-item h2 {
        font-family: "Poppins", sans-serif;
        font-weight: 700;
        font-size: 18px;
        margin-bottom: 8px;
        color: var(--text-dark);
    }

    .stat-item h2 span {
        font-family: "Poppins", sans-serif;
        color: var(--red-plus);
        font-size: 18px;
        font-weight: 700;
    }

    h1 {
        font-size: 40px;
    }

    .subtitle {
        font-size: 14px !important;
        margin-bottom: 24px;
        font-family: 'Inter', sans-serif !important;
        color: #616161 !important;
    }

    .banner-btn-text {
        position: relative;
        z-index: 2;
        font-size: 14px;
        line-height: 20px;
        font-family: 'Inter', sans-serif;
    }

    .tagline-title {
        font-size: 14px;
        line-height: 20px;
        font-family: 'Inter';
    }

    .details-text {
        font-size: 14px;
        line-height: 24px;
        margin: 0 0 20px;
        font-family: 'Inter';
        color: #616161;
    }

    .stat-item {
        flex: 0 0 50%;
        border-right: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
        padding: 30px 20px;
        align-items: center;
        text-align: center;
    }

    .stat-item:nth-child(2n) {
        border-right: none;
    }

    .stat-item p {
        text-align: center;
        font-family: "Inter", sans-serif;
        font-size: 12px;
        line-height: 16px;
    }

    .stat-item:last-child {
        flex: 0 0 100%;
        border-right: none;
        border-bottom: none;
        /* flex-direction: column; */
        gap: 30px;
    }

    .logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
        align-items: center;
    }

    .badge {
        align-items: center;
    }

    .badge img {
        object-position: center;
    }

    ul#pills-tab {
        display: flex;
        gap: 7px;
   }
}

/* Small Mobile Devices (max-width: 480px) */
@media (max-width: 480px) {
    h1 {
        font-size: 32px;
    }

    .stat-item {
        flex: 0 0 100%;
        border-right: none;
    }

    .stat-item:nth-child(2) {
        /* Reset for 1-column layout */
        border-right: none;
    }

    .clients-grid {
        gap: 40px;
        animation-duration: 20s;
    }

    .client-logo {
        min-width: 100px;
    }

    .client-logo img {
        max-width: 100px;
    }
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: "Funnel Display";
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.services-header p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.services-top-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.services-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

.service-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 24px;
    padding: 40px 40px 0px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    border-color: #ee434e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.service-card h3 {
    font-family: "Funnel Display";
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
}

.card-image {
    align-self: flex-end;
    max-width: 100%;
}

.service-card.large .card-image img {
    max-height: 250px;
}

.service-card.small .card-image img {
    max-height: 180px;
}

.card-image img {
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Services Responsive */
@media (max-width: 1024px) {

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

@media (max-width: 768px) {
    .services-header h2 {
        font-size: 32px;
    }

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

    .service-card {
        padding: 30px;
        min-height: auto;
    }

    .card-image {
        margin-top: 20px;
    }
}

/* Footer Section */

.footer .list-links .nav-ftlink:before
 {
    content: "";
    width: 6px;
    height: 6px;
    background: #de4948;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 7px;
}


.site-footer {
    background-color: #fafafa;
    padding: 80px 0 20px;
    border-top: 1px solid var(--border-color);
    font-family: "Figtree", sans-serif;
}

.footer a, .footer a:not([href]) {
    color: #000;
    font-size: 14px;
    line-height: 26px;
    position: relative;
    transition: all 0.3s;
    line-height: 20px;
    cursor: pointer;
    font-family: 'Poppins';
}


.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 0 0 40%;
}

.footer-logo {
    height: 60px;
    margin-bottom: 40px;
    object-fit: contain;
}

.areas-serve h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.location-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.location-header .flag {
    font-size: 20px;
}

.location p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
    font-family: 'Inter';
}

.footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.link-column h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 21px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

h4.insigts {
    margin-bottom: 5px;
    margin-top: 20px;
}

.link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-column li {
    margin-bottom: 12px;
    padding: 0;
}

.link-column a {
    text-decoration: none;
    font-family: 'poppins';
    color: #000 !important;
    font-size: 16px;
    transition: color 0.2s;
    cursor: pointer;
}

.link-column a:hover {
    color: var(--primary-gradient) !important;
}

.link-column hr {
    /* border: none; */
    border-top: 1px solid #000 !important;
    margin: 20px 0;
    width: 65px;
    color: #000 !important;
}

.footer-middle {
    margin-bottom: 60px;
}

span.country-tag {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    color: #000;
}

.areas-serve {
    margin-top: 50px;
}

.subscribe-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.subscribe-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-dark);
}

.subscribe-text p {
    font-size: 14px;
    color: #505050;
}

.subscribe-form {
    display: flex;
    background-color: #e9e9e9;
    border-radius: 100px;
    width: 45%;
    padding: 5px 5px 5px 25px;
    align-items: center;
}

.subscribe-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 0;
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
}

.btn-arrow {
    background-color: #f03e3e;
    border: none;
    width: 100px;
    height: 44px;
    border-radius: 100px;
    color: white;
    cursor: pointer;
    transition: transform 0.2s;
}

.btn-arrow:hover {
    transform: scale(1.05);
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bottom-left p {
    font-size: 16px;
    font-weight: 600;
    color: #000 !important;
    line-height: 22px;
}

.social-links {
    display: flex;
    gap: 0px !important;
}


.social-links a {
    color: #000 !important;
    font-size: 20px;
    transition: opacity 0.2s;
}

.social-links a:hover {
    opacity: 0.8;
}

.footer p
 {
    color: #000;
    font-size: 14px;
    font-family: 'Inter';
    line-height: 20px;
}


.mobile-nav-item .sub-menu {
    display: none !important;
}

.mobile-nav-item.active .sub-menu {
    display: block !important;
}

.legal-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links i.fa-brands.fa-linkedin-in, .social-links .fa-brands.fa-instagram, .social-links .fa-brands.fa-youtube,
.social-links .fa-brands.fa-facebook-f, .social-links i.fa-brands.fa-x-twitter {
    color: #D12c2c;
}


.legal-links a {
    color: #000;
    font-size: 14px;
    font-family: 'Inter';
    font-weight: 600;
    letter-spacing: 1px;
}

.legal-links span {
    color: #1e1e1e;
    font-size: 12px;
}

.footer-links .link-column ul+ul {
    border-top: 1px solid #e6e6e6;
    margin-top: 12px;
    padding-top: 12px;
}

.footer-links .link-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links .link-column li {
    margin-bottom: 6px;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand {
        flex: 1;
    }

    .footer-links {
        grid-template-columns: repeat(1, 1fr);
    }
}

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

    .subscribe-bar {
        flex-direction: column;
        border-radius: 20px;
        padding: 30px;
        gap: 20px;
        text-align: center;
    }

    .subscribe-form {
        width: 100%;
        background-color: #e9e9e9;
        border-radius: 100px;
        padding: 5px 5px 5px 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* CTA Section */

.cta-section {
    background-color: #ffffff;
    padding-bottom: 125px;
}

.cta-box {
    background-color: #fff1f1;
    border-radius: 24px;
    padding: 90px 40px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-line-1,
.cta-line-2 {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.cta-line-1 {
    top: 0;
    left: 0;
    height: 100%;
    width: auto;
}

.cta-line-2 {
    bottom: 0;
    right: 0;
    height: 80%;
    width: auto;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
    line-height: 1.2;
}

.cta-content p {
    font-size: 16px;
    font-family: 'Inter', sans-serif !important;
    line-height: 1.5;
    margin-bottom: 40px !important;
    color: #000 !important;
}


.cta-content .btn-primary:hover {
    color: #D12C2C;
    background: transparent;
    border-color: #D12C2C;
}

.cta-subtitle {
    color: #707070;
    font-size: 14px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
}


/* CTA Responsive */
@media (max-width: 768px) {
    .cta-section {
        background-color: #ffffff;
        padding-bottom: 125px;
    }

    .cta-title {
        font-size: 19px;
        line-height: 30px;
        font-family: "Poppins", sans-serif;
    }

    .cta-box {
        padding: 60px 20px;
    }

    .service-column-box .service-icon {
        margin-bottom: 12px !important;
        margin-left: 0;
    }

    p.text-center.text-muted.lead.mb-5 {
        font-family: 'Inter';
        font-size: 14px;
        line-height: 20px;
    }

    .testimonials-container-block h2 {
        text-align: center;
        font-family: 'Poppins';
        font-size: 24px;
    }

    .testimonials-container-block p {
        text-align: center;
        max-width: 600px;
        margin: auto;
        padding: 10px 0 30px;
        font-family: 'Inter';
        font-size: 13px;
        color: #000;
    }

}

/* Industries Section */
.industries-section-blocks {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

/* HEADER FIX */
.industries-blocks {
    text-align: center;
    margin-bottom: 60px;
}

.industries-blocks h2 {
    font-family: "Poppins";
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.subtitle {
    max-width: 850px;
    margin: auto;
    color: #616161 !important;
    font-size: 16px;
    font-family: 'Inter' !important;
    line-height: 1.6;
}

/* GRID */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.industry-card {
    background: #ffffff;
    border: 2px solid #B5B5B5;
    border-radius: 24px;
    padding: 40px;
    min-height: 200px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.industry-card:hover {
    border-color: #ee434e;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.industry-card h3 {
    font-family: "poppins";
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
}

/* ICON */
.industry-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 140px;
    height: 110px;
    pointer-events: none;
}

.industry-icon img {
    position: absolute;
    transition: all 0.3s ease;
    width: auto;
}

/* GHOST ICON */
.industry-icon img.ghost {
    height: 143px;
    opacity: 0.05;
    bottom: 0px;
    left: 0px;
}

/* MAIN ICON */
.industry-icon img.main {
    height: 90px;
    opacity: 0.8;
    bottom: 20px;
    right: 15px;
}

/* HOVER EFFECT */
.industry-card:hover .industry-icon img.main {
    opacity: 1;
    transform: scale(1.05);
}

.industry-card:hover .industry-icon img.ghost {
    opacity: 0.1;
    transform: scale(1.1) rotate(5deg);
}

/* Industries Responsive */
@media (max-width: 1024px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 32px;
    }

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

    .industry-card {
        padding: 30px;
        min-height: 150px;
    }
}

/* Testimonial Section */

.testimonial-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.testimonial-card span {
    font-weight: bold;
    font-size: 0.9rem;
    color: #222;
}

.testimonials-container-block p {
    text-align: center;
    max-width: 600px;
    color: #000;
    font-family: 'Inter';
    font-size: 16px;
    margin: auto;
    padding: 10px 0 30px;
}

.owl-carousel .item {
    display: flex;
    justify-content: center;
}


.author-info img {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    margin-right: 12px;
    object-fit: cover;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.author-name {
    font-weight: bold;
    font-size: 0.95rem;
    color: #222;
    display: block;
}

.author-role {
    font-size: 0.85rem;
    color: #6F6C90 !important;
}


/* Projects Section */
.projects-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.project-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.project-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    margin-bottom: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background-color: #f5f5f5;
    /* Subtle placeholder if img fails */
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-card:hover .project-image {
    transform: translateY(-5px);
}

.project-info {
    text-align: left;
}

.project-info h3 {
    font-family: "Funnel Display";
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.project-info p {
    font-size: 14px;
    color: #707070;
    line-height: 1.6;
}

/* Projects Responsive */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

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

    .project-info h3 {
        font-size: 20px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 -15px;
    padding: 20px 0;
}

.testimonials-track {
    width: 100%;
    overflow: hidden;
    /* This now handles the sliding overflow */
    position: relative;
}

.owl-nav {
    display: block !important;

}


/* span.custom-next {
    width: 25px;
    height: 25px;
    transform: translateY(-50%);
    background: red;
    color: white;
    border-radius: 50%;
} */

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: red !important;
    color: white !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.owl-prev {
    left: 10px;
}

.owl-next {
    right: 10px;
}

.testimonials-container-block h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Poppins';
    line-height: 40px;
}


section.new-testimonial {
    background: #F5F5F5;
    padding: 40px;
}

.testimonials-track::before,
.testimonials-track::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

.testimonials-track::before {
    left: 0;
    background: linear-gradient(to right, #fcfcfc 0%, transparent 100%);
}

.testimonials-track::after {
    right: 0;
    background: linear-gradient(to left, #fcfcfc 0%, transparent 100%);
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    text-align: left;
    position: relative;
    height: 320px;
    min-height: 355px;
    margin: 0 15px;
    box-sizing: border-box;
}

.new-testimonial .testimonial-card h3 {
    min-height: 60px;
    /* title ke liye space */
}

.new-testimonial .testimonial-card p {
    min-height: 210px;
    /* description fix */
    overflow: hidden;
}


.card-quote {
    font-family: "Funnel Display";
    font-size: 20px;
    font-weight: 700;
    color: #1a1a3d;
    margin-bottom: 20px;
}

.card-text {
    font-size: 15px;
    color: #6e6e8c;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.card-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    gap: 20px;
    align-items: center;
    color: #000;
}

.author-info strong {
    font-size: 16px;
    color: #000;
    font-weight: 700;
}


span.author-name {
    font-size: 14px;
    color: #000;
}

.slider-prev-btn,
.slider-next-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #ee434e;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(238, 67, 78, 0.3);
    z-index: 10;
    transition: all 0.3s ease;
}

.slider-prev-btn {
    left: -25px;
}

.slider-next-btn {
    right: -25px;
}

.slider-prev-btn:hover,
.slider-next-btn:hover {
    background-color: #d63a44;
    transform: scale(1.1);
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    /* .testimonial-card {
        flex: 0 0 calc(50% - 30px);
    } */
}

@media (max-width: 768px) {
    /* .testimonial-card {
        flex: 0 0 calc(100% - 30px);
    } */

    .testimonials-track::before,
    .testimonials-track::after {
        display: none;
        /* Remove fade on mobile */
    }

    .slider-prev-btn,
    .slider-next-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        z-index: 20;
    }

    .slider-prev-btn {
        left: 5px;
    }

    .slider-next-btn {
        right: 5px;
    }
}

/* Technologies Section */
.technologies-section {
    padding: 80px 0;
    background-color: #ffffff;
    max-width: 1348px;
    margin: 0 auto;
}

.technologies-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.technologies-section h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    font-family: 'Poppins';
    font-weight: 700;
}

.technologies-section .subtitle {
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
}

.tech-categories {
    margin-bottom: 50px;
}


.tech-categories ul {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    white-space: nowrap;
    cursor: grab;
    scroll-behavior: smooth;
    margin-left: 0;
}

.tech-categories ul.dragging {
    cursor: grabbing;
}

.tech-categories ul::-webkit-scrollbar {
    display: none;
}

.tech-categories li {
    flex: 0 0 auto;
}

.tech-categories ul {
    display: flex;
    justify-content: flex-start;
    /* Better for scrolling */
    gap: 30px;
    list-style: none;
    padding: 0 0px 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

/* Center items on desktop if they fit */
@media (min-width: 1024px) {
    .tech-categories ul {
        justify-content: space-between;
    }
}

.tech-categories li {
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    padding-bottom: 5px;
    flex-shrink: 0;
    /* Important for scroll */
    white-space: nowrap;
    /* Prevent text wrap */
    font-family: "poppins";
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 0%;
}


.tech-categories li {
    display: inline-block;
    /* or flex if needed */
    padding: 10px 16px;
    /* space around text */
    text-align: center;
    position: relative;
    padding-bottom: 6px;
    transition: 0.3s;
}

.tech-categories li.active {
    border-bottom: 3px solid #9D1C1B;
    color: #9D1C1B;
}

.tech-categories ul {
    position: relative;
}

.tech-categories ul::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    /* transform: translateX(-52%); */
    width: 100%;
    height: 1px;
    background-color: #EAEAEA;
}

/* .tech-categories li.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background-color: #ee434e;
  border-radius: 50%;
} */

/* .tech-grid-container {
  max-width: 1000px;
  margin: 0 auto;
} */

.tech-grid {
    display: none;
    /* default hidden */
    background: #f8f8f8;
    border-radius: 20px;
    padding: 40px 30px;
    /* thoda balanced padding */
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 25px;
    justify-items: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    /* smooth transition */
}

/* .tech-grid.active {
    display: flex;
    justify-content: center;
    gap: 25px;
} */

/* Tech item styling */
.tech-item {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.tech-item i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #e63946;
    /* highlight color (change as per theme) */
}

.tech-item span {
    display: block;
    font-weight: 500;
}


.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.tech-item i {
    font-size: 40px;
    color: #333333;
}

.tech-item span {
    font-size: 16px;
    font-weight: 500;
    color: #333333;
}

@media (max-width: 768px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) {
    .tech-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Technologies Responsive */
@media (max-width: 1024px) {
    .tech-grid {
        grid-template-columns: repeat(4, 1fr);
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .tech-categories ul {
        gap: 20px;
    }

    .tech-categories li {
        font-size: 16px;
    }

    .tech-grid {
        padding: 30px;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-container {
    position: relative;
    display: flex;
    align-items: center;
    margin: 40px -15px 0;
    padding: 20px 0;
}

.blog-track {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-top: 20px;
    /* Space for hover translateY effect */
    margin-top: -20px;
    /* Offset padding to keep layout consistent */
}

.blog-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.blog-card {
    border-radius: 14px;
    border: 1px solid #f2f2f2;
    background: #fff;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
    margin-bottom: 30px;
}

.custom-software-development-section {
    padding-top: 90px !important;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 20px;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 25px 0;
}

.blog-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #888888;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
}



.blog-excerpt {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

/* Nav Buttons */
.blog-prev-btn,
.blog-next-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog-prev-btn {
    left: -25px;
}

.blog-next-btn {
    right: -25px;
    background-color: #ee434e;
    color: #ffffff;
    border: none;
}

.blog-prev-btn:hover,
.blog-next-btn:hover {
    transform: scale(1.1);
}

/* View More Button */
.blog-view-more {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

#portfolioCarousel h3 a {
    color: #000;
}


#portfolioCarousel {
    cursor: grab;
    user-select: none;
}

#portfolioCarousel.is-dragging {
    cursor: grabbing;
}

/* .view-more a {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.view-more-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 10px 10px 30px;
  background-color: #ee434e;
  color: #ffffff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.view-more-btn:hover {
  background-color: #d63a44;
  transform: translateY(-2px);
} */

.view-more-btn .btn-arrow {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.view-more-btn:hover .btn-arrow {
    background-color: rgba(255, 255, 255, 0.3);
}

.view-more-btn i {
    font-size: 14px;
}

.portfolio-img-box img {
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    /* .blog-card {
        flex: 0 0 calc(50% - 30px);
    } */
}

@media (max-width: 768px) {

    .container.py-4.py-md-5.mt-2.mt-md-3 {
        padding: 30px;
    }

    .view-more {
        background-color: #D12C2C;
        width: 45%;

    }

    /* .blog-card {
        flex: 0 0 calc(100% - 30px);
    } */

    .blog-prev-btn,
    .blog-next-btn {
        display: none;
    }

    .industries-blocks h2 {
        font-family: "poppins";
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--text-dark);
    }

    .industry-card h3 {
        font-family: "poppins";
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        line-height: 1.2;
    }

    .technologies-section h2 {
        font-size: 20px;
        line-height: 32px;
        color: #000;
        margin-bottom: 20px;
    }
}

.btn-new {
    margin-bottom: 32px;
}

.tech-list-wrapper-new {
    margin-top: 41px !important;
}

.tech-list-new {
    display: flex;
    gap: 0px 10px;
    justify-content: space-between !important;
    border-bottom: 3px solid #00000078;
    overflow: auto;
}

#blogCarousel .carousel-control-prev,
#blogCarousel .carousel-control-next {
    display: none;
}

.button-wrapper-block {
    text-align: center;
    position: relative;
    top: 10px;
}

/* Important fixes for equal height */
.home-blog-new .swiper-slide {
    height: auto !important;
}

.home-blog-new .card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-blog-new .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.home-blog-new .image-wrapper {
    overflow: hidden;
}

.home-blog-new .card-body {
    padding: 1.5rem;
}

/* Title ko center + stretch */
.home-blog-new .card-body h5 {
    margin: 0;
    font-size: 1.25rem;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .home-blog-new .card-body {
        padding: 1.25rem;
    }

    .home-blog-new .card-body h5 {
        font-size: 1.1rem;
    }
}

.swiper.blogSwiper.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
    padding: 10px 0 20px;
}


.blog-section-wrapper .blogSwiper {
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    overflow: hidden;
}

.blog-section-wrapper .swiper-slide {
    height: auto !important;
}

.blog-section-wrapper .card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-section-wrapper .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.blog-section-wrapper .image-wrapper {
    overflow: hidden;
}

.blog-section-wrapper .card-body {
    padding: 1.5rem;
}

.blog-section-wrapper .card-body h5 {
    margin: 0;
    font-size: 1.25rem;
}

@media (max-width: 576px) {
    .blog-section-wrapper .card-body {
        padding: 1.25rem;
    }

    .blog-section-wrapper .card-body h5 {
        font-size: 1.1rem;
    }
}


.custom-checkbox {
    appearance: none;
    /* browser default hatao */
    width: 22px;
    height: 22px;
    border: 2px solid #9ca3af;
    /* gray border */
    border-radius: 6px;
    background: white;
    position: relative;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

/* Hover effect */
.custom-checkbox:hover {
    border-color: #6366f1;
    /* indigo shade */
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

input[type="checkbox"]:checked {
    color: #D12C2C;
    font-weight: 600;
}

/* Checked state */
#wpcf7-f21522-o1 .wpcf7-list-item label:has(input:checked) {
    background-color: #FCF0F0;
    color: #D12C2C;
    border-color: #D12C2C;
}

/* Checkmark (tick) */
.custom-checkbox:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.custom-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

span.wpcf7-form-control.wpcf7-checkbox.custom-cf7-checkbox {
    display: flex;
    flex-flow: wrap;
    gap: 10px;
}

#wpcf7-f21522-o1 .wpcf7-list-item {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2;
}


#wpcf7-f21522-o1 .wpcf7-list-item input[type="checkbox"],
#wpcf7-f21522-o1 .wpcf7-list-item input[type="radio"] {
    margin: 0 0.4em 0 0 !important;
    padding: 0 !important;
    vertical-align: middle;
    display: none;
}

#wpcf7-f21522-o1 .wpcf7-list-item label {
    margin: 0 !important;
    padding: 15px !important;
    line-height: 1.1;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    background: #fff;
}


#wpcf7-f21522-o1 .wpcf7-checkbox .wpcf7-list-item,
#wpcf7-f21522-o1 .wpcf7-radio .wpcf7-list-item {
    margin-bottom: 2px !important;
}


.why-choose-section {
    background-color: var(--bg-dark);
    padding: 100px 0;
}

.why-choose-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.why-choose-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 950px;
}

.features-list {
    margin-top: 2rem;
}

.feature-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    z-index: 1;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s ease;
}

/* Red background that slides up from bottom */
.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--accent-red);
    transform: translateY(101%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.feature-item:hover::before {
    transform: translateY(0);
}

/* Keep content above the animated bg */
.feature-item .row {
    position: relative;
    z-index: 1;
}

.feature-item.border-0 {
    border-bottom: none !important;
}

.feature-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 0;
    transition: color 0.35s ease;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
    max-width: 90%;
    transition: color 0.35s ease;
}

.feature-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.35s ease;
    background: white;
    flex-shrink: 0;
}

/* Hover Effects */
.feature-item:hover {
    padding: 30px 35px;
    border-color: transparent;
}

.feature-item:hover .feature-title {
    color: white;
}

.feature-item:hover .feature-text {
    color: rgba(255, 255, 255, 0.85);
}

.feature-item:hover .feature-arrow {
    background-color: white !important;
    border-color: white !important;
    color: var(--accent-red) !important;
    transform: rotate(-45deg) !important;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 30px 0;
    }

    .feature-title {
        margin-bottom: 15px;
    }

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

    .why-choose-section {
        padding: 60px 0;
    }
}

/* Statistics Section */
.statistics-section {
    background-color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.statistics-section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.statistics-section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 15px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Process Cards */
.stat-process-card {
    background: #ffffff;
    border: 1px solid #FFE5E5;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-process-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(222, 73, 72, 0.1);
    border-color: var(--accent-red);
    background-color: var(--accent-red);
}

.stat-process-card:hover .stat-process-number,
.stat-process-card:hover .stat-process-title,
.stat-process-card:hover .stat-process-desc {
    color: #ffffff !important;
}

.stat-process-number {
    font-family: "Poppins", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.stat-process-title {
    font-family: "Poppins", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.4;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.stat-process-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #999;
    margin-bottom: 0;
    margin-top: auto;
    transition: color 0.3s ease;
}

/* Background counter that appears on hover */
.stat-process-card::after {
    content: attr(data-number);
    position: absolute;
    bottom: -20px;
    right: -10px;
    font-size: 14rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    pointer-events: none;
    opacity: 0;
    z-index: 0;
    transform: translateY(100px) scale(0.9);
    transition: opacity 0.4s ease;
    /* smooth fade out */
}

@keyframes number-popup {
    0% {
        opacity: 0;
        transform: translateY(120px) scale(0.9);
    }

    40% {
        opacity: 1;
        transform: translateY(-40px) scale(1.05);
        /* shoots up fast */
    }

    60% {
        transform: translateY(15px) scale(1);
        /* drops down slightly past center */
    }

    80% {
        transform: translateY(-5px);
        /* small secondary bounce */
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-process-card:hover::after {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: number-popup 0.7s ease-in-out forwards;
}

@media (max-width: 991px) {
    .statistics-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .stat-process-card {
        min-height: auto;
        padding: 30px;
    }
}



.brandLogoSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* .blogSwiper .swiper-wrapper {
    transition-timing-function: linear !important;
} */

/* Mobile Menu Overlay Styles */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    /* max-width: 350px; */
    height: 100%;
    background: #fff;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.open .mobile-menu-content {
    right: 0;
}

.mobile-menu-header {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #333;
    line-height: 1;
    padding: 5px;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f9f9f9;
}

.mobile-nav-link-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 12px 20px; */
}

.mobile-nav-link {
    text-decoration: none;
    color: #000;
    font-family: 'Poppins';
    font-size: 15px;
    font-weight: 500;
    flex: 1;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: #D12C2C;
}

.mobile-caret {
    font-size: 12px;
    color: #bbb;
    cursor: pointer;
    padding: 5px;
    transition: transform 0.3s ease;
}

.mobile-nav-item.active {
    background: #fdf2f1;
    border-radius: 12px;
    margin: 10px 15px;
    border-bottom: none;
}

.mobile-nav-item.active>.mobile-nav-link-wrapper {
    border-bottom: 1px solid #ecc9c9;
    padding: 12px 5px 8px 0px;
}

.mobile-nav-item.active>.mobile-nav-link-wrapper .mobile-nav-link {
    color: #D12C2C;
}

.mobile-nav-item.active>.mobile-nav-link-wrapper .mobile-caret {
    transform: rotate(90deg);
    color: #D12C2C;
}

/* ════════════════════════════
   Mobile Menu Sub-navigation Styling
   (Unified Alignment & Pixel-Perfect Design)
   ════════════════════════════ */

.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: transparent;
    display: none;
    border-left: 1px solid #ecc9c9;
    /* margin-left: 20px; Aligned with design screenshot */
    margin-top: 10px;
    margin-bottom: 5px;
}

.mobile-nav-item.active>.mobile-submenu {
    display: block;
}

.company .mobile-submenu .mobile-nav-link {
    padding: 0px 0 0px 0px;
    font-size: 14px;
    font-family: 'Poppins';
    font-weight: 400;
    color: #666;
}

.mobile-submenu .mobile-nav-link {
    padding: 8px 0 8px 20px;
    /* Text offset from vertical line */
    font-size: 14px;
    font-weight: 400;
    color: #666;
    /* Light gray as per screenshot */
}

/* Level 2 Subheading (Technologies section) */
.mobile-submenu .mobile-nav-item.has-children>.mobile-nav-link-wrapper .mobile-nav-link {
    font-weight: 700;
    color: #111;
    padding-top: 15px;
    padding-bottom: 5px;
}

/* Hide caret for nested headers */
.mobile-submenu .mobile-nav-item.has-children>.mobile-nav-link-wrapper .mobile-caret {
    display: none;
}

/* Nested submenus indentation */
.mobile-submenu .mobile-nav-item.has-children>.mobile-submenu {
    display: block;
    border-left: 1px solid #ecc9c9;
    margin-left: 20px;
    padding: 0px 0 0px 0;
}

.menu-services a.mobile-nav-link {
    padding-left: 0;
    padding-bottom: 0;
}

.menu-services li.mobile-nav-item.menu-item.menu-item-type-post_type.menu-item-object-page.nav-link {
    padding-bottom: 0;
}

.hire-developers .mobile-submenu .mobile-nav-item.has-children>.mobile-submenu {
    display: block;
    border-left: unset;
    /* margin-left: 20px; */
    /* padding: 5px 0 10px 0; */
}

.hire-developers .mobile-submenu .mobile-submenu .mobile-nav-link {
    padding: 5px 0 0px 0px;
    font-size: 13px;
    color: #888;
}

.hire-developers ul.mobile-submenu.level-2 {
    margin-left: 0 !important;
    margin-bottom: 0 !important;
}

.hire-developers a.mobile-nav-link {
    padding: 0px 0 0 0 !important;
}

.hire-developers li.mobile-nav-item.menu-item.menu-item-type-post_type.menu-item-object-page.nav-link {
    padding-left: 0;
}

.Technologies a.mobile-nav-link {
    padding-left: 0 !important;
}

.Technologies ul.mobile-submenu.level-2 {
    margin-left: 0 !important;
    border-left: unset !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.Technologies li.mobile-nav-item.menu-item.menu-item-type-post_type.menu-item-object-page.nav-link {
    padding-left: 0;
    padding-bottom: 0;
}

.Technologies a.mobile-nav-link {
    padding-top: 0 !important;
}

.industry a.mobile-nav-link {
    padding-left: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin: 0;
}

/* Level 3 items styling */
.mobile-submenu .mobile-submenu .mobile-nav-link {
    padding: 5px 0 5px 20px;
    font-size: 13px;
    color: #888;
}

.company .contact-sub-section {
    border-left: 1px solid #ecc9c9;
    /* margin-left: 20px; */
    margin-top: 14px;
    padding: 20px 0 0 17px;
    display: flex;
    flex-direction: column;
}

.legal-links a:hover {
    color: #D12C2C;
}

.mobile-menu-footer {
    padding: 25px 20px;
    border-top: 1px solid #f5f5f5;
    background: #fff;
}

.follow-us-text {
    font-size: 12px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-social-links {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
}

.mobile-social-links a {
    color: #888;
    font-size: 16px;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f8f8;
}

.mobile-social-links a:hover {
    color: #fff;
    background: #D12C2C;
}

.mobile-btn-connect {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 155px;
    background: #D12C2C;
    color: #fff;
    text-decoration: none;
    padding: 23px 30px 20px 0px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(209, 44, 44, 0.2);
}

.mobile-btn-connect:hover {
    background: #b52222;
    color: #D12C2C;
    transform: translateY(-2px);
}

.mobile-btn-connect i {
    font-size: 18px;
    background: #fff;
    color: #D12C2C;
    border-radius: 50%;
    width: 15px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-item:not(.has-children) .mobile-nav-link {
    font-weight: 400;
}

/* Fix missing icons (Close, Caret) */
.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    display: inline-block !important;
}

#mobileMenuClose i.bi {
    font-size: 24px !important;
    color: #333;
    display: block;
}

.mobile-caret i.bi {
    font-size: 16px !important;
    display: block;
    color: #000;
}

.mobile-menu-close {
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-caret {
    min-width: 30px;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Company Menu Injection Styling */
.mobile-menu-contact-wrap {
    padding: 0 0 20px;
    display: none;
}

.mobile-nav-item.active>.mobile-menu-contact-wrap {
    display: block;
}

.company .contact-sub-section {
    border-left: 1px solid #ecc9c9;
    margin-left: 0px;
    padding: 20px 0 0 20px;
    display: flex;
    flex-direction: column;
}

.company .contact-sub-section h6 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.company .contact-sub-section a {
    text-decoration: none;
    color: #666;
    font-size: 13px;
    margin-bottom: 10px;
    transition: color 0.1s;
}

.company .contact-sub-section a:hover {
    color: #D12C2C;
}

.btn-default {
    background: #D12C2C !important;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-size: 16px;
    border: 1px solid transparent;
    margin-left: 25px;
}

.btn-default:hover {
    color: #D12C2C !important;
    background: transparent !important;
    border-color: #D12C2C !important;
}

.newsletter-container .btn-default {
    background: #fff !important;
    color: #D12C2C !important;
}

.newsletter-container .btn-default:hover {
    background: transparent !important;
    border: 1px solid #fff !important;
    color: #fff !important;
}

.menu-services li.mobile-nav-item.menu-item.menu-item-type-post_type.menu-item-object-page.current-menu-item.page_item.page-item-12943.current_page_item.active.nav-link {
    padding-left: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.menu-services .mobile-nav-item.active>.mobile-nav-link-wrapper {
    border-bottom: unset !important;
    padding: 0px;
}

.Technologies .mobile-nav-item.active>.mobile-nav-link-wrapper {
    border-bottom: unset !important;
    padding: 0px;
}

.industry .mobile-nav-item.active>.mobile-nav-link-wrapper {
    border-bottom: unset !important;
    padding: 0px;
}

.company .mobile-nav-item.active>.mobile-nav-link-wrapper {
    border-bottom: unset !important;
    padding: 0px;
}

.new-our-work .mobile-nav-item:not(.has-children) .mobile-nav-link {
    font-weight: 500;
    display: none !important;
}

.new-our-work .mobile-nav-item.active>.mobile-nav-link-wrapper {
    border-bottom: unset !important;
}

.new-our-work .mobile-submenu {
    border-left: unset !important;
}

.new-our-work .mobile-menu-work-wrap {
    padding: 0px 0px 18px !important;
    display: none;
}

.latest-blogs-section {
    background-color: #ffffff;
    padding-top: 100px;
}

.blogs-section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.blogs-section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Cards */
.blog-card-content-new {
    background: #ffffff;
    border: 1px solid #FFE5E5;
    /* Delicate pink border */
    border-radius: 20px;
    padding: 0;
    /* Removed inner padding so image touches borders */
    overflow: hidden;
    /* Ensure image respects the card's border-radius */
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: calc(100% - 20px);
}

.blog-card-content-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: rgba(222, 73, 72, 0.3);
    /* Slightly redder on hover */
}

/* Image Wrapper */
.blog-img-wrapper {
    width: 100%;
    height: 220px;
    border-radius: 0;
    /* Let parent container handle border radius */
    overflow: hidden;
    position: relative;
    /* Basic background colors if image fails / before load */
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    border-radius: 20px;
}

.blog-card-content-new:hover .blog-img {
    transform: scale(1.05);
}

/* Content Area */
.blog-card-content-new .blog-content {
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.latest-blogs-swiper-home-new .swiper-slide {
    height: auto;
}

.latest-blogs-swiper-home-new .blog-card-content-new {
    height: 100%;
}

/* IMPORTANT FIX */
.latest-blogs-swiper-home-new .swiper-wrapper {
    align-items: stretch;
}

.latest-blogs-owl .item {
    height: 100%;
}

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

/* Metadata Labels */
.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-tag {
    font-size: 12px;
    color: #888;
    padding: 4px 16px;
    border: 1px solid #eee;
    border-radius: 50px;
    /* Pill shape */
    background: transparent;
    font-weight: 500;
}

.meta-date {
    font-size: 12px;
    color: #888;
    background: transparent;
    font-weight: 500;
}

/* Typography Inside Card */
.blog-card-content-new .blog-title {
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-title-new {
    font-family: "Poppins", sans-serif;
    font-size: 32px;
    text-align: center;
    font-weight: 700;
    color: #000;
    line-height: 1.5;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.blog-card-content-new:hover .blog-title {
    color: #D12C2C !important;
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #777;
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .latest-blogs-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}


.blogs-section-title {
    font-family: "Poppins", sans-serif;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.blogs-section-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-card-content-new .blog-title {
    min-height: 100px;
    color: #000;
}

@media (min-width: 1200px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

.mobile-nav .nav-link.active {
    padding: 8px 15px !important;
    border-radius: 12px;
}

.mobile-menu-work-wrap {
    padding: 10px 15px 25px;
    display: none;
}

.mobile-nav-item.active>.mobile-menu-work-wrap {
    display: block;
}

.work-sub-section {
    margin-top: 15px;
}

.work-sub-section h6 {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

.mobile-testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.client-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.client-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.client-name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.client-title {
    font-size: 11px;
    color: #888;
    margin: 0;
}

.client-quote {
    font-size: 12px;
    color: #444;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.mobile-portfolio-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.portfolio-img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-footer {
    padding: 15px;
}

.portfolio-desc {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 10px;
}

.portfolio-link {
    font-size: 13px;
    font-weight: 700;
    color: #D12C2C;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.portfolio-link i {
    font-size: 16px;
}


@media (min-width: 992px) and (max-width: 1366px) {
    .mega-left {
        max-height: 500px;
        overflow-y: auto;
    }
}

/* //New css// */
.menu-services .mega-right {
    height: 100% !important;
}

.menu-services .svc-cols {
    min-height: 125px;
    height: 100%;
}

.industry .svc-cols {
    min-height: 187px;
    height: 100%;
}

.technologies .app-card {
    min-height: 250px;
}

.hire-developers .app-card {
    min-height: 291px;
}


a[href^="tel"] {
    display: inline-block;
    padding: 12px 0px;
    min-height: 48px;
    min-width: 48px;
    font-size: 14px;
}