.industries-page-header {
    position: relative;
    background: var(--secondary-color);
    padding: 22px 0;
    height: 65vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.industries-page-header::before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;

    z-index: 0;
}

.industries-page-header-box {
    position: relative;
    z-index: 1;
    text-align: center;
}

.industries-page-header-box h1 {
    font-size: 70px;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.industries-page-header-box ol {
    display: inline-flex;
    margin-bottom: 0;
    justify-content: center;
    border: 2px solid #919191;
    border-radius: 100px;
    padding: 6px 20px;
    backdrop-filter: blur(8px) url(#switcher) saturate(var(--saturation));
    box-shadow: inset 0 0 0 1px color-mix(in srgb,
            var(--c-light) calc(var(--glass-reflex-light) * 10%),
            transparent),
        inset 1.8px 3px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 90%), transparent),
        inset -2px -2px 0px -2px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 80%), transparent),
        inset -3px -8px 1px -6px color-mix(in srgb, var(--c-light) calc(var(--glass-reflex-light) * 60%), transparent),
        inset -0.3px -1px 4px 0px color-mix(in srgb,
            var(--c-dark) calc(var(--glass-reflex-dark) * 12%),
            transparent),
        inset -1.5px 2.5px 0px -2px color-mix(in srgb,
            var(--c-dark) calc(var(--glass-reflex-dark) * 20%),
            transparent),
        inset 0px 3px 4px -2px color-mix(in srgb, var(--c-dark) calc(var(--glass-reflex-dark) * 20%), transparent),
        inset 2px -6.5px 1px -4px color-mix(in srgb,
            var(--c-dark) calc(var(--glass-reflex-dark) * 10%),
            transparent),
        0px 1px 5px 0px color-mix(in srgb,
            var(--c-dark) calc(var(--glass-reflex-dark) * 10%),
            transparent),
        0px 6px 16px 0px color-mix(in srgb,
            var(--c-dark) calc(var(--glass-reflex-dark) * 8%),
            transparent);
    transition: background-color 400ms cubic-bezier(1, 0, 0.4, 1),
        box-shadow 400ms cubic-bezier(1, 0, 0.4, 1);
}

.industries-page-header-box ol li.breadcrumb-item {
    color: white;
    text-transform: capitalize;
}

.industries-page-header-box ol li.breadcrumb-item a {
    color: inherit;
}

.industries-page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
    color: white;
}

.industries-page-header-box .breadcrumb-item+.breadcrumb-item::before {
    content: "|";
    color: white;
    font-size: 30px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 400;
}

/* Dark overlay for page header */
.industries-page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

/* Container positioning */
.industries-page-header .container {
    position: relative;
    z-index: 1;
}

/* White text for header elements */
.industries-page-header h1 {
    color: white;
}

.industries-page-header .breadcrumb-item a {
    color: white !important;
}

.industries-page-header .breadcrumb-item.active {
    color: white !important;
}

.industries-page-header p {
    color: white;
}



@media only screen and (max-width: 991px) {
    .industries-page-header {
        padding: 100px 0;
    }

    .industries-page-header::before {
        background-size: cover;
    }

    .industries-page-header-box h1 {
        font-size: 56px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .industries-page-header {
        padding: 50px 0;
    }

    .industries-page-header-box ol {
        padding: 4px 15px;
        font-size: 14px;
    }

    .industries-page-header-box h1 {
        font-size: 30px;
    }
}

/* Header Buttons*/
.industries-header-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.industries-header-buttons .btn-default {
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid #919191;
    color: white;
    background: transparent;
    transition: all 0.3s ease;
}

.industries-header-buttons .btn-default:hover {
    background: white;
    color: var(--accent-color);
}

.industries-header-buttons .btn-outlined {
    background: transparent;
}

.industries-header-buttons .btn-outlined:hover {
    background: white;
    color: var(--accent-color);
}

/* Hide arrow for CTA section buttons */
.cta-section .btn-default::before,
.cta-buttons .btn-default::before {
    display: none !important;
}

/* Remove the sliding background effect for CTA buttons */
.cta-section .btn-default::after,
.cta-buttons .btn-default::after {
    display: none !important;
}

/* Ensure text visibility in CTA buttons */
.cta-section .btn-default,
.cta-section .btn-default:hover,
.cta-section .btn-default:focus,
.cta-section .btn-default:active {
    text-indent: 0 !important;
    overflow: visible !important;
    font-size: 16px !important;
    position: relative;
    z-index: 1;
}

.cta-section .btn-default {
    color: var(--accent-color) !important;
    background: white !important;
}

.cta-section .btn-default:hover {
    color: white !important;
    background: transparent !important;
    border-color: white !important;
}

/* Industry Content Section */
.industry-content-section {
    padding: 30px 0;
    background: #f8f9fa;
}

.industry-content-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.industry-entry h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.industry-entry h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.industry-entry p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.industry-entry p:last-child {
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .industry-content-section {
        padding: 60px 0;
    }

    .industry-content-box {
        padding: 35px;
    }

    .industry-entry h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .industry-content-section {
        padding: 40px 0;
    }

    .industry-content-box {
        padding: 25px;
    }

    .industry-entry h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .industry-entry p {
        font-size: 15px;
    }
}

/* Indu
stry Services Section */
.industry-services-section {
    padding: 80px 0;
    background: white;
}

.industry-services-content {
    background: #f8f9fa;
    padding: 50px;
    border-radius: 10px;
}

.industry-services-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.industry-services-content h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

.industry-services-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.industry-services-content .services-intro {
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 40px;
}

.services-list li {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    padding-left: 30px;
    position: relative;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

.industry-services-content .services-footer {
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .industry-services-section {
        padding: 60px 0;
    }

    .industry-services-content {
        padding: 35px;
    }

    .industry-services-content h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .industry-services-section {
        padding: 40px 0;
    }

    .industry-services-content {
        padding: 25px;
    }

    .industry-services-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-list li {
        font-size: 15px;
        padding-left: 35px;
    }

    .services-list li::before {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
}

/*
 Service Categories Section */
.service-categories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.category-card {
    background: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    height: calc(100% - 30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.category-card>p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.category-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    margin-top: 20px;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.category-card ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    padding: 8px 0 8px 25px;
    position: relative;
}

.category-card ul li::before {
    content: '•';
    position: absolute;
    left: 5px;
    color: var(--accent-color);
    font-size: 20px;
    font-weight: bold;
}

.category-card .category-footer {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    margin-bottom: 0;
}

@media only screen and (max-width: 991px) {
    .service-categories-section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 32px;
    }

    .category-card {
        padding: 30px;
    }

    .category-card h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .service-categories-section {
        padding: 40px 0;
    }

    .section-title {
        margin-bottom: 30px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .category-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .category-card h3 {
        font-size: 18px;
    }

    .category-card>p,
    .category-card ul li {
        font-size: 14px;
    }

    .category-card h4 {
        font-size: 16px;
    }
}

/* ERP Features Section */
.erp-features-section {
    padding: 80px 0;
    background: white;
}

.erp-features-section .row {
    display: flex;
    flex-wrap: wrap;
}

.erp-features-section .row>[class*='col-'] {
    display: flex;
    flex-direction: column;
}

.erp-header {
    text-align: center;
    margin-bottom: 50px;
}

.erp-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.erp-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto 30px;
}

.erp-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 0;
}

.erp-feature-group {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.erp-feature-group:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.erp-feature-group h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.erp-feature-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.erp-feature-group ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    padding: 6px 0 6px 20px;
    position: relative;
}

.erp-feature-group ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

@media only screen and (max-width: 991px) {
    .erp-features-section {
        padding: 60px 0;
    }

    .erp-header h2 {
        font-size: 32px;
    }

    .erp-header p {
        font-size: 16px;
    }

    .erp-header h3 {
        font-size: 24px;
    }

    .erp-feature-group {
        padding: 20px;
    }

    .erp-feature-group h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .erp-features-section {
        padding: 40px 0;
    }

    .erp-header {
        margin-bottom: 30px;
    }

    .erp-header h2 {
        font-size: 26px;
    }

    .erp-header p {
        font-size: 15px;
    }

    .erp-header h3 {
        font-size: 20px;
    }

    .erp-feature-group {
        padding: 18px;
        margin-bottom: 15px;
    }

    .erp-feature-group h4 {
        font-size: 17px;
    }

    .erp-feature-group ul li {
        font-size: 14px;
    }
}

/* 
Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-header {
    text-align: center;
    margin-bottom: 50px;
}

.benefits-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefits-header p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.benefit-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.benefit-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

@media only screen and (max-width: 991px) {
    .benefits-section {
        padding: 60px 0;
    }

    .benefits-header h2 {
        font-size: 32px;
    }

    .benefits-header p {
        font-size: 16px;
    }

    .benefit-item {
        padding: 25px;
        gap: 20px;
    }

    .benefit-content h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .benefits-section {
        padding: 40px 0;
    }

    .benefits-header {
        margin-bottom: 30px;
    }

    .benefits-header h2 {
        font-size: 26px;
    }

    .benefits-header p {
        font-size: 15px;
    }

    .benefit-item {
        padding: 20px;
        gap: 15px;
        margin-bottom: 20px;
    }

    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .benefit-content h3 {
        font-size: 18px;
    }

    .benefit-content p {
        font-size: 15px;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
    background: white;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 40px;
}

.why-choose-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.why-choose-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-list ul li {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    padding: 15px 0 15px 35px;
    position: relative;
}

.why-choose-list ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 15px;
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.why-choose-footer {
    margin-top: 40px;
    padding: 30px;
    background: #f8f9fa;
    border-left: 4px solid var(--accent-color);
    border-radius: 5px;
}

.why-choose-footer p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

/* Development Process Section */
.development-process-section {
    padding: 80px 0;
    background: white;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(to right, #4A90E2, #50C878, #E91E63, #FF9800);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
}

.process-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

.process-step:nth-child(1) .process-number {
    background: #4A90E2;
}

.process-step:nth-child(2) .process-number {
    background: #50C878;
}

.process-step:nth-child(3) .process-number {
    background: #E91E63;
}

.process-step:nth-child(4) .process-number {
    background: #FF9800;
}

.process-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.process-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
    text-align: center;
}

@media only screen and (max-width: 991px) {

    .why-choose-section,
    .development-process-section {
        padding: 60px 0;
    }

    .why-choose-header h2,
    .process-header h2 {
        font-size: 32px;
    }

    .why-choose-list ul li {
        font-size: 16px;
    }

    .why-choose-footer p {
        font-size: 16px;
    }

    .process-item {
        padding: 25px;
    }

    .process-item h3 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {

    .why-choose-section,
    .development-process-section {
        padding: 40px 0;
    }

    .why-choose-header,
    .process-header {
        margin-bottom: 30px;
    }

    .why-choose-header h2,
    .process-header h2 {
        font-size: 26px;
    }

    .why-choose-list ul li {
        font-size: 15px;
        padding: 12px 0 12px 30px;
    }

    .why-choose-list ul li::before {
        width: 20px;
        height: 20px;
        font-size: 12px;
        top: 12px;
    }

    .why-choose-footer {
        padding: 20px;
        margin-top: 30px;
    }

    .why-choose-footer p {
        font-size: 15px;
    }

    .process-item {
        padding: 20px;
        margin-bottom: 20px;
    }

    .process-item h3 {
        font-size: 18px;
    }

    .process-item p {
        font-size: 15px;
    }
}

/* 
Process Timeline Responsive */
@media only screen and (max-width: 1199px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-timeline::before {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .process-content h3 {
        font-size: 20px;
    }

    .process-content p {
        font-size: 14px;
    }
}

/* Case Studies Section */
.case-studies-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.case-studies-header {
    margin-bottom: 40px;
}

.case-studies-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.case-studies-header h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.case-studies-header p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.case-study-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--accent-color);
}

.case-study-card h4 {
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.case-study-tech {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.case-study-tech strong {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 10px;
}

.case-study-tech p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.case-study-highlights strong {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: block;
    margin-bottom: 15px;
}

.case-study-highlights ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-study-highlights ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    padding: 10px 0 10px 30px;
    position: relative;
}

.case-study-highlights ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

@media only screen and (max-width: 991px) {
    .case-studies-section {
        padding: 60px 0;
    }

    .case-studies-header h2 {
        font-size: 32px;
    }

    .case-studies-header h3 {
        font-size: 20px;
    }

    .case-study-card {
        padding: 30px;
    }

    .case-study-card h4 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 767px) {
    .case-studies-section {
        padding: 40px 0;
    }

    .case-studies-header {
        margin-bottom: 30px;
    }

    .case-studies-header h2 {
        font-size: 26px;
    }

    .case-studies-header h3 {
        font-size: 18px;
    }

    .case-studies-header p {
        font-size: 15px;
    }

    .case-study-card {
        padding: 25px;
    }

    .case-study-card h4 {
        font-size: 20px;
    }

    .case-study-tech strong,
    .case-study-highlights strong {
        font-size: 16px;
    }

    .case-study-tech p,
    .case-study-highlights ul li {
        font-size: 15px;
    }
}

/* CTA Section */
.cta-section {
    padding: 40px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    /* opacity: 0.3; */
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-heading {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 35px;
    letter-spacing: -0.02em;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta-buttons .btn-default {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: white;
    color: var(--accent-color) !important;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-default:hover {
    background: transparent !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

@media only screen and (max-width: 991px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-text {
        font-size: 16px;
    }

    .cta-heading {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .cta-buttons .btn-default {
        padding: 16px 35px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .cta-section {
        padding: 40px 0;
    }

    .cta-text {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .cta-heading {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .cta-buttons .btn-default {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
}


.use-cases-content {
    background: #ffffff;
    padding: 50px;
    border-radius: 10px;
}

.use-cases-content h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.use-cases-content h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
}

