/* Diagram Styles */

@media (min-width: 1120px) {
    #videoModal .modal-dialog {
        max-width: 987px;
    }
}


@media (min-width: 992px) {
    .col2 .cards-grid {

        grid-template-columns: 1fr 1fr;
    }
}

p.subtitle {
    padding-top: 12px;
}

.devops-block-28 .card>.list .list-item>.icon {
    color: var(--primary-color);

}

.devops-block-9 .card-footer .icon {
    margin-right: 12px;
    color: var(--primary-color);
}

.devops-block-9 .card-body>.list .list-item .icon {
    background-color: unset;
}


.diagram { 
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
    width: 100%;
}

@media (min-width: 992px) {

    .diagram {
        width: auto;
    }
}

.integration-section {
    background: linear-gradient(359deg, #121926 34.45%, #364152 113.39%);
    border-radius: 30px;
    padding: 40px;
}

.implementation-tree * {
    color: #ffffff;
}

.diagram-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flow-item {
    position: relative;
}

.flow-box {
    background-color: #F5F9EE;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    color: #4A4A4A;
    font-weight: 500;
}

.flow-row {
    display: flex;
    gap: 20px;
    justify-content: space-between;
        flex-wrap: wrap;
}

.flow-box-wide {
    width: 100%;
}

.flow-box-narrow {
    flex: 1;
}

.arrow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8CB94C;
    font-size: 20px;
}

.source-box {
    background-color: #F5F9EE;
}

.layer-box {
    background-color: #E5EFDA;
}

.mcp-box {
    background-color: #D5E3C1;
}

.server-box {
    background-color: #C6D8AD;
}

.result-box {
    background-color: #8CB94C;
    color: white;
}

/* Feature Cards Styles */
#example .feature-cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-direction: column;
}

@media screen and (min-width: 768px) {
    #example .feature-cards {
        flex-direction: row;
    }

}
#example .feature-card {
    flex: 1;
        background-color: #ffffff;    border-radius: 8px;
    padding: 20px;
    border-top: 3px solid #8CB94C;
}

#example .feature-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #4A4A4A;
    font-weight: 600;
}

/* Examples Section Styles */ 
.examples-section {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.example-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.example-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 185, 76, 0.5);
    transform: translateY(-2px);
}

.example-header {
    margin-bottom: 1rem;
}

.example-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8CB94C;
    margin-bottom: 0;
    line-height: 1.3;
}

.example-content {
    color: #ffffff;
}

.example-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.example-result {
     
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
    color: #8CB94C;
}

.example-result strong {
    color: #ffffff;
}


.integration-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.implementation-tree {

    padding: 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-top: auto;
    color: #166534;
}

.tree-root {
    list-style-type: none;
    padding-left: 0;
}

.tree-root ul {
    list-style-type: none;
    padding-left: 20px;
}

.tree-node {
    display: block;
    font-weight: 600;
    color: #1a3423;
    margin: 10px 0;
    position: relative;
}

.tree-node::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    width: 15px;
    height: 1px;
    background: #cfcfcf;
}

.tree-leaf {
    display: block;
    color: #3f3e3e;
    margin: 8px 0;
    position: relative;
}

.tree-leaf::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    width: 15px;
    height: 1px;
    background: #cfcfcf;
}

#example .implementation-tree li {
    position: relative;
}

#example .implementation-tree li::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #cfcfcf;
}

#example .implementation-tree li:last-child::before {
    height: 50%;
}

/* Video Modal Styles */

.hero .video-container {
    text-align: center;
}

.hero .play-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    background-color: #5E941E;
    /* A nice blue, or use the dark green from the image */
    border: 2px solid #ccc;
    /* A border color, or a darker shade of the background color */
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.hero .play-button:hover {
    background-color: #7CB932;
    transform: scale(1.05);
}

.hero .play-button::before {
    content: '▶';
    /* Play icon */
    margin-right: 10px;
}

#videoModal .modal-content {
    background-color: transparent;
    border: none;
}

#videoModal .modal-header {
    border-bottom: none;
    padding: 1rem 1rem 0 1rem;
}

#videoModal .btn-close {
    filter: invert(1) grayscale(1) brightness(2);
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2000;
}

/* Адаптивный видеоплеер */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}



@media (min-width: 769px) {
    .landing-form-modal {
        z-index: 1500;
    }
}

@media (min-width: 992px) {
    .devops-block-2 .numbers-grid {
        width: 50%;
    }
}

.devops-block-17 .testimonial-card-inner {
    width: unset !important;
}

.justify-content-evenly {
    justify-content: space-evenly;
}

.r-sdh {
    border-radius: 30px !important;
}

.bg-grd {
    background-image: linear-gradient(115deg, #e4fa9d 6.07%, #d3ec87 13.05%, #c0dc6e 23.24%, #b4d25e 32.48%, #b0cf59 39.85%, #a5c958 52.83%, #89b855 75.38%, #6da852 93.57%);
}

/* MCP Components & Data Flow Styles */
.component-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: white;
    margin-bottom: 1rem;
}

.component-header {
    background-color: #f5f5f5;
    padding: 0.75rem 1rem;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 8px 8px 0 0;
}

.component-body {
    padding: 1rem;
}

.flow-container {
    position: relative;
    padding-left: 30px;
}

.flow-container::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #3949ab;
}

.flow-step {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.flow-step::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0;
    width: 30px;
    height: 30px;
    background-color: #5e941e;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.flow-step:nth-child(1)::before {
    content: '1';
}

.flow-step:nth-child(2)::before {
    content: '2';
}

.flow-step:nth-child(3)::before {
    content: '3';
}

.flow-step:nth-child(4)::before {
    content: '4';
}

.flow-step:nth-child(5)::before {
    content: '5';
}

.flow-step-title {
    font-weight: 600;
    color: #3949ab;
    margin-bottom: 0.5rem;
}

.code-container {
    border-radius: 8px;
    overflow: hidden;
    margin: 1rem 0;
    border: 1px solid #e0e0e0;
}

.code-header {
    background-color: #3949ab;
    color: white;
    padding: 0.75rem 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.code-type {
    font-size: 0.875rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: 4px;
}

.code-body {
    background-color: #f8f9fa;
    overflow-x: auto;
}

.code-body pre {
    margin: 0;
    padding: 1rem;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    line-height: 1.4;
}

.text-gray-600 {
    color: #6b7280;
}

/* New styles for the 4-accordion design */
.section-content {
    padding: 2rem;
}

.list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
        column-gap: 8px;
}

.list-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    color: #4a7c59;
}

.detail-section {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1.25rem;
    margin-top: 1rem;
}

.detail-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #4a7c59;
}

.detail-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #6b7280;
}

.detail-list li {
    margin-bottom: 0.5rem;
}

.flow-step {
    display: flex;
    margin-bottom: 1.5rem;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #4a7c59;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #4a7c59;
}

.code-block {
    background-color: #f7fafc;
    border-radius: 6px;
    padding: 1.25rem;
    margin: 1rem 0;
    font-family: 'Fira Code', Consolas, monospace;
    font-size: 0.875rem;
    overflow-x: auto;
    border: 1px solid #e2e8f0;
}

.code-block pre {
    margin: 0;
    padding: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: 1.4;
}

.font-semibold {
    font-weight: 600;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.text-gray-600 {
    color: #6b7280;
}

/* New Div-based Comparison Styles */
#compareAccordion .comparison-container {
    max-width: 900px;
    margin: 0 auto;

    border: 1px solid #e5e7eb;
    border-radius: 30px;
}

#compareAccordion .comparison-header {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 1rem;
}

#compareAccordion .feature-header {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
    margin: 0 0.5rem 0.5rem 0;
    text-align: center;
    font-weight: bold;
}

#compareAccordion .mcp-header,
#compareAccordion .rag-header {
    flex: 2;
    min-width: 300px;
    padding: 1rem;
    margin: 0 0.5rem 0.5rem 0;
}

#compareAccordion .tech-header {
    text-align: center;
}

#compareAccordion .tech-header strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

#compareAccordion .tech-header .text-muted {
    font-size: 0.9rem;
    color: #6b7280;
}

#compareAccordion .comparison-item {
    border: 1px solid #e5e7eb;
    overflow: hidden;
    background: white;

}

#compareAccordion .feature-title {
    background: #f3f4f6;
    padding: 1rem;
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
}

#compareAccordion .comparison-content {
    display: flex;
    flex-wrap: wrap;
}

#compareAccordion .mcp-section,
#compareAccordion .rag-section {
    flex: 1;
    min-width: 300px;
    padding: 1.5rem;
    border-right: 1px solid #e5e7eb;
}

#compareAccordion .rag-section {
    border-right: none;
}

#compareAccordion .mcp-section p,
#compareAccordion .rag-section p {
    margin: 0;
    line-height: 1.6;
    color: #374151;
}

#compareAccordion .mcp-section ul,
#compareAccordion .rag-section ul {
    margin: 0;
    padding-left: 1.5rem;
    line-height: 1.6;
    color: #374151;
}

#compareAccordion .mcp-section li,
#compareAccordion .rag-section li {
    margin-bottom: 0.5rem;
}

/* Mobile Styles for Div-based Comparison */
@media (max-width: 768px) {
    #compareAccordion .comparison-header {
        flex-direction: column;
    }

    #compareAccordion .feature-header,
    #compareAccordion .mcp-header,
    #compareAccordion .rag-header {
        flex: none;
        width: 100%;
        margin: 0 0 1rem 0;
    }

    #compareAccordion .comparison-content {
        flex-direction: column;
    }

    #compareAccordion .mcp-section,
    #compareAccordion .rag-section {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: 1rem;
    }

    #compareAccordion .rag-section {
        border-bottom: none;
    }

    #compareAccordion .feature-title {
        font-size: 1rem;
        padding: 0.75rem;
    }

    #compareAccordion .mcp-section p,
    #compareAccordion .rag-section p {
        font-size: 0.9rem;
    }

    #compareAccordion .mcp-section ul,
    #compareAccordion .rag-section ul {
        font-size: 0.9rem;
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    #compareAccordion .comparison-item {
        margin-bottom: 1rem;
    }

    #compareAccordion .mcp-section,
    #compareAccordion .rag-section {
        padding: 0.75rem;
    }

    #compareAccordion .feature-title {
        font-size: 0.9rem;
        padding: 0.5rem;
    }
}


/* mycss */

.tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: #f3f4f6;
    border-radius: 30px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
}

.hardware-tag {
    background-color: #e4e8ef;
    color: #030303;
}

.software-tag {
    background-color: #f0f9eb;

    color: #445c2e;
}


.devops-block-19 .cards-grid {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

@media (min-width: 992px) {


    .devops-block-19 .cards-grid {
        display: grid;
        gap: 32px;
        grid-template-columns: 1fr 1fr 1fr;
    }


}

.devops-block-19 .card:hover {
    background-color: transparent;
    background-image: linear-gradient(115deg, #e4fa9d 6.07%, #d3ec87 13.05%, #c0dc6e 23.24%, #b4d25e 32.48%, #b0cf59 39.85%, #a5c958 52.83%, #89b855 75.38%, #6da852 93.57%);
}


.devops-block-19 .card-header {
    background-color: transparent;
    border: none;
}

.devops-block-19 .card-header .title {
    margin: 0;
    font-size: 21px;
    letter-spacing: .029px;
    font-weight: 600;
    line-height: 1.5;
    font-family: "Plus Jakarta Sans", "Work Sans", Arial, Helvetica, sans-serif;
    color: #121926;
}
 

.card-list-item .icon-hover {
    flex-shrink: 0;
    font-size: 24px;
    color: var(--primary-color);
}

.devops-block-19 .card:hover .icon svg * {
    stroke: #ffffff;
}
.sub-title { 
    color: #508214;
font-size: 28px;
    padding: 30px 0;
    font-weight: 600;
    font-family: "Plus Jakarta Sans", "Work Sans", Arial, Helvetica, sans-serif;
    background: linear-gradient(90deg, var(--text-gradient-color-start) 0, var(--text-gradient-color-stop) 100%);
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}


#mcp-architecture a.accordion-link {
    text-decoration: none;
    color: unset;
}

#security .card-header {
    display: flex;
    flex-direction: row;
}

.icon-container {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

#security .icon-container svg {
    fill: #7cb932;
}

.implementation-tree * {
    color: white;
}

.dark-block svg * {
    stroke: white !important;
}

/* Prefixed classes for accordion content */
#accordion-mcp .list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

#accordion-mcp .list-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    color: var(--primary);
}

#accordion-mcp .code-block {
    background-color: #121926;
    color: wheat;
    border-radius: 6px;
    padding: 1.25rem;
    margin: 1rem 0;
    font-family: 'Fira Code', Consolas, monospace;
    font-size: 0.875rem;
    overflow-x: auto;
    border: 1px solid #e2e8f0;
}

#accordion-mcp .detail-section {
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    padding: 1.25rem;
    margin-top: 1rem;
}

#accordion-mcp .detail-title {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--primary-dark);
}

#accordion-mcp .detail-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: var(--text-light);
}

#accordion-mcp .detail-list li {
    margin-bottom: 0.5rem;
}

#accordion-mcp .flow-step {
    display: flex;
    margin-bottom: 1.5rem;
}

#accordion-mcp .step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

#accordion-mcp .step-content {
    flex: 1;
}

#accordion-mcp .step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

#accordion-mcp .nested-list {
    list-style-type: circle;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

#accordion-mcp .nested-list li {
    margin-bottom: 0.25rem;
    color: var(--text-light);
}

/* infographic  */

.commercial-infographic {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b7d 100%);
    border-radius: 12px;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.value-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.value-card {
    padding: 2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: #4a7c59;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.1);
}

.advantage-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.advantage-item {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.advantage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.advantage-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4a7c59;
}

/* def */

.devops-block-1 .image {
    grid-row-start: 2;
}

.devops-block-1 .fit {
    grid-column: 1 / -1;
}

@media (min-width: 992px) {
    .devops-block-1 {
        grid-template-columns: 1fr 50%;
    }
}

.bg-gr {
    background: #e7ecf1;
    border-radius: 30px;
    border: 1px solid #e3e8ef;
}

.mcp-section:before {
    content: "MCP";
    display: block;
    color: #508214;
}

.rag-section:before {
    content: "RAG";
    display: block;
    color: #508214;
}


/* partners blokk */

.landing-partner-list-item .icon {
    background-color: #dbeda8
}

.landing-partner {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.landing-partner-header {
    text-align: center
}

.landing-partner-header .title {
    margin-bottom: 16px;
    font: 700 32px/70px 'Plus Jakarta Sans', 'Work Sans', Arial, Helvetica, sans-serif
}

.landing-partner-header .subtitle {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    color: #4b5565
}

.landing-partner-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.landing-partner-list-item {
    flex-grow: 1;
    padding: 20px;
    border-radius: 32px;
    text-align: center;
    background-color: #fff
}

.landing-partner-list-item .icon {
    margin-bottom: 30px;
    display: inline-flex;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background-color: #f8fafc;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #202939;
    transition: .3s
}

.landing-partner-list-item .title {
    margin-bottom: 12px;
    font: 600 24px/32px 'Plus Jakarta Sans', 'Work Sans', Arial, Helvetica, sans-serif;
    color: #202939
}

.landing-partner-list-item .subtitle {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    color: #364152
}

@media (min-width:1120px) {
    .landing-partner-header .title {
        font-size: 60px
    }

    .landing-partner-header .subtitle {
        font-size: 20px
    }

    .landing-partner-list {
        flex-direction: row;
        gap: 32px
    }

    .landing-partner-list-item {
        flex: 100%;
        padding: 50px 36px
    }
}


.landing-list-item-bg {
    flex: 1;
    display: flex;
    padding: 1px;
    background: #e3e8ef;
    border-radius: 32px;
    transition: background .3s
}

.landing-list-item-bg.lighter {
    background: #f8fafc
}

.landing-list-item-bg:hover {
    background: linear-gradient(115.02deg, #e4fa9d 6.07%, #d3ec87 13.05%, #c0dc6e 23.24%, #b4d25e 32.48%, #b0cf59 39.85%, #a5c958 52.83%, #89b855 75.38%, #6da852 93.57%)
}

.landing-list-item-bg:hover .landing-partner-list-item .icon {
    background-color: #dbeda8
}

.landing-partner {
    display: flex;
    flex-direction: column;
    gap: 40px
}

.landing-partner-header {
    text-align: center
}

.landing-partner-header .title {
    margin-bottom: 16px;
    font: 700 32px/70px 'Plus Jakarta Sans', 'Work Sans', Arial, Helvetica, sans-serif
}

.landing-partner-header .subtitle {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    color: #4b5565
}

.landing-partner-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.landing-partner-list-item {
    flex-grow: 1;
    padding: 20px;
    border-radius: 32px;
    text-align: center;
    background-color: #fff
}

.landing-partner-list-item .icon {
    margin-bottom: 30px;
    display: inline-flex;
    width: 72px;
    height: 72px;
    border-radius: 8px;
    background-color: #f8fafc;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #202939;
    transition: .3s
}

.landing-partner-list-item .title {
    margin-bottom: 12px;
    font: 600 24px/32px 'Plus Jakarta Sans', 'Work Sans', Arial, Helvetica, sans-serif;
    color: #202939
}

.landing-partner-list-item .subtitle {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    color: #364152
}

@media (min-width:1120px) {
    .landing-partner-header .title {
        font-size: 60px
    }

    .landing-partner-header .subtitle {
        font-size: 20px
    }

    .landing-partner-list {
        flex-direction: row;
        gap: 32px
    }

    .landing-partner-list-item {
        flex: 100%;
        padding: 50px 36px
    }
}

/* end partners blokk */

.arc-img {
    width: calc(100% + 40px);
    border-radius: 30px 30px 0 0 !important;
    margin-left: -20px;
    margin-top: -20px;
}

@media (min-width: 992px) {
    .arc-img {
        width: calc(100% + 60px);
        margin-left: -30px;
        margin-top: -30px;
    }
}

.tech-list {
    display: flex;
    flex-direction: column;

}

.tech-item {
    padding: 6px 12px;
    font-size: 0.9rem;
    text-align: center;
}

.devops-block-6 .nav-tabs-wrapper {
    background: unset;
}

.devops-block-6 .nav-tabs {
    background: #f8fafc;
}

.detailed {
    display: none;
} 

    #security .extended-grid {
        display:grid;
        gap:18px;
        grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
        margin-top:10px;
    }
    #security .ext-block {background:#f8fafb; border:1px solid #e2e8f0; border-radius:12px; padding:16px;}
    #security .ext-title {font-size:.95rem; font-weight:600; margin:0 0 6px;}
    #security .accordion-button {font-weight:600;} 



/* 
                                .metric-item {
                                    border-radius: 40px !important;
                                    width: 100%;
                                    background: #f8fafc;
                                    border-radius: 12px;
                                    border: 1px solid #e3e8ef;
                                }

                                .metric-title {
                                    font-weight: 600;
                                    color: #00222a !important;
                                }

                                .metric-description {
                                    color: #6b7280;
                                    line-height: 1.6;
                                } */

                                .carousel-indicators [data-bs-target] {
                                    background-color: #508214;
                                }
                            .text-center.fw-bold.fs-5.my-3 {
    background: #121926;
    max-width: max-content;
    margin: auto;
    color: white;
    border-radius: 30px;
    padding: 8px 25px;
} 

    #players .arrow-svg {
            width: 2.5rem;
            height: 2.5rem;
        }

       #players .flow-box {
            min-width: 280px;
			max-width:600px;     padding: 0;
        }
        .rounded-sdh {
    border-radius: 8px;
}


        /* --- Main container for the new design --- */
        .benefits-outer-container {
            background-color: #1E2A3A; /* Dark Slate Blue */
            border-radius: 2rem;
            padding: 3rem;
        }

        /* --- Custom Carousel Styles (inner white box) --- */
        .benefits-carousel-container {
        
        color: white;
        padding: 0.5rem 0;
        border-top: solid 1px #ccc;
        }

        @media (min-width: 992px) {
            .benefits-carousel-container {
                padding: 2.5rem 0; 
                border-top:none;
                border-left: solid 1px #ccc;
            }
            
        } 

        .benefits-carousel .carousel-inner {
            min-height: 190px; /* Prevent layout shift */
            display: flex;
            align-items: center;
        }

        /* Industry Carousel Styles */
        .industry-carousel-container {
            margin-top: 1rem;
        }

        .industry-carousel .carousel-inner {
            min-height: 120px; /* Prevent layout shift for industry carousels */
            display: flex;
            align-items: center;
        }

        .industry-carousel .carousel-item {
            transition: opacity 0.6s ease-in-out;
        }

/*         .industry-carousel .list-item {
            display: flex;
            align-items: flex-start;
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            margin: 0;
        } */

        .industry-carousel .list-item .icon {
            margin-right: 0.75rem;
            flex-shrink: 0;
            color: var(--primary-color);
        }

        .industry-carousel .carousel-indicators {
            margin-bottom: 0;
        }

        .industry-carousel .carousel-indicators button {
            width: 20px;
            height: 4px;
            border-radius: 2px;
            background-color: #dee2e6;
            border: 0;
            margin: 0 3px;
        }

        .industry-carousel .carousel-indicators .active {
            background-color: var(--primary-color);
        }

        /* Card hover effects */
        .devops-block-9 .card {
            transition: all 0.3s ease;
        }

        .devops-block-9 .card:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Optimized Cost Summary Section */
        .cost-summary-container {
            position: relative;
            overflow: hidden;
        }

        .cost-summary-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            z-index: 1;
        }

        .cost-summary-container > .text-center {
            position: relative;
            z-index: 2;
        }

        .cost-range-display {
            transition: all 0.3s ease;
        }

        .cost-range-display:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
        }

        .cost-description .btn {
            transition: all 0.3s ease;
        }

        .cost-description .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        /* Responsive adjustments for cost section */
        @media (max-width: 768px) {
            .cost-summary-container {
                padding: 2rem !important;
            }

            .cost-range-display .display-5 {
                font-size: 2.5rem;
            }

            .cost-description .lead {
                font-size: 1.1rem;
            }
        }

        /* MCP Cost Block Styles */
        .mcp-cost-block {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .cost-info-container {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .cost-option {
            transition: all 0.3s ease;
            height: 100%;
        }

        .cost-option:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        .cost-icon {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(var(--bs-success-rgb), 0.1);
            border-radius: 12px;
        }

        .cost-option:nth-child(2) .cost-icon {
            background: rgba(var(--bs-primary-rgb), 0.1);
        }

        .cost-range {
            margin-top: auto;
            padding-top: 1rem;
        }

        .cost-summary {
            border: 2px solid rgba(var(--bs-warning-rgb), 0.3);
        }

        .cost-range-display {
            padding: 1rem 0;
        }

        .title-accent {
            width: 80px;
            height: 4px;
            background: var(--primary-color);
            margin: 0 auto;
            border-radius: 2px;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .mcp-cost-block .display-6 {
                font-size: 2rem;
            }
            
            .cost-option {
                margin-bottom: 1rem;
            }
        }
        

        /* --- Custom Carousel Indicators --- */
        
        .benefits-carousel .carousel-indicators button {
            width: 25px;
            height: 5px;
            border-radius: 2px;
            background-color: #DBEDA8;
            border: 0;
            margin: 0 5px;
        }

        .benefits-carousel .carousel-indicators .active {
            background-color: #7CB932;
        }

        .cards {
    max-width: 800px;
    margin: auto;
}
   .cards .card {
    background: #f8fafc;
    border: solid 1px #5e941e;
}
 
		.bgsdh-dark{ background-color: #1E2A3A;}
		 .formula-box {
            font-family: 'Courier New', Courier, monospace;
            letter-spacing: 1px;
        }
        .comp-container {
            min-height: 450px;
        }

.notes-sdh {
    border-bottom: solid 4px #5e941e;
    padding: 19px;
    border-radius: 15px;
}

@media screen and (min-width: 768px) {
    .notes-sdh {
        border-bottom: none;
        border-left: solid 4px #5e941e;
        border-right: solid 4px #5e941e;

    }

}
.devops-block-19 .card {
    border: 1px solid #a9c760;
}
        
        #players .scroller-container {
            width: 100%;
            height: 250px; /* Adjusted height */
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
            mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
        } 

        #players .scroller {
            animation: scroll-up 25s linear infinite;
        }

        #players .scroller:hover {
            animation-play-state: paused;
        }

        #players .custom-card {
            background-color: #2b3241;
            border: 1px solid #30363d;
            border-radius: 12px;
            padding: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        
        #players .custom-card h2 {
            font-size: 1.25rem;
            font-weight: 600;
            /* color: #f0f6fc; */
        }

        #players .custom-card p {
            font-size: 0.9rem;
            /* color: #364152; */
            line-height: 1.5;
        }

        #players .custom-card.highlighted {
            border-color: #508214;
            background: linear-gradient(to right, rgb(46 160 67 / 5%), rgb(46 160 67 / 65%));
            /* background: #0c2b7c; */
        }
        
        #players .custom-card.highlighted h2 {
              /* color: #508214; */
        }
        
        #players .flow-card {
            background-color: #121926;
            border: 1px solid #ccc;
            border-radius: 12px;
            padding: 1.5rem;
            height: 100%;
            width: 100%;
            color: white;
            padding-top: 40px;
            background: linear-gradient(359deg, #121926f5 34.45%, #364152 113.39%);
        }

        #players .flow-card .step-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background-color: #7cb932;
            color: #ffffff;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        #players .mcp-solution-fieldset {
            border: 1px solid #a5a5a5;
            border-radius: 8px;
            padding: 1rem 1.5rem 1.5rem 1.5rem;
            /* background-color: #1d2330; */
            /* background: #ffffff; */
        }
        #players .mcp-solution-legend {
            float: none;
            width: auto;
            padding: 0 10px;
            margin-left: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            color: #ffffff;
        }

        #players .details-fieldset {
            border: 1px solid #a5a5a5;
            border-radius: 8px;
            padding: 1rem;
        }
        #players .details-legend {
            float: none;
            width: auto;
            padding: 0 10px;
            margin-left: 10px;
            font-size: 0.9rem;
            font-weight: 600;
            /* color: #508214; */
        }
        #players .details-list {
            list-style-type: none;
            padding-left: 0.5rem;
            margin-bottom: 0;
            font-size: 0.9rem;
            color: #ffffff;
        }
        #players .details-list li {
            margin-bottom: 0.25rem;
            position: relative;
            padding-left: 1.2rem;
        }
        #players .details-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #508214;
        }
        
        #players .animated-arrow {
            transform-origin: center;
            animation: pulse-arrow 2.5s infinite ease-in-out;
        }
        
        #players .info-card {
            background-color: #313847;
            border: 1px solid #30363d;
            border-top: 2px solid #d3d3d3;;
            border-radius: 8px;
            padding: 1rem;
            text-align: left;
        }
        #players .info-card h5 {
            font-size: 1rem;
            font-weight: 600;
            color: #f0f6fc;
            margin-bottom: 0.25rem;
        }
        #players .info-card p {
            font-size: 0.85rem;
            color: #fff;
            margin-bottom: 0;
        }


        @keyframes scroll-up {
            from {
                transform: translateY(0);
            }
            to {
                transform: translateY(-50%);
            }
        }
        
        @keyframes pulse-arrow {
            0% {
                transform: scale(1);
                stroke: #30363d;
            }
            50% {
                transform: scale(1.05);
                stroke: #8b949e;
            }
            100% {
                transform: scale(1);
                stroke: #30363d;
            }
        }

 


 #services .list-item .icon {
    background-color: unset;
    font-size: 24px;
    flex-shrink: 0;
    display: inline-flex
;
    align-items: center;
    justify-content: center;
}



 #services .card .icon {
        color: #7CB932;
 }
#spoiler2, #spoiler1 {
    margin-bottom: auto;
}

  .numeric .icon{
width: 22px !important;
    font-size: 15px !important;
    height: 22px !important;
    color: var(--primary-color);
    border-radius: 100%;
    border: solid 2px var(--primary-color);
}


.gr-box-sdh {
    position: relative;
    align-items: center;
    overflow: hidden;
}

.gr-box-sdh::before {
    content: '';
    position: absolute;
    left: -317px;
    bottom: -313px;
    width: 634px;
    height: 634px;
    border-radius: 634px;
    background: rgba(208, 227, 162, .05);
}

 #services details {
  margin-bottom: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

#services summary {
  cursor: pointer;
  font-weight: bold;
  padding: 12px 14px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
summary::-webkit-details-marker { display: none; }

.chev { transition: transform 0.4s ease; }
#services details[open] summary .chev { transform: rotate(180deg); }

#services .details-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
#services details[open] .details-content { grid-template-rows: 1fr; }
#services .details-content > div {
  overflow: hidden;
  padding: 0 14px 12px;
}


.cost-box{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 16px 22px;
    border-width: 1px;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    border-radius: 43px;
    background-color: #1d1d1f;
    border-color: #1d1d1f;
    color: #fff;
}

 
 .integration-section .ph {
    width: 40px;
    height: 40px;
    font-size: 30px;
}
  @media (min-width: 1024px) {
.integration-section {
    padding: 90px;
}
  }


  .rag .accordion-help-body .image {
    max-width: 100% !important;
    margin: auto;
}

.feature-card.img {
    padding: 0 !important;
}


.feature-card.img img{
    max-width: 100%;
    border-radius: 8px;
}
.feature-cards.col {
    margin-top: 0 !important;
    flex-direction: column !important;
}


