html {
    font-size: 16px; /* Base font size for rem calculations */
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    overflow-x: hidden;
    font-size: 1rem; /* 16px */
}
/* Override WordPress default styles */
.ai-strategy * {
    font-size: inherit;
}

.ai-strategy.banner-section {
    position: relative;
    min-height: 90vh;
    background: url('/manufacturers/wp-content/themes/thecommerceshop/images/capabilities/ai-strategy-banner-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}

.ai-strategy.banner-section::before {
    content: '';
    position: absolute;
    top: 20%;
    right: 30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 69, 19, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.ai-strategy .badge-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease-out;
}

.ai-strategy .badge-icon {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ff4444;
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.ai-strategy .badge-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.ai-strategy .banner-heading {
    font-size: 4rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.ai-strategy .text-orange {
    color: #FF6600;
    font-style: normal;
    font-weight: 600;
}
.ai-strategy .banner-heading .text-orange {
    color: #ff6b35;
    font-style: italic;
    font-weight: 500;
}
.ai-strategy .banner-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.ai-strategy .btn-cta {
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    padding: 10px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.ai-strategy .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.5);
    color: #ffffff;
}

.ai-strategy .btn-cta .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ai-strategy .btn-cta:hover .arrow {
    transform: translateX(5px);
}

.ai-strategy .floating-icon {
    position: absolute;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.ai-strategy .icon-star-1 {
    top: 8%;
    left: 5%;
    animation: float 4s;
}

.ai-strategy .icon-chart {
    top: 15%;
    right: 8%;
    animation: float 5s;
}

.ai-strategy .icon-pie {
    bottom: 35%;
    left: 8%;
    animation: float 6s;
}

.ai-strategy .icon-unity {
    bottom: 20%;
    right: 10%;
    animation: float 5.5s;
}

.ai-strategy .icon-star-2 {
    bottom: 15%;
    right: 3%;
    animation: float 4.5s;
}
.ai-strategy .icon-star-1 img, .ai-strategy .icon-chart img, .ai-strategy .icon-pie img, .ai-strategy .icon-unity img, .ai-strategy .icon-star-2 img {
    width: 70px;
    height: 70px;
}
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(255, 68, 68, 0.8);
    }
    50% {
        opacity: 0.3;
        box-shadow: 0 0 4px rgba(255, 68, 68, 0.4);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .ai-strategy .banner-heading {
        font-size: 3rem;
    }
    
    .ai-strategy .banner-description {
        font-size: 1rem;
    }
    
    .ai-strategy .floating-icon {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .ai-strategy .banner-heading {
        font-size: 2.5rem;
    }
    
    .ai-strategy .banner-description br {
        display: none;
    }
    
    .ai-strategy .btn-cta {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    .ai-strategy .floating-icon {
        transform: scale(0.7);
    }
}

/* Insights Section */
.ai-strategy.insights-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.ai-strategy .section-label {
    color: #FF6600;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.ai-strategy .section-label::before,
.ai-strategy .section-label::after {
    content: '';
    width: 30px;
    height: 2px;
    background-color: #FF6600;
}

.ai-strategy .section-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.ai-strategy .question-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: relative;
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out both;
}

.ai-strategy .question-card:nth-child(1) {
    animation-delay: 0.6s;
}

.ai-strategy .question-card:nth-child(2) {
    animation-delay: 0.7s;
}

.ai-strategy .question-card:nth-child(3) {
    animation-delay: 0.8s;
}

.ai-strategy .question-card:nth-child(4) {
    animation-delay: 0.9s;
}

.ai-strategy .question-card:nth-child(5) {
    animation-delay: 1s;
}

.ai-strategy .question-card:nth-child(6) {
    animation-delay: 1.1s;
}

.ai-strategy .question-card:nth-child(7) {
    animation-delay: 1.2s;
}

.ai-strategy .question-card:nth-child(8) {
    animation-delay: 1.3s;
}

.ai-strategy .question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #ff6b35;
}

.ai-strategy .question-number {
    display: inline-block;
    color: #ff6b35;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 15px;
    background: rgba(255, 107, 53, 0.1);
    padding: 4px 10px;
    border-radius: 999px;
    height: 35px;
    width: 35px;
    align-items: center;
}

.ai-strategy .question-text {
    color: #333333;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Strategy First Section */
.ai-strategy.strategy-first-section {
    padding: 60px 20px;
    background: url('/manufacturers/wp-content/themes/thecommerceshop/images/capabilities/strategy-first-section-bg.webp');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
}

.ai-strategy .section-heading-dark {
    font-size: 2.8rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 15px;
}

.ai-strategy .section-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}
.ai-strategy .benefits-card-outer {
    border: 1px solid #9f8787;
    padding: 10px;
    border-radius: 15px;
}
.ai-strategy .benefits-card {
    background: rgba(139, 69, 19, 0.2);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    padding: 20px 10px;
    backdrop-filter: blur(10px);
    min-height: 300px;
    border: none;
    position: relative;
}

.ai-strategy .benefits-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-left: 2px solid #FF6600;
    border-bottom: 2px solid #FF6600;
    border-bottom-left-radius: 16px;
}

.ai-strategy .benefits-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    border-right: 2px solid #FF6600;
    border-top: 2px solid #FF6600;
    border-top-right-radius: 16px;
}

.ai-strategy .benefits-title {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.ai-strategy .benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ai-strategy .benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ai-strategy .benefits-list li:last-child {
    margin-bottom: 0;
}

.ai-strategy .benefits-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 0px rgba(255, 102, 0, 0));
}

.ai-strategy .benefits-list li:hover svg {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 12px rgba(255, 102, 0, 0.8)) drop-shadow(0 0 20px rgba(255, 102, 0, 0.5));
}

.ai-strategy .benefits-list li:hover svg rect {
    fill-opacity: 0.4;
}

.ai-strategy .check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Services Section */
.ai-strategy.services-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.ai-strategy .services-description {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0px;
}

/* Accordion Styling */
.ai-strategy .accordion {
    border: none;
}

.ai-strategy .accordion-item {
    background: #fdfafa;
    border: none;
    /* border-bottom: 1px solid #e5e7eb; */
    margin-bottom: 5px;
}

.ai-strategy .accordion-item:last-child {
    border-bottom: none;
}
.ai-strategy .accordion-item .accordion-header .accordion-icon{
    background: rgb(255 242 239);
    padding: 4px;
    border-radius: 5px;

}
.ai-strategy .accordion-button {
    background: transparent;
    border: none;
    padding: 20px 20px;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.ai-strategy .accordion-button:not(.collapsed) {
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    color: #ffffff;
    border-radius: 10px 10px 0px 0px;
    padding: 20px;
}

.ai-strategy .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.ai-strategy .accordion-button::after {
    content: '+';
    background-image: none;
    width: 25px;
    height: 25px;
    font-size: 1rem;
    font-weight: 300;
    margin-left: auto;
    color: #000;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.ai-strategy .accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
    color: #ffffff;
    border-color: #ffffff;
}

.ai-strategy .accordion-number {
    display: inline-block;
    color: #737373;
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 30px;
}

.ai-strategy .accordion-button:not(.collapsed) .accordion-number {
    color: #ffffff;
}

.ai-strategy .accordion-icon {
    flex-shrink: 0;
    color: #ff6b35;
}

.ai-strategy .accordion-button:not(.collapsed) .accordion-icon {
    color: #000;
    background: #FFF;
}

.ai-strategy .accordion-title {
    flex: 1;
}

.ai-strategy .accordion-body {
    padding: 0 30px 20px 80px;
    color: #FFF;
    font-size: 1rem;
    line-height: 1.7;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 0px 0px 10px 10px;
}

.ai-strategy .accordion-button:not(.collapsed) + .accordion-collapse .accordion-body {
    background: rgba(255, 107, 53, 0.05);
    padding: 20px;
    border-radius: 0 0 8px 8px;
    margin-top: -8px;
}

@media (max-width: 576px) {
    .ai-strategy .banner-heading {
        font-size: 2rem;
    }
    
    .ai-strategy .banner-description {
        font-size: 0.95rem;
    }
    
    .ai-strategy.insights-section {
        padding: 60px 20px;
    }
    
    .ai-strategy .section-heading {
        font-size: 2rem;
    }
    
    .ai-strategy .question-card {
        padding: 20px;
    }
    
    .ai-strategy.strategy-first-section {
        padding: 60px 20px;
    }
    
    .ai-strategy .section-heading-dark {
        font-size: 2rem;
    }
    
    .ai-strategy .benefits-card {
        padding: 25px;
    }
    
    .ai-strategy .benefits-list li {
        font-size: 0.9rem;
    }
    
    .ai-strategy.services-section {
        padding: 60px 20px;
    }
    
    .ai-strategy .accordion-body {
        padding: 0 20px 20px 20px;
    }
    
    .ai-strategy .accordion-button {
        font-size: 0.95rem;
        padding: 15px 0;
    }
    
    .ai-strategy .accordion-button:not(.collapsed) {
        padding: 15px;
    }
    .ai-strategy .step-icon-wrapper{
        width: 45px;
        height: 45px;
    }
}

/* Process Section */
.ai-strategy.process-section {
    padding: 60px 20px;
    background: #0a0a0a;
    position: relative;
    overflow: hidden;
}

.ai-strategy.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.ai-strategy .process-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 20px;
}

.ai-strategy .process-timeline {
    display: flex;
    gap: 20px;
    position: relative;
    padding: 40px 0 10px 0;
}

.ai-strategy .process-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #f9fafb 10%, #ffffff 90%, transparent 100%);
    z-index: 0;
}

.ai-strategy .process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-strategy .step-icon-wrapper {
    width: 45px;
    height: 60px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.ai-strategy .step-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: #FF6600;
    border-radius: 50%;
    top: -8px;
    right: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 500;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(255, 102, 0, 0.4);
}

.ai-strategy .process-step:nth-child(1) .step-icon-wrapper::before {
    content: '1';
}

.ai-strategy .process-step:nth-child(2) .step-icon-wrapper::before {
    content: '2';
}

.ai-strategy .process-step:nth-child(3) .step-icon-wrapper::before {
    content: '3';
}

.ai-strategy .process-step:nth-child(4) .step-icon-wrapper::before {
    content: '4';
}

.ai-strategy .process-step:nth-child(5) .step-icon-wrapper::before {
    content: '5';
}

.ai-strategy .step-number {
    display: none;
}

.ai-strategy .step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 10px 5px 10px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.ai-strategy .step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF6600, transparent);
    transition: left 0.6s ease;
    border-radius: 12px 12px 0 0;
}

.ai-strategy .step-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 102, 0, 0.5);
    transform: translateY(-5px);
}

.ai-strategy .step-card:hover::before {
    left: 100%;
}

.ai-strategy .step-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 10px;
}

.ai-strategy .step-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 300;
}

@media (max-width: 1200px) {
    .ai-strategy .process-timeline {
        flex-wrap: wrap;
    }
    
    .ai-strategy .process-step {
        flex: 0 0 calc(50% - 10px);
        margin-bottom: 30px;
    }
    
    .ai-strategy .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .ai-strategy.process-section {
        padding: 60px 20px;
    }
    
    .ai-strategy .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .ai-strategy .process-step {
        flex: 1;
    }
    
    .ai-strategy .step-card {
        padding: 20px 15px;
    }
    
    .ai-strategy .step-title {
        font-size: 1rem;
    }
    
    .ai-strategy .step-description {
        font-size: 0.85rem;
    }
    .ai-strategy .step-icon-wrapper{
        width: 45px;
        height: 45px;
    }
}

/* Why Choose Us Section */
.ai-strategy.why-choose-section {
    padding: 60px 20px;
    background: #ffffff;
}

.ai-strategy .why-choose-description {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-top: 20px;

}

.ai-strategy .feature-card {
    background: #ffffff;
    padding: 15px;
    text-align: left;
    transition: all 0.3s ease;
    height: 100%;
    border-top: solid 2px #e9ecef;
    position: relative;
    overflow: hidden;
}

.ai-strategy .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FF6600, transparent);
    transition: left 0.6s ease;
}

.ai-strategy .feature-card:hover::before {
    left: 100%;
}

.ai-strategy .feature-icon {
    width: 45px;
    height: 45px;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5F5F5;
    border-radius: 10px;
}

.ai-strategy .feature-title {
    color: #000000;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px; 
}

.ai-strategy .feature-subtitle {
    color: #FF6600;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.ai-strategy .feature-description {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.ai-strategy .numbers-heading {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0;
}

.ai-strategy .stat-card {
    border-radius: 12px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai-strategy .stat-card.stat-dark {
    background: #000000;
    color: #ffffff;
}

.ai-strategy .stat-card.stat-dark:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.ai-strategy .stat-card.stat-orange {
    background: #FF6600;
    color: #ffffff;
}

.ai-strategy .stat-card.stat-orange:hover {
    box-shadow: 0 8px 30px rgba(255, 102, 0, 0.6), 0 0 25px rgba(255, 102, 0, 0.5);
    transform: translateY(-5px);
}

.ai-strategy .stat-number {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1;
}

.ai-strategy .stat-label {
    font-size: 1.5rem;
    font-weight: 600;
}

.ai-strategy .stat-icon {
    margin-bottom: 15px;
}

.ai-strategy .stat-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.ai-strategy .stat-description {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    opacity: 1;
}

.ai-strategy .btn-cta-orange {
    background: #FF6600;
    color: #ffffff;
    padding: 10px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
}

.ai-strategy .btn-cta-orange:hover {
    background: #e55a00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.3);
}

.ai-strategy .btn-cta-orange .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ai-strategy .btn-cta-orange:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .ai-strategy.why-choose-section {
        padding: 60px 20px;
    }
    
    .ai-strategy .feature-card {
        padding: 25px 15px;
    }
    
    .ai-strategy .feature-title {
        font-size: 1rem;
    }
    
    .ai-strategy .feature-description {
        font-size: 0.85rem;
    }
    
    .ai-strategy .numbers-heading {
        font-size: 1.5rem;
    }
    
    .ai-strategy .stat-card {
        padding: 30px 20px;
    }
    
    .ai-strategy .stat-number {
        font-size: 2.5rem;
    }
}


/* Case Study Section */

.ai-strategy.our-growth{
  padding: 60px 0px 60px 0px;
  background-image: url('/manufacturers/wp-content/themes/thecommerceshop/images/capabilities/your-busines-bg.webp'); /* Replace with your image path */
  background-size: cover;
  background-position: bottom;
}
.ai-strategy #growth-carousel {
    background: #212529;
    padding: 20px;
    border-bottom: solid 20px #CAC6CE;
    min-height: 470px;
}
.ai-strategy #growth-carousel .growth-carousel .item .desc{
  color: #bdbcbc;
  text-align: left;
  padding: 22px 0;
  font-size: 1.1rem;
}

.ai-strategy #growth-carousel .growth-carousel .item .author{
  color: #F16223;
  text-align: justify;
  margin-bottom: 50px;
}

.ai-strategy #growth-carousel .owl-nav.disabled+.owl-dots{
  position: absolute;
  right: 0; /* Align to right */
  top: 50%; /* Start from middle */
  transform: translateY(-50%); /* Center vertically */
  display: flex;
  flex-direction: column; /* Stack vertically */
  gap: 10px; /* Space between dots */
  height: auto;
}

.ai-strategy.our-growth .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
    background: #f76f45;
}
.ai-strategy.our-growth .owl-theme .owl-dots .owl-dot span{
  width: 6px;
  background: #f1bda7;
  height: 35px;
   transition: background 0.3s
}
.ai-strategy.our-growth .owl-item .item sub{
      bottom: 0em !important;
}
.ai-strategy #growth-carousel .vertical-slider .owl-stage-outer {
  height: 200px; /* Adjust height */
  overflow: hidden;
}

.ai-strategy #growth-carousel .vertical-slider .owl-stage {
  display: flex;
  flex-direction: column;
  transition: transform 0.5s ease;
}

.ai-strategy #growth-carousel .vertical-slider .owl-item {
  float: none;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px; /* Same as above */
}


.ai-strategy #growth-carousel .owl-carousel .owl-item img{
  width: auto !important;
  max-width: 100%;
}
.ai-strategy #growth-carousel .owl-carousel .owl-item .content-area{
  background: #111111;
  padding: 20px 15px 20px 15px;
}
.ai-strategy #growth-carousel .owl-carousel .owl-item .content-area .new-cta-btn {
    cursor: pointer;
    padding: 10px 20px;
    text-align: center;
    font-size: 16px;
    border-radius: 30px;
    line-height: initial !important;
}

.ai-strategy #growth-carousel .owl-carousel .owl-item .content-area .percent{
  color: #FFF;
  font-weight: 600;
  font-size: 28px;
}
.ai-strategy #growth-carousel .owl-carousel .owl-item .content-area .title{
  color: #FFF;
  font-size: 20px;
  text-align: left;
}
.ai-strategy #growth-carousel .owl-carousel .owl-item .content-area .desc {
    color: #fff;
    padding: 15px 0 0 0;
    border-top: solid 3px #5B5B5F;
    text-align: left;
    margin-bottom: 10px;
    font-size: 18px;
}
.ai-strategy #growth-carousel .owl-carousel .owl-item .img-area img{
  width: 270px !important;
  height: auto;
}


.ai-strategy #growth-carousel .the-results{
    font-size: 1.75rem;
}
.ai-strategy #growth-carousel .stat-number{
    font-size: 2rem;
}
.ai-strategy #growth-carousel .short-term{
    font-size: 0.95rem;
    color: #a7a6a7;
}
/* CTA Section */
.ai-strategy.cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 50%, #FFF5F0 100%);
    position: relative;
    overflow: hidden;
}

.ai-strategy .cta-content {
    position: relative;
    z-index: 1;
    background: radial-gradient(circle, #ffeae0 0%, #f5d0be 40%, transparent 75%);
    padding: 20px;
    border-radius: 50%;
    max-width: 700px;
    min-width: 630px;
    height: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ai-strategy .cta-label {
    color: #FF6600;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 102, 0, 0.1);
    padding: 8px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.ai-strategy .cta-icon {
    font-size: 0.5rem;
    color: #FF6600;
}

.ai-strategy .cta-heading {
    color: #000000;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ai-strategy .cta-description {
    color: #666666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.ai-strategy .btn-cta-schedule {
    background: #FF6600;
    color: #ffffff;
    padding: 10px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.ai-strategy .btn-cta-schedule:hover {
    background: #e55a00;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.ai-strategy .btn-cta-schedule .arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.ai-strategy .btn-cta-schedule:hover .arrow {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .ai-strategy.cta-section {
        padding: 60px 20px;
    }
    
    .ai-strategy .cta-heading {
        font-size: 2rem;
    }
    
    .ai-strategy .cta-description {
        font-size: 1rem;
    }
    
    .ai-strategy .btn-cta-schedule {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

/* FAQ Section */
.ai-strategy.faq-section {
    padding: 60px 20px;
    background: #ffffff;
}

.ai-strategy .faq-accordion {
    border: none;
}

.ai-strategy .faq-accordion-item {
    background: #ffffff;
    border: none;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
}

.ai-strategy .faq-accordion-item:last-child {
    border-bottom: none;
}

.ai-strategy .faq-accordion-button {
    background: #ffffff;
    color: #000000;
    font-size: 1rem;
    font-weight: 500;
    padding: 20px 50px 20px 0;
    border: none;
    box-shadow: none;
    text-align: left;
    position: relative;
}

.ai-strategy .faq-accordion-button:not(.collapsed) {
    background: #ffffff;
    color: #000000;
    box-shadow: none;
}

.ai-strategy .faq-accordion-button:focus {
    box-shadow: none;
    border: none;
}

.ai-strategy .faq-accordion-button::after {
    content: '+';
    background-image: none;
    width: 25px;
    height: 25px;
    font-size: 1rem;
    font-weight: 300;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    display: flex;
    /* align-items: center;
    justify-content: center; */
    flex-shrink: 0;
}

.ai-strategy .faq-accordion-button:not(.collapsed)::after {
    content: '−';
    transform: translateY(-50%);
    color: #FF6600;
    border-color: #FF6600;
}

.ai-strategy .faq-accordion-body {
    padding: 0 35px 20px 20px;
    color: #212529;
    font-size: 0.95rem;
    line-height: 1.7;
    background: linear-gradient(90deg, #f8f9fa 0%, #f8f9fa 100%);
}

.ai-strategy .faq-accordion-collapse {
    border: none;
}

@media (max-width: 768px) {
    .ai-strategy.faq-section {
        padding: 60px 20px;
    }
    
    .ai-strategy .faq-accordion-button {
        font-size: 0.95rem;
        padding: 18px 45px 18px 0;
    }
    
    .ai-strategy .faq-accordion-button::after {
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
    
    .ai-strategy .faq-accordion-body {
        font-size: 0.9rem;
    }
}

.ai-strategy.contact-cta-sec{
    min-height: 290px !important;
    height: 280px;
}

@media (min-width: 1201px) {
    .contact-cta-sec {
        padding: 60px 0 0px 0;
        background: #E2E2E2;
        min-height: 290px;
    }
}
#lp-audit-form .new-cta-btn{
    margin-top: -3px !important;
}
