﻿/*======================================
    INDUSTRY SOLUTIONS
======================================*/

.industry-solutions {
    padding: 90px 0;
    position: relative;
}

    .industry-solutions .container {
        max-width: 1320px;
    }

/*======================================
    HEADING
======================================*/

.section-heading {
    margin-bottom: 45px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    border-radius: 40px;
    background: rgba(37,99,235,.08);
    color: #0ea5a8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    color: #1f2d3d;
    margin-top: 18px;
    margin-bottom: 0;
}

    .section-title span {
        color: #0ea5a8;
    }

/*======================================
        INDUSTRY TABS
======================================*/

.industry-tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.industry-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 24px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e6edf5;
    color: #203050;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: .35s;
    box-shadow: 0 3px 10px rgba(0,0,0,.03);
}

    .industry-tab i {
        font-size: 18px;
        transition: .35s;
    }

    .industry-tab:hover {
        transform: translateY(-2px);
        border-color: #0ea5a8;
        box-shadow: 0 12px 28px rgba(0,0,0,.08);
    }

    .industry-tab.active {
        background: linear-gradient(135deg,#14c7b7,#0ea5e9);
        color: #fff;
        border: none;
        box-shadow: 0 16px 35px rgba(20,199,183,.28);
    }

        .industry-tab.active i {
            color: #fff;
        }

/*======================================
        CONTENT WRAPPER
======================================*/

.industry-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border-radius: 26px;
    padding: 25px;
}

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

.industry-left {
    width: 35%;
}

.inds-content {
    display: block;
}

    .inds-content h3 {
        font-size: 24px;
        line-height: 1;
        font-weight: 500;
        color: #1e2f50;
    }

        .inds-content h3 span {
            display: block;
            color: #14b8a6;
        }

    .inds-content p {
        font-size: 15px;
        line-height: 1.25;
        color: #667085;
        margin-bottom: 10px;
        max-width: 90%;
    }

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

.industry-right {
    width: 65%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .industry-right img {
        width: 100%;
        transition: .45s;
    }

        .industry-right img:hover {
            transform: translateY(-8px);
        }

/*======================================
        TAB TRANSITION
======================================*/

.inds-content {
    animation: fadeUp .45s ease;
}

@keyframes fadeUp {

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

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


/*======================================
        CTA BUTTON
======================================*/

.btn-industry {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 48px;
    padding: 0 26px;
    border-radius: 50px;
    background: linear-gradient(135deg,#14c7b7,#0ea5e9);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 14px 30px rgba(20,199,183,.25);
    transition: .35s;
}

    .btn-industry:hover {
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 18px 36px rgba(20,199,183,.35);
    }

    .btn-industry i {
        font-size: 16px;
        transition: .3s;
    }

    .btn-industry:hover i {
        transform: translateX(5px);
    }

/*======================================
        FEATURE GRID
======================================*/

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
}

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

.feature-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px;
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    transition: .35s;
    overflow: hidden;
}

    .feature-box::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient( to bottom, #14c7b7, #0ea5e9 );
        opacity: 0;
        transition: .35s;
    }

    .feature-box:hover {
        transform: translateY(-6px);
        border-color: #d9ebf8;
        box-shadow: 0 18px 40px rgba(31,45,61,.08);
    }

        .feature-box:hover::before {
            opacity: 1;
        }

/*======================================
        FEATURE ICON
======================================*/

.feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 12px;
    background: linear-gradient( 135deg, rgba(20,199,183,.12), rgba(14,165,233,.12) );
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

    .feature-icon i {
        font-size: 20px;
        color: #14b8a6;
        transition: .35s;
    }

.feature-box:hover .feature-icon {
    background: linear-gradient( 135deg, #14c7b7, #0ea5e9 );
}

    .feature-box:hover .feature-icon i {
        color: #fff;
        transform: scale(1.1);
    }

/*======================================
        FEATURE TEXT
======================================*/

.feature-box span {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #23344d;
    line-height: 1.55;
}

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

.feature-box {
    animation: cardFade .5s ease both;
}

    .feature-box:nth-child(1) {
        animation-delay: .05s;
    }

    .feature-box:nth-child(2) {
        animation-delay: .12s;
    }

    .feature-box:nth-child(3) {
        animation-delay: .18s;
    }

    .feature-box:nth-child(4) {
        animation-delay: .24s;
    }

    .feature-box:nth-child(5) {
        animation-delay: .30s;
    }

    .feature-box:nth-child(6) {
        animation-delay: .36s;
    }

@keyframes cardFade {

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

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

/*======================================
        IMAGE EFFECT
======================================*/

.industry-right {
    position: relative;
}

    .industry-right::after {
        content: "";
        position: absolute;
        width: 320px;
        height: 320px;
        border-radius: 50%;
        background: radial-gradient( rgba(37,99,235,.08), transparent 70% );
        z-index: -1;
    }

 
/*=========================================
        RESPONSIVE - LARGE DESKTOP
=========================================*/

@media (max-width:1400px) {

    .industry-wrapper {
        gap: 40px;
        padding: 40px;
    }

    .inds-content h3 {
        font-size: 38px;
    }

    .industry-right img {
        max-width: 430px;
    }
}

/*=========================================
            TABLET
=========================================*/

@media (max-width:991px) {

    .industry-solutions {
        padding: 70px 0;
    }

    .industry-wrapper {
        flex-direction: column-reverse;
        padding: 35px;
        gap: 35px;
    }

    .industry-left,
    .industry-right {
        width: 100%;
    }

    .industry-right {
        text-align: center;
    }

        .industry-right img {
            max-width: 420px;
            margin: auto;
        }

    .inds-content {
        text-align: center;
    }

        .inds-content p {
            max-width: 100%;
        }

    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .industry_hero_main {
        padding: 100px 20px 0px 20px !important;
    }
    .modules_hero {
        width: 100% !important;
    }
}

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

@media (max-width:768px) {

    .industry-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

        .industry-tabs::-webkit-scrollbar {
            display: none;
        }

    .industry-tab {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

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

@media (max-width:767px) {

    .industry-solutions {
        padding: 60px 0;
    }

    .industry-wrapper {
        padding: 25px;
        border-radius: 20px;
    }

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

    .inds-content h3 {
        font-size: 28px;
        line-height: 1.35;
    }

    .inds-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .btn-industry {
        width: 100%;
        justify-content: center;
        margin-bottom: 28px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-box {
        padding: 16px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

        .feature-icon i {
            font-size: 18px;
        }

    .feature-box span {
        font-size: 14px;
    }
}

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

@media (max-width:480px) {

    .industry-wrapper {
        padding: 20px;
    }

    .industry-tab {
        height: 44px;
        padding: 0 18px;
        font-size: 14px;
    }

        .industry-tab i {
            font-size: 16px;
        }

    .section-title {
        font-size: 28px;
    }

    .inds-content h3 {
        font-size: 24px;
    }

    .inds-content p {
        font-size: 14px;
    }
}

/*=========================================
        IMAGE FLOATING
=========================================*/

.industry-right img {
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/*=========================================
        SMOOTH TRANSITIONS
=========================================*/

.industry-tab,
.feature-box,
.btn-industry,
.industry-right img {
    transition: all .35s ease;
}

/*=========================================
        TAB CONTENT ANIMATION
=========================================*/

.industry-content {
    display: none;
    opacity: 0;
    transform: translateY(15px);
}

    .industry-content.active {
        display: block;
        animation: industryFade .45s ease forwards;
    }

@keyframes industryFade {

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

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

/*=========================================
        ACCESSIBILITY
=========================================*/

.industry-tab:focus {
    outline: none;
}

.btn-industry:focus {
    outline: none;
}
.ind_tabsec {
    background: radial-gradient(circle at top right, rgba(37,99,235,.04), transparent 45%), radial-gradient(circle at bottom left, rgba(20,184,166,.04), transparent 40%), #fff;
}

.industry_hero {
    background: url(../images/industry_hero.png) no-repeat center -2px;
    background-size: 130%;
    width: 700px;
    height: 350px;
    display: block;
}
.industry_hero_main {
    min-height: 60vh;
    padding: 80px 0 0px 80px;
    background: linear-gradient( 135deg, #34578A, #284B7B );
}
.industry_hero_main .hero-sub {
    margin-bottom:0;
    color:#fff;
}
.industry_hero_main h1.hero-title{
    color:#fff;
}
.industry_hero_main h1.hero-title span{
    color:#FFD66E;
}


.service_tabs {
    justify-content: center;
}


/*==================================================
    SERVICES EXPLORER
==================================================*/

.services-explorer-section {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

    .services-explorer-section .container {
        max-width: 1280px;
    }


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

.section-header {
    max-width: 760px;
    margin: 0 auto 60px;
}

.section-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-2);
}


/*==================================================
    CATEGORY NAVIGATION
==================================================*/

.services-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 70px;
}

.service-tab {
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 16px;
    background: #fff;
    color: #64748b;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid rgba(var(--accent-rgb),.08);
    transition: .35s;
    box-shadow: 0 8px 22px rgba(15,23,42,.05);
}

    .service-tab i {
        font-size: 18px;
    }

    .service-tab:hover {
        transform: translateY(-3px);
        color: var(--accent);
        border-color: rgba(var(--accent-rgb),.25);
        box-shadow: 0 18px 40px rgba(var(--accent-rgb),.12);
    }

    .service-tab.active {
        background: linear-gradient(135deg,var(--accent),var(--accent2));
        color: #fff;
        border-color: transparent;
        box-shadow: 0 20px 45px rgba(var(--accent-rgb),.25);
    }


/*==================================================
    CONTENT
==================================================*/

.service-display {
    display: grid;
    align-items: center;
}



/*==================================================
    IMAGE
==================================================*/

.service-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--accent-rgb),.16), transparent 70%);
    filter: blur(40px);
    animation: serviceGlow 6s ease-in-out infinite;
}

#serviceImage {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 2;
    animation: serviceFloat 8s ease-in-out infinite;
}



/*==================================================
    CONTENT
==================================================*/

.service-badge {
    display: inline-flex;
    padding: 7px 16px;
    border-radius: 50px;
    background: rgba(var(--accent-rgb),.08);
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .08em;
    margin-bottom: 20px;
}

.service-title-row h3 {
    font-size: 46px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1;
}

.service-title-row p {
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 0;
}
.service-title-row h3 span {
    color: #0ea5a8;
    font-weight: 400;
    font-size: 0.9em;
   
}


/*==================================================
    FEATURE GRID
==================================================*/

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-bottom: 45px;
}

.service-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    padding: 22px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(var(--accent-rgb),.08);
    transition: .35s;
    box-shadow: 0 12px 28px rgba(15,23,42,.05);
}

    .service-card:hover {
        transform: translateY(-6px);
        border-color: rgba(var(--accent-rgb),.25);
        box-shadow: 0 24px 50px rgba(var(--accent-rgb),.15);
    }

.service-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(var(--accent-rgb),.08);
    color: var(--accent);
    font-size: 26px;
    transition: .35s;
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.08);
    background: var(--accent);
    color: #fff;
}

.service-card h5 {
    font-size: 19px;
    color: #1e293b;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}



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

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg,var(--accent),var(--accent2));
    transition: .35s;
    box-shadow: 0 18px 40px rgba(var(--accent-rgb),.20);
}

    .btn-service:hover {
        transform: translateY(-4px);
        color: #fff;
        box-shadow: 0 28px 55px rgba(var(--accent-rgb),.28);
    }

    .btn-service i {
        transition: .35s;
    }

    .btn-service:hover i {
        transform: translateX(5px);
    }



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

@keyframes serviceFloat {

    50% {
        transform: translateY(-14px);
    }
}

@keyframes serviceGlow {

    50% {
        transform: scale(1.08);
        opacity: .8;
    }
}



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

@media(max-width:1100px) {

    .service-display {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-image-wrap {
        order: 1;
    }

    .service-content {
        order: 2;
    }
}



@media(max-width:768px) {

    .services-nav {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow: auto;
        padding-bottom: 10px;
    }

        .services-nav::-webkit-scrollbar {
            display: none;
        }

    .service-tab {
        flex: 0 0 auto;
    }

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

    .service-title-row h3 {
        font-size: 34px;
    }
}

.service-title-row {
text-align:center;
}
.service-content {
    margin-top: 20px;
}
.serv_sales {
    background: url(../images/services/sales.webp) no-repeat center center;
    background-size: contain;
    width: 500px;
    height: 500px;
    display: block;
}
.serv_finance {
    background: url(../images/services/finance.webp) no-repeat center center;
    background-size: contain;
    width: 500px;
    height: 500px;
    display: block;
}
.serv_inventory {
    background: url(../images/services/inventory.webp) no-repeat center center;
    background-size: contain;
    width: 650px;
    height: 500px;
    display: block;
}
.serv_hr {
    background: url(../images/services/hr.webp) no-repeat center center;
    background-size: contain;
    width: 750px;
    height: 500px;
    display: block;
}
.serv_marketing {
    background: url(../images/services/marketing2.webp) no-repeat center center;
    background-size: contain;
    width: 750px;
    height: 500px;
    display: block;
}
.serv_services {
    background: url(../images/services/Services.webp) no-repeat center center;
    background-size: contain;
    width: 750px;
    height: 500px;
    display: block;
}
.serv_productivity {
    background: url(../images/services/productivity.webp) no-repeat center center;
    background-size: contain;
    width: 750px;
    height: 500px;
    display: block;
}
.serv_customization {
    background: url(../images/services/customization.webp) no-repeat center center;
    background-size: contain;
    width: 750px;
    height: 500px;
    display: block;
}

.services_hero_main {
    min-height: 60vh;
    padding: 80px 0 0px 80px;
    background: #1174B5;
}
.services_hero {
    background: url(../images/services_hero.png) no-repeat center -40px;
    background-size: cover;
    width: 700px;
    height: 350px;
    display: block;
}
.services_hero_main .hero-sub {
    margin-bottom: 0;
    color: #fff;
}
.services_hero_main h1.hero-title {
    color: #fff;
}
    .services_hero_main h1.hero-title span {
        color: #FFD66E;
    }
.contact_hero {
    background: url(../images/contact_hero.webp) no-repeat center -40px;
    background-size: cover;
    width: 700px;
    height: 350px;
    display: block;
}
.contact_hero_main {
    min-height: 60vh;
    padding: 80px 0 0px 80px;
    background: #d4d4d4;
}
    .contact_hero_main .hero-sub {
        margin-bottom: 0;
        color: #4e4e4e;
    }

    .contact_hero_main h1.hero-title {
        color: #1f2d3d;
    }

        .contact_hero_main h1.hero-title span {
            color: #0ea5a8;
        }


.contact_hero_main.hero::after, .contact_hero_main.hero::before{
    background:none !important;
}


@media(max-width:768px) {
    .serv_sales {
        width: 100%;
    }

    .serv_finance {
        width: 100%;
    }

    .serv_inventory {
        width: 100%;
    }

    .serv_hr {
        width: 100%;
    }
}