.elementor-11724 .elementor-element.elementor-element-95c945b{--display:flex;}.elementor-11724 .elementor-element.elementor-element-e342277{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-9c07773{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-e8b83b1{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-c8a14d3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-df382cb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-ffa4644{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-64a4551{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-81c7557{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-1d70ff9{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-5465737{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-3c30c81{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-a384e40{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-83d0b50{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11724 .elementor-element.elementor-element-59e814c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-d90addc */body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

/* HERO */
.devops-hero {
    background: linear-gradient(135deg, #0f172a, #1e293b, #0f172a);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/* TITLE */
.devops-hero h1 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
}

.devops-hero h1 span {
    color: #f97316;
}

/* SUBTEXT */
.subtitle {
    max-width: 700px;
    margin: 20px auto 40px;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
}

/* FEATURES GRID */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.feature {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 14px 15px;
    border-radius: 10px;
    font-size: 13px;
    text-align: left;
}

/* BUTTONS */
.buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
}

.primary {
    background: #f97316;
    color: #fff;
}

.primary:hover {
    background: #ea580c;
}

.secondary {
    border: 1px solid #64748b;
    color: #cbd5e1;
}

/* STATS BAR */
.stats {
    background: #f1f5f9;
    color: #1f2937;
    border-radius: 12px;
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stats h3 {
    color: #f97316;
    font-size: 20px;
    margin-bottom: 5px;
}

.stats p {
    font-size: 12px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features {
        grid-template-columns: 1fr;
    }

    .buttons {
        flex-direction: column;
    }

    .stats {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7ba42ac */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.problem-section {
    max-width: 1100px;
    margin: auto;
    padding: 70px 20px;
    text-align: center;
}

/* TITLE */
.problem-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

/* SUBTITLE */
.subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

/* GRID */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* CARD */
.problem-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

/* CROSS ICON */
.cross {
    color: #f97316;
    font-size: 18px;
}

/* CARD TEXT */
.problem-card p {
    font-size: 14px;
    color: #374151;
}

/* BOTTOM TITLE */
.bottom-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

/* TEXT */
.bottom-text {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* HIGHLIGHT */
.highlight {
    color: #f97316;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .problem-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e0214b1 */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.promise-section {
    max-width: 1100px;
    margin: auto;
    padding: 70px 20px;
    text-align: center;
}

/* TITLE */
.promise-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 10px;
}

/* SUBTITLE */
.subtitle {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 40px;
}

/* GRID */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

/* CARD */
.promise-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

/* ICON */
.tick {
    color: #f97316;
    font-size: 18px;
}

/* TEXT */
.promise-card p {
    font-size: 14px;
    color: #374151;
}

/* OUTCOME TITLE */
.outcome-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1f2937;
}

/* OUTCOME GRID */
.outcome-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* OUTCOME CARD */
.outcome-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    border: 1px solid #e5e7eb;
}

.outcome-card h4 {
    font-size: 22px;
    color: #f97316;
    margin-bottom: 5px;
}

.outcome-card p {
    font-size: 13px;
    color: #6b7280;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcome-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .promise-grid,
    .outcome-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-e117884 */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.devops-expertise {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.devops-expertise h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.subtitle {
    margin: 10px auto 40px;
    max-width: 700px;
    font-size: 14px;
    color: #6b7280;
}

/* GRID */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.exp-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    text-align: left;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    position: relative;
}

/* TOP LINE */
.top-line {
    height: 3px;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
    background: linear-gradient(to right, #f97316, #3b82f6);
}

/* TITLE */
.exp-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

/* TEXT */
.exp-card p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* LABEL */
.exp-card h5 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #374151;
}

/* TAGS */
.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tags span {
    background: #f1f5f9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: #475569;
}

/* OUTCOME */
.outcome {
    background: #0f172a;
    padding: 15px;
    border-radius: 10px;
}

.outcome span {
    color: #f59e0b;
    font-size: 11px;
    font-weight: 600;
}

.outcome p {
    color: #e5e7eb;
    font-size: 12px;
    margin-top: 5px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-029036e */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.industries-section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.industries-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.subtitle {
    margin: 10px auto 40px;
    font-size: 14px;
    color: #6b7280;
    max-width: 700px;
}

/* GRID */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.industry-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    text-align: left;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    position: relative;
}

/* ICON */
.icon {
    font-size: 22px;
    margin-bottom: 10px;
}

/* TITLE */
.industry-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

/* TEXT */
.industry-card p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* LINE */
.line {
    width: 40px;
    height: 3px;
    border-radius: 5px;
    background: linear-gradient(to right, #f97316, #3b82f6);
}

/* OUTCOME BAR */
.outcome-bar {
    margin-top: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 18px 30px;
    border-radius: 40px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    font-size: 14px;
    color: #374151;
}

.outcome-icon {
    font-size: 16px;
}

.outcome-text strong {
    color: #6b7280;
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .industries-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1465803 */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.process-section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.process-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.subtitle {
    margin: 10px auto 40px;
    font-size: 14px;
    color: #6b7280;
}

/* GRID */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.process-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    text-align: left;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
    position: relative;
}

/* TOP DOT */
.dot {
    width: 6px;
    height: 6px;
    background: #f97316;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    right: 15px;
}

/* STEP */
.process-card h5 {
    color: #f97316;
    font-size: 12px;
    margin-bottom: 5px;
    font-weight: 600;
}

/* TITLE */
.process-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 10px;
}

/* TEXT */
.process-card p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* DIVIDER */
.process-card hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 15px 0;
}

/* BOTTOM TEXT */
.bottom {
    font-size: 13px;
    color: #374151;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cc9fa27 */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.engagement-section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.engagement-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.subtitle {
    margin: 10px auto 40px;
    font-size: 14px;
    color: #6b7280;
}

/* GRID */
.eng-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.eng-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    text-align: left;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

/* TOP LINE */
.top-line {
    width: 40px;
    height: 3px;
    margin-bottom: 12px;
    border-radius: 5px;
    background: linear-gradient(to right, #f97316, #3b82f6);
}

/* TITLE */
.eng-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 12px;
}

/* LABEL */
.eng-card h5 {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    margin-top: 10px;
}

/* TEXT */
.eng-card p {
    font-size: 13px;
    color: #374151;
    margin-top: 4px;
}

/* DIVIDER */
.eng-card hr {
    border: none;
    height: 1px;
    background: #e5e7eb;
    margin: 15px 0;
}

/* OUTCOME COLOR */
.eng-card .out {
    color: #f97316;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .eng-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .eng-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-9943bea */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.why-devops {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

/* TITLE */
.why-devops h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

/* SUBTITLE */
.subtitle {
    margin: 10px auto 40px;
    font-size: 14px;
    color: #6b7280;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.why-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

/* TOP GRADIENT LINE */
.top-line {
    width: 40px;
    height: 3px;
    margin: 0 auto 15px;
    border-radius: 5px;
    background: linear-gradient(to right, #f97316, #3b82f6);
}

/* TEXT */
.why-card p {
    font-size: 14px;
    color: #374151;
}

/* BOTTOM PILL */
.bottom-pill {
    margin-top: 50px;
    display: inline-block;
    padding: 16px 30px;
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    font-size: 14px;
    color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-cc048f1 */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.compare-section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.compare-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.subtitle {
    margin: 10px auto 40px;
    font-size: 14px;
    color: #6b7280;
}

/* TABLE WRAPPER */
.table-wrapper {
    overflow-x: auto;
}

/* TABLE */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

/* HEADER */
.compare-table thead th {
    background: #f1f5f9;
    font-size: 13px;
    padding: 14px;
    text-align: left;
    color: #374151;
}

/* HIGHLIGHT HEADER */
.highlight-head {
    background: #0f172a !important;
    color: #ffffff !important;
}

/* ROWS */
.compare-table td {
    padding: 14px;
    font-size: 13px;
    color: #374151;
    border-top: 1px solid #e5e7eb;
}

/* LAST COLUMN */
.compare-table td.highlight {
    background: #fef3e7;
    color: #f97316;
    font-weight: 600;
}

/* BOTTOM GRADIENT LINE */
.compare-table tbody tr:last-child td {
    border-bottom: 3px solid;
    border-image: linear-gradient(to right, #f97316, #3b82f6) 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .compare-table th,
    .compare-table td {
        font-size: 12px;
        padding: 10px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7ac75c1 */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.security-section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.security-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
}

.subtitle {
    margin: 10px auto 40px;
    font-size: 14px;
    color: #6b7280;
}

/* GRID */
.security-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.security-card {
    background: #ffffff;
    padding: 25px 18px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 6px 14px rgba(0,0,0,0.05);
}

/* ICON */
.icon {
    font-size: 22px;
    margin-bottom: 10px;
}

/* TEXT */
.security-card p {
    font-size: 13px;
    color: #374151;
    margin-bottom: 15px;
}

/* GRADIENT LINE */
.line {
    width: 40px;
    height: 3px;
    margin: auto;
    border-radius: 5px;
    background: linear-gradient(to right, #f97316, #3b82f6);
}

/* BOTTOM PILL */
.bottom-pill {
    margin-top: 50px;
    display: inline-block;
    padding: 16px 30px;
    background: #ffffff;
    border-radius: 40px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.06);
    font-size: 14px;
    color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .security-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ae4b648 */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.testimonial-section {
    max-width: 1100px;
    margin: auto;
    padding: 60px 20px;
    text-align: center;
}

.testimonial-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

/* GRID */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.testimonial-card {
    position: relative;
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 14px;
    text-align: left;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

/* QUOTE ICON */
.quote {
    position: absolute;
    top: -12px;
    left: 20px;
    width: 32px;
    height: 32px;
    background: #0f172a;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MESSAGE */
.message {
    font-size: 14px;
    color: #374151;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* FOOTER */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer strong {
    display: block;
    font-size: 13px;
    color: #111827;
}

.footer span {
    font-size: 12px;
    color: #6b7280;
}

/* GRADIENT LINE */
.line {
    width: 35px;
    height: 3px;
    border-radius: 5px;
    background: linear-gradient(to right, #f97316, #3b82f6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-441ffaf */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.case-study {
    max-width: 1100px;
    margin: auto;
    padding: 70px 20px;
}

/* TITLE */
.case-study h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 50px;
}

/* CONTENT */
.case-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 60px;
}

/* ITEM */
.case-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

/* DOT */
.dot {
    width: 10px;
    height: 10px;
    background: #f97316;
    border-radius: 50%;
    margin-top: 6px;
}

/* LABEL */
.case-item h5 {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

/* TEXT */
.case-item p {
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

/* RESULTS TITLE */
.results-title {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1f2937;
}

/* GRID */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.result-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

/* NUMBERS */
.result-card h2 {
    font-size: 32px;
    color: #f97316;
    margin-bottom: 10px;
}

/* TEXT */
.result-card p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* LINE */
.line {
    width: 40px;
    height: 3px;
    margin: auto;
    border-radius: 5px;
    background: linear-gradient(to right, #f97316, #3b82f6);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-06db336 */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.faq-section {
    max-width: 900px;
    margin: auto;
    padding: 60px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 40px;
}

/* CONTAINER */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* CARD */
.faq-item {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.05);
    border-top: 3px solid #e5e7eb;
}

/* QUESTION */
.faq-question {
    padding: 18px 20px;
    font-size: 15px;
    color: #111827;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ICON */
.icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #6b7280;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-19cf1ed */body {
    font-family: "Segoe UI", sans-serif;
    background: #f3f4f6;
}

/* SECTION */
.why-section {
    max-width: 900px;
    margin: auto;
    padding: 70px 20px;
    text-align: center;
}

/* TITLE */
.why-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
}

/* TEXT */
.desc {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* PILL */
.highlight-pill {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 14px 25px;
    border-radius: 40px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    font-size: 14px;
    color: #374151;
}

/* DOT */
.highlight-pill .dot {
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-1042f52 */body {
    margin: 0;
    font-family: "Segoe UI", sans-serif;
}

/* SECTION */
.cta-section {
    background: linear-gradient(135deg, #0f172a, #0b1324);
    padding: 90px 20px;
    text-align: center;
}

/* CONTAINER */
.cta-container {
    max-width: 900px;
    margin: auto;
}

/* TITLE */
.cta-container h1 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 20px;
}

/* TEXT */
.cta-container p {
    font-size: 15px;
    color: #cbd5f5;
    margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
    display: inline-block;
    background: #f97316;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

/* HOVER */
.cta-btn:hover {
    background: #ea580c;
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .cta-container h1 {
        font-size: 24px;
    }
}/* End custom CSS */