/* Premium Section Styling */
/* ==========================================
   AI HERO SECTION
========================================== */

.digiature-ai-hero-section {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

/* ==========================================
   PREMIUM CARD
========================================== */

.premium-card {
    position: relative;
    overflow: hidden;
    padding: 70px;
    border-radius: 36px;
    background:
        linear-gradient(145deg,
            #ffffff 0%,
            #f9fbff 100%);
    border: 1px solid rgba(19, 43, 87, 0.06);
    box-shadow:
        0 30px 80px rgba(19, 43, 87, 0.06);
    z-index: 2;
}

/* ==========================================
   BACKGROUND EFFECTS
========================================== */

.digiature-ai-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    z-index: -1;
}

.digiature-ai-bg-circle.one {
    width: 320px;
    height: 320px;
    background:
        radial-gradient(rgba(139, 98, 18, 0.10), transparent 70%);
    top: -120px;
    right: -100px;
}

.digiature-ai-bg-circle.two {
    width: 260px;
    height: 260px;
    background:
        radial-gradient(rgba(19, 43, 87, 0.08), transparent 70%);
    bottom: -100px;
    left: -100px;
}

/* ==========================================
   ACCENT LINE
========================================== */

.accent-line {
    width: 90px;
    height: 5px;
    border-radius: 30px;
    background:
        linear-gradient(to right,
            #132b57,
            #8b6212);
}

/* ==========================================
   BADGE
========================================== */

.digiature-ai-badge {
    padding: 12px 20px;
    border-radius: 50px;
    background: rgba(19, 43, 87, 0.05);
    border: 1px solid rgba(19, 43, 87, 0.08);
    color: #132b57;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ==========================================
   TEXT
========================================== */

.text-premium {
    color: rgba(19, 43, 87, 0.85);
}

/* ==========================================
   INFO CARD
========================================== */

.digiature-ai-info-card {
    padding: 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(19, 43, 87, 0.06);
    box-shadow:
        0 20px 40px rgba(19, 43, 87, 0.05);
    max-width: 580px;
    transition: all 0.4s ease;
}

.digiature-ai-info-card:hover {
    transform: translateY(-6px);
}

.digiature-ai-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 18px;
    background:
        linear-gradient(135deg,
            #132b57,
            #23457f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.digiature-ai-icon i {
    color: #ffffff;
    font-size: 22px;
}

/* ==========================================
   VISUAL SIDE
========================================== */

.digiature-ai-visual-wrapper {
    position: relative;
    padding: 20px;
}

.digiature-ai-gif-box {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background: #ffffff;
    padding: 12px;
    border: 1px solid rgba(19, 43, 87, 0.06);
    box-shadow:
        0 25px 60px rgba(19, 43, 87, 0.08);
}

.digiature-ai-gif {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 22px;
}

/* ==========================================
   FLOATING CARD
========================================== */

.digiature-ai-floating-card {
    position: absolute;
    bottom: 0;
    left: -20px;
    padding: 18px 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(19, 43, 87, 0.08);
    box-shadow:
        0 20px 40px rgba(19, 43, 87, 0.08);
    animation: digiatureFloat 4s ease-in-out infinite;
}

.digiature-ai-floating-card h6 {
    font-size: 15px;
    font-weight: 600;
    color: #132b57;
    margin-bottom: 2px;
}

.digiature-ai-floating-card span {
    font-size: 13px;
    color: rgba(19, 43, 87, 0.75);
}

.digiature-ai-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2ecc71;
    box-shadow: 0 0 12px #2ecc71;
}

/* ==========================================
   FLOAT ANIMATION
========================================== */

@keyframes digiatureFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1199px) {

    .premium-card {
        padding: 60px;
    }

    .digiature-ai-gif {
        height: 430px;
    }
}

@media (max-width: 991px) {

    .premium-card {
        padding: 50px 40px;
    }

    .digiature-ai-visual-wrapper {
        margin-top: 20px;
    }

    .digiature-ai-gif {
        height: 400px;
    }

    .digiature-ai-floating-card {
        left: 0;
    }
}

@media (max-width: 767px) {

    .premium-card {
        padding: 40px 24px;
        border-radius: 28px;
    }

    .accent-line {
        width: 70px;
        height: 4px;
    }

    .premium-card h1 {
        font-size: 34px !important;
        line-height: 1.3 !important;
    }

    .text-premium.lead {
        font-size: 16px;
    }

    .text-premium {
        font-size: 14px;
    }

    .digiature-ai-info-card {
        padding: 20px;
        border-radius: 20px;
    }

    .digiature-ai-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 14px;
    }

    .digiature-ai-icon i {
        font-size: 18px;
    }

    .digiature-ai-gif {
        height: 300px;
    }

    .digiature-ai-floating-card {
        position: relative;
        margin-top: 18px;
        left: 0;
        bottom: 0;
    }
}
.premium-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(19, 43, 87, 0.1);
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.premium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

/* Custom text lead styling */
.text-premium {
    letter-spacing: -0.01em;
    color: #334155;
}

.accent-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #132b57, #8b6212);
    border-radius: 2px;
}
/*  */
.dg-ai-automation-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    font-family: inherit;
}

.dg-ai-automation-bg {
    position: absolute;
    top: -200px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #d8efff 0%, transparent 70%);
    opacity: 0.7;
    pointer-events: none;
}

.dg-ai-automation-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 70px;
    align-items: center;
}

.dg-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(90, 140, 255, 0.12);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
    color: #4d6bff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.dg-ai-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4d6bff;
    box-shadow: 0 0 12px #4d6bff;
}

.dg-ai-automation-content h2 {
    font-size: 48px;
    line-height: 1.12;
    font-weight: 600;
    color: #111827;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.dg-ai-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #667085;
    margin-bottom: 40px;
    max-width: 700px;
}

.dg-ai-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.dg-ai-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow:
        0 15px 40px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: 0.4s ease;
    backdrop-filter: blur(12px);
}

.dg-ai-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 25px 60px rgba(76, 110, 245, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dg-ai-icon {
    min-width: 54px;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef4ff, #dceeff);
    color: #4d6bff;
    font-size: 20px;
}

.dg-ai-card span {
    color: #1f2937;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 600;
}

.dg-ai-footer-text {
    margin-top: 38px;
    font-size: 16px;
    line-height: 1.9;
    color: #5f6b7a;
}

.dg-ai-visual {
    position: relative;
    height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dg-ai-core {
    width: 140px;
    height: 140px;
    border-radius: 32px;
    background: linear-gradient(135deg, #5b7cff, #7ecbff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(91, 124, 255, 0.35);
}

.dg-ai-core i {
    font-size: 52px;
    color: #fff;
}

.dg-ai-glass-card {
    position: absolute;
    padding: 22px 26px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    min-width: 220px;
}

.dg-ai-glass-card span {
    display: block;
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 10px;
}

.dg-ai-glass-card strong {
    font-size: 34px;
    color: #111827;
    font-weight: 800;
}

.dg-card-one {
    top: 90px;
    left: 10px;
    animation: dgFloat 5s ease-in-out infinite;
}

.dg-card-two {
    bottom: 100px;
    right: 10px;
    animation: dgFloat 6s ease-in-out infinite;
}

.dg-floating-dot {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #7aa8ff, #c8e6ff);
    opacity: 0.7;
}

.dot-one {
    width: 18px;
    height: 18px;
    top: 140px;
    right: 90px;
}

.dot-two {
    width: 12px;
    height: 12px;
    bottom: 180px;
    left: 80px;
}

.dot-three {
    width: 24px;
    height: 24px;
    bottom: 80px;
    right: 120px;
}

@keyframes dgRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes dgFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@media (max-width: 991px) {
    .dg-ai-automation-wrapper {
        grid-template-columns: 1fr;
    }

    .dg-ai-visual {
        height: auto;
        padding-top: 50px;
    }

    .dg-ai-automation-content h2 {
        font-size: 42px;
    }

    .dg-ai-glass-card {
        position: relative;
        margin: 20px auto;
    }

    .dg-card-one,
    .dg-card-two {
        top: auto;
        left: auto;
        bottom: auto;
        right: auto;
    }
}

@media (max-width: 767px) {
    .dg-ai-automation-section {
        padding: 80px 0;
    }

    .dg-ai-grid {
        grid-template-columns: 1fr;
    }

    .dg-ai-automation-content h2 {
        font-size: 34px;
    }

    .dg-ai-desc,
    .dg-ai-footer-text {
        font-size: 15px;
    }

    .dg-ai-core {
        width: 110px;
        height: 110px;
    }

    .dg-ai-core i {
        font-size: 40px;
    }
}

.dg-ai-services-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
    font-family: inherit;
}

.dg-ai-services-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.15;
    pointer-events: none;
}

.dg-shape-one {
    width: 350px;
    height: 350px;
    background: #fdf0d5;
    top: -100px;
    left: -120px;
}

.dg-shape-two {
    width: 450px;
    height: 450px;
    background: #003049;
    right: -180px;
    bottom: -180px;
}

.dg-ai-services-heading {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px;
}

.dg-ai-services-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 100px;
    background: rgba(253, 240, 213, 0.55);
    border: 1px solid rgba(0, 48, 73, 0.08);
    color: #003049;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
}

.dg-ai-services-tag i {
    color: #003049;
}

.dg-ai-services-heading h2 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 600;
    color: #003049;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.dg-ai-services-heading p {
    color: #5f6b76;
    font-size: 17px;
    line-height: 1.9;
}

.dg-ai-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.dg-ai-service-card {
    position: relative;
    padding: 35px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 48, 73, 0.08);
    backdrop-filter: blur(16px);
    transition: 0.45s ease;
    overflow: hidden;
    box-shadow:
        0 10px 40px rgba(0, 48, 73, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.dg-ai-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(253, 240, 213, 0.35),
        rgba(255, 255, 255, 0)
    );
    opacity: 0;
    transition: 0.45s ease;
}

.dg-ai-service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 48, 73, 0.12);
    box-shadow:
        0 30px 70px rgba(0, 48, 73, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dg-ai-service-card:hover::before {
    opacity: 1;
}

.dg-ai-service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.dg-ai-service-top span {
    font-size: 42px;
    font-weight: 800;
    color: rgba(0, 48, 73, 0.08);
    line-height: 1;
}

.dg-ai-service-icon {
    width: 72px;
    height: 72px;
    border-radius: 24px;
    background: linear-gradient(135deg, #fdf0d5, #fff8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.9),
        0 10px 25px rgba(0, 48, 73, 0.08);
}

.dg-ai-service-icon i {
    font-size: 28px;
    color: #003049;
}

.dg-ai-service-card h3 {
    position: relative;
    z-index: 2;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
    color: #003049;
    margin-bottom: 18px;
}

.dg-ai-service-card p {
    position: relative;
    z-index: 2;
    color: #5e6975;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 1199px) {
    .dg-ai-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dg-ai-services-heading h2 {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .dg-ai-services-section {
        padding: 80px 0;
    }

    .dg-ai-services-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .dg-ai-services-heading {
        margin-bottom: 50px;
    }

    .dg-ai-services-heading h2 {
        font-size: 36px;
        line-height: 1.25;
    }

    .dg-ai-services-heading p {
        font-size: 15px;
    }

    .dg-ai-service-card {
        padding: 28px;
        border-radius: 24px;
    }

    .dg-ai-service-card h3 {
        font-size: 22px;
    }
}

.diagram-canvas {
    position: relative;
    width: 450px;
    height: 450px;
    background: #fdfdfd;
    border-radius: 50%;
}

.hub-center {
    position: absolute;
    top: 150px;
    left: 150px;
    width: 150px;
    height: 150px;
    background: #132b57;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 5;
    box-shadow: 0 10px 30px rgba(19, 43, 87, 0.2);
}

.node-static {
    position: absolute;
    padding: 12px 24px;
    background: #fff;
    border: 2px solid #132b57;
    border-radius: 50px;
    font-weight: 700;
    color: #132b57;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Static Positions */
.n1 {
    top: 30px;
    left: 240px;
}
.n2 {
    top: 250px;
    left: 350px;
}
.n3 {
    top: 360px;
    left: 150px;
}
.n4 {
    top: 120px;
    left: 20px;
}

.dg-ai-industries {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f4fcff 100%);
    font-family: inherit;
}

.dg-ai-industries-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.13;
    pointer-events: none;
}

.blur-one {
    width: 350px;
    height: 350px;
    background: #caf0f8;
    top: -120px;
    left: -120px;
}

.blur-two {
    width: 420px;
    height: 420px;
    background: #03045e;
    bottom: -180px;
    right: -180px;
}

.dg-ai-industries-heading {
    text-align: center;
    margin-bottom: 90px;
}

.dg-ai-industries-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 100px;
    background: rgba(202, 240, 248, 0.55);
    border: 1px solid rgba(3, 4, 94, 0.08);
    color: #03045e;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.dg-ai-industries-badge i {
    color: #03045e;
}

.dg-ai-industries-heading h2 {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 400;
    color: #03045e;
    letter-spacing: -1.5px;
    margin: 0;
}

.dg-ai-industries-wrapper {
    display: grid;
    grid-template-columns: 1fr 180px 1fr;
    gap: 40px;
    align-items: center;
}

.dg-ai-industries-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dg-ai-industry-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 32px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(3, 4, 94, 0.07);
    backdrop-filter: blur(18px);
    transition: 0.45s ease;
    box-shadow:
        0 12px 40px rgba(3, 4, 94, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dg-ai-industry-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(
        135deg,
        rgba(202, 240, 248, 0.35),
        rgba(255, 255, 255, 0)
    );
    opacity: 0;
    transition: 0.45s ease;
}

.dg-ai-industry-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 28px 70px rgba(3, 4, 94, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.dg-ai-industry-card:hover::before {
    opacity: 1;
}

.dg-ai-industry-icon {
    min-width: 74px;
    width: 74px;
    height: 74px;
    border-radius: 24px;
    background: linear-gradient(135deg, #caf0f8, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(3, 4, 94, 0.07);
    position: relative;
    z-index: 2;
}

.dg-ai-industry-icon i {
    font-size: 30px;
    color: #03045e;
}

.dg-ai-industry-content {
    position: relative;
    z-index: 2;
}

.dg-ai-industry-content h3 {
    font-size: 24px;
    line-height: 1.4;
    font-weight: 400;
    color: #03045e;
    margin-bottom: 14px;
}

.dg-ai-industry-content p {
    color: #5f6c78;
    font-size: 15px;
    line-height: 1.9;
    margin: 0;
}

.dg-ai-industries-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.dg-ai-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(3, 4, 94, 0),
        rgba(3, 4, 94, 0.25),
        rgba(3, 4, 94, 0)
    );
}

.dg-ai-main-circle {
    position: relative;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #eafcff);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 25px 70px rgba(3, 4, 94, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    z-index: 3;
}

.dg-ai-inner-circle {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    background: linear-gradient(135deg, #03045e, #0077b6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(3, 4, 94, 0.22);
}

.dg-ai-inner-circle i {
    font-size: 42px;
    color: #fff;
}

@keyframes dgRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 1199px) {
    .dg-ai-industries-wrapper {
        grid-template-columns: 1fr;
    }

    .dg-ai-industries-center {
        min-height: 250px;
    }

    .dg-ai-line {
        width: 100%;
        height: 2px;
    }

    .right-card {
        margin-left: 0;
    }
}

@media (max-width: 767px) {
    .dg-ai-industries {
        padding: 80px 0;
    }

    .dg-ai-industries-heading {
        margin-bottom: 60px;
    }

    .dg-ai-industries-heading h2 {
        font-size: 38px;
        line-height: 1.25;
    }

    .dg-ai-industry-card {
        padding: 26px;
        flex-direction: column;
    }

    .dg-ai-industry-content h3 {
        font-size: 22px;
    }

    .dg-ai-main-circle {
        width: 140px;
        height: 140px;
    }

    .dg-ai-inner-circle {
        width: 85px;
        height: 85px;
    }

    .dg-ai-inner-circle i {
        font-size: 34px;
    }
}

.dg-ai-benefits {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9ffec 100%);
    font-family: inherit;
}

.dg-ai-benefits-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.14;
    pointer-events: none;
}

.glow-left {
    width: 380px;
    height: 380px;
    background: #ecf39e;
    top: -120px;
    left: -120px;
}

.glow-right {
    width: 420px;
    height: 420px;
    background: #90a955;
    bottom: -180px;
    right: -180px;
}

.dg-ai-benefits-wrapper {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 80px;
    align-items: center;
}

.dg-ai-benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 100px;
    background: rgba(236, 243, 158, 0.45);
    border: 1px solid rgba(144, 169, 85, 0.15);
    color: #4f6228;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.dg-ai-benefits-badge i {
    color: #90a955;
}

.dg-ai-benefits-content h2 {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 600;
    color: #2f3e1f;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.dg-ai-benefits-desc {
    color: #65715d;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.dg-ai-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.dg-ai-benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(144, 169, 85, 0.1);
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
    box-shadow:
        0 10px 30px rgba(144, 169, 85, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.dg-ai-benefit-item:hover {
    transform: translateY(-8px);
    box-shadow:
        0 24px 55px rgba(144, 169, 85, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.dg-ai-benefit-item i {
    font-size: 18px;
    color: #90a955;
}

.dg-ai-benefit-item span {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 600;
    color: #33411f;
}

.dg-ai-benefits-bottom {
    margin-top: 38px;
    padding: 24px 28px;
    border-radius: 26px;
    background: linear-gradient(135deg, #90a955, #6b8a2f);
    color: #fff;
    font-size: 16px;
    line-height: 1.9;
    box-shadow: 0 24px 60px rgba(144, 169, 85, 0.18);
}

.dg-ai-benefits-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dg-ai-image-box {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.dg-ai-main-image {
    width: 100%;
    border-radius: 36px;
    display: block;
    object-fit: cover;
    box-shadow:
        0 30px 80px rgba(144, 169, 85, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(144, 169, 85, 0.1);
}

.dg-ai-floating-card {
    position: absolute;
    padding: 22px 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(144, 169, 85, 0.08);
    backdrop-filter: blur(16px);
    box-shadow: 0 20px 50px rgba(144, 169, 85, 0.12);
}

.dg-ai-floating-card strong {
    display: block;
    font-size: 32px;
    line-height: 1;
    font-weight: 800;
    color: #5b7325;
    margin-bottom: 10px;
}

.dg-ai-floating-card span {
    font-size: 14px;
    font-weight: 600;
    color: #65715d;
}

.card-one {
    top: -25px;
    left: -20px;
    animation: dgFloat 5s ease-in-out infinite;
}

.card-two {
    bottom: -25px;
    right: -20px;
    animation: dgFloat 6s ease-in-out infinite;
}
@keyframes dgFloat {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes dgRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 1199px) {
    .dg-ai-benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .dg-ai-benefits-visual {
        padding-top: 30px;
    }
}

@media (max-width: 767px) {
    .dg-ai-benefits {
        padding: 80px 0;
    }

    .dg-ai-benefits-content h2 {
        font-size: 38px;
        line-height: 1.25;
    }

    .dg-ai-benefits-list {
        grid-template-columns: 1fr;
    }

    .dg-ai-main-image {
        border-radius: 28px;
    }

    .dg-ai-floating-card {
        position: relative;
        margin-top: 20px;
    }

    .card-one,
    .card-two {
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
}

/* =====================================
 MODERN AI AUTOMATION SECTION
===================================== */

.modern-ai-automation-section {
    position: relative;
    overflow: hidden;
    padding: 80px 5%;
    background: #eef4ed;
}

/* Decorative Lines */

.modern-ai-automation-line {
    position: absolute;
    background: #8da9c4;
    opacity: 0.08;
}

.modern-ai-automation-line-one {
    width: 1px;
    height: 100%;
    left: 8%;
    top: 0;
}

.modern-ai-automation-line-two {
    width: 320px;
    height: 320px;
    border: 1px solid #8da9c4;
    border-radius: 50%;
    right: -120px;
    top: -100px;
    background: transparent;
}

/* Wrapper */

.modern-ai-automation-wrapper {
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 90px;
    align-items: center;
}

/* Content */

.modern-ai-automation-mini-title {
    display: inline-block;
    color: #6f88a2;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    position: relative;
    padding-left: 60px;
}

.modern-ai-automation-mini-title::before {
    content: "";
    width: 45px;
    height: 1px;
    background: #8da9c4;
    position: absolute;
    left: 0;
    top: 50%;
}

.modern-ai-automation-content h2 {
    font-size: 48px;
    line-height: 1.05;
    color: #111827;
    font-weight: 600;
    margin-bottom: 28px;
    max-width: 720px;
}

.modern-ai-automation-content h2 span {
    color: #8da9c4;
}

.modern-ai-automation-text {
    max-width: 680px;
    font-size: 18px;
    line-height: 1.9;
    color: #5b6470;
    margin-bottom: 50px;
}

/* List Design */

.modern-ai-automation-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.modern-ai-automation-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(141, 169, 196, 0.18);
    transition: 0.35s ease;
}

.modern-ai-automation-item:hover {
    transform: translateX(10px);
}

.modern-ai-automation-number {
    font-size: 15px;
    font-weight: 700;
    color: #8da9c4;
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(141, 169, 196, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-ai-automation-item p {
    margin: 0;
    color: #1c2430;
    font-size: 20px;
    font-weight: 600;
}

/* Footer */

.modern-ai-automation-footer-text {
    margin-top: 50px;
    padding-left: 28px;
    border-left: 3px solid #8da9c4;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.9;
    color: #4f5a65;
}

/* Visual */

.modern-ai-automation-visual {
    display: flex;
    justify-content: center;
}

.modern-ai-automation-panel {
    width: 100%;
    max-width: 520px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(141, 169, 196, 0.2);
    border-radius: 34px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
}

/* Top */

.modern-ai-automation-top {
    display: flex;
    gap: 10px;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(141, 169, 196, 0.14);
}

.modern-ai-automation-top span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #8da9c4;
    opacity: 0.7;
}

/* Center */

.modern-ai-automation-center {
    position: relative;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Wave */

.modern-ai-automation-wave {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 1px dashed rgba(141, 169, 196, 0.35);
    animation: modernAiRotate 18s linear infinite;
}

.modern-ai-automation-circle {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #8da9c4;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(141, 169, 196, 0.35);
}

.modern-ai-automation-circle h3 {
    color: #fff;
    font-size: 58px;
    font-weight: 800;
    margin: 0;
    letter-spacing: 3px;
}

/* Floating Badges */

.modern-ai-automation-badge {
    position: absolute;
    background: #fff;
    padding: 14px 22px;
    border-radius: 60px;
    font-size: 14px;
    font-weight: 700;
    color: #61758c;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.modern-ai-automation-badge-one {
    top: 80px;
    left: 50px;
}

.modern-ai-automation-badge-two {
    top: 140px;
    right: 40px;
}

.modern-ai-automation-badge-three {
    bottom: 120px;
    left: 30px;
}

.modern-ai-automation-badge-four {
    bottom: 70px;
    right: 60px;
}

/* Animation */

@keyframes modernAiRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */

@media (max-width: 1100px) {
    .modern-ai-automation-wrapper {
        grid-template-columns: 1fr;
    }

    .modern-ai-automation-content h2 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .modern-ai-automation-section {
        padding: 80px 20px;
    }

    .modern-ai-automation-content h2 {
        font-size: 38px;
    }

    .modern-ai-automation-item p {
        font-size: 17px;
    }

    .modern-ai-automation-center {
        height: 420px;
    }

    .modern-ai-automation-wave {
        width: 240px;
        height: 240px;
    }

    .modern-ai-automation-circle {
        width: 130px;
        height: 130px;
    }

    .modern-ai-automation-circle h3 {
        font-size: 40px;
    }

    .modern-ai-automation-badge {
        font-size: 12px;
        padding: 10px 16px;
    }
}

/* Why Choose */
/* =========================================
 WHY CHOOSE DIGIATURE AI AUTOMATION SECTION
 UPDATED COLOR COMBINATION
 #e5e5e5
 #14213d
========================================= */

.why-choose-digiature-ai-automation-section {
    position: relative;
    overflow: hidden;
    padding: 80px 5%;
    background: #e5e5e5;
}

/* Background */

.why-choose-digiature-ai-automation-blur {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #14213d;
    opacity: 0.08;
    filter: blur(120px);
    top: -120px;
    right: -80px;
}

.why-choose-digiature-ai-automation-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(20, 33, 61, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(20, 33, 61, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Container */

.why-choose-digiature-ai-automation-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

/* Left */

.why-choose-digiature-ai-automation-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 700;
    color: #14213d;
    margin-bottom: 24px;
    position: relative;
}

.why-choose-digiature-ai-automation-label::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    background: #14213d;
    left: 0;
    bottom: -8px;
}

.why-choose-digiature-ai-automation-left h2 {
    font-size: 40px;
    line-height: 1.05;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 30px;
}

.why-choose-digiature-ai-automation-left h2 span {
    color: #14213d;
}

.why-choose-digiature-ai-automation-description {
    font-size: 18px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 45px;
    max-width: 620px;
}

/* Note Box */

.why-choose-digiature-ai-automation-note {
    max-width: 520px;
    padding: 28px 32px;
    border-left: 4px solid #14213d;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    color: #1e293b;
    font-size: 18px;
    line-height: 1.9;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

/* Right Stack */

.why-choose-digiature-ai-automation-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Row Design */

.why-choose-digiature-ai-automation-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 26px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    border: 1px solid rgba(20, 33, 61, 0.1);
    transition: 0.35s ease;
}

.why-choose-digiature-ai-automation-row::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #14213d;
    border-radius: 20px 0 0 20px;
    transform: scaleY(0.2);
    transform-origin: top;
    transition: 0.35s ease;
}

.why-choose-digiature-ai-automation-row:hover {
    transform: translateX(12px);
    box-shadow: 0 18px 45px rgba(20, 33, 61, 0.08);
}

.why-choose-digiature-ai-automation-row:hover::before {
    transform: scaleY(1);
}

.why-choose-digiature-ai-automation-row span {
    font-size: 22px;
    line-height: 1;
    margin-top: 2px;
}

.why-choose-digiature-ai-automation-row p {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #14213d;
    font-weight: 600;
}

/* Responsive */

@media (max-width: 1100px) {
    .why-choose-digiature-ai-automation-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .why-choose-digiature-ai-automation-left h2 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .why-choose-digiature-ai-automation-section {
        padding: 80px 20px;
    }

    .why-choose-digiature-ai-automation-left h2 {
        font-size: 38px;
    }

    .why-choose-digiature-ai-automation-row {
        padding: 20px;
    }

    .why-choose-digiature-ai-automation-row p {
        font-size: 16px;
    }

    .why-choose-digiature-ai-automation-note {
        font-size: 16px;
        padding: 22px;
    }
}

/* Future of AI */
/* =========================================
 FUTURE AI BUSINESS OPERATIONS SECTION
========================================= */

.future-ai-business-operations-section {
    position: relative;
    overflow: hidden;
    padding: 80px 5%;
    background: #ffe5d9;
}

/* Background */

.future-ai-business-operations-noise {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(#fec89a 1px, transparent 1px);
    background-size: 22px 22px;
}

.future-ai-business-operations-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: #fec89a;
    filter: blur(120px);
    opacity: 0.18;
    top: -120px;
    right: -120px;
}

/* Container */

.future-ai-business-operations-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 100px;
    align-items: flex-start;
}

/* Left */

.future-ai-business-operations-subtitle {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(254, 200, 154, 0.25);
    color: #9a5c30;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 26px;
}

.future-ai-business-operations-content h2 {
    font-size: 48px;
    line-height: 1.05;
    color: #1f1f1f;
    font-weight: 600;
    margin-bottom: 30px;
}

.future-ai-business-operations-content h2 span {
    color: #d27d3f;
}

.future-ai-business-operations-description {
    font-size: 18px;
    line-height: 1.9;
    color: #5f5753;
    margin-bottom: 60px;
    max-width: 540px;
}

/* Bottom Text */

.future-ai-business-operations-bottom-text {
    position: relative;
    padding: 28px 30px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    border-radius: 24px;
    font-size: 18px;
    line-height: 1.9;
    color: #433c38;
    border: 1px solid rgba(254, 200, 154, 0.35);
}

.future-ai-business-operations-bottom-text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: #fec89a;
    border-radius: 20px 20px 0 0;
}

/* Timeline */

.future-ai-business-operations-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 60px;
}

/* Vertical Line */

.future-ai-business-operations-line {
    position: absolute;
    left: 18px;
    top: 10px;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, #fec89a, rgba(254, 200, 154, 0.15));
}

/* Item */

.future-ai-business-operations-item {
    position: relative;
}

/* Dot */

.future-ai-business-operations-dot {
    position: absolute;
    left: -50px;
    top: 30px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fec89a;
    box-shadow: 0 0 0 8px rgba(254, 200, 154, 0.18);
}

/* Card */

.future-ai-business-operations-card {
    position: relative;
    padding: 28px 34px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(254, 200, 154, 0.22);
    transition: 0.35s ease;
}

.future-ai-business-operations-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.future-ai-business-operations-card span {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #d48a4f;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.future-ai-business-operations-card p {
    margin: 0;
    font-size: 21px;
    line-height: 1.7;
    font-weight: 600;
    color: #1f1f1f;
}

/* Responsive */

@media (max-width: 1100px) {
    .future-ai-business-operations-container {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .future-ai-business-operations-content h2 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .future-ai-business-operations-section {
        padding: 80px 20px;
    }

    .future-ai-business-operations-content h2 {
        font-size: 38px;
    }

    .future-ai-business-operations-timeline {
        padding-left: 45px;
    }

    .future-ai-business-operations-dot {
        left: -36px;
    }

    .future-ai-business-operations-card {
        padding: 24px;
    }

    .future-ai-business-operations-card p {
        font-size: 17px;
    }

    .future-ai-business-operations-bottom-text {
        font-size: 16px;
        padding: 22px;
    }
}

/* CTA */
/* =========================================
 DIGIATURE AI BUSINESS CTA SECTION
========================================= */

.digiature-ai-business-cta-section {
    position: relative;
    overflow: hidden;
    padding: 80px 5%;
    background: linear-gradient(135deg, #3d348b 0%, #4f46b7 50%, #7678ed 100%);
}

/* Background Shapes */

.digiature-ai-business-cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.digiature-ai-business-cta-circle-one {
    width: 420px;
    height: 420px;
    top: -180px;
    left: -120px;
}

.digiature-ai-business-cta-circle-two {
    width: 320px;
    height: 320px;
    bottom: -120px;
    right: -80px;
}

/* Container */

.digiature-ai-business-cta-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 80px;
    align-items: center;
}

/* Left Content */

.digiature-ai-business-cta-tag {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 26px;
}

.digiature-ai-business-cta-content h2 {
    font-size: 48px;
    line-height: 1.08;
    color: #fff;
    font-weight: 600;
    margin-bottom: 30px;
    max-width: 760px;
}

.digiature-ai-business-cta-content h2 span {
    color: #d6d7ff;
}

.digiature-ai-business-cta-content p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 720px;
}

/* Bottom Highlight */

.digiature-ai-business-cta-bottom {
    position: relative;
    padding: 24px 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 18px;
    line-height: 1.8;
    max-width: 760px;
}

/* Right Card */

.digiature-ai-business-cta-action {
    display: flex;
    justify-content: center;
}

.digiature-ai-business-cta-card {
    width: 100%;
    max-width: 360px;
    padding: 50px 40px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Icon */

.digiature-ai-business-cta-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #7678ed;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    margin: auto auto 30px;
    box-shadow: 0 18px 40px rgba(118, 120, 237, 0.35);
}

/* Card Title */

.digiature-ai-business-cta-card h3 {
    color: #fff;
    font-size: 30px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 35px;
}

/* Button */

.digiature-ai-business-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 60px;
    background: #fff;
    color: #3d348b;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.35s ease;
}

.digiature-ai-business-cta-button:hover {
    transform: translateY(-4px);
    background: #dfe1ff;
}

/* Responsive */

@media (max-width: 1100px) {
    .digiature-ai-business-cta-container {
        grid-template-columns: 1fr;
    }

    .digiature-ai-business-cta-content h2 {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .digiature-ai-business-cta-section {
        padding: 80px 20px;
    }

    .digiature-ai-business-cta-content h2 {
        font-size: 38px;
    }

    .digiature-ai-business-cta-content p,
    .digiature-ai-business-cta-bottom {
        font-size: 16px;
    }

    .digiature-ai-business-cta-card {
        padding: 40px 24px;
    }

    .digiature-ai-business-cta-card h3 {
        font-size: 24px;
    }
}

/* FAQ */
/* =========================================
 AI BUSINESS AUTOMATION FAQ SECTION
========================================= */

.ai-business-automation-faq-section{
  position:relative;
  overflow:hidden;
  padding:80px 5%;
  background:#f8f9fa;
}

/* Animated Pattern */

.ai-business-automation-faq-pattern{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(
      45deg,
      rgba(90,169,230,.05) 25%,
      transparent 25%,
      transparent 50%,
      rgba(90,169,230,.05) 50%,
      rgba(90,169,230,.05) 75%,
      transparent 75%,
      transparent
    );
  background-size:70px 70px;
  animation:faqPatternMove 18s linear infinite;
}

@keyframes faqPatternMove{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(70px);
  }
}

/* Glow */

.ai-business-automation-faq-glow{
  position:absolute;
  width:450px;
  height:450px;
  border-radius:50%;
  background:#5aa9e6;
  opacity:.10;
  filter:blur(120px);
  top:-100px;
  right:-100px;
}

/* Container */

.ai-business-automation-faq-container{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:auto;
}

/* Heading */

.ai-business-automation-faq-heading{
  text-align:center;
  margin-bottom:70px;
}
.ai-business-automation-faq-heading h2{
  font-size:40px;
  line-height:1.1;
  color:#111827;
  font-weight:600;
}

.ai-business-automation-faq-heading h2 span{
  color:#5aa9e6;
}

/* FAQ Wrapper */

.ai-business-automation-faq-wrapper{
  display:flex;
  flex-direction:column;
  gap:20px;
}

/* FAQ Item */

.ai-business-automation-faq-item{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(16px);
  border:1px solid rgba(90,169,230,.12);
  transition:.35s ease;
}

.ai-business-automation-faq-item:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.05);
}

/* Question */

.ai-business-automation-faq-question{
  width:100%;
  border:none;
  background:none;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  cursor:pointer;
  text-align:left;
}

.ai-business-automation-faq-question span{
  font-size:21px;
  line-height:1.6;
  color:#111827;
  font-weight:600;
}

/* Icon */

.ai-business-automation-faq-icon{
  position:relative;
  min-width:22px;
  width:22px;
  height:22px;
}

.ai-business-automation-faq-icon::before,
.ai-business-automation-faq-icon::after{
  content:"";
  position:absolute;
  background:#5aa9e6;
  border-radius:10px;
  transition:.3s ease;
}

.ai-business-automation-faq-icon::before{
  width:22px;
  height:2px;
  top:10px;
  left:0;
}

.ai-business-automation-faq-icon::after{
  width:2px;
  height:22px;
  top:0;
  left:10px;
}

/* Active State */

.ai-business-automation-faq-item.active .ai-business-automation-faq-icon::after{
  opacity:0;
  transform:rotate(90deg);
}

/* Answer */

.ai-business-automation-faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.ai-business-automation-faq-item.active .ai-business-automation-faq-answer{
  max-height:300px;
}

.ai-business-automation-faq-answer p{
  padding:0 30px 30px;
  margin:0;
  font-size:17px;
  line-height:1.9;
  color:#5a6470;
}

/* Responsive */

@media(max-width:768px){

  .ai-business-automation-faq-section{
    padding:80px 20px;
  }

  .ai-business-automation-faq-heading h2{
    font-size:38px;
  }

  .ai-business-automation-faq-question{
    padding:24px;
  }

  .ai-business-automation-faq-question span{
    font-size:17px;
  }

  .ai-business-automation-faq-answer p{
    padding:0 24px 24px;
    font-size:15px;
  }

}

