﻿.solutions_hero_main {
    background: linear-gradient(180deg, #0E9F8D 0%, #0A8D7C 100%);
}


:root {
    --primary: #00bcb4;
    --primary-dark: #007b76;
    --secondary: #0f172a;
    --text: #475569;
    --heading: #0f172a;
    --border: #e5e7eb;
    --light: #f8fafc;
    --white: #ffffff;
    --success: #16a34a;
    --shadow-sm: 0 8px 25px rgba(0,0,0,.05);
    --shadow: 0 15px 45px rgba(0,0,0,.08);
    --shadow-lg: 0 30px 70px rgba(37,99,235,.15);
    --radius: 18px;
    --transition: .35s ease;
}




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


.section-tag {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    background: #eff6ff;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}


.section-heading h2 {
    margin-bottom: 18px;
}


.section-heading p {
    max-width: 720px;
    margin: auto;
}

.btn {
    border-radius: 14px;
    padding: 14px 30px;
    font-weight: 600;
    transition: .35s;
}


.btn-primary {
    background: var(--primary);
    border: none;
}


    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: var(--shadow);
    }


.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}


    .btn-outline-primary:hover {
        background: var(--primary);
        color: #fff;
    }

.solutions-hero {
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}


    .solutions-hero::before {
        content: "";
        position: absolute;
        width: 650px;
        height: 650px;
        border-radius: 50%;
        right: -260px;
        top: -180px;
        background: radial-gradient(circle, rgba(37,99,235,.18), transparent 70%);
    }


.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    background: #eff6ff;
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 22px;
}


.solutions-hero h1 {
    margin-bottom: 28px;
}


    .solutions-hero h1 span {
        color: var(--primary);
    }


.solutions-hero p {
    font-size: 18px;
    margin-bottom: 38px;
    max-width: 620px;
}


.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}


.hero-dashboard-sol {
    background: #fff;
    border-radius: 24px;
    padding: 25px;
    box-shadow: var(--shadow-lg);
    transition: .4s;
}


    .hero-dashboard-sol:hover {
        transform: translateY(-10px);
    }

.card-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: .35s;
}


    .card-box:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow);
    }

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


.bg-light {
    background: var(--light) !important;
}


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


.rounded-xl {
    border-radius: 22px;
}


.shadow-soft {
    box-shadow: var(--shadow);
}
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: .8s;
}


    .fade-up.show {
        opacity: 1;
        transform: none;
    }
@media(max-width:992px) {

    h1 {
        font-size: 44px;
    }

    h2 {
        font-size: 34px;
    }

    .solutions-hero {
        text-align: center;
        padding: 80px 0;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-dashboard {
        margin-top: 60px;
    }
}


@media(max-width:768px) {

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    .section-space {
        padding: 70px 0;
    }

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






























/*=====================================================
MODULE EXPLORER
======================================================*/

.module-explorer {
    padding: 60px 0;
    background: #f8fafc;
    position: relative;
}

    .module-explorer::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top right, rgba(37,99,235,.06), transparent 35%);
        pointer-events: none;
    }

/*=========================
SEARCH
=========================*/

.module-search {
    max-width: 650px;
    margin: 0 auto 70px;
    position: relative;
}

    .module-search i {
        position: absolute;
        left: 22px;
        top: 50%;
        transform: translateY(-50%);
        color: #94a3b8;
        font-size: 18px;
    }

    .module-search input {
        width: 100%;
        height: 64px;
        border: none;
        outline: none;
        border-radius: 18px;
        background: #fff;
        box-shadow: 0 15px 40px rgba(15,23,42,.08);
        padding: 0 24px 0 60px;
        font-size: 16px;
        transition: .35s;
    }

        .module-search input:focus {
            box-shadow: 0 20px 50px rgba(37,99,235,.18);
        }
/*=====================================================
MODULE GROUP
======================================================*/

.module-group {
    margin-bottom: 70px;
}

    .module-group h5 {
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: .18em;
        color: #64748b;
        margin-bottom: 28px;
        font-weight: 700;
    }
/*=====================================================
MODULE GRID
======================================================*/

.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(185px,1fr));
    gap: 16px;
}
/*=====================================================
MODULE CARD
======================================================*/

.module-card {
    background: #fff;
    border-radius: 18px;
    padding: 18px 14px;
    text-align: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .35s;
    border: 1px solid transparent;
    box-shadow: 0 8px 20px rgba(15,23,42,.05);
    border: 1px solid #e6edf5;
}
    .module-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, var(--primary), #60a5fa);
        transform: scaleX(0);
        transform-origin: left;
        transition: .35s;
    }
    .module-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(15,23,42,.12);
        border-color: #dbeafe;
    }

        .module-card:hover::before {
            transform: scaleX(1);
        }
    .module-card.active {
        border-color: #bfdbfe;
        background: #eff6ff;
        box-shadow: 0 22px 45px rgba(37,99,235,.18);
    }

        .module-card.active::before {
            transform: scaleX(1);
        }
    .module-card i {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
        border-radius: 20px;
        background: linear-gradient(135deg,#14b8a6,#0ea5e9);
        color: white;
        font-size: 24px;
        transition: .35s;
    }
    .module-card:hover i {
        transform: rotate(-6deg) scale(1.08);
        background: linear-gradient(135deg,#14b8a6,#0ea5e9);
        color: #fff;
    }
    .module-card.active i {
        background: var(--primary);
        color: #fff;
    }
    .module-card h6 {
        margin: 10px 0 4px;
        font-size: 16px;
        font-weight: 700;
    }

    .module-card small {
        display: block;
        color: #64748b;
        font-size: 13px;
        line-height: 1.4;
    }
    .module-card::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(20,184,166,.10);
        top: -120px;
        right: -120px;
        transition: .4s;
    }

    .module-card:hover::after {
        transform: scale(1.3);
    }
.module-card {
    animation: fadeCard .6s ease;
}

@keyframes fadeCard {

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

    to {
        opacity: 1;
        transform: none;
    }
}
.module-card.hide {
    display: none;
}
@media(min-width:1200px) {

    .module-grid {
        grid-template-columns: repeat(4,1fr);
    }
}
@media(max-width:991px) {

    .module-grid {
        grid-template-columns: repeat(3,1fr);
    }
}
@media(max-width:767px) {

    .module-group {
        margin-bottom: 50px;
    }

    .module-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 16px;
    }

    .module-card {
        padding: 20px 14px;
    }

        .module-card i {
            width: 58px;
            height: 58px;
            font-size: 22px;
        }

        .module-card h6 {
            font-size: 16px;
        }
}
@media(max-width:480px) {

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

    .module-search input {
        height: 56px;
    }
}
/*=====================================================
STICKY MODULE RIBBON
======================================================*/
/* Ribbon */

.ribbon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.module-ribbon {
    flex: 1;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

    .module-ribbon::-webkit-scrollbar {
        display: none;
    }


/* Buttons */

.ribbon-module {
    flex: 0 0 auto;
    padding: 7px 18px;
    border: 1px solid #dbe3ec;
    border-radius: 40px;
    background: #fff;
    white-space: nowrap;
    transition: .25s;
    cursor: pointer;
}

    .ribbon-module:hover {
        background: #eff6ff;
        border-color: var(--accent);
        color: var(--accent);
    }

    .ribbon-module.active {
        background: linear-gradient(135deg,#14c7b7,#0ea5e9);
        color: #fff;
    }


/* Arrow */

.ribbon-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #dbe3ec;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: .2s;
}

    .ribbon-arrow:hover {
        background: linear-gradient(135deg,#14c7b7,#0ea5e9);
        color: #fff;
    }

    .ribbon-arrow.disabled {
        opacity: .35;
        pointer-events: none;
    }
.ribbon-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    scrollbar-width: none;
}

    .ribbon-scroll::-webkit-scrollbar {
        display: none;
    }

.module-ribbon {
    display: inline-flex;
    gap: 10px;
    min-width: max-content;
}
.sticky-ribbon {
    position: sticky;
    top: 67px;
    z-index: 99;
    background: #fff;
    padding: 12px 0;
    border-bottom: 1px solid #eef2f7;
}

.ribbon-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ribbon-scroll {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

    .ribbon-scroll::-webkit-scrollbar {
        display: none;
    }

.module-ribbon {
    display: inline-flex; /* IMPORTANT */
    align-items: center;
    gap: 10px;
    min-width: max-content; /* IMPORTANT */
}

.ribbon-module {
    flex: none; /* IMPORTANT */
    white-space: nowrap;
}

.feature-item i {
    font-size: 18px;
    color: var(--accent);
    flex-shrink: 0;
    /*text-shadow: 0 0 0 currentColor, 0.3px 0 0 currentColor, -0.3px 0 0 currentColor;*/
}
/*MODULE DETAILS
======================================================*/
.module-details {
    padding: 50px 0;
    background: #ffffff;
}


.module-details h2 {
    margin-bottom: 22px;
}

.module-details p {
    margin-bottom: 35px;
    max-width: 620px;
}
/*=====================================================
FEATURE LIST
======================================================*/

.feature-list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 16px;
}

    .feature-list div {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 18px;
        background: #f8fafc;
        border-radius: 14px;
        border: 1px solid #eef2f7;
        transition: .3s;
    }

        .feature-list div:hover {
            transform: translateX(5px);
            border-color: #bfdbfe;
            background: #eff6ff;
        }

    .feature-list i {
        color: #16a34a;
        font-size: 18px;
    }
/*=====================================================
DASHBOARD PREVIEW
======================================================*/

.dashboard-preview {
    background: #fff;
    border-radius: 26px;
    padding: 24px;
    box-shadow: 0 30px 60px rgba(15,23,42,.08);
    position: relative;
    overflow: hidden;
}

    .dashboard-preview img {
        border-radius: 16px;
        width: 100%;
        transition: .45s;
    }

    .dashboard-preview:hover img {
        transform: scale(1.02);
    }

    .dashboard-preview::before {
        content: "";
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        top: -120px;
        right: -80px;
        background: rgba(37,99,235,.05);
    }
   

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

.module-changing {
    opacity: 0;
    transform: translateY(20px);
}

.module-loaded {
    opacity: 1;
    transform: none;
    transition: .45s;
}
/*=====================================================
FOOTER
======================================================*/

.solutions-footer {
    padding: 45px 0;
    background: #0f172a;
    color: #cbd5e1;
    text-align: center;
}

    .solutions-footer p {
        margin: 0;
        color: #cbd5e1;
        font-size: 15px;
    }
/*=====================================================
MICRO INTERACTIONS
======================================================*/

.module-card,
.ribbon-module,
.btn,
.dashboard-preview,
.feature-list div {
    transition: all .35s ease;
}

    .module-card:active {
        transform: scale(.98);
    }

    .btn:active {
        transform: scale(.98);
    }
/*=====================================================
SCROLL OFFSET
======================================================*/

html {
    scroll-padding-top: 120px;
}
/*=====================================================
RESPONSIVE
======================================================*/

@media(max-width:992px) {

    .module-details {
        padding: 80px 0;
    }

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

    .dashboard-preview {
        margin-top: 50px;
    }
}
@media(max-width:768px) {

    .module-ribbon {
        top: 68px;
    }

    .ribbon-wrapper {
        padding: 12px 0;
        gap: 8px;
    }

    .ribbon-module {
        padding: 8px 14px;
        font-size: 13px;
    }

    .detail-tag {
        font-size: 12px;
    }

    .module-details h2 {
        font-size: 30px;
    }
}
@media(max-width:576px) {

    .module-details {
        padding: 60px 0;
    }

    .feature-list div {
        font-size: 14px;
        padding: 12px 14px;
    }

    .dashboard-preview {
        padding: 16px;
    }
}
/*=====================================================
LOADER
======================================================*/

.loading {
    animation: pulse .9s infinite;
}

@keyframes pulse {

    0% {
        opacity: .6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: .6;
    }
}

.back-module {
    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;
}

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

    .back-module i {
        font-size: 16px;
        transition: .3s;
    }

    .back-module:hover i {
        transform: translateX(-5px);
    }

.modules_hero {
    background: url(../images/solutions_hero.png) no-repeat center center;
    background-size: cover;
    width: 700px;
    height: 350px;
    display: block;
}
.solution_ttl {
    font-size:40px;
    font-weight:700;
}