.banner-ai-section {
    padding: 200px 0 70px;
}

.btn1 {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #ffffff;
    background: #a1b947;
    border: 1px solid #a1b947;
    cursor: pointer;
}

.btn1:hover {
    background: #89ab27;
    color: #fff;
}

.btn2 {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #a1b947;
    background: #ffffff;
    border: 1px solid #a1b947;
    cursor: pointer;
}

.btn2:hover {
    background: #89ab27;
    color: #fff;
    border: 1px solid #a1b947;
}

.btn-gap {
    margin-right: 10px;
}

.banner-ai-section .banner-heading h1 {
    font-size: 45px;
    text-transform: capitalize;
    color: #0d3469;
    font-weight: 500;
}

.text-slider-wrapper {
    height: 60px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0px;
}


.dynamic-text {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: slideText 12s infinite;
}

.dynamic-text li {
    height: 55px;
    line-height: 55px;
     font-size: 42px;
    font-weight: 700;
    background: linear-gradient(to right, #f7e600, #95b81d, #153d8a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 6 items × 55px = 330px */
/* .dynamic-text {
    animation: slideText 12s steps(6) infinite;
}

@keyframes slideText {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-330px);
    }
} */
@keyframes slideText {
    0%, 13% {
        transform: translateY(0);
    }

    16%, 29% {
        transform: translateY(-55px);
    }

    32%, 45% {
        transform: translateY(-110px);
    }

    48%, 61% {
        transform: translateY(-165px);
    }

    64%, 77% {
        transform: translateY(-220px);
    }

    80%, 93% {
        transform: translateY(-275px);
    }

    100% {
        transform: translateY(0);
    }
}

.banner-ai-section {
    position: relative;
    overflow: hidden;
    background: #fff;
    min-height: 700px;
}

.banner-heading {
    position: relative;
    z-index: 2;
}


#particles-js {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;

    /* Hidden by default */
    opacity: 0;

    /* Mouse spotlight reveal */
    -webkit-mask-image: radial-gradient(circle 300px at var(--x, 50%) var(--y, 50%),
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 100%);

    mask-image: radial-gradient(circle 300px at var(--x, 50%) var(--y, 50%),
            rgba(0, 0, 0, 1) 0%,
            rgba(0, 0, 0, 0) 100%);

    transition: opacity 0.1s ease;
}

.video-content {
    position: relative;
    z-index: 1;
}

.video-content img {
    animation: topBottomMove 7s ease-in-out infinite;
}


@keyframes topBottomMove {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
        /* Move Up */
    }

    100% {
        transform: translateY(0);
        /* Back to normal */
    }
}

.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/ai/bg-1.jpg') no-repeat center;
    background-size: cover;
    background-position: 50% 60%;
}

/* Feature box hover effect */
.csr-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


/* .stats-card {
    background: #fff;
    padding: 35px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    border: 2px solid #ebd900;
} */
.stats-card {
    position: relative;
    padding: 35px 20px;
    border-radius: 24px;
    height: 100%;

    /* Glass Effect */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    /* Border */
    border: 1px solid rgba(255, 255, 255, 0.2);

    /* Glass Shadow */
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);

    overflow: hidden;
    transition: all 0.4s ease;
}

/* Light reflection effect */
.stats-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: skewX(-25deg);
    transition: 0.8s;
}

/* Hover Effect */
.stats-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.stats-card:hover::before {
    left: 120%;
}

/* .stats-card:hover {
    transform: translateY(-8px);
} */

.stats-card h2 span.counter {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
    background: linear-gradient(90deg, #ffffff 0%, #ebd900 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-card h2 span {
    color: #ffffff;
}

.stats-card p {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 0;
    font-weight: 500;
}

.heading h2 {
    font-size: 45px;
    font-weight: 600;
    color: #0d3469;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.heading .subheading {
    font-size: 17px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #849b34;
    margin-bottom: 4px;
}

.feature-card {
    background: #fff;
    border: 1px solid #d9dee8;
    border-radius: 28px;
    padding: 32px;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.feature-card::after {
    content: "";
    background: #3d4d6a;
    bottom: -100%;
    left: 0;
    right: 0;
    position: absolute;
    width: 100%;
    height: -100%;
    z-index: -1;
    transition: all 0.6s;
}

.feature-card:hover::after {
    content: "";
    /* background: #3d4d6a; */
    background: #0e3568;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-card:hover p {
    color: #fff;
}

.feature-card:hover h3 {
    color: #fff;
}

.large-card {
    min-height: 100%;
}

.feature-card .icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #849b34;
    color: #fff;
    font-size: 25px;
}

.feature-card .icon-box img {
    width: 28px;
}



.tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border: 1px dashed;
}

.live {
    background: #e8f8ef;
    color: #008f69;
}

.beta {
    background: #efe8ff;
    color: #7c4dff;
}

.new {
    background: #e7f7f5;
    color: #009688;
}

.feature-card h3 {
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
    color: #111827;
}

.feature-card p {
    color: #667085;
    margin-bottom: 30px;
}

.learn-btn {
    color: #849b34;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
}

.learn-btn:hover {
    color: #ebd900;
}

.row-gap {
    margin-top: 0px;
}

.ai-how-section {
    background: linear-gradient(to bottom,
            #f3f5fa 0%,
            #ffffff 100%);
    padding: 70px 0;
}

.process-item {
    display: flex;
    gap: 20px;
    padding: 28px 15px;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 30px;
    border-radius: 15px;
    background: #fff;
}

.process-number {
    min-width: 50px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #6b7280;
    background: #fff;
    transition: .3s;
}

.process-content h4 {
    font-size: 25px;
    margin-bottom: 10px;
}

.process-content p {
    font-size: 17px;
    color: #667085;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Active Item */
.process-item.active .process-number {
    background: #849b34;
    border-color: #849b34;
    color: #fff;
}

.process-item.active h4 {
    color: #849b34;
}

.process-item.active {
    border: 1px dashed #849b34;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12), 0 12px 25px rgba(0, 0, 0, 0.10), inset 0 1px 1px rgba(255, 255, 255, 0.6);
    border-left: 3px solid #849b34;
}

/* Right Image */


.ai-visual-panel {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: all .5s ease;
}

.ai-visual-panel.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.sticky_top {
    position: -webkit-sticky;
    position: sticky;
    top: 10rem;
    align-self: flex-start;
    z-index: 10;
}

.overflow-clip {
    position: relative;
    overflow: clip;
}

.clients-before {
    padding: 20px;
    position: relative;
}

/* Left Shadow/Fade */
.clients-before::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 100%;
    background: linear-gradient(to right,
            #ffffff 20%, rgb(255 255 255) 60%, rgba(243, 245, 250, 0) 100%);
    z-index: 2;
    pointer-events: none;

}

/* Right Shadow/Fade */
.clients-before::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 180px;
    height: 100%;
    background: linear-gradient(to left,
            #ffffff 20%, rgb(255 255 255) 60%, rgba(243, 245, 250, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.faq-section {
    background-color: #f3f5fa;
}

.custom-faq .accordion-item {
    border: 1px solid #d9dee8;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
}

.custom-faq .accordion-button {
    background: #fff;
    font-size: 20px;
    font-weight: 600;
    color: #111827;
    padding: 10px 15px;
    box-shadow: none !important;
    border: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    background: #849b34;
    color: #ffffff;
}

.custom-faq .accordion-body {
    padding: 15px 32px 15px;
    font-size: 16px;
    color: #667085;
    line-height: 26px;
}

/* Plus icon */
.custom-faq .accordion-button::after {
    background-image: none;
    content: "+";
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #f2f4f7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #98a2b3;
    transform: none !important;
}

.custom-faq .accordion-button:not(.collapsed)::after {
    content: "−";
}

.row-gaping {
    margin-top: 15px;
}

.faq-img img {
    animation: topBottomMove 7s ease-in-out infinite;
}

.ai-feature-secion {
    background: url('../img/ai/bg-2.jpg') repeat top;
    background-size: cover;
}

.why-techcsr-section {
    background: url('../img/ai/bg-3.jpg') repeat top;
    background-size: cover;
    padding: 60px 0 200px;
}

/* Section */
.csr-feature-row {
    margin-top: 10px;
}

/* Card */


/* Large Number */
.csr-feature-number {
    position: absolute;
    top: 20px;
    right: 25px;
    /* move to right side */
    font-size: 72px;
    line-height: 1;
    font-weight: 800;
    color: rgb(132, 155, 52);
    opacity: 0.15;
    /* faded text effect */
    z-index: 0;
    pointer-events: none;
}

.csr-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f4f6fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 55px;
    margin-bottom: 22px;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.csr-feature-icon i {
    font-size: 30px;
    color: #849b34;
    display: flex;
    align-items: center;
    justify-content: center;
}

.csr-dark-icon i {
    color: #facc15;
}


/* Title */
.csr-feature-title {
    font-size: 23px;
    font-weight: 600;
    line-height: 1.3;
    color: #0d3469;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

/* Text */
.csr-feature-text {
    font-size: 15px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

/* Active Card */
/* .csr-feature-active {
    background: linear-gradient(135deg, #071018, #0b1d2d);
    border: none;
}

.csr-feature-active .csr-feature-title,
.csr-feature-active .csr-feature-text {
    color: #ffffff;
}

.csr-feature-active .csr-feature-number {
    color: rgba(255, 255, 255, 0.12);
}

.csr-dark-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #facc15;
} */

/* Responsive */
@media (max-width: 991px) {
    .csr-feature-title {
        font-size: 24px;
    }

    .csr-feature-number {
        font-size: 60px;
    }
}

@media (max-width: 767px) {
    .csr-feature-box {
        padding: 25px 20px;
    }

 
    .csr-feature-number {
        font-size: 52px;
        top: 15px;
        left: 20px;
    }

    .csr-feature-icon {
        width: 45px;
        height: 45px;
        margin-top: 45px;
    }
}

/* Feature box styling */
.csr-feature-box {
    display: block;
    text-decoration: none;
    border: 2px dashed rgb(229, 229, 229);
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f5f9fcab;
    padding: 35px 30px;
    height: 100%;
    /* cursor removed to limit click area */
}

/* Clickable left side anchor */
.csr-feature-left {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

/* .csr-feature-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
} */

.csr-feature-box::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #ff7e5f, #feb47b);
    border-radius: 16px;
    pointer-events: none;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.csr-feature-box:hover {
    transform: translateY(-6px);
    /* box-shadow: 0 6px 20px rgb(255 255 255 / 15%); */
    border: 1px dashed #849b34 !important;
}

.ai-visual-panel img {
    border-radius: 15px;
}

section.clients-section {
    background: #fff;
}



.strategy-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 480px;
}

.card-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s;
}
.strategy-card:hover img{
    transform: scale(1.2);
}
.strategy-content {
    position: absolute;
    bottom: 25px;
    left: 20px;
    z-index: 2;
    color: #fff;
    max-width: 390px;
    right: 20px;
}

.strategy-icon img {
    width: 42px;
    margin-bottom: 24px;
}

.strategy-content h3 {
    font-size: 25px;
    font-weight: 500;
    line-height: 35px;
    margin-bottom: 5px;
    color: #fff;
}

.strategy-content p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
    color: #fff;
}

.top-padding-style {
    margin-top: 120px;
}

.bottom-padding-style {
    margin-top: -120px;
}

/* Responsive */
@media (max-width: 991px) {
    .strategy-card {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .strategy-card {
        height: 380px;
    }

    .strategy-content {
        left: 25px;
        bottom: 30px;
        max-width: 260px;
    }

    .strategy-content h3 {
        font-size: 22px;
    }

    .strategy-content p {
        font-size: 14px;
    }
}

.card-tag {
    display: inline-block;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    background: #849b34;
    padding: 3px 7px;
    border: 1px dashed #ffffff2b;
    border-radius: 5px;
}

/* Overlay */
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.15) 0%,
            rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.strategy-icon {
    display: none;
}

.csr-section {
    padding: 70px 0;
}

.mega-links {
    display: block;
    position: relative !important;
    left: initial !important;
    top: initial !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 99;
    opacity: 1 !important;
    visibility: visible !important;
    background: var(--white);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
}

/* video-ai-bottom */
.video-ai-bottom .video-content video {
    width: 100%;
    height: 100%;
    margin-top: 25px;
    border-radius: 15px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.10), 0 4px 16px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    animation: ai-fadeUp .9s .5s ease both;
}
/* security section */
section.csr-section {
    background: linear-gradient(90deg, #10366814 0%, #ebd90038 50%, #0d34691c 100%);
       /* background: linear-gradient(90deg, #10366854 0%, #ebd90038 50%, #0d346954 100%); */
    /* background: linear-gradient(90deg, #3990d01f 0%, #fadf9457 50%, #3990d033 100%); */
}

.security-section .heading p{
    margin-bottom: 35px;
}
.security-card {
    position: relative;
    height: 100%;
    padding: 35px;
    border-radius: 24px;

    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border: 1px solid rgba(255, 255, 255, 0.35);

    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.15),
        inset 0 1px 1px rgba(255,255,255,0.3);

    transition: all .4s ease;
}

.security-card:hover {
    transform: translateY(-8px);

    background: rgba(255, 255, 255, 0.22);

    box-shadow:
        0 20px 40px rgba(0,0,0,.12),
        inset 0 1px 1px rgba(255,255,255,.5);
}
.security-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 1px dashed rgb(255 255 255 / 67%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #849b34;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12), 0 12px 25px rgba(0, 0, 0, 0.10), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}
.security-icon img {
    width: 50px;
}

.security-card h4 {
    color: #0d3469;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}
.security-card p {
    color: rgb(0 0 0 / 83%);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}
.security-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgb(132 155 52);
    border: 1px dashed #e0e1da;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.security-tag i {
    font-size: 13px;
}


  /* <!-- ══ TECHCSR AI BENEFITS ══ --> */
  .benefit-item-left{
    display:flex;
    gap:18px;
    margin-bottom: 60px;
}
.benefit-item-left h4{
    text-align: right;
}
.benefit-item-left p{
    text-align: right;
}
.benefit-item {
    display: flex;
    gap: 18px;
    margin-bottom: 60px;
}
.benefit-icon {
    min-width: 60px;
    width: 60px;
    height: 60px;
    border-radius: 13px;
    background: #849b34;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7px;
}
.benefit-icon img {
    width: 50px;
}

.benefit-item h4 {
    font-size: 22px;
    font-weight: 500;
    color: #0d3469;
    margin-bottom: 5px;
}
.benefit-item p {
    color: #6b7280;
    line-height: 1.8;
    margin: 0;
    min-height: 65px;
}
.ai-circle-wrapper {
    position: relative;
    width: 280px;
    height: 280px; 
    margin: auto;
    margin-top: -110px; 
}
.orbit-circle{
    position:absolute;
    width:100%;
    height:100%;
    border:2px dashed #d7e6cf;
    border-radius:50%;
}

.ai-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    background: linear-gradient(
130deg, #849b34, #ebd900);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    box-shadow: 0 0 40px rgb(205 220 57);
}
.ai-circle::before,
.ai-circle::after{
    content:"";
    position:absolute;
    inset:-15px;
    border-radius:50%;
    border:2px solid rgb(205 220 57);
}

.ai-circle::before{
    animation:ripple 2s linear infinite;
}

.ai-circle::after{
    animation:ripple 2s linear infinite 1s;
}

@keyframes ripple{
    from{
        transform:scale(1);
        opacity:1;
    }
    to{
        transform:scale(1.8);
        opacity:0;
    }
}
.item-left-padding{
    margin-right: -80px;
}
.item-right-padding{
    margin-left: -80px;
}
.benefits-section .benefits-wrapper {
    margin-top: 30px;
}
.ai-circle-wrapper .ai-circle img {
    width: 50px;
    height: 60px;
    margin-top: -10px;
    filter: drop-shadow(0px 19px 20px rgba(0, 0, 0, 0.471));
}
@media screen and (max-width: 992px) {
    .banner-ai-section {
        padding: 130px 0 45px;
    }
    .banner-ai-section .banner-heading h1 {
        font-size: 40px;
    }
    .heading h2 {
        font-size: 32px;
    }
    .dynamic-text li {
        font-size: 32px;
    }
    .btn2 {
        padding: 10px 25px 10px 25px;
    }
    .stats-card {
        position: relative;
        padding: 30px 15px;
        border-radius: 24px;
    }
    .stats-card h2 span.counter {
        font-size: 35px;
        font-weight: 600;
    }
    .heading .subheading {
        font-size: 15px;
        letter-spacing: 0px;
    }
    .csr-section {
        padding: 60px 0;
    }
    .strategy-content h3 {
        font-size: 21px;
        line-height: 27px;
    }
    .csr-feature-box {
    display: block;
    text-decoration: none;
    border: 1px dashed rgb(229, 229, 229) !important;
    padding: 25px 20px;
    height: 100%;
}
.why-techcsr-section {
    padding: 50px 0 205px;
    background-attachment: fixed;
}
.top-padding-style {
    margin-top: 0;
}
.bottom-padding-style {
    margin-top: 0;
}
.item-right-padding {
    margin-left: 0;
}
.item-left-padding {
    margin-right: 0;
}
.benefit-item-left {
    display: flex;
    gap: 18px;
    margin-bottom: 15px;
}
.ai-circle-wrapper {
    position: relative;
    width: 280px;
    height: 280px;
    margin: auto;
    margin-top: 0;
    margin-bottom: 30px;
}
.mega-dropdown .demo-btn, .mega-dropdown .contact-btn {
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    padding: 8px 20px !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    color: #fff;
}
}
@media screen and (max-width: 767px) {}
@media screen and (max-width: 567px) {
    .dynamic-text li {
    font-size: 40px;
}
        .stats-card {
        position: relative;
        padding: 12px 15px;
        border-radius: 24px;
    }
    .btn1 {
        padding: 10px 25px 11px 25px;
        margin: 0;
    }
    .btn-gap {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .stats-section {
        background-position: 61% 60%;
    }
    section {
        padding: 50px 0;
    }
    .heading h2 {
        font-size: 27px;
        font-weight: 600;
    }
    .clients-before::before {
        content: "";
        position: initial;
    }
    .clients-before::after {
        content: "";
        position: initial;
    }
    .logo-scroller-logo img {
        max-width: 125px;
        max-height: 75px;
    }

    .logo-scroller-logo {
        width: 115px;
        height: 70px;
        padding: 8px 0;
    }
    .clients-before {
        padding: 0px;
        position: relative;
    }
    .logo-scroller-row {
        display: flex;
        margin: 12px 0;
        height: 60px;
    }
    .feature-card {
        padding: 20px;
    }
    .feature-card h3 {
        font-size: 21px;
        margin-bottom: 10px;
    }
    .feature-card p {
        margin-bottom: 15px;
    }
    .csr-feature-title {
        font-size: 20px;
        font-weight: 500;
    }
    .why-techcsr-section {
        padding: 55px 0 90px;
        background-attachment: fixed;
    }
    .ai-how-section {
        padding: 50px 0;
    }
    .process-content h4 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    .process-content p {
        font-size: 16px;
        margin-bottom: 0;
    }
    .process-number {
        min-width: 40px;
        width: 40px;
        height: 40px;
    }
    .process-item {
        display: flex;
        gap: 12px;
        padding: 20px 12px;
        margin-bottom: 25px;
        border-radius: 15px;
        background: #fff;
    }
    .top-padding-style {
        margin-top: 0;
    }
    .bottom-padding-style {
        margin-top: 0;
    }
    .security-card {
        padding: 20px;
    }
    .security-icon {
        width: 65px;
        height: 65px;
    }
    .security-icon img {
        width: 40px;
    }
    .security-card h4 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 8px;
    }
    .security-tag {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 6px 13px;
        border-radius: 50px;
        background: rgb(132 155 52);
        border: 1px dashed #e0e1da;
        color: #ffffff;
        font-size: 13px;
        font-weight: 500;
    }
    .custom-faq .accordion-button {
        font-size: 16px;
        font-weight: 500;
        color: #111827;
        padding: 6px 15px;
        box-shadow: none !important;
        border: none;
    }
    .custom-faq .accordion-button::after {
        background-image: none;
        content: "+";
        width: 27px;
        height: 27px;
        font-size: 20px;
    }
    .csr-feature-box {
        display: block;
        text-decoration: none;
        border: 1px dashed rgb(229, 229, 229) !important;
        padding: 22px 15px;
        height: 100%;
    }
    .benefit-item-left {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }
    .item-left-padding {
        margin-right: 0;
    }
    .item-right-padding {
        margin-left: 0px;
    }
    .ai-circle-wrapper {
        position: relative;
        width: 280px;
        height: 280px;
        margin: auto;
        margin-top: 0;
        margin-bottom: 30px;
    }
}